This file is indexed.

/usr/share/php/data/sv.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['sv'] = array(
    'TOO_LARGE'             => 'Filen &auml;r f&ouml;r stor. St&ouml;rsta till&aring;tna filstorlek &auml;r: $maxsize bytes.',
    'MISSING_DIR'           => 'Saknar destinationskatalog.',
    'IS_NOT_DIR'            => 'Destinationskatalogen existerar inte, eller &auml;r en vanlig fil.',
    'NO_WRITE_PERMS'        => 'Destinationskatalogen har inte skrivr&auml;ttigheter.',
    'NO_USER_FILE'          => 'Du har inte valt n&aring;gon fil att ladda upp.',
    'BAD_FORM'              => 'HTML-formul&auml;ret inneh&aring;ller inte de attribut som kr&auml;vs: '.
        ' method="post" enctype="multipart/form-data"',
    'E_FAIL_COPY'           => 'Misslyckades med att kopiera den tempor&auml;ra filen.',
    'E_FAIL_MOVE'           => 'Misslyckades med att flytta den tempor&auml;ra filen.',
    'FILE_EXISTS'           => 'Destinationsfilen existerar redan.',
    'CANNOT_OVERWRITE'      => 'Destinationsfilen existerar redan och kunde inte skrivas &ouml;ver.',
    'NOT_ALLOWED_EXTENSION' => 'Ej till&aring;ten fil&auml;ndelse.',
    'PARTIAL'               => 'Filen blev endast delvis uppladdad.',
    'ERROR'                 => 'Fel vid upladdning:',
    'DEV_NO_DEF_FILE'       => 'Detta filnamn &auml;r inte definierat i formul&auml;ret som &lt;input type="file" name=?&gt;.',
);
?>