1
2
3
4
5
6
7
8
9
10
11
12
13
14
| /*
| * Translated default messages for bootstrap-select.
| * Locale: ES (Spanish)
| * Region: CL (Chile)
| */
| (function ($) {
| $.fn.selectpicker.defaults = {
| noneSelectedText: 'No hay selección',
| noneResultsText: 'No hay resultados {0}',
| countSelectedText: 'Seleccionados {0} de {1}',
| maxOptionsText: ['Límite alcanzado ({n} {var} max)', 'Límite del grupo alcanzado({n} {var} max)', ['elementos', 'element']],
| multipleSeparator: ', '
| };
| })(jQuery);
|
|