X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=lib%2Funblockform.php;h=8daad3c92bf479d709a557848f66608756c893ac;hb=a7df79ac073d3d6dad13cc0fa3cd1224c9bde933;hp=2a444f7cd0da9b1db8269cd16ab8714264aa244c;hpb=645b7dec2b40fb9c34306e7b445a120c6c09382d;p=quix0rs-gnu-social.git diff --git a/lib/unblockform.php b/lib/unblockform.php index 2a444f7cd0..8daad3c92b 100644 --- a/lib/unblockform.php +++ b/lib/unblockform.php @@ -44,7 +44,6 @@ if (!defined('STATUSNET')) { * * @see BlockForm */ - class UnblockForm extends ProfileActionForm { /** @@ -52,7 +51,6 @@ class UnblockForm extends ProfileActionForm * * @return string Name of the action, lowercased. */ - function target() { return 'unblock'; @@ -63,10 +61,10 @@ class UnblockForm extends ProfileActionForm * * @return string Title of the form, internationalized */ - function title() { - return _('Unblock'); + // TRANS: Title for the form to unblock a user. + return _m('TITLE','Unblock'); } /** @@ -74,9 +72,9 @@ class UnblockForm extends ProfileActionForm * * @return string description of the form, internationalized */ - function description() { + // TRANS: Description of the form to unblock a user. return _('Unblock this user'); } }