diff --git a/plugins/PoweredByStatusNet/PoweredByStatusNetPlugin.php b/plugins/PoweredByStatusNet/PoweredByStatusNetPlugin.php
index f2e2fcbafe..eff2f7b491 100644
--- a/plugins/PoweredByStatusNet/PoweredByStatusNetPlugin.php
+++ b/plugins/PoweredByStatusNet/PoweredByStatusNetPlugin.php
@@ -40,17 +40,14 @@ if (!defined('STATUSNET') && !defined('LACONICA')) {
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
* @link http://status.net/
*/
-
class PoweredByStatusNetPlugin extends Plugin
{
function onEndAddressData($action)
{
$action->text(' ');
$action->elementStart('span', 'poweredby');
- // TRANS: %s is a URL to status.net with "StatusNet" (localised) as link text.
- $action->raw(sprintf(_m('powered by %s'),
- sprintf('%s',
- _m('StatusNet'))));
+ // TRANS: Text output after site name.
+ $action->raw(_m('powered by StatusNet'));
$action->elementEnd('span');
return true;
@@ -63,6 +60,7 @@ class PoweredByStatusNetPlugin extends Plugin
'author' => 'Sarven Capadisli',
'homepage' => 'http://status.net/wiki/Plugin:PoweredByStatusNet',
'rawdescription' =>
+ // TRANS: Plugin description.
_m('Outputs "powered by StatusNet" after site name.'));
return true;
}