1.1 --- a/pymove3d.py Sun Jan 19 13:08:12 2014 +0100
1.2 +++ b/pymove3d.py Sun Jan 19 13:31:34 2014 +0100
1.3 @@ -58,7 +58,9 @@
1.4 saying, author = get_saying()
1.5 return render_template("/index.html",
1.6 saying = saying,
1.7 - author = author)
1.8 + author = author,
1.9 + competition_info=_('About Competition'),
1.10 + dates=_('Dates'))
1.11
1.12 @app.route('/de')
1.13 def de():
1.14 @@ -67,7 +69,9 @@
1.15 saying, author = get_saying()
1.16 return render_template("/index.html",
1.17 saying = saying,
1.18 - author = author)
1.19 + author = author,
1.20 + competition_info=_('About Competition'),
1.21 + dates=_('Dates'))
1.22
1.23 @app.route('/en')
1.24 def en():
1.25 @@ -76,7 +80,9 @@
1.26 LANGUAGE_SELECTED = "en"
1.27 return render_template("/index.html",
1.28 saying = saying,
1.29 - author = author)
1.30 + author = author,
1.31 + competition_info=_('About Competition'),
1.32 + dates=_('Dates'))
1.33
1.34 @app.route("/competition")
1.35 def competition():