mirror of
https://github.com/cwinfo/powerdns-admin.git
synced 2024-11-10 15:40:28 +00:00
18 lines
891 B
JavaScript
18 lines
891 B
JavaScript
|
/**
|
||
|
* Select2 Portuguese (Portugal) translation
|
||
|
*/
|
||
|
(function ($) {
|
||
|
"use strict";
|
||
|
|
||
|
$.fn.select2.locales['pt-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-PT']);
|
||
|
})(jQuery);
|