| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- /**
- * Bootstrap Table Russian translation
- * Author: Dunaevsky Maxim <dunmaksim@yandex.ru>
- */
- $.fn.bootstrapTable.locales['ru-RU'] = {
- formatLoadingMessage () {
- return 'Пожалуйста, подождите, идёт загрузка'
- },
- formatRecordsPerPage (pageNumber) {
- return `${pageNumber} записей на страницу`
- },
- formatShowingRows (pageFrom, pageTo, totalRows, totalNotFiltered) {
- if (totalNotFiltered !== undefined && totalNotFiltered > 0 && totalNotFiltered > totalRows) {
- return `Записи с ${pageFrom} по ${pageTo} из ${totalRows} (filtered from ${totalNotFiltered} total rows)`
- }
- return `Записи с ${pageFrom} по ${pageTo} из ${totalRows}`
- },
- formatDetailPagination (totalRows) {
- return `Showing ${totalRows} rows`
- },
- formatSearch () {
- return 'Поиск'
- },
- formatNoMatches () {
- return 'Ничего не найдено'
- },
- formatPaginationSwitch () {
- return 'Hide/Show pagination'
- },
- formatRefresh () {
- return 'Обновить'
- },
- formatToggle () {
- return 'Переключить'
- },
- formatColumns () {
- return 'Колонки'
- },
- formatFullscreen () {
- return 'Fullscreen'
- },
- formatAllRows () {
- return 'All'
- },
- formatAutoRefresh () {
- return 'Auto Refresh'
- },
- formatExport () {
- return 'Export data'
- },
- formatClearFilters () {
- return 'Очистить фильтры'
- },
- formatJumpTo () {
- return 'GO'
- },
- formatAdvancedSearch () {
- return 'Advanced search'
- },
- formatAdvancedCloseButton () {
- return 'Close'
- }
- }
- $.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['ru-RU'])
|