@panoramax/web-viewer 3.2.0-develop-0b93c98a → 3.2.0-develop-082597d1
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 +5 -5
- package/build/index.js.map +1 -1
- package/package.json +1 -1
- package/src/utils/I18n.js +3 -1
package/package.json
CHANGED
package/src/utils/I18n.js
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
|
+
import T_da from "../translations/da.json";
|
|
1
2
|
import T_de from "../translations/de.json";
|
|
2
3
|
import T_en from "../translations/en.json";
|
|
4
|
+
import T_eo from "../translations/eo.json";
|
|
3
5
|
import T_es from "../translations/es.json";
|
|
4
6
|
import T_fr from "../translations/fr.json";
|
|
5
7
|
import T_hu from "../translations/hu.json";
|
|
@@ -9,7 +11,7 @@ import T_zh_Hant from "../translations/zh_Hant.json";
|
|
|
9
11
|
|
|
10
12
|
const FALLBACK_LOCALE = "en";
|
|
11
13
|
const TRANSLATIONS = {
|
|
12
|
-
"de": T_de, "en": T_en, "es": T_es, "fr": T_fr,
|
|
14
|
+
"da": T_da, "de": T_de, "eo": T_eo, "en": T_en, "es": T_es, "fr": T_fr,
|
|
13
15
|
"hu": T_hu, "it": T_it, "pl": T_pl, "zh_Hant": T_zh_Hant,
|
|
14
16
|
};
|
|
15
17
|
|