X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=actions%2Fdeleteaccount.php;h=8b80c6c6f23c503f1d52d82c80cd6535b035aa62;hb=54325e266f03be053b4efb1e788ef370b96f0cdc;hp=dd587d04453b9c2370ea6db5d7f26baca6c7770a;hpb=6e1dfab1b97ed8cbb1d03b1174366e4428482019;p=quix0rs-gnu-social.git diff --git a/actions/deleteaccount.php b/actions/deleteaccount.php index dd587d0445..8b80c6c6f2 100644 --- a/actions/deleteaccount.php +++ b/actions/deleteaccount.php @@ -161,7 +161,7 @@ class DeleteaccountAction extends Action if ($this->trimmed('iamsure') != $iamsure ) { // TRANS: Notification for user about the text that must be input to be able to delete a user account. // TRANS: %s is the text that needs to be input. - $this->_error = sprintf(_('You must write "%s" exactly in the box.', $iamsure)); + $this->_error = sprintf(_('You must write "%s" exactly in the box.'), $iamsure); $this->showPage(); return; } @@ -320,6 +320,6 @@ class DeleteAccountForm extends Form 'submit', null, // TRANS: Button title for user account deletion. - _('Permanently delete your account')); + _('Permanently delete your account.')); } }