File tree 1 file changed +25
-1
lines changed
1 file changed +25
-1
lines changed Original file line number Diff line number Diff line change 5
5
angular . module ( 'ui.grid' ) . config ( [ '$provide' , function ( $provide ) {
6
6
$provide . decorator ( 'i18nService' , [ '$delegate' , function ( $delegate ) {
7
7
$delegate . add ( 'en' , {
8
+ headerCell : {
9
+ aria : {
10
+ defaultFilterLabel : 'Filter for column' ,
11
+ removeFilter : 'Remove Filter' ,
12
+ columnMenuButtonLabel : 'Column Menu'
13
+ } ,
14
+ priority : 'Priority:' ,
15
+ filterLabel : "Filter for column: "
16
+ } ,
8
17
aggregate : {
9
18
label : 'items'
10
19
} ,
28
37
sort : {
29
38
ascending : 'Sort Ascending' ,
30
39
descending : 'Sort Descending' ,
40
+ none : 'Sort None' ,
31
41
remove : 'Remove Sort'
32
42
} ,
33
43
column : {
41
51
max : 'max: '
42
52
} ,
43
53
pinning : {
44
- pinLeft : 'Pin Left' ,
54
+ pinLeft : 'Pin Left' ,
45
55
pinRight : 'Pin Right' ,
46
56
unpin : 'Unpin'
47
57
} ,
58
+ columnMenu : {
59
+ close : 'Close'
60
+ } ,
48
61
gridMenu : {
62
+ aria : {
63
+ buttonLabel : 'Grid Menu'
64
+ } ,
49
65
columns : 'Columns:' ,
50
66
importerTitle : 'Import file' ,
51
67
exporterAllAsCsv : 'Export all data as csv' ,
63
79
jsonNotArray : 'Imported json file must contain an array, aborting.'
64
80
} ,
65
81
pagination : {
82
+ aria : {
83
+ pageToFirst : 'Page to first' ,
84
+ pageBack : 'Page back' ,
85
+ pageSelected : 'Selected page' ,
86
+ pageForward : 'Page forward' ,
87
+ pageToLast : 'Page to last'
88
+ } ,
66
89
sizes : 'items per page' ,
67
90
totalItems : 'items' ,
91
+ through : 'through' ,
68
92
of : 'of'
69
93
} ,
70
94
grouping : {
You can’t perform that action at this time.
0 commit comments