import enTranslations from './en'; import kmTranslations from './km'; import deTranslations from './de'; import koTranslations from './ko'; import jaTranslations from './ja'; import zhcnTranslations from './zhcn'; export type Language = "en" | "km" | "de" | "ko" | "ja" | "zhcn"; export const translations = { en: enTranslations, km: kmTranslations, de: deTranslations, ko: koTranslations, ja: jaTranslations, zhcn: zhcnTranslations, }; // Type for accessing translations by module and key export type TranslationModule = keyof typeof enTranslations; export type TranslationKey = keyof typeof enTranslations[M];