* L10n update

* superfluous whitespace removed.
This commit is contained in:
Siebrand Mazeland 2010-09-19 00:20:16 +02:00
parent 1564b6aa49
commit 53cfa5349f

View File

@ -49,7 +49,6 @@ if (!defined('STATUSNET')) {
* analytics setup - for example '8'. * analytics setup - for example '8'.
* *
*/ */
class PiwikAnalyticsPlugin extends Plugin class PiwikAnalyticsPlugin extends Plugin
{ {
/** the base of your Piwik installation */ /** the base of your Piwik installation */
@ -63,7 +62,6 @@ class PiwikAnalyticsPlugin extends Plugin
* @param string $root Piwik root URL * @param string $root Piwik root URL
* @param string $id Piwik ID of this app * @param string $id Piwik ID of this app
*/ */
function __construct($root=null, $id=null) function __construct($root=null, $id=null)
{ {
$this->piwikroot = $root; $this->piwikroot = $root;
@ -78,7 +76,6 @@ class PiwikAnalyticsPlugin extends Plugin
* *
* @return boolean ignored * @return boolean ignored
*/ */
function onEndShowScripts($action) function onEndShowScripts($action)
{ {
$piwikCode1 = <<<ENDOFPIWIK $piwikCode1 = <<<ENDOFPIWIK
@ -105,8 +102,7 @@ ENDOFPIWIK;
'author' => 'Tobias Diekershoff, Evan Prodromou', 'author' => 'Tobias Diekershoff, Evan Prodromou',
'homepage' => 'http://status.net/wiki/Plugin:Piwik', 'homepage' => 'http://status.net/wiki/Plugin:Piwik',
'rawdescription' => 'rawdescription' =>
_m('Use <a href="http://piwik.org/">Piwik</a> Open Source Web analytics software.')); _m('Use <a href="http://piwik.org/">Piwik</a> Open Source web analytics software.'));
return true; return true;
} }
} }