translations updates for 2023.03

This commit is contained in:
Tobias Diekershoff 2023-04-09 07:58:49 +02:00
parent 91bb323a16
commit 1c677722b3
148 changed files with 1875 additions and 2233 deletions

View file

@ -3,14 +3,12 @@
if(! function_exists("string_plural_select_es")) {
function string_plural_select_es($n){
$n = intval($n);
return intval($n != 1);
if ($n == 1) { return 0; } else if ($n != 0 && $n % 1000000 == 0) { return 1; } else { return 2; }
}}
$a->strings['Upload a file'] = 'Subir un archivo';
$a->strings['Select files for upload'] = 'Seleciona archivos a subir';
$a->strings['Drop files here to upload'] = 'Soltar archivos aquí para subir';
$a->strings['Cancel'] = 'Cancelar';
$a->strings['Failed'] = 'Fallido';
$a->strings['No files were uploaded.'] = 'No se subió ningún archivo.';
$a->strings['Uploaded file is empty'] = 'El archivo subido está vacío';
$a->strings['Image exceeds size limit of '] = 'La imagen excede el tamaño de';
$a->strings['File has an invalid extension, it should be one of '] = 'El archivo tiene una extensión inválida, debería ser una de';
$a->strings['Upload was cancelled, or server error encountered'] = 'La subida fue cancelada, o el servidor tuvo un error';