Document UI text and number parameters.

This commit is contained in:
Siebrand Mazeland 2010-08-28 16:28:23 +02:00
parent 59eea85da5
commit 2eb894e535
1 changed files with 3 additions and 1 deletions

View File

@ -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);