@oxyhq/core 1.6.3 → 1.6.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/esm/i18n/index.js +11 -11
- package/package.json +1 -1
package/dist/esm/i18n/index.js
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
import enUS from './locales/en-US.json
|
|
2
|
-
import esES from './locales/es-ES.json
|
|
3
|
-
import caES from './locales/ca-ES.json
|
|
4
|
-
import frFR from './locales/fr-FR.json
|
|
5
|
-
import deDE from './locales/de-DE.json
|
|
6
|
-
import itIT from './locales/it-IT.json
|
|
7
|
-
import ptPT from './locales/pt-PT.json
|
|
8
|
-
import jaJP from './locales/ja-JP.json
|
|
9
|
-
import koKR from './locales/ko-KR.json
|
|
10
|
-
import zhCN from './locales/zh-CN.json
|
|
11
|
-
import arSA from './locales/ar-SA.json
|
|
1
|
+
import enUS from './locales/en-US.json' with { type: "json" };
|
|
2
|
+
import esES from './locales/es-ES.json' with { type: "json" };
|
|
3
|
+
import caES from './locales/ca-ES.json' with { type: "json" };
|
|
4
|
+
import frFR from './locales/fr-FR.json' with { type: "json" };
|
|
5
|
+
import deDE from './locales/de-DE.json' with { type: "json" };
|
|
6
|
+
import itIT from './locales/it-IT.json' with { type: "json" };
|
|
7
|
+
import ptPT from './locales/pt-PT.json' with { type: "json" };
|
|
8
|
+
import jaJP from './locales/ja-JP.json' with { type: "json" };
|
|
9
|
+
import koKR from './locales/ko-KR.json' with { type: "json" };
|
|
10
|
+
import zhCN from './locales/zh-CN.json' with { type: "json" };
|
|
11
|
+
import arSA from './locales/ar-SA.json' with { type: "json" };
|
|
12
12
|
const DICTS = {
|
|
13
13
|
'en': enUS,
|
|
14
14
|
'en-US': enUS,
|
package/package.json
CHANGED