'_' 是什么意思?在 Django 代码中做什么?

发布于 2024-08-16 06:04:14 字数 132 浏览 6 评论 0原文

为什么此 Django 代码在“has favicon”前面使用 _

has_favicon = models.BooleanField(_('has favicon'))

Why does this Django code use _ in front of 'has favicon'

has_favicon = models.BooleanField(_('has favicon'))

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

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

发布评论

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

评论(3

彩虹直至黑白 2024-08-23 06:04:14

如果您查看 import 语句,您会发现它们将 _ 绑定到一个函数,该函数将内容转换为 unicode 并通过编写以下内容对其进行本地化:

from django.utils.translation import ugettext_lazy as _

If you look in the import statements, you'll find that they tied _ to a function that turns stuff into unicode and localizes it by writing:

from django.utils.translation import ugettext_lazy as _
时光是把杀猪刀 2024-08-23 06:04:14

Django 中的 _ 是用于本地化文本的约定。它是 ugettext_lazy 的别名。请阅读文档中的延迟翻译以了解更多信息关于它。

_ in Django is a convention that is used for localizing texts. It is an alias for ugettext_lazy. Read Lazy translation in the docs for more info about it.

醉态萌生 2024-08-23 06:04:14

_ 通常是 gettext 中的宏/函数,这意味着参数是本地化字符串。这不限于 Django 或 Python。事实上 gettext 最初是一个 C 程序包,多年来被移植到许多其他语言。

_ is usually a macro/function from gettext, it means the argument is a localized string. this is not limited to Django or Python. in fact gettext is originally a package for C programs, ported to many other languages over the years.

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