X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=actions%2Fnudge.php;h=61874c75058f90077cf06c7277e80deb27d42c9e;hb=bc2f64d7ab6c0218104e1a655209fe062d5bdd43;hp=32ae8587cc5567d6da8fc36a9d5c71e8bb344e99;hpb=640e7e7c43fa8e9b1a8516b486e560df84bd9887;p=quix0rs-gnu-social.git diff --git a/actions/nudge.php b/actions/nudge.php index 32ae8587cc..61874c7505 100644 --- a/actions/nudge.php +++ b/actions/nudge.php @@ -60,6 +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. $this->clientError(_('Not logged in.')); return; } @@ -82,7 +83,8 @@ class NudgeAction extends Action } if (!$other->email || !$other->emailnotifynudge) { - $this->clientError(_('This user doesn\'t allow nudges or hasn\'t confirmed or set their email yet.')); + // TRANS: Client error displayed trying to nudge a user that cannot be nudged. + $this->clientError(_('This user doesn\'t allow nudges or hasn\'t confirmed or set their email address yet.')); return; } @@ -91,9 +93,11 @@ class NudgeAction extends Action if ($this->boolean('ajax')) { $this->startHTML('text/xml;charset=utf-8'); $this->elementStart('head'); + // TRANS: Page title after sending a nudge. $this->element('title', null, _('Nudge sent')); $this->elementEnd('head'); $this->elementStart('body'); + // TRANS: Confirmation text after sending a nudge. $this->element('p', array('id' => 'nudge_response'), _('Nudge sent!')); $this->elementEnd('body'); $this->elementEnd('html'); @@ -129,4 +133,3 @@ class NudgeAction extends Action return true; } } -