select2_locale_pt-PT.js 823 B

123456789101112131415
  1. /**
  2. * Select2 Portuguese (Portugal) translation
  3. */
  4. (function ($) {
  5. "use strict";
  6. $.extend($.fn.select2.defaults, {
  7. formatNoMatches: function () { return "Nenhum resultado encontrado"; },
  8. formatInputTooShort: function (input, min) { var n = min - input.length; return "Introduza " + n + " car" + (n == 1 ? "ácter" : "acteres"); },
  9. formatInputTooLong: function (input, max) { var n = input.length - max; return "Apague " + n + " car" + (n == 1 ? "ácter" : "acteres"); },
  10. formatSelectionTooBig: function (limit) { return "Só é possível selecionar " + limit + " elemento" + (limit == 1 ? "" : "s"); },
  11. formatLoadMore: function (pageNumber) { return "A carregar mais resultados..."; },
  12. formatSearching: function () { return "A pesquisar..."; }
  13. });
  14. })(jQuery);