Fix plural issue.

Fix translator documentation.
This commit is contained in:
Siebrand Mazeland 2011-06-05 19:23:35 +02:00
parent 7c5fb37e59
commit 9e78c631fb
1 changed files with 2 additions and 2 deletions

View File

@ -237,8 +237,8 @@ class QnA_Question extends Managed_DataObject
if (!empty($cnt)) {
$out->elementStart('span', 'answer-count');
// TRANS: Number of given answers to a question.
// TRANS: %d is the number of given answers.
$out->text(sprintf(_m('%s answer','%s answers'), $cnt));
// TRANS: %s is the number of given answers.
$out->text(sprintf(_m('%s answer','%s answers',$cnt), $cnt));
$out->elementEnd('span');
}