]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - plugins/SearchSub/searchsubaction.php
Merge commit 'refs/merge-requests/158' of git://gitorious.org/statusnet/mainline...
[quix0rs-gnu-social.git] / plugins / SearchSub / searchsubaction.php
index 67bc178df69ac196eff7bf0b2ac5f6cdbc993ec3..0234feef400c226da929f2e6d261ee8eed2b3448 100644 (file)
@@ -75,7 +75,7 @@ class SearchsubAction 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 SearchsubAction 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;
         }
@@ -95,8 +95,8 @@ class SearchsubAction extends Action
         $this->user = common_current_user();
 
         if (empty($this->user)) {
-            // TRANS: Client error displayed trying to subscribe when not logged in.
-            $this->clientError(_('Not logged in.'));
+            // TRANS: Error message displayed when trying to perform an action that requires a logged in user.
+            $this->clientError(_m('Not logged in.'));
             return false;
         }
 
@@ -106,7 +106,7 @@ class SearchsubAction extends Action
 
         if (empty($this->search)) {
             // 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;
         }