Is there a preferred way to make a Flask application multilingual? Ideally, the solution would enable to @app.route the same view to use different urls for each languages, like @app.route(en='/staff/', fr='/equipe/). I'm pretty confident I could hack something like that together, but an existing library would sure save me some time. Thanks.

link|improve this question

80% accept rate
feedback

1 Answer

up vote 7 down vote accepted

I believe that Flask-Babel is what you are looking for.

link|improve this answer
Thanks, It looks very promising. – sharvey Aug 7 '10 at 17:58
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.