Skip to content

Commit

Permalink
Merge pull request angular-ui#1529 from scholtz/patch-1
Browse files Browse the repository at this point in the history
slovak translation
  • Loading branch information
swalters committed Sep 16, 2014
2 parents 0dd528e + 3700b4a commit 3aaaf50
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions src/js/i18n/sk.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
/**
* Created by L007 on 2/1/14.
*/
(function () {
angular.module('ui.grid').config(['$provide', function($provide) {
$provide.decorator('i18nService', ['$delegate', function($delegate) {
$delegate.add('sk', {
aggregate: {
label: 'items'
},
groupPanel: {
description: 'Pretiahni sem názov stĺpca pre zoskupenie podľa toho stĺpca.'
},
search: {
placeholder: 'Hľadaj...',
showingItems: 'Zobrazujem položky:',
selectedItems: 'Vybraté položky:',
totalItems: 'Počet položiek:',
size: 'Počet:',
first: 'Prvá strana',
next: 'Ďalšia strana',
previous: 'Predchádzajúca strana',
last: 'Posledná strana'
},
menu: {
text: 'Vyberte stĺpce:'
},
sort: {
ascending: 'Zotriediť vzostupne',
descending: 'Zotriediť zostupne',
remove: 'Vymazať triedenie'
}
});
return $delegate;
}]);
}]);
})();

0 comments on commit 3aaaf50

Please sign in to comment.