gpt4 book ai didi

django - 在 Django 中翻译格式化字符串不起作用

转载 作者:行者123 更新时间:2023-12-02 06:36:31 28 4
gpt4 key购买 nike

我在使用 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_lazygettextgettext_lazy - 同样的故事,而不是翻译的输出。

知道为什么格式化字符串不起作用吗?

  • Django 1.11.3
  • Python 3.5.3

最佳答案

您应该格式化 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。

关于django - 在 Django 中翻译格式化字符串不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44957261/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com