@panoramax/web-viewer 3.2.3-develop-78cd3228 → 3.2.3-develop-4ea4ef45
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/CHANGELOG.md +1 -1
- package/build/index.js +11 -11
- package/build/index.js.map +1 -1
- package/package.json +1 -1
- package/src/utils/i18n.js +2 -1
package/package.json
CHANGED
package/src/utils/i18n.js
CHANGED
|
@@ -7,6 +7,7 @@ import T_fr from "../translations/fr.json";
|
|
|
7
7
|
import T_hu from "../translations/hu.json";
|
|
8
8
|
import T_it from "../translations/it.json";
|
|
9
9
|
import T_ja from "../translations/ja.json";
|
|
10
|
+
import T_nl from "../translations/nl.json";
|
|
10
11
|
import T_pl from "../translations/pl.json";
|
|
11
12
|
import T_sv from "../translations/sv.json";
|
|
12
13
|
import T_zh_Hant from "../translations/zh_Hant.json";
|
|
@@ -14,7 +15,7 @@ import T_zh_Hant from "../translations/zh_Hant.json";
|
|
|
14
15
|
const FALLBACK_LOCALE = "en";
|
|
15
16
|
const TRANSLATIONS = {
|
|
16
17
|
"da": T_da, "de": T_de, "eo": T_eo, "en": T_en, "es": T_es, "fr": T_fr,
|
|
17
|
-
"hu": T_hu, "it": T_it, "ja": T_ja, "pl": T_pl, "sv": T_sv, "zh-Hant": T_zh_Hant,
|
|
18
|
+
"hu": T_hu, "it": T_it, "ja": T_ja, "nl": T_nl, "pl": T_pl, "sv": T_sv, "zh-Hant": T_zh_Hant,
|
|
18
19
|
"zh": T_zh_Hant,
|
|
19
20
|
};
|
|
20
21
|
|