i18n/L10n updates

Translator documentation added
This commit is contained in:
Siebrand Mazeland
2011-03-11 19:05:28 +01:00
parent a70914cd57
commit 843ace580d
8 changed files with 52 additions and 17 deletions

View File

@@ -103,8 +103,10 @@ class NewpollForm extends Form
$this->li();
$this->out->input('question',
// TRANS: Field label on the page to create a poll.
_m('Question'),
$this->question,
// TRANS: Field title on the page to create a poll.
_m('What question are people answering?'));
$this->unli();
@@ -121,6 +123,8 @@ class NewpollForm extends Form
}
$this->li();
$this->out->input('option' . ($i + 1),
// TRANS: Field label for an answer option on the page to create a poll.
// TRANS: %d is the option number.
sprintf(_m('Option %d'), $i + 1),
$default);
$this->unli();
@@ -137,6 +141,7 @@ class NewpollForm extends Form
*/
function formActions()
{
// TRANS: Button text for saving a new poll.
$this->out->submit('submit', _m('BUTTON', 'Save'));
}
}