Adds i18n/l10n support to Flask applications with the help of the Babel library.
This is a fork of Flask-BabelEx which in turn is a fork of the official Flask-Babel extension. It is API compatible with both forks.
It comes with following additional features:
- It is possible to use multiple language catalogs in one Flask application;
- Localization domains: your extension can package localization file(s) and use them if necessary;
- Does not reload localizations for each request.
The main difference to Flask-BabelEx is, that you can pass the
localization Domain
in the extensions initialization process.
# Flask-BabelPlus
babel.init_app(app=app, default_domain=FlaskBBDomain(app))