openatc-components 0.4.86 → 0.4.87
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/package/kisscomps/components/BoardCard/BoardCard.vue +0 -4
- package/package/kisscomps/components/PatternStatus/PatternStatus.vue +1 -81
- package/package/kisscomps/components/patternList/patternList.vue +0 -4
- package/package/kisscomps/index.js +6 -2
- package/package/kissui.min.js +1 -1
- package/package.json +1 -1
- package/src/i18n/language/index.js +6 -0
- package/src/i18n/language/ru.js +1477 -0
- package/src/kisscomps/components/BoardCard/BoardCard.vue +0 -4
- package/src/kisscomps/components/PatternStatus/PatternStatus.vue +1 -81
- package/src/kisscomps/components/patternList/patternList.vue +0 -4
- package/src/kisscomps/index.js +6 -2
- package/src/views/patternConfig.vue +2 -2
- package/src/views/schemeconfig.vue +1 -1
package/package.json
CHANGED
|
@@ -13,6 +13,8 @@ import en from './en'
|
|
|
13
13
|
import zh from './zh'
|
|
14
14
|
import enLocale from 'element-ui/lib/locale/lang/en'
|
|
15
15
|
import zhLocale from 'element-ui/lib/locale/lang/zh-CN'
|
|
16
|
+
import ru from './ru'
|
|
17
|
+
import ruLocal from 'element-ui/lib/locale/lang/ru-RU'
|
|
16
18
|
export default {
|
|
17
19
|
en: {
|
|
18
20
|
...en,
|
|
@@ -21,5 +23,9 @@ export default {
|
|
|
21
23
|
zh: {
|
|
22
24
|
...zh,
|
|
23
25
|
...zhLocale
|
|
26
|
+
},
|
|
27
|
+
ru: {
|
|
28
|
+
...ru,
|
|
29
|
+
...ruLocal
|
|
24
30
|
}
|
|
25
31
|
}
|