mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-10-27 08:14:30 -04:00
fix: Fix PWA (#6090)
This commit is contained in:
@@ -1,48 +1,47 @@
|
||||
/* eslint-disable @typescript-eslint/no-require-imports */
|
||||
const datetimeFormats = {
|
||||
// CODE_GEN_ID: DATE_LOCALES
|
||||
"af-ZA": require("./lang/dateTimeFormats/af-ZA.json"),
|
||||
"ar-SA": require("./lang/dateTimeFormats/ar-SA.json"),
|
||||
"bg-BG": require("./lang/dateTimeFormats/bg-BG.json"),
|
||||
"ca-ES": require("./lang/dateTimeFormats/ca-ES.json"),
|
||||
"cs-CZ": require("./lang/dateTimeFormats/cs-CZ.json"),
|
||||
"da-DK": require("./lang/dateTimeFormats/da-DK.json"),
|
||||
"de-DE": require("./lang/dateTimeFormats/de-DE.json"),
|
||||
"el-GR": require("./lang/dateTimeFormats/el-GR.json"),
|
||||
"en-GB": require("./lang/dateTimeFormats/en-GB.json"),
|
||||
"en-US": require("./lang/dateTimeFormats/en-US.json"),
|
||||
"es-ES": require("./lang/dateTimeFormats/es-ES.json"),
|
||||
"et-EE": require("./lang/dateTimeFormats/et-EE.json"),
|
||||
"fi-FI": require("./lang/dateTimeFormats/fi-FI.json"),
|
||||
"fr-BE": require("./lang/dateTimeFormats/fr-BE.json"),
|
||||
"fr-CA": require("./lang/dateTimeFormats/fr-CA.json"),
|
||||
"fr-FR": require("./lang/dateTimeFormats/fr-FR.json"),
|
||||
"gl-ES": require("./lang/dateTimeFormats/gl-ES.json"),
|
||||
"he-IL": require("./lang/dateTimeFormats/he-IL.json"),
|
||||
"hr-HR": require("./lang/dateTimeFormats/hr-HR.json"),
|
||||
"hu-HU": require("./lang/dateTimeFormats/hu-HU.json"),
|
||||
"is-IS": require("./lang/dateTimeFormats/is-IS.json"),
|
||||
"it-IT": require("./lang/dateTimeFormats/it-IT.json"),
|
||||
"ja-JP": require("./lang/dateTimeFormats/ja-JP.json"),
|
||||
"ko-KR": require("./lang/dateTimeFormats/ko-KR.json"),
|
||||
"lt-LT": require("./lang/dateTimeFormats/lt-LT.json"),
|
||||
"lv-LV": require("./lang/dateTimeFormats/lv-LV.json"),
|
||||
"nl-NL": require("./lang/dateTimeFormats/nl-NL.json"),
|
||||
"no-NO": require("./lang/dateTimeFormats/no-NO.json"),
|
||||
"pl-PL": require("./lang/dateTimeFormats/pl-PL.json"),
|
||||
"pt-BR": require("./lang/dateTimeFormats/pt-BR.json"),
|
||||
"pt-PT": require("./lang/dateTimeFormats/pt-PT.json"),
|
||||
"ro-RO": require("./lang/dateTimeFormats/ro-RO.json"),
|
||||
"ru-RU": require("./lang/dateTimeFormats/ru-RU.json"),
|
||||
"sk-SK": require("./lang/dateTimeFormats/sk-SK.json"),
|
||||
"sl-SI": require("./lang/dateTimeFormats/sl-SI.json"),
|
||||
"sr-SP": require("./lang/dateTimeFormats/sr-SP.json"),
|
||||
"sv-SE": require("./lang/dateTimeFormats/sv-SE.json"),
|
||||
"tr-TR": require("./lang/dateTimeFormats/tr-TR.json"),
|
||||
"uk-UA": require("./lang/dateTimeFormats/uk-UA.json"),
|
||||
"vi-VN": require("./lang/dateTimeFormats/vi-VN.json"),
|
||||
"zh-CN": require("./lang/dateTimeFormats/zh-CN.json"),
|
||||
"zh-TW": require("./lang/dateTimeFormats/zh-TW.json"),
|
||||
"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
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user