X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=actions%2Fdeleteapplication.php;h=8c3b8e0ba7e8f9caf22de417beb8cdee77f4f9e4;hb=98b3f5ea919881209692ade2a0143de72d096dfb;hp=272a91762c7cbbeb6ee17af8ff863200656747c6;hpb=01f32e3998b8d031d2a39e2d0506253142b6632e;p=quix0rs-gnu-social.git diff --git a/actions/deleteapplication.php b/actions/deleteapplication.php index 272a91762c..8c3b8e0ba7 100644 --- a/actions/deleteapplication.php +++ b/actions/deleteapplication.php @@ -99,6 +99,7 @@ class DeleteapplicationAction extends Action // 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; } @@ -158,13 +159,13 @@ class DeleteapplicationAction extends Action 'submit form_action-primary', 'no', // TRANS: Submit button title for 'No' when deleting an application. - _('Do not delete this application')); + _('Do not delete this application.')); $this->submit('form_action-yes', // TRANS: Button label on the delete application form. _m('BUTTON','Yes'), 'submit form_action-secondary', // TRANS: Submit button title for 'Yes' when deleting an application. - 'yes', _('Delete this application')); + 'yes', _('Delete this application.')); $this->elementEnd('fieldset'); $this->elementEnd('form'); }