fix: update German translations and make reset button prominent
Some checks failed
Deploy static content to Pages / deploy (push) Has been cancelled
Some checks failed
Deploy static content to Pages / deploy (push) Has been cancelled
This commit is contained in:
@@ -124,8 +124,8 @@ const translations = {
|
|||||||
rerun: "Erneut anwenden",
|
rerun: "Erneut anwenden",
|
||||||
|
|
||||||
// Preview
|
// Preview
|
||||||
yourOutput: "Deine Ausgabe",
|
yourOutput: "Dein Ergebnis",
|
||||||
showExpected: "Lösung zeigen",
|
showExpected: "Lösung einblenden",
|
||||||
hideExpected: "Lösung ausblenden",
|
hideExpected: "Lösung ausblenden",
|
||||||
previous: "Zurück",
|
previous: "Zurück",
|
||||||
next: "Weiter",
|
next: "Weiter",
|
||||||
@@ -163,7 +163,7 @@ const translations = {
|
|||||||
editorToolsTitle: "Editor-Werkzeuge",
|
editorToolsTitle: "Editor-Werkzeuge",
|
||||||
editorToolUndo: "<strong>↶ Rückgängig</strong> / <strong>↷ Wiederholen</strong> - Bearbeitungsverlauf navigieren",
|
editorToolUndo: "<strong>↶ Rückgängig</strong> / <strong>↷ Wiederholen</strong> - Bearbeitungsverlauf navigieren",
|
||||||
editorToolReset: "<strong>⟲ Zurücksetzen</strong> - Ursprünglichen Code wiederherstellen",
|
editorToolReset: "<strong>⟲ Zurücksetzen</strong> - Ursprünglichen Code wiederherstellen",
|
||||||
editorToolExpected: "<strong>Lösung zeigen</strong> - Zielergebnis ein-/ausblenden",
|
editorToolExpected: "<strong>Lösung einblenden</strong> - Zielergebnis ein-/ausblenden",
|
||||||
keyboardShortcutsTitle: "Tastenkürzel",
|
keyboardShortcutsTitle: "Tastenkürzel",
|
||||||
shortcutRun: "<kbd>Strg+Enter</kbd> - Sofort validieren",
|
shortcutRun: "<kbd>Strg+Enter</kbd> - Sofort validieren",
|
||||||
shortcutUndo: "<kbd>Strg+Z</kbd> - Rückgängig",
|
shortcutUndo: "<kbd>Strg+Z</kbd> - Rückgängig",
|
||||||
|
|||||||
15
src/main.css
15
src/main.css
@@ -943,6 +943,21 @@ button.lesson-list-item {
|
|||||||
color: var(--danger-color);
|
color: var(--danger-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#reset-btn {
|
||||||
|
background: var(--danger-color);
|
||||||
|
color: white;
|
||||||
|
text-decoration: none;
|
||||||
|
padding: var(--spacing-sm) var(--spacing-md);
|
||||||
|
border-radius: var(--border-radius-sm);
|
||||||
|
font-weight: 600;
|
||||||
|
margin-top: var(--spacing-sm);
|
||||||
|
}
|
||||||
|
|
||||||
|
#reset-btn:hover {
|
||||||
|
background: #dc2626;
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
|
||||||
/* ================= TOGGLE SWITCH ================= */
|
/* ================= TOGGLE SWITCH ================= */
|
||||||
.toggle-switch {
|
.toggle-switch {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|||||||
Reference in New Issue
Block a user