gettext – Flask-Babel如何在Jinja模板文件中使用翻译

前端之家收集整理的这篇文章主要介绍了gettext – Flask-Babel如何在Jinja模板文件中使用翻译前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在我的Flask应用程序中,在main.py文件中,我定义了:
from flaskext.babel import gettext
....
def somefun():
    return render_template('some.html',messages=messages)

在模板文件some.html中,我用过:

<input type='text' name='keywords' value='{{ keywords|default('') }}' placeholder='{{ gettext('Search...') }}' />

这给出错误

<input type='text' name='keywords' value='{{ keywords|default('') }}' placeholder='{{ gettext('Search...') }}' />
UndefinedError: 'gettext' is undefined

如何导入这个功能,让模板使用?

解决方法

不幸的是,这根本没有记载,但Flask-Babel透明地使用了 Jinja2’s i18n extension.这意味着默认情况下,表达式的以下函数可用:_gettext,_ngettext和_.

还有可能使用模板标签

{% trans %}foo{% endtrans%}

{% trans num %}
There is {{ num }} object.
{% pluralize %}
There are {{ num }} objects.
{% endtrans %}

bug report about missing docs正在等待补丁;)

原文链接:https://www.f2er.com/python/185912.html

猜你在找的Python相关文章