From b3d2d25ca2e5b94a0e5ef9c5b3f4669dfec05283 Mon Sep 17 00:00:00 2001 From: PeterMozesMerl Date: Thu, 6 Feb 2014 23:59:54 +0100 Subject: [PATCH] Update select2_locale_hu.js Language: "karakter". Grammar: missing comma. --- select2_locale_hu.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/select2_locale_hu.js b/select2_locale_hu.js index 1acfc5f8..a8c30881 100644 --- a/select2_locale_hu.js +++ b/select2_locale_hu.js @@ -7,7 +7,7 @@ $.extend($.fn.select2.defaults, { formatNoMatches: function () { return "Nincs találat."; }, formatInputTooShort: function (input, min) { var n = min - input.length; return "Túl rövid. Még " + n + " karakter hiányzik."; }, - formatInputTooLong: function (input, max) { var n = input.length - max; return "Túl hosszú. " + n + " kerekterrel több mint kellene."; }, + formatInputTooLong: function (input, max) { var n = input.length - max; return "Túl hosszú. " + n + " karakterrel több, mint kellene."; }, formatSelectionTooBig: function (limit) { return "Csak " + limit + " elemet lehet kiválasztani."; }, formatLoadMore: function (pageNumber) { return "Töltés…"; }, formatSearching: function () { return "Keresés…"; }