X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=actions%2Fnudge.php;h=a44915a2d69955a7692547c164d1ecc34d81c5e3;hb=d48076253b02f8ab1f91e54289a189af7017db9f;hp=61874c75058f90077cf06c7277e80deb27d42c9e;hpb=7cf12f093ed48849ec901038b4cfd44595343c06;p=quix0rs-gnu-social.git diff --git a/actions/nudge.php b/actions/nudge.php index 61874c7505..a44915a2d6 100644 --- a/actions/nudge.php +++ b/actions/nudge.php @@ -60,7 +60,7 @@ class NudgeAction extends Action parent::handle($args); if (!common_logged_in()) { - // TRANS: Client error displayed trying to nudge a user without being logged in. + // TRANS: Error message displayed when trying to perform an action that requires a logged in user. $this->clientError(_('Not logged in.')); return; } @@ -78,6 +78,7 @@ class NudgeAction extends Action $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. Try again, please.')); return; }