如何使用 gettext 制作列表或设置可翻译?

发布于 2024-09-02 13:25:44 字数 439 浏览 3 评论 0原文

我有一些 Python 结构:

> gender=( ('0','woman'), ('1','man') )

我想先翻译它,然后再将其显示在 Django 模板中。不幸的是,以下解决方案不起作用:

> from django.utils.translation import
> ugettext_lazy as _
> 
> gender=( ('0',_('woman')),
> ('1',_('man')) )

我该怎么翻译这个?我阅读了文档,但我不明白我应该做什么做。

I have some structure in Python:

> gender=( ('0','woman'), ('1','man') )

I want to translate it before I will display it in Django template. Unfortunately, below solution doesn't work:

> from django.utils.translation import
> ugettext_lazy as _
> 
> gender=( ('0',_('woman')),
> ('1',_('man')) )

What shall I do to translate this? I read the docs, but I can't understand what I should do.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

圈圈圆圆圈圈 2024-09-09 13:25:44

尝试这样:

gender=( ('0',_('woman')), ('1',_('man')) )

当您导入 gettext: 时,

from django.utils.translation import ugettext_lazy as _

您需要将字符串包装在 gettext 函数中:

_('some_string')

如果下划线让您感到困惑,这与编写相同:

from django.utils.translation import ugettext_lazy
ugettext_lazy('some_string')

但使用 _ 更短。

标记要翻译的字符串后,调用 makemessages django 命令。

Try like this:

gender=( ('0',_('woman')), ('1',_('man')) )

When you import gettext:

from django.utils.translation import ugettext_lazy as _

you need to wrap the string in gettext function:

_('some_string')

If underscore is confiusing you, this is same as writing:

from django.utils.translation import ugettext_lazy
ugettext_lazy('some_string')

but using _ is shorter.

After you have marked strings for translation call makemessages django command.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文