diff options
author | Siebrand Mazeland <s.mazeland@xs4all.nl> | 2010-08-28 16:28:23 +0200 |
---|---|---|
committer | Siebrand Mazeland <s.mazeland@xs4all.nl> | 2010-08-28 16:28:23 +0200 |
commit | 2eb894e535a11c7d756db4755cbe642a24cd1fd4 (patch) | |
tree | 5f0294777753db8c1db91852038a24cb9f467626 /lib | |
parent | 59eea85da578858cd660c48ddb742d1af993eac4 (diff) |
Document UI text and number parameters.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/usernoprofileexception.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/usernoprofileexception.php b/lib/usernoprofileexception.php index 6744d2529..e0186fef9 100644 --- a/lib/usernoprofileexception.php +++ b/lib/usernoprofileexception.php @@ -55,7 +55,9 @@ class UserNoProfileException extends ServerException { $this->user = $user; - $message = sprintf(_("User %s (%d) has no profile record."), + // TRANS: Exception text shown when no profile can be found for a user. + // TRANS: %1$s is a user nickname, $2$d is a user ID (number). + $message = sprintf(_("User %1$s (%2$d) has no profile record."), $user->nickname, $user->id); parent::__construct($message); |