From 9e78c631fb8afc09e29ace1380c335dcd7f93341 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sun, 5 Jun 2011 19:23:35 +0200 Subject: [PATCH] Fix plural issue. Fix translator documentation. --- plugins/QnA/classes/QnA_Question.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/QnA/classes/QnA_Question.php b/plugins/QnA/classes/QnA_Question.php index 6498df2fc1..820656870b 100644 --- a/plugins/QnA/classes/QnA_Question.php +++ b/plugins/QnA/classes/QnA_Question.php @@ -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'); } -- 2.39.5