diff --git a/lib/Util/Notices/UnauthorizedEmailNotice.php b/lib/Util/Notices/UnauthorizedEmailNotice.php index 053b52207a..7d394ba76e 100644 --- a/lib/Util/Notices/UnauthorizedEmailNotice.php +++ b/lib/Util/Notices/UnauthorizedEmailNotice.php @@ -38,7 +38,7 @@ class UnauthorizedEmailNotice { } private function getMessageText($validationError) { - $text = $this->wp->_x('Sending all of your emails has been paused because your email address %s hasn’t been authorized yet.', + $text = $this->wp->_x('Sending all of your emails has been paused because your email address %s hasn’t been authorized yet.', 'Email addresses have to be authorized to be used to send emails. %s will be replaced by an email address.', 'mailpoet'); $message = str_replace('%s', EscapeHelper::escapeHtmlText($validationError['invalid_sender_address']), $text);