From 225609e93c4e42684ac5c1b001621971fae8bd36 Mon Sep 17 00:00:00 2001 From: Psychotoxical Date: Sat, 18 Apr 2026 19:54:32 +0200 Subject: [PATCH] fix(i18n): add common.close to en + de locales MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The device-sync migration modal uses t('common.close') for its dismiss button, but the key lived only inside scoped namespaces (where it had different translations like "Verstanden" / "Got it"). Add the straightforward "Schließen" / "Close" under common so the migration modal shows the right label. Co-Authored-By: Claude Sonnet 4.6 --- src/locales/de.ts | 1 + src/locales/en.ts | 1 + 2 files changed, 2 insertions(+) diff --git a/src/locales/de.ts b/src/locales/de.ts index 7a725903..0aa17d3a 100644 --- a/src/locales/de.ts +++ b/src/locales/de.ts @@ -375,6 +375,7 @@ export const deTranslation = { downloadZip: 'Download (ZIP)', back: 'Zurück', cancel: 'Abbrechen', + close: 'Schließen', save: 'Speichern', delete: 'Löschen', use: 'Verwenden', diff --git a/src/locales/en.ts b/src/locales/en.ts index ecd8ec07..36f5825d 100644 --- a/src/locales/en.ts +++ b/src/locales/en.ts @@ -376,6 +376,7 @@ export const enTranslation = { downloadZip: 'Download (ZIP)', back: 'Back', cancel: 'Cancel', + close: 'Close', save: 'Save', delete: 'Delete', use: 'Use',