ajout app
This commit is contained in:
44
SNIPE-IT/public/js/locale/bootstrap-table-cs-CZ.js
vendored
Normal file
44
SNIPE-IT/public/js/locale/bootstrap-table-cs-CZ.js
vendored
Normal file
@ -0,0 +1,44 @@
|
||||
/**
|
||||
* Bootstrap Table Czech translation
|
||||
* Author: Lukas Kral (monarcha@seznam.cz)
|
||||
* Author: Jakub Svestka <svestka1999@gmail.com>
|
||||
*/
|
||||
(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);
|
Reference in New Issue
Block a user