# HG changeset patch # User Peter Koppatz # Date 1390115923 -3600 # Node ID 2e05b89881ed869abc924bd668e92de12c61fbda # Parent 95d788307e42da15f2394109c3a97184e4a30bca Explicit switch the langunage diff -r 95d788307e42 -r 2e05b89881ed pymove3d.py --- a/pymove3d.py Sun Jan 19 07:53:05 2014 +0100 +++ b/pymove3d.py Sun Jan 19 08:18:43 2014 +0100 @@ -51,13 +51,19 @@ def de(): global LANGUAGE_SELECTED LANGUAGE_SELECTED = "de" - return render_template("/de/index.html") + saying, author = get_saying() + return render_template("/de/index.html", + saying = saying, + author = author) @app.route('/en') def en(): + saying, author = get_saying() global LANGUAGE_SELECTED LANGUAGE_SELECTED = "en" - return render_template("/en/index.html") + return render_template("/en/index.html", + saying = saying, + author = author) @app.route("/competition") def competition(): diff -r 95d788307e42 -r 2e05b89881ed sayings.py --- a/sayings.py Sun Jan 19 07:53:05 2014 +0100 +++ b/sayings.py Sun Jan 19 08:18:43 2014 +0100 @@ -1,25 +1,26 @@ +from flask.ext.babel import gettext as _ from random import shuffle def get_saying(): - sayings = [('The Zen of Python, by Tim Peters', '__Tim Peters, The Zen of Python'), - ("Beautiful is better than ugly.", '__Tim Peters, The Zen of Python'), - ("Explicit is better than implicit.", '__Tim Peters, The Zen of Python'), - ("Simple is better than complex.", '__Tim Peters, The Zen of Python'), - ("Complex is better than complicated.", '__Tim Peters, The Zen of Python'), - ("Flat is better than nested.", '__Tim Peters, The Zen of Python'), - ("Sparse is better than dense.", '__Tim Peters, The Zen of Python'), - ("Readability counts.", '__Tim Peters, The Zen of Python'), - ("Special cases aren't special enough to break the rules.", '__Tim Peters, The Zen of Python'), - ("Although practicality beats purity.", '__Tim Peters, The Zen of Python'), - ("Errors should never pass silently.", '__Tim Peters, The Zen of Python'), - ("Unless explicitly silenced.", '__Tim Peters, The Zen of Python'), - ("In the face of ambiguity, refuse the temptation to guess.", '__Tim Peters, The Zen of Python'), - ("Although that way may not be obvious at first unless you're Dutch.", '__Tim Peters, The Zen of Python'), - ("Now is better than never.", '__Tim Peters, The Zen of Python'), - ("Although never is often better than *right* now.", '__Tim Peters, The Zen of Python'), - ("If the implementation is hard to explain, it's a bad idea.", '__Tim Peters, The Zen of Python'), - ("If the implementation is easy to explain, it may be a good idea.", '__Tim Peters, The Zen of Python'), - ("Namespaces are one honking great idea -- let's do more of those!", '__Tim Peters, The Zen of Python'), + sayings = [(_('The Zen of Python, by Tim Peters'), _('__Tim Peters, The Zen of Python')), + (_("Beautiful is better than ugly."), _('__Tim Peters, The Zen of Python')), + (_("Explicit is better than implicit."), _('__Tim Peters, The Zen of Python')), + (_("Simple is better than complex."), _('__Tim Peters, The Zen of Python')), + (_("Complex is better than complicated."), _('__Tim Peters, The Zen of Python')), + (_("Flat is better than nested."), _('__Tim Peters, The Zen of Python')), + (_("Sparse is better than dense."), _('__Tim Peters, The Zen of Python')), + (_("Readability counts."), _('__Tim Peters, The Zen of Python')), + (_("Special cases aren't special enough to break the rules."), _('__Tim Peters, The Zen of Python')), + (_("Although practicality beats purity."), _('__Tim Peters, The Zen of Python')), + (_("Errors should never pass silently."), _('__Tim Peters, The Zen of Python')), + (_("Unless explicitly silenced."), _('__Tim Peters, The Zen of Python')), + (_("In the face of ambiguity, refuse the temptation to guess."), _('__Tim Peters, The Zen of Python')), + (_("Although that way may not be obvious at first unless you're Dutch."), _('__Tim Peters, The Zen of Python')), + (_("Now is better than never."), _('__Tim Peters, The Zen of Python')), + (_("Although never is often better than *right* now."), _('__Tim Peters, The Zen of Python')), + (_("If the implementation is hard to explain, it's a bad idea."), _('__Tim Peters, The Zen of Python')), + (_("If the implementation is easy to explain, it may be a good idea."), _('__Tim Peters, The Zen of Python')), + (_("Namespaces are one honking great idea -- let's do more of those!"), _('__Tim Peters, The Zen of Python')), ] shuffle(sayings)