diff options
author | Siebrand Mazeland <s.mazeland@xs4all.nl> | 2010-11-01 13:50:24 +0100 |
---|---|---|
committer | Siebrand Mazeland <s.mazeland@xs4all.nl> | 2010-11-01 16:49:33 +0100 |
commit | b89dfa3a5b5d0febdbf1a45f2a8b855315204b69 (patch) | |
tree | 05d426bdfc4f5e1726570464d46e5bee8d995f0f /lib/command.php | |
parent | 68bfeaa6c69e676f5b08f6f3a2ec2576cd2fc6c9 (diff) |
Fix i18n issues that are solved by using plural.
Diffstat (limited to 'lib/command.php')
-rw-r--r-- | lib/command.php | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/lib/command.php b/lib/command.php index 658262a09..329617b3b 100644 --- a/lib/command.php +++ b/lib/command.php @@ -483,9 +483,11 @@ class MessageCommand extends Command if (Message::contentTooLong($this->text)) { // XXX: i18n. Needs plural support. - // TRANS: Message given if content is too long. + // TRANS: Message given if content is too long. %1$sd is used for plural. // TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. - $channel->error($this->user, sprintf(_('Message too long - maximum is %1$d characters, you sent %2$d.'), + $channel->error($this->user, sprintf(_m('Message too long - maximum is %1$d character, you sent %2$d.', + 'Message too long - maximum is %1$d characters, you sent %2$d.', + Message::maxContent()), Message::maxContent(), mb_strlen($this->text))); return; } @@ -584,9 +586,11 @@ class ReplyCommand extends Command if (Notice::contentTooLong($this->text)) { // XXX: i18n. Needs plural support. - // TRANS: Message given if content of a notice for a reply is too long. + // TRANS: Message given if content of a notice for a reply is too long. %1$d is used for plural. // TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters. - $channel->error($this->user, sprintf(_('Notice too long - maximum is %1$d characters, you sent %2$d.'), + $channel->error($this->user, sprintf(_m('Notice too long - maximum is %1$d character, you sent %2$d.', + 'Notice too long - maximum is %1$d characters, you sent %2$d.', + Notice::maxContent()), Notice::maxContent(), mb_strlen($this->text))); return; } |