I am pretty new to Django. I have the following code in the template:
{% blocktrans count answers.paginator.count as
counter %}One Answer:{% plural %}{{counter}} Answers:{% endblocktrans %}
And the following line in the django PO (generated)
#: forum/skins/default/templates/question.html:149
#, python-format
msgid "One Answer:"
msgid_plural "%(counter)s Answers:"
msgstr[0] "Один ответ:"
msgstr[1] "%(counter)s ответа/-ов:"
Now the singular translation is working, but the plural somehow is not... Any idea what is missing?
Not working means that the output is;
"Один ответ" if counter is 1
"5 Answers" in case the counter is 5
So the counter is working.
Thanks, Pleun