diff options
author | Evgeny Fadeev <evgeny.fadeev@gmail.com> | 2010-05-09 19:32:00 -0400 |
---|---|---|
committer | Evgeny Fadeev <evgeny.fadeev@gmail.com> | 2010-05-09 19:32:00 -0400 |
commit | b782dd3c1bc5f79dbc7efed8059d78167f39a75d (patch) | |
tree | b0eebc67745e899546a761403af73d101ee2d6e5 /forum/skins/default/templates/question.html | |
parent | a5d7d0550ab6a7e4ba62cc41272771f7a5c2671b (diff) | |
download | askbot-b782dd3c1bc5f79dbc7efed8059d78167f39a75d.tar.gz askbot-b782dd3c1bc5f79dbc7efed8059d78167f39a75d.tar.bz2 askbot-b782dd3c1bc5f79dbc7efed8059d78167f39a75d.zip |
fixed a few pluralization bugs in translations
Diffstat (limited to 'forum/skins/default/templates/question.html')
-rw-r--r-- | forum/skins/default/templates/question.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/forum/skins/default/templates/question.html b/forum/skins/default/templates/question.html index 48b6d719..f0619ab8 100644 --- a/forum/skins/default/templates/question.html +++ b/forum/skins/default/templates/question.html @@ -195,9 +195,9 @@ {% endif %}
{% if question.comment_count > 5 %}
{% if request.user|can_add_comments:question %}/
- {% blocktrans count question.get_comments|slice:"5:"|length as counter %}see <strong>one</strong> more{% plural %}see <strong>{{counter}}</strong> more{% endblocktrans %}
+ {% blocktrans count question.get_comments|slice:"5:"|length as counter %}see <strong>{{counter}}</strong> more{% plural %}see <strong>{{counter}}</strong> more{% endblocktrans %}
{% else %}
- {% blocktrans count question.get_comments|slice:"5:"|length as counter %}see <strong>one</strong> more comment{% plural %}see <strong>{{counter}}</strong> more comments
+ {% blocktrans count question.get_comments|slice:"5:"|length as counter %}see <strong>{{counter}}</strong> more comment{% plural %}see <strong>{{counter}}</strong> more comments
{% endblocktrans %}
{% endif %}
{% endif %}</a>
@@ -221,7 +221,7 @@ <a name="sort-top"></a>
<div class="headUsers">
{% blocktrans count answers|length as counter %}
- One Answer:
+ {{counter}} Answer:
{% plural %}
{{counter}} Answers:
{% endblocktrans %}
@@ -337,9 +337,9 @@ {% endif %}
{% if answer.comment_count > 5 %}
{% if request.user|can_add_comments:answer %}/
- {% blocktrans count answer.get_comments|slice:"5:"|length as counter %}see <strong>one</strong> more{% plural %}see <strong>{{counter}}</strong> more{% endblocktrans %}
+ {% blocktrans count answer.get_comments|slice:"5:"|length as counter %}see <strong>{{counter}}</strong> more{% plural %}see <strong>{{counter}}</strong> more{% endblocktrans %}
{% else %}
- {% blocktrans count answer.get_comments|slice:"5:"|length as counter %}see <strong>one</strong> more comment{% plural %} see <strong>{{counter}}</strong> more comments{% endblocktrans %}
+ {% blocktrans count answer.get_comments|slice:"5:"|length as counter %}see <strong>{{counter}}</strong> more comment{% plural %} see <strong>{{counter}}</strong> more comments{% endblocktrans %}
{% endif %}
{% endif %}</a>
{% endif %}
|