snipe-it/public/js/locale/bootstrap-table-uk-UA.js
2017-05-31 10:31:56 -07:00

38 lines
1.2 KiB
JavaScript
Executable file
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/**
* Bootstrap Table Ukrainian translation
* Author: Vitaliy Timchenko <[email protected]>
*/
(function ($) {
'use strict';
$.fn.bootstrapTable.locales['uk-UA'] = {
formatLoadingMessage: function () {
return 'Завантаження, будь ласка, зачекайте...';
},
formatRecordsPerPage: function (pageNumber) {
return pageNumber + ' записів на сторінку';
},
formatShowingRows: function (pageFrom, pageTo, totalRows) {
return 'Відображено з ' + pageFrom + ' по ' + pageTo + '. Загалом: ' + totalRows;
},
formatSearch: function () {
return 'Пошук';
},
formatNoMatches: function () {
return 'Не знайдено жодного запису';
},
formatRefresh: function () {
return 'Оновити';
},
formatToggle: function () {
return 'Змінити';
},
formatColumns: function () {
return 'Стовпці';
}
};
$.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['uk-UA']);
})(jQuery);