aboutsummaryrefslogtreecommitdiffstats
path: root/web/js/select2/select2_locale_hu.js
diff options
context:
space:
mode:
Diffstat (limited to 'web/js/select2/select2_locale_hu.js')
-rw-r--r--web/js/select2/select2_locale_hu.js15
1 files changed, 0 insertions, 15 deletions
diff --git a/web/js/select2/select2_locale_hu.js b/web/js/select2/select2_locale_hu.js
deleted file mode 100644
index 572dea96d..000000000
--- a/web/js/select2/select2_locale_hu.js
+++ /dev/null
@@ -1,15 +0,0 @@
-/**
- * Select2 Hungarian translation
- */
-(function ($) {
- "use strict";
-
- $.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."; },
- formatSelectionTooBig: function (limit) { return "Csak " + limit + " elemet lehet kiválasztani."; },
- formatLoadMore: function (pageNumber) { return "Töltés..."; },
- formatSearching: function () { return "Keresés..."; }
- });
-})(jQuery);