X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=actions%2Feditapplication.php;h=02fae3eb49f4828dfc0612370a38347ba6150277;hb=f4e17c1bdf42643c2bb530228f88809147992e9d;hp=760b1d284e19eea9d4f044ed430952b59d88654f;hpb=eb0495d10719f2be86f8f97e82aaa1b8bf923c7d;p=quix0rs-gnu-social.git diff --git a/actions/editapplication.php b/actions/editapplication.php index 760b1d284e..02fae3eb49 100644 --- a/actions/editapplication.php +++ b/actions/editapplication.php @@ -128,6 +128,7 @@ class EditApplicationAction extends OwnerDesignAction // CSRF protection $token = $this->trimmed('token'); if (!$token || $token != common_session_token()) { + // TRANS: Client error displayed when the session token does not match or is not given. $this->clientError(_('There was a problem with your session token.')); return; } @@ -198,6 +199,7 @@ class EditApplicationAction extends OwnerDesignAction } elseif (Oauth_application::descriptionTooLong($description)) { $this->showForm(sprintf( // TRANS: Validation error shown when providing too long a description in the "Edit application" form. + // TRANS: %d is the maximum number of allowed characters. _m('Description is too long (maximum %d character).', 'Description is too long (maximum %d characters).', Oauth_application::maxDesc()), @@ -223,6 +225,7 @@ class EditApplicationAction extends OwnerDesignAction $this->showForm(_('Organization is too long (maximum 255 characters).')); return; } elseif (empty($homepage)) { + // TRANS: Form validation error show when an organisation name has not been provided in the edit application form. $this->showForm(_('Organization homepage is required.')); return; } elseif ((mb_strlen($homepage) > 0)