diff --git a/_data/localization.json b/_data/localization.json index 2ccac6c..cb35072 100644 --- a/_data/localization.json +++ b/_data/localization.json @@ -89,7 +89,12 @@ "de": "✓ gefunden", "sv": "✓ matchade", "pt-br": "✓ corresponde" - + }, + "matchedIncompletely": { + "en": "(✓) matched, but whole line should match", + "de": "(✓) gefunden, aber die ganze Zeile soll passen", + "sv": "(✓) matchade, men hela raden ska matcha", + "pt-br": "(✓) corresponde, mas toda a linha deve corresponder" }, "shouldNotMatch": { "en": "✓ matched, but should not match", diff --git a/_layouts/tutorial.html b/_layouts/tutorial.html index 1afeabb..8ed3a5c 100644 --- a/_layouts/tutorial.html +++ b/_layouts/tutorial.html @@ -35,6 +35,10 @@ content: "{{ site.data.localization.hint.hidden[page.lang] }}"; } + .playfield.verbose .incompletematch.ok:after { + content: "{{ site.data.localization.match.matchedIncompletely[page.lang] }}"; + } + .playfield.verbose .match.ok:after { content: "{{ site.data.localization.match.matched[page.lang] }}"; } diff --git a/css/playfield.css b/css/playfield.css index 9354089..27984ba 100644 --- a/css/playfield.css +++ b/css/playfield.css @@ -51,6 +51,9 @@ .playfield .nomatch { } +.playfield .incompletematch.ok { + background-color: {{ site.data.colors.fails }}; +} .playfield .nomatch.ok { background-color: {{ site.data.colors.fails }}; } diff --git a/de/05-02.html b/de/05-02.html index 26aef23..148bdab 100644 --- a/de/05-02.html +++ b/de/05-02.html @@ -5,8 +5,8 @@ Der nächste Ausdruck soll die Zahlen 20 bis 29 finden aber er tut es nicht. Magst du ihn ändern, dass er nur die Zahlen zwischen 20 und 29 erkennt?

-
- +
+