Fix for PoweredByStatusNetPlugin to be localizable (was broken for non-English word order)

(Note the .po files will have to be added manually for now as we haven't set TranslateWiki up for plugins I think)
This commit is contained in:
Brion Vibber
2010-01-22 15:04:53 -08:00
committed by Sarven Capadisli
parent 4f213f985f
commit a5836d33e4
2 changed files with 35 additions and 2 deletions

View File

@@ -46,8 +46,9 @@ class PoweredByStatusNetPlugin extends Plugin
function onEndAddressData($action)
{
$action->elementStart('span', 'poweredby');
$action->text(_('powered by'));
$action->element('a', array('href' => 'http://status.net/'), 'StatusNet');
$action->raw(sprintf(_m('powered by %s'),
sprintf('<a href="http://status.net/">%s</a>',
_m('StatusNet'))));
$action->elementEnd('span');
return true;