2024-02-05 04:57:10 +00:00
|
|
|
import { Translation } from "./locales/definition"
|
|
|
|
import en from "./locales/en-US"
|
|
|
|
import fr from "./locales/fr-FR"
|
2024-02-05 14:59:58 +00:00
|
|
|
import de from "./locales/de-DE"
|
2024-02-05 04:57:10 +00:00
|
|
|
|
|
|
|
export const TRANSLATIONS = {
|
|
|
|
"en-US": en,
|
|
|
|
"fr-FR": fr,
|
2024-02-05 14:59:58 +00:00
|
|
|
"de-DE": de,
|
2024-02-05 04:57:10 +00:00
|
|
|
} as const
|
|
|
|
|
|
|
|
export const i18n = (locale: ValidLocale): Translation => TRANSLATIONS[locale]
|
|
|
|
export type ValidLocale = keyof typeof TRANSLATIONS
|