UNKNOWN
Project description
Muffin-Babel – an extension to Muffin that adds localization support with help of babel.
Requirements
python >= 3.3
Installation
Muffin-Babel should be installed using pip:
pip install muffin-babel
Usage
Add muffin_babel to PLUGINS in your Muffin application config:
import muffin app = muffin.Application( 'example', PLUGINS=( 'muffin_jinja2', 'muffin_babel', ) )
Setup a locale selector function:
@app.ps.babel.locale_selector def set_locale(request): """ Return locale from GET lang-param or automatically. """ return request.GET.get( 'lang', # Get locale based on user settings app.ps.babel.select_locale_by_request(request) )
Use app.ps.babel.gettext, app.ps.babel.pgettext, app.ps.babel.lazy_gettext function in your code:
@app.register('/') def index(request): return app.ps.babel.gettext('Hello!')
Options
BABEL_CONFIGURE_JINJA2 |
Install i18n support to Muffin-Jinja2 (False) |
BABEL_DEFAULT_LOCALE |
Set default locale (en) |
BABEL_LOCALES_DIR |
A path to directory with locales files (locales) |
BABEL_SOURCES_MAP |
Babel sources map |
BABEL_OPTIONS_MAP |
Babel options map |
Commands
The plugin adds two commands to your Muffin application.
Extract messages
Extract strings from your application to locales:
$ muffin app_module extract_messages [OPTIONS] appdir
Translate .po files and compile translations:
$ muffin app_module compile_messages [OPTIONS]
Bug tracker
If you have any suggestions, bug reports or annoyances please report them to the issue tracker at https://github.com/klen/muffin-babel/issues
Contributing
Development of Muffin-Babel happens at: https://github.com/klen/muffin-babel
Contributors
klen (Kirill Klenov)
License
Licensed under a MIT license.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file muffin-babel-0.0.2.tar.gz
.
File metadata
- Download URL: muffin-babel-0.0.2.tar.gz
- Upload date:
- Size: 6.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0ae42b55f27f310c8aa711037ee4f7eafb72d5026c6e5bd67460548191579e10 |
|
MD5 | 51ac57b6abfbd23189d8d225b91df565 |
|
BLAKE2b-256 | a1171fb01f882ab4c96827f8349b122d4558536a0697ec93110577c696ce7caa |
File details
Details for the file muffin_babel-0.0.2-py2.py3-none-any.whl
.
File metadata
- Download URL: muffin_babel-0.0.2-py2.py3-none-any.whl
- Upload date:
- Size: 7.8 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cad35bf8aac59d75cc01a862e3d30cfff30b0d0732b85d5723ceb46e862ef57b |
|
MD5 | cac2e82bc115121ef668075f18ae3d79 |
|
BLAKE2b-256 | e02159e4e24fb76f9d0aca95d99008ca138ee48620be496f60e13144bf0c77cd |