X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=plugins%2FTagSub%2Ftagsubaction.php;h=83bf106bed0bc6626f417f9310af1499fc9b1e6c;hb=5afa503364e803e64a00dbe75e5d66a8df10751d;hp=2e4e25d6e1cd1a870ff8909a575be7b08249c472;hpb=cd4b23aa399a51744787e580f8dfdb3886bfc8f5;p=quix0rs-gnu-social.git diff --git a/plugins/TagSub/tagsubaction.php b/plugins/TagSub/tagsubaction.php index 2e4e25d6e1..83bf106bed 100644 --- a/plugins/TagSub/tagsubaction.php +++ b/plugins/TagSub/tagsubaction.php @@ -75,7 +75,7 @@ class TagsubAction extends Action if ($_SERVER['REQUEST_METHOD'] != 'POST') { // TRANS: Client error displayed trying to perform any request method other than POST. // TRANS: Do not translate POST. - $this->clientError(_('This action only accepts POST requests.')); + $this->clientError(_m('This action only accepts POST requests.')); return false; } @@ -85,7 +85,7 @@ class TagsubAction extends Action if (!$token || $token != common_session_token()) { // TRANS: Client error displayed when the session token is not okay. - $this->clientError(_('There was a problem with your session token.'. + $this->clientError(_m('There was a problem with your session token.'. ' Try again, please.')); return false; } @@ -96,7 +96,7 @@ class TagsubAction extends Action if (empty($this->user)) { // TRANS: Client error displayed trying to subscribe when not logged in. - $this->clientError(_('Not logged in.')); + $this->clientError(_m('Not logged in.')); return false; } @@ -106,7 +106,7 @@ class TagsubAction extends Action if (empty($this->tag)) { // TRANS: Client error displayed trying to subscribe to a non-existing profile. - $this->clientError(_('No such profile.')); + $this->clientError(_m('No such profile.')); return false; }