From 1986be119bd212017a986906210d2ec5ebcb7d66 Mon Sep 17 00:00:00 2001 From: gpkvt Date: Mon, 5 Jun 2023 16:43:21 +0200 Subject: [PATCH] Simplyfied helptext config --- config.ini | 10 +++------- game.py | 12 ++++-------- static/css/animations.css | 1 - templates/index.html | 17 ++--------------- 4 files changed, 9 insertions(+), 31 deletions(-) diff --git a/config.ini b/config.ini index 397f8c6..beef144 100644 --- a/config.ini +++ b/config.ini @@ -12,13 +12,9 @@ animations = 1 lang = de more = Weiter »»» title = A oder B -mailtext = Einreichen! -help_title = Hilfe -help_1 = Wähle die Antworten durch Klicken oder mit der Tastatur (a/b) aus. Sobald alle Antworten ausgewählt wurden, werden nach einer kurzen Wartezeit automatisch neue Fragen geladen. -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_4 = Diese Webseite zeichnet keine Daten auf und verwendet keine Cookies. -help_5 = +mail_link = Einreichen! +help_link = Hilfe? +help = Hilfe

Wähle die Antworten durch Klicken oder mit der Tastatur (a/b) aus. Sobald alle Antworten ausgewählt wurden, werden nach einer kurzen Wartezeit automatisch neue Fragen geladen.

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).

Klicke/tippe außerhalb dieses Fensters oder bewege die Maus, um fortzufahren.

Diese Webseite zeichnet keine Daten auf und verwendet keine Cookies.

separator = oder questions_prefix = Es gibt derzeit questions_suffix = Fragen. diff --git a/game.py b/game.py index 0b76dd5..5b43adb 100755 --- a/game.py +++ b/game.py @@ -90,13 +90,9 @@ def hello(): separator = config.get('i18n', 'separator') separator_char = config.get('main', 'separator_char') mail = config.get('main', 'mail') - mailtext = config.get('i18n', 'mailtext') - help = config.get('i18n', 'help_title') - help1 = config.get('i18n', 'help_1') - help2 = config.get('i18n', 'help_2') - help3 = config.get('i18n', 'help_3') - help4 = config.get('i18n', 'help_4') - help5 = config.get('i18n', 'help_5') + mailtext = config.get('i18n', 'mail_link') + helptext = config.get('i18n', 'help_link') + help = config.get('i18n', 'help') url = config.get('main', 'base_url') theme = config.get('main', 'theme') animations = config.get('main', 'animations') @@ -121,7 +117,7 @@ def hello(): with open("ab.txt", "r") as 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, help_5=help5, 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, helptext=helptext, help=help, animations=animations) def getContent(): lines = [a.strip() for a in open("ab.txt", "r").readlines()] diff --git a/static/css/animations.css b/static/css/animations.css index 69ee1ff..ca4df9e 100644 --- a/static/css/animations.css +++ b/static/css/animations.css @@ -1,4 +1,3 @@ - label.a.slide { animation-duration: 1s; animation-name: slideinfromleft; diff --git a/templates/index.html b/templates/index.html index 1901185..35595cd 100644 --- a/templates/index.html +++ b/templates/index.html @@ -18,22 +18,9 @@ {{ questions_prefix }} {{ num_lines }} {{ questions_suffix }}
{{ mailtext }} - - {{ help }}? + {{ helptext }}
- {{ help }} -

{{ help_1 }}

- {%- if help_2 %} -

{{ help_2 }}

- {%- endif %} - {%- if help_3 %} -

{{ help_3 }}

- {%- endif %} - {%- if help_4 %} -

{{ help_4 }}

- {%- endif %} - {%- if help_5 %} -

{{ help_5 }}

- {%- endif %} + {{ help|safe }}