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