我的模板中有以下内容:
<a class="page-scroll" href="#career">{{ _(Career) }}</a>
<a class="page-scroll" href="{{ url_for("comment_new") }}">{{ gettext(Contact) }}</a>
<a href="#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">{% trans %}Language{% endtrans %}</a>当我运行pybabel extract -F babel.cfg -o messages.pot .时
我只看到:
#: templates/hello.html:91
msgid "Language"
msgstr ""但不是“事业”或“语言”。我不明白为什么巴别塔不能解释_或gettext中的jinja。帮助?
发布于 2015-10-20 05:57:08
啊,原来我需要"“,即使是在金家。n00b!
https://stackoverflow.com/questions/33224596
复制相似问题