X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=actions%2Fdeletenotice.php;h=c997bb756a9010c058a491af91afbcfaf8b509ac;hb=9d0ccbff01c1d861d152e30feeb2094f5a2742b4;hp=a7ac28e19c202ce8d97b7ae1985484ad61a12e3a;hpb=62dfdb34a613f61e8f546b60468e1a73ee18d7e0;p=quix0rs-gnu-social.git diff --git a/actions/deletenotice.php b/actions/deletenotice.php index a7ac28e19c..c997bb756a 100644 --- a/actions/deletenotice.php +++ b/actions/deletenotice.php @@ -75,7 +75,7 @@ class DeletenoticeAction extends Action if ($this->notice->profile_id != $this->user_profile->id && !$this->user->hasRight(Right::DELETEOTHERSNOTICE)) { // TRANS: Error message displayed trying to delete a notice that was not made by the current user. - common_user_error(_('Can\'t delete this notice.')); + common_user_error(_('Cannot delete this notice.')); exit; } // XXX: Ajax! @@ -156,14 +156,14 @@ class DeletenoticeAction extends Action 'submit form_action-primary', 'no', // TRANS: Submit button title for 'No' when deleting a notice. - _("Do not delete this notice")); + _('Do not delete this notice.')); $this->submit('form_action-yes', // TRANS: Button label on the delete notice form. _m('BUTTON','Yes'), 'submit form_action-secondary', 'yes', // TRANS: Submit button title for 'Yes' when deleting a notice. - _('Delete this notice')); + _('Delete this notice.')); $this->elementEnd('fieldset'); $this->elementEnd('form'); }