I am utterly confused with trying to use babel with flask for language translation.
Lets assume the following. A user has a preferance of spanish over english. I have a variable that marks this:
g.user.default_language='sp'
Lets say I have to messages, one on english and the other in spanish that I want to display. 'Please' vs 'por fovor'
<html>
<h1>INSERT TRANSLATION HERE</h1>
</html>
Here is my base babel config file
[python: **.py]
[jinja2: **/templates/**.html]
extensions=jinja2.ext.autoescape,jinja2.ext.with_
So, where does 'Please' go and how is it mapped to 'por fovor' if user pref is spanish?
Then, how to I call from a template based on language profile?
Thanks
Flask-Babel is really great project. If you looking for jinja, i18n and Flask on google, you will find some useful examples. Please see docs for more info. Here I'll provide a little example:
1. Create the translations dir:
Assuming that your site is in Portuguese and English. It is a manual way to do that. You'd better use
pybabel init
command.2. Create a file named messages.po (these files will contain translated strings):
It will create a file with the follow content:
3. Compile translation
4. Added line code this to your flask's main app file.
5. Use
_()
function in your jinja's template file in order to see Olá mundo string.I hope it'll be useful.