-
Notifications
You must be signed in to change notification settings - Fork 282
Expand file tree
/
Copy pathen-us.ts
More file actions
118 lines (118 loc) · 2.76 KB
/
Copy pathen-us.ts
File metadata and controls
118 lines (118 loc) · 2.76 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
export default {
pagination: {
totalItemText: 'Total',
goToText: 'Go to',
perPage: 'per page',
},
accordion: {
loading: 'loading',
noData: 'No Data',
},
autoCompleteDropdown: {
latestInput: 'Latest input',
},
cascaderList: {
noData: 'No data',
},
colorPicker: {
foundationPanel: 'Foundation panel',
advancedPanel: 'Advanced panel',
},
datePickerPro: {
ok: 'OK',
placeholder: 'select date',
month1: 'Jan',
month2: 'Feb',
month3: 'Mar',
month4: 'Apr',
month5: 'May',
month6: 'June',
month7: 'July',
month8: 'Aug',
month9: 'Sep',
month10: 'Oct',
month11: 'Nov',
month12: 'Dec',
year: '年',
startPlaceholder: 'select start date',
endPlaceholder: 'select end date',
getWeekDays(): Array<string> {
return ['Sun', 'Mon', 'Tue', 'Wed', 'Thur', 'Fri', 'Sat'];
},
getTimeArr(): Array<string> {
return ['Hr', 'Min', 'Sec'];
},
getYearMonthStr(year: number, month: number): string {
return `${year} - ${month}`;
},
},
editableSelect: {
noRelatedRecords: 'No related records found',
noData: 'No data',
},
input: {
placeholder: 'Please enter',
},
splitterBar: {
collapse: 'Collapse',
expand: 'Expand',
},
stepsGuide: {
previous: 'Previous',
continue: 'Continue',
ok: 'OK',
},
table: {
selectAll: 'Select all',
ok: 'OK',
},
dataGrid: {
selectAll: 'Select all',
ok: 'OK',
},
timePopup: {
ok: 'OK',
},
transfer: {
unit: '',
panelUnit: '',
headerUnit: '',
noData: 'No Data',
placeholder: 'Please enter keywords',
},
tree: {
loading: 'Loading',
newNode: 'New node',
selectPlaceholder: 'Please select',
},
upload: {
placeholder: 'select file',
getExistSameNameFilesMsg(sameNames: string): string {
return `Duplicate files exist : "${sameNames}" `;
},
getAllFilesBeyondMaximalFileSizeMsg(maximalSize: number): string {
return `Maximum file size (MB): ${maximalSize}. The selected files exceed the maximum value`;
},
getBeyondMaximalFileSizeMsg(filename: string, maximalSize: number): string {
return `Maximum file size (MB): ${maximalSize}. Files whose size exceeds the maximum value: ${filename}`;
},
getNotAllowedFileTypeMsg(filename: string, scope: string): string {
return `Files with unsupported types: ${filename}. Supported file types: ${scope}`;
},
},
search: {
placeholder: 'Enter a keyword',
},
select: {
placeholder: 'Please select',
noDataText: 'No data',
noMatchText: 'No related records found',
loadingText: 'Loading...',
},
tagInput: {
maxTagsText: 'Maximum number reached: ',
},
timeSelect: {
placeholder: 'Please select time',
},
};