Browse Source

Create bootstrap-table-pl-PL.js

Added polish translation
Michał Zagdan 11 years ago
parent
commit
ce7b536eab
1 changed files with 34 additions and 0 deletions
  1. 34 0
      src/locale/bootstrap-table-pl-PL.js

+ 34 - 0
src/locale/bootstrap-table-pl-PL.js

@@ -0,0 +1,34 @@
+/**
+ * Bootstrap Table Polish translation
+ * Author: zergu <michal.zagdan @ gmail com>
+ */
+(function ($) {
+    'use strict';
+
+    $.extend($.fn.bootstrapTable.defaults, {
+        formatLoadingMessage: function () {
+            return 'Ładowanie, proszę czekać…';
+        },
+        formatRecordsPerPage: function (pageNumber) {
+            return pageNumber + ' rekordów na stronę';
+        },
+        formatShowingRows: function (pageFrom, pageTo, totalRows) {
+            return 'Wyświetlanie rekordów od ' + pageFrom + ' do ' + pageTo + ' z ' + totalRows;
+        },
+        formatSearch: function () {
+            return 'Szukaj';
+        },
+        formatNoMatches: function () {
+            return 'Niestety, nic nie znaleziono';
+        },
+        formatRefresh: function () {
+            return 'Odśwież';
+        },
+        formatToggle: function () {
+            return 'Przełącz';
+        },
+        formatColumns: function () {
+            return 'Kolumny';
+        }
+    });
+})(jQuery);