i18n fixes: plugins should use _m(), not _().

This commit is contained in:
Siebrand Mazeland 2011-03-11 18:33:19 +01:00
parent 76bffe1a64
commit a70914cd57
2 changed files with 6 additions and 6 deletions

View File

@ -59,7 +59,7 @@ class NewPollAction extends Action
*/ */
function title() function title()
{ {
return _('New poll'); return _m('New poll');
} }
/** /**
@ -76,7 +76,7 @@ class NewPollAction extends Action
$this->user = common_current_user(); $this->user = common_current_user();
if (empty($this->user)) { if (empty($this->user)) {
throw new ClientException(_("You must be logged in to post a poll."), throw new ClientException(_m('You must be logged in to post a poll.'),
403); 403);
} }
@ -127,11 +127,11 @@ class NewPollAction extends Action
} }
try { try {
if (empty($this->question)) { if (empty($this->question)) {
throw new ClientException(_('Poll must have a question.')); throw new ClientException(_m('Poll must have a question.'));
} }
if (count($this->options) < 2) { if (count($this->options) < 2) {
throw new ClientException(_('Poll must have at least two options.')); throw new ClientException(_m('Poll must have at least two options.'));
} }
@ -150,7 +150,7 @@ class NewPollAction extends Action
$this->elementStart('html'); $this->elementStart('html');
$this->elementStart('head'); $this->elementStart('head');
// TRANS: Page title after sending a notice. // TRANS: Page title after sending a notice.
$this->element('title', null, _('Notice posted')); $this->element('title', null, _m('Notice posted'));
$this->elementEnd('head'); $this->elementEnd('head');
$this->elementStart('body'); $this->elementStart('body');
$this->showNotice($saved); $this->showNotice($saved);

View File

@ -100,7 +100,7 @@ class ShowPollAction extends ShownoticeAction
*/ */
function title() function title()
{ {
return sprintf(_('%s\'s poll: %s'), return sprintf(_m('%s\'s poll: %s'),
$this->user->nickname, $this->user->nickname,
$this->poll->question); $this->poll->question);
} }