Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Russian language support #1402

Merged
merged 1 commit into from
Dec 6, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions extensions/nls/columnHider.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,6 @@ define({
},
es: true,
ro: true,
ru: true,
sl: true
});
1 change: 1 addition & 0 deletions extensions/nls/pagination.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ define({
ja: true,
pt: true,
ro: true,
ru: true,
sk: true,
sl: true,
th: true,
Expand Down
4 changes: 4 additions & 0 deletions extensions/nls/ru/columnHider.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
define({
popupTriggerLabel: 'Показать или скрыть столбцы',
popupLabel: 'Показать или скрыть столбцы'
});
13 changes: 13 additions & 0 deletions extensions/nls/ru/pagination.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
define({
status: '${start} - ${end} записей из ${total}',
gotoFirst: 'Перейти к первой странице',
gotoNext: 'Перейти к следующей странице',
gotoPrev: 'Перейти к предыдущей странице',
gotoLast: 'Перейти к последней странице',
gotoPage: 'Перейти к странице',
jumpPage: 'К странице',
rowsPerPage: 'Количество строк на странице',
notCompatibleWithOnDemand: 'Расширение Pagination несовместимо с dgrid/OnDemandList ' +
'и dgrid/OnDemandGrid. Используйте, пожалуйста, dgrid/List или dgrid/Grid в качестве базового класса.'

});