| | |
| | | import { Translation, CalloutTranslation } from "./locales/definition" |
| | | import en from "./locales/en-US" |
| | | import enUs from "./locales/en-US" |
| | | import enGb from "./locales/en-GB" |
| | | import fr from "./locales/fr-FR" |
| | | import it from "./locales/it-IT" |
| | | import ja from "./locales/ja-JP" |
| | |
| | | import hu from "./locales/hu-HU" |
| | | import fa from "./locales/fa-IR" |
| | | import pl from "./locales/pl-PL" |
| | | import cs from "./locales/cs-CZ" |
| | | import tr from "./locales/tr-TR" |
| | | |
| | | export const TRANSLATIONS = { |
| | | "en-US": en, |
| | | "en-GB": en, |
| | | "en-US": enUs, |
| | | "en-GB": enGb, |
| | | "fr-FR": fr, |
| | | "it-IT": it, |
| | | "ja-JP": ja, |
| | |
| | | "hu-HU": hu, |
| | | "fa-IR": fa, |
| | | "pl-PL": pl, |
| | | "cs-CZ": cs, |
| | | "tr-TR": tr, |
| | | } as const |
| | | |
| | | export const defaultTranslation = "en-US" |