X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=actions%2Feditpeopletag.php;h=b2dedc890f6c6429d25e7a9b0f9232a012990ea3;hb=25198a8d4cee5b2182f1ecb99192a4108a01afa4;hp=92ef50a9f944a707706e4e01ce3fc973a63b9e70;hpb=da6822c1f0573cdc2c8b54dd686601717b12b5c7;p=quix0rs-gnu-social.git diff --git a/actions/editpeopletag.php b/actions/editpeopletag.php index 92ef50a9f9..b2dedc890f 100644 --- a/actions/editpeopletag.php +++ b/actions/editpeopletag.php @@ -40,7 +40,7 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { * @link http://status.net/ */ -class EditpeopletagAction extends OwnerDesignAction +class EditpeopletagAction extends Action { var $msg, $confirm, $confirm_args=array(); @@ -105,7 +105,7 @@ class EditpeopletagAction extends OwnerDesignAction } if (!$this->peopletag) { - // TRANS: Client error displayed when referring to a non-exsting list. + // TRANS: Client error displayed when referring to a non-existing list. $this->clientError(_('No such list.'), 404); return false; } @@ -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,7 +293,7 @@ class EditpeopletagAction extends OwnerDesignAction if (!$result) { common_log_db_error($this->group, 'UPDATE', __FILE__); - // TRANS: TRANS: Server error displayed when updating a list fails. + // TRANS: Server error displayed when updating a list fails. $this->serverError(_('Could not update list.')); } @@ -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.')); } }