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

40 lines
1.3 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 Russian translation
* Author: Dunaevsky Maxim <[email protected]>
*/
(function ($) {
'use strict';
$.fn.bootstrapTable.locales['ru-RU'] = {
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 'Колонки';
},
formatClearFilters: function () {
return 'Очистить фильтры';
}
};
$.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['ru-RU']);
})(jQuery);