Improved help options
This commit is contained in:
parent
c3a545dfdb
commit
6c3e89dc13
|
@ -18,6 +18,7 @@ help_1 = Wähle die Antworten durch Klicken oder mit der Tastatur (a/b) aus. Sob
|
||||||
help_2 = Möchtest du nicht alle Fragen beantworten, klicke einfach auf die Schaltfläche "Weiter" unten rechts (das klappt auch, während der Countdown läuft).
|
help_2 = Möchtest du nicht alle Fragen beantworten, klicke einfach auf die Schaltfläche "Weiter" unten rechts (das klappt auch, während der Countdown läuft).
|
||||||
help_3 = Klicke/tippe außerhalb dieses Fensters oder bewege die Maus, um fortzufahren.
|
help_3 = Klicke/tippe außerhalb dieses Fensters oder bewege die Maus, um fortzufahren.
|
||||||
help_4 = Diese Webseite zeichnet keine Daten auf und verwendet keine Cookies.
|
help_4 = Diese Webseite zeichnet keine Daten auf und verwendet keine Cookies.
|
||||||
|
help_5 =
|
||||||
separator = oder
|
separator = oder
|
||||||
questions_prefix = Es gibt derzeit
|
questions_prefix = Es gibt derzeit
|
||||||
questions_suffix = Fragen.
|
questions_suffix = Fragen.
|
||||||
|
|
3
game.py
3
game.py
|
@ -96,6 +96,7 @@ def hello():
|
||||||
help2 = config.get('i18n', 'help_2')
|
help2 = config.get('i18n', 'help_2')
|
||||||
help3 = config.get('i18n', 'help_3')
|
help3 = config.get('i18n', 'help_3')
|
||||||
help4 = config.get('i18n', 'help_4')
|
help4 = config.get('i18n', 'help_4')
|
||||||
|
help5 = config.get('i18n', 'help_5')
|
||||||
url = config.get('main', 'base_url')
|
url = config.get('main', 'base_url')
|
||||||
theme = config.get('main', 'theme')
|
theme = config.get('main', 'theme')
|
||||||
animations = config.get('main', 'animations')
|
animations = config.get('main', 'animations')
|
||||||
|
@ -120,7 +121,7 @@ def hello():
|
||||||
with open("ab.txt", "r") as f:
|
with open("ab.txt", "r") as f:
|
||||||
num_lines = sum(1 for _ in f)
|
num_lines = sum(1 for _ in f)
|
||||||
|
|
||||||
return render_template('index.html', title=title, separator=separator, content=ablines, num_lines=num_lines, epoch=epoch, mailto=mail, more=more, questions_prefix=questions_prefix, questions_suffix=questions_suffix, send_questions=send_questions, lang=lang, url=url, desc=desc, theme=theme, mailtext=mailtext, help=help, help_1=help1, help_2=help2, help_3=help3, help_4=help4, animations=animations)
|
return render_template('index.html', title=title, separator=separator, content=ablines, num_lines=num_lines, epoch=epoch, mailto=mail, more=more, questions_prefix=questions_prefix, questions_suffix=questions_suffix, send_questions=send_questions, lang=lang, url=url, desc=desc, theme=theme, mailtext=mailtext, help=help, help_1=help1, help_2=help2, help_3=help3, help_4=help4, help_5=help5, animations=animations)
|
||||||
|
|
||||||
def getContent():
|
def getContent():
|
||||||
lines = [a.strip() for a in open("ab.txt", "r").readlines()]
|
lines = [a.strip() for a in open("ab.txt", "r").readlines()]
|
||||||
|
|
|
@ -31,6 +31,9 @@
|
||||||
{%- if help_4 %}
|
{%- if help_4 %}
|
||||||
<p>{{ help_4 }}</p>
|
<p>{{ help_4 }}</p>
|
||||||
{%- endif %}
|
{%- endif %}
|
||||||
|
{%- if help_5 %}
|
||||||
|
<p>{{ help_5 }}</p>
|
||||||
|
{%- endif %}
|
||||||
</div>
|
</div>
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in New Issue