summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorSiebrand Mazeland <s.mazeland@xs4all.nl>2010-09-14 22:30:55 +0200
committerSiebrand Mazeland <s.mazeland@xs4all.nl>2010-09-14 22:30:55 +0200
commitc218eb50774ddee74c501544f45220083e1db74b (patch)
treeb81dbca69deb074599ba69dc6f0449a05d23e5d0 /lib
parent503afc4422636b03545007485bd64a2d33e92d3e (diff)
L10n: Fix punctuation.
Diffstat (limited to 'lib')
-rw-r--r--lib/apioauthstore.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/apioauthstore.php b/lib/apioauthstore.php
index 84c4c78e5..01116ad3e 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.'));
}
}
}