2024-02-05 11:57:10 +07:00
|
|
|
import { Translation } from "./locales/definition"
|
|
|
|
import en from "./locales/en-US"
|
|
|
|
import fr from "./locales/fr-FR"
|
2024-02-05 23:58:31 +07:00
|
|
|
import ja from "./locales/ja-JP"
|
2024-02-05 21:59:58 +07:00
|
|
|
import de from "./locales/de-DE"
|
2024-02-06 04:12:54 +07:00
|
|
|
import nl from "./locales/nl-NL"
|
2024-02-05 11:57:10 +07:00
|
|
|
|
|
|
|
export const TRANSLATIONS = {
|
|
|
|
"en-US": en,
|
|
|
|
"fr-FR": fr,
|
2024-02-05 23:58:31 +07:00
|
|
|
"ja-JP": ja,
|
2024-02-05 21:59:58 +07:00
|
|
|
"de-DE": de,
|
2024-02-06 04:12:54 +07:00
|
|
|
"nl-NL": nl,
|
2024-02-05 11:57:10 +07:00
|
|
|
} as const
|
|
|
|
|
2024-02-06 05:19:21 +07:00
|
|
|
export const i18n = (locale: ValidLocale): Translation => TRANSLATIONS[locale ?? "en-US"]
|
2024-02-05 11:57:10 +07:00
|
|
|
export type ValidLocale = keyof typeof TRANSLATIONS
|