X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=plugins%2FPoweredByStatusNet%2FPoweredByStatusNetPlugin.php;h=eff2f7b491b60fc87f0abaaa87bc8c4e358bc273;hb=7dcb27672fa3f234f1fdfab5024752614e805341;hp=fb4eff73894c0791aa37d6de96379a051ba58782;hpb=3cb6b1670bd7e3860fdca217e4075f51378fe5e0;p=quix0rs-gnu-social.git diff --git a/plugins/PoweredByStatusNet/PoweredByStatusNetPlugin.php b/plugins/PoweredByStatusNet/PoweredByStatusNetPlugin.php index fb4eff7389..eff2f7b491 100644 --- a/plugins/PoweredByStatusNet/PoweredByStatusNetPlugin.php +++ b/plugins/PoweredByStatusNet/PoweredByStatusNetPlugin.php @@ -40,16 +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'); - $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; @@ -62,7 +60,8 @@ class PoweredByStatusNetPlugin extends Plugin 'author' => 'Sarven Capadisli', 'homepage' => 'http://status.net/wiki/Plugin:PoweredByStatusNet', 'rawdescription' => - _m('Outputs powered by StatusNet after site name.')); + // TRANS: Plugin description. + _m('Outputs "powered by StatusNet" after site name.')); return true; } }