I'm using Flask Babel to translate my Flask Python app. At moment I only have the translation mechanism by locale but what if the user besides his location wants to change the location to english? Is there any way to change the locale manually?
This is my Flask Babel function that gets the user locale and returns the language. It is on my __init__.py file.
@babel.localeselector def get_locale(): print "LANGUAGE PT" #return 'de' -> manually change to the desired language request.accept_languages.best_match(LANGUAGES.keys()) I really appreciate any help!
Best regards