15 lines
491 B
JavaScript
15 lines
491 B
JavaScript
/*
|
|
* 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);
|