Skip to content

Commit 4ff6048

Browse files
author
Eric Hynds
committed
Merge pull request #325 from apahomov/master
Added Russian i18n
2 parents f61cd9f + 9c2da7a commit 4ff6048

File tree

2 files changed

+24
-0
lines changed

2 files changed

+24
-0
lines changed

i18n/jquery.multiselect.filter.ru.js

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
/* Russian initialisation for the jQuery UI multiselect plugin. */
2+
/* Written by Artem Packhomov ([email protected]). */
3+
4+
(function ( $ ) {
5+
6+
$.extend($.ech.multiselectfilter.prototype.options, {
7+
label: "Фильтр:",
8+
placeholder: "Введите запрос"
9+
});
10+
11+
})( jQuery );

i18n/jquery.multiselect.ru.js

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
/* Russian initialisation for the jQuery UI multiselect plugin. */
2+
/* Written by Artem Packhomov ([email protected]). */
3+
4+
(function ( $ ) {
5+
6+
$.extend($.ech.multiselect.prototype.options, {
7+
checkAllText: 'Отметить все',
8+
uncheckAllText: 'Снять отметку со всех',
9+
noneSelectedText: 'Выберите из списка',
10+
selectedText: 'Выбрано #'
11+
});
12+
13+
})( jQuery );

0 commit comments

Comments
 (0)