Browse Source

Merge pull request #20 from wenzhixin/master

Update my repo
Dennis Hernández 10 years ago
parent
commit
211fafc05e
2 changed files with 18 additions and 2 deletions
  1. 1 1
      docs/_i18n/en/documentation/events.md
  2. 17 1
      src/locale/bootstrap-table-cs-CZ.js

+ 1 - 1
docs/_i18n/en/documentation/events.md

@@ -142,5 +142,5 @@
        <td>none</td>
        <td>Fires after the table header is rendered and availble in the DOM</td>
     </tr>
-	</tbody>
+    </tbody>
 </table>

+ 17 - 1
src/locale/bootstrap-table-cs-CZ.js

@@ -1,6 +1,7 @@
 /**
  * Bootstrap Table Czech translation
  * Author: Lukas Kral (monarcha@seznam.cz)
+ * Author: Jakub Svestka <svestka1999@gmail.com>
  */
 (function ($) {
     'use strict';
@@ -20,9 +21,24 @@
         },
         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);
+})(jQuery);