i18n fixes: plugins should use _m(), not _().
This commit is contained in:
parent
76bffe1a64
commit
a70914cd57
@ -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);
|
||||||
|
@ -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);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user