import { Locale, Dictionary } from "./types"; import de from "./de"; import en from "./en"; export const dictionaries: Record = { de, en }; export function getDictionary(locale: Locale): Dictionary { return dictionaries[locale] ?? en; } export { type Locale, type Dictionary } from "./types";