L10n: Fix punctuation.

This commit is contained in:
Siebrand Mazeland 2010-09-14 22:30:55 +02:00
parent 503afc4422
commit c218eb5077
1 changed files with 2 additions and 2 deletions

View 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.'));
}
}
}