diff --git a/frontend/src/features/settings/tabs/WhatsAppTab.tsx b/frontend/src/features/settings/tabs/WhatsAppTab.tsx index e5642783..97f17ad5 100644 --- a/frontend/src/features/settings/tabs/WhatsAppTab.tsx +++ b/frontend/src/features/settings/tabs/WhatsAppTab.tsx @@ -144,7 +144,7 @@ export const WhatsAppTab: React.FC = () => { type="button" onClick={() => setShowToken((v) => !v)} className="p-1" - aria-label={showToken ? 'Hide' : 'Show'} + aria-label={showToken ? t('common.hide', 'Hide') : t('common.show', 'Show')} > {showToken ? : } diff --git a/frontend/src/i18n/locales/de.json b/frontend/src/i18n/locales/de.json index a5c7e19b..a317244f 100644 --- a/frontend/src/i18n/locales/de.json +++ b/frontend/src/i18n/locales/de.json @@ -151,7 +151,8 @@ "preview": "Vorschau", "duplicate": "Duplizieren", "showAll": "Alle anzeigen", - "confirm": "Bestätigen" + "confirm": "Bestätigen", + "show": "Einblenden" }, "upload": { "photoCategory": "Fotokategorie", diff --git a/frontend/src/i18n/locales/en.json b/frontend/src/i18n/locales/en.json index 389c4b2b..06092183 100644 --- a/frontend/src/i18n/locales/en.json +++ b/frontend/src/i18n/locales/en.json @@ -151,7 +151,8 @@ "preview": "Preview", "duplicate": "Duplicate", "showAll": "Show all", - "confirm": "Confirm" + "confirm": "Confirm", + "show": "Show" }, "upload": { "photoCategory": "Photo Category",