@maxax/ui 1.0.0 → 1.0.1

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.
Files changed (40) hide show
  1. package/dist/components/basic-checkbox-group/BasicCheckboxGroup.d.ts +2 -0
  2. package/dist/components/basic-checkbox-group/BasicCheckboxGroup.d.ts.map +1 -1
  3. package/dist/components/basic-message-box/BasicMessageBox.vue.d.ts +2 -1
  4. package/dist/components/basic-message-box/BasicMessageBox.vue.d.ts.map +1 -1
  5. package/dist/components/basic-table/BasicTable.vue.d.ts +211 -191
  6. package/dist/components/basic-table/BasicTable.vue.d.ts.map +1 -1
  7. package/dist/components/basic-table/helper.d.ts +1 -3
  8. package/dist/components/basic-table/helper.d.ts.map +1 -1
  9. package/dist/components/basic-table/hooks/use-table-config.d.ts +5 -0
  10. package/dist/components/basic-table/hooks/use-table-config.d.ts.map +1 -1
  11. package/dist/components/basic-table/index.d.ts +3 -3
  12. package/dist/components/basic-table/index.d.ts.map +1 -1
  13. package/dist/components/basic-table/setting.d.ts +0 -3
  14. package/dist/components/basic-table/setting.d.ts.map +1 -1
  15. package/dist/components/basic-table/vxe-table.d.ts +3 -3
  16. package/dist/components/basic-table/vxe-table.d.ts.map +1 -1
  17. package/dist/components/basic-upload-core/AjaxUploader.d.ts.map +1 -1
  18. package/dist/components/config-provider/ConfigProvider.d.ts +8 -2
  19. package/dist/components/config-provider/ConfigProvider.d.ts.map +1 -1
  20. package/dist/components/config-provider/hooks/use-global-config.d.ts +1 -0
  21. package/dist/components/config-provider/hooks/use-global-config.d.ts.map +1 -1
  22. package/dist/components/config-provider/interface.d.ts +5 -2
  23. package/dist/components/config-provider/interface.d.ts.map +1 -1
  24. package/dist/composable/index.d.ts +1 -0
  25. package/dist/composable/index.d.ts.map +1 -1
  26. package/dist/composable/use-table-config.d.ts +2 -1
  27. package/dist/composable/use-table-config.d.ts.map +1 -1
  28. package/dist/composable/use-theme-overrides.d.ts +5 -0
  29. package/dist/composable/use-theme-overrides.d.ts.map +1 -0
  30. package/dist/constants/context.d.ts +3 -0
  31. package/dist/constants/context.d.ts.map +1 -1
  32. package/dist/index.cjs +191 -183
  33. package/dist/index.cjs.map +1 -1
  34. package/dist/index.mjs +185 -183
  35. package/dist/index.mjs.map +1 -1
  36. package/dist/locales.cjs +528 -112
  37. package/dist/locales.cjs.map +1 -1
  38. package/dist/locales.mjs +528 -112
  39. package/dist/locales.mjs.map +1 -1
  40. package/package.json +5 -5
package/dist/locales.cjs CHANGED
@@ -15,7 +15,7 @@ exports.vxePCUiEnUS = enUS$1.default = {
15
15
  fullStop: "。"
16
16
  },
17
17
  loading: {
18
- text: "loading..."
18
+ text: "Loading..."
19
19
  },
20
20
  error: {
21
21
  downErr: "Download failed",
@@ -25,7 +25,9 @@ exports.vxePCUiEnUS = enUS$1.default = {
25
25
  groupTag: 'Grouping column headers should use "{0}" instead of "{1}", which may cause errors',
26
26
  scrollErrProp: 'This parameter "{0}" is not supported after virtual scrolling is enabled',
27
27
  errConflicts: 'Parameter "{0}" conflicts with "{1}"',
28
+ modelConflicts: 'The bound field values "{0}" and "{1}" conflict, an error will occur.',
28
29
  notSupportProp: '"{1}" is not supported when the parameter "{0}" is enabled, it should be "{2}", otherwise an error will occur',
30
+ reqSupportProp: 'When using "{0}", "{1}" should be set; otherwise, an error may occur.',
29
31
  notConflictProp: 'When using "{0}", "{1}" should be set, otherwise there may be functional conflicts',
30
32
  unableInsert: "Cannot be inserted into the specified location, please check whether the parameters are correct",
31
33
  useErr: 'An error occurred while installing the "{0}" module. The order may be incorrect. The dependent module needs to be installed before Table',
@@ -44,11 +46,13 @@ exports.vxePCUiEnUS = enUS$1.default = {
44
46
  notCommands: 'The global directive "{0}" does not exist',
45
47
  notSlot: 'Slot "{0}" does not exist',
46
48
  noTree: '"{0}" is not supported in the tree structure',
49
+ noGroup: '"{0}" is not supported in the aggregation grouping',
47
50
  notProp: 'Unsupported parameter "{0}"',
48
51
  checkProp: 'When the data volume is too large, the check box may be stuttered. It is recommended to set the parameter "{0}" to improve rendering speed',
49
52
  coverProp: 'The parameter "{1}" of "{0}" is repeatedly defined, which may cause an error',
50
53
  uniField: 'The field name "{0}" is repeatedly defined, which may cause an error',
51
54
  repeatKey: 'Repeat the primary key {0}="{1}", which may cause an error',
55
+ repeatProp: 'Repeat parameters {0}="{1}", which may cause an error',
52
56
  delFunc: 'Method "{0}" is deprecated, please use "{1}"',
53
57
  delProp: 'Parameter "{0}" is deprecated, please use "{1}"',
54
58
  delEvent: 'Event "{0}" is deprecated, please use "{1}"',
@@ -61,16 +65,18 @@ exports.vxePCUiEnUS = enUS$1.default = {
61
65
  treeCrossDrag: "Only drag the first level",
62
66
  treeDragChild: "Parents cannot drag to their own children",
63
67
  reqPlugin: '"{1}" is not installed at https://vxeui.com/other{0}/#/{1}/install',
64
- errMaxRow: "Exceeding the maximum supported data volume {0} rows, this may cause an error"
68
+ errMaxRow: "Exceeding the maximum supported data volume {0} rows, this may cause an error",
69
+ useNew: "It is not recommended to use {0}. Please use {1} instead.",
70
+ errorVersion: "Version mismatch. Current version is {0}, while the minimum supported version is {1}."
65
71
  },
66
72
  table: {
67
73
  emptyText: "No data yet",
68
74
  allTitle: "Select all/cancel",
69
- seqTitle: "Number",
70
- actionTitle: "operate",
71
- confirmFilter: "filter",
75
+ seqTitle: "No.",
76
+ actionTitle: "Operate",
77
+ confirmFilter: "Filter",
72
78
  resetFilter: "Reset",
73
- allFilter: "all",
79
+ allFilter: "All",
74
80
  sortAsc: "Ascending order: lowest to highest",
75
81
  sortDesc: "Descending order: highest to lowest",
76
82
  filter: "Enable filtering for selected columns",
@@ -81,16 +87,18 @@ exports.vxePCUiEnUS = enUS$1.default = {
81
87
  expFilename: "Export_{0}",
82
88
  expOriginFilename: "Export_source_{0}",
83
89
  customTitle: "Column settings",
84
- customAll: "all",
85
- customConfirm: "confirm",
86
- customClose: "closure",
90
+ customAll: "All",
91
+ customConfirm: "Confirm",
92
+ customClose: "Closure",
87
93
  customCancel: "Cancel",
88
94
  customRestore: "Restore default",
89
95
  maxFixedCol: "The maximum number of frozen columns cannot exceed {0}",
96
+ maxGroupCol: "The maximum number of grouping fields cannot exceed {0}",
90
97
  dragTip: "Move: {0}",
91
98
  resizeColTip: "Width: {0} pixels",
92
99
  resizeRowTip: "Height: {0} pixels",
93
- rowGroupContentTotal: "{0} ({1})"
100
+ rowGroupContentTotal: "{0} ({1})",
101
+ menuLoading: "加载中..."
94
102
  },
95
103
  grid: {
96
104
  selectOneRecord: "Please select at least one record!",
@@ -102,8 +110,26 @@ exports.vxePCUiEnUS = enUS$1.default = {
102
110
  operError: "An error occurred and the operation failed!"
103
111
  },
104
112
  select: {
105
- search: "search",
106
- loadingText: "loading",
113
+ clear: "Clear",
114
+ allChecked: "All",
115
+ total: "{0} / {1}",
116
+ search: "Search",
117
+ loadingText: "Loading",
118
+ emptyText: "No data yet",
119
+ maxOpt: "The maximum number that can be selected cannot exceed {0}.",
120
+ overSizeErr: "The maximum selectable quantity of {0} has been exceeded. The excess part will be ignored!",
121
+ searchEmpty: "No matching data found!"
122
+ },
123
+ tree: {
124
+ searchEmpty: "未匹配到数据!"
125
+ },
126
+ treeSelect: {
127
+ clearChecked: "Clear",
128
+ allChecked: "Check all",
129
+ allExpand: "Expand all",
130
+ clearExpand: "Collapse all",
131
+ total: "Selected {0}",
132
+ search: "Search",
107
133
  emptyText: "No data yet"
108
134
  },
109
135
  pager: {
@@ -129,7 +155,7 @@ exports.vxePCUiEnUS = enUS$1.default = {
129
155
  title: "System prompts"
130
156
  },
131
157
  button: {
132
- confirm: "confirm",
158
+ confirm: "Confirm",
133
159
  cancel: "Cancel",
134
160
  clear: "Clear"
135
161
  },
@@ -145,7 +171,7 @@ exports.vxePCUiEnUS = enUS$1.default = {
145
171
  cstmDragTarget: "Move: {0}",
146
172
  setting: {
147
173
  colSort: "Sort",
148
- sortHelpTip: "Click and drag the icon to adjust the sort of columns",
174
+ sortHelpTip: "Click and drag the icons to adjust the order.",
149
175
  colTitle: "Column title",
150
176
  colResizable: "Column width (pixels)",
151
177
  colVisible: "Whether to display",
@@ -164,7 +190,7 @@ exports.vxePCUiEnUS = enUS$1.default = {
164
190
  insertBottom: "Append at the bottom (append new data at the bottom of the table)"
165
191
  },
166
192
  impTitle: "Import data",
167
- impFile: "file name",
193
+ impFile: "File name",
168
194
  impSelect: "Select file",
169
195
  impType: "File type",
170
196
  impOpts: "Parameter settings",
@@ -190,9 +216,9 @@ exports.vxePCUiEnUS = enUS$1.default = {
190
216
  },
191
217
  printTitle: "Print data",
192
218
  expTitle: "Export data",
193
- expName: "file name",
219
+ expName: "File name",
194
220
  expNamePlaceholder: "Please enter a file name",
195
- expSheetName: "title",
221
+ expSheetName: "Title",
196
222
  expSheetNamePlaceholder: "Please enter a title",
197
223
  expType: "Save type",
198
224
  expMode: "Select data",
@@ -239,12 +265,12 @@ exports.vxePCUiEnUS = enUS$1.default = {
239
265
  import: "Import",
240
266
  export: "Export",
241
267
  print: "Print",
242
- refresh: "refresh",
243
- zoomIn: "full screen",
268
+ refresh: "Refresh",
269
+ zoomIn: "Full screen",
244
270
  zoomOut: "reduction",
245
271
  custom: "Column settings",
246
- customAll: "all",
247
- customConfirm: "confirm",
272
+ customAll: "All",
273
+ customConfirm: "Confirm",
248
274
  customRestore: "Reset",
249
275
  fixedLeft: "Freeze left",
250
276
  fixedRight: "Freeze right",
@@ -343,6 +369,7 @@ exports.vxePCUiEnUS = enUS$1.default = {
343
369
  overCountErr: "Only {0} files can be selected at most!",
344
370
  overCountExtraErr: "The maximum number of {0} has been exceeded, and the excess {1} files will be ignored!",
345
371
  overSizeErr: "The maximum file size cannot exceed {0}!",
372
+ manualUpload: "点击上传",
346
373
  reUpload: "Re-upload",
347
374
  uploadProgress: "Uploading {0}%",
348
375
  uploadErr: "Upload failed",
@@ -360,8 +387,9 @@ exports.vxePCUiEnUS = enUS$1.default = {
360
387
  },
361
388
  colorPicker: {
362
389
  clear: "Clear",
363
- confirm: "confirm",
364
- copySuccess: "Copyed to clipboard: {0}"
390
+ confirm: "Confirm",
391
+ copySuccess: "Copyed to clipboard: {0}",
392
+ hex: "HEX"
365
393
  },
366
394
  formDesign: {
367
395
  formName: "Form name",
@@ -467,7 +495,7 @@ exports.vxePCUiEnUS = enUS$1.default = {
467
495
  fontBold: "Bold"
468
496
  },
469
497
  subtableProp: {
470
- seqTitle: "Number",
498
+ seqTitle: "No.",
471
499
  showSeq: "Show serial number",
472
500
  showCheckbox: "Multiple choices are allowed",
473
501
  errSubDrag: "The subtable does not support this control, please use other controls",
@@ -518,6 +546,35 @@ exports.vxePCUiEnUS = enUS$1.default = {
518
546
  ss: "Second"
519
547
  }
520
548
  },
549
+ gantt: {
550
+ tFullFormat: {
551
+ year: "{yy}",
552
+ quarter: "Quarter {q} of year {yy}",
553
+ month: "{yy}-{M}",
554
+ week: "Week {W} of year {yy}",
555
+ day: "{yy}-{M}-{d}",
556
+ hour: "{yy}-{M}-{d} {H}",
557
+ minute: "{yy}-{M}-{d} {H}:{m}"
558
+ },
559
+ tSimpleFormat: {
560
+ year: "{yy}",
561
+ quarter: "Quarter {q}",
562
+ month: "{M}",
563
+ week: "Week {W}",
564
+ day: "{d}",
565
+ hour: "{H}",
566
+ minute: "{m}"
567
+ },
568
+ dayss: {
569
+ w0: "Sun",
570
+ w1: "Mon",
571
+ w2: "Tue",
572
+ w3: "Wed",
573
+ w4: "Thu",
574
+ w5: "Fri",
575
+ w6: "Sat"
576
+ }
577
+ },
521
578
  plugins: {
522
579
  extendCellArea: {
523
580
  area: {
@@ -566,6 +623,25 @@ exports.vxePCUiEnUS = enUS$1.default = {
566
623
  replaceSuccess: "Successfully replaced {0} cells"
567
624
  }
568
625
  },
626
+ extendPivotTable: {
627
+ aggregation: {
628
+ grouping: "Group",
629
+ values: "Values",
630
+ groupPlaceholder: "Drag here to set row groups",
631
+ valuesPlaceholder: "Drag here to aggregate",
632
+ dragExistCol: "The column already exists",
633
+ sortHelpTip: "Click and drag the icons to adjust the order."
634
+ },
635
+ aggFuncs: {
636
+ sum: "Sum",
637
+ count: "Count",
638
+ avg: "Avg",
639
+ min: "Min",
640
+ max: "Max",
641
+ first: "First",
642
+ last: "Last"
643
+ }
644
+ },
569
645
  filterComplexInput: {
570
646
  menus: {
571
647
  fixedColumn: "Freeze column",
@@ -576,10 +652,10 @@ exports.vxePCUiEnUS = enUS$1.default = {
576
652
  },
577
653
  cases: {
578
654
  equal: "equal",
579
- gt: "Greater than",
580
- lt: "Less than",
581
- begin: "The beginning is",
582
- endin: "The end is",
655
+ gt: "Greater",
656
+ lt: "Less",
657
+ begin: "Start",
658
+ endin: "End",
583
659
  include: "Include",
584
660
  isSensitive: "case sensitive"
585
661
  }
@@ -596,30 +672,53 @@ exports.vxePCUiEnUS = enUS$1.default = {
596
672
  fixedLeft: "Freeze left",
597
673
  fixedRight: "Freeze right",
598
674
  clearFilter: "Clear Filter",
599
- textOption: "Text filter",
600
- numberOption: "Numerical filter"
675
+ textOption: "Text filters",
676
+ numberOption: "Number filters",
677
+ dateOption: "Date filters"
601
678
  },
602
679
  popup: {
603
680
  title: "Custom filtering methods",
604
- currColumnTitle: "Current column:",
681
+ currColumnTitle: "Show rows where:",
605
682
  and: "and",
606
683
  or: "or",
607
684
  describeHtml: "Available? Represents a single character<br/>Use * Represents any multiple characters"
608
685
  },
609
686
  cases: {
610
687
  equal: "equal",
611
- unequal: "Not equal to",
612
- gt: "Greater than",
613
- ge: "Greater than or equal to",
614
- lt: "Less than",
615
- le: "Less than or equal to",
616
- begin: "The beginning is",
688
+ unequal: "Not equal",
689
+ gt: "Greater",
690
+ ge: "Greater or equal",
691
+ lt: "Less",
692
+ le: "Less or equal",
693
+ begin: "Start",
617
694
  notbegin: "It's not at the beginning",
618
- endin: "The end is",
695
+ endin: "End",
619
696
  notendin: "The ending is not",
620
697
  include: "Include",
621
698
  exclude: "Not included",
622
699
  between: "Between",
700
+ isAfter: "Is after",
701
+ eqAfter: "Is after or equal to",
702
+ isBefore: "Is before",
703
+ eqBefore: "Is before or equal to",
704
+ top10: "Top 10",
705
+ aboveAverage: "Above average",
706
+ belowAverage: "Below average",
707
+ before: "Before",
708
+ after: "After",
709
+ tomorrow: "Tomorrow",
710
+ today: "Today",
711
+ yesterday: "Yesterday",
712
+ nextWeek: "Next Week",
713
+ thisWeek: "This Week",
714
+ lastWeek: "Last Week",
715
+ nextMonth: "Next Month",
716
+ thisMonth: "This Month",
717
+ lastMonth: "Last Month",
718
+ nextYear: "Next Year",
719
+ thisYear: "This Year",
720
+ lastYear: "Last Year",
721
+ yearToDate: "Year to Date",
623
722
  custom: "Custom filter",
624
723
  insensitive: "Case insensitive",
625
724
  isSensitive: "case sensitive"
@@ -673,18 +772,21 @@ exports.vxePCUiEnUS = enUS$1.default = {
673
772
  search: "search",
674
773
  cases: {
675
774
  equal: "equal",
676
- unequal: "Not equal to",
677
- gt: "Greater than",
678
- ge: "Greater than or equal to",
679
- lt: "Less than",
680
- le: "Less than or equal to",
681
- begin: "The beginning is",
775
+ unequal: "Not equal",
776
+ gt: "Greater",
777
+ ge: "Greater or equal",
778
+ lt: "Less",
779
+ le: "Less or equal",
780
+ begin: "Start",
682
781
  notbegin: "It's not at the beginning",
683
- endin: "The end is",
782
+ endin: "End",
684
783
  notendin: "The ending is not",
685
784
  include: "Include",
686
785
  exclude: "Not included",
687
786
  between: "Between",
787
+ top10: "Top 10",
788
+ aboveAverage: "Above average",
789
+ belowAverage: "Below average",
688
790
  custom: "Custom filter",
689
791
  insensitive: "Case insensitive",
690
792
  isSensitive: "case sensitive"
@@ -701,12 +803,13 @@ exports.vxePCUiEnUS = enUS$1.default = {
701
803
  fixedLeft: "Freeze left",
702
804
  fixedRight: "Freeze right",
703
805
  clearFilter: "Clear Filter",
704
- textOption: "Text filtering",
705
- numberOption: "Numerical filtering"
806
+ textOption: "Text filters",
807
+ numberOption: "Number filters",
808
+ dateOption: "Date filters"
706
809
  },
707
810
  popup: {
708
811
  title: "Custom filtering methods",
709
- currColumnTitle: "Current column:",
812
+ currColumnTitle: "Show rows where:",
710
813
  and: "and",
711
814
  or: "or",
712
815
  describeHtml: "Available? Represents a single character<br/>Use * Represents any multiple characters"
@@ -741,7 +844,9 @@ exports.vxePCUiZhCN = zhCN$1.default = {
741
844
  groupTag: '分组列头应该使用 "{0}" 而不是 "{1}",这可能会出现错误',
742
845
  scrollErrProp: '启用虚拟滚动后不支持该参数 "{0}"',
743
846
  errConflicts: '参数 "{0}" 与 "{1}" 有冲突',
847
+ modelConflicts: '绑定的字段值 "{0}" 与 "{1}" 存在冲突,将会出现错误',
744
848
  notSupportProp: '当启用参数 "{0}" 时不支持 "{1}",应该为 "{2}",否则将会出现错误',
849
+ reqSupportProp: '当使用 "{0}" 时,应该设置 "{1}",否则可能会出现错误',
745
850
  notConflictProp: '当使用 "{0}" 时,应该设置 "{1}",否则可能会存在功能冲突',
746
851
  unableInsert: "无法插入到指定位置,请检查参数是否正确",
747
852
  useErr: '安装 "{0}" 模块时发生错误,可能顺序不正确,依赖的模块需要在 Table 之前安装',
@@ -760,11 +865,13 @@ exports.vxePCUiZhCN = zhCN$1.default = {
760
865
  notCommands: '全局指令 "{0}" 不存在',
761
866
  notSlot: '插槽 "{0}" 不存在',
762
867
  noTree: '树结构不支持 "{0}"',
868
+ noGroup: '数据分组后不支持 "{0}"',
763
869
  notProp: '不支持的参数 "{0}"',
764
870
  checkProp: '当数据量过大时可能会导致复选框卡顿,建议设置参数 "{0}" 提升渲染速度',
765
871
  coverProp: '"{0}" 的参数 "{1}" 重复定义,这可能会出现错误',
766
872
  uniField: '字段名 "{0}" 重复定义,这可能会出现错误',
767
873
  repeatKey: '主键重复 {0}="{1}",这可能会出现错误',
874
+ repeatProp: '参数重复 {0}="{1}",这可能会出现错误',
768
875
  delFunc: '方法 "{0}" 已废弃,请使用 "{1}"',
769
876
  delProp: '参数 "{0}" 已废弃,请使用 "{1}"',
770
877
  delEvent: '事件 "{0}" 已废弃,请使用 "{1}"',
@@ -777,7 +884,9 @@ exports.vxePCUiZhCN = zhCN$1.default = {
777
884
  treeCrossDrag: "只能拖拽第一层级",
778
885
  treeDragChild: "父级不能拖拽到自己的子级中",
779
886
  reqPlugin: '扩展插件未安装 "{1}" https://vxeui.com/other{0}/#/{1}/install',
780
- errMaxRow: "超过支持的最大数据量 {0} 行,这可能会导致出现错误"
887
+ errMaxRow: "超过支持的最大数据量 {0} 行,这可能会导致出现错误",
888
+ useNew: "不建议使用 {0},请使用 {1}",
889
+ errorVersion: "版本不匹配,当前版本 {0},最低支持版本为 {1}"
781
890
  },
782
891
  table: {
783
892
  emptyText: "暂无数据",
@@ -803,10 +912,12 @@ exports.vxePCUiZhCN = zhCN$1.default = {
803
912
  customCancel: "取消",
804
913
  customRestore: "恢复默认",
805
914
  maxFixedCol: "最大冻结列的数量不能超过 {0} 个",
915
+ maxGroupCol: "最大分组字段的数量不能超过 {0} 个",
806
916
  dragTip: "移动:{0}",
807
917
  resizeColTip: "宽:{0} 像素",
808
918
  resizeRowTip: "高:{0} 像素",
809
- rowGroupContentTotal: "{0}({1})"
919
+ rowGroupContentTotal: "{0}({1})",
920
+ menuLoading: "加载中..."
810
921
  },
811
922
  grid: {
812
923
  selectOneRecord: "请至少选择一条记录!",
@@ -818,8 +929,26 @@ exports.vxePCUiZhCN = zhCN$1.default = {
818
929
  operError: "发生错误,操作失败!"
819
930
  },
820
931
  select: {
932
+ clear: "清除",
933
+ allChecked: "全选",
934
+ total: "{0} / {1}",
821
935
  search: "搜索",
822
936
  loadingText: "加载中",
937
+ emptyText: "暂无数据",
938
+ maxSize: "最大可选择的数量不能超过 {0} 个",
939
+ overSizeErr: "已超出最大可选数量 {0} 个,超出部分将被忽略!",
940
+ searchEmpty: "未匹配到数据!"
941
+ },
942
+ tree: {
943
+ searchEmpty: "未匹配到数据!"
944
+ },
945
+ treeSelect: {
946
+ clearChecked: "清除",
947
+ allChecked: "全选",
948
+ allExpand: "全部展开",
949
+ clearExpand: "全部收起",
950
+ total: "已选 {0}",
951
+ search: "搜索",
823
952
  emptyText: "暂无数据"
824
953
  },
825
954
  pager: {
@@ -861,7 +990,7 @@ exports.vxePCUiZhCN = zhCN$1.default = {
861
990
  cstmDragTarget: "移动:{0}",
862
991
  setting: {
863
992
  colSort: "排序",
864
- sortHelpTip: "点击并拖动图标可以调整列的排序",
993
+ sortHelpTip: "点击并拖动图标可以调整顺序",
865
994
  colTitle: "列标题",
866
995
  colResizable: "列宽(像素)",
867
996
  colVisible: "是否显示",
@@ -1059,6 +1188,7 @@ exports.vxePCUiZhCN = zhCN$1.default = {
1059
1188
  overCountErr: "最多只能选择{0}个文件!",
1060
1189
  overCountExtraErr: "已超出最大数量{0}个,超出的{1}个文件将被忽略!",
1061
1190
  overSizeErr: "文件大小最大不能超过{0}!",
1191
+ manualUpload: "点击上传",
1062
1192
  reUpload: "重新上传",
1063
1193
  uploadProgress: "上传中 {0}%",
1064
1194
  uploadErr: "上传失败",
@@ -1077,7 +1207,8 @@ exports.vxePCUiZhCN = zhCN$1.default = {
1077
1207
  colorPicker: {
1078
1208
  clear: "清除",
1079
1209
  confirm: "确认",
1080
- copySuccess: "已复制到剪贴板:{0}"
1210
+ copySuccess: "已复制到剪贴板:{0}",
1211
+ hex: "十六进制"
1081
1212
  },
1082
1213
  formDesign: {
1083
1214
  formName: "表单名称",
@@ -1234,6 +1365,37 @@ exports.vxePCUiZhCN = zhCN$1.default = {
1234
1365
  ss: "秒"
1235
1366
  }
1236
1367
  },
1368
+ gantt: {
1369
+ tFullFormat: {
1370
+ year: "{yy}年",
1371
+ quarter: "{yy}年第{q}季度",
1372
+ month: "{yy}年{M}月",
1373
+ week: "{yy}年第{W}周",
1374
+ day: "{yy}年{M}月{E}日",
1375
+ date: "{yy}年{M}月{d}日",
1376
+ hour: "{yy}年 {M}月{d}日{H}时",
1377
+ minute: "{yy}年{M}月{d}日{H}时{m}分"
1378
+ },
1379
+ tSimpleFormat: {
1380
+ year: "{yy}年",
1381
+ quarter: "{q}季度",
1382
+ month: "{M}月",
1383
+ week: "{W}周",
1384
+ day: "{d}",
1385
+ date: "{d}",
1386
+ hour: "{H}时",
1387
+ minute: "{m}分"
1388
+ },
1389
+ dayss: {
1390
+ w0: "日",
1391
+ w1: "一",
1392
+ w2: "二",
1393
+ w3: "三",
1394
+ w4: "四",
1395
+ w5: "五",
1396
+ w6: "六"
1397
+ }
1398
+ },
1237
1399
  plugins: {
1238
1400
  extendCellArea: {
1239
1401
  area: {
@@ -1282,6 +1444,25 @@ exports.vxePCUiZhCN = zhCN$1.default = {
1282
1444
  replaceSuccess: "成功替换 {0} 个单元格"
1283
1445
  }
1284
1446
  },
1447
+ extendPivotTable: {
1448
+ aggregation: {
1449
+ grouping: "分组",
1450
+ values: "值",
1451
+ groupPlaceholder: "拖至此处进行分组",
1452
+ valuesPlaceholder: "拖至此处进行聚合",
1453
+ dragExistCol: "该列已存在",
1454
+ sortHelpTip: "点击并拖动图标可以调整顺序"
1455
+ },
1456
+ aggFuncs: {
1457
+ sum: "求和",
1458
+ count: "计数",
1459
+ avg: "平均值",
1460
+ min: "最小值",
1461
+ max: "最大值",
1462
+ first: "首个值",
1463
+ last: "末尾值"
1464
+ }
1465
+ },
1285
1466
  filterComplexInput: {
1286
1467
  menus: {
1287
1468
  fixedColumn: "冻结列",
@@ -1313,11 +1494,12 @@ exports.vxePCUiZhCN = zhCN$1.default = {
1313
1494
  fixedRight: "冻结右侧",
1314
1495
  clearFilter: "清除筛选",
1315
1496
  textOption: "文本筛选",
1316
- numberOption: "数值筛选"
1497
+ numberOption: "数值筛选",
1498
+ dateOption: "日期筛选"
1317
1499
  },
1318
1500
  popup: {
1319
1501
  title: "自定义筛选的方式",
1320
- currColumnTitle: "当前列:",
1502
+ currColumnTitle: "显示行:",
1321
1503
  and: "与",
1322
1504
  or: "或",
1323
1505
  describeHtml: "可用 ? 代表单个字符<br/>用 * 代表任意多个字符"
@@ -1336,6 +1518,28 @@ exports.vxePCUiZhCN = zhCN$1.default = {
1336
1518
  include: "包含",
1337
1519
  exclude: "不包含",
1338
1520
  between: "介于",
1521
+ isAfter: "在以下日期之后",
1522
+ eqAfter: "在以下日期之后或与之相同",
1523
+ isBefore: "在以下日期之前",
1524
+ eqBefore: "在以下日期之前或与之相同",
1525
+ top10: "前10项",
1526
+ aboveAverage: "高于平均值",
1527
+ belowAverage: "低于平均值",
1528
+ before: "之前",
1529
+ after: "之后",
1530
+ tomorrow: "明天",
1531
+ today: "今天",
1532
+ yesterday: "昨天",
1533
+ nextWeek: "下周",
1534
+ thisWeek: "本周",
1535
+ lastWeek: "上周",
1536
+ nextMonth: "下月",
1537
+ thisMonth: "本月",
1538
+ lastMonth: "上月",
1539
+ nextYear: "明年",
1540
+ thisYear: "今年",
1541
+ lastYear: "去年",
1542
+ yearToDate: "本年度截止到现在",
1339
1543
  custom: "自定义筛选",
1340
1544
  insensitive: "不区分大小写",
1341
1545
  isSensitive: "区分大小写"
@@ -1401,6 +1605,9 @@ exports.vxePCUiZhCN = zhCN$1.default = {
1401
1605
  include: "包含",
1402
1606
  exclude: "不包含",
1403
1607
  between: "介于",
1608
+ top10: "前10项",
1609
+ aboveAverage: "高于平均值",
1610
+ belowAverage: "低于平均值",
1404
1611
  custom: "自定义筛选",
1405
1612
  insensitive: "不区分大小写",
1406
1613
  isSensitive: "区分大小写"
@@ -1418,11 +1625,12 @@ exports.vxePCUiZhCN = zhCN$1.default = {
1418
1625
  fixedRight: "冻结到右侧",
1419
1626
  clearFilter: "清除筛选",
1420
1627
  textOption: "文本筛选",
1421
- numberOption: "数值筛选"
1628
+ numberOption: "数值筛选",
1629
+ dateOption: "日期筛选"
1422
1630
  },
1423
1631
  popup: {
1424
1632
  title: "自定义筛选的方式",
1425
- currColumnTitle: "当前列:",
1633
+ currColumnTitle: "显示行:",
1426
1634
  and: "与",
1427
1635
  or: "或",
1428
1636
  describeHtml: "可用 ? 代表单个字符<br/>用 * 代表任意多个字符"
@@ -1447,7 +1655,7 @@ exports.vxeTableEnUS = enUS.default = {
1447
1655
  fullStop: "。"
1448
1656
  },
1449
1657
  loading: {
1450
- text: "loading..."
1658
+ text: "Loading..."
1451
1659
  },
1452
1660
  error: {
1453
1661
  downErr: "Download failed",
@@ -1457,7 +1665,9 @@ exports.vxeTableEnUS = enUS.default = {
1457
1665
  groupTag: 'Grouping column headers should use "{0}" instead of "{1}", which may cause errors',
1458
1666
  scrollErrProp: 'This parameter "{0}" is not supported after virtual scrolling is enabled',
1459
1667
  errConflicts: 'Parameter "{0}" conflicts with "{1}"',
1668
+ modelConflicts: 'The bound field values "{0}" and "{1}" conflict, an error will occur.',
1460
1669
  notSupportProp: '"{1}" is not supported when the parameter "{0}" is enabled, it should be "{2}", otherwise an error will occur',
1670
+ reqSupportProp: 'When using "{0}", "{1}" should be set; otherwise, an error may occur.',
1461
1671
  notConflictProp: 'When using "{0}", "{1}" should be set, otherwise there may be functional conflicts',
1462
1672
  unableInsert: "Cannot be inserted into the specified location, please check whether the parameters are correct",
1463
1673
  useErr: 'An error occurred while installing the "{0}" module. The order may be incorrect. The dependent module needs to be installed before Table',
@@ -1476,11 +1686,13 @@ exports.vxeTableEnUS = enUS.default = {
1476
1686
  notCommands: 'The global directive "{0}" does not exist',
1477
1687
  notSlot: 'Slot "{0}" does not exist',
1478
1688
  noTree: '"{0}" is not supported in the tree structure',
1689
+ noGroup: '"{0}" is not supported in the aggregation grouping',
1479
1690
  notProp: 'Unsupported parameter "{0}"',
1480
1691
  checkProp: 'When the data volume is too large, the check box may be stuttered. It is recommended to set the parameter "{0}" to improve rendering speed',
1481
1692
  coverProp: 'The parameter "{1}" of "{0}" is repeatedly defined, which may cause an error',
1482
1693
  uniField: 'The field name "{0}" is repeatedly defined, which may cause an error',
1483
1694
  repeatKey: 'Repeat the primary key {0}="{1}", which may cause an error',
1695
+ repeatProp: 'Repeat parameters {0}="{1}", which may cause an error',
1484
1696
  delFunc: 'Method "{0}" is deprecated, please use "{1}"',
1485
1697
  delProp: 'Parameter "{0}" is deprecated, please use "{1}"',
1486
1698
  delEvent: 'Event "{0}" is deprecated, please use "{1}"',
@@ -1493,16 +1705,18 @@ exports.vxeTableEnUS = enUS.default = {
1493
1705
  treeCrossDrag: "Only drag the first level",
1494
1706
  treeDragChild: "Parents cannot drag to their own children",
1495
1707
  reqPlugin: '"{1}" is not installed at https://vxeui.com/other{0}/#/{1}/install',
1496
- errMaxRow: "Exceeding the maximum supported data volume {0} rows, this may cause an error"
1708
+ errMaxRow: "Exceeding the maximum supported data volume {0} rows, this may cause an error",
1709
+ useNew: "It is not recommended to use {0}. Please use {1} instead.",
1710
+ errorVersion: "Version mismatch. Current version is {0}, while the minimum supported version is {1}."
1497
1711
  },
1498
1712
  table: {
1499
1713
  emptyText: "No data yet",
1500
1714
  allTitle: "Select all/cancel",
1501
- seqTitle: "Number",
1502
- actionTitle: "operate",
1503
- confirmFilter: "filter",
1715
+ seqTitle: "No.",
1716
+ actionTitle: "Operate",
1717
+ confirmFilter: "Filter",
1504
1718
  resetFilter: "Reset",
1505
- allFilter: "all",
1719
+ allFilter: "All",
1506
1720
  sortAsc: "Ascending order: lowest to highest",
1507
1721
  sortDesc: "Descending order: highest to lowest",
1508
1722
  filter: "Enable filtering for selected columns",
@@ -1513,16 +1727,18 @@ exports.vxeTableEnUS = enUS.default = {
1513
1727
  expFilename: "Export_{0}",
1514
1728
  expOriginFilename: "Export_source_{0}",
1515
1729
  customTitle: "Column settings",
1516
- customAll: "all",
1517
- customConfirm: "confirm",
1518
- customClose: "closure",
1730
+ customAll: "All",
1731
+ customConfirm: "Confirm",
1732
+ customClose: "Closure",
1519
1733
  customCancel: "Cancel",
1520
1734
  customRestore: "Restore default",
1521
1735
  maxFixedCol: "The maximum number of frozen columns cannot exceed {0}",
1736
+ maxGroupCol: "The maximum number of grouping fields cannot exceed {0}",
1522
1737
  dragTip: "Move: {0}",
1523
1738
  resizeColTip: "Width: {0} pixels",
1524
1739
  resizeRowTip: "Height: {0} pixels",
1525
- rowGroupContentTotal: "{0} ({1})"
1740
+ rowGroupContentTotal: "{0} ({1})",
1741
+ menuLoading: "加载中..."
1526
1742
  },
1527
1743
  grid: {
1528
1744
  selectOneRecord: "Please select at least one record!",
@@ -1534,8 +1750,26 @@ exports.vxeTableEnUS = enUS.default = {
1534
1750
  operError: "An error occurred and the operation failed!"
1535
1751
  },
1536
1752
  select: {
1537
- search: "search",
1538
- loadingText: "loading",
1753
+ clear: "Clear",
1754
+ allChecked: "All",
1755
+ total: "{0} / {1}",
1756
+ search: "Search",
1757
+ loadingText: "Loading",
1758
+ emptyText: "No data yet",
1759
+ maxOpt: "The maximum number that can be selected cannot exceed {0}.",
1760
+ overSizeErr: "The maximum selectable quantity of {0} has been exceeded. The excess part will be ignored!",
1761
+ searchEmpty: "No matching data found!"
1762
+ },
1763
+ tree: {
1764
+ searchEmpty: "未匹配到数据!"
1765
+ },
1766
+ treeSelect: {
1767
+ clearChecked: "Clear",
1768
+ allChecked: "Check all",
1769
+ allExpand: "Expand all",
1770
+ clearExpand: "Collapse all",
1771
+ total: "Selected {0}",
1772
+ search: "Search",
1539
1773
  emptyText: "No data yet"
1540
1774
  },
1541
1775
  pager: {
@@ -1561,7 +1795,7 @@ exports.vxeTableEnUS = enUS.default = {
1561
1795
  title: "System prompts"
1562
1796
  },
1563
1797
  button: {
1564
- confirm: "confirm",
1798
+ confirm: "Confirm",
1565
1799
  cancel: "Cancel",
1566
1800
  clear: "Clear"
1567
1801
  },
@@ -1577,7 +1811,7 @@ exports.vxeTableEnUS = enUS.default = {
1577
1811
  cstmDragTarget: "Move: {0}",
1578
1812
  setting: {
1579
1813
  colSort: "Sort",
1580
- sortHelpTip: "Click and drag the icon to adjust the sort of columns",
1814
+ sortHelpTip: "Click and drag the icons to adjust the order.",
1581
1815
  colTitle: "Column title",
1582
1816
  colResizable: "Column width (pixels)",
1583
1817
  colVisible: "Whether to display",
@@ -1596,7 +1830,7 @@ exports.vxeTableEnUS = enUS.default = {
1596
1830
  insertBottom: "Append at the bottom (append new data at the bottom of the table)"
1597
1831
  },
1598
1832
  impTitle: "Import data",
1599
- impFile: "file name",
1833
+ impFile: "File name",
1600
1834
  impSelect: "Select file",
1601
1835
  impType: "File type",
1602
1836
  impOpts: "Parameter settings",
@@ -1622,9 +1856,9 @@ exports.vxeTableEnUS = enUS.default = {
1622
1856
  },
1623
1857
  printTitle: "Print data",
1624
1858
  expTitle: "Export data",
1625
- expName: "file name",
1859
+ expName: "File name",
1626
1860
  expNamePlaceholder: "Please enter a file name",
1627
- expSheetName: "title",
1861
+ expSheetName: "Title",
1628
1862
  expSheetNamePlaceholder: "Please enter a title",
1629
1863
  expType: "Save type",
1630
1864
  expMode: "Select data",
@@ -1671,12 +1905,12 @@ exports.vxeTableEnUS = enUS.default = {
1671
1905
  import: "Import",
1672
1906
  export: "Export",
1673
1907
  print: "Print",
1674
- refresh: "refresh",
1675
- zoomIn: "full screen",
1908
+ refresh: "Refresh",
1909
+ zoomIn: "Full screen",
1676
1910
  zoomOut: "reduction",
1677
1911
  custom: "Column settings",
1678
- customAll: "all",
1679
- customConfirm: "confirm",
1912
+ customAll: "All",
1913
+ customConfirm: "Confirm",
1680
1914
  customRestore: "Reset",
1681
1915
  fixedLeft: "Freeze left",
1682
1916
  fixedRight: "Freeze right",
@@ -1775,6 +2009,7 @@ exports.vxeTableEnUS = enUS.default = {
1775
2009
  overCountErr: "Only {0} files can be selected at most!",
1776
2010
  overCountExtraErr: "The maximum number of {0} has been exceeded, and the excess {1} files will be ignored!",
1777
2011
  overSizeErr: "The maximum file size cannot exceed {0}!",
2012
+ manualUpload: "点击上传",
1778
2013
  reUpload: "Re-upload",
1779
2014
  uploadProgress: "Uploading {0}%",
1780
2015
  uploadErr: "Upload failed",
@@ -1792,8 +2027,9 @@ exports.vxeTableEnUS = enUS.default = {
1792
2027
  },
1793
2028
  colorPicker: {
1794
2029
  clear: "Clear",
1795
- confirm: "confirm",
1796
- copySuccess: "Copyed to clipboard: {0}"
2030
+ confirm: "Confirm",
2031
+ copySuccess: "Copyed to clipboard: {0}",
2032
+ hex: "HEX"
1797
2033
  },
1798
2034
  formDesign: {
1799
2035
  formName: "Form name",
@@ -1899,7 +2135,7 @@ exports.vxeTableEnUS = enUS.default = {
1899
2135
  fontBold: "Bold"
1900
2136
  },
1901
2137
  subtableProp: {
1902
- seqTitle: "Number",
2138
+ seqTitle: "No.",
1903
2139
  showSeq: "Show serial number",
1904
2140
  showCheckbox: "Multiple choices are allowed",
1905
2141
  errSubDrag: "The subtable does not support this control, please use other controls",
@@ -1950,6 +2186,35 @@ exports.vxeTableEnUS = enUS.default = {
1950
2186
  ss: "Second"
1951
2187
  }
1952
2188
  },
2189
+ gantt: {
2190
+ tFullFormat: {
2191
+ year: "{yy}",
2192
+ quarter: "Quarter {q} of year {yy}",
2193
+ month: "{yy}-{M}",
2194
+ week: "Week {W} of year {yy}",
2195
+ day: "{yy}-{M}-{d}",
2196
+ hour: "{yy}-{M}-{d} {H}",
2197
+ minute: "{yy}-{M}-{d} {H}:{m}"
2198
+ },
2199
+ tSimpleFormat: {
2200
+ year: "{yy}",
2201
+ quarter: "Quarter {q}",
2202
+ month: "{M}",
2203
+ week: "Week {W}",
2204
+ day: "{d}",
2205
+ hour: "{H}",
2206
+ minute: "{m}"
2207
+ },
2208
+ dayss: {
2209
+ w0: "Sun",
2210
+ w1: "Mon",
2211
+ w2: "Tue",
2212
+ w3: "Wed",
2213
+ w4: "Thu",
2214
+ w5: "Fri",
2215
+ w6: "Sat"
2216
+ }
2217
+ },
1953
2218
  plugins: {
1954
2219
  extendCellArea: {
1955
2220
  area: {
@@ -1998,6 +2263,25 @@ exports.vxeTableEnUS = enUS.default = {
1998
2263
  replaceSuccess: "Successfully replaced {0} cells"
1999
2264
  }
2000
2265
  },
2266
+ extendPivotTable: {
2267
+ aggregation: {
2268
+ grouping: "Group",
2269
+ values: "Values",
2270
+ groupPlaceholder: "Drag here to set row groups",
2271
+ valuesPlaceholder: "Drag here to aggregate",
2272
+ dragExistCol: "The column already exists",
2273
+ sortHelpTip: "Click and drag the icons to adjust the order."
2274
+ },
2275
+ aggFuncs: {
2276
+ sum: "Sum",
2277
+ count: "Count",
2278
+ avg: "Avg",
2279
+ min: "Min",
2280
+ max: "Max",
2281
+ first: "First",
2282
+ last: "Last"
2283
+ }
2284
+ },
2001
2285
  filterComplexInput: {
2002
2286
  menus: {
2003
2287
  fixedColumn: "Freeze column",
@@ -2008,10 +2292,10 @@ exports.vxeTableEnUS = enUS.default = {
2008
2292
  },
2009
2293
  cases: {
2010
2294
  equal: "equal",
2011
- gt: "Greater than",
2012
- lt: "Less than",
2013
- begin: "The beginning is",
2014
- endin: "The end is",
2295
+ gt: "Greater",
2296
+ lt: "Less",
2297
+ begin: "Start",
2298
+ endin: "End",
2015
2299
  include: "Include",
2016
2300
  isSensitive: "case sensitive"
2017
2301
  }
@@ -2028,30 +2312,53 @@ exports.vxeTableEnUS = enUS.default = {
2028
2312
  fixedLeft: "Freeze left",
2029
2313
  fixedRight: "Freeze right",
2030
2314
  clearFilter: "Clear Filter",
2031
- textOption: "Text filter",
2032
- numberOption: "Numerical filter"
2315
+ textOption: "Text filters",
2316
+ numberOption: "Number filters",
2317
+ dateOption: "Date filters"
2033
2318
  },
2034
2319
  popup: {
2035
2320
  title: "Custom filtering methods",
2036
- currColumnTitle: "Current column:",
2321
+ currColumnTitle: "Show rows where:",
2037
2322
  and: "and",
2038
2323
  or: "or",
2039
2324
  describeHtml: "Available? Represents a single character<br/>Use * Represents any multiple characters"
2040
2325
  },
2041
2326
  cases: {
2042
2327
  equal: "equal",
2043
- unequal: "Not equal to",
2044
- gt: "Greater than",
2045
- ge: "Greater than or equal to",
2046
- lt: "Less than",
2047
- le: "Less than or equal to",
2048
- begin: "The beginning is",
2328
+ unequal: "Not equal",
2329
+ gt: "Greater",
2330
+ ge: "Greater or equal",
2331
+ lt: "Less",
2332
+ le: "Less or equal",
2333
+ begin: "Start",
2049
2334
  notbegin: "It's not at the beginning",
2050
- endin: "The end is",
2335
+ endin: "End",
2051
2336
  notendin: "The ending is not",
2052
2337
  include: "Include",
2053
2338
  exclude: "Not included",
2054
2339
  between: "Between",
2340
+ isAfter: "Is after",
2341
+ eqAfter: "Is after or equal to",
2342
+ isBefore: "Is before",
2343
+ eqBefore: "Is before or equal to",
2344
+ top10: "Top 10",
2345
+ aboveAverage: "Above average",
2346
+ belowAverage: "Below average",
2347
+ before: "Before",
2348
+ after: "After",
2349
+ tomorrow: "Tomorrow",
2350
+ today: "Today",
2351
+ yesterday: "Yesterday",
2352
+ nextWeek: "Next Week",
2353
+ thisWeek: "This Week",
2354
+ lastWeek: "Last Week",
2355
+ nextMonth: "Next Month",
2356
+ thisMonth: "This Month",
2357
+ lastMonth: "Last Month",
2358
+ nextYear: "Next Year",
2359
+ thisYear: "This Year",
2360
+ lastYear: "Last Year",
2361
+ yearToDate: "Year to Date",
2055
2362
  custom: "Custom filter",
2056
2363
  insensitive: "Case insensitive",
2057
2364
  isSensitive: "case sensitive"
@@ -2105,18 +2412,21 @@ exports.vxeTableEnUS = enUS.default = {
2105
2412
  search: "search",
2106
2413
  cases: {
2107
2414
  equal: "equal",
2108
- unequal: "Not equal to",
2109
- gt: "Greater than",
2110
- ge: "Greater than or equal to",
2111
- lt: "Less than",
2112
- le: "Less than or equal to",
2113
- begin: "The beginning is",
2415
+ unequal: "Not equal",
2416
+ gt: "Greater",
2417
+ ge: "Greater or equal",
2418
+ lt: "Less",
2419
+ le: "Less or equal",
2420
+ begin: "Start",
2114
2421
  notbegin: "It's not at the beginning",
2115
- endin: "The end is",
2422
+ endin: "End",
2116
2423
  notendin: "The ending is not",
2117
2424
  include: "Include",
2118
2425
  exclude: "Not included",
2119
2426
  between: "Between",
2427
+ top10: "Top 10",
2428
+ aboveAverage: "Above average",
2429
+ belowAverage: "Below average",
2120
2430
  custom: "Custom filter",
2121
2431
  insensitive: "Case insensitive",
2122
2432
  isSensitive: "case sensitive"
@@ -2133,12 +2443,13 @@ exports.vxeTableEnUS = enUS.default = {
2133
2443
  fixedLeft: "Freeze left",
2134
2444
  fixedRight: "Freeze right",
2135
2445
  clearFilter: "Clear Filter",
2136
- textOption: "Text filtering",
2137
- numberOption: "Numerical filtering"
2446
+ textOption: "Text filters",
2447
+ numberOption: "Number filters",
2448
+ dateOption: "Date filters"
2138
2449
  },
2139
2450
  popup: {
2140
2451
  title: "Custom filtering methods",
2141
- currColumnTitle: "Current column:",
2452
+ currColumnTitle: "Show rows where:",
2142
2453
  and: "and",
2143
2454
  or: "or",
2144
2455
  describeHtml: "Available? Represents a single character<br/>Use * Represents any multiple characters"
@@ -2173,7 +2484,9 @@ exports.vxeTableZhCN = zhCN.default = {
2173
2484
  groupTag: '分组列头应该使用 "{0}" 而不是 "{1}",这可能会出现错误',
2174
2485
  scrollErrProp: '启用虚拟滚动后不支持该参数 "{0}"',
2175
2486
  errConflicts: '参数 "{0}" 与 "{1}" 有冲突',
2487
+ modelConflicts: '绑定的字段值 "{0}" 与 "{1}" 存在冲突,将会出现错误',
2176
2488
  notSupportProp: '当启用参数 "{0}" 时不支持 "{1}",应该为 "{2}",否则将会出现错误',
2489
+ reqSupportProp: '当使用 "{0}" 时,应该设置 "{1}",否则可能会出现错误',
2177
2490
  notConflictProp: '当使用 "{0}" 时,应该设置 "{1}",否则可能会存在功能冲突',
2178
2491
  unableInsert: "无法插入到指定位置,请检查参数是否正确",
2179
2492
  useErr: '安装 "{0}" 模块时发生错误,可能顺序不正确,依赖的模块需要在 Table 之前安装',
@@ -2192,11 +2505,13 @@ exports.vxeTableZhCN = zhCN.default = {
2192
2505
  notCommands: '全局指令 "{0}" 不存在',
2193
2506
  notSlot: '插槽 "{0}" 不存在',
2194
2507
  noTree: '树结构不支持 "{0}"',
2508
+ noGroup: '数据分组后不支持 "{0}"',
2195
2509
  notProp: '不支持的参数 "{0}"',
2196
2510
  checkProp: '当数据量过大时可能会导致复选框卡顿,建议设置参数 "{0}" 提升渲染速度',
2197
2511
  coverProp: '"{0}" 的参数 "{1}" 重复定义,这可能会出现错误',
2198
2512
  uniField: '字段名 "{0}" 重复定义,这可能会出现错误',
2199
2513
  repeatKey: '主键重复 {0}="{1}",这可能会出现错误',
2514
+ repeatProp: '参数重复 {0}="{1}",这可能会出现错误',
2200
2515
  delFunc: '方法 "{0}" 已废弃,请使用 "{1}"',
2201
2516
  delProp: '参数 "{0}" 已废弃,请使用 "{1}"',
2202
2517
  delEvent: '事件 "{0}" 已废弃,请使用 "{1}"',
@@ -2209,7 +2524,9 @@ exports.vxeTableZhCN = zhCN.default = {
2209
2524
  treeCrossDrag: "只能拖拽第一层级",
2210
2525
  treeDragChild: "父级不能拖拽到自己的子级中",
2211
2526
  reqPlugin: '扩展插件未安装 "{1}" https://vxeui.com/other{0}/#/{1}/install',
2212
- errMaxRow: "超过支持的最大数据量 {0} 行,这可能会导致出现错误"
2527
+ errMaxRow: "超过支持的最大数据量 {0} 行,这可能会导致出现错误",
2528
+ useNew: "不建议使用 {0},请使用 {1}",
2529
+ errorVersion: "版本不匹配,当前版本 {0},最低支持版本为 {1}"
2213
2530
  },
2214
2531
  table: {
2215
2532
  emptyText: "暂无数据",
@@ -2235,10 +2552,12 @@ exports.vxeTableZhCN = zhCN.default = {
2235
2552
  customCancel: "取消",
2236
2553
  customRestore: "恢复默认",
2237
2554
  maxFixedCol: "最大冻结列的数量不能超过 {0} 个",
2555
+ maxGroupCol: "最大分组字段的数量不能超过 {0} 个",
2238
2556
  dragTip: "移动:{0}",
2239
2557
  resizeColTip: "宽:{0} 像素",
2240
2558
  resizeRowTip: "高:{0} 像素",
2241
- rowGroupContentTotal: "{0}({1})"
2559
+ rowGroupContentTotal: "{0}({1})",
2560
+ menuLoading: "加载中..."
2242
2561
  },
2243
2562
  grid: {
2244
2563
  selectOneRecord: "请至少选择一条记录!",
@@ -2250,8 +2569,26 @@ exports.vxeTableZhCN = zhCN.default = {
2250
2569
  operError: "发生错误,操作失败!"
2251
2570
  },
2252
2571
  select: {
2572
+ clear: "清除",
2573
+ allChecked: "全选",
2574
+ total: "{0} / {1}",
2253
2575
  search: "搜索",
2254
2576
  loadingText: "加载中",
2577
+ emptyText: "暂无数据",
2578
+ maxSize: "最大可选择的数量不能超过 {0} 个",
2579
+ overSizeErr: "已超出最大可选数量 {0} 个,超出部分将被忽略!",
2580
+ searchEmpty: "未匹配到数据!"
2581
+ },
2582
+ tree: {
2583
+ searchEmpty: "未匹配到数据!"
2584
+ },
2585
+ treeSelect: {
2586
+ clearChecked: "清除",
2587
+ allChecked: "全选",
2588
+ allExpand: "全部展开",
2589
+ clearExpand: "全部收起",
2590
+ total: "已选 {0}",
2591
+ search: "搜索",
2255
2592
  emptyText: "暂无数据"
2256
2593
  },
2257
2594
  pager: {
@@ -2293,7 +2630,7 @@ exports.vxeTableZhCN = zhCN.default = {
2293
2630
  cstmDragTarget: "移动:{0}",
2294
2631
  setting: {
2295
2632
  colSort: "排序",
2296
- sortHelpTip: "点击并拖动图标可以调整列的排序",
2633
+ sortHelpTip: "点击并拖动图标可以调整顺序",
2297
2634
  colTitle: "列标题",
2298
2635
  colResizable: "列宽(像素)",
2299
2636
  colVisible: "是否显示",
@@ -2491,6 +2828,7 @@ exports.vxeTableZhCN = zhCN.default = {
2491
2828
  overCountErr: "最多只能选择{0}个文件!",
2492
2829
  overCountExtraErr: "已超出最大数量{0}个,超出的{1}个文件将被忽略!",
2493
2830
  overSizeErr: "文件大小最大不能超过{0}!",
2831
+ manualUpload: "点击上传",
2494
2832
  reUpload: "重新上传",
2495
2833
  uploadProgress: "上传中 {0}%",
2496
2834
  uploadErr: "上传失败",
@@ -2509,7 +2847,8 @@ exports.vxeTableZhCN = zhCN.default = {
2509
2847
  colorPicker: {
2510
2848
  clear: "清除",
2511
2849
  confirm: "确认",
2512
- copySuccess: "已复制到剪贴板:{0}"
2850
+ copySuccess: "已复制到剪贴板:{0}",
2851
+ hex: "十六进制"
2513
2852
  },
2514
2853
  formDesign: {
2515
2854
  formName: "表单名称",
@@ -2666,6 +3005,37 @@ exports.vxeTableZhCN = zhCN.default = {
2666
3005
  ss: "秒"
2667
3006
  }
2668
3007
  },
3008
+ gantt: {
3009
+ tFullFormat: {
3010
+ year: "{yy}年",
3011
+ quarter: "{yy}年第{q}季度",
3012
+ month: "{yy}年{M}月",
3013
+ week: "{yy}年第{W}周",
3014
+ day: "{yy}年{M}月{E}日",
3015
+ date: "{yy}年{M}月{d}日",
3016
+ hour: "{yy}年 {M}月{d}日{H}时",
3017
+ minute: "{yy}年{M}月{d}日{H}时{m}分"
3018
+ },
3019
+ tSimpleFormat: {
3020
+ year: "{yy}年",
3021
+ quarter: "{q}季度",
3022
+ month: "{M}月",
3023
+ week: "{W}周",
3024
+ day: "{d}",
3025
+ date: "{d}",
3026
+ hour: "{H}时",
3027
+ minute: "{m}分"
3028
+ },
3029
+ dayss: {
3030
+ w0: "日",
3031
+ w1: "一",
3032
+ w2: "二",
3033
+ w3: "三",
3034
+ w4: "四",
3035
+ w5: "五",
3036
+ w6: "六"
3037
+ }
3038
+ },
2669
3039
  plugins: {
2670
3040
  extendCellArea: {
2671
3041
  area: {
@@ -2714,6 +3084,25 @@ exports.vxeTableZhCN = zhCN.default = {
2714
3084
  replaceSuccess: "成功替换 {0} 个单元格"
2715
3085
  }
2716
3086
  },
3087
+ extendPivotTable: {
3088
+ aggregation: {
3089
+ grouping: "分组",
3090
+ values: "值",
3091
+ groupPlaceholder: "拖至此处进行分组",
3092
+ valuesPlaceholder: "拖至此处进行聚合",
3093
+ dragExistCol: "该列已存在",
3094
+ sortHelpTip: "点击并拖动图标可以调整顺序"
3095
+ },
3096
+ aggFuncs: {
3097
+ sum: "求和",
3098
+ count: "计数",
3099
+ avg: "平均值",
3100
+ min: "最小值",
3101
+ max: "最大值",
3102
+ first: "首个值",
3103
+ last: "末尾值"
3104
+ }
3105
+ },
2717
3106
  filterComplexInput: {
2718
3107
  menus: {
2719
3108
  fixedColumn: "冻结列",
@@ -2745,11 +3134,12 @@ exports.vxeTableZhCN = zhCN.default = {
2745
3134
  fixedRight: "冻结右侧",
2746
3135
  clearFilter: "清除筛选",
2747
3136
  textOption: "文本筛选",
2748
- numberOption: "数值筛选"
3137
+ numberOption: "数值筛选",
3138
+ dateOption: "日期筛选"
2749
3139
  },
2750
3140
  popup: {
2751
3141
  title: "自定义筛选的方式",
2752
- currColumnTitle: "当前列:",
3142
+ currColumnTitle: "显示行:",
2753
3143
  and: "与",
2754
3144
  or: "或",
2755
3145
  describeHtml: "可用 ? 代表单个字符<br/>用 * 代表任意多个字符"
@@ -2768,6 +3158,28 @@ exports.vxeTableZhCN = zhCN.default = {
2768
3158
  include: "包含",
2769
3159
  exclude: "不包含",
2770
3160
  between: "介于",
3161
+ isAfter: "在以下日期之后",
3162
+ eqAfter: "在以下日期之后或与之相同",
3163
+ isBefore: "在以下日期之前",
3164
+ eqBefore: "在以下日期之前或与之相同",
3165
+ top10: "前10项",
3166
+ aboveAverage: "高于平均值",
3167
+ belowAverage: "低于平均值",
3168
+ before: "之前",
3169
+ after: "之后",
3170
+ tomorrow: "明天",
3171
+ today: "今天",
3172
+ yesterday: "昨天",
3173
+ nextWeek: "下周",
3174
+ thisWeek: "本周",
3175
+ lastWeek: "上周",
3176
+ nextMonth: "下月",
3177
+ thisMonth: "本月",
3178
+ lastMonth: "上月",
3179
+ nextYear: "明年",
3180
+ thisYear: "今年",
3181
+ lastYear: "去年",
3182
+ yearToDate: "本年度截止到现在",
2771
3183
  custom: "自定义筛选",
2772
3184
  insensitive: "不区分大小写",
2773
3185
  isSensitive: "区分大小写"
@@ -2833,6 +3245,9 @@ exports.vxeTableZhCN = zhCN.default = {
2833
3245
  include: "包含",
2834
3246
  exclude: "不包含",
2835
3247
  between: "介于",
3248
+ top10: "前10项",
3249
+ aboveAverage: "高于平均值",
3250
+ belowAverage: "低于平均值",
2836
3251
  custom: "自定义筛选",
2837
3252
  insensitive: "不区分大小写",
2838
3253
  isSensitive: "区分大小写"
@@ -2850,11 +3265,12 @@ exports.vxeTableZhCN = zhCN.default = {
2850
3265
  fixedRight: "冻结到右侧",
2851
3266
  clearFilter: "清除筛选",
2852
3267
  textOption: "文本筛选",
2853
- numberOption: "数值筛选"
3268
+ numberOption: "数值筛选",
3269
+ dateOption: "日期筛选"
2854
3270
  },
2855
3271
  popup: {
2856
3272
  title: "自定义筛选的方式",
2857
- currColumnTitle: "当前列:",
3273
+ currColumnTitle: "显示行:",
2858
3274
  and: "与",
2859
3275
  or: "或",
2860
3276
  describeHtml: "可用 ? 代表单个字符<br/>用 * 代表任意多个字符"