Sha256: b039b4e66687bcbcc7dc0258eb730aeda62543bb6ea61c4a43bd39efd27ca6f6
Contents?: true
Size: 969 Bytes
Versions: 158
Compression:
Stored size: 969 Bytes
Contents
/** * Select2 Brazilian Portuguese translation */ (function ($) { "use strict"; $.fn.select2.locales['pt-BR'] = { formatNoMatches: function () { return "Nenhum resultado encontrado"; }, formatAjaxError: function () { return "Erro na busca"; }, formatInputTooShort: function (input, min) { var n = min - input.length; return "Digite " + (min == 1 ? "" : "mais") + " " + n + " caracter" + (n == 1? "" : "es"); }, formatInputTooLong: function (input, max) { var n = input.length - max; return "Apague " + n + " caracter" + (n == 1? "" : "es"); }, formatSelectionTooBig: function (limit) { return "Só é possível selecionar " + limit + " elemento" + (limit == 1 ? "" : "s"); }, formatLoadMore: function (pageNumber) { return "Carregando mais resultados…"; }, formatSearching: function () { return "Buscando…"; } }; $.extend($.fn.select2.defaults, $.fn.select2.locales['pt-BR']); })(jQuery);
Version data entries
158 entries across 158 versions & 4 rubygems