# HG changeset patch # User stetrabby # Date 1390053400 -3600 # Node ID 4cdccfbac02c87b407ad09ac0bbcd6cd80554ceb # Parent 66952846a7a73192bb5b1b427bd79ffe3f8c06b5# Parent 8f3447e7f36e925e0ad52af28ff18047194282e5 Merge main diff -r 66952846a7a7 -r 4cdccfbac02c pymove3d.py --- a/pymove3d.py Sat Jan 18 14:54:33 2014 +0100 +++ b/pymove3d.py Sat Jan 18 14:56:40 2014 +0100 @@ -12,6 +12,7 @@ from config import LANGUAGES +LANGUAGE_SELECTED = None app = Flask(__name__) babel = Babel(app) @@ -19,15 +20,26 @@ @babel.localeselector def get_locale(): """ToDo: if translation is completed, switch to en """ - return request.accept_languages.best_match(LANGUAGES.keys()) or 'de' + return LANGUAGE_SELECTED or request.accept_languages.best_match(LANGUAGES.keys()) or 'de' @app.route("/") - @app.route("/index") def index(): return render_template(get_locale() + "/index.html") +@app.route('/de') +def de(): + global LANGUAGE_SELECTED + LANGUAGE_SELECTED = "de" + return render_template("/de/index.html") + +@app.route('/en') +def en(): + global LANGUAGE_SELECTED + LANGUAGE_SELECTED = "en" + return render_template("/en/index.html") + @app.route("/competition") def competition(): return render_template(get_locale() + "/competition.html", act="competition")