X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=plugins%2FUserFlag%2Fflagprofileform.php;h=acb47629e27bf892676d47b7e8a127d5bf1cad77;hb=bce337e7c31c2badf34a3af99da6fc2158eedddd;hp=262dad4a777aa0690a87bf88c3e29fc5fdc55730;hpb=6a1afda259c5223449f679a64f932e36df5ebe39;p=quix0rs-gnu-social.git diff --git a/plugins/UserFlag/flagprofileform.php b/plugins/UserFlag/flagprofileform.php index 262dad4a77..acb47629e2 100644 --- a/plugins/UserFlag/flagprofileform.php +++ b/plugins/UserFlag/flagprofileform.php @@ -44,15 +44,24 @@ require_once INSTALLDIR.'/lib/form.php'; * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - class FlagProfileForm extends ProfileActionForm { /** + * class of the form * Action this form provides * - * @return string Name of the action, lowercased. + * @return string class of the form */ + function formClass() + { + return 'form_entity_flag ajax'; + } + /** + * Action this form provides + * + * @return string Name of the action, lowercased. + */ function target() { return 'flagprofile'; @@ -63,10 +72,10 @@ class FlagProfileForm extends ProfileActionForm * * @return string Title of the form, internationalized */ - function title() { - return _('Flag'); + // TRANS: Form title for flagging a profile for review. + return _m('Flag'); } /** @@ -74,9 +83,9 @@ class FlagProfileForm extends ProfileActionForm * * @return string description of the form, internationalized */ - function description() { - return _('Flag profile for review'); + // TRANS: Form description. + return _m('Flag profile for review.'); } }