diff options
author | Siebrand Mazeland <s.mazeland@xs4all.nl> | 2010-04-11 21:04:07 +0200 |
---|---|---|
committer | Siebrand Mazeland <s.mazeland@xs4all.nl> | 2010-04-11 21:04:07 +0200 |
commit | 69eebc1ec83ae81ddd1c172a3948ec47661cd364 (patch) | |
tree | 099cc3e875b3ece4259da490498da22199bb6d28 /actions/groupblock.php | |
parent | 03a5e96a61737b8087f12dffd614359ec5a8befa (diff) |
Add translator documentation for uses of 'Yes' and 'No' in the interface.
Diffstat (limited to 'actions/groupblock.php')
-rw-r--r-- | actions/groupblock.php | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/actions/groupblock.php b/actions/groupblock.php index fc95c0e66..e52db6e11 100644 --- a/actions/groupblock.php +++ b/actions/groupblock.php @@ -173,8 +173,20 @@ class GroupblockAction extends RedirectingAction $this->hidden($k, $v); } } - $this->submit('form_action-no', _('No'), 'submit form_action-primary', 'no', _("Do not block this user from this group")); - $this->submit('form_action-yes', _('Yes'), 'submit form_action-secondary', 'yes', _('Block this user from this group')); + $this->submit('form_action-no', + // TRANS: Button label on the form to block a user from a group. + _m('BUTTON','No'), + 'submit form_action-primary', + 'no', + // TRANS: Submit button title for 'No' when blocking a user from a group. + _('Do not block this user from this group')); + $this->submit('form_action-yes', + // TRANS: Button label on the form to block a user from a group. + _m('BUTTON','Yes'), + 'submit form_action-secondary', + 'yes', + // TRANS: Submit button title for 'Yes' when blocking a user from a group. + _('Block this user from this group')); $this->elementEnd('fieldset'); $this->elementEnd('form'); } |