1
0
mirror of synced 2025-02-09 16:49:24 +03:00

Pluralize 'items' in formatSelectionTooBig

This commit is contained in:
Gavin Wahl 2012-09-04 16:22:58 -06:00
parent 222fa7e415
commit 1b2765fced

View File

@ -2348,7 +2348,7 @@
formatResultCssClass: function(data) {return undefined;},
formatNoMatches: function () { return "No matches found"; },
formatInputTooShort: function (input, min) { return "Please enter " + (min - input.length) + " more characters"; },
formatSelectionTooBig: function (limit) { return "You can only select " + limit + " items"; },
formatSelectionTooBig: function (limit) { return "You can only select " + limit + " item" + (limit == 1 ? "" : "s"); },
formatLoadMore: function (pageNumber) { return "Loading more results..."; },
formatSearching: function () { return "Searching..."; },
minimumResultsForSearch: 0,