defaults-en_US.js 805 B

123456789101112131415161718192021222324
  1. /*
  2. * Translated default messages for bootstrap-select.
  3. * Locale: EN (English)
  4. * Region: US (United States)
  5. */
  6. (function ($) {
  7. $.fn.selectpicker.defaults = {
  8. noneSelectedText: 'Nothing selected',
  9. noneResultsText: 'No results match {0}',
  10. countSelectedText: function (numSelected, numTotal) {
  11. return (numSelected == 1) ? "{0} item selected" : "{0} items selected";
  12. },
  13. maxOptionsText: function (numAll, numGroup) {
  14. return [
  15. (numAll == 1) ? 'Limit reached ({n} item max)' : 'Limit reached ({n} items max)',
  16. (numGroup == 1) ? 'Group limit reached ({n} item max)' : 'Group limit reached ({n} items max)'
  17. ];
  18. },
  19. selectAllText: 'Select All',
  20. deselectAllText: 'Deselect All',
  21. multipleSeparator: ', '
  22. };
  23. })(jQuery);