|
@@ -1,6 +1,7 @@
|
|
|
/**
|
|
/**
|
|
|
* Bootstrap Table Czech translation
|
|
* Bootstrap Table Czech translation
|
|
|
* Author: Lukas Kral (monarcha@seznam.cz)
|
|
* Author: Lukas Kral (monarcha@seznam.cz)
|
|
|
|
|
+ * Author: Jakub Svestka <svestka1999@gmail.com>
|
|
|
*/
|
|
*/
|
|
|
(function ($) {
|
|
(function ($) {
|
|
|
'use strict';
|
|
'use strict';
|
|
@@ -20,9 +21,24 @@
|
|
|
},
|
|
},
|
|
|
formatNoMatches: function () {
|
|
formatNoMatches: function () {
|
|
|
return 'Nenalezena žádná vyhovující položka';
|
|
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']);
|
|
$.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['cs-CZ']);
|
|
|
|
|
|
|
|
-})(jQuery);
|
|
|
|
|
|
|
+})(jQuery);
|