2024-02-05 10:45:36 +00:00
|
|
|
import { Translation } from "./locales/definition"
|
|
|
|
import en from "./locales/en-US"
|
|
|
|
import fr from "./locales/fr-FR"
|
2024-02-05 14:25:28 +00:00
|
|
|
import ja from "./locales/ja-JP"
|
2024-02-05 10:45:36 +00:00
|
|
|
|
|
|
|
export const TRANSLATIONS = {
|
|
|
|
"en-US": en,
|
|
|
|
"fr-FR": fr,
|
2024-02-05 14:25:28 +00:00
|
|
|
"ja-JP": ja,
|
2024-02-05 10:45:36 +00:00
|
|
|
} as const
|
|
|
|
|
|
|
|
export const i18n = (locale: ValidLocale): Translation => TRANSLATIONS[locale]
|
|
|
|
export type ValidLocale = keyof typeof TRANSLATIONS
|