]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Fix plural issue.
authorSiebrand Mazeland <s.mazeland@xs4all.nl>
Sun, 5 Jun 2011 17:23:35 +0000 (19:23 +0200)
committerSiebrand Mazeland <s.mazeland@xs4all.nl>
Sun, 5 Jun 2011 17:23:35 +0000 (19:23 +0200)
Fix translator documentation.

plugins/QnA/classes/QnA_Question.php

index 6498df2fc1603f848f88db6a1374fe2fec6141af..820656870b8fe782d2253e99e2615122969ae984 100644 (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');
         }