Comments admin should use ungettext instead of ugettext
Currently django.contrib.comments.admin use ugettext for actions' descriptions:
self._bulk_flag(request, queryset, perform_approve, _('approved'))
That is because of there is no difference in English between word "approved" in phrases "1 comment was approved" and "5 comments were approved". But it's not a common for all languages. For example, verb "to approve" in passive voice in Russian would produce different forms for single and plural forms. Therefore, django.contrib.comments.admin should use ungettext instead of ugettext.
Change History
(7)
Triage Stage: |
Unreviewed → Accepted
|
Has patch: |
set
|
milestone: |
→ 1.2
|
Cc: |
Mikhail Korobov added
|
Triage Stage: |
Accepted → Ready for checkin
|
Resolution: |
→ fixed
|
Status: |
new → closed
|
Please fix this before strings freeze.