]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
L10n: Fix punctuation.
authorSiebrand Mazeland <s.mazeland@xs4all.nl>
Tue, 14 Sep 2010 20:30:55 +0000 (22:30 +0200)
committerSiebrand Mazeland <s.mazeland@xs4all.nl>
Tue, 14 Sep 2010 20:30:55 +0000 (22:30 +0200)
lib/apioauthstore.php

index 84c4c78e53568fb206649914ddfbf97baff1e8ca..01116ad3e96c3d208652324a4656f2ea0cefb20e 100644 (file)
@@ -175,11 +175,11 @@ class ApiStatusNetOAuthDataStore extends StatusNetOAuthDataStore
         $rt->state = 0;
         if (!$rt->find(true)) {
             // TRANS: Exception thrown when an attempt is made to revoke an unknown token.
-            throw new Exception(_('Tried to revoke unknown token'));
+            throw new Exception(_('Tried to revoke unknown token.'));
         }
         if (!$rt->delete()) {
             // TRANS: Exception thrown when an attempt is made to remove a revoked token.
-            throw new Exception(_('Failed to delete revoked token'));
+            throw new Exception(_('Failed to delete revoked token.'));
         }
     }
 }