1
0
mirror of synced 2024-11-25 06:16:08 +03:00

Update Galician translation

This commit is contained in:
Leandro Regueiro 2016-08-23 19:11:39 +02:00 committed by Kevin Brown
parent 8e6422c570
commit 8fcc6202c3

View File

@ -1,45 +1,33 @@
define(function () {
// Galician
return {
errorLoading: function () {
return 'Non foi posíbel cargar os resultados.';
},
inputTooLong: function (args) {
var overChars = args.input.length - args.maximum;
var message = 'Elimine ';
if (overChars === 1) {
message += 'un carácter';
} else {
message += overChars + ' caracteres';
return 'Elimine un carácter';
}
return message;
return 'Elimine ' + overChars + ' caracteres';
},
inputTooShort: function (args) {
var remainingChars = args.minimum - args.input.length;
var message = 'Engada ';
if (remainingChars === 1) {
message += 'un carácter';
} else {
message += remainingChars + ' caracteres';
return 'Engada un carácter';
}
return message;
return 'Engada ' + remainingChars + ' caracteres';
},
loadingMore: function () {
return 'Cargando máis resultados…';
},
maximumSelected: function (args) {
var message = 'Só pode ';
if (args.maximum === 1) {
message += 'un elemento';
} else {
message += args.maximum + ' elementos';
return 'Só pode seleccionar un elemento';
}
return message;
return 'Só pode seleccionar ' + args.maximum + ' elementos';
},
noResults: function () {
return 'Non se atoparon resultados';
@ -48,4 +36,4 @@ define(function () {
return 'Buscando…';
}
};
});
});