diff options
author | Siebrand Mazeland <s.mazeland@xs4all.nl> | 2010-07-29 13:36:08 +0200 |
---|---|---|
committer | Siebrand Mazeland <s.mazeland@xs4all.nl> | 2010-07-29 13:36:08 +0200 |
commit | 125ff142e871d4cde780335d6a4f16d5f59bca83 (patch) | |
tree | ad87988ca37c8cb22d48205aaa7e2de4b1ad47c3 /classes/Profile.php | |
parent | 312c6b68654a6bc5239526c61f23636833e5b502 (diff) |
* mark a few message for translation
* add translator documentation
Diffstat (limited to 'classes/Profile.php')
-rw-r--r-- | classes/Profile.php | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/classes/Profile.php b/classes/Profile.php index a303469e9..ae6a37602 100644 --- a/classes/Profile.php +++ b/classes/Profile.php @@ -735,14 +735,18 @@ class Profile extends Memcached_DataObject 'role' => $name)); if (empty($role)) { - throw new Exception('Cannot revoke role "'.$name.'" for user #'.$this->id.'; does not exist.'); + // TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. + // TRANS: %1$s is the role name, %2$s is the user ID. + throw new Exception(sprintf(_('Cannot revoke role "%s" for user #%2$s; does not exist.'),$name, $this->id)); } $result = $role->delete(); if (!$result) { common_log_db_error($role, 'DELETE', __FILE__); - throw new Exception('Cannot revoke role "'.$name.'" for user #'.$this->id.'; database error.'); + // TRANS: Exception thrown when trying to revoke a role for a user with a failing database query. + // TRANS: %1$s is the role name, %2$s is the user ID. + throw new Exception(sprintf(_('Cannot revoke role "%1$s" for user #%2$s; database error.'),$name, $this->id)); } return true; |