fix: remove placeholder comments and improve German translations

- Remove placeholder comments from initialCode fields
- Fix typo: "wichtig Wort" -> "wichtigen Wort" in de/20-html-elements.json
- Improve German validation messages for readability
- Use consistent terminology (Eingabefeld instead of Input)
This commit is contained in:
2025-12-25 15:16:31 +01:00
parent 529256b367
commit c8a643582f
17 changed files with 45 additions and 45 deletions

View File

@@ -21,12 +21,12 @@
{
"type": "attribute_value",
"value": { "selector": "input[name='name']", "attr": "required", "value": true },
"message": "Füge das 'required'-Attribut zur Name-Eingabe hinzu"
"message": "Füge required zum Namensfeld hinzu"
},
{
"type": "attribute_value",
"value": { "selector": "input[name='email']", "attr": "required", "value": true },
"message": "Füge das 'required'-Attribut zur E-Mail-Eingabe hinzu"
"message": "Füge required zum E-Mail-Feld hinzu"
}
]
},
@@ -45,12 +45,12 @@
{
"type": "attribute_value",
"value": { "selector": "input[type='password']", "attr": "minlength", "value": "8" },
"message": "Füge minlength=\"8\" zur Passwort-Eingabe hinzu"
"message": "Füge minlength=\"8\" zum Passwort hinzu"
},
{
"type": "attribute_value",
"value": { "selector": "input[type='password']", "attr": "maxlength", "value": "20" },
"message": "Füge maxlength=\"20\" zur Passwort-Eingabe hinzu"
"message": "Füge maxlength=\"20\" zum Passwort hinzu"
},
{
"type": "attribute_value",