Skip to content

Commit 77467e4

Browse files
committed
Merge pull request #3380 from AlexBen/master
Added missed grouping translations for 'de'
2 parents 43f63ac + 4a7c767 commit 77467e4

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

src/features/resize-columns/js/ui-grid-column-resizer.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@
9696
if ( grid.api.colResizable ){
9797
grid.api.colResizable.raise.columnSizeChanged(colDef, deltaChange);
9898
} else {
99-
gridUtil.logError("The resizeable api is not registered, this may indicate that you've included the module but not added the 'ui-grid-column-resize' directive to your grid definition. Cannot raise any events.");
99+
gridUtil.logError("The resizeable api is not registered, this may indicate that you've included the module but not added the 'ui-grid-resize-columns' directive to your grid definition. Cannot raise any events.");
100100
}
101101
});
102102
},
@@ -552,4 +552,4 @@
552552
return resizer;
553553
}]);
554554

555-
})();
555+
})();

src/js/i18n/de.js

+10
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,16 @@
6565
pagination: {
6666
sizes: 'Einträge pro Seite',
6767
totalItems: 'Einträge'
68+
},
69+
grouping: {
70+
group: 'Gruppieren',
71+
ungroup: 'Gruppierung aufheben',
72+
aggregate_count: 'Agg: Anzahl',
73+
aggregate_sum: 'Agg: Summe',
74+
aggregate_max: 'Agg: Maximum',
75+
aggregate_min: 'Agg: Minimum',
76+
aggregate_avg: 'Agg: Mittelwert',
77+
aggregate_remove: 'Aggregation entfernen'
6878
}
6979
});
7080
return $delegate;

0 commit comments

Comments
 (0)