2016-11-18 06:57:19 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
if(! function_exists("string_plural_select_es")) {
|
|
|
|
function string_plural_select_es($n){
|
2021-02-01 17:47:38 +00:00
|
|
|
$n = intval($n);
|
2023-04-09 05:58:49 +00:00
|
|
|
if ($n == 1) { return 0; } else if ($n != 0 && $n % 1000000 == 0) { return 1; } else { return 2; }
|
2016-11-18 06:57:19 +00:00
|
|
|
}}
|
2023-04-09 05:58:49 +00:00
|
|
|
$a->strings['Select files for upload'] = 'Seleciona archivos a subir';
|
2021-10-10 06:27:53 +00:00
|
|
|
$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['Upload was cancelled, or server error encountered'] = 'La subida fue cancelada, o el servidor tuvo un error';
|