We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 222fa7e commit 1b2765fCopy full SHA for 1b2765f
1 file changed
select2.js
@@ -2348,7 +2348,7 @@
2348
formatResultCssClass: function(data) {return undefined;},
2349
formatNoMatches: function () { return "No matches found"; },
2350
formatInputTooShort: function (input, min) { return "Please enter " + (min - input.length) + " more characters"; },
2351
- formatSelectionTooBig: function (limit) { return "You can only select " + limit + " items"; },
+ formatSelectionTooBig: function (limit) { return "You can only select " + limit + " item" + (limit == 1 ? "" : "s"); },
2352
formatLoadMore: function (pageNumber) { return "Loading more results..."; },
2353
formatSearching: function () { return "Searching..."; },
2354
minimumResultsForSearch: 0,
0 commit comments