X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=actions%2Fblock.php;h=93f8ec93709867794770f734db283d641a4c669f;hb=4aac47de0337e18dd08646aa9932655d88746eed;hp=239a50868d3913614b4fbc16b497bad3624fb3b6;hpb=87b8a89aa7b96e63586bdd3b1afb9d43355fd48b;p=quix0rs-gnu-social.git diff --git a/actions/block.php b/actions/block.php index 239a50868d..93f8ec9370 100644 --- a/actions/block.php +++ b/actions/block.php @@ -148,8 +148,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'); }