From: Siebrand Mazeland Date: Tue, 14 Sep 2010 20:30:55 +0000 (+0200) Subject: L10n: Fix punctuation. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=c218eb50774ddee74c501544f45220083e1db74b;p=quix0rs-gnu-social.git L10n: Fix punctuation. --- diff --git a/lib/apioauthstore.php b/lib/apioauthstore.php index 84c4c78e53..01116ad3e9 100644 --- a/lib/apioauthstore.php +++ b/lib/apioauthstore.php @@ -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.')); } } }