12345678910111213 |
- /* Spanish initialisation for the jQuery UI multiselect plugin. */
- /* Written by Vinius Fontoura Correa(vinusfc@gmail.com). */
-
- (function ( $ ) {
-
- $.extend($.ech.multiselect.prototype.options, {
- checkAllText: 'Marca todas',
- uncheckAllText: 'Desmarque todas',
- noneSelectedText: 'Seleccione las opciones',
- selectedText: '# seleccionado'
- });
-
- })( jQuery );
|