Create pt.js
European Portuguese Translation
This commit is contained in:
parent
8572299a2e
commit
86c23c0f5c
1
dist/js/i18n/pt.js
vendored
Normal file
1
dist/js/i18n/pt.js
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
(function(){if(window.define)var e=window.define;if(window.require)var t=window.require;if(window.jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd.define,t=jQuery.fn.select2.amd.require;e("select2/i18n/pt",[],function(){return{errorLoading:function(){return"Os resultados não puderam ser carregados."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Por favor apague "+t+" ";return n+=t!=1?"caracteres":"carácter",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Introduza "+t+" ou mais caracteres";return n},loadingMore:function(){return"A carregar mais resultados…"},maximumSelected:function(e){var t="Apenas pode seleccionar "+e.maximum+" ";return t+=e.maximum!=1?"itens":"item",t},noResults:function(){return"Sem resultados"},searching:function(){return"A procurar…"}}}),t("jquery.select2"),jQuery.fn.select2.amd={define:e,require:t}})();
|
40
src/js/select2/i18n/pt.js
vendored
Normal file
40
src/js/select2/i18n/pt.js
vendored
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
define(function () {
|
||||||
|
// European Portuguese
|
||||||
|
return {
|
||||||
|
errorLoading: function () {
|
||||||
|
return 'Os resultados não puderam ser carregados.';
|
||||||
|
},
|
||||||
|
inputTooLong: function (args) {
|
||||||
|
var overChars = args.input.length - args.maximum;
|
||||||
|
|
||||||
|
var message = 'Por favor apague ' + overChars + ' ';
|
||||||
|
|
||||||
|
message += overChars != 1 ? 'caracteres' : 'carácter';
|
||||||
|
|
||||||
|
return message;
|
||||||
|
},
|
||||||
|
inputTooShort: function (args) {
|
||||||
|
var remainingChars = args.minimum - args.input.length;
|
||||||
|
|
||||||
|
var message = 'Introduza ' + remainingChars + ' ou mais caracteres';
|
||||||
|
|
||||||
|
return message;
|
||||||
|
},
|
||||||
|
loadingMore: function () {
|
||||||
|
return 'A carregar mais resultados…';
|
||||||
|
},
|
||||||
|
maximumSelected: function (args) {
|
||||||
|
var message = 'Apenas pode seleccionar ' + args.maximum + ' ';
|
||||||
|
|
||||||
|
message += args.maximum != 1 ? 'itens' : 'item';
|
||||||
|
|
||||||
|
return message;
|
||||||
|
},
|
||||||
|
noResults: function () {
|
||||||
|
return 'Sem resultados';
|
||||||
|
},
|
||||||
|
searching: function () {
|
||||||
|
return 'A procurar…';
|
||||||
|
}
|
||||||
|
};
|
||||||
|
});
|
Loading…
Reference in New Issue
Block a user