import en from './en.json'; import de from './de.json'; import es from './es.json'; const translations = { en, de, es } as const; export type Locale = keyof typeof translations; export function getTranslations(locale: Locale) { return translations[locale] || translations.en; }