defaults-en_US.js 916 B

1234567891011121314151617181920212223242526
  1. /*!
  2. * Bootstrap-select v1.6.3 (http://silviomoreto.github.io/bootstrap-select/)
  3. *
  4. * Copyright 2013-2014 bootstrap-select
  5. * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE)
  6. */
  7. (function ($) {
  8. $.fn.selectpicker.defaults = {
  9. noneSelectedText: 'Nothing selected',
  10. noneResultsText: 'No results match',
  11. countSelectedText: function (numSelected, numTotal) {
  12. return (numSelected == 1) ? "{0} item selected" : "{0} items selected";
  13. },
  14. maxOptionsText: function (numAll, numGroup) {
  15. var arr = [];
  16. arr[0] = (numAll == 1) ? 'Limit reached ({n} item max)' : 'Limit reached ({n} items max)';
  17. arr[1] = (numGroup == 1) ? 'Group limit reached ({n} item max)' : 'Group limit reached ({n} items max)';
  18. return arr;
  19. },
  20. selectAllText: 'Select All',
  21. deselectAllText: 'Deselect All',
  22. multipleSeparator: ', '
  23. };
  24. }(jQuery));