]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - lib/unsandboxform.php
Merge branch 'master' of gitorious.org:social/mainline
[quix0rs-gnu-social.git] / lib / unsandboxform.php
index 559d1462d2b32f830dd7c80060400763f4761ac0..9cb39aeb02282d430226f93f08d36c7a2862bd47 100644 (file)
@@ -44,15 +44,13 @@ if (!defined('STATUSNET')) {
  *
  * @see      UnSandboxForm
  */
-
-class UnsandboxForm extends Form
+class UnsandboxForm extends ProfileActionForm
 {
     /**
      * Action this form provides
      *
      * @return string Name of the action, lowercased.
      */
-
     function target()
     {
         return 'unsandbox';
@@ -63,10 +61,10 @@ class UnsandboxForm extends Form
      *
      * @return string Title of the form, internationalized
      */
-
     function title()
     {
-        return _('Unsandbox');
+        // TRANS: Title for unsandbox form.
+        return _m('TITLE','Unsandbox');
     }
 
     /**
@@ -74,9 +72,9 @@ class UnsandboxForm extends Form
      *
      * @return string description of the form, internationalized
      */
-
     function description()
     {
+        // TRANS: Description for unsandbox form.
         return _('Unsandbox this user');
     }
 }