From: Siebrand Mazeland Date: Sun, 5 Jun 2011 17:23:35 +0000 (+0200) Subject: Fix plural issue. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=9e78c631fb8afc09e29ace1380c335dcd7f93341;p=quix0rs-gnu-social.git Fix plural issue. Fix translator documentation. --- 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'); }