]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - actions/editpeopletag.php
Fix invite button for public sites
[quix0rs-gnu-social.git] / actions / editpeopletag.php
index 9d0548cb944a36733812d03d77015043ee6eec01..b2dedc890f6c6429d25e7a9b0f9232a012990ea3 100644 (file)
@@ -40,20 +40,20 @@ if (!defined('STATUSNET') && !defined('LACONICA')) {
  * @link     http://status.net/
  */
 
-class EditpeopletagAction extends OwnerDesignAction
+class EditpeopletagAction extends Action
 {
     var $msg, $confirm, $confirm_args=array();
 
     function title()
     {
         if ($_SERVER['REQUEST_METHOD'] == 'POST' && $this->boolean('delete')) {
-            // TRANS: Title for edit people tag page after deleting a tag.
-            // TRANS: %s is a tag.
-            return sprintf(_('Delete %s people tag'), $this->peopletag->tag);
+            // TRANS: Title for edit list page after deleting a tag.
+            // TRANS: %s is a list.
+            return sprintf(_('Delete %s list'), $this->peopletag->tag);
         }
-        // TRANS: Title for edit people tag page.
-        // TRANS: %s is a tag.
-        return sprintf(_('Edit people tag %s'), $this->peopletag->tag);
+        // TRANS: Title for edit list page.
+        // TRANS: %s is a list.
+        return sprintf(_('Edit list %s'), $this->peopletag->tag);
     }
 
     /**
@@ -105,8 +105,8 @@ class EditpeopletagAction extends OwnerDesignAction
         }
 
         if (!$this->peopletag) {
-            // TRANS: Client error displayed when referring to a non-exsting people tag.
-            $this->clientError(_('No such people tag.'), 404);
+            // TRANS: Client error displayed when referring to a non-existing list.
+            $this->clientError(_('No such list.'), 404);
             return false;
         }
 
@@ -215,8 +215,8 @@ class EditpeopletagAction extends OwnerDesignAction
             $this->element('p', 'instructions', $this->confirm);
         } else {
             $this->element('p', 'instructions',
-                           // TRANS: Form instruction for edit people tag form.
-                           _('Use this form to edit the people tag.'));
+                           // TRANS: Form instruction for edit list form.
+                           _('Use this form to edit the list.'));
         }
     }
 
@@ -260,7 +260,7 @@ class EditpeopletagAction extends OwnerDesignAction
             return;
         } else if (Profile_list::descriptionTooLong($description)) {
             $this->showForm(sprintf(
-                    // TRANS: Client error shown when providing too long a description when editing a people tag.
+                    // TRANS: Client error shown when providing too long a description when editing a list.
                     // TRANS: %d is the maximum number of allowed characters.
                     _m('Description is too long (maximum %d character).',
                       'Description is too long (maximum %d characters).',
@@ -293,8 +293,8 @@ class EditpeopletagAction extends OwnerDesignAction
 
         if (!$result) {
             common_log_db_error($this->group, 'UPDATE', __FILE__);
-            // TRANS: TRANS: Server error displayed when updating a people tag fails.
-            $this->serverError(_('Could not update people tag.'));
+            // TRANS: Server error displayed when updating a list fails.
+            $this->serverError(_('Could not update list.'));
         }
 
         $this->peopletag->query('COMMIT');
@@ -318,7 +318,7 @@ class EditpeopletagAction extends OwnerDesignAction
                                                    'tag'    => $tag)),
                             303);
         } else {
-            // TRANS: Edit people tag form success message.
+            // TRANS: Edit list form success message.
             $this->showForm(_('Options saved.'));
         }
     }