forked from angular-ui/ui-grid
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request angular-ui#1529 from scholtz/patch-1
slovak translation
- Loading branch information
Showing
1 changed file
with
37 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
}]); | ||
}]); | ||
})(); |