]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - plugins/UserFlag/flagprofileform.php
Merge branch '1.0.x' of gitorious.org:statusnet/mainline into 1.0.x
[quix0rs-gnu-social.git] / plugins / UserFlag / flagprofileform.php
index 262dad4a777aa0690a87bf88c3e29fc5fdc55730..acb47629e27bf892676d47b7e8a127d5bf1cad77 100644 (file)
@@ -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.');
     }
 }