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

时间:2011-01-12 08:30:29

标签: python django internationalization mako

这是代码:

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

但是,此代码无法由mako

读取

所以如何使用mako进行国际化,

感谢

1 个答案:

答案 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>