File tree 1 file changed +36
-1
lines changed
1 file changed +36
-1
lines changed Original file line number Diff line number Diff line change 2
2
angular . module ( 'ui.grid' ) . config ( [ '$provide' , function ( $provide ) {
3
3
$provide . decorator ( 'i18nService' , [ '$delegate' , function ( $delegate ) {
4
4
$delegate . add ( 'zh-cn' , {
5
+ headerCell : {
6
+ aria : {
7
+ defaultFilterLabel : '列过滤器' ,
8
+ removeFilter : '移除过滤器' ,
9
+ columnMenuButtonLabel : '列菜单'
10
+ } ,
11
+ priority : '优先级:' ,
12
+ filterLabel : "列过滤器: "
13
+ } ,
5
14
aggregate : {
6
15
label : '行'
7
16
} ,
25
34
sort : {
26
35
ascending : '升序' ,
27
36
descending : '降序' ,
37
+ none : '无序' ,
28
38
remove : '取消排序'
29
39
} ,
30
40
column : {
42
52
pinRight : '右侧固定' ,
43
53
unpin : '取消固定'
44
54
} ,
55
+ columnMenu : {
56
+ close : '关闭'
57
+ } ,
45
58
gridMenu : {
59
+ aria : {
60
+ buttonLabel : '表格菜单'
61
+ } ,
46
62
columns : '列:' ,
47
63
importerTitle : '导入文件' ,
48
64
exporterAllAsCsv : '导出全部数据到CSV' ,
61
77
jsonNotArray : '导入的文件不是JSON数组!'
62
78
} ,
63
79
pagination : {
80
+ aria : {
81
+ pageToFirst : '第一页' ,
82
+ pageBack : '上一页' ,
83
+ pageSelected : '当前页' ,
84
+ pageForward : '下一页' ,
85
+ pageToLast : '最后一页'
86
+ } ,
64
87
sizes : '行每页' ,
65
- totalItems : '行'
88
+ totalItems : '行' ,
89
+ through : '至' ,
90
+ of : '共'
91
+ } ,
92
+ grouping : {
93
+ group : '分组' ,
94
+ ungroup : '取消分组' ,
95
+ aggregate_count : '合计: 计数' ,
96
+ aggregate_sum : '合计: 求和' ,
97
+ aggregate_max : '合计: 最大' ,
98
+ aggregate_min : '合计: 最小' ,
99
+ aggregate_avg : '合计: 平均' ,
100
+ aggregate_remove : '合计: 移除'
66
101
}
67
102
} ) ;
68
103
return $delegate ;
You can’t perform that action at this time.
0 commit comments