Project

General

Profile

1
/**
2
 * Select2 Portuguese (Portugal) translation
3
 */
4
(function ($) {
5
    "use strict";
6

    
7
    $.fn.select2.locales['pt-PT'] = {
8
        formatNoMatches: function () { return "Nenhum resultado encontrado"; },
9
        formatInputTooShort: function (input, min) { var n = min - input.length; return "Introduza " + n + " car" + (n == 1 ? "ácter" : "acteres"); },
10
        formatInputTooLong: function (input, max) { var n = input.length - max; return "Apague " + n + " car" + (n == 1 ? "ácter" : "acteres"); },
11
        formatSelectionTooBig: function (limit) { return "Só é possível selecionar " + limit + " elemento" + (limit == 1 ? "" : "s"); },
12
        formatLoadMore: function (pageNumber) { return "A carregar mais resultados…"; },
13
        formatSearching: function () { return "A pesquisar…"; }
14
    };
15

    
16
    $.extend($.fn.select2.defaults, $.fn.select2.locales['pt-PT']);
17
})(jQuery);
(49-49/62)