123456789101112131415 |
- /*!
- * Bootstrap-select v1.6.3 (http://silviomoreto.github.io/bootstrap-select/)
- *
- * Copyright 2013-2014 bootstrap-select
- * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE)
- */
- (function ($) {
- $.fn.selectpicker.defaults = {
- noneSelectedText: 'No hay selección',
- noneResultsText: 'No hay resultados',
- countSelectedText: 'Seleccionados {0} de {1}',
- maxOptionsText: ['Límite alcanzado ({n} {var} max)', 'Límite del grupo alcanzado({n} {var} max)', ['elementos', 'element']],
- multipleSeparator: ', '
- };
- }(jQuery));
|