diff -r e928502fe563 -r da7e673fae7b pymove3d.py --- a/pymove3d.py Sun Jan 19 13:08:12 2014 +0100 +++ b/pymove3d.py Sun Jan 19 13:31:34 2014 +0100 @@ -58,7 +58,9 @@ saying, author = get_saying() return render_template("/index.html", saying = saying, - author = author) + author = author, + competition_info=_('About Competition'), + dates=_('Dates')) @app.route('/de') def de(): @@ -67,7 +69,9 @@ saying, author = get_saying() return render_template("/index.html", saying = saying, - author = author) + author = author, + competition_info=_('About Competition'), + dates=_('Dates')) @app.route('/en') def en(): @@ -76,7 +80,9 @@ LANGUAGE_SELECTED = "en" return render_template("/index.html", saying = saying, - author = author) + author = author, + competition_info=_('About Competition'), + dates=_('Dates')) @app.route("/competition") def competition():