1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| /*
| * Translated default messages for bootstrap-select.
| * Locale: IT (Italian; italiano)
| * Region: IT (Italy; Italia)
| * Author: Michele Beltrame <mb@cattlegrid.info>
| */
| (function ($) {
| $.fn.selectpicker.defaults = {
| noneSelectedText: 'Nessuna selezione',
| noneResultsText: 'Nessun risultato per {0}',
| countSelectedText: 'Selezionati {0} di {1}',
| maxOptionsText: ['Limite raggiunto ({n} {var} max)', 'Limite del gruppo raggiunto ({n} {var} max)', ['elementi', 'elemento']],
| multipleSeparator: ', '
| };
| })(jQuery);
|
|