我正在尝试用 babel 翻译一个烧瓶网络项目(使用 Ubuntu 16.04/python 2.7.12)。一切似乎都很好,除了桌子。只是不会翻译列的名称。有谁知道我如何让它工作?
我的 .py 示例:
from flask import Flask, render_template
from flask_script import Manager
from flask.ext.babel import Babel, gettext
from flask_table import Table, Col
app = Flask(__name__)
manager = Manager(app)
babel = Babel(app)
class ItemTable(Table):
col1 = Col(gettext('Apple'))
col2 = Col(gettext('Banana'))
col3 = Col(gettext('Pear'))
class Item(object):
def __init__(self, col1, col2, col3):
self.col1 = col1
self.col2 = col2
self.col3 = col3
@babel.localeselector
def get_locale():
return 'de'
@app.route('/')
def index():
items = []
items.append(Item('bla', 'bla', 'bla'))
table = ItemTable(items)
test = gettext("This is a string.")
return render_template('index.html', test=test, table=table)
if __name__ == '__main__':
app.run(debug=True)
和 html 文件:
<h1>{{gettext("Hello World!")}}</h1>
<h2>{{test}}</h2>
{{table}}
在这里,我只是想测试一下德语的翻译是否有效,所以 get_locale 只返回 'de'。翻译文件夹和 babel.cfg 已就位,pybabel extract/init/compile 有效,字符串 Apple/Banana/ Pear 甚至出现在生成的 messages.po 文件中,并在其中进行翻译。但是,虽然“Hello World”和“test”在页面加载时会被翻译,但列字符串不会。
知道该怎么做吗?