No Description

defaults-de_DE.js 849B

1234567891011121314151617181920212223
  1. /*
  2. * Translated default messages for bootstrap-select.
  3. * Locale: DE (German, deutsch)
  4. * Region: DE (Germany, Deutschland)
  5. */
  6. (function ($) {
  7. $.fn.selectpicker.defaults = {
  8. noneSelectedText: 'Bitte wählen...',
  9. noneResultsText: 'Keine Ergebnisse für {0}',
  10. countSelectedText: function (numSelected, numTotal) {
  11. return (numSelected == 1) ? "{0} Element ausgewählt" : "{0} Elemente ausgewählt";
  12. },
  13. maxOptionsText: function (numAll, numGroup) {
  14. return [
  15. (numAll == 1) ? 'Limit erreicht ({n} Element max.)' : 'Limit erreicht ({n} Elemente max.)',
  16. (numGroup == 1) ? 'Gruppen-Limit erreicht ({n} Element max.)' : 'Gruppen-Limit erreicht ({n} Elemente max.)'
  17. ];
  18. },
  19. selectAllText: 'Alles auswählen',
  20. deselectAllText: 'Nichts auswählen',
  21. multipleSeparator: ', '
  22. };
  23. })(jQuery);