X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=lib%2Fsandboxform.php;h=d1e4fea96357839cc9d75b8a579af6f015cbaa33;hb=29403a764cf172f63d7e7f39b49fdd30c92d916e;hp=7a98e0a5f9e19580f4b40b9c03f4811304be8133;hpb=d24ed193e7b19b50f7304790820c945e46ac2c95;p=quix0rs-gnu-social.git diff --git a/lib/sandboxform.php b/lib/sandboxform.php index 7a98e0a5f9..d1e4fea963 100644 --- a/lib/sandboxform.php +++ b/lib/sandboxform.php @@ -42,7 +42,6 @@ if (!defined('STATUSNET')) { * * @see UnSandboxForm */ - class SandboxForm extends ProfileActionForm { /** @@ -50,7 +49,6 @@ class SandboxForm extends ProfileActionForm * * @return string Name of the action, lowercased. */ - function target() { return 'sandbox'; @@ -61,10 +59,10 @@ class SandboxForm extends ProfileActionForm * * @return string Title of the form, internationalized */ - function title() { - return _('Sandbox'); + // TRANS: Title of form to sandbox a user. + return _m('TITLE','Sandbox'); } /** @@ -72,9 +70,9 @@ class SandboxForm extends ProfileActionForm * * @return string description of the form, internationalized */ - function description() { + // TRANS: Description of form to sandbox a user. return _('Sandbox this user'); } }