@vxe-ui/core 0.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.
- package/LICENSE +21 -0
- package/README.en.md +31 -0
- package/README.md +31 -0
- package/README.zh-TW.md +31 -0
- package/es/index.esm.js +9 -0
- package/es/language/en-US.d.ts +2 -0
- package/es/language/en-US.js +480 -0
- package/es/language/es-ES.d.ts +2 -0
- package/es/language/es-ES.js +480 -0
- package/es/language/ja-JP.d.ts +2 -0
- package/es/language/ja-JP.js +480 -0
- package/es/language/pt-BR.d.ts +2 -0
- package/es/language/pt-BR.js +480 -0
- package/es/language/zh-CN.d.ts +2 -0
- package/es/language/zh-CN.js +480 -0
- package/es/language/zh-HK.d.ts +2 -0
- package/es/language/zh-HK.js +2 -0
- package/es/language/zh-MO.d.ts +2 -0
- package/es/language/zh-MO.js +2 -0
- package/es/language/zh-TC.d.ts +2 -0
- package/es/language/zh-TC.js +480 -0
- package/es/language/zh-TW.d.ts +2 -0
- package/es/language/zh-TW.js +2 -0
- package/es/src/clipboard.js +35 -0
- package/es/src/commands.js +57 -0
- package/es/src/core.js +71 -0
- package/es/src/event.js +75 -0
- package/es/src/formats.js +57 -0
- package/es/src/globalStore.js +9 -0
- package/es/src/hooks.js +2 -0
- package/es/src/i18n.js +7 -0
- package/es/src/iconStore.js +2 -0
- package/es/src/interceptor.js +41 -0
- package/es/src/log.js +13 -0
- package/es/src/menus.js +57 -0
- package/es/src/renderer.js +46 -0
- package/es/src/resize.js +81 -0
- package/es/src/store.js +48 -0
- package/es/src/theme.js +10 -0
- package/es/src/validators.js +5 -0
- package/lib/index.common.js +29 -0
- package/lib/index.umd.js +2824 -0
- package/lib/index.umd.min.js +1 -0
- package/lib/language/en-US.d.ts +2 -0
- package/lib/language/en-US.js +486 -0
- package/lib/language/en-US.min.js +1 -0
- package/lib/language/en-US.umd.js +500 -0
- package/lib/language/es-ES.d.ts +2 -0
- package/lib/language/es-ES.js +486 -0
- package/lib/language/es-ES.min.js +1 -0
- package/lib/language/es-ES.umd.js +500 -0
- package/lib/language/ja-JP.d.ts +2 -0
- package/lib/language/ja-JP.js +486 -0
- package/lib/language/ja-JP.min.js +1 -0
- package/lib/language/ja-JP.umd.js +500 -0
- package/lib/language/pt-BR.d.ts +2 -0
- package/lib/language/pt-BR.js +486 -0
- package/lib/language/pt-BR.min.js +1 -0
- package/lib/language/pt-BR.umd.js +500 -0
- package/lib/language/zh-CN.d.ts +2 -0
- package/lib/language/zh-CN.js +486 -0
- package/lib/language/zh-CN.min.js +1 -0
- package/lib/language/zh-CN.umd.js +500 -0
- package/lib/language/zh-HK.d.ts +2 -0
- package/lib/language/zh-HK.js +9 -0
- package/lib/language/zh-HK.min.js +1 -0
- package/lib/language/zh-HK.umd.js +500 -0
- package/lib/language/zh-MO.d.ts +2 -0
- package/lib/language/zh-MO.js +9 -0
- package/lib/language/zh-MO.min.js +1 -0
- package/lib/language/zh-MO.umd.js +500 -0
- package/lib/language/zh-TC.d.ts +2 -0
- package/lib/language/zh-TC.js +486 -0
- package/lib/language/zh-TC.min.js +1 -0
- package/lib/language/zh-TC.umd.js +500 -0
- package/lib/language/zh-TW.d.ts +2 -0
- package/lib/language/zh-TW.js +9 -0
- package/lib/language/zh-TW.min.js +1 -0
- package/lib/language/zh-TW.umd.js +500 -0
- package/lib/src/clipboard.js +40 -0
- package/lib/src/clipboard.min.js +1 -0
- package/lib/src/commands.js +66 -0
- package/lib/src/commands.min.js +1 -0
- package/lib/src/core.js +170 -0
- package/lib/src/core.min.js +1 -0
- package/lib/src/event.js +100 -0
- package/lib/src/event.min.js +1 -0
- package/lib/src/formats.js +66 -0
- package/lib/src/formats.min.js +1 -0
- package/lib/src/globalStore.js +15 -0
- package/lib/src/globalStore.min.js +1 -0
- package/lib/src/hooks.js +9 -0
- package/lib/src/hooks.min.js +1 -0
- package/lib/src/i18n.js +14 -0
- package/lib/src/i18n.min.js +1 -0
- package/lib/src/iconStore.js +8 -0
- package/lib/src/iconStore.min.js +1 -0
- package/lib/src/interceptor.js +47 -0
- package/lib/src/interceptor.min.js +1 -0
- package/lib/src/log.js +21 -0
- package/lib/src/log.min.js +1 -0
- package/lib/src/menus.js +66 -0
- package/lib/src/menus.min.js +1 -0
- package/lib/src/renderer.js +52 -0
- package/lib/src/renderer.min.js +1 -0
- package/lib/src/resize.js +96 -0
- package/lib/src/resize.min.js +1 -0
- package/lib/src/store.js +56 -0
- package/lib/src/store.min.js +1 -0
- package/lib/src/theme.js +17 -0
- package/lib/src/theme.min.js +1 -0
- package/lib/src/validators.js +14 -0
- package/lib/src/validators.min.js +1 -0
- package/package.json +75 -0
- package/packages/index.ts +11 -0
- package/packages/language/en-US.ts +482 -0
- package/packages/language/es-ES.ts +482 -0
- package/packages/language/ja-JP.ts +482 -0
- package/packages/language/pt-BR.ts +482 -0
- package/packages/language/zh-CN.ts +482 -0
- package/packages/language/zh-HK.ts +3 -0
- package/packages/language/zh-MO.ts +3 -0
- package/packages/language/zh-TC.ts +482 -0
- package/packages/language/zh-TW.ts +3 -0
- package/packages/src/clipboard.ts +38 -0
- package/packages/src/commands.ts +62 -0
- package/packages/src/core.ts +83 -0
- package/packages/src/event.ts +89 -0
- package/packages/src/formats.ts +62 -0
- package/packages/src/globalStore.ts +13 -0
- package/packages/src/hooks.ts +5 -0
- package/packages/src/i18n.ts +8 -0
- package/packages/src/iconStore.ts +5 -0
- package/packages/src/interceptor.ts +46 -0
- package/packages/src/log.ts +16 -0
- package/packages/src/menus.ts +62 -0
- package/packages/src/renderer.ts +50 -0
- package/packages/src/resize.ts +85 -0
- package/packages/src/store.ts +49 -0
- package/packages/src/theme.ts +13 -0
- package/packages/src/validators.ts +9 -0
- package/types/core/clipboard.d.ts +6 -0
- package/types/core/commands.d.ts +25 -0
- package/types/core/formats.d.ts +23 -0
- package/types/core/global-config.d.ts +14 -0
- package/types/core/global-icon.d.ts +4 -0
- package/types/core/hooks.d.ts +14 -0
- package/types/core/index.d.ts +115 -0
- package/types/core/interceptor.d.ts +18 -0
- package/types/core/menus.d.ts +25 -0
- package/types/core/renderer.d.ts +26 -0
- package/types/core/validators.d.ts +22 -0
- package/types/index.d.ts +10 -0
- package/types/tool/common.d.ts +61 -0
- package/types/tool/index.d.ts +2 -0
- package/types/tool/util.d.ts +4 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2019 xuliangzhan
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.en.md
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# vxe-core
|
|
2
|
+
|
|
3
|
+
[简体中文](README.md) | [繁體中文](README.zh-TW.md) | English
|
|
4
|
+
|
|
5
|
+
Vxe UI core library.
|
|
6
|
+
|
|
7
|
+
## Install
|
|
8
|
+
|
|
9
|
+
```shell
|
|
10
|
+
npm install @vxe-ui/core
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
```javascript
|
|
14
|
+
// ...
|
|
15
|
+
import VxeCore from '@vxe-ui/core'
|
|
16
|
+
// ...
|
|
17
|
+
|
|
18
|
+
VxeCore.setConfig({
|
|
19
|
+
// ...
|
|
20
|
+
})
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
## Contributors
|
|
24
|
+
|
|
25
|
+
Thank you to everyone who contributed to this project.
|
|
26
|
+
|
|
27
|
+
[](https://github.com/x-extends/vxe-core/graphs/contributors)
|
|
28
|
+
|
|
29
|
+
## License
|
|
30
|
+
|
|
31
|
+
[MIT](LICENSE) © 2019-present, Xu Liangzhan
|
package/README.md
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# vxe-core
|
|
2
|
+
|
|
3
|
+
简体中文 | [繁體中文](README.zh-TW.md) | [English](README.en.md)
|
|
4
|
+
|
|
5
|
+
Vxe UI 核心库.
|
|
6
|
+
|
|
7
|
+
## 安装
|
|
8
|
+
|
|
9
|
+
```shell
|
|
10
|
+
npm install @vxe-ui/core
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
```javascript
|
|
14
|
+
// ...
|
|
15
|
+
import VxeCore from '@vxe-ui/core'
|
|
16
|
+
// ...
|
|
17
|
+
|
|
18
|
+
VxeCore.setConfig({
|
|
19
|
+
// ...
|
|
20
|
+
})
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
## Contributors
|
|
24
|
+
|
|
25
|
+
Thank you to everyone who contributed to this project.
|
|
26
|
+
|
|
27
|
+
[](https://github.com/x-extends/vxe-core/graphs/contributors)
|
|
28
|
+
|
|
29
|
+
## License
|
|
30
|
+
|
|
31
|
+
[MIT](LICENSE) © 2019-present, Xu Liangzhan
|
package/README.zh-TW.md
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# vxe-core
|
|
2
|
+
|
|
3
|
+
[简体中文](README.md) | 繁體中文 | [English](README.en.md)
|
|
4
|
+
|
|
5
|
+
Vxe UI core library.
|
|
6
|
+
|
|
7
|
+
## Use
|
|
8
|
+
|
|
9
|
+
```shell
|
|
10
|
+
npm install @vxe-ui/core
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
```javascript
|
|
14
|
+
// ...
|
|
15
|
+
import VxeCore from '@vxe-ui/core'
|
|
16
|
+
// ...
|
|
17
|
+
|
|
18
|
+
VxeCore.setConfig({
|
|
19
|
+
// ...
|
|
20
|
+
})
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
## Contributors
|
|
24
|
+
|
|
25
|
+
Thank you to everyone who contributed to this project.
|
|
26
|
+
|
|
27
|
+
[](https://github.com/x-extends/vxe-core/graphs/contributors)
|
|
28
|
+
|
|
29
|
+
## License
|
|
30
|
+
|
|
31
|
+
[MIT](LICENSE) © 2019-present, Xu Liangzhan
|
package/es/index.esm.js
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import VxeCore, { setConfig } from './src/core';
|
|
2
|
+
import XEUtils from 'xe-utils';
|
|
3
|
+
import zhCN from './language/zh-CN';
|
|
4
|
+
// 默认中文
|
|
5
|
+
setConfig({
|
|
6
|
+
i18n: (key, args) => XEUtils.toFormatString(XEUtils.get(zhCN, key), args)
|
|
7
|
+
});
|
|
8
|
+
export * from './src/core';
|
|
9
|
+
export default VxeCore;
|
|
@@ -0,0 +1,480 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
vxe: {
|
|
3
|
+
base: {
|
|
4
|
+
pleaseInput: 'Please input',
|
|
5
|
+
pleaseSelect: 'Select'
|
|
6
|
+
},
|
|
7
|
+
loading: {
|
|
8
|
+
text: 'Loading...'
|
|
9
|
+
},
|
|
10
|
+
error: {
|
|
11
|
+
groupFixed: 'If you use group headers, the freeze columns must be set by group.',
|
|
12
|
+
groupMouseRange: 'Grouping headers and "{0}" cannot be used at the same time, which may cause errors.',
|
|
13
|
+
groupTag: 'Grouping column header should use "{0}" instead of "{1}", which may cause errors.',
|
|
14
|
+
scrollErrProp: 'The parameter "{0}" is not supported when virtual scrolling is enabled.',
|
|
15
|
+
errConflicts: 'Argument "{0}" conflicts with "{1}"',
|
|
16
|
+
unableInsert: 'Unable to insert to the specified location.',
|
|
17
|
+
useErr: 'Error installing "{0}" module, possibly in the wrong order, dependent modules need to be installed before Table.',
|
|
18
|
+
barUnableLink: 'Toolbar cannot associate table.',
|
|
19
|
+
expandContent: 'Expand row slot should be "content", please check if it is correct.',
|
|
20
|
+
reqModule: 'require "{0}" module.',
|
|
21
|
+
reqProp: 'Missing the necessary "{0}" parameter, which can cause error.',
|
|
22
|
+
emptyProp: 'The property "{0}" is not allowed to be empty.',
|
|
23
|
+
errProp: 'Unsupported parameter "{0}", possibly "{1}".',
|
|
24
|
+
colRepet: 'column.{0}="{0}" is duplicated, which may make some features unusable',
|
|
25
|
+
notFunc: 'method "{0}" not exist.',
|
|
26
|
+
errFunc: 'The argument "{0}" is not a method',
|
|
27
|
+
notValidators: 'Global validators "{0}" no existe.',
|
|
28
|
+
notFormats: 'Global formats "{0}" no existe.',
|
|
29
|
+
notCommands: 'Global commands "{0}" no existe.',
|
|
30
|
+
notSlot: 'slot "{0}" does not exist',
|
|
31
|
+
noTree: 'The tree structure does not support "{0}".',
|
|
32
|
+
notProp: 'Unsupported parameters "{0}"',
|
|
33
|
+
checkProp: 'The checkbox may stall when the amount of data is too large, it is recommended to set the parameter "{0}" to increase the rendering speed ',
|
|
34
|
+
coverProp: 'The parameter "{1}" to "{0}" is repeatedly defined. This may cause an error',
|
|
35
|
+
delFunc: 'The function "{0}" is deprecated, please use "{1}".',
|
|
36
|
+
delProp: 'The property "{0}" is deprecated, please use "{1}".',
|
|
37
|
+
delEvent: 'The event "{0}" is deprecated, please use "{1}"',
|
|
38
|
+
removeProp: 'The property "{0}" is deprecated and is not recommended, which may cause error.',
|
|
39
|
+
errFormat: 'The global formatted content should be defined with "VXETable.formats". Mounting "formatter={0}" is not recommended.',
|
|
40
|
+
notType: 'Unsupported file types "{0}"',
|
|
41
|
+
notExp: 'The browser does not support import / export.',
|
|
42
|
+
impFields: 'Import failed, please check that the field name and data format are correct.',
|
|
43
|
+
treeNotImp: 'Tree table does not support import.'
|
|
44
|
+
},
|
|
45
|
+
table: {
|
|
46
|
+
emptyText: 'No Data',
|
|
47
|
+
allTitle: 'Select all / cancel',
|
|
48
|
+
seqTitle: '#',
|
|
49
|
+
confirmFilter: 'Confirm',
|
|
50
|
+
resetFilter: 'Reset',
|
|
51
|
+
allFilter: 'All',
|
|
52
|
+
sortAsc: 'Ascending: lowest to highest',
|
|
53
|
+
sortDesc: 'Descending: highest to lowest',
|
|
54
|
+
filter: 'Enable filtering on selected columns',
|
|
55
|
+
impSuccess: 'Successfully imported {0} records',
|
|
56
|
+
expLoading: 'Exporting',
|
|
57
|
+
expSuccess: 'Export success',
|
|
58
|
+
expFilename: 'Export_{0}',
|
|
59
|
+
expOriginFilename: 'Export_original_{0}',
|
|
60
|
+
customTitle: 'Column settings',
|
|
61
|
+
customAll: 'All',
|
|
62
|
+
customConfirm: 'Confirm',
|
|
63
|
+
customRestore: 'Reset',
|
|
64
|
+
maxFixedCol: 'The maximum number of Freeze columns cannot exceed {0}'
|
|
65
|
+
},
|
|
66
|
+
grid: {
|
|
67
|
+
selectOneRecord: 'Please choose at least one piece of record!',
|
|
68
|
+
deleteSelectRecord: 'Are you sure you want to delete the selected record?',
|
|
69
|
+
removeSelectRecord: 'Are you sure you want to remove the selected record?',
|
|
70
|
+
dataUnchanged: 'Data unchanged! ',
|
|
71
|
+
delSuccess: 'Successfully deleted the selected record!',
|
|
72
|
+
saveSuccess: 'Saved successfully!',
|
|
73
|
+
operError: 'Error occurred, operation failed!'
|
|
74
|
+
},
|
|
75
|
+
select: {
|
|
76
|
+
search: 'Search',
|
|
77
|
+
loadingText: 'Loading',
|
|
78
|
+
emptyText: 'No Data'
|
|
79
|
+
},
|
|
80
|
+
pager: {
|
|
81
|
+
goto: 'Go to',
|
|
82
|
+
pagesize: '{0}/page',
|
|
83
|
+
total: 'Total {0} record',
|
|
84
|
+
pageClassifier: '',
|
|
85
|
+
homePage: 'Home',
|
|
86
|
+
homePageTitle: 'Home page',
|
|
87
|
+
prevPage: 'Previous page',
|
|
88
|
+
prevPageTitle: 'Previous page',
|
|
89
|
+
nextPage: 'next page',
|
|
90
|
+
nextPageTitle: 'next page',
|
|
91
|
+
prevJump: 'Jump previous page',
|
|
92
|
+
prevJumpTitle: 'Jump previous page',
|
|
93
|
+
nextJump: 'Jump next page',
|
|
94
|
+
nextJumpTitle: 'Jump next page',
|
|
95
|
+
endPage: 'End page',
|
|
96
|
+
endPageTitle: 'End'
|
|
97
|
+
},
|
|
98
|
+
alert: {
|
|
99
|
+
title: 'System messages'
|
|
100
|
+
},
|
|
101
|
+
button: {
|
|
102
|
+
confirm: 'Confirm',
|
|
103
|
+
cancel: 'Cancel'
|
|
104
|
+
},
|
|
105
|
+
filter: {
|
|
106
|
+
search: '搜索'
|
|
107
|
+
},
|
|
108
|
+
custom: {
|
|
109
|
+
cstmTitle: 'Column Settings',
|
|
110
|
+
cstmRestore: 'Restore default',
|
|
111
|
+
cstmCancel: 'Cancelar',
|
|
112
|
+
cstmConfirm: 'Confirm',
|
|
113
|
+
cstmConfirmRestore: 'Please confirm whether to restore the default column configuration?',
|
|
114
|
+
cstmDragTarget: 'Moving target: {0}',
|
|
115
|
+
setting: {
|
|
116
|
+
colSort: 'Sort',
|
|
117
|
+
sortHelpTip: 'Click and drag the icon to adjust the order of the columns.',
|
|
118
|
+
colTitle: 'Title',
|
|
119
|
+
colVisible: 'Visible',
|
|
120
|
+
colFixed: 'Freeze columns (Max. {0})',
|
|
121
|
+
fixedLeft: 'Left',
|
|
122
|
+
fixedUnset: 'Unset',
|
|
123
|
+
fixedRight: 'Right'
|
|
124
|
+
}
|
|
125
|
+
},
|
|
126
|
+
import: {
|
|
127
|
+
modes: {
|
|
128
|
+
covering: 'Covering',
|
|
129
|
+
insert: 'Insert'
|
|
130
|
+
},
|
|
131
|
+
impTitle: 'Import data',
|
|
132
|
+
impFile: 'Filename',
|
|
133
|
+
impSelect: 'Select file',
|
|
134
|
+
impType: 'File type',
|
|
135
|
+
impOpts: 'Settings',
|
|
136
|
+
impConfirm: 'Import',
|
|
137
|
+
impCancel: 'Cancel'
|
|
138
|
+
},
|
|
139
|
+
export: {
|
|
140
|
+
types: {
|
|
141
|
+
csv: 'CSV (Comma separated) (*.csv)',
|
|
142
|
+
html: 'Web Page (*.html)',
|
|
143
|
+
xml: 'XML Data(*.xml)',
|
|
144
|
+
txt: 'Text (Tab delimited) (*.txt)',
|
|
145
|
+
xls: 'Excel 97-2003 Workbook(*.xls)',
|
|
146
|
+
xlsx: 'Excel Workbook (*.xlsx)',
|
|
147
|
+
pdf: 'PDF (*.pdf)'
|
|
148
|
+
},
|
|
149
|
+
modes: {
|
|
150
|
+
current: 'Current data (data of current page)',
|
|
151
|
+
selected: 'Selected data (data selected on the current page)',
|
|
152
|
+
all: 'Full data (including all paging data)'
|
|
153
|
+
},
|
|
154
|
+
printTitle: 'Print data',
|
|
155
|
+
expTitle: 'Export data',
|
|
156
|
+
expName: 'Filename',
|
|
157
|
+
expNamePlaceholder: 'Please enter filename',
|
|
158
|
+
expSheetName: 'Title',
|
|
159
|
+
expSheetNamePlaceholder: 'Please enter a title',
|
|
160
|
+
expType: 'Save the type',
|
|
161
|
+
expMode: 'Select data',
|
|
162
|
+
expCurrentColumn: 'All the field',
|
|
163
|
+
expColumn: 'Select field',
|
|
164
|
+
expOpts: 'Settings',
|
|
165
|
+
expOptHeader: 'Header',
|
|
166
|
+
expHeaderTitle: 'Do I need a header',
|
|
167
|
+
expOptFooter: 'Footer',
|
|
168
|
+
expFooterTitle: 'Do you need the footer table',
|
|
169
|
+
expOptColgroup: 'Group header',
|
|
170
|
+
expColgroupTitle: 'If it exists, headers with grouping structure are supported',
|
|
171
|
+
expOptMerge: 'Merge',
|
|
172
|
+
expMergeTitle: 'If it exists, cells with merged structures are supported',
|
|
173
|
+
expOptAllExpand: 'Expand nodes',
|
|
174
|
+
expAllExpandTitle: 'If it exists, all data with tree structure can be expanded',
|
|
175
|
+
expOptUseStyle: 'Styles',
|
|
176
|
+
expUseStyleTitle: 'If it exists, cells with styles are supported',
|
|
177
|
+
expOptOriginal: 'Source data',
|
|
178
|
+
expOriginalTitle: 'If it is source data, import into the table is supported',
|
|
179
|
+
expPrint: 'Print',
|
|
180
|
+
expConfirm: 'Export',
|
|
181
|
+
expCancel: 'Cancel'
|
|
182
|
+
},
|
|
183
|
+
modal: {
|
|
184
|
+
zoomIn: 'Maximization',
|
|
185
|
+
zoomOut: 'Reduction',
|
|
186
|
+
close: 'Close'
|
|
187
|
+
},
|
|
188
|
+
drawer: {
|
|
189
|
+
close: 'Close'
|
|
190
|
+
},
|
|
191
|
+
form: {
|
|
192
|
+
folding: 'Folding',
|
|
193
|
+
unfolding: 'Unfolding'
|
|
194
|
+
},
|
|
195
|
+
toolbar: {
|
|
196
|
+
import: 'Import',
|
|
197
|
+
export: 'Export',
|
|
198
|
+
print: 'Printing',
|
|
199
|
+
refresh: 'Refresh',
|
|
200
|
+
zoomIn: 'Full screen',
|
|
201
|
+
zoomOut: 'Reduction',
|
|
202
|
+
custom: 'Column settings',
|
|
203
|
+
customAll: 'All',
|
|
204
|
+
customConfirm: 'Confirm',
|
|
205
|
+
customRestore: 'Reset',
|
|
206
|
+
fixedLeft: 'Freeze on the left',
|
|
207
|
+
fixedRight: 'Freeze on the right',
|
|
208
|
+
cancelFixed: 'Unfreeze column'
|
|
209
|
+
},
|
|
210
|
+
input: {
|
|
211
|
+
date: {
|
|
212
|
+
m1: 'January',
|
|
213
|
+
m2: 'February',
|
|
214
|
+
m3: 'March',
|
|
215
|
+
m4: 'April',
|
|
216
|
+
m5: 'May',
|
|
217
|
+
m6: 'June',
|
|
218
|
+
m7: 'July',
|
|
219
|
+
m8: 'August',
|
|
220
|
+
m9: 'September',
|
|
221
|
+
m10: 'October',
|
|
222
|
+
m11: 'November',
|
|
223
|
+
m12: 'December',
|
|
224
|
+
quarterLabel: '{0}',
|
|
225
|
+
monthLabel: '{0}',
|
|
226
|
+
dayLabel: '{1} {0}',
|
|
227
|
+
labelFormat: {
|
|
228
|
+
date: 'dd/MM/yyyy',
|
|
229
|
+
time: 'HH:mm:ss',
|
|
230
|
+
datetime: 'yyyy-MM-dd HH:mm:ss',
|
|
231
|
+
week: '[Week] WW, yyyy',
|
|
232
|
+
month: 'MM/yyyy',
|
|
233
|
+
quarter: '[Quarter] q, yyyy',
|
|
234
|
+
year: 'yyyy'
|
|
235
|
+
},
|
|
236
|
+
weeks: {
|
|
237
|
+
w: 'Week',
|
|
238
|
+
w0: 'Sun',
|
|
239
|
+
w1: 'Mon',
|
|
240
|
+
w2: 'Tue',
|
|
241
|
+
w3: 'Wed',
|
|
242
|
+
w4: 'Thu',
|
|
243
|
+
w5: 'Fri',
|
|
244
|
+
w6: 'Sat'
|
|
245
|
+
},
|
|
246
|
+
months: {
|
|
247
|
+
m0: 'Jan',
|
|
248
|
+
m1: 'Feb',
|
|
249
|
+
m2: 'Mar',
|
|
250
|
+
m3: 'Apr',
|
|
251
|
+
m4: 'May',
|
|
252
|
+
m5: 'Jun',
|
|
253
|
+
m6: 'Jul',
|
|
254
|
+
m7: 'Aug',
|
|
255
|
+
m8: 'Sep',
|
|
256
|
+
m9: 'Oct',
|
|
257
|
+
m10: 'Nov',
|
|
258
|
+
m11: 'Dec'
|
|
259
|
+
},
|
|
260
|
+
quarters: {
|
|
261
|
+
q1: 'First quarter',
|
|
262
|
+
q2: 'Second quarter',
|
|
263
|
+
q3: 'Third quarter',
|
|
264
|
+
q4: 'Fourth quarter'
|
|
265
|
+
}
|
|
266
|
+
}
|
|
267
|
+
},
|
|
268
|
+
formDesign: {
|
|
269
|
+
widget: {
|
|
270
|
+
baseGroup: 'Base control',
|
|
271
|
+
layoutGroup: 'Layout control',
|
|
272
|
+
advancedGroup: 'Advanced control',
|
|
273
|
+
copyTitle: 'Copy_{0}',
|
|
274
|
+
component: {
|
|
275
|
+
input: 'Input',
|
|
276
|
+
textarea: 'Textarea',
|
|
277
|
+
select: 'Select',
|
|
278
|
+
row: 'One-row multi-column'
|
|
279
|
+
}
|
|
280
|
+
}
|
|
281
|
+
},
|
|
282
|
+
/**
|
|
283
|
+
* 扩展插件
|
|
284
|
+
*/
|
|
285
|
+
plugins: {
|
|
286
|
+
extendCellArea: {
|
|
287
|
+
area: {
|
|
288
|
+
mergeErr: 'The operation cannot be performed on merged cells',
|
|
289
|
+
multiErr: 'The operation cannot be performed on multiple selection areas',
|
|
290
|
+
extendErr: 'If the extended area contains merged cells, all merged cells need to be the same size',
|
|
291
|
+
pasteMultiErr: 'Cannot paste, copied area and pasted area of the same size are required to perform this operation',
|
|
292
|
+
cpInvalidErr: 'This operation cannot be performed because there are prohibited columns in the area you selected ({0})'
|
|
293
|
+
},
|
|
294
|
+
fnr: {
|
|
295
|
+
title: 'Find and replace',
|
|
296
|
+
findLabel: 'Find',
|
|
297
|
+
replaceLabel: 'Replace',
|
|
298
|
+
findTitle: 'What to find:',
|
|
299
|
+
replaceTitle: 'Replace with:',
|
|
300
|
+
tabs: {
|
|
301
|
+
find: 'Find',
|
|
302
|
+
replace: 'Replace'
|
|
303
|
+
},
|
|
304
|
+
filter: {
|
|
305
|
+
re: 'Regular Expression',
|
|
306
|
+
whole: 'Whole word',
|
|
307
|
+
sensitive: 'Case sensitive'
|
|
308
|
+
},
|
|
309
|
+
btns: {
|
|
310
|
+
findNext: 'Find next',
|
|
311
|
+
findAll: 'Find all',
|
|
312
|
+
replace: 'Replace',
|
|
313
|
+
replaceAll: 'Replace all',
|
|
314
|
+
cancel: 'Cancel'
|
|
315
|
+
},
|
|
316
|
+
header: {
|
|
317
|
+
seq: '#',
|
|
318
|
+
cell: 'Cell',
|
|
319
|
+
value: 'Value'
|
|
320
|
+
},
|
|
321
|
+
empty: '(Empty)',
|
|
322
|
+
reError: 'Invalid regular expression',
|
|
323
|
+
recordCount: 'Found {0} cells',
|
|
324
|
+
notCell: 'No matching cells were found',
|
|
325
|
+
replaceSuccess: 'Successfully replaced {0} cells'
|
|
326
|
+
}
|
|
327
|
+
},
|
|
328
|
+
filterComplexInput: {
|
|
329
|
+
menus: {
|
|
330
|
+
fixedColumn: 'Freeze column',
|
|
331
|
+
fixedGroup: 'Freeze group',
|
|
332
|
+
cancelFixed: 'Clear freeze',
|
|
333
|
+
fixedLeft: 'Freeze the left',
|
|
334
|
+
fixedRight: 'Freeze the right'
|
|
335
|
+
},
|
|
336
|
+
cases: {
|
|
337
|
+
equal: 'Equal',
|
|
338
|
+
gt: 'Greater than',
|
|
339
|
+
lt: 'Less than',
|
|
340
|
+
begin: 'Beginning is',
|
|
341
|
+
endin: 'End is',
|
|
342
|
+
include: 'Include',
|
|
343
|
+
isSensitive: 'Case sensitive'
|
|
344
|
+
}
|
|
345
|
+
},
|
|
346
|
+
filterCombination: {
|
|
347
|
+
menus: {
|
|
348
|
+
clearSort: 'Clear sort',
|
|
349
|
+
sortAsc: 'Ascending order',
|
|
350
|
+
sortDesc: 'Descending order',
|
|
351
|
+
fixedColumn: 'Freeze column',
|
|
352
|
+
fixedGroup: 'Freeze group',
|
|
353
|
+
cancelFixed: 'Clear freeze',
|
|
354
|
+
fixedLeft: 'Freeze the left',
|
|
355
|
+
fixedRight: 'Freeze the right',
|
|
356
|
+
clearFilter: 'Clear filter',
|
|
357
|
+
textOption: 'Text filter',
|
|
358
|
+
numberOption: 'Number filter'
|
|
359
|
+
},
|
|
360
|
+
popup: {
|
|
361
|
+
title: 'Custom filtering',
|
|
362
|
+
currColumnTitle: 'Current column:',
|
|
363
|
+
and: 'And',
|
|
364
|
+
or: 'Or',
|
|
365
|
+
describeHtml: 'Use ? To represent a single character <br/> use * to represent any number of characters'
|
|
366
|
+
},
|
|
367
|
+
cases: {
|
|
368
|
+
equal: 'Equal',
|
|
369
|
+
unequal: 'Not equal',
|
|
370
|
+
gt: 'Greater than',
|
|
371
|
+
ge: 'Greater than or equal',
|
|
372
|
+
lt: 'Less than',
|
|
373
|
+
le: 'Less than or equal',
|
|
374
|
+
begin: 'Beginning is',
|
|
375
|
+
notbegin: 'Beginning is not',
|
|
376
|
+
endin: 'End is',
|
|
377
|
+
notendin: 'End is not',
|
|
378
|
+
include: 'Include',
|
|
379
|
+
exclude: 'Exclusive',
|
|
380
|
+
between: 'Betweenness',
|
|
381
|
+
custom: 'Custom filter',
|
|
382
|
+
insensitive: 'Case insensitive',
|
|
383
|
+
isSensitive: 'Case sensitive'
|
|
384
|
+
},
|
|
385
|
+
empty: '(Empty)',
|
|
386
|
+
notData: 'No data'
|
|
387
|
+
}
|
|
388
|
+
},
|
|
389
|
+
/**
|
|
390
|
+
* 以下废弃
|
|
391
|
+
* @deprecated
|
|
392
|
+
*/
|
|
393
|
+
renderer: {
|
|
394
|
+
search: 'Search',
|
|
395
|
+
cases: {
|
|
396
|
+
equal: 'Equal',
|
|
397
|
+
unequal: 'Not equal',
|
|
398
|
+
gt: 'Greater than',
|
|
399
|
+
ge: 'Greater than or equal',
|
|
400
|
+
lt: 'Less than',
|
|
401
|
+
le: 'Less than or equal',
|
|
402
|
+
begin: 'Beginning is',
|
|
403
|
+
notbegin: 'Beginning is not',
|
|
404
|
+
endin: 'End is',
|
|
405
|
+
notendin: 'End is not',
|
|
406
|
+
include: 'Include',
|
|
407
|
+
exclude: 'Exclusive',
|
|
408
|
+
between: 'Betweenness',
|
|
409
|
+
custom: 'Custom filter',
|
|
410
|
+
insensitive: 'Case insensitive',
|
|
411
|
+
isSensitive: 'Case sensitive'
|
|
412
|
+
},
|
|
413
|
+
combination: {
|
|
414
|
+
menus: {
|
|
415
|
+
clearSort: 'Clear sort',
|
|
416
|
+
sortAsc: 'Ascending order',
|
|
417
|
+
sortDesc: 'Descending order',
|
|
418
|
+
fixedColumn: 'Fixed column',
|
|
419
|
+
fixedGroup: 'Fixed group',
|
|
420
|
+
cancelFixed: 'Clear fixed',
|
|
421
|
+
fixedLeft: 'Fixed the left',
|
|
422
|
+
fixedRight: 'Fixed the right',
|
|
423
|
+
clearFilter: 'Clear filter',
|
|
424
|
+
textOption: 'Text filter',
|
|
425
|
+
numberOption: 'Number filter'
|
|
426
|
+
},
|
|
427
|
+
popup: {
|
|
428
|
+
title: 'Custom filtering',
|
|
429
|
+
currColumnTitle: 'Current column:',
|
|
430
|
+
and: 'And',
|
|
431
|
+
or: 'Or',
|
|
432
|
+
describeHtml: 'Use ? To represent a single character <br/> use * to represent any number of characters'
|
|
433
|
+
},
|
|
434
|
+
empty: '(Empty)',
|
|
435
|
+
notData: 'No data'
|
|
436
|
+
}
|
|
437
|
+
},
|
|
438
|
+
pro: {
|
|
439
|
+
area: {
|
|
440
|
+
mergeErr: 'The operation cannot be performed on merged cells',
|
|
441
|
+
multiErr: 'The operation cannot be performed on multiple selection areas',
|
|
442
|
+
extendErr: 'If the extended area contains merged cells, all merged cells need to be the same size',
|
|
443
|
+
pasteMultiErr: 'Cannot paste, copied area and pasted area of the same size are required to perform this operation'
|
|
444
|
+
},
|
|
445
|
+
fnr: {
|
|
446
|
+
title: 'Find and replace',
|
|
447
|
+
findLabel: 'Find',
|
|
448
|
+
replaceLabel: 'Replace',
|
|
449
|
+
findTitle: 'What to find:',
|
|
450
|
+
replaceTitle: 'Replace with:',
|
|
451
|
+
tabs: {
|
|
452
|
+
find: 'Find',
|
|
453
|
+
replace: 'Replace'
|
|
454
|
+
},
|
|
455
|
+
filter: {
|
|
456
|
+
re: 'Regular Expression',
|
|
457
|
+
whole: 'Whole word',
|
|
458
|
+
sensitive: 'Case sensitive'
|
|
459
|
+
},
|
|
460
|
+
btns: {
|
|
461
|
+
findNext: 'Find next',
|
|
462
|
+
findAll: 'Find all',
|
|
463
|
+
replace: 'Replace',
|
|
464
|
+
replaceAll: 'Replace all',
|
|
465
|
+
cancel: 'Cancel'
|
|
466
|
+
},
|
|
467
|
+
header: {
|
|
468
|
+
seq: '#',
|
|
469
|
+
cell: 'Cell',
|
|
470
|
+
value: 'Value'
|
|
471
|
+
},
|
|
472
|
+
empty: '(Empty)',
|
|
473
|
+
reError: 'Invalid regular expression',
|
|
474
|
+
recordCount: 'Found {0} cells',
|
|
475
|
+
notCell: 'No matching cells were found',
|
|
476
|
+
replaceSuccess: 'Successfully replaced {0} cells'
|
|
477
|
+
}
|
|
478
|
+
}
|
|
479
|
+
}
|
|
480
|
+
};
|