mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
38 lines
1.1 KiB
JavaScript
Executable file
38 lines
1.1 KiB
JavaScript
Executable file
/**
|
|
* Bootstrap Table Polish translation
|
|
* Author: zergu <michal.zagdan @ gmail com>
|
|
*/
|
|
(function ($) {
|
|
'use strict';
|
|
|
|
$.fn.bootstrapTable.locales['pl-PL'] = {
|
|
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';
|
|
}
|
|
};
|
|
|
|
$.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['pl-PL']);
|
|
|
|
})(jQuery);
|