Skip to content

Commit 5193dc4

Browse files
author
Jens Rantil
committed
Fixing grammar
I find it hard to "type" less characters. It's sort of unintuitive.
1 parent 759fb43 commit 5193dc4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

select2.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2695,7 +2695,7 @@ the specific language governing permissions and limitations under the Apache Lic
26952695
formatResultCssClass: function(data) {return undefined;},
26962696
formatNoMatches: function () { return "No matches found"; },
26972697
formatInputTooShort: function (input, min) { var n = min - input.length; return "Please enter " + n + " more character" + (n == 1? "" : "s"); },
2698-
formatInputTooLong: function (input, max) { var n = input.length - max; return "Please enter " + n + " less character" + (n == 1? "" : "s"); },
2698+
formatInputTooLong: function (input, max) { var n = input.length - max; return "Please delete " + n + " character" + (n == 1? "" : "s"); },
26992699
formatSelectionTooBig: function (limit) { return "You can only select " + limit + " item" + (limit == 1 ? "" : "s"); },
27002700
formatLoadMore: function (pageNumber) { return "Loading more results..."; },
27012701
formatSearching: function () { return "Searching..."; },

0 commit comments

Comments
 (0)