2024-02-11 05:09:57 +07:00
|
|
|
import { Translation, CalloutTranslation } from "./locales/definition"
|
2024-07-21 10:24:17 +07:00
|
|
|
import enUs from "./locales/en-US"
|
|
|
|
import enGb from "./locales/en-GB"
|
2024-02-05 11:57:10 +07:00
|
|
|
import fr from "./locales/fr-FR"
|
2024-02-20 00:50:01 +07:00
|
|
|
import it from "./locales/it-IT"
|
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-07 23:26:45 +07:00
|
|
|
import ro from "./locales/ro-RO"
|
2024-07-01 11:03:45 +07:00
|
|
|
import ca from "./locales/ca-ES"
|
2024-02-08 00:57:14 +07:00
|
|
|
import es from "./locales/es-ES"
|
2024-02-11 00:02:28 +07:00
|
|
|
import ar from "./locales/ar-SA"
|
2024-02-08 23:47:12 +07:00
|
|
|
import uk from "./locales/uk-UA"
|
2024-02-19 01:54:37 +07:00
|
|
|
import ru from "./locales/ru-RU"
|
2024-02-19 05:37:59 +07:00
|
|
|
import ko from "./locales/ko-KR"
|
2024-02-20 01:31:09 +07:00
|
|
|
import zh from "./locales/zh-CN"
|
2024-03-01 07:14:20 +07:00
|
|
|
import vi from "./locales/vi-VN"
|
2024-03-24 23:40:01 +07:00
|
|
|
import pt from "./locales/pt-BR"
|
2024-03-24 23:35:07 +07:00
|
|
|
import hu from "./locales/hu-HU"
|
2024-05-13 23:12:06 +07:00
|
|
|
import fa from "./locales/fa-IR"
|
2024-05-21 02:36:32 +07:00
|
|
|
import pl from "./locales/pl-PL"
|
2024-02-05 11:57:10 +07:00
|
|
|
|
|
|
|
export const TRANSLATIONS = {
|
2024-07-21 10:24:17 +07:00
|
|
|
"en-US": enUs,
|
|
|
|
"en-GB": enGb,
|
2024-02-05 11:57:10 +07:00
|
|
|
"fr-FR": fr,
|
2024-02-20 00:50:01 +07:00
|
|
|
"it-IT": it,
|
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-12 23:58:00 +07:00
|
|
|
"nl-BE": nl,
|
2024-02-07 23:26:45 +07:00
|
|
|
"ro-RO": ro,
|
2024-02-08 23:48:13 +07:00
|
|
|
"ro-MD": ro,
|
2024-07-01 11:03:45 +07:00
|
|
|
"ca-ES": ca,
|
2024-02-08 00:57:14 +07:00
|
|
|
"es-ES": es,
|
2024-02-11 00:02:28 +07:00
|
|
|
"ar-SA": ar,
|
|
|
|
"ar-AE": ar,
|
|
|
|
"ar-QA": ar,
|
|
|
|
"ar-BH": ar,
|
|
|
|
"ar-KW": ar,
|
|
|
|
"ar-OM": ar,
|
|
|
|
"ar-YE": ar,
|
|
|
|
"ar-IR": ar,
|
|
|
|
"ar-SY": ar,
|
|
|
|
"ar-IQ": ar,
|
|
|
|
"ar-JO": ar,
|
|
|
|
"ar-PL": ar,
|
|
|
|
"ar-LB": ar,
|
|
|
|
"ar-EG": ar,
|
|
|
|
"ar-SD": ar,
|
|
|
|
"ar-LY": ar,
|
|
|
|
"ar-MA": ar,
|
|
|
|
"ar-TN": ar,
|
|
|
|
"ar-DZ": ar,
|
|
|
|
"ar-MR": ar,
|
2024-02-08 23:47:12 +07:00
|
|
|
"uk-UA": uk,
|
2024-02-19 01:54:37 +07:00
|
|
|
"ru-RU": ru,
|
2024-02-19 05:37:59 +07:00
|
|
|
"ko-KR": ko,
|
2024-02-20 01:31:09 +07:00
|
|
|
"zh-CN": zh,
|
2024-03-01 07:14:20 +07:00
|
|
|
"vi-VN": vi,
|
2024-03-24 23:40:01 +07:00
|
|
|
"pt-BR": pt,
|
2024-03-24 23:35:07 +07:00
|
|
|
"hu-HU": hu,
|
2024-05-13 23:12:06 +07:00
|
|
|
"fa-IR": fa,
|
2024-05-21 02:36:32 +07:00
|
|
|
"pl-PL": pl,
|
2024-02-05 11:57:10 +07:00
|
|
|
} as const
|
|
|
|
|
2024-02-09 00:31:36 +07:00
|
|
|
export const defaultTranslation = "en-US"
|
|
|
|
export const i18n = (locale: ValidLocale): Translation => TRANSLATIONS[locale ?? defaultTranslation]
|
2024-02-05 11:57:10 +07:00
|
|
|
export type ValidLocale = keyof typeof TRANSLATIONS
|
2024-02-11 05:09:57 +07:00
|
|
|
export type ValidCallout = keyof CalloutTranslation
|