mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
45 lines
1.3 KiB
JavaScript
Executable file
45 lines
1.3 KiB
JavaScript
Executable file
/**
|
|
* Bootstrap Table Czech translation
|
|
* Author: Lukas Kral ([email protected])
|
|
* Author: Jakub Svestka <[email protected]>
|
|
*/
|
|
(function ($) {
|
|
'use strict';
|
|
|
|
$.fn.bootstrapTable.locales['cs-CZ'] = {
|
|
formatLoadingMessage: function () {
|
|
return 'Čekejte, prosím...';
|
|
},
|
|
formatRecordsPerPage: function (pageNumber) {
|
|
return pageNumber + ' položek na stránku';
|
|
},
|
|
formatShowingRows: function (pageFrom, pageTo, totalRows) {
|
|
return 'Zobrazena ' + pageFrom + '. - ' + pageTo + '. položka z celkových ' + totalRows;
|
|
},
|
|
formatSearch: function () {
|
|
return 'Vyhledávání';
|
|
},
|
|
formatNoMatches: function () {
|
|
return 'Nenalezena žádná vyhovující položka';
|
|
},
|
|
formatPaginationSwitch: function () {
|
|
return 'Skrýt/Zobrazit stránkování';
|
|
},
|
|
formatRefresh: function () {
|
|
return 'Aktualizovat';
|
|
},
|
|
formatToggle: function () {
|
|
return 'Přepni';
|
|
},
|
|
formatColumns: function () {
|
|
return 'Sloupce';
|
|
},
|
|
formatAllRows: function () {
|
|
return 'Vše';
|
|
}
|
|
};
|
|
|
|
$.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['cs-CZ']);
|
|
|
|
})(jQuery);
|