]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - actions/apisubscriptions.php
Lots of tiny message changes.
[quix0rs-gnu-social.git] / actions / apisubscriptions.php
index bc68dd192a64dfa8b6a5a991c162266bfc2a30ab..0ba324057e753d84cd22463d13f51584f5de60e9 100644 (file)
@@ -84,7 +84,7 @@ class ApiSubscriptionsAction extends ApiBareAuthAction
         $this->user = $this->getTargetUser($this->arg('id'));
 
         if (empty($this->user)) {
-            $this->clientError(_('No such user!'), 404, $this->format);
+            $this->clientError(_('No such user.'), 404, $this->format);
             return false;
         }
 
@@ -108,7 +108,7 @@ class ApiSubscriptionsAction extends ApiBareAuthAction
         parent::handle($args);
 
         if (!in_array($this->format, array('xml', 'json'))) {
-            $this->clientError(_('API method not found!'), $code = 404);
+            $this->clientError(_('API method not found.'), $code = 404);
             return;
         }