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 16:58:31 +00:00
|
|
|
import ja from "./locales/ja-JP"
|
2024-02-05 14:59:58 +00:00
|
|
|
import de from "./locales/de-DE"
|
2024-02-05 21:12:54 +00:00
|
|
|
import nl from "./locales/nl-NL"
|
2024-02-07 16:26:45 +00:00
|
|
|
import ro from "./locales/ro-RO"
|
2024-02-07 17:57:14 +00:00
|
|
|
import es from "./locales/es-ES"
|
2024-02-08 16:47:12 +00:00
|
|
|
import uk from "./locales/uk-UA"
|
2024-02-05 04:57:10 +00:00
|
|
|
|
|
|
|
export const TRANSLATIONS = {
|
|
|
|
"en-US": en,
|
|
|
|
"fr-FR": fr,
|
2024-02-05 16:58:31 +00:00
|
|
|
"ja-JP": ja,
|
2024-02-05 14:59:58 +00:00
|
|
|
"de-DE": de,
|
2024-02-05 21:12:54 +00:00
|
|
|
"nl-NL": nl,
|
2024-02-07 16:26:45 +00:00
|
|
|
"ro-RO": ro,
|
2024-02-08 16:48:13 +00:00
|
|
|
"ro-MD": ro,
|
2024-02-07 17:57:14 +00:00
|
|
|
"es-ES": es,
|
2024-02-08 16:47:12 +00:00
|
|
|
"uk-UA": uk,
|
2024-02-05 04:57:10 +00:00
|
|
|
} as const
|
|
|
|
|
2024-02-08 17:31:36 +00:00
|
|
|
export const defaultTranslation = "en-US"
|
|
|
|
export const i18n = (locale: ValidLocale): Translation => TRANSLATIONS[locale ?? defaultTranslation]
|
2024-02-05 04:57:10 +00:00
|
|
|
export type ValidLocale = keyof typeof TRANSLATIONS
|