* L10n update

* superfluous whitespace removed.
This commit is contained in:
Siebrand Mazeland 2010-09-19 00:20:16 +02:00
parent 1564b6aa49
commit 53cfa5349f
1 changed files with 1 additions and 5 deletions

View File

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