Sha256: aa92cbfb66838c2dbca313b85f672b8905b8cddb22dd7125a61f0fe243503f3c
Contents?: true
Size: 885 Bytes
Versions: 62
Compression:
Stored size: 885 Bytes
Contents
/** * Select2 Portuguese (Portugal) translation */ (function ($) { "use strict"; $.fn.select2.locales['pt'] = { formatNoMatches: function () { return "Nenhum resultado encontrado"; }, formatInputTooShort: function (input, min) { var n = min - input.length; return "Introduza " + n + " car" + (n == 1 ? "ácter" : "acteres"); }, formatInputTooLong: function (input, max) { var n = input.length - max; return "Apague " + n + " car" + (n == 1 ? "ácter" : "acteres"); }, formatSelectionTooBig: function (limit) { return "Só é possível selecionar " + limit + " elemento" + (limit == 1 ? "" : "s"); }, formatLoadMore: function (pageNumber) { return "A carregar mais resultados…"; }, formatSearching: function () { return "A pesquisar…"; } }; $.extend($.fn.select2.defaults, $.fn.select2.locales['pt']); })(jQuery);
Version data entries
62 entries across 62 versions & 1 rubygems