summaryrefslogtreecommitdiff
path: root/actions/block.php
diff options
context:
space:
mode:
authorSiebrand Mazeland <s.mazeland@xs4all.nl>2010-04-11 21:04:07 +0200
committerSiebrand Mazeland <s.mazeland@xs4all.nl>2010-04-11 21:04:07 +0200
commit69eebc1ec83ae81ddd1c172a3948ec47661cd364 (patch)
tree099cc3e875b3ece4259da490498da22199bb6d28 /actions/block.php
parent03a5e96a61737b8087f12dffd614359ec5a8befa (diff)
Add translator documentation for uses of 'Yes' and 'No' in the interface.
Diffstat (limited to 'actions/block.php')
-rw-r--r--actions/block.php16
1 files changed, 14 insertions, 2 deletions
diff --git a/actions/block.php b/actions/block.php
index 7f609c253..11565e20c 100644
--- a/actions/block.php
+++ b/actions/block.php
@@ -140,8 +140,20 @@ class BlockAction extends ProfileFormAction
$this->hidden($k, $v);
}
}
- $this->submit('form_action-no', _('No'), 'submit form_action-primary', 'no', _("Do not block this user"));
- $this->submit('form_action-yes', _('Yes'), 'submit form_action-secondary', 'yes', _('Block this user'));
+ $this->submit('form_action-no',
+ // TRANS: Button label on the user block form.
+ _m('BUTTON','No'),
+ 'submit form_action-primary',
+ 'no',
+ // TRANS: Submit button title for 'No' when blocking a user.
+ _('Do not block this user'));
+ $this->submit('form_action-yes',
+ // TRANS: Button label on the user block form.
+ _m('BUTTON','Yes'),
+ 'submit form_action-secondary',
+ 'yes',
+ // TRANS: Submit button title for 'Yes' when blocking a user.
+ _('Block this user'));
$this->elementEnd('fieldset');
$this->elementEnd('form');
}