summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/localization/jquery.jtable.es.js6
-rw-r--r--lib/localization/jquery.jtable.ru.js28
2 files changed, 31 insertions, 3 deletions
diff --git a/lib/localization/jquery.jtable.es.js b/lib/localization/jquery.jtable.es.js
index 8df61e8..258d27c 100644
--- a/lib/localization/jquery.jtable.es.js
+++ b/lib/localization/jquery.jtable.es.js
@@ -23,8 +23,8 @@
pagingInfo: 'Mostrando registros {0} a {1} de {2}',
canNotDeletedRecords: 'No se puede borrar registro(s) {0} de {1}!',
deleteProggress: 'Eliminando {0} de {1} registros, procesando...',
- pageSizeChangeLabel: 'Row count', //New. Must be localized.
- gotoPageLabel: 'Go to page' //New. Must be localized.
+ pageSizeChangeLabel: 'Registros por página',
+ gotoPageLabel: 'Ir a página'
});
-})(jQuery); \ No newline at end of file
+})(jQuery);
diff --git a/lib/localization/jquery.jtable.ru.js b/lib/localization/jquery.jtable.ru.js
new file mode 100644
index 0000000..2f38482
--- /dev/null
+++ b/lib/localization/jquery.jtable.ru.js
@@ -0,0 +1,28 @@
+/*
+ jTable localization file for 'Russian' language.
+ Author: Stanislav Reznikov
+*/
+(function ($) {
+
+ $.extend(true, $.hik.jtable.prototype.options.messages, {
+ serverCommunicationError: 'Ошибка связи с сервером.',
+ loadingMessage: 'Загрузка...',
+ noDataAvailable: 'Данные отсутствуют',
+ addNewRecord: '+ Добавить',
+ editRecord: 'Редактировать',
+ areYouSure: 'Вы уверены?',
+ deleteConfirmation: 'Пожалуйста, подтвердите удаление',
+ save: 'Сохранить',
+ saving: 'Сохранение',
+ cancel: 'Отмена',
+ deleteText: 'Удалить',
+ deleting: 'Удаление',
+ error: 'Ошибка',
+ close: 'Закрыть',
+ cannotLoadOptionsFor: 'Невозможно загрузить варианты для поля {0}',
+ pagingInfo: 'Записи с {0} по {1} из {2}',
+ canNotDeletedRecords: 'Невозможно удалить записи: {0} из {1}!',
+ deleteProggress: 'Удаление {0} из {1} записей...'
+ });
+
+})(jQuery); \ No newline at end of file