@dobot-plus/template 1.2.12 → 1.2.13
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/.dobot/utils/i18n.ts +7 -1
- package/Resources/i18n/client/cs.json +11 -0
- package/Resources/i18n/client/fr.json +11 -0
- package/Resources/i18n/client/pt.json +11 -0
- package/Resources/i18n/plugin/cs.json +3 -0
- package/Resources/i18n/plugin/fr.json +3 -0
- package/Resources/i18n/plugin/pt.json +3 -0
- package/package.json +1 -1
package/.dobot/utils/i18n.ts
CHANGED
|
@@ -6,6 +6,9 @@ import en from '../../Resources/i18n/plugin/en.json'
|
|
|
6
6
|
import ru from '../../Resources/i18n/plugin/ru.json'
|
|
7
7
|
import es from '../../Resources/i18n/plugin/es.json'
|
|
8
8
|
import hk from '../../Resources/i18n/plugin/hk.json'
|
|
9
|
+
import pt from '../../Resources/i18n/plugin/pt.json'
|
|
10
|
+
import fr from '../../Resources/i18n/plugin/fr.json'
|
|
11
|
+
import cs from '../../Resources/i18n/plugin/cs.json'
|
|
9
12
|
|
|
10
13
|
import i18n from 'i18next'
|
|
11
14
|
import { initReactI18next } from 'react-i18next'
|
|
@@ -19,7 +22,10 @@ i18n.use(initReactI18next).init({
|
|
|
19
22
|
ko: { translation: ko },
|
|
20
23
|
ru: { translation: ru },
|
|
21
24
|
es: { translation: es },
|
|
22
|
-
hk: { translation: hk }
|
|
25
|
+
hk: { translation: hk },
|
|
26
|
+
pt: { translation: pt },
|
|
27
|
+
fr: { translation: fr },
|
|
28
|
+
cs: { translation: cs }
|
|
23
29
|
},
|
|
24
30
|
lng: 'zh',
|
|
25
31
|
interpolation: {
|