const datetimeFormats = { // CODE_GEN_ID: DATE_LOCALES "af-ZA": () => import("./lang/dateTimeFormats/af-ZA.json"), "ar-SA": () => import("./lang/dateTimeFormats/ar-SA.json"), "bg-BG": () => import("./lang/dateTimeFormats/bg-BG.json"), "ca-ES": () => import("./lang/dateTimeFormats/ca-ES.json"), "cs-CZ": () => import("./lang/dateTimeFormats/cs-CZ.json"), "da-DK": () => import("./lang/dateTimeFormats/da-DK.json"), "de-DE": () => import("./lang/dateTimeFormats/de-DE.json"), "el-GR": () => import("./lang/dateTimeFormats/el-GR.json"), "en-GB": () => import("./lang/dateTimeFormats/en-GB.json"), "en-US": () => import("./lang/dateTimeFormats/en-US.json"), "es-ES": () => import("./lang/dateTimeFormats/es-ES.json"), "et-EE": () => import("./lang/dateTimeFormats/et-EE.json"), "fi-FI": () => import("./lang/dateTimeFormats/fi-FI.json"), "fr-BE": () => import("./lang/dateTimeFormats/fr-BE.json"), "fr-CA": () => import("./lang/dateTimeFormats/fr-CA.json"), "fr-FR": () => import("./lang/dateTimeFormats/fr-FR.json"), "gl-ES": () => import("./lang/dateTimeFormats/gl-ES.json"), "he-IL": () => import("./lang/dateTimeFormats/he-IL.json"), "hr-HR": () => import("./lang/dateTimeFormats/hr-HR.json"), "hu-HU": () => import("./lang/dateTimeFormats/hu-HU.json"), "is-IS": () => import("./lang/dateTimeFormats/is-IS.json"), "it-IT": () => import("./lang/dateTimeFormats/it-IT.json"), "ja-JP": () => import("./lang/dateTimeFormats/ja-JP.json"), "ko-KR": () => import("./lang/dateTimeFormats/ko-KR.json"), "lt-LT": () => import("./lang/dateTimeFormats/lt-LT.json"), "lv-LV": () => import("./lang/dateTimeFormats/lv-LV.json"), "nl-NL": () => import("./lang/dateTimeFormats/nl-NL.json"), "no-NO": () => import("./lang/dateTimeFormats/no-NO.json"), "pl-PL": () => import("./lang/dateTimeFormats/pl-PL.json"), "pt-BR": () => import("./lang/dateTimeFormats/pt-BR.json"), "pt-PT": () => import("./lang/dateTimeFormats/pt-PT.json"), "ro-RO": () => import("./lang/dateTimeFormats/ro-RO.json"), "ru-RU": () => import("./lang/dateTimeFormats/ru-RU.json"), "sk-SK": () => import("./lang/dateTimeFormats/sk-SK.json"), "sl-SI": () => import("./lang/dateTimeFormats/sl-SI.json"), "sr-SP": () => import("./lang/dateTimeFormats/sr-SP.json"), "sv-SE": () => import("./lang/dateTimeFormats/sv-SE.json"), "tr-TR": () => import("./lang/dateTimeFormats/tr-TR.json"), "uk-UA": () => import("./lang/dateTimeFormats/uk-UA.json"), "vi-VN": () => import("./lang/dateTimeFormats/vi-VN.json"), "zh-CN": () => import("./lang/dateTimeFormats/zh-CN.json"), "zh-TW": () => import("./lang/dateTimeFormats/zh-TW.json"), // END: DATE_LOCALES }; export default defineI18nConfig(() => { return { legacy: false, locale: "en-US", availableLocales: Object.keys(datetimeFormats), datetimeFormats, fallbackLocale: "en-US", fallbackWarn: true, }; });