我在使用django.utils.translations
翻译Django中的格式化字符串时遇到问题。只有没有格式的字符串(%s
或{}
)才有效。
我的locale/en/LC_MESSAGES/django.po
文件:
msgid "foo"
msgstr "bar"
#, python-format
msgid "foo %s"
msgstr "bar %s"
#, python-format
msgid "foo %(baz)s"
msgstr "bar %(baz)s "
#, python-brace-format
msgid "foo {}"
msgstr "bar {}"
#, python-brace-format
msgid "foo {baz}"
msgstr "bar {baz}"
第一个字符串正在运行:
>>> from django.utils import translation
>>> translation.activate('en')
>>> translation.ugettext('foo')
'bar'
但休息不是:
>>> translation.ugettext('foo %s' % 'bax')
'foo bax'
>>> translation.ugettext('foo %(baz)s' % {'baz': 'bax'})
'foo bax'
>>> translation.ugettext('foo {}'.format('bax'))
'foo bax'
>>> translation.ugettext('foo {baz}'.format(baz='bax'))
'foo bax'
如果我使用ugettext_lazy
,gettext
或gettext_lazy
- 相同的故事,而不是翻译的输出,则无效。
知道为什么格式化字符串不起作用吗?
答案 0 :(得分:5)
您应该格式化ugettext返回的字符串,而不是调用中的字符串。请参阅下面的说明。
而不是:
translation.ugettext('foo %s' % 'bax')
translation.ugettext('foo %(baz)s' % {'baz': 'bax'})
translation.ugettext('foo {}'.format('bax'))
translation.ugettext('foo {baz}'.format(baz='bax'))
你需要这样做:
translation.ugettext('foo %s') % 'bax'
translation.ugettext('foo %(baz)s') % {'baz': 'bax'}
translation.ugettext('foo {}').format('bax')
translation.ugettext('foo {baz}').format(baz='bax')
在您的代码中,您每次都试图获得'foo bax'
的翻译,并且您的翻译文件中没有msgid。