feat(i18n): add Czech locale translations

Add Czech (cs) translations for contact-facing pages and email footers,
and wire up the locale in the i18n system with the correct flag.
This commit is contained in:
Jan Wunsch
2026-02-11 01:48:38 +01:00
parent 42ceb6edc0
commit 14c471e4ca
3 changed files with 48 additions and 0 deletions
+2
View File
@@ -7,6 +7,7 @@ import deTranslations from './locales/de.json' with {type: 'json'};
import hiTranslations from './locales/hi.json' with {type: 'json'};
import ptTranslations from './locales/pt.json' with {type: 'json'};
import bgTranslations from './locales/bg.json' with {type: 'json'};
import csTranslations from './locales/cs.json' with {type: 'json'};
export {
SUPPORTED_LANGUAGES,
DEFAULT_LANGUAGE,
@@ -38,6 +39,7 @@ const translationsMap: Record<string, Translations> = {
hi: hiTranslations,
pt: ptTranslations,
bg: bgTranslations,
cs: csTranslations,
};
// In-memory cache for loaded translations