vxe-table 4.7.28 → 4.7.30

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 (49) hide show
  1. package/es/locale/lang/en-US.js +148 -8
  2. package/es/locale/lang/es-ES.js +149 -9
  3. package/es/locale/lang/ja-JP.js +149 -9
  4. package/es/locale/lang/pt-BR.js +149 -9
  5. package/es/locale/lang/zh-CN.js +145 -5
  6. package/es/locale/lang/zh-TC.js +149 -9
  7. package/es/table/module/export/hook.js +12 -2
  8. package/es/ui/index.js +2 -2
  9. package/es/ui/src/log.js +1 -1
  10. package/lib/index.umd.js +3 -3
  11. package/lib/index.umd.min.js +1 -1
  12. package/lib/locale/lang/en-US.js +148 -8
  13. package/lib/locale/lang/en-US.min.js +1 -1
  14. package/lib/locale/lang/en-US.umd.js +148 -8
  15. package/lib/locale/lang/es-ES.js +149 -9
  16. package/lib/locale/lang/es-ES.min.js +1 -1
  17. package/lib/locale/lang/es-ES.umd.js +149 -9
  18. package/lib/locale/lang/ja-JP.js +149 -9
  19. package/lib/locale/lang/ja-JP.min.js +1 -1
  20. package/lib/locale/lang/ja-JP.umd.js +149 -9
  21. package/lib/locale/lang/pt-BR.js +149 -9
  22. package/lib/locale/lang/pt-BR.min.js +1 -1
  23. package/lib/locale/lang/pt-BR.umd.js +149 -9
  24. package/lib/locale/lang/zh-CN.js +145 -5
  25. package/lib/locale/lang/zh-CN.min.js +1 -1
  26. package/lib/locale/lang/zh-CN.umd.js +145 -5
  27. package/lib/locale/lang/zh-HK.min.js +1 -1
  28. package/lib/locale/lang/zh-HK.umd.js +149 -9
  29. package/lib/locale/lang/zh-MO.min.js +1 -1
  30. package/lib/locale/lang/zh-MO.umd.js +149 -9
  31. package/lib/locale/lang/zh-TC.js +149 -9
  32. package/lib/locale/lang/zh-TC.min.js +1 -1
  33. package/lib/locale/lang/zh-TC.umd.js +149 -9
  34. package/lib/locale/lang/zh-TW.min.js +1 -1
  35. package/lib/locale/lang/zh-TW.umd.js +149 -9
  36. package/lib/ui/index.js +2 -2
  37. package/lib/ui/index.min.js +1 -1
  38. package/lib/ui/src/log.js +1 -1
  39. package/lib/ui/src/log.min.js +1 -1
  40. package/package.json +2 -2
  41. package/packages/locale/lang/en-US.ts +148 -8
  42. package/packages/locale/lang/es-ES.ts +149 -9
  43. package/packages/locale/lang/ja-JP.ts +149 -9
  44. package/packages/locale/lang/pt-BR.ts +149 -9
  45. package/packages/locale/lang/zh-CN.ts +145 -5
  46. package/packages/locale/lang/zh-TC.ts +149 -9
  47. package/packages/table/module/export/hook.ts +12 -2
  48. package/styles/default.scss +3 -0
  49. package/styles/index.scss +4 -0
@@ -6,7 +6,9 @@ export default {
6
6
  vxe: {
7
7
  base: {
8
8
  pleaseInput: 'Please input',
9
- pleaseSelect: 'Select'
9
+ pleaseSelect: 'Select',
10
+ comma: ',',
11
+ fullStop: '.'
10
12
  },
11
13
  loading: {
12
14
  text: 'Loading...'
@@ -49,7 +51,7 @@ export default {
49
51
  table: {
50
52
  emptyText: 'No Data',
51
53
  allTitle: 'Select all / cancel',
52
- seqTitle: 'S/N',
54
+ seqTitle: 'N/S',
53
55
  confirmFilter: 'Confirm',
54
56
  resetFilter: 'Reset',
55
57
  allFilter: 'All',
@@ -64,7 +66,8 @@ export default {
64
66
  customTitle: 'Column settings',
65
67
  customAll: 'All',
66
68
  customConfirm: 'Confirm',
67
- customRestore: 'Reset',
69
+ customCancel: 'Cancel',
70
+ customRestore: 'Restore',
68
71
  maxFixedCol: 'The maximum number of Freeze columns cannot exceed {0}'
69
72
  },
70
73
  grid: {
@@ -120,7 +123,8 @@ export default {
120
123
  colSort: 'Sort',
121
124
  sortHelpTip: 'Click and drag the icon to adjust the order of the columns.',
122
125
  colTitle: 'Title',
123
- colVisible: 'Visible',
126
+ colResizable: 'Column width (px)',
127
+ colVisible: 'Display',
124
128
  colFixed: 'Freeze columns (Max. {0})',
125
129
  fixedLeft: 'Left',
126
130
  fixedUnset: 'Unset',
@@ -185,7 +189,9 @@ export default {
185
189
  expCancel: 'Cancel'
186
190
  },
187
191
  modal: {
188
- zoomIn: 'Maximization',
192
+ errTitle: 'Error',
193
+ zoomMin: 'Minimize',
194
+ zoomIn: 'Maximize',
189
195
  zoomOut: 'Reduction',
190
196
  close: 'Close'
191
197
  },
@@ -269,13 +275,147 @@ export default {
269
275
  }
270
276
  }
271
277
  },
278
+ imagePreview: {
279
+ popupTitle: 'Preview',
280
+ operBtn: {
281
+ zoomOut: 'Reduce',
282
+ zoomIn: 'Enlarge',
283
+ pctFull: 'Proportional scaling',
284
+ pct11: 'Show original size',
285
+ rotateLeft: 'Rotate left',
286
+ rotateRight: 'Rotate right',
287
+ print: 'Click to print',
288
+ download: 'Click to download'
289
+ }
290
+ },
291
+ upload: {
292
+ fileBtnText: 'Click or drag',
293
+ imgBtnText: 'Click or drag',
294
+ dragPlaceholder: 'Please drag and drop the file into this area to upload it.',
295
+ imgSizeHint: 'Single {0}',
296
+ imgCountHint: 'Up to {0}',
297
+ fileTypeHint: 'Support {0} file types',
298
+ fileSizeHint: 'Single file size does not exceed {0}',
299
+ fileCountHint: 'Up to {0} file can be uploaded',
300
+ overCountErr: 'You can only choose {0} file!',
301
+ overCountExtraErr: 'It has exceeded the maximum number {0}, and more than {0} file will be ignored!超出最大数量 1 个,超出的 1 个文件将被忽略!',
302
+ overSizeErr: 'The size of the file is not more than {0}}!',
303
+ reUpload: 'Re upload',
304
+ uploadProgress: 'Uploading {0}%',
305
+ uploadErr: 'Fail to upload',
306
+ uploadSuccess: 'Successfully upload'
307
+ },
272
308
  formDesign: {
309
+ formName: 'Form name',
310
+ defFormTitle: 'Unnamed form',
311
+ widgetPropTab: 'Field property',
312
+ widgetFormTab: 'Form property',
313
+ styleSetting: {
314
+ btn: 'Style setting',
315
+ title: 'Form style setting',
316
+ layoutTitle: 'Field layout',
317
+ verticalLayout: 'Vertical layout',
318
+ horizontalLayout: 'Horizontal layout',
319
+ styleTitle: 'Title style',
320
+ boldTitle: 'Bold title',
321
+ fontBold: 'Bold',
322
+ fontNormal: 'Normal',
323
+ colonTitle: 'Display colon',
324
+ colonVisible: 'Visible',
325
+ colonHidden: 'Hidden',
326
+ alignTitle: 'Title align',
327
+ widthTitle: 'Title width',
328
+ alignLeft: 'Left',
329
+ alignRight: 'Right',
330
+ unitPx: 'Px',
331
+ unitPct: 'Pct'
332
+ },
273
333
  widget: {
274
- input: 'Input',
275
- textarea: 'Textarea',
276
- select: 'Select'
334
+ group: {
335
+ base: 'Base control',
336
+ layout: 'Layout control',
337
+ advanced: 'Advanced control'
338
+ },
339
+ copyTitle: 'Copy_{0}',
340
+ component: {
341
+ input: 'Input',
342
+ textarea: 'Textarea',
343
+ select: 'Select',
344
+ row: 'Row/column',
345
+ title: 'Text',
346
+ subtable: 'Subtable',
347
+ VxeSwitch: 'Yes/no',
348
+ VxeInput: 'Input',
349
+ VxeNumberInput: 'Number',
350
+ VxeDatePicker: 'Date',
351
+ VxeTextarea: 'Textarea',
352
+ VxeSelect: 'Select',
353
+ VxeRadioGroup: 'Radio',
354
+ VxeCheckboxGroup: 'Checkbox',
355
+ VxeUploadFile: 'File',
356
+ VxeUploadImage: 'Image'
357
+ }
358
+ },
359
+ widgetProp: {
360
+ name: 'Field name',
361
+ placeholder: 'Field placeholder',
362
+ required: 'Required',
363
+ displaySetting: {
364
+ name: 'Display setting',
365
+ pc: 'PC',
366
+ mobile: 'Mobile',
367
+ visible: 'Visible',
368
+ hidden: 'Hidden'
369
+ },
370
+ dataSource: {
371
+ name: 'Data source',
372
+ defValue: 'Option {0}',
373
+ addOption: 'Add option',
374
+ batchEditOption: 'Batch edit',
375
+ batchEditTip: 'Each row corresponds to an option, supporting direct copying and pasting from tables, Excel, and WPS.',
376
+ batchEditSubTip: 'Each row corresponds to an option. If grouped, the sub items can start with spaces or tab keys, and can be directly copied and pasted from tables, Excel, or WPS.',
377
+ buildOption: 'Build option'
378
+ },
379
+ rowProp: {
380
+ colSize: 'Number of columns',
381
+ col2: 'Two columns',
382
+ col3: 'Three columns',
383
+ col4: 'Four columns',
384
+ col6: 'Six columns',
385
+ layout: 'Layout'
386
+ },
387
+ textProp: {
388
+ name: 'Content',
389
+ alignTitle: 'Align',
390
+ alignLeft: 'Left',
391
+ alignCenter: 'Center',
392
+ alignRight: 'Right',
393
+ colorTitle: 'Color',
394
+ sizeTitle: 'Font size',
395
+ boldTitle: 'Font bold',
396
+ fontNormal: 'Normal',
397
+ fontBold: 'Bold'
398
+ },
399
+ subtableProp: {
400
+ seqTitle: 'S/N',
401
+ showSeq: 'Display serial number',
402
+ showCheckbox: 'Allow multiple selections',
403
+ errSubDrag: 'The sub table does not support this control. Please use another control.'
404
+ },
405
+ uploadProp: {
406
+ limitFileCount: 'File quantity limitation',
407
+ limitFileSize: 'File size limitation',
408
+ multiFile: 'Allows multiple files',
409
+ limitImgCount: 'Image quantity limitation',
410
+ limitImgSize: 'Image size limitation',
411
+ multiImg: 'Allows multiple images'
412
+ }
277
413
  }
278
414
  },
415
+ listDesign: {
416
+ fieldSettingTab: 'Field setting',
417
+ listSettingTab: 'List setting'
418
+ },
279
419
  /**
280
420
  * 扩展插件
281
421
  */
@@ -6,7 +6,9 @@ export default {
6
6
  vxe: {
7
7
  base: {
8
8
  pleaseInput: 'Please input',
9
- pleaseSelect: 'Select'
9
+ pleaseSelect: 'Select',
10
+ comma: ',',
11
+ fullStop: '.'
10
12
  },
11
13
  loading: {
12
14
  text: 'Cargando...'
@@ -49,7 +51,7 @@ export default {
49
51
  table: {
50
52
  emptyText: 'No hay datos',
51
53
  allTitle: 'Seleccionar todo / cancelar',
52
- seqTitle: 'S/N',
54
+ seqTitle: 'N/S',
53
55
  confirmFilter: 'Confirmar',
54
56
  resetFilter: 'Restablecer',
55
57
  allFilter: 'Todo',
@@ -63,8 +65,9 @@ export default {
63
65
  expOriginFilename: 'Exportar_original_{0}',
64
66
  customTitle: 'Configuraciones de columna',
65
67
  customAll: 'Todo',
66
- customConfirm: 'Confirmar',
67
- customRestore: 'Restaurar',
68
+ customConfirm: 'Confirm',
69
+ customCancel: 'Cancel',
70
+ customRestore: 'Restore',
68
71
  maxFixedCol: 'The maximum number of Freeze columns cannot exceed {0}'
69
72
  },
70
73
  grid: {
@@ -120,7 +123,8 @@ export default {
120
123
  colSort: 'Sort',
121
124
  sortHelpTip: 'Click and drag the icon to adjust the order of the columns.',
122
125
  colTitle: 'Title',
123
- colVisible: 'Visible',
126
+ colResizable: 'Column width (px)',
127
+ colVisible: 'Display',
124
128
  colFixed: 'Freeze columns (Max {0})',
125
129
  fixedLeft: 'Left',
126
130
  fixedUnset: 'Unset',
@@ -185,7 +189,9 @@ export default {
185
189
  expCancel: 'Cancelar'
186
190
  },
187
191
  modal: {
188
- zoomIn: 'Maximizar',
192
+ errTitle: 'Error',
193
+ zoomMin: 'Minimize',
194
+ zoomIn: 'Maximize',
189
195
  zoomOut: 'Reducir',
190
196
  close: 'Cerrar'
191
197
  },
@@ -269,13 +275,147 @@ export default {
269
275
  }
270
276
  }
271
277
  },
278
+ imagePreview: {
279
+ popupTitle: 'Preview',
280
+ operBtn: {
281
+ zoomOut: 'Reduce',
282
+ zoomIn: 'Enlarge',
283
+ pctFull: 'Proportional scaling',
284
+ pct11: 'Show original size',
285
+ rotateLeft: 'Rotate left',
286
+ rotateRight: 'Rotate right',
287
+ print: 'Click to print',
288
+ download: 'Click to download'
289
+ }
290
+ },
291
+ upload: {
292
+ fileBtnText: 'Click or drag',
293
+ imgBtnText: 'Click or drag',
294
+ dragPlaceholder: 'Please drag and drop the file into this area to upload it.',
295
+ imgSizeHint: 'Single {0}',
296
+ imgCountHint: 'Up to {0}',
297
+ fileTypeHint: 'Support {0} file types',
298
+ fileSizeHint: 'Single file size does not exceed {0}',
299
+ fileCountHint: 'Up to {0} file can be uploaded',
300
+ overCountErr: 'You can only choose {0} file!',
301
+ overCountExtraErr: 'It has exceeded the maximum number {0}, and more than {0} file will be ignored!超出最大数量 1 个,超出的 1 个文件将被忽略!',
302
+ overSizeErr: 'The size of the file is not more than {0}}!',
303
+ reUpload: 'Re upload',
304
+ uploadProgress: 'Uploading {0}%',
305
+ uploadErr: 'Fail to upload',
306
+ uploadSuccess: 'Successfully upload'
307
+ },
272
308
  formDesign: {
309
+ formName: 'Form name',
310
+ defFormTitle: 'Unnamed form',
311
+ widgetPropTab: 'Field property',
312
+ widgetFormTab: 'Form property',
313
+ styleSetting: {
314
+ btn: 'Style setting',
315
+ title: 'Form style setting',
316
+ layoutTitle: 'Field layout',
317
+ verticalLayout: 'Vertical layout',
318
+ horizontalLayout: 'Horizontal layout',
319
+ styleTitle: 'Title style',
320
+ boldTitle: 'Bold title',
321
+ fontBold: 'Bold',
322
+ fontNormal: 'Normal',
323
+ colonTitle: 'Display colon',
324
+ colonVisible: 'Visible',
325
+ colonHidden: 'Hidden',
326
+ alignTitle: 'Title align',
327
+ widthTitle: 'Title width',
328
+ alignLeft: 'Left',
329
+ alignRight: 'Right',
330
+ unitPx: 'Px',
331
+ unitPct: 'Pct'
332
+ },
273
333
  widget: {
274
- input: 'Input',
275
- textarea: 'Textarea',
276
- select: 'Select'
334
+ group: {
335
+ base: 'Base control',
336
+ layout: 'Layout control',
337
+ advanced: 'Advanced control'
338
+ },
339
+ copyTitle: 'Copy_{0}',
340
+ component: {
341
+ input: 'Input',
342
+ textarea: 'Textarea',
343
+ select: 'Select',
344
+ row: 'Row/column',
345
+ title: 'Text',
346
+ subtable: 'Subtable',
347
+ VxeSwitch: 'Yes/no',
348
+ VxeInput: 'Input',
349
+ VxeNumberInput: 'Number',
350
+ VxeDatePicker: 'Date',
351
+ VxeTextarea: 'Textarea',
352
+ VxeSelect: 'Select',
353
+ VxeRadioGroup: 'Radio',
354
+ VxeCheckboxGroup: 'Checkbox',
355
+ VxeUploadFile: 'File',
356
+ VxeUploadImage: 'Image'
357
+ }
358
+ },
359
+ widgetProp: {
360
+ name: 'Field name',
361
+ placeholder: 'Field placeholder',
362
+ required: 'Required',
363
+ displaySetting: {
364
+ name: 'Display setting',
365
+ pc: 'PC',
366
+ mobile: 'Mobile',
367
+ visible: 'Visible',
368
+ hidden: 'Hidden'
369
+ },
370
+ dataSource: {
371
+ name: 'Data source',
372
+ defValue: 'Option {0}',
373
+ addOption: 'Add option',
374
+ batchEditOption: 'Batch edit',
375
+ batchEditTip: 'Each row corresponds to an option, supporting direct copying and pasting from tables, Excel, and WPS.',
376
+ batchEditSubTip: 'Each row corresponds to an option. If grouped, the sub items can start with spaces or tab keys, and can be directly copied and pasted from tables, Excel, or WPS.',
377
+ buildOption: 'Build option'
378
+ },
379
+ rowProp: {
380
+ colSize: 'Number of columns',
381
+ col2: 'Two columns',
382
+ col3: 'Three columns',
383
+ col4: 'Four columns',
384
+ col6: 'Six columns',
385
+ layout: 'Layout'
386
+ },
387
+ textProp: {
388
+ name: 'Content',
389
+ alignTitle: 'Align',
390
+ alignLeft: 'Left',
391
+ alignCenter: 'Center',
392
+ alignRight: 'Right',
393
+ colorTitle: 'Color',
394
+ sizeTitle: 'Font size',
395
+ boldTitle: 'Font bold',
396
+ fontNormal: 'Normal',
397
+ fontBold: 'Bold'
398
+ },
399
+ subtableProp: {
400
+ seqTitle: 'S/N',
401
+ showSeq: 'Display serial number',
402
+ showCheckbox: 'Allow multiple selections',
403
+ errSubDrag: 'The sub table does not support this control. Please use another control.'
404
+ },
405
+ uploadProp: {
406
+ limitFileCount: 'File quantity limitation',
407
+ limitFileSize: 'File size limitation',
408
+ multiFile: 'Allows multiple files',
409
+ limitImgCount: 'Image quantity limitation',
410
+ limitImgSize: 'Image size limitation',
411
+ multiImg: 'Allows multiple images'
412
+ }
277
413
  }
278
414
  },
415
+ listDesign: {
416
+ fieldSettingTab: 'Field setting',
417
+ listSettingTab: 'List setting'
418
+ },
279
419
  /**
280
420
  * 扩展插件
281
421
  */
@@ -6,7 +6,9 @@ export default {
6
6
  vxe: {
7
7
  base: {
8
8
  pleaseInput: 'Please input',
9
- pleaseSelect: 'Select'
9
+ pleaseSelect: 'Select',
10
+ comma: ',',
11
+ fullStop: '.'
10
12
  },
11
13
  loading: {
12
14
  text: 'Loading...'
@@ -49,7 +51,7 @@ export default {
49
51
  table: {
50
52
  emptyText: 'データがありません',
51
53
  allTitle: '全て選択/取消',
52
- seqTitle: 'S/N',
54
+ seqTitle: 'N/S',
53
55
  confirmFilter: 'OK',
54
56
  resetFilter: 'リセット',
55
57
  allFilter: '全て',
@@ -63,8 +65,9 @@ export default {
63
65
  expSrcFilename: 'エクスポート_ソース_{0}',
64
66
  customTitle: '列設定',
65
67
  customAll: '全部',
66
- customConfirm: 'OK',
67
- customRestore: 'リセット',
68
+ customConfirm: 'Confirm',
69
+ customCancel: 'Cancel',
70
+ customRestore: 'Restore',
68
71
  maxFixedCol: '最大固定列数が {0} です。'
69
72
  },
70
73
  grid: {
@@ -120,7 +123,8 @@ export default {
120
123
  colSort: 'ソート',
121
124
  sortHelpTip: 'Click and drag the icon to adjust the order of the columns.',
122
125
  colTitle: 'タイトル',
123
- colVisible: '表示',
126
+ colResizable: 'Column width (px)',
127
+ colVisible: 'Display',
124
128
  colFixed: '冻结列(最多 {0} 列)',
125
129
  fixedLeft: '左側',
126
130
  fixedUnset: '指定しない',
@@ -185,7 +189,9 @@ export default {
185
189
  expCancel: 'キャンセル'
186
190
  },
187
191
  modal: {
188
- zoomIn: '最大化',
192
+ errTitle: 'Error',
193
+ zoomMin: 'Minimize',
194
+ zoomIn: 'Maximize',
189
195
  zoomOut: '縮小',
190
196
  close: '閉じる'
191
197
  },
@@ -269,13 +275,147 @@ export default {
269
275
  }
270
276
  }
271
277
  },
278
+ imagePreview: {
279
+ popupTitle: 'Preview',
280
+ operBtn: {
281
+ zoomOut: 'Reduce',
282
+ zoomIn: 'Enlarge',
283
+ pctFull: 'Proportional scaling',
284
+ pct11: 'Show original size',
285
+ rotateLeft: 'Rotate left',
286
+ rotateRight: 'Rotate right',
287
+ print: 'Click to print',
288
+ download: 'Click to download'
289
+ }
290
+ },
291
+ upload: {
292
+ fileBtnText: 'Click or drag',
293
+ imgBtnText: 'Click or drag',
294
+ dragPlaceholder: 'Please drag and drop the file into this area to upload it.',
295
+ imgSizeHint: 'Single {0}',
296
+ imgCountHint: 'Up to {0}',
297
+ fileTypeHint: 'Support {0} file types',
298
+ fileSizeHint: 'Single file size does not exceed {0}',
299
+ fileCountHint: 'Up to {0} file can be uploaded',
300
+ overCountErr: 'You can only choose {0} file!',
301
+ overCountExtraErr: 'It has exceeded the maximum number {0}, and more than {0} file will be ignored!超出最大数量 1 个,超出的 1 个文件将被忽略!',
302
+ overSizeErr: 'The size of the file is not more than {0}}!',
303
+ reUpload: 'Re upload',
304
+ uploadProgress: 'Uploading {0}%',
305
+ uploadErr: 'Fail to upload',
306
+ uploadSuccess: 'Successfully upload'
307
+ },
272
308
  formDesign: {
309
+ formName: 'Form name',
310
+ defFormTitle: 'Unnamed form',
311
+ widgetPropTab: 'Field property',
312
+ widgetFormTab: 'Form property',
313
+ styleSetting: {
314
+ btn: 'Style setting',
315
+ title: 'Form style setting',
316
+ layoutTitle: 'Field layout',
317
+ verticalLayout: 'Vertical layout',
318
+ horizontalLayout: 'Horizontal layout',
319
+ styleTitle: 'Title style',
320
+ boldTitle: 'Bold title',
321
+ fontBold: 'Bold',
322
+ fontNormal: 'Normal',
323
+ colonTitle: 'Display colon',
324
+ colonVisible: 'Visible',
325
+ colonHidden: 'Hidden',
326
+ alignTitle: 'Title align',
327
+ widthTitle: 'Title width',
328
+ alignLeft: 'Left',
329
+ alignRight: 'Right',
330
+ unitPx: 'Px',
331
+ unitPct: 'Pct'
332
+ },
273
333
  widget: {
274
- input: 'Input',
275
- textarea: 'Textarea',
276
- select: 'Select'
334
+ group: {
335
+ base: 'Base control',
336
+ layout: 'Layout control',
337
+ advanced: 'Advanced control'
338
+ },
339
+ copyTitle: 'Copy_{0}',
340
+ component: {
341
+ input: 'Input',
342
+ textarea: 'Textarea',
343
+ select: 'Select',
344
+ row: 'Row/column',
345
+ title: 'Text',
346
+ subtable: 'Subtable',
347
+ VxeSwitch: 'Yes/no',
348
+ VxeInput: 'Input',
349
+ VxeNumberInput: 'Number',
350
+ VxeDatePicker: 'Date',
351
+ VxeTextarea: 'Textarea',
352
+ VxeSelect: 'Select',
353
+ VxeRadioGroup: 'Radio',
354
+ VxeCheckboxGroup: 'Checkbox',
355
+ VxeUploadFile: 'File',
356
+ VxeUploadImage: 'Image'
357
+ }
358
+ },
359
+ widgetProp: {
360
+ name: 'Field name',
361
+ placeholder: 'Field placeholder',
362
+ required: 'Required',
363
+ displaySetting: {
364
+ name: 'Display setting',
365
+ pc: 'PC',
366
+ mobile: 'Mobile',
367
+ visible: 'Visible',
368
+ hidden: 'Hidden'
369
+ },
370
+ dataSource: {
371
+ name: 'Data source',
372
+ defValue: 'Option {0}',
373
+ addOption: 'Add option',
374
+ batchEditOption: 'Batch edit',
375
+ batchEditTip: 'Each row corresponds to an option, supporting direct copying and pasting from tables, Excel, and WPS.',
376
+ batchEditSubTip: 'Each row corresponds to an option. If grouped, the sub items can start with spaces or tab keys, and can be directly copied and pasted from tables, Excel, or WPS.',
377
+ buildOption: 'Build option'
378
+ },
379
+ rowProp: {
380
+ colSize: 'Number of columns',
381
+ col2: 'Two columns',
382
+ col3: 'Three columns',
383
+ col4: 'Four columns',
384
+ col6: 'Six columns',
385
+ layout: 'Layout'
386
+ },
387
+ textProp: {
388
+ name: 'Content',
389
+ alignTitle: 'Align',
390
+ alignLeft: 'Left',
391
+ alignCenter: 'Center',
392
+ alignRight: 'Right',
393
+ colorTitle: 'Color',
394
+ sizeTitle: 'Font size',
395
+ boldTitle: 'Font bold',
396
+ fontNormal: 'Normal',
397
+ fontBold: 'Bold'
398
+ },
399
+ subtableProp: {
400
+ seqTitle: 'S/N',
401
+ showSeq: 'Display serial number',
402
+ showCheckbox: 'Allow multiple selections',
403
+ errSubDrag: 'The sub table does not support this control. Please use another control.'
404
+ },
405
+ uploadProp: {
406
+ limitFileCount: 'File quantity limitation',
407
+ limitFileSize: 'File size limitation',
408
+ multiFile: 'Allows multiple files',
409
+ limitImgCount: 'Image quantity limitation',
410
+ limitImgSize: 'Image size limitation',
411
+ multiImg: 'Allows multiple images'
412
+ }
277
413
  }
278
414
  },
415
+ listDesign: {
416
+ fieldSettingTab: 'Field setting',
417
+ listSettingTab: 'List setting'
418
+ },
279
419
  /**
280
420
  * 扩展插件
281
421
  */