12345678910111213 |
- /* Russian initialisation for the jQuery UI multiselect plugin. */
- /* Written by Artem Packhomov (gorblnu4@gmail.com). */
-
- (function ( $ ) {
-
- $.extend($.ech.multiselect.prototype.options, {
- checkAllText: 'Отметить все',
- uncheckAllText: 'Снять отметку со всех',
- noneSelectedText: 'Выберите из списка',
- selectedText: 'Выбрано #'
- });
-
- })( jQuery );
|