我想在django.po中为俄语使用自定义的Plural-Forms方案,但是当我更改它时,它不会影响ungettext的结果。
我发现如果我使用没有Django的相同翻译文件,Plural-Forms可以正常工作。
这是django.po文件。
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-09-18 01:26+0000\n"
"Language: ru\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : n%10==1 && n%100!=11 ? 1 : n"
"%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 2 : 3)\n"
#: testapp/test.py:5
#, python-format
msgid "One new notification."
msgid_plural "%(count)s new notifications."
msgstr[0] "Одно новое оповещение."
msgstr[1] "%(count)s новое оповещение."
msgstr[2] "%(count)s новых оповещения."
msgstr[3] "%(count)s новых оповещений."
如果我运行
import gettext
filename = "testp/conf/locale/ru/LC_MESSAGES/django.mo"
trans = gettext.GNUTranslations(open( filename, "rb" ) )
trans.install()
def translated_message(notifications_count):
return trans.ungettext(
"One new notification.",
"%(count)s new notifications.",
notifications_count
) % {"count": notifications_count}
print translated_message(1)
print translated_message(2)
print translated_message(5)
print translated_message(51)
打印以下内容:
Одно новое оповещение.
2 новых оповещения.
5 новых оповещений.
51 новое оповещение.
这正是我所期望的ungettext结果。
但是当在Django项目中使用相同的编译翻译文件(django.mo)时,输出会有所不同。
使用django.utils.translation.ungettext更改为:
Одно новое оповещение.
2 новое оповещение.
5 новых оповещения.
Одно новое оповещение.
这显然意味着在这种情况下,表格(msgstr)被正确读取,但是会忽略复数形式(即使用俄语的常规方案而不是我定义的方式)。