commiting uncommited changes on live site
[weblabels.fsf.org.git] / crm.fsf.org / 20131203 / files / sites / all / modules-old / civicrm / bower_components / select2 / select2_locale_pt-BR.js
1 /**
2 * Select2 Brazilian Portuguese translation
3 */
4 (function ($) {
5 "use strict";
6
7 $.fn.select2.locales['pt-BR'] = {
8 formatNoMatches: function () { return "Nenhum resultado encontrado"; },
9 formatAjaxError: function () { return "Erro na busca"; },
10 formatInputTooShort: function (input, min) { var n = min - input.length; return "Digite " + (min == 1 ? "" : "mais") + " " + n + " caracter" + (n == 1? "" : "es"); },
11 formatInputTooLong: function (input, max) { var n = input.length - max; return "Apague " + n + " caracter" + (n == 1? "" : "es"); },
12 formatSelectionTooBig: function (limit) { return "Só é possível selecionar " + limit + " elemento" + (limit == 1 ? "" : "s"); },
13 formatLoadMore: function (pageNumber) { return "Carregando mais resultados…"; },
14 formatSearching: function () { return "Buscando…"; }
15 };
16
17 $.extend($.fn.select2.defaults, $.fn.select2.locales['pt-BR']);
18 })(jQuery);