# HG changeset patch # User Reimar Bauer # Date 1390135053 -3600 # Node ID 934e2d8e279d8d1dbe906e1119cee1c1f92adc8d # Parent da7e673fae7b56cf4ec35cc7f2d6df2eca658dc7 unicode strings diff -r da7e673fae7b -r 934e2d8e279d pymove3d.py --- a/pymove3d.py Sun Jan 19 13:31:34 2014 +0100 +++ b/pymove3d.py Sun Jan 19 13:37:33 2014 +0100 @@ -59,8 +59,8 @@ return render_template("/index.html", saying = saying, author = author, - competition_info=_('About Competition'), - dates=_('Dates')) + competition_info=_(u'About Competition'), + dates=_(u'Dates')) @app.route('/de') def de(): @@ -70,8 +70,8 @@ return render_template("/index.html", saying = saying, author = author, - competition_info=_('About Competition'), - dates=_('Dates')) + competition_info=_(u'About Competition'), + dates=_(u'Dates')) @app.route('/en') def en(): @@ -81,8 +81,8 @@ return render_template("/index.html", saying = saying, author = author, - competition_info=_('About Competition'), - dates=_('Dates')) + competition_info=_(u'About Competition'), + dates=_(u'Dates')) @app.route("/competition") def competition(): diff -r da7e673fae7b -r 934e2d8e279d translations/de/LC_MESSAGES/messages.mo Binary file translations/de/LC_MESSAGES/messages.mo has changed