@maxax/ui 1.1.66 → 1.1.68
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/component.d.ts.map +1 -1
- package/dist/components/basic-bool-icon/BasicBoolIcon.vue.d.ts +6 -0
- package/dist/components/basic-bool-icon/BasicBoolIcon.vue.d.ts.map +1 -0
- package/dist/components/basic-bool-icon/index.d.ts +7 -0
- package/dist/components/basic-bool-icon/index.d.ts.map +1 -0
- package/dist/components/basic-bool-icon/interface.d.ts +10 -0
- package/dist/components/basic-bool-icon/interface.d.ts.map +1 -0
- package/dist/components/basic-button-import-max/BasicButtonImportMax.vue.d.ts +12 -2
- package/dist/components/basic-button-import-max/BasicButtonImportMax.vue.d.ts.map +1 -1
- package/dist/components/basic-button-import-max/PreviewModal.vue.d.ts +12 -2
- package/dist/components/basic-button-import-max/PreviewModal.vue.d.ts.map +1 -1
- package/dist/components/basic-form/BasicForm.vue.d.ts +4 -4
- package/dist/components/basic-json-viewer/BasicJsonViewer.d.ts +1 -1
- package/dist/components/basic-json-viewer/BasicJsonViewer.d.ts.map +1 -1
- package/dist/components/basic-json-viewer/components/TreeNode.d.ts +1 -1
- package/dist/components/basic-message-box/BasicMessageBox.vue.d.ts +10 -8
- package/dist/components/basic-message-box/BasicMessageBox.vue.d.ts.map +1 -1
- package/dist/components/basic-table/BasicTable.vue.d.ts.map +1 -1
- package/dist/components/basic-table/hooks/use-table-config.d.ts.map +1 -1
- package/dist/components/basic-tag/BasicTag.vue.d.ts +8 -2
- package/dist/components/basic-tag/BasicTag.vue.d.ts.map +1 -1
- package/dist/components/basic-tag/interface.d.ts +26 -3
- package/dist/components/basic-tag/interface.d.ts.map +1 -1
- package/dist/components/index.d.ts +1 -0
- package/dist/components/index.d.ts.map +1 -1
- package/dist/index.cjs +3071 -5430
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +3296 -5655
- package/dist/index.mjs.map +1 -1
- package/dist/locales.cjs +128 -44
- package/dist/locales.cjs.map +1 -1
- package/dist/locales.mjs +128 -44
- package/dist/locales.mjs.map +1 -1
- package/dist/theme-chalk/components/basicBoolIcon.scss +38 -0
- package/dist/theme-chalk/components/basicTag.scss +78 -4
- package/dist/theme-chalk/components/components.scss +1 -0
- package/dist/theme-chalk/index.css +1 -1
- package/dist/theme-chalk/light.css +1 -1
- package/package.json +6 -5
package/dist/locales.cjs
CHANGED
|
@@ -40,7 +40,7 @@ function requireEnUS$1() {
|
|
|
40
40
|
useErr: 'An error occurred while installing the "{0}" module. The order may be incorrect. The dependent module needs to be installed before Table',
|
|
41
41
|
barUnableLink: "The toolbar cannot associate tables",
|
|
42
42
|
expandContent: 'The slot for the expanded line should be "content", please check if it is correct',
|
|
43
|
-
reqComp: 'The "{0}"
|
|
43
|
+
reqComp: 'The component "{0}" is missing. Please check if it is installed correctly. https://vxeui.com/#/start/useUI/useGlobal',
|
|
44
44
|
reqModule: 'Missing "{0}" module',
|
|
45
45
|
reqProp: 'The necessary "{0}" parameter is missing, which may cause an error',
|
|
46
46
|
emptyProp: 'Parameter "{0}" is not allowed to be empty',
|
|
@@ -71,7 +71,7 @@ function requireEnUS$1() {
|
|
|
71
71
|
treeNotImp: "Tree tables do not support import",
|
|
72
72
|
treeCrossDrag: "Only drag the first level",
|
|
73
73
|
treeDragChild: "Parents cannot drag to their own children",
|
|
74
|
-
reqPlugin: '"{1}"
|
|
74
|
+
reqPlugin: '扩展插件未安装 "{1}" https://vxeui.com/other{0}/#/{1}/start/npmInstall',
|
|
75
75
|
errMaxRow: "Exceeding the maximum supported data volume {0} rows, this may cause an error",
|
|
76
76
|
useNew: "It is not recommended to use {0}. Please use {1} instead.",
|
|
77
77
|
errorVersion: "Version mismatch. Current version is {0}, while the minimum supported version is {1}."
|
|
@@ -119,11 +119,12 @@ function requireEnUS$1() {
|
|
|
119
119
|
select: {
|
|
120
120
|
clear: "Clear",
|
|
121
121
|
allChecked: "All",
|
|
122
|
-
total: "{0}
|
|
122
|
+
total: "{0} items selected",
|
|
123
|
+
close: "Close",
|
|
123
124
|
search: "Search",
|
|
124
125
|
loadingText: "Loading",
|
|
125
126
|
emptyText: "No data yet",
|
|
126
|
-
|
|
127
|
+
maxSize: "最大可选择的数量不能超过 {0} 个",
|
|
127
128
|
overSizeErr: "The maximum selectable quantity of {0} has been exceeded. The excess part will be ignored!",
|
|
128
129
|
searchEmpty: "No matching data found!"
|
|
129
130
|
},
|
|
@@ -136,7 +137,8 @@ function requireEnUS$1() {
|
|
|
136
137
|
allChecked: "Check all",
|
|
137
138
|
allExpand: "Expand all",
|
|
138
139
|
clearExpand: "Collapse all",
|
|
139
|
-
total: "
|
|
140
|
+
total: "{0} items selected",
|
|
141
|
+
close: "Close",
|
|
140
142
|
search: "Search",
|
|
141
143
|
emptyText: "No data yet"
|
|
142
144
|
},
|
|
@@ -179,15 +181,23 @@ function requireEnUS$1() {
|
|
|
179
181
|
cstmDragTarget: "Move: {0}",
|
|
180
182
|
setting: {
|
|
181
183
|
colSort: "Sort",
|
|
182
|
-
sortHelpTip: "
|
|
183
|
-
colTitle: "
|
|
184
|
-
colResizable: "
|
|
185
|
-
colVisible: "
|
|
186
|
-
colFixed: "Freeze
|
|
187
|
-
colFixedMax: "Freeze
|
|
188
|
-
fixedLeft: "Left
|
|
189
|
-
fixedUnset: "Not set",
|
|
190
|
-
fixedRight: "Right
|
|
184
|
+
sortHelpTip: "点击图标开始拖动",
|
|
185
|
+
colTitle: "Title",
|
|
186
|
+
colResizable: "Width (pixels)",
|
|
187
|
+
colVisible: "Visible",
|
|
188
|
+
colFixed: "Freeze",
|
|
189
|
+
colFixedMax: "Freeze (up to {0} columns)",
|
|
190
|
+
fixedLeft: "Left",
|
|
191
|
+
fixedUnset: "Not set",
|
|
192
|
+
fixedRight: "Right",
|
|
193
|
+
moveUp: "Up",
|
|
194
|
+
moveDn: "Down",
|
|
195
|
+
putTop: "Top",
|
|
196
|
+
putBottom: "Bottom",
|
|
197
|
+
moveUpTitle: "点击向上移动",
|
|
198
|
+
moveDnTitle: "点击向下移动",
|
|
199
|
+
putTopTitle: "点击置顶",
|
|
200
|
+
putBottomTitle: "点击置尾"
|
|
191
201
|
}
|
|
192
202
|
},
|
|
193
203
|
import: {
|
|
@@ -245,6 +255,10 @@ function requireEnUS$1() {
|
|
|
245
255
|
expMergeTitle: "If present, cells with merged structures are supported",
|
|
246
256
|
expOptAllExpand: "Expand the tree",
|
|
247
257
|
expAllExpandTitle: "If it exists, it is supported to expand all data with hierarchical structures",
|
|
258
|
+
expOptTreeAllExpand: "Expand tree",
|
|
259
|
+
expTreeAllExpandTitle: "If present, automatically expand all tree levels",
|
|
260
|
+
expOptRowGroupAllExpand: "Expand group",
|
|
261
|
+
expRowGroupAllExpandTitle: "If present, automatically expand all group levels",
|
|
248
262
|
expOptUseStyle: "style",
|
|
249
263
|
expUseStyleTitle: "If present, cells with style are supported",
|
|
250
264
|
expOptOriginal: "Source data",
|
|
@@ -563,6 +577,10 @@ function requireEnUS$1() {
|
|
|
563
577
|
contextMenu: {
|
|
564
578
|
loadingText: "Loading"
|
|
565
579
|
},
|
|
580
|
+
switch: {
|
|
581
|
+
onText: "On",
|
|
582
|
+
offText: "Off"
|
|
583
|
+
},
|
|
566
584
|
gantt: {
|
|
567
585
|
tFullFormat: {
|
|
568
586
|
year: "{yyyy}年",
|
|
@@ -653,7 +671,7 @@ function requireEnUS$1() {
|
|
|
653
671
|
groupPlaceholder: "Drag here to set row groups",
|
|
654
672
|
valuesPlaceholder: "Drag here to aggregate",
|
|
655
673
|
dragExistCol: "The column already exists",
|
|
656
|
-
sortHelpTip: "
|
|
674
|
+
sortHelpTip: "点击图标开始拖动"
|
|
657
675
|
},
|
|
658
676
|
aggFuncs: {
|
|
659
677
|
sum: "Sum",
|
|
@@ -885,7 +903,7 @@ function requireZhCN$1() {
|
|
|
885
903
|
useErr: '安装 "{0}" 模块时发生错误,可能顺序不正确,依赖的模块需要在 Table 之前安装',
|
|
886
904
|
barUnableLink: "工具栏无法关联表格",
|
|
887
905
|
expandContent: '展开行的插槽应该是 "content",请检查是否正确',
|
|
888
|
-
reqComp: '缺少 "{0}" 组件,请检查是否正确安装。 https://vxeui.com/#/start/useGlobal',
|
|
906
|
+
reqComp: '缺少 "{0}" 组件,请检查是否正确安装。 https://vxeui.com/#/start/useUI/useGlobal',
|
|
889
907
|
reqModule: '缺少 "{0}" 模块',
|
|
890
908
|
reqProp: '缺少必要的 "{0}" 参数,这可能会导致出现错误',
|
|
891
909
|
emptyProp: '参数 "{0}" 不允许为空',
|
|
@@ -916,7 +934,7 @@ function requireZhCN$1() {
|
|
|
916
934
|
treeNotImp: "树表格不支持导入",
|
|
917
935
|
treeCrossDrag: "只能拖拽第一层级",
|
|
918
936
|
treeDragChild: "父级不能拖拽到自己的子级中",
|
|
919
|
-
reqPlugin: '扩展插件未安装 "{1}" https://vxeui.com/other{0}/#/{1}/
|
|
937
|
+
reqPlugin: '扩展插件未安装 "{1}" https://vxeui.com/other{0}/#/{1}/start/npmInstall',
|
|
920
938
|
errMaxRow: "超过支持的最大数据量 {0} 行,这可能会导致出现错误",
|
|
921
939
|
useNew: "不建议使用 {0},请使用 {1}",
|
|
922
940
|
errorVersion: "版本不匹配,当前版本 {0},最低支持版本为 {1}"
|
|
@@ -964,7 +982,8 @@ function requireZhCN$1() {
|
|
|
964
982
|
select: {
|
|
965
983
|
clear: "清除",
|
|
966
984
|
allChecked: "全选",
|
|
967
|
-
total: "{0}
|
|
985
|
+
total: "已选 {0} 项",
|
|
986
|
+
close: "关闭",
|
|
968
987
|
search: "搜索",
|
|
969
988
|
loadingText: "加载中...",
|
|
970
989
|
emptyText: "暂无数据",
|
|
@@ -981,7 +1000,8 @@ function requireZhCN$1() {
|
|
|
981
1000
|
allChecked: "全选",
|
|
982
1001
|
allExpand: "全部展开",
|
|
983
1002
|
clearExpand: "全部收起",
|
|
984
|
-
total: "已选 {0}",
|
|
1003
|
+
total: "已选 {0} 项",
|
|
1004
|
+
close: "关闭",
|
|
985
1005
|
search: "搜索",
|
|
986
1006
|
emptyText: "暂无数据"
|
|
987
1007
|
},
|
|
@@ -1024,7 +1044,7 @@ function requireZhCN$1() {
|
|
|
1024
1044
|
cstmDragTarget: "移动:{0}",
|
|
1025
1045
|
setting: {
|
|
1026
1046
|
colSort: "排序",
|
|
1027
|
-
sortHelpTip: "
|
|
1047
|
+
sortHelpTip: "点击图标开始拖动",
|
|
1028
1048
|
colTitle: "列标题",
|
|
1029
1049
|
colResizable: "列宽(像素)",
|
|
1030
1050
|
colVisible: "是否显示",
|
|
@@ -1032,7 +1052,15 @@ function requireZhCN$1() {
|
|
|
1032
1052
|
colFixedMax: "冻结列(最多 {0} 列)",
|
|
1033
1053
|
fixedLeft: "左侧",
|
|
1034
1054
|
fixedUnset: "不设置",
|
|
1035
|
-
fixedRight: "右侧"
|
|
1055
|
+
fixedRight: "右侧",
|
|
1056
|
+
moveUp: "上移",
|
|
1057
|
+
moveDn: "下移",
|
|
1058
|
+
putTop: "置顶",
|
|
1059
|
+
putBottom: "置尾",
|
|
1060
|
+
moveUpTitle: "点击向上移动",
|
|
1061
|
+
moveDnTitle: "点击向下移动",
|
|
1062
|
+
putTopTitle: "点击置顶",
|
|
1063
|
+
putBottomTitle: "点击置尾"
|
|
1036
1064
|
}
|
|
1037
1065
|
},
|
|
1038
1066
|
import: {
|
|
@@ -1090,6 +1118,10 @@ function requireZhCN$1() {
|
|
|
1090
1118
|
expMergeTitle: "如果存在,则支持带有合并结构的单元格",
|
|
1091
1119
|
expOptAllExpand: "展开树",
|
|
1092
1120
|
expAllExpandTitle: "如果存在,则支持将带有层级结构的数据全部展开",
|
|
1121
|
+
expOptTreeAllExpand: "展开树",
|
|
1122
|
+
expTreeAllExpandTitle: "如果存在,则自动展开所有树层级",
|
|
1123
|
+
expOptRowGroupAllExpand: "展开分组",
|
|
1124
|
+
expRowGroupAllExpandTitle: "如果存在,则自动展开所有分组层级",
|
|
1093
1125
|
expOptUseStyle: "样式",
|
|
1094
1126
|
expUseStyleTitle: "如果存在,则支持带样式的单元格",
|
|
1095
1127
|
expOptOriginal: "源数据",
|
|
@@ -1408,6 +1440,10 @@ function requireZhCN$1() {
|
|
|
1408
1440
|
contextMenu: {
|
|
1409
1441
|
loadingText: "加载中..."
|
|
1410
1442
|
},
|
|
1443
|
+
switch: {
|
|
1444
|
+
onText: "打开",
|
|
1445
|
+
offText: "关闭"
|
|
1446
|
+
},
|
|
1411
1447
|
gantt: {
|
|
1412
1448
|
tFullFormat: {
|
|
1413
1449
|
year: "{yyyy}年",
|
|
@@ -1498,7 +1534,7 @@ function requireZhCN$1() {
|
|
|
1498
1534
|
groupPlaceholder: "拖至此处进行分组",
|
|
1499
1535
|
valuesPlaceholder: "拖至此处进行聚合",
|
|
1500
1536
|
dragExistCol: "该列已存在",
|
|
1501
|
-
sortHelpTip: "
|
|
1537
|
+
sortHelpTip: "点击图标开始拖动"
|
|
1502
1538
|
},
|
|
1503
1539
|
aggFuncs: {
|
|
1504
1540
|
sum: "求和",
|
|
@@ -1730,7 +1766,7 @@ function requireEnUS() {
|
|
|
1730
1766
|
useErr: 'An error occurred while installing the "{0}" module. The order may be incorrect. The dependent module needs to be installed before Table',
|
|
1731
1767
|
barUnableLink: "The toolbar cannot associate tables",
|
|
1732
1768
|
expandContent: 'The slot for the expanded line should be "content", please check if it is correct',
|
|
1733
|
-
reqComp: 'The "{0}"
|
|
1769
|
+
reqComp: 'The component "{0}" is missing. Please check if it is installed correctly. https://vxeui.com/#/start/useUI/useGlobal',
|
|
1734
1770
|
reqModule: 'Missing "{0}" module',
|
|
1735
1771
|
reqProp: 'The necessary "{0}" parameter is missing, which may cause an error',
|
|
1736
1772
|
emptyProp: 'Parameter "{0}" is not allowed to be empty',
|
|
@@ -1761,7 +1797,7 @@ function requireEnUS() {
|
|
|
1761
1797
|
treeNotImp: "Tree tables do not support import",
|
|
1762
1798
|
treeCrossDrag: "Only drag the first level",
|
|
1763
1799
|
treeDragChild: "Parents cannot drag to their own children",
|
|
1764
|
-
reqPlugin: '"{1}"
|
|
1800
|
+
reqPlugin: '扩展插件未安装 "{1}" https://vxeui.com/other{0}/#/{1}/start/npmInstall',
|
|
1765
1801
|
errMaxRow: "Exceeding the maximum supported data volume {0} rows, this may cause an error",
|
|
1766
1802
|
useNew: "It is not recommended to use {0}. Please use {1} instead.",
|
|
1767
1803
|
errorVersion: "Version mismatch. Current version is {0}, while the minimum supported version is {1}."
|
|
@@ -1809,11 +1845,12 @@ function requireEnUS() {
|
|
|
1809
1845
|
select: {
|
|
1810
1846
|
clear: "Clear",
|
|
1811
1847
|
allChecked: "All",
|
|
1812
|
-
total: "{0}
|
|
1848
|
+
total: "{0} items selected",
|
|
1849
|
+
close: "Close",
|
|
1813
1850
|
search: "Search",
|
|
1814
1851
|
loadingText: "Loading",
|
|
1815
1852
|
emptyText: "No data yet",
|
|
1816
|
-
|
|
1853
|
+
maxSize: "最大可选择的数量不能超过 {0} 个",
|
|
1817
1854
|
overSizeErr: "The maximum selectable quantity of {0} has been exceeded. The excess part will be ignored!",
|
|
1818
1855
|
searchEmpty: "No matching data found!"
|
|
1819
1856
|
},
|
|
@@ -1826,7 +1863,8 @@ function requireEnUS() {
|
|
|
1826
1863
|
allChecked: "Check all",
|
|
1827
1864
|
allExpand: "Expand all",
|
|
1828
1865
|
clearExpand: "Collapse all",
|
|
1829
|
-
total: "
|
|
1866
|
+
total: "{0} items selected",
|
|
1867
|
+
close: "Close",
|
|
1830
1868
|
search: "Search",
|
|
1831
1869
|
emptyText: "No data yet"
|
|
1832
1870
|
},
|
|
@@ -1869,15 +1907,23 @@ function requireEnUS() {
|
|
|
1869
1907
|
cstmDragTarget: "Move: {0}",
|
|
1870
1908
|
setting: {
|
|
1871
1909
|
colSort: "Sort",
|
|
1872
|
-
sortHelpTip: "
|
|
1873
|
-
colTitle: "
|
|
1874
|
-
colResizable: "
|
|
1875
|
-
colVisible: "
|
|
1876
|
-
colFixed: "Freeze
|
|
1877
|
-
colFixedMax: "Freeze
|
|
1878
|
-
fixedLeft: "Left
|
|
1879
|
-
fixedUnset: "Not set",
|
|
1880
|
-
fixedRight: "Right
|
|
1910
|
+
sortHelpTip: "点击图标开始拖动",
|
|
1911
|
+
colTitle: "Title",
|
|
1912
|
+
colResizable: "Width (pixels)",
|
|
1913
|
+
colVisible: "Visible",
|
|
1914
|
+
colFixed: "Freeze",
|
|
1915
|
+
colFixedMax: "Freeze (up to {0} columns)",
|
|
1916
|
+
fixedLeft: "Left",
|
|
1917
|
+
fixedUnset: "Not set",
|
|
1918
|
+
fixedRight: "Right",
|
|
1919
|
+
moveUp: "Up",
|
|
1920
|
+
moveDn: "Down",
|
|
1921
|
+
putTop: "Top",
|
|
1922
|
+
putBottom: "Bottom",
|
|
1923
|
+
moveUpTitle: "点击向上移动",
|
|
1924
|
+
moveDnTitle: "点击向下移动",
|
|
1925
|
+
putTopTitle: "点击置顶",
|
|
1926
|
+
putBottomTitle: "点击置尾"
|
|
1881
1927
|
}
|
|
1882
1928
|
},
|
|
1883
1929
|
import: {
|
|
@@ -1935,6 +1981,10 @@ function requireEnUS() {
|
|
|
1935
1981
|
expMergeTitle: "If present, cells with merged structures are supported",
|
|
1936
1982
|
expOptAllExpand: "Expand the tree",
|
|
1937
1983
|
expAllExpandTitle: "If it exists, it is supported to expand all data with hierarchical structures",
|
|
1984
|
+
expOptTreeAllExpand: "Expand tree",
|
|
1985
|
+
expTreeAllExpandTitle: "If present, automatically expand all tree levels",
|
|
1986
|
+
expOptRowGroupAllExpand: "Expand group",
|
|
1987
|
+
expRowGroupAllExpandTitle: "If present, automatically expand all group levels",
|
|
1938
1988
|
expOptUseStyle: "style",
|
|
1939
1989
|
expUseStyleTitle: "If present, cells with style are supported",
|
|
1940
1990
|
expOptOriginal: "Source data",
|
|
@@ -2077,6 +2127,8 @@ function requireEnUS() {
|
|
|
2077
2127
|
uploadErr: "Upload failed",
|
|
2078
2128
|
uploadSuccess: "Upload successfully",
|
|
2079
2129
|
moreBtnText: "More ({0})",
|
|
2130
|
+
moreImgBtnText: "图片({0})",
|
|
2131
|
+
moreFileBtnText: "文件({0})",
|
|
2080
2132
|
viewItemTitle: "Click to view",
|
|
2081
2133
|
morePopup: {
|
|
2082
2134
|
readTitle: "View list",
|
|
@@ -2251,6 +2303,10 @@ function requireEnUS() {
|
|
|
2251
2303
|
contextMenu: {
|
|
2252
2304
|
loadingText: "Loading"
|
|
2253
2305
|
},
|
|
2306
|
+
switch: {
|
|
2307
|
+
onText: "On",
|
|
2308
|
+
offText: "Off"
|
|
2309
|
+
},
|
|
2254
2310
|
gantt: {
|
|
2255
2311
|
tFullFormat: {
|
|
2256
2312
|
year: "{yyyy}年",
|
|
@@ -2296,6 +2352,8 @@ function requireEnUS() {
|
|
|
2296
2352
|
},
|
|
2297
2353
|
fnr: {
|
|
2298
2354
|
title: "Find and replace",
|
|
2355
|
+
titleFd: "Find",
|
|
2356
|
+
titleRe: "Replace",
|
|
2299
2357
|
findLabel: "Find",
|
|
2300
2358
|
replaceLabel: "replace",
|
|
2301
2359
|
findTitle: "Find what:",
|
|
@@ -2339,7 +2397,7 @@ function requireEnUS() {
|
|
|
2339
2397
|
groupPlaceholder: "Drag here to set row groups",
|
|
2340
2398
|
valuesPlaceholder: "Drag here to aggregate",
|
|
2341
2399
|
dragExistCol: "The column already exists",
|
|
2342
|
-
sortHelpTip: "
|
|
2400
|
+
sortHelpTip: "点击图标开始拖动"
|
|
2343
2401
|
},
|
|
2344
2402
|
aggFuncs: {
|
|
2345
2403
|
sum: "Sum",
|
|
@@ -2445,6 +2503,8 @@ function requireEnUS() {
|
|
|
2445
2503
|
},
|
|
2446
2504
|
fnr: {
|
|
2447
2505
|
title: "Find and replace",
|
|
2506
|
+
titleFd: "Find",
|
|
2507
|
+
titleRe: "Replace",
|
|
2448
2508
|
findLabel: "Find",
|
|
2449
2509
|
replaceLabel: "replace",
|
|
2450
2510
|
findTitle: "Find content:",
|
|
@@ -2569,7 +2629,7 @@ function requireZhCN() {
|
|
|
2569
2629
|
useErr: '安装 "{0}" 模块时发生错误,可能顺序不正确,依赖的模块需要在 Table 之前安装',
|
|
2570
2630
|
barUnableLink: "工具栏无法关联表格",
|
|
2571
2631
|
expandContent: '展开行的插槽应该是 "content",请检查是否正确',
|
|
2572
|
-
reqComp: '缺少 "{0}" 组件,请检查是否正确安装。 https://vxeui.com/#/start/useGlobal',
|
|
2632
|
+
reqComp: '缺少 "{0}" 组件,请检查是否正确安装。 https://vxeui.com/#/start/useUI/useGlobal',
|
|
2573
2633
|
reqModule: '缺少 "{0}" 模块',
|
|
2574
2634
|
reqProp: '缺少必要的 "{0}" 参数,这可能会导致出现错误',
|
|
2575
2635
|
emptyProp: '参数 "{0}" 不允许为空',
|
|
@@ -2600,7 +2660,7 @@ function requireZhCN() {
|
|
|
2600
2660
|
treeNotImp: "树表格不支持导入",
|
|
2601
2661
|
treeCrossDrag: "只能拖拽第一层级",
|
|
2602
2662
|
treeDragChild: "父级不能拖拽到自己的子级中",
|
|
2603
|
-
reqPlugin: '扩展插件未安装 "{1}" https://vxeui.com/other{0}/#/{1}/
|
|
2663
|
+
reqPlugin: '扩展插件未安装 "{1}" https://vxeui.com/other{0}/#/{1}/start/npmInstall',
|
|
2604
2664
|
errMaxRow: "超过支持的最大数据量 {0} 行,这可能会导致出现错误",
|
|
2605
2665
|
useNew: "不建议使用 {0},请使用 {1}",
|
|
2606
2666
|
errorVersion: "版本不匹配,当前版本 {0},最低支持版本为 {1}"
|
|
@@ -2648,7 +2708,8 @@ function requireZhCN() {
|
|
|
2648
2708
|
select: {
|
|
2649
2709
|
clear: "清除",
|
|
2650
2710
|
allChecked: "全选",
|
|
2651
|
-
total: "{0}
|
|
2711
|
+
total: "已选 {0} 项",
|
|
2712
|
+
close: "关闭",
|
|
2652
2713
|
search: "搜索",
|
|
2653
2714
|
loadingText: "加载中...",
|
|
2654
2715
|
emptyText: "暂无数据",
|
|
@@ -2665,7 +2726,8 @@ function requireZhCN() {
|
|
|
2665
2726
|
allChecked: "全选",
|
|
2666
2727
|
allExpand: "全部展开",
|
|
2667
2728
|
clearExpand: "全部收起",
|
|
2668
|
-
total: "已选 {0}",
|
|
2729
|
+
total: "已选 {0} 项",
|
|
2730
|
+
close: "关闭",
|
|
2669
2731
|
search: "搜索",
|
|
2670
2732
|
emptyText: "暂无数据"
|
|
2671
2733
|
},
|
|
@@ -2708,7 +2770,7 @@ function requireZhCN() {
|
|
|
2708
2770
|
cstmDragTarget: "移动:{0}",
|
|
2709
2771
|
setting: {
|
|
2710
2772
|
colSort: "排序",
|
|
2711
|
-
sortHelpTip: "
|
|
2773
|
+
sortHelpTip: "点击图标开始拖动",
|
|
2712
2774
|
colTitle: "列标题",
|
|
2713
2775
|
colResizable: "列宽(像素)",
|
|
2714
2776
|
colVisible: "是否显示",
|
|
@@ -2716,7 +2778,15 @@ function requireZhCN() {
|
|
|
2716
2778
|
colFixedMax: "冻结列(最多 {0} 列)",
|
|
2717
2779
|
fixedLeft: "左侧",
|
|
2718
2780
|
fixedUnset: "不设置",
|
|
2719
|
-
fixedRight: "右侧"
|
|
2781
|
+
fixedRight: "右侧",
|
|
2782
|
+
moveUp: "上移",
|
|
2783
|
+
moveDn: "下移",
|
|
2784
|
+
putTop: "置顶",
|
|
2785
|
+
putBottom: "置尾",
|
|
2786
|
+
moveUpTitle: "点击向上移动",
|
|
2787
|
+
moveDnTitle: "点击向下移动",
|
|
2788
|
+
putTopTitle: "点击置顶",
|
|
2789
|
+
putBottomTitle: "点击置尾"
|
|
2720
2790
|
}
|
|
2721
2791
|
},
|
|
2722
2792
|
import: {
|
|
@@ -2774,6 +2844,10 @@ function requireZhCN() {
|
|
|
2774
2844
|
expMergeTitle: "如果存在,则支持带有合并结构的单元格",
|
|
2775
2845
|
expOptAllExpand: "展开树",
|
|
2776
2846
|
expAllExpandTitle: "如果存在,则支持将带有层级结构的数据全部展开",
|
|
2847
|
+
expOptTreeAllExpand: "展开树",
|
|
2848
|
+
expTreeAllExpandTitle: "如果存在,则自动展开所有树层级",
|
|
2849
|
+
expOptRowGroupAllExpand: "展开分组",
|
|
2850
|
+
expRowGroupAllExpandTitle: "如果存在,则自动展开所有分组层级",
|
|
2777
2851
|
expOptUseStyle: "样式",
|
|
2778
2852
|
expUseStyleTitle: "如果存在,则支持带样式的单元格",
|
|
2779
2853
|
expOptOriginal: "源数据",
|
|
@@ -2916,6 +2990,8 @@ function requireZhCN() {
|
|
|
2916
2990
|
uploadErr: "上传失败",
|
|
2917
2991
|
uploadSuccess: "上传成功",
|
|
2918
2992
|
moreBtnText: "更多({0})",
|
|
2993
|
+
moreImgBtnText: "图片({0})",
|
|
2994
|
+
moreFileBtnText: "文件({0})",
|
|
2919
2995
|
viewItemTitle: "点击查看",
|
|
2920
2996
|
morePopup: {
|
|
2921
2997
|
readTitle: "查看列表",
|
|
@@ -3090,6 +3166,10 @@ function requireZhCN() {
|
|
|
3090
3166
|
contextMenu: {
|
|
3091
3167
|
loadingText: "加载中..."
|
|
3092
3168
|
},
|
|
3169
|
+
switch: {
|
|
3170
|
+
onText: "打开",
|
|
3171
|
+
offText: "关闭"
|
|
3172
|
+
},
|
|
3093
3173
|
gantt: {
|
|
3094
3174
|
tFullFormat: {
|
|
3095
3175
|
year: "{yyyy}年",
|
|
@@ -3135,6 +3215,8 @@ function requireZhCN() {
|
|
|
3135
3215
|
},
|
|
3136
3216
|
fnr: {
|
|
3137
3217
|
title: "查找和替换",
|
|
3218
|
+
titleFd: "查找",
|
|
3219
|
+
titleRe: "替换",
|
|
3138
3220
|
findLabel: "查找",
|
|
3139
3221
|
replaceLabel: "替换",
|
|
3140
3222
|
findTitle: "查找内容:",
|
|
@@ -3178,7 +3260,7 @@ function requireZhCN() {
|
|
|
3178
3260
|
groupPlaceholder: "拖至此处进行分组",
|
|
3179
3261
|
valuesPlaceholder: "拖至此处进行聚合",
|
|
3180
3262
|
dragExistCol: "该列已存在",
|
|
3181
|
-
sortHelpTip: "
|
|
3263
|
+
sortHelpTip: "点击图标开始拖动"
|
|
3182
3264
|
},
|
|
3183
3265
|
aggFuncs: {
|
|
3184
3266
|
sum: "求和",
|
|
@@ -3284,6 +3366,8 @@ function requireZhCN() {
|
|
|
3284
3366
|
},
|
|
3285
3367
|
fnr: {
|
|
3286
3368
|
title: "查找和替换",
|
|
3369
|
+
titleFd: "查找",
|
|
3370
|
+
titleRe: "替换",
|
|
3287
3371
|
findLabel: "查找",
|
|
3288
3372
|
replaceLabel: "替换",
|
|
3289
3373
|
findTitle: "查找内容:",
|