Sha256: efd1b474619ef2a2f48bd4656021bcb5cd8b7fdc362ab4022f3066350d6facef
Contents?: true
Size: 886 Bytes
Versions: 246
Compression:
Stored size: 886 Bytes
Contents
/** * Select2 Estonian translation. * * Author: Kuldar Kalvik <kuldar@kalvik.ee> */ (function ($) { "use strict"; $.fn.select2.locales['et'] = { formatNoMatches: function () { return "Tulemused puuduvad"; }, formatInputTooShort: function (input, min) { var n = min - input.length; return "Sisesta " + n + " täht" + (n == 1 ? "" : "e") + " rohkem"; }, formatInputTooLong: function (input, max) { var n = input.length - max; return "Sisesta " + n + " täht" + (n == 1? "" : "e") + " vähem"; }, formatSelectionTooBig: function (limit) { return "Saad vaid " + limit + " tulemus" + (limit == 1 ? "e" : "t") + " valida"; }, formatLoadMore: function (pageNumber) { return "Laen tulemusi.."; }, formatSearching: function () { return "Otsin.."; } }; $.extend($.fn.select2.defaults, $.fn.select2.locales['et']); })(jQuery);
Version data entries
246 entries across 246 versions & 6 rubygems