This file is indexed.

/usr/share/php/data/it.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
20
<?php
$errorCodes = array();
$errorCodes['it'] = array(
    'TOO_LARGE'             => "Il file &eacute; troppo grande. Il massimo permesso &eacute: $maxsize bytes.",
    'MISSING_DIR'           => 'Manca la directory di destinazione.',
    'IS_NOT_DIR'            => 'La directory di destinazione non esiste o &eacute; un file.',
    'NO_WRITE_PERMS'        => 'Non si hanno i permessi di scrittura sulla directory di destinazione.',
    'NO_USER_FILE'          => 'Nessun file selezionato per l\'upload.',
    'BAD_FORM'              => 'Il modulo HTML non contiene gli attributi richiesti: "'.
           ' method="post" enctype="multipart/form-data".',
    'E_FAIL_COPY'           => 'Copia del file temporaneo fallita.',
    'E_FAIL_MOVE'           => null,
    'FILE_EXISTS'           => 'File destinazione gi&agrave; esistente.',
    'CANNOT_OVERWRITE'      => 'File destinazione gi&agrave; esistente e non si pu&ograve; sovrascrivere.',
    'NOT_ALLOWED_EXTENSION' => 'Estensione del File non permessa.',
    'PARTIAL'               => null,
    'ERROR'                 => null,
    'DEV_NO_DEF_FILE'       => null,
);
?>