5bd0f522
梁灏
fixed
|
1
|
import setLang from '../lang';
|
a5dad1af
梁灏
fixed #1090 & clo...
|
2
3
|
const lang = {
|
d33b5143
梁灏
support i18n
|
4
|
i: {
|
3d50db5b
Sergio Crisostomo
add datePanelLabe...
|
5
|
locale: 'zh-CN',
|
d33b5143
梁灏
support i18n
|
6
7
|
select: {
placeholder: '请选择',
|
01b54e30
梁灏
Select support re...
|
8
9
|
noMatch: '无匹配数据',
loading: '加载中'
|
4ab11811
梁灏
some component su...
|
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
},
table: {
noDataText: '暂无数据',
noFilteredDataText: '暂无筛选结果',
confirmFilter: '筛选',
resetFilter: '重置',
clearFilter: '全部'
},
datepicker: {
selectDate: '选择日期',
selectTime: '选择时间',
startTime: '开始时间',
endTime: '结束时间',
clear: '清空',
ok: '确定',
|
3d50db5b
Sergio Crisostomo
add datePanelLabe...
|
25
|
datePanelLabel: '[yyyy年] [m月]',
|
4ab11811
梁灏
some component su...
|
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
month: '月',
month1: '1 月',
month2: '2 月',
month3: '3 月',
month4: '4 月',
month5: '5 月',
month6: '6 月',
month7: '7 月',
month8: '8 月',
month9: '9 月',
month10: '10 月',
month11: '11 月',
month12: '12 月',
year: '年',
|
89303674
Sergio Crisostomo
add weekStartDay ...
|
40
|
weekStartDay: '0',
|
4ab11811
梁灏
some component su...
|
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
weeks: {
sun: '日',
mon: '一',
tue: '二',
wed: '三',
thu: '四',
fri: '五',
sat: '六'
},
months: {
m1: '1月',
m2: '2月',
m3: '3月',
m4: '4月',
m5: '5月',
m6: '6月',
m7: '7月',
m8: '8月',
m9: '9月',
m10: '10月',
m11: '11月',
m12: '12月'
}
|
012cbf28
梁灏
update locale
|
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
|
},
transfer: {
titles: {
source: '源列表',
target: '目的列表'
},
filterPlaceholder: '请输入搜索内容',
notFoundText: '列表为空'
},
modal: {
okText: '确定',
cancelText: '取消'
},
poptip: {
okText: '确定',
cancelText: '取消'
},
page: {
prev: '上一页',
next: '下一页',
total: '共',
item: '条',
items: '条',
prev5: '向前 5 页',
next5: '向后 5 页',
page: '条/页',
goto: '跳至',
p: '页'
|
e5ac7925
梁灏
update Rate
|
92
93
94
95
|
},
rate: {
star: '星',
stars: '星'
|
e81207a2
梁灏
update Tree
|
96
|
},
|
8cebd97f
kazuki watanabe
make Time Compone...
|
97
98
99
100
101
102
103
104
105
|
time: {
before: '前',
after: '后',
just: '刚刚',
seconds: '秒',
minutes: '分钟',
hours: '小时',
days: '天'
},
|
e81207a2
梁灏
update Tree
|
106
107
|
tree: {
emptyText: '暂无数据'
|
d33b5143
梁灏
support i18n
|
108
109
|
}
}
|
89303674
Sergio Crisostomo
add weekStartDay ...
|
110
|
};
|
a5dad1af
梁灏
fixed #1090 & clo...
|
111
|
|
5bd0f522
梁灏
fixed
|
112
|
setLang(lang);
|
a5dad1af
梁灏
fixed #1090 & clo...
|
113
114
|
export default lang;
|