这是代码:
{% load i18n %}
{% trans 'hello test' %}
但是,此代码无法由mako
,
所以如何使用mako
进行国际化,
感谢
答案 0 :(得分:1)
我检查了documentation,它描述了Mako使用Babel代替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>