Skip to content

Commit

Permalink
feat(i18n): improve da translation
Browse files Browse the repository at this point in the history
Add sort translation. Improve aggregation.
  • Loading branch information
tokeryberg committed Oct 9, 2015
1 parent fe00489 commit 70fdf8d
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions src/js/i18n/da.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(function(){
(function(){
angular.module('ui.grid').config(['$provide', function($provide) {
$provide.decorator('i18nService', ['$delegate', function($delegate) {
$delegate.add('da', {
Expand All @@ -22,12 +22,18 @@
menu:{
text: 'Vælg kolonner:'
},
sort: {
ascending: 'Sorter stigende',
descending: 'Sorter faldende',
none: 'Sorter ingen',
remove: 'Fjern sortering'
},
column: {
hide: 'Skjul kolonne'
},
aggregation: {
count: 'samlede rækker: ',
sum: 'smalede: ',
count: 'antal rækker: ',
sum: 'sum: ',
avg: 'gns: ',
min: 'min: ',
max: 'max: '
Expand Down

0 comments on commit 70fdf8d

Please sign in to comment.