/usr/share/php/data/es.php is in php-http-upload 1.0.0b2-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | <?php
$errorCodes = array();
$errorCodes['es'] = array(
    'TOO_LARGE'             => "Fichero demasiado largo. El maximo permitido es: $maxsize bytes.",
    'MISSING_DIR'           => 'Falta directorio destino.',
    'IS_NOT_DIR'            => 'El directorio destino no existe o es un fichero regular.',
    'NO_WRITE_PERMS'        => 'El directorio destino no tiene permisos de escritura.',
    'NO_USER_FILE'          => 'No se ha escogido fichero para el upload.',
    'BAD_FORM'              => 'El formulario no contiene method="post" enctype="multipart/form-data" requerido.',
    'E_FAIL_COPY'           => 'Fallo al copiar el fichero temporal.',
    'E_FAIL_MOVE'           => 'No puedo mover el fichero.',
    'FILE_EXISTS'           => 'El fichero destino ya existe.',
    'CANNOT_OVERWRITE'      => 'El fichero destino ya existe y no se puede sobreescribir.',
    'NOT_ALLOWED_EXTENSION' => 'Extension de fichero no permitida.',
    'PARTIAL'               => 'El fichero fue parcialmente subido',
    'ERROR'                 => 'Error en subida:',
    'DEV_NO_DEF_FILE'       => 'No está definido en el formulario este nombre de fichero como <input type="file" name=?>.',
);
?>
 |