Flask-Babel 不翻译 Web 项目中的任何内容
Flask-Babel do not translate anything in a web project
我的使用说明:
这是我的项目结构(基本基于Flask Web Development):
├── README.md
├── app
│ ├── __init__.py
│ ├── admin
│ │ ├── __init__.py
│ │ ├── user_admin.py
│ ├── auth
│ │ ├── __init__.py
│ │ ├── forms.py
│ │ ├── views.py
│ ├── decorators.py
│ ├── main
│ │ ├── __init__.py
│ │ ├── errors.py
│ │ ├── forms.py
│ │ ├── views.py
│ ├── models.py
│ └── templates
│ ├── auth
│ │ ├── login.html
│ │ └── register.html
│ ├── base.html
│ ├── edit-profile.html
│ ├── index.html
│ ├── layout.html
│ └── user.html
├── babel.cfg
├── config.py
├── manage.py
├── migrations
│ ├── README
│ ├── alembic.ini
│ ├── env.py
│ ├── script.py.mako
│ └── versions
│ ├── 20c68396e6d8_.py
├── requirement.txt
├── test
└── translations
└── zh_CN
└── LC_MESSAGES
├── messages.mo
└── messages.po
配置在/babel.cfg和/app/__init__.py
babel.cfg:
[python: **.py]
[jinja2: **/templates/**.html]
extensions=jinja2.ext.autoescape,jinja2.ext.with_
app/__init__.py:
# ...
from flask_babelex import Babel
babel = Babel()
@babel.localeselector
def get_locale():
return 'zh_CN'
def create_app(config_name):
#...
babel.init_app(app)
return app
那我就跟着Flask-Babel文档
运行 $ pybabel extract -F babel.cfg -o messages.pot .
运行 $ pybabel extract -F babel.cfg -k lazy_gettext -o messages.pot .
他们确实找到了所有 gettext
和 lazy_gettext
。
运行 $ pybabel init -i messages.pot -d translations -l zh_CN
这为我生成了 /translations/zh_CN/LC_MESSAGES/messages.po
。我修复了其中的一些翻译。(包括删除 # .fuzzy
)
最后我运行$ pybabel compile -d translations
。这将成功生成 /tranlations/zh_CN/LC_MESSAGES/messages.mo
。
但是什么都没有翻译......而且我真的不知道如何修复这个错误。
我真的被这个搞砸了好几天。
有关更多信息,我将此项目放在 Github。
因为babel实际解析的locale名称是"zh_Hans_CN",所以将你的翻译目录命名为"zh_Hans_CN",就可以找到了
我的使用说明:
这是我的项目结构(基本基于Flask Web Development):
├── README.md
├── app
│ ├── __init__.py
│ ├── admin
│ │ ├── __init__.py
│ │ ├── user_admin.py
│ ├── auth
│ │ ├── __init__.py
│ │ ├── forms.py
│ │ ├── views.py
│ ├── decorators.py
│ ├── main
│ │ ├── __init__.py
│ │ ├── errors.py
│ │ ├── forms.py
│ │ ├── views.py
│ ├── models.py
│ └── templates
│ ├── auth
│ │ ├── login.html
│ │ └── register.html
│ ├── base.html
│ ├── edit-profile.html
│ ├── index.html
│ ├── layout.html
│ └── user.html
├── babel.cfg
├── config.py
├── manage.py
├── migrations
│ ├── README
│ ├── alembic.ini
│ ├── env.py
│ ├── script.py.mako
│ └── versions
│ ├── 20c68396e6d8_.py
├── requirement.txt
├── test
└── translations
└── zh_CN
└── LC_MESSAGES
├── messages.mo
└── messages.po
配置在/babel.cfg和/app/__init__.py
babel.cfg:
[python: **.py]
[jinja2: **/templates/**.html]
extensions=jinja2.ext.autoescape,jinja2.ext.with_
app/__init__.py:
# ...
from flask_babelex import Babel
babel = Babel()
@babel.localeselector
def get_locale():
return 'zh_CN'
def create_app(config_name):
#...
babel.init_app(app)
return app
那我就跟着Flask-Babel文档
运行 $ pybabel extract -F babel.cfg -o messages.pot .
运行 $ pybabel extract -F babel.cfg -k lazy_gettext -o messages.pot .
他们确实找到了所有 gettext
和 lazy_gettext
。
运行 $ pybabel init -i messages.pot -d translations -l zh_CN
这为我生成了 /translations/zh_CN/LC_MESSAGES/messages.po
。我修复了其中的一些翻译。(包括删除 # .fuzzy
)
最后我运行$ pybabel compile -d translations
。这将成功生成 /tranlations/zh_CN/LC_MESSAGES/messages.mo
。
但是什么都没有翻译......而且我真的不知道如何修复这个错误。
我真的被这个搞砸了好几天。
有关更多信息,我将此项目放在 Github。
因为babel实际解析的locale名称是"zh_Hans_CN",所以将你的翻译目录命名为"zh_Hans_CN",就可以找到了