1
2
3
4
5
6
7
8
9
10
11
12
13
14
| /*
| * Translated default messages for bootstrap-select.
| * Locale: DE (German, deutsch)
| * Region: DE (Germany, Deutschland)
| */
| (function ($) {
| $.fn.selectpicker.defaults = {
| noneSelectedText: 'Bitte wählen...',
| noneResultsText: 'Keine Ergebnisse für {0}',
| countSelectedText: '{0} von {1} ausgewählt',
| maxOptionsText: ['Limit erreicht ({n} {var} max.)', 'Gruppen-Limit erreicht ({n} {var} max.)', ['Eintrag', 'Einträge']],
| multipleSeparator: ', '
| };
| })(jQuery);
|
|