在 django 上使用 mako 时如何处理国际化,

发布于 2024-10-11 10:24:06 字数 165 浏览 2 评论 0原文

这是代码:

{% load i18n %}
{% trans 'hello test' %}

但是,mako无法读取此代码,

那么如何使用mako进行国际化,

谢谢

this is code :

{% load i18n %}
{% trans 'hello test' %}

but , this code cant be read by mako,

so how to Internationalization using mako ,

thanks

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

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

发布评论

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

评论(1

独享拥抱 2024-10-18 10:24:06

我检查了 文档,它描述了 Mako 使用 Babel for i18n。所以你可以使用它,或者像@Yuji建议的那样,通过调用任意Python代码来使用Django的i18n。

但我认为使用 Babel 更漂亮:

# /myproj/babel.cfg

# this loads all Django templates, 
# e.g. /myproj/templates/myapp/hello_world.html
[mako: **/templates/**.*]

# /myproj/templates/myapp/hello_world.html
<html>
   <body>
       ${_('Hello world!')}
   </body>
</html>

I've checked the documentation and it describes that Mako uses Babel for i18n. So you can either use that, or as @Yuji suggests, use Django's i18n by calling arbitrary Python code.

But I think using Babel is prettier:

# /myproj/babel.cfg

# this loads all Django templates, 
# e.g. /myproj/templates/myapp/hello_world.html
[mako: **/templates/**.*]

# /myproj/templates/myapp/hello_world.html
<html>
   <body>
       ${_('Hello world!')}
   </body>
</html>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文