From b0ffea89a69b9a914574417dd306996ac8ecc973 Mon Sep 17 00:00:00 2001 From: execjosh Date: Mon, 20 May 2013 23:00:54 +0900 Subject: [PATCH] Sync translation template with source This change syncs the translation template with the actual string used for `$.fn.select2.defaults.formatInputTooLong`. The source was changed by 5193dc40b95c0b11f09aad64f08634ae0c3efea6. --- select2_locale_en.js.template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/select2_locale_en.js.template b/select2_locale_en.js.template index 260c6c41..f76b3749 100644 --- a/select2_locale_en.js.template +++ b/select2_locale_en.js.template @@ -9,7 +9,7 @@ $.extend($.fn.select2.defaults, { formatNoMatches: function () { return "No matches found"; }, formatInputTooShort: function (input, min) { var n = min - input.length; return "Please enter " + n + " more character" + (n == 1 ? "" : "s"); }, - formatInputTooLong: function (input, max) { var n = input.length - max; return "Please enter " + n + " less character" + (n == 1? "" : "s"); }, + formatInputTooLong: function (input, max) { var n = input.length - max; return "Please delete " + n + " character" + (n == 1 ? "" : "s"); }, formatSelectionTooBig: function (limit) { return "You can only select " + limit + " item" + (limit == 1 ? "" : "s"); }, formatLoadMore: function (pageNumber) { return "Loading more results..."; }, formatSearching: function () { return "Searching..."; }