]> git.p6c8.net - jirafeau_mojo42.git/commitdiff
[TASK] set a translation string id for each element
authorJerome Jutteau <j.jutteau@gmail.com>
Thu, 8 Feb 2018 22:16:23 +0000 (23:16 +0100)
committerJerome Jutteau <j.jutteau@gmail.com>
Fri, 16 Feb 2018 17:18:59 +0000 (18:18 +0100)
closes #158

Signed-off-by: Jerome Jutteau <j.jutteau@gmail.com>
55 files changed:
admin.php
f.php
index.php
install.php
lib/functions.js.php
lib/functions.php
lib/lang.php
lib/locales/ar.json
lib/locales/be.json
lib/locales/bn_IN.json
lib/locales/bo.json
lib/locales/ca.json
lib/locales/cs.json
lib/locales/da.json
lib/locales/de.json
lib/locales/el.json
lib/locales/en.json
lib/locales/es.json
lib/locales/et.json
lib/locales/fi.json
lib/locales/fr.json
lib/locales/he.json
lib/locales/hi.json
lib/locales/hr.json
lib/locales/hu.json
lib/locales/id.json
lib/locales/it.json
lib/locales/ja.json
lib/locales/ko.json
lib/locales/ku.json
lib/locales/la.json
lib/locales/mfe.json
lib/locales/ms.json
lib/locales/nb_NO.json
lib/locales/nl.json
lib/locales/pl.json
lib/locales/ps.json
lib/locales/pt.json
lib/locales/pt_BR.json
lib/locales/ro.json
lib/locales/ru.json
lib/locales/sh.json
lib/locales/sk.json
lib/locales/sl.json
lib/locales/sq.json
lib/locales/sr.json
lib/locales/sv.json
lib/locales/ta.json
lib/locales/template.json
lib/locales/th.json
lib/locales/tr.json
lib/locales/vi.json
lib/locales/zh.json
lib/template/footer.php
lib/template/header.php

index bee8e1f822907939d40ab1ce74c19a9a553e1848..4500a1922769671ff116d6251b4936b3726685f9 100644 (file)
--- a/admin.php
+++ b/admin.php
@@ -46,7 +46,7 @@ if (php_sapi_name() == "cli") {
   if (empty($cfg['admin_password']) && empty($cfg['admin_http_auth_user'])) {
       require(JIRAFEAU_ROOT . 'lib/template/header.php');
       echo '<div class="error"><p>'.
-           t('Sorry, the admin interface is not enabled.') .
+           t('NO_ADMIN') .
            '</p></div>';
       require(JIRAFEAU_ROOT.'lib/template/footer.php');
       exit;
@@ -66,7 +66,7 @@ if (php_sapi_name() == "cli") {
           $_SESSION['admin_auth'] = false;
           require(JIRAFEAU_ROOT . 'lib/template/header.php');
           echo '<div class="error"><p>'.
-               t('Wrong password.') . '</p></div>';
+               t('BAD_PSW') . '</p></div>';
           require(JIRAFEAU_ROOT.'lib/template/footer.php');
           exit;
       }
@@ -80,7 +80,7 @@ if (php_sapi_name() == "cli") {
           <table>
           <tr>
               <td class = "label"><label for = "enter_password">
-              <?php echo t('Administration password') . ':'; ?></label>
+              <?php echo t('ADMIN_PSW') . ':'; ?></label>
               </td>
               <td class = "field"><input type = "password"
               name = "admin_password" id = "admin_password"
@@ -91,7 +91,7 @@ if (php_sapi_name() == "cli") {
               <td></td>
               <td class = "nav next">
               <input type = "submit" name = "key" value =
-              "<?php echo t('Login'); ?>" />
+              "<?php echo t('LOGIN'); ?>" />
               </td>
           </tr>
           </table>
@@ -114,7 +114,7 @@ if (php_sapi_name() == "cli") {
       $_SESSION['admin_auth'] = false;
       require(JIRAFEAU_ROOT . 'lib/template/header.php');
       echo '<div class="error"><p>'.
-           t('Sorry, you are not authenticated on admin interface.') .
+           t('NO_ADMIN_AUTH') .
            '</p></div>';
       require(JIRAFEAU_ROOT.'lib/template/footer.php');
       exit;
@@ -129,21 +129,21 @@ if (php_sapi_name() == "cli") {
 
   /* Show admin interface if not downloading a file. */
   if (!(isset($_POST['action']) && strcmp($_POST['action'], 'download') == 0)) {
-      require(JIRAFEAU_ROOT . 'lib/template/header.php'); ?><h2><?php echo t('Admin interface'); ?></h2><?php
+      require(JIRAFEAU_ROOT . 'lib/template/header.php'); ?><h2><?php echo t('ADMIN_INTERFACE'); ?></h2><?php
           ?><h2>(version <?php echo JIRAFEAU_VERSION ?>)</h2><?php
 
           ?><div id = "admin">
-          <fieldset><legend><?php echo t('Actions'); ?></legend>
+          <fieldset><legend><?php echo t('ACTIONS'); ?></legend>
           <table>
           <form method="post">
           <tr>
               <input type = "hidden" name = "action" value = "clean"/>
               <td class = "info">
-                  <?php echo t('Clean expired files'); ?>
+                  <?php echo t('CLEAN_EXPIRED'); ?>
               </td>
               <td></td>
               <td>
-                  <input type = "submit" value = "<?php echo t('Clean'); ?>" />
+                  <input type = "submit" value = "<?php echo t('CLEAN'); ?>" />
               </td>
           </tr>
           </form>
@@ -151,11 +151,11 @@ if (php_sapi_name() == "cli") {
           <tr>
               <input type = "hidden" name = "action" value = "clean_async"/>
               <td class = "info">
-                  <?php echo t('Clean old unfinished transfers'); ?>
+                  <?php echo t('CLEAN_INCOMPLETE'); ?>
               </td>
               <td></td>
               <td>
-                  <input type = "submit" value = "<?php echo t('Clean'); ?>" />
+                  <input type = "submit" value = "<?php echo t('CLEAN'); ?>" />
               </td>
           </tr>
           </form>
@@ -163,11 +163,11 @@ if (php_sapi_name() == "cli") {
           <tr>
               <input type = "hidden" name = "action" value = "list"/>
               <td class = "info">
-                  <?php echo t('List all files'); ?>
+                  <?php echo t('LS_FILES'); ?>
               </td>
               <td></td>
               <td>
-                  <input type = "submit" value = "<?php echo t('List'); ?>" />
+                  <input type = "submit" value = "<?php echo t('LIST'); ?>" />
               </td>
           </tr>
           </form>
@@ -175,13 +175,13 @@ if (php_sapi_name() == "cli") {
           <tr>
               <input type = "hidden" name = "action" value = "search_by_name"/>
               <td class = "info">
-                  <?php echo t('Search files by name'); ?>
+                  <?php echo t('SEARCH_NAME'); ?>
               </td>
               <td>
                   <input type = "text" name = "name" id = "name"/>
               </td>
               <td>
-                  <input type = "submit" value = "<?php echo t('Search'); ?>" />
+                  <input type = "submit" value = "<?php echo t('SEARCH'); ?>" />
               </td>
           </tr>
           </form>
@@ -189,13 +189,13 @@ if (php_sapi_name() == "cli") {
           <tr>
               <input type = "hidden" name = "action" value = "search_by_file_hash"/>
               <td class = "info">
-                  <?php echo t('Search files by file hash'); ?>
+                  <?php echo t('SEARH_BY_HASH'); ?>
               </td>
               <td>
                   <input type = "text" name = "hash" id = "hash"/>
               </td>
               <td>
-                  <input type = "submit" value = "<?php echo t('Search'); ?>" />
+                  <input type = "submit" value = "<?php echo t('SEARCH'); ?>" />
               </td>
           </tr>
           </form>
@@ -203,20 +203,20 @@ if (php_sapi_name() == "cli") {
           <tr>
               <input type = "hidden" name = "action" value = "search_link"/>
               <td class = "info">
-                  <?php echo t('Search a specific link'); ?>
+                  <?php echo t('SEARCH'); ?>
               </td>
               <td>
                   <input type = "text" name = "link" id = "link"/>
               </td>
               <td>
-                  <input type = "submit" value = "<?php echo t('Search'); ?>" />
+                  <input type = "submit" value = "<?php echo t('SEARCH'); ?>" />
               </td>
           </tr>
           </form>
           </table>
           <form method="post">
               <input type = "hidden" name = "action" value = "logout" />
-              <input type = "submit" value = "<?php echo t('Logout'); ?>" />
+              <input type = "submit" value = "<?php echo t('LOGOUT'); ?>" />
           </form>
           </fieldset></div><?php
 
@@ -228,13 +228,13 @@ if (php_sapi_name() == "cli") {
           $total = jirafeau_admin_clean();
           echo '<div class="message">' . NL;
           echo '<p>';
-          echo t('Number of cleaned files') . ' : ' . $total;
+          echo t('CLEANED_FILES_CNT') . ' : ' . $total;
           echo '</p></div>';
       } elseif (strcmp($_POST['action'], 'clean_async') == 0) {
           $total = jirafeau_admin_clean_async();
           echo '<div class="message">' . NL;
           echo '<p>';
-          echo t('Number of cleaned files') . ' : ' . $total;
+          echo t('CLEANED_FILES_CNT') . ' : ' . $total;
           echo '</p></div>';
       } elseif (strcmp($_POST['action'], 'list') == 0) {
           jirafeau_admin_list("", "", "");
@@ -247,11 +247,11 @@ if (php_sapi_name() == "cli") {
       } elseif (strcmp($_POST['action'], 'delete_link') == 0) {
           jirafeau_delete_link($_POST['link']);
           echo '<div class="message">' . NL;
-          echo '<p>' . t('Link deleted') . '</p></div>';
+          echo '<p>' . t('LINK_DELETED') . '</p></div>';
       } elseif (strcmp($_POST['action'], 'delete_file') == 0) {
           $count = jirafeau_delete_file($_POST['md5']);
           echo '<div class="message">' . NL;
-          echo '<p>' . t('Deleted links') . ' : ' . $count . '</p></div>';
+          echo '<p>' . t('DELETED_LINKS') . ' : ' . $count . '</p></div>';
       } elseif (strcmp($_POST['action'], 'download') == 0) {
           $l = jirafeau_get_link($_POST['link']);
           if (!count($l)) {
diff --git a/f.php b/f.php
index 4289eae2187a3697530c9a66ccf34e42a95c1cd3..5fd85759782dcd8a0839cfe8b8358169b2c6e6bd 100644 (file)
--- a/f.php
+++ b/f.php
@@ -39,7 +39,7 @@ $link_name = $_GET['h'];
 
 if (!preg_match('/[0-9a-zA-Z_-]+$/', $link_name)) {
     require(JIRAFEAU_ROOT.'lib/template/header.php');
-    echo '<div class="error"><p>' . t('Sorry, the requested file is not found') . '</p></div>';
+    echo '<div class="error"><p>' . t('FILE_404') . '</p></div>';
     require(JIRAFEAU_ROOT.'lib/template/footer.php');
     exit;
 }
@@ -47,7 +47,7 @@ if (!preg_match('/[0-9a-zA-Z_-]+$/', $link_name)) {
 $link = jirafeau_get_link($link_name);
 if (count($link) == 0) {
     require(JIRAFEAU_ROOT.'lib/template/header.php');
-    echo '<div class="error"><p>' . t('Sorry, the requested file is not found') .
+    echo '<div class="error"><p>' . t('FILE_404') .
     '</p></div>';
     require(JIRAFEAU_ROOT.'lib/template/footer.php');
     exit;
@@ -77,7 +77,7 @@ $p = s2p($link['md5']);
 if (!file_exists(VAR_FILES . $p . $link['md5'])) {
     jirafeau_delete_link($link_name);
     require(JIRAFEAU_ROOT.'lib/template/header.php');
-    echo '<div class="error"><p>'.t('File not available.').
+    echo '<div class="error"><p>'.t('FILE_NOT_AVAIL').
     '</p></div>';
     require(JIRAFEAU_ROOT.'lib/template/footer.php');
     exit;
@@ -87,23 +87,23 @@ if (!empty($delete_code) && $delete_code == $link['link_code']) {
     require(JIRAFEAU_ROOT.'lib/template/header.php');
     if (isset($_POST['do_delete'])) {
         jirafeau_delete_link($link_name);
-        echo '<div class="message"><p>'.t('File has been deleted.').
+        echo '<div class="message"><p>'.t('FILE_DELETED').
             '</p></div>';
     } else { ?>
         <div>
         <form action="f.php" method="post" id="submit_delete_post" class="form login">
         <input type="hidden" name="do_delete" value=1/>
         <fieldset>
-             <legend> <?php echo t('Confirm deletion') ?> </legend>
+             <legend> <?php echo t('CONFIRM_DEL') ?> </legend>
              <table>
              <tr><td>
-             <?php echo t('You are about to delete') . ' "' . htmlspecialchars($link['file_name']) . '" (' . jirafeau_human_size($link['file_size']) . ').' ?>
+             <?php echo t('GONNA_DEL') . ' "' . htmlspecialchars($link['file_name']) . '" (' . jirafeau_human_size($link['file_size']) . ').' ?>
              </td></tr>
              <tr><td>
-                <?php echo t('By using our services, you accept our'). ' <a href="tos.php">' . t('Terms of Service') . '</a>.' ?>
+                <?php echo t('USING_SERIVCE'). ' <a href="tos.php">' . t('TOS') . '</a>.' ?>
              </td></tr>
              <tr><td>
-                <input type="submit" id="submit_delete"  value="<?php echo t('Delete'); ?>"
+                <input type="submit" id="submit_delete"  value="<?php echo t('DELETE'); ?>"
                 onclick="document.getElementById('submit_delete_post').action='<?php echo 'f.php?h=' . $link_name . '&amp;d=' . $delete_code . "';"; ?>
                 document.getElementById('submit_delete').submit ();"/>
              </td></tr>
@@ -118,8 +118,8 @@ if ($link['time'] != JIRAFEAU_INFINITY && time() > $link['time']) {
     jirafeau_delete_link($link_name);
     require(JIRAFEAU_ROOT.'lib/template/header.php');
     echo '<div class="error"><p>'.
-    t('The time limit of this file has expired.') . ' ' .
-    t('File has been deleted.') .
+    t('FILE_EXPIRED') . ' ' .
+    t('FILE_DELETED') .
     '</p></div>';
     require(JIRAFEAU_ROOT . 'lib/template/footer.php');
     exit;
@@ -127,7 +127,7 @@ if ($link['time'] != JIRAFEAU_INFINITY && time() > $link['time']) {
 
 if (empty($crypt_key) && $link['crypted']) {
     require(JIRAFEAU_ROOT.'lib/template/header.php');
-    echo '<div class="error"><p>' . t('Sorry, the requested file is not found') .
+    echo '<div class="error"><p>' . t('FILE_404') .
     '</p></div>';
     require(JIRAFEAU_ROOT.'lib/template/footer.php');
     exit;
@@ -141,20 +141,20 @@ if (!empty($link['key'])) {
              '<form action="f.php" method="post" id="submit_post" class="form login">'; ?>
              <input type = "hidden" name = "jirafeau" value = "<?php echo JIRAFEAU_VERSION ?>"/><?php
         echo '<fieldset>' .
-             '<legend>' . t('Password protection') .
+             '<legend>' . t('PSW_PROTEC') .
              '</legend><table><tr><td>' .
-             t('Give the password of this file') . ' : ' .
+             t('GIMME_PSW') . ' : ' .
              '<input type = "password" name = "key" />' .
              '</td></tr>' .
              '<tr><td>' .
-             t('By using our services, you accept our'). ' <a href="tos.php">' . t('Terms of Service') . '</a>.' .
+             t('USING_SERIVCE'). ' <a href="tos.php">' . t('TOS') . '</a>.' .
              '</td></tr>';
 
         if ($link['onetime'] == 'O') {
             echo '<tr><td id="self_destruct">' .
-                 t('Warning, this file will self-destruct after being read') .
+                 t('AUTO_DESTRUCT') .
                  '</td></tr>';
-        } ?><tr><td><input type="submit" id = "submit_download"  value="<?php echo t('Download'); ?>"
+        } ?><tr><td><input type="submit" id = "submit_download"  value="<?php echo t('DL'); ?>"
         onclick="document.getElementById('submit_post').action='<?php
         echo 'f.php?h=' . $link_name . '&amp;d=1';
         if (!empty($crypt_key)) {
@@ -162,7 +162,7 @@ if (!empty($link['key'])) {
         } ?>';
         document.getElementById('submit_download').submit ();"/><?php
         if ($cfg['preview'] && jirafeau_is_viewable($link['mime_type'])) {
-            ?><input type="submit" id = "submit_preview"  value="<?php echo t('Preview'); ?>"
+            ?><input type="submit" id = "submit_preview"  value="<?php echo t('PREVIEW'); ?>"
             onclick="document.getElementById('submit_post').action='<?php
             echo 'f.php?h=' . $link_name . '&amp;p=1';
             if (!empty($crypt_key)) {
@@ -180,7 +180,7 @@ if (!empty($link['key'])) {
         } else {
             sleep(2);
             require(JIRAFEAU_ROOT.'lib/template/header.php');
-            echo '<div class="error"><p>' . t('Access denied') .
+            echo '<div class="error"><p>' . t('ACCESS_KO') .
             '</p></div>';
             require(JIRAFEAU_ROOT.'lib/template/footer.php');
             exit;
@@ -195,18 +195,18 @@ if (!$password_challenged && !$do_download && !$do_preview) {
              <input type = "hidden" name = "jirafeau" value = "<?php echo JIRAFEAU_VERSION ?>"/><?php
         echo '<fieldset><legend>' . htmlspecialchars($link['file_name']) . '</legend><table>' .
              '<tr><td>' .
-             t('You are about to download') . ' "' . htmlspecialchars($link['file_name']) . '" (' . jirafeau_human_size($link['file_size']) . ').' .
+             t('NOW_DOWNLOADING') . ' "' . htmlspecialchars($link['file_name']) . '" (' . jirafeau_human_size($link['file_size']) . ').' .
              '</td></tr>' .
              '<tr><td>' .
-             t('By using our services, you accept our'). ' <a href="tos.php">' . t('Terms of Service') . '</a>.' .
+             t('USING_SERIVCE'). ' <a href="tos.php">' . t('TOS') . '</a>.' .
              '</td></tr>';
 
     if ($link['onetime'] == 'O') {
         echo '<tr><td id="self_destruct">' .
-                 t('Warning, this file will self-destruct after being read') .
+                 t('AUTO_DESTRUCT') .
                  '</td></tr>';
     } ?>
-        <tr><td><input type="submit" id = "submit_download"  value="<?php echo t('Download'); ?>"
+        <tr><td><input type="submit" id = "submit_download"  value="<?php echo t('DL'); ?>"
         onclick="document.getElementById('submit_post').action='<?php
         echo 'f.php?h=' . $link_name . '&amp;d=1';
     if (!empty($crypt_key)) {
@@ -215,7 +215,7 @@ if (!$password_challenged && !$do_download && !$do_preview) {
         document.getElementById('submit_post').submit ();"/><?php
 
         if ($cfg['preview'] && jirafeau_is_viewable($link['mime_type'])) {
-            ?><input type="submit" id = "submit_preview"  value="<?php echo t('Preview'); ?>"
+            ?><input type="submit" id = "submit_preview"  value="<?php echo t('PREVIEW'); ?>"
             onclick="document.getElementById('submit_post').action='<?php
         echo 'f.php?h=' . $link_name . '&amp;p=1';
             if (!empty($crypt_key)) {
index bb454afe141aa1d60472e6776bdfbf470499c0be..ec7aac43f2ca1b43866b0ebfb91d57540e9b9090 100644 (file)
--- a/index.php
+++ b/index.php
@@ -52,7 +52,7 @@ if (true === jirafeau_challenge_upload_ip($cfg['upload_ip'], get_ip_address($cfg
                 $_SESSION['user_upload_password'] = $_POST['upload_password'];
             } else {
                 $_SESSION['admin_auth'] = false;
-                jirafeau_fatal_error(t('Wrong password.'), $cfg);
+                jirafeau_fatal_error(t('BAD_PSW'), $cfg);
             }
         }
 
@@ -64,7 +64,7 @@ if (true === jirafeau_challenge_upload_ip($cfg['upload_ip'], get_ip_address($cfg
                 <table>
                 <tr>
                     <td class = "label"><label for = "enter_password">
-                    <?php echo t('Upload password') . ':'; ?></label>
+                    <?php echo t('UP_PSW') . ':'; ?></label>
                     </td>
                 </tr><tr>
                     <td class = "field"><input type = "password"
@@ -75,7 +75,7 @@ if (true === jirafeau_challenge_upload_ip($cfg['upload_ip'], get_ip_address($cfg
                 <tr class = "nav">
                     <td class = "nav next">
                     <input type = "submit" name = "key" value =
-                    "<?php echo t('Login'); ?>" />
+                    "<?php echo t('LOGIN'); ?>" />
                     </td>
                 </tr>
                 </table>
@@ -88,16 +88,16 @@ if (true === jirafeau_challenge_upload_ip($cfg['upload_ip'], get_ip_address($cfg
     }
 }
 else {
-    jirafeau_fatal_error(t('Access denied'), $cfg);
+    jirafeau_fatal_error(t('ACCESS_KO'), $cfg);
 }
 
 ?>
 <div id="upload_finished">
-    <p><?php echo t('File uploaded !') ?></p>
+    <p><?php echo t('FILE_UP') ?></p>
 
     <div id="upload_finished_download_page">
     <p>
-        <a id="upload_link" href=""><?php echo t('Download page') ?></a>
+        <a id="upload_link" href=""><?php echo t('DL_PAGE') ?></a>
         <a id="upload_link_email" href=""><img id="upload_image_email"/></a>
     </p><p>
         <code id=upload_link_text></code>
@@ -109,7 +109,7 @@ else {
     ?>
     <div id="upload_finished_preview">
     <p>
-        <a id="preview_link" href=""><?php echo t('View link') ?></a>
+        <a id="preview_link" href=""><?php echo t('VIEW_LINK') ?></a>
     </p><p>
         <code id=preview_link_text></code>
         <button id="preview_link_button">✂</button>
@@ -120,7 +120,7 @@ else {
 
     <div id="upload_direct_download">
     <p>
-        <a id="direct_link" href=""><?php echo t('Direct download link') ?></a>
+        <a id="direct_link" href=""><?php echo t('DIRECT_DL') ?></a>
     </p><p>
         <code id=direct_link_text></code>
         <button id="direct_link_button">✂</button>
@@ -129,7 +129,7 @@ else {
 
     <div id="upload_delete">
     <p>
-        <a id="delete_link" href=""><?php echo t('Delete link') ?></a>
+        <a id="delete_link" href=""><?php echo t('DELETE_LINK') ?></a>
     </p><p>
         <code id=delete_link_text></code>
         <button id="delete_link_button">✂</button>
@@ -137,14 +137,14 @@ else {
     </div>
 
     <div id="upload_validity">
-    <p><?php echo t('This file is valid until the following date'); ?>:</p>
+    <p><?php echo t('VALID_UNTIL'); ?>:</p>
     <p id="date"></p>
     </div>
 </div>
 
 <div id="uploading">
     <p>
-    <?php echo t('Uploading ...'); ?>
+    <?php echo t('UP'); ?>
     <div id="uploaded_percentage"></div>
     <div id="uploaded_speed"></div>
     <div id="uploaded_time"></div>
@@ -157,59 +157,59 @@ else {
 <div id="upload">
 <fieldset>
     <legend>
-    <?php echo t('Select a file'); ?>
+    <?php echo t('SEL_FILE'); ?>
     </legend>
     <p>
     <input type="file" id="file_select" size="30"
-    onchange="control_selected_file_size(<?php echo $cfg['maximal_upload_size'] ?>, '<?php echo t('File is too big') . ', ' . t('File size is limited to') . " " . $cfg['maximal_upload_size'] . " MB"; ?>')"/>
+    onchange="control_selected_file_size(<?php echo $cfg['maximal_upload_size'] ?>, '<?php echo t('2_BIG') . ', ' . t('FILE_LIM') . " " . $cfg['maximal_upload_size'] . " MB"; ?>')"/>
     </p>
 
     <div id="options">
         <table id="option_table">
         <tr>
-        <td><?php echo t('One time download'); ?>:</td>
+        <td><?php echo t('ONE_TIME_DL'); ?>:</td>
         <td><input type="checkbox" id="one_time_download" /></td>
         </tr>
         <tr>
-        <td><label for="input_key"><?php echo t('Password') . ':'; ?></label></td>
+        <td><label for="input_key"><?php echo t('PSW') . ':'; ?></label></td>
         <td><input type="text" name="key" id="input_key" /></td>
         </tr>
         <tr>
-        <td><label for="select_time"><?php echo t('Time limit') . ':'; ?></label></td>
+        <td><label for="select_time"><?php echo t('TIME_LIM') . ':'; ?></label></td>
         <td><select name="time" id="select_time">
         <?php
         $expirationTimeOptions = array(
           array(
             'value' => 'minute',
-            'label' => 'One minute'
+            'label' => '1_MIN'
           ),
           array(
             'value' => 'hour',
-            'label' => 'One hour'
+            'label' => '1_H'
           ),
           array(
             'value' => 'day',
-            'label' => 'One day'
+            'label' => '1_D'
           ),
           array(
             'value' => 'week',
-            'label' => 'One week'
+            'label' => '1_W'
           ),
           array(
             'value' => 'month',
-            'label' => 'One month'
+            'label' => '1_M'
           ),
           array(
             'value' => 'quarter',
-            'label' => 'One quarter'
+            'label' => '1_Q'
           ),
           array(
             'value' => 'year',
-            'label' => 'One year'
+            'label' => '1_Y'
           ),
           array(
             'value' => 'none',
-            'label' => 'None'
+            'label' => 'NONE'
           )
         );
         foreach ($expirationTimeOptions as $expirationTimeOption) {
@@ -225,7 +225,7 @@ else {
 
         <?php
         if ($cfg['maximal_upload_size'] > 0) {
-            echo '<p class="config">' . t('File size is limited to');
+            echo '<p class="config">' . t('FILE_LIM');
             echo " " . $cfg['maximal_upload_size'] . " MB</p>";
         }
         ?>
@@ -245,7 +245,7 @@ else {
 
     }
     ?>
-    <input type="submit" id="send" value="<?php echo t('Send'); ?>"
+    <input type="submit" id="send" value="<?php echo t('SEND'); ?>"
     onclick="
         document.getElementById('upload').style.display = 'none';
         document.getElementById('uploading').style.display = '';
@@ -260,7 +260,7 @@ else {
         ?>
     <form method="post" class="form logout">
         <input type = "hidden" name = "action" value = "logout"/>
-        <input type = "submit" value = "<?php echo t('Logout'); ?>" />
+        <input type = "submit" value = "<?php echo t('LOGOUT'); ?>" />
     </form>
     <?php
 
index 8c0f686745fccf108b56f1dab831fcb9195f46dc..bd2aea39b78426301efd9ed85e401459d3429b46 100644 (file)
@@ -69,12 +69,12 @@ function jirafeau_is_writable($path)
 
 function jirafeau_check_var_dir($path)
 {
-    $mkdir_str1 = t('The following directory could not be created') . ':';
-    $mkdir_str2 = t('You should create this directory manually.');
-    $write_str1 = t('The following directory is not writable') . ':';
+    $mkdir_str1 = t('CANNOT_CREATE_DIR') . ':';
+    $mkdir_str2 = t('MANUAL_CREATE');
+    $write_str1 = t('DIR_NOT_W') . ':';
     $write_str2 = t('You should give the write permission to the web server on ' .
                     'this directory.');
-    $solution_str = t('Here is a solution') . ':';
+    $solution_str = t('HERE_SOLUTION') . ':';
 
     if (!jirafeau_mkdir($path) || !jirafeau_is_writable($path)) {
         return array('has_error' => true,
@@ -188,8 +188,8 @@ if (isset($_POST['next'])) {
 switch ($current) {
 case 1:
 default:
-    ?><h2><?php printf(t('Installation of Jirafeau') . ' - ' . t('step') .
-    ' %d ' . t('out of') . ' %d', 1, 4);
+    ?><h2><?php printf(t('JI_INSTALL') . ' - ' . t('STEP') .
+    ' %d ' . t('OUT_OF') . ' %d', 1, 4);
     ?></h2> <div id = "install"> <form method="post"> <input type =
         "hidden" name = "jirafeau" value =
         "<?php echo JIRAFEAU_VERSION; ?>" /><input type = "hidden" name =
@@ -199,7 +199,7 @@ default:
         t('Jirafeau is internationalised. Choose a specific langage or ' .
          'choose Automatic (langage is provided by user\'s browser).');
     ?></td> </tr> <tr> <td class = "label"><label for = "select_lang"
-       ><?php echo t('Choose the default language') . ':';
+       ><?php echo t('DEF_LANGUAGE') . ':';
     ?></label></td>
         <td class = "field">
         <select name = "lang" id = "select_lang">
@@ -214,25 +214,25 @@ default:
         <tr class = "nav">
         <td></td>
         <td class = "nav next"><input type = "submit" name = "next" value =
-        "<?php echo t('Next step'); ?>" /></td> </tr> </table>
+        "<?php echo t('NEXT_STEP'); ?>" /></td> </tr> </table>
         </fieldset> </form> </div> <?php
 break;
 
 case 2:
-    ?><h2><?php printf(t('Installation of Jirafeau') . ' - ' . t('step') .
-    ' %d ' . t('out of') . ' %d', 2, 4);
+    ?><h2><?php printf(t('JI_INSTALL') . ' - ' . t('STEP') .
+    ' %d ' . t('OUT_OF') . ' %d', 2, 4);
     ?></h2> <div id = "install"> <form method="post"> <input type =
         "hidden" name = "jirafeau" value =
         "<?php echo JIRAFEAU_VERSION; ?>" /><input type = "hidden" name =
         "step" value = "2" /><fieldset> <legend><?php
-        echo t('Administration password');
+        echo t('ADMIN_PSW');
     ?></legend> <table> <tr> <td class = "info" colspan =
         "2"><?php echo
         t('Jirafeau has an administration interface (through admin.php). ' .
         'You can set a password to access the interface or leave it empty ' .
         'to disable the interface.');
     ?></td> </tr> <tr> <td class = "label"><label for = "select_password"
-       ><?php echo t('Administration password') . ':';
+       ><?php echo t('ADMIN_PSW') . ':';
     ?></label></td>
         <td class = "field"><input type = "password" name = "admin_password"
         id = "admin_password" size = "40" /></td>
@@ -242,27 +242,27 @@ case 2:
         <td class = "nav next">
         <input type = "submit"
         class = "navleft" name = "previous" value = "<?php
-        echo t('Previous step'); ?>" />
+        echo t('PREV_STEP'); ?>" />
         <input type = "submit" name = "next" value =
-        "<?php echo t('Next step'); ?>" /></td> </tr> </table>
+        "<?php echo t('NEXT_STEP'); ?>" /></td> </tr> </table>
         </fieldset> </form> </div> <?php
 break;
 
 case 3:
-    ?><h2><?php printf(t('Installation of Jirafeau') . ' - ' . t('step') .
-    ' %d ' . t('out of') . ' %d', 3, 4);
+    ?><h2><?php printf(t('JI_INSTALL') . ' - ' . t('STEP') .
+    ' %d ' . t('OUT_OF') . ' %d', 3, 4);
     ?></h2> <div id = "install"> <form method="post"> <input type =
         "hidden" name = "jirafeau" value =
         "<?php echo JIRAFEAU_VERSION; ?>" /><input type = "hidden" name =
         "step" value =
-        "3" /><fieldset> <legend><?php echo t('Information');
+        "3" /><fieldset> <legend><?php echo t('INFO');
     ?></legend> <table> <tr> <td class = "info" colspan =
         "2"><?php echo
         t('The base address of Jirafeau is the first part of the URL, until ' .
          '(and including) the last slash. For example: ' .
          '"http://www.example.com/". Do not forget the trailing slash!');
     ?></td> </tr> <tr> <td class = "label"><label for = "input_web_root"
-       ><?php echo t('Base address') . ':';
+       ><?php echo t('BASE_ADDR') . ':';
     ?></label></td>
         <td class = "field"><input type = "text" name = "web_root"
         id = "input_web_root" value = "<?php
@@ -276,7 +276,7 @@ case 3:
         'site, or at least restrict the access to this directory. Do not ' .
         'forget the trailing slash!');
     ?></td> </tr> <tr> <td class = "label"><label for = "input_var_root"
-       ><?php echo t('Data directory') . ':';
+       ><?php echo t('DATA_DIR') . ':';
     ?></label></td>
         <td class = "field"><input type = "text" name = "var_root"
         id = "input_var_root" value = "<?php
@@ -295,21 +295,21 @@ case 3:
       ?>" size = "40" /></td>
         </tr> <tr> <td colspan = "2"><input type = "submit"
         class = "navleft" name = "previous" value = "<?php
-        echo t('Previous step'); ?>" />
+        echo t('PREV_STEP'); ?>" />
          <input type = "submit" class = "navright" name = "next" value = "
-        <?php echo t('Next step'); ?>" />
+        <?php echo t('NEXT_STEP'); ?>" />
         </td> </tr> </table> </fieldset>
         </form> </div> <?php
 break;
 
 case 4:
-    ?><h2><?php printf(t('Installation of Jirafeau') . ' - ' . t('step') .
-    ' %d ' . t('out of') . ' %d', 4, 4);
+    ?><h2><?php printf(t('JI_INSTALL') . ' - ' . t('STEP') .
+    ' %d ' . t('OUT_OF') . ' %d', 4, 4);
     ?></h2> <div id = "install"> <form method="post"> <input type =
         "hidden" name = "jirafeau" value =
         "<?php echo JIRAFEAU_VERSION; ?>" /><input type = "hidden" name =
         "step" value =
-        "4" /><fieldset> <legend><?php echo t('Finalisation');
+        "4" /><fieldset> <legend><?php echo t('FINALIZATION');
     ?></legend> <table> <tr> <td class = "info" colspan =
         "2"><?php echo
         t('Jirafeau is setting the website according to the configuration ' .
@@ -318,7 +318,7 @@ case 4:
         "submit" name = "previous" value =
         "
     <?php
-    echo t('Previous step');
+    echo t('PREV_STEP');
     ?>" /></td> <td></td> </tr>
         </table> </fieldset> </form> </div>
     <?php
@@ -328,13 +328,13 @@ case 4:
             "<?php echo JIRAFEAU_VERSION; ?>" /><input type = "hidden" name =
             "step" value = "4" /><input type = "submit" name =
             "retry" value =
-            "<?php echo t('Retry this step'); ?>" /></form>
+            "<?php echo t('RETRY_STEP'); ?>" /></form>
             <?php echo '</p></div>';
     } else {
         $cfg['installation_done'] = true;
         jirafeau_export_cfg($cfg);
         echo '<div class="message"><p>' .
-             t('Jirafeau is now fully operational') . ':' .
+             t('JI_FONCTIONAL') . ':' .
              '<br /><a href="./">' .
              $cfg['web_root'].'</a></p></div>';
     }
index 20803867830ed293c95df47c6af3138d2ecb9802..5455d78c975451960cd5483776756f75537093d9 100644 (file)
@@ -654,25 +654,25 @@ function milliseconds_to_time_string (milliseconds)
     var temp = Math.floor(milliseconds / 1000);
     var years = Math.floor(temp / 31536000);
     if (years) {
-        return years + ' ' + translate ('year') + numberEnding(years);
+        return years + ' ' + translate ('YEAR') + numberEnding(years);
     }
     var days = Math.floor((temp %= 31536000) / 86400);
     if (days) {
-        return days + ' ' + translate ('day') + numberEnding(days);
+        return days + ' ' + translate ('DAY') + numberEnding(days);
     }
     var hours = Math.floor((temp %= 86400) / 3600);
     if (hours) {
-        return hours + ' ' + translate ('hour') + numberEnding(hours);
+        return hours + ' ' + translate ('HOUR') + numberEnding(hours);
     }
     var minutes = Math.floor((temp %= 3600) / 60);
     if (minutes) {
-        return minutes + ' ' + translate ('minute') + numberEnding(minutes);
+        return minutes + ' ' + translate ('MINUTE') + numberEnding(minutes);
     }
     var seconds = temp % 60;
     if (seconds) {
-        return seconds + ' ' + translate ('second') + numberEnding(seconds);
+        return seconds + ' ' + translate ('SECOND') + numberEnding(seconds);
     }
-    return translate ('less than a second');
+    return translate ('LESS_1_SEC');
 }
 
 function upload_time_estimation_time()
index e4bfbb56219f573d383f52a4b7b7a1e64a093ba8..eaedfac321ef27a93a8b3ce2c23044430ec449d5 100644 (file)
@@ -374,7 +374,7 @@ function jirafeau_upload($file, $one_time_download, $key, $time, $ip, $crypt, $l
         return (array(
                  'error' =>
                    array('has_error' => true,
-                          'why' => t('Internal error during file creation.')),
+                          'why' => t('INTERNAL_ERROR_DEL')),
                  'link' =>'',
                  'delete_link' => ''));
     }
@@ -513,7 +513,7 @@ function check_errors($cfg)
     }
 
     if (!is_writable(VAR_ASYNC)) {
-        add_error(t('The async directory is not writable!'), VAR_ASYNC);
+        add_error(t('ASYNC_DIR_W'), VAR_ASYNC);
     }
 }
 
@@ -553,28 +553,28 @@ function jirafeau_admin_list($name, $file_hash, $link_hash)
 {
     echo '<fieldset><legend>';
     if (!empty($name)) {
-        echo t('Filename') . ": $name ";
+        echo t('FILENAME') . ": $name ";
     }
     if (!empty($file_hash)) {
-        echo t('file') . ": $file_hash ";
+        echo t('FILE') . ": $file_hash ";
     }
     if (!empty($link_hash)) {
-        echo t('link') . ": $link_hash ";
+        echo t('LINK') . ": $link_hash ";
     }
     if (empty($name) && empty($file_hash) && empty($link_hash)) {
-        echo t('List all files');
+        echo t('LS_FILES');
     }
     echo '</legend>';
     echo '<table>';
     echo '<tr>';
-    echo '<td>' . t('Filename') . '</td>';
-    echo '<td>' . t('Type') . '</td>';
-    echo '<td>' . t('Size') . '</td>';
-    echo '<td>' . t('Expire') . '</td>';
-    echo '<td>' . t('Onetime') . '</td>';
-    echo '<td>' . t('Upload date') . '</td>';
-    echo '<td>' . t('Origin') . '</td>';
-    echo '<td>' . t('Action') . '</td>';
+    echo '<td>' . t('FILENAME') . '</td>';
+    echo '<td>' . t('TYPE') . '</td>';
+    echo '<td>' . t('SIZE') . '</td>';
+    echo '<td>' . t('EXPIRE') . '</td>';
+    echo '<td>' . t('ONETIME') . '</td>';
+    echo '<td>' . t('UPLOAD_DATE') . '</td>';
+    echo '<td>' . t('ORIGIN') . '</td>';
+    echo '<td>' . t('ACTION') . '</td>';
     echo '</tr>';
 
     /* Get all links files. */
@@ -610,7 +610,7 @@ function jirafeau_admin_list($name, $file_hash, $link_hash)
                 echo '<tr>';
                 echo '<td>' .
                 '<strong><a id="upload_link" href="f.php?h='. htmlspecialchars($node) .'" title="' .
-                    t('Download page') . '">' . htmlspecialchars($l['file_name']) . '</a></strong>';
+                    t('DL_PAGE') . '">' . htmlspecialchars($l['file_name']) . '</a></strong>';
                 echo '</td>';
                 echo '<td>' . $l['mime_type'] . '</td>';
                 echo '<td>' . jirafeau_human_size($l['file_size']) . '</td>';
@@ -628,17 +628,17 @@ function jirafeau_admin_list($name, $file_hash, $link_hash)
                 '<form method="post">' .
                 '<input type = "hidden" name = "action" value = "download"/>' .
                 '<input type = "hidden" name = "link" value = "' . $node . '"/>' .
-                '<input type = "submit" value = "' . t('Download') . '" />' .
+                '<input type = "submit" value = "' . t('DL') . '" />' .
                 '</form>' .
                 '<form method="post">' .
                 '<input type = "hidden" name = "action" value = "delete_link"/>' .
                 '<input type = "hidden" name = "link" value = "' . $node . '"/>' .
-                '<input type = "submit" value = "' . t('Del link') . '" />' .
+                '<input type = "submit" value = "' . t('DEL_LINK') . '" />' .
                 '</form>' .
                 '<form method="post">' .
                 '<input type = "hidden" name = "action" value = "delete_file"/>' .
                 '<input type = "hidden" name = "md5" value = "' . $l['md5'] . '"/>' .
-                '<input type = "submit" value = "' . t('Del file and links') . '" />' .
+                '<input type = "submit" value = "' . t('DEL_FILE_LINKS') . '" />' .
                 '</form>' .
                 '</td>';
                 echo '</tr>';
index 1af125965be6a2a9c8353e91f70183e55a83e005..c3f9485b24bbdbc529e2e69ca86133a5f9dca59f 100644 (file)
@@ -43,7 +43,7 @@ function t($string_id)
     if ($r === false) {
         $r = t_in($string_id, "en");
         if ($r === false) {
-            return "";
+            return "FIX ME: " . $string_id;
         }
     }
     return $r;
index 9494ff87a5b29dcad3fc1a0e46c3739dccce713c..4002c7683f4d2266bd443a19bbf4e5b656266c69 100644 (file)
 {
-    "Access denied": "الدخول محظور",
-    "Action": "الأمر",
-    "Actions": "الأوامر",
-    "Admin interface": "",
-    "Administration password": "",
-    "An error occurred.": "",
-    "Base address": "",
-    "By using our services, you accept our": "",
-    "Choose the default language": "",
-    "Clean": "",
-    "Clean expired files": "",
-    "Clean old unfinished transfers": "",
-    "Data directory": "",
-    "Del file and links": "",
-    "Del link": "",
-    "Delete link": "مسح الرابط",
-    "Deleted links": "",
-    "Direct download link": "",
-    "Download": "",
-    "Download page": "",
-    "Expire": "",
-    "File has been deleted.": "",
-    "File is too big": "",
-    "File not available.": "",
-    "File size is limited to": "",
-    "File uploaded !": "",
-    "Filename": "",
-    "Finalisation": "",
-    "Give the password of this file": "",
-    "Here is a solution": "",
-    "Information": "",
-    "Installation of Jirafeau": "",
-    "Installer script still present": "",
-    "Internal error during file creation.": "",
-    "Jirafeau Project": "",
-    "Jirafeau has an administration interface (through admin.php). You can set a password to access the interface or leave it empty to disable the interface.": "",
-    "Jirafeau is internationalised. Choose a specific langage or choose Automatic (langage is provided by user's browser).": "",
-    "Jirafeau is now fully operational": "",
-    "Jirafeau is setting the website according to the configuration you provided.": "",
-    "Jirafeau, your web file repository": "",
-    "Link deleted": "",
-    "List": "",
-    "List all files": "",
-    "Login": "",
-    "Logout": "",
-    "Maximum file size": "",
-    "Next step": "",
-    "None": "",
-    "Number of cleaned files": "",
-    "One day": "",
-    "One hour": "",
-    "One minute": "",
-    "One month": "",
-    "One time download": "",
-    "One week": "",
-    "One year": "",
-    "Onetime": "",
-    "Origin": "",
-    "Password": "",
-    "Password protection": "",
-    "Please make sure to delete the installer script \"install.php\" before continuing.": "",
-    "Preview": "",
-    "Previous step": "",
-    "Retry this step": "",
-    "Search": "",
-    "Search a specific link": "",
-    "Search files by file hash": "",
-    "Search files by name": "",
-    "Select a file": "",
-    "Send": "",
-    "Size": "",
-    "Sorry, the admin interface is not enabled.": "",
-    "Sorry, the requested file is not found": "",
-    "Sorry, you are not authenticated on admin interface.": "",
+    "ACCESS_KO": "الدخول محظور",
+    "ACTION": "الأمر",
+    "ACTIONS": "الأوامر",
+    "ADMIN_INTERFACE": "",
+    "ADMIN_PSW": "",
+    "ERR_OCC": "",
+    "BASE_ADDR": "",
+    "USING_SERIVCE": "",
+    "DEF_LANGUAGE": "",
+    "CLEAN": "",
+    "CLEAN_EXPIRED": "",
+    "CLEAN_INCOMPLETE": "",
+    "DATA_DIR": "",
+    "DEL_FILE_LINKS": "",
+    "DEL_LINK": "",
+    "DELETE_LINK": "مسح الرابط",
+    "DELETED_LINKS": "",
+    "DIRECT_DL": "",
+    "DL": "",
+    "DL_PAGE": "",
+    "EXPIRE": "",
+    "FILE_DELETED": "",
+    "2_BIG": "",
+    "FILE_NOT_AVAIL": "",
+    "FILE_LIM": "",
+    "FILE_UP": "",
+    "FILENAME": "",
+    "FINALIZATION": "",
+    "GIMME_PSW": "",
+    "HERE_SOLUTION": "",
+    "INFO": "",
+    "JI_INSTALL": "",
+    "INSTALL_SCRIPT_HERE": "",
+    "INTERNAL_ERROR_DEL": "",
+    "JI_PROJECT": "",
+    "ADMIN_INTERFACE_INFO": "",
+    "JI_HAZ_LANGAGES": "",
+    "JI_FONCTIONAL": "",
+    "SETTING_UP": "",
+    "JI_WEB_RE": "",
+    "LINK_DELETED": "",
+    "LIST": "",
+    "LS_FILES": "",
+    "LOGIN": "",
+    "LOGOUT": "",
+    "MAX_FILE_SIZE": "",
+    "NEXT_STEP": "",
+    "NONE": "",
+    "CLEANED_FILES_CNT": "",
+    "1_D": "",
+    "1_H": "",
+    "1_MIN": "",
+    "1_M": "",
+    "ONE_TIME_DL": "",
+    "1_W": "",
+    "1_Y": "",
+    "ONETIME": "",
+    "ORIGIN": "",
+    "PSW": "",
+    "PSW_PROTEC": "",
+    "PREVIEW": "",
+    "PREV_STEP": "",
+    "RETRY_STEP": "",
+    "SEARCH": "",
+    "SEARCH_LINK": "",
+    "SEARH_BY_HASH": "",
+    "SEARCH_NAME": "",
+    "SEL_FILE": "",
+    "SEND": "",
+    "SIZE": "",
+    "NO_ADMIN": "",
+    "FILE_404": "",
+    "NO_ADMIN_AUTH": "",
     "Term Of Service": "",
-    "The async directory is not writable!": "",
-    "The base address of Jirafeau is the first part of the URL, until (and including) the last slash. For example: \"http://www.example.com/\". Do not forget the trailing slash!": "",
-    "The data directory is where your files and information about your files will be stored. You should put it outside your web site, or at least restrict the access to this directory. Do not forget the trailing slash!": "",
-    "The file directory is not writable": "",
-    "The following directory could not be created": "",
-    "The following directory is not writable": "",
-    "The link directory is not writable": "",
-    "The local configuration file could not be created. Create a <code>lib/config.local.php</code> file and give the write permission to the web server (preferred solution), or give the write permission to the web server on the <code>lib</code> directory.": "",
-    "The local configuration is not writable by the web server. Give the write permission to the web server on the '<code>lib/config.local.php</code> file.": "",
-    "The time limit of this file has expired.": "",
-    "This file is valid until the following date": "",
-    "This file was generated by the install process. You can edit it. Please see config.original.php to understand the configuration items.": "",
-    "Time limit": "",
-    "Type": "",
-    "Upload date": "",
-    "Upload password": "",
-    "Uploading ...": "",
-    "View link": "",
-    "Warning, this file will self-destruct after being read": "",
-    "Wrong password.": "",
-    "You are about to download": "",
-    "You are now loggued out": "",
-    "You should create this directory manually.": "",
-    "You should give the write permission to the web server on this directory.": "",
-    "day": "",
-    "file": "",
-    "hour": "",
-    "less than a second": "",
-    "link": "",
-    "minute": "",
-    "out of": "",
-    "powered by Open-Source project Jirafeau": "",
-    "second": "",
-    "step": "",
-    "year": ""
+    "ASYNC_DIR_W": "",
+    "BASE_ADDR_INFO": "",
+    "DATA_DIR_EXPLAINATION": "",
+    "FILE_DIR_W": "",
+    "CANNOT_CREATE_DIR": "",
+    "DIR_NOT_W": "",
+    "LINK_DIR_W": "",
+    "CONF_SOLUTION": "",
+    "CONF_SOLUTION_2": "",
+    "FILE_EXPIRED": "",
+    "VALID_UNTIL": "",
+    "CONF_AUTOGEN_COMMENT": "",
+    "TIME_LIM": "",
+    "TYPE": "",
+    "UPLOAD_DATE": "",
+    "UP_PSW": "",
+    "UP": "",
+    "VIEW_LINK": "",
+    "AUTO_DESTRUCT": "",
+    "BAD_PSW": "",
+    "NOW_DOWNLOADING": "",
+    "NOW_LOGOUT": "",
+    "MANUAL_CREATE": "",
+    "GIMME_W": "",
+    "DAY": "",
+    "FILE": "",
+    "HOUR": "",
+    "LESS_1_SEC": "",
+    "LINK": "",
+    "MINUTE": "",
+    "OUT_OF": "",
+    "POWERED_BY": "",
+    "SECOND": "",
+    "STEP": "",
+    "YEAR": ""
 }
index f2141df57355f2d9a454477af94a15222f510a04..a2fd181b5fa4936beabeea0f71b8eb64eecfdd0e 100644 (file)
 {
-    "Jirafeau, your web file repository": "Jirafeau — ваша вэб-сховішча файлаў",
-    "Select a file": "Абраць файл",
-    "Send": "Адправіць",
-    "Uploading ...": "Адпраўка…",
-    "One time download": "Аднаразовая спампоўка",
-    "Password": "Пароль",
-    "Time limit": "Абмежаванне па часе",
-    "Maximum file size": "Максімальны памер файла",
-    "powered by Open-Source project Jirafeau": "працуе на праекце з адкрытым кодам Jirafeau",
-    "Made with": "Зроблена з",
-    "Jirafeau Project": "Праект Jirafeau",
-    "One minute": "Адна хвіля",
-    "One hour": "Адна гадзіна",
-    "One day": "Адзін дзень",
-    "One week": "Адзін тыдзень",
-    "One month": "Адзін месяц",
-    "One quarter": "Адзін квартал",
-    "One year": "Адзін год",
-    "None": "Няма",
-    "Upload password": "Пароль загрузкі",
-    "File is too big": "Файл занадта вялікі",
-    "File size is limited to": "Памер файла абмежаваны",
-    "The file directory is not writable": "Каталог файлаў без магчамасці запісу",
-    "The link directory is not writable": "Каталог спасылак без магчымасці запісу",
-    "The async directory is not writable!": "Асінхронны каталог без магчымасці запісу!",
-    "Installer script still present": "Скрыпт усталёўшчыка усё адно прысутнічае",
-    "Please make sure to delete the installer script \"install.php\" before continuing.": "Калі ласка, не забудзьцеся выдаліць скрыпт усталёўшчыка «install.php» перад прадаўжэннем.",
-    "An error occurred.": "Узнікла памылка.",
-    "File uploaded !": "Файл загружаны!",
-    "Download page": "Старонкі спампоўкі",
-    "This file is valid until the following date": "Гэты файл будзе даступны да наступнай даты",
-    "View link": "Паглядзець спасылку",
-    "Direct download link": "Спасылка прамой спампоўкі",
-    "Delete link": "Выдаліць спасылку",
-    "Download": "Спампоўка",
-    "Preview": "Папярэдні прагляд",
-    "Sorry, the requested file is not found": "Прабачце, запытаны файл не знойдзены",
-    "File not available.": "Файл не даступны.",
-    "File has been deleted.": "Файл быў выдалены.",
-    "The time limit of this file has expired.": "Абмежаванне па часе для гэтага файла скончылася.",
-    "Password protection": "Абарона паролем",
-    "Give the password of this file": "Задайце пароль для гэтага файла",
-    "Access denied": "Доступ забаронены",
-    "You are about to download": "Ваша спампоўка зараз пачнецца",
-    "By using our services, you accept our": "Выкарыстоўваючы нашы паслугі, вы прымаеце",
-    "Terms of Service": "Умовы абслугоўвання",
-    "Warning, this file will self-destruct after being read": "Увага, гэты файл будзе аўтаматычна выдалены пасля прачытання",
-    "Internal error during file creation.": "Унутраная памылка падчас стварэння файла.",
-    "This file was generated by the install process. You can edit it. Please see config.original.php to understand the configuration items.": "Гэты файл быў створаны падчас усталявання. Вы можаце яго рэдагаваць. Калі ласка, загляніце ў config.original.php, каб зразумець элементы канфігурацыі.",
-    "The following directory could not be created": "Наступны каталог не можа быць створаны",
-    "You should create this directory manually.": "Вам неабходна стварыць гэты каталог уручную.",
-    "The following directory is not writable": "Наступны каталог без магчымасці запісу",
-    "You should give the write permission to the web server on this directory.": "Вым неабходна даць правы вэб-серверу на запіс у гэты каталог.",
-    "Here is a solution": "Вось рашэнне",
-    "The local configuration file could not be created. Create a <code>lib/config.local.php</code> file and give the write permission to the web server (preferred solution), or give the write permission to the web server on the <code>lib</code> directory.": "Файл лакальнай канфігурацыі не можа быць створаны. Стварыце файл <code>lib/config.local.php</code> і дайце вэб-серверу правы на запіс у яго (лепшы варыянт) ці дайце дайце вэб-серверу правы на запіс у каталог <code>lib</code>.",
-    "The local configuration is not writable by the web server. Give the write permission to the web server on the '<code>lib/config.local.php</code> file.": "Лакальная канфігурацыя не можа быць запісаныя вэб-серверам. Дайце вэб-серверу правы на запіс у файл <code>lib/config.local.php</code>.",
-    "Installation of Jirafeau": "Усталяванне Jirafeau",
-    "step": "крок",
-    "out of": "з",
-    "Administration password": "Пароль адміністратара",
-    "Finalisation": "Завяршэнне",
-    "Jirafeau is setting the website according to the configuration you provided.": "Jirafeau наджвае вэб-сайт у адпаведнасці з канфігурацыяй, што вы прадаставілі.",
-    "Previous step": "Папярэдні крок",
-    "Retry this step": "Паўтарыць гэты крок",
-    "Jirafeau is now fully operational": "Jirafeau цяпер поўнасцю гатовы",
-    "Information": "Інфармацыя",
-    "The base address of Jirafeau is the first part of the URL, until (and including) the last slash. For example: \"http://www.example.com/\". Do not forget the trailing slash!": "Асноўны адрас Jurafeau — гэта частка URL да апошняга слэша ўключна. Напрыклад: «http://www.example.com/». Не забудце слэш у канцы!",
-    "Base address": "Асноўны адрас",
-    "The data directory is where your files and information about your files will be stored. You should put it outside your web site, or at least restrict the access to this directory. Do not forget the trailing slash!": "Каталог даных — гэта месца, дзе будуць захоўвацца вашы файлы і інфармацыя аб іх. Вы павінны размясціць яго за межамі вэб-сайта ці, па меншай меры, абмежаваць доступ да гэтага каталога. Не забудце слэш у канцы!",
-    "Data directory": "Каталог даных",
-    "Jirafeau is internationalised. Choose a specific langage or choose Automatic (langage is provided by user's browser).": "Jirafeau інтэрнацыяналізаваны. Абярыце канкрэтную мовы ці аўтаматычны варыянт (мова забяспечваецца браўзерам карыстальніка).",
-    "Choose the default language": "Абярыце агаданую мову",
-    "Next step": "Наступны крок",
-    "Jirafeau has an administration interface (through admin.php). You can set a password to access the interface or leave it empty to disable the interface.": "Jirafeau мае інтэрфейс адміністравання (праз admin.php). Вы можаце задаць пароль для доступа да інтэфейса ці пакінуць яго пустым, каб адключыць інтэрфейс.",
-    "Sorry, the admin interface is not enabled.": "Прабачце, але інтэрфейс адміністравання адключаны.",
-    "Sorry, you are not authenticated on admin interface.": "Прабачце, але вы не прайшлі аўтэнтыфікацыю ў інтэрфейс адміністравання.",
-    "Login": "Лагін",
-    "Wrong password.": "Няправільны пароль.",
-    "Admin interface": "Інтэрфейс адміністравання",
-    "Clean expired files": "Ачысціць састарэлыя файлы",
-    "Clean old unfinished transfers": "Ачысціць састарэлыя незавершаныя перадачы",
-    "Clean": "Ачысціць",
-    "Search files by name": "Шукать файлы па назве",
-    "Search": "Пошук",
-    "List all files": "Спіс усіх файлаў",
-    "List": "Спіс",
-    "Actions": "Дзеянні",
-    "Search files by file hash": "Шукаць файлы па хэшу",
-    "Search a specific link": "Шукаць канкрэтную спасылку",
-    "Number of cleaned files": "Колькасць ачышчаных файлаў",
-    "Logout": "Выхад",
-    "You are now loggued out": "Вы выйшлі",
-    "Link deleted": "Спасылка выдаленая",
-    "Filename": "Назва файла",
-    "file": "файл",
-    "link": "спасылка",
-    "Type": "Тып",
-    "Size": "Памер",
-    "Expire": "Застарэе",
-    "Onetime": "Аднойчы",
-    "Upload date": "Дата запампоўкі",
-    "Origin": "Крыніца",
-    "Action": "Дзеянне",
-    "Del link": "Выдаліць спасылку",
-    "Del file and links": "Выдаліць файл і спасылкі",
-    "Deleted links": "Выдаленыя спасылкі",
-    "year": "год",
-    "day": "дзень",
-    "minute": "хвіліна",
-    "hour": "гадзіна",
-    "second": "секунда",
-    "less than a second": "менш секунды"
+    "JI_WEB_RE": "Jirafeau — ваша вэб-сховішча файлаў",
+    "SEL_FILE": "Абраць файл",
+    "SEND": "Адправіць",
+    "UP": "Адпраўка…",
+    "ONE_TIME_DL": "Аднаразовая спампоўка",
+    "PSW": "Пароль",
+    "TIME_LIM": "Абмежаванне па часе",
+    "MAX_FILE_SIZE": "Максімальны памер файла",
+    "POWERED_BY": "працуе на праекце з адкрытым кодам Jirafeau",
+    "MADE_WITH": "Зроблена з",
+    "JI_PROJECT": "Праект Jirafeau",
+    "1_MIN": "Адна хвіля",
+    "1_H": "Адна гадзіна",
+    "1_D": "Адзін дзень",
+    "1_W": "Адзін тыдзень",
+    "1_M": "Адзін месяц",
+    "1_Q": "Адзін квартал",
+    "1_Y": "Адзін год",
+    "NONE": "Няма",
+    "UP_PSW": "Пароль загрузкі",
+    "2_BIG": "Файл занадта вялікі",
+    "FILE_LIM": "Памер файла абмежаваны",
+    "FILE_DIR_W": "Каталог файлаў без магчамасці запісу",
+    "LINK_DIR_W": "Каталог спасылак без магчымасці запісу",
+    "ASYNC_DIR_W": "Асінхронны каталог без магчымасці запісу!",
+    "INSTALL_SCRIPT_HERE": "Скрыпт усталёўшчыка усё адно прысутнічае",
+    "ERR_OCC": "Узнікла памылка.",
+    "FILE_UP": "Файл загружаны!",
+    "DL_PAGE": "Старонкі спампоўкі",
+    "VALID_UNTIL": "Гэты файл будзе даступны да наступнай даты",
+    "VIEW_LINK": "Паглядзець спасылку",
+    "DIRECT_DL": "Спасылка прамой спампоўкі",
+    "DELETE_LINK": "Выдаліць спасылку",
+    "DL": "Спампоўка",
+    "PREVIEW": "Папярэдні прагляд",
+    "FILE_404": "Прабачце, запытаны файл не знойдзены",
+    "FILE_NOT_AVAIL": "Файл не даступны.",
+    "FILE_DELETED": "Файл быў выдалены.",
+    "FILE_EXPIRED": "Абмежаванне па часе для гэтага файла скончылася.",
+    "PSW_PROTEC": "Абарона паролем",
+    "GIMME_PSW": "Задайце пароль для гэтага файла",
+    "ACCESS_KO": "Доступ забаронены",
+    "NOW_DOWNLOADING": "Ваша спампоўка зараз пачнецца",
+    "USING_SERIVCE": "Выкарыстоўваючы нашы паслугі, вы прымаеце",
+    "TOS": "Умовы абслугоўвання",
+    "AUTO_DESTRUCT": "Увага, гэты файл будзе аўтаматычна выдалены пасля прачытання",
+    "INTERNAL_ERROR_DEL": "Унутраная памылка падчас стварэння файла.",
+    "CONF_AUTOGEN_COMMENT": "Гэты файл быў створаны падчас усталявання. Вы можаце яго рэдагаваць. Калі ласка, загляніце ў config.original.php, каб зразумець элементы канфігурацыі.",
+    "CANNOT_CREATE_DIR": "Наступны каталог не можа быць створаны",
+    "MANUAL_CREATE": "Вам неабходна стварыць гэты каталог уручную.",
+    "DIR_NOT_W": "Наступны каталог без магчымасці запісу",
+    "GIMME_W": "Вым неабходна даць правы вэб-серверу на запіс у гэты каталог.",
+    "HERE_SOLUTION": "Вось рашэнне",
+    "CONF_SOLUTION": "Файл лакальнай канфігурацыі не можа быць створаны. Стварыце файл <code>lib/config.local.php</code> і дайце вэб-серверу правы на запіс у яго (лепшы варыянт) ці дайце дайце вэб-серверу правы на запіс у каталог <code>lib</code>.",
+    "CONF_SOLUTION_2": "Лакальная канфігурацыя не можа быць запісаныя вэб-серверам. Дайце вэб-серверу правы на запіс у файл <code>lib/config.local.php</code>.",
+    "JI_INSTALL": "Усталяванне Jirafeau",
+    "STEP": "крок",
+    "OUT_OF": "з",
+    "ADMIN_PSW": "Пароль адміністратара",
+    "FINALIZATION": "Завяршэнне",
+    "SETTING_UP": "Jirafeau наджвае вэб-сайт у адпаведнасці з канфігурацыяй, што вы прадаставілі.",
+    "PREV_STEP": "Папярэдні крок",
+    "RETRY_STEP": "Паўтарыць гэты крок",
+    "JI_FONCTIONAL": "Jirafeau цяпер поўнасцю гатовы",
+    "INFO": "Інфармацыя",
+    "BASE_ADDR_INFO": "Асноўны адрас Jurafeau — гэта частка URL да апошняга слэша ўключна. Напрыклад: «http://www.example.com/». Не забудце слэш у канцы!",
+    "BASE_ADDR": "Асноўны адрас",
+    "DATA_DIR_EXPLAINATION": "Каталог даных — гэта месца, дзе будуць захоўвацца вашы файлы і інфармацыя аб іх. Вы павінны размясціць яго за межамі вэб-сайта ці, па меншай меры, абмежаваць доступ да гэтага каталога. Не забудце слэш у канцы!",
+    "DATA_DIR": "Каталог даных",
+    "JI_HAZ_LANGAGES": "Jirafeau інтэрнацыяналізаваны. Абярыце канкрэтную мовы ці аўтаматычны варыянт (мова забяспечваецца браўзерам карыстальніка).",
+    "DEF_LANGUAGE": "Абярыце агаданую мову",
+    "NEXT_STEP": "Наступны крок",
+    "ADMIN_INTERFACE_INFO": "Jirafeau мае інтэрфейс адміністравання (праз admin.php). Вы можаце задаць пароль для доступа да інтэфейса ці пакінуць яго пустым, каб адключыць інтэрфейс.",
+    "NO_ADMIN": "Прабачце, але інтэрфейс адміністравання адключаны.",
+    "NO_ADMIN_AUTH": "Прабачце, але вы не прайшлі аўтэнтыфікацыю ў інтэрфейс адміністравання.",
+    "LOGIN": "Лагін",
+    "BAD_PSW": "Няправільны пароль.",
+    "ADMIN_INTERFACE": "Інтэрфейс адміністравання",
+    "CLEAN_EXPIRED": "Ачысціць састарэлыя файлы",
+    "CLEAN_INCOMPLETE": "Ачысціць састарэлыя незавершаныя перадачы",
+    "CLEAN": "Ачысціць",
+    "SEARCH_NAME": "Шукать файлы па назве",
+    "SEARCH": "Пошук",
+    "LS_FILES": "Спіс усіх файлаў",
+    "LIST": "Спіс",
+    "ACTIONS": "Дзеянні",
+    "SEARH_BY_HASH": "Шукаць файлы па хэшу",
+    "SEARCH_LINK": "Шукаць канкрэтную спасылку",
+    "CLEANED_FILES_CNT": "Колькасць ачышчаных файлаў",
+    "LOGOUT": "Выхад",
+    "NOW_LOGOUT": "Вы выйшлі",
+    "LINK_DELETED": "Спасылка выдаленая",
+    "FILENAME": "Назва файла",
+    "FILE": "файл",
+    "LINK": "спасылка",
+    "TYPE": "Тып",
+    "SIZE": "Памер",
+    "EXPIRE": "Застарэе",
+    "ONETIME": "Аднойчы",
+    "UPLOAD_DATE": "Дата запампоўкі",
+    "ORIGIN": "Крыніца",
+    "ACTION": "Дзеянне",
+    "DEL_LINK": "Выдаліць спасылку",
+    "DEL_FILE_LINKS": "Выдаліць файл і спасылкі",
+    "DELETED_LINKS": "Выдаленыя спасылкі",
+    "YEAR": "год",
+    "DAY": "дзень",
+    "MINUTE": "хвіліна",
+    "HOUR": "гадзіна",
+    "SECOND": "секунда",
+    "LESS_1_SEC": "менш секунды"
 }
index 92ff0da1f095fa8a2147d38fbaeb46ab0b863da1..1f16d476bdc4b624044ff4a25123edeec9425c9e 100644 (file)
 {
-    "Access denied": "",
-    "Action": "",
-    "Actions": "",
-    "Admin interface": "",
-    "Administration password": "",
-    "An error occurred.": "",
-    "Base address": "",
-    "By using our services, you accept our": "",
-    "Choose the default language": "",
-    "Clean": "",
-    "Clean expired files": "",
-    "Clean old unfinished transfers": "",
-    "Data directory": "",
-    "Del file and links": "",
-    "Del link": "",
-    "Delete link": "",
-    "Deleted links": "",
-    "Direct download link": "",
-    "Download": "",
-    "Download page": "",
-    "Expire": "",
-    "File has been deleted.": "",
-    "File is too big": "",
-    "File not available.": "",
-    "File size is limited to": "",
-    "File uploaded !": "",
-    "Filename": "",
-    "Finalisation": "",
-    "Give the password of this file": "",
-    "Here is a solution": "",
-    "Information": "",
-    "Installation of Jirafeau": "",
-    "Installer script still present": "",
-    "Internal error during file creation.": "",
-    "Jirafeau Project": "",
-    "Jirafeau has an administration interface (through admin.php). You can set a password to access the interface or leave it empty to disable the interface.": "",
-    "Jirafeau is internationalised. Choose a specific langage or choose Automatic (langage is provided by user's browser).": "",
-    "Jirafeau is now fully operational": "",
-    "Jirafeau is setting the website according to the configuration you provided.": "",
-    "Jirafeau, your web file repository": "",
-    "Link deleted": "",
-    "List": "",
-    "List all files": "",
-    "Login": "",
-    "Logout": "",
-    "Maximum file size": "",
-    "Next step": "",
-    "None": "",
-    "Number of cleaned files": "",
-    "One day": "",
-    "One hour": "",
-    "One minute": "",
-    "One month": "",
-    "One time download": "",
-    "One week": "",
-    "One year": "",
-    "Onetime": "",
-    "Origin": "",
-    "Password": "",
-    "Password protection": "",
-    "Please make sure to delete the installer script \"install.php\" before continuing.": "",
-    "Preview": "",
-    "Previous step": "",
-    "Retry this step": "",
-    "Search": "",
-    "Search a specific link": "",
-    "Search files by file hash": "",
-    "Search files by name": "",
-    "Select a file": "",
-    "Send": "",
-    "Size": "",
-    "Sorry, the admin interface is not enabled.": "",
-    "Sorry, the requested file is not found": "",
-    "Sorry, you are not authenticated on admin interface.": "",
+    "ACCESS_KO": "",
+    "ACTION": "",
+    "ACTIONS": "",
+    "ADMIN_INTERFACE": "",
+    "ADMIN_PSW": "",
+    "ERR_OCC": "",
+    "BASE_ADDR": "",
+    "USING_SERIVCE": "",
+    "DEF_LANGUAGE": "",
+    "CLEAN": "",
+    "CLEAN_EXPIRED": "",
+    "CLEAN_INCOMPLETE": "",
+    "DATA_DIR": "",
+    "DEL_FILE_LINKS": "",
+    "DEL_LINK": "",
+    "DELETE_LINK": "",
+    "DELETED_LINKS": "",
+    "DIRECT_DL": "",
+    "DL": "",
+    "DL_PAGE": "",
+    "EXPIRE": "",
+    "FILE_DELETED": "",
+    "2_BIG": "",
+    "FILE_NOT_AVAIL": "",
+    "FILE_LIM": "",
+    "FILE_UP": "",
+    "FILENAME": "",
+    "FINALIZATION": "",
+    "GIMME_PSW": "",
+    "HERE_SOLUTION": "",
+    "INFO": "",
+    "JI_INSTALL": "",
+    "INSTALL_SCRIPT_HERE": "",
+    "INTERNAL_ERROR_DEL": "",
+    "JI_PROJECT": "",
+    "ADMIN_INTERFACE_INFO": "",
+    "JI_HAZ_LANGAGES": "",
+    "JI_FONCTIONAL": "",
+    "SETTING_UP": "",
+    "JI_WEB_RE": "",
+    "LINK_DELETED": "",
+    "LIST": "",
+    "LS_FILES": "",
+    "LOGIN": "",
+    "LOGOUT": "",
+    "MAX_FILE_SIZE": "",
+    "NEXT_STEP": "",
+    "NONE": "",
+    "CLEANED_FILES_CNT": "",
+    "1_D": "",
+    "1_H": "",
+    "1_MIN": "",
+    "1_M": "",
+    "ONE_TIME_DL": "",
+    "1_W": "",
+    "1_Y": "",
+    "ONETIME": "",
+    "ORIGIN": "",
+    "PSW": "",
+    "PSW_PROTEC": "",
+    "PREVIEW": "",
+    "PREV_STEP": "",
+    "RETRY_STEP": "",
+    "SEARCH": "",
+    "SEARCH_LINK": "",
+    "SEARH_BY_HASH": "",
+    "SEARCH_NAME": "",
+    "SEL_FILE": "",
+    "SEND": "",
+    "SIZE": "",
+    "NO_ADMIN": "",
+    "FILE_404": "",
+    "NO_ADMIN_AUTH": "",
     "Term Of Service": "",
-    "The async directory is not writable!": "",
-    "The base address of Jirafeau is the first part of the URL, until (and including) the last slash. For example: \"http://www.example.com/\". Do not forget the trailing slash!": "",
-    "The data directory is where your files and information about your files will be stored. You should put it outside your web site, or at least restrict the access to this directory. Do not forget the trailing slash!": "",
-    "The file directory is not writable": "",
-    "The following directory could not be created": "",
-    "The following directory is not writable": "",
-    "The link directory is not writable": "",
-    "The local configuration file could not be created. Create a <code>lib/config.local.php</code> file and give the write permission to the web server (preferred solution), or give the write permission to the web server on the <code>lib</code> directory.": "",
-    "The local configuration is not writable by the web server. Give the write permission to the web server on the '<code>lib/config.local.php</code> file.": "",
-    "The time limit of this file has expired.": "",
-    "This file is valid until the following date": "",
-    "This file was generated by the install process. You can edit it. Please see config.original.php to understand the configuration items.": "",
-    "Time limit": "",
-    "Type": "",
-    "Upload date": "",
-    "Upload password": "",
-    "Uploading ...": "",
-    "View link": "",
-    "Warning, this file will self-destruct after being read": "",
-    "Wrong password.": "",
-    "You are about to download": "",
-    "You are now loggued out": "",
-    "You should create this directory manually.": "",
-    "You should give the write permission to the web server on this directory.": "",
-    "day": "",
-    "file": "",
-    "hour": "",
-    "less than a second": "",
-    "link": "",
-    "minute": "",
-    "out of": "",
-    "powered by Open-Source project Jirafeau": "",
-    "second": "",
-    "step": "",
-    "year": ""
-}
\ No newline at end of file
+    "ASYNC_DIR_W": "",
+    "BASE_ADDR_INFO": "",
+    "DATA_DIR_EXPLAINATION": "",
+    "FILE_DIR_W": "",
+    "CANNOT_CREATE_DIR": "",
+    "DIR_NOT_W": "",
+    "LINK_DIR_W": "",
+    "CONF_SOLUTION": "",
+    "CONF_SOLUTION_2": "",
+    "FILE_EXPIRED": "",
+    "VALID_UNTIL": "",
+    "CONF_AUTOGEN_COMMENT": "",
+    "TIME_LIM": "",
+    "TYPE": "",
+    "UPLOAD_DATE": "",
+    "UP_PSW": "",
+    "UP": "",
+    "VIEW_LINK": "",
+    "AUTO_DESTRUCT": "",
+    "BAD_PSW": "",
+    "NOW_DOWNLOADING": "",
+    "NOW_LOGOUT": "",
+    "MANUAL_CREATE": "",
+    "GIMME_W": "",
+    "DAY": "",
+    "FILE": "",
+    "HOUR": "",
+    "LESS_1_SEC": "",
+    "LINK": "",
+    "MINUTE": "",
+    "OUT_OF": "",
+    "POWERED_BY": "",
+    "SECOND": "",
+    "STEP": "",
+    "YEAR": ""
+}
index b0729d0fa551d75c5ec97999e962ca07233ebdcf..7139bb86b08abd424d86ca1a0ee1f3b0380a4f0c 100644 (file)
 {
-    "Jirafeau, your web file repository": "",
-    "Select a file": "",
-    "Send": "",
-    "Uploading ...": "",
-    "One time download": "",
-    "Password": "",
-    "Time limit": "",
-    "Maximum file size": "",
-    "powered by Open-Source project Jirafeau": "",
-    "Made with": "",
-    "Jirafeau Project": "",
-    "One minute": "",
-    "One hour": "",
-    "One day": "",
-    "One week": "",
-    "One month": "",
-    "One quarter": "",
-    "One year": "",
-    "None": "",
-    "Upload password": "",
-    "File is too big": "",
-    "File size is limited to": "",
-    "The file directory is not writable": "",
-    "The link directory is not writable": "",
-    "The async directory is not writable!": "",
-    "Installer script still present": "",
-    "Please make sure to delete the installer script \"install.php\" before continuing.": "",
-    "An error occurred.": "",
-    "File uploaded !": "",
-    "Download page": "",
-    "This file is valid until the following date": "",
-    "View link": "",
-    "Direct download link": "",
-    "Delete link": "",
-    "Download": "",
-    "Preview": "",
-    "Sorry, the requested file is not found": "",
-    "File not available.": "",
-    "File has been deleted.": "",
-    "The time limit of this file has expired.": "",
-    "Password protection": "",
-    "Give the password of this file": "",
-    "Access denied": "",
-    "You are about to download": "",
-    "By using our services, you accept our": "",
-    "Terms of Service": "",
-    "Warning, this file will self-destruct after being read": "",
-    "Internal error during file creation.": "",
+    "JI_WEB_RE": "",
+    "SEL_FILE": "",
+    "SEND": "",
+    "UP": "",
+    "ONE_TIME_DL": "",
+    "PSW": "",
+    "TIME_LIM": "",
+    "MAX_FILE_SIZE": "",
+    "POWERED_BY": "",
+    "MADE_WITH": "",
+    "JI_PROJECT": "",
+    "1_MIN": "",
+    "1_H": "",
+    "1_D": "",
+    "1_W": "",
+    "1_M": "",
+    "1_Q": "",
+    "1_Y": "",
+    "NONE": "",
+    "UP_PSW": "",
+    "2_BIG": "",
+    "FILE_LIM": "",
+    "FILE_DIR_W": "",
+    "LINK_DIR_W": "",
+    "ASYNC_DIR_W": "",
+    "INSTALL_SCRIPT_HERE": "",
+    "ERR_OCC": "",
+    "FILE_UP": "",
+    "DL_PAGE": "",
+    "VALID_UNTIL": "",
+    "VIEW_LINK": "",
+    "DIRECT_DL": "",
+    "DELETE_LINK": "",
+    "DL": "",
+    "PREVIEW": "",
+    "FILE_404": "",
+    "FILE_NOT_AVAIL": "",
+    "FILE_DELETED": "",
+    "FILE_EXPIRED": "",
+    "PSW_PROTEC": "",
+    "GIMME_PSW": "",
+    "ACCESS_KO": "",
+    "NOW_DOWNLOADING": "",
+    "USING_SERIVCE": "",
+    "TOS": "",
+    "AUTO_DESTRUCT": "",
+    "INTERNAL_ERROR_DEL": "",
+    "CONF_AUTOGEN_COMMENT": "",
+    "CANNOT_CREATE_DIR": "",
+    "MANUAL_CREATE": "",
+    "DIR_NOT_W": "",
+    "GIMME_W": "",
+    "HERE_SOLUTION": "",
+    "CONF_SOLUTION": "",
+    "CONF_SOLUTION_2": "",
+    "JI_INSTALL": "",
+    "STEP": "",
+    "OUT_OF": "",
+    "FINALIZATION": "",
+    "SETTING_UP": "",
+    "PREV_STEP": "",
+    "RETRY_STEP": "",
+    "JI_FONCTIONAL": "",
+    "INFO": "",
+    "BASE_ADDR_INFO": "",
+    "BASE_ADDR": "",
+    "DATA_DIR_EXPLAINATION": "",
+    "DATA_DIR": "",
+    "JI_HAZ_LANGAGES": "",
+    "DEF_LANGUAGE": "",
+    "NEXT_STEP": "",
+    "ADMIN_INTERFACE_INFO": "",
+    "ADMIN_PSW": "",
 
-    "This file was generated by the install process. You can edit it. Please see config.original.php to understand the configuration items.": "",
-    "The following directory could not be created": "",
-    "You should create this directory manually.": "",
-    "The following directory is not writable": "",
-    "You should give the write permission to the web server on this directory.": "",
-    "Here is a solution": "",
-    "The local configuration file could not be created. Create a <code>lib/config.local.php</code> file and give the write permission to the web server (preferred solution), or give the write permission to the web server on the <code>lib</code> directory.": "",
-    "The local configuration is not writable by the web server. Give the write permission to the web server on the '<code>lib/config.local.php</code> file.": "",
-    "Installation of Jirafeau": "",
-    "step": "",
-    "out of": "",
-    "Administration password": "",
-    "Finalisation": "",
-    "Jirafeau is setting the website according to the configuration you provided.": "",
-    "Previous step": "",
-    "Retry this step": "",
-    "Jirafeau is now fully operational": "",
-    "Information": "",
-    "The base address of Jirafeau is the first part of the URL, until (and including) the last slash. For example: \"http://www.example.com/\". Do not forget the trailing slash!": "",
-    "Base address": "",
-    "The data directory is where your files and information about your files will be stored. You should put it outside your web site, or at least restrict the access to this directory. Do not forget the trailing slash!": "",
-    "Data directory": "",
-    "Jirafeau is internationalised. Choose a specific langage or choose Automatic (langage is provided by user's browser).": "",
-    "Choose the default language": "",
-    "Next step": "",
-    "Jirafeau has an administration interface (through admin.php). You can set a password to access the interface or leave it empty to disable the interface.": "",
-    "Administration password": "",
-
-    "Sorry, the admin interface is not enabled.": "",
-    "Sorry, you are not authenticated on admin interface.": "",
-    "Login": "",
-    "Wrong password.": "",
-    "Admin interface": "",
-    "Clean expired files": "",
-    "Clean old unfinished transfers": "",
-    "Clean": "",
-    "Search files by name": "",
-    "Search": "",
-    "List all files": "",
-    "List": "",
-    "Actions": "",
-    "Search files by file hash": "",
-    "Search a specific link": "",
-    "Number of cleaned files": "",
-    "Logout": "",
-    "You are now loggued out": "",
-    "Link deleted": "",
-    "Filename": "",
-    "file": "",
-    "link": "",
-    "Type": "",
-    "Size": "",
-    "Expire": "",
-    "Onetime": "",
-    "Upload date": "",
-    "Origin": "",
-    "Action": "",
-    "Del link": "",
-    "Del file and links": "",
-    "Deleted links": "",
-    "year": "",
-    "day": "",
-    "minute": "",
-    "hour": "",
-    "second": "",
-    "less than a second": ""
+    "NO_ADMIN": "",
+    "NO_ADMIN_AUTH": "",
+    "LOGIN": "",
+    "BAD_PSW": "",
+    "ADMIN_INTERFACE": "",
+    "CLEAN_EXPIRED": "",
+    "CLEAN_INCOMPLETE": "",
+    "CLEAN": "",
+    "SEARCH_NAME": "",
+    "SEARCH": "",
+    "LS_FILES": "",
+    "LIST": "",
+    "ACTIONS": "",
+    "SEARH_BY_HASH": "",
+    "SEARCH_LINK": "",
+    "CLEANED_FILES_CNT": "",
+    "LOGOUT": "",
+    "NOW_LOGOUT": "",
+    "LINK_DELETED": "",
+    "FILENAME": "",
+    "FILE": "",
+    "LINK": "",
+    "TYPE": "",
+    "SIZE": "",
+    "EXPIRE": "",
+    "ONETIME": "",
+    "UPLOAD_DATE": "",
+    "ORIGIN": "",
+    "ACTION": "",
+    "DEL_LINK": "",
+    "DEL_FILE_LINKS": "",
+    "DELETED_LINKS": "",
+    "YEAR": "",
+    "DAY": "",
+    "MINUTE": "",
+    "HOUR": "",
+    "SECOND": "",
+    "LESS_1_SEC": ""
 }
index b0729d0fa551d75c5ec97999e962ca07233ebdcf..9abc19cb04aa1652bc25e699ee22b9c912e5daa1 100644 (file)
 {
-    "Jirafeau, your web file repository": "",
-    "Select a file": "",
-    "Send": "",
-    "Uploading ...": "",
-    "One time download": "",
-    "Password": "",
-    "Time limit": "",
-    "Maximum file size": "",
-    "powered by Open-Source project Jirafeau": "",
-    "Made with": "",
-    "Jirafeau Project": "",
-    "One minute": "",
-    "One hour": "",
-    "One day": "",
-    "One week": "",
-    "One month": "",
-    "One quarter": "",
-    "One year": "",
-    "None": "",
-    "Upload password": "",
-    "File is too big": "",
-    "File size is limited to": "",
-    "The file directory is not writable": "",
-    "The link directory is not writable": "",
-    "The async directory is not writable!": "",
-    "Installer script still present": "",
-    "Please make sure to delete the installer script \"install.php\" before continuing.": "",
-    "An error occurred.": "",
-    "File uploaded !": "",
-    "Download page": "",
-    "This file is valid until the following date": "",
-    "View link": "",
-    "Direct download link": "",
-    "Delete link": "",
-    "Download": "",
-    "Preview": "",
-    "Sorry, the requested file is not found": "",
-    "File not available.": "",
-    "File has been deleted.": "",
-    "The time limit of this file has expired.": "",
-    "Password protection": "",
-    "Give the password of this file": "",
-    "Access denied": "",
-    "You are about to download": "",
-    "By using our services, you accept our": "",
-    "Terms of Service": "",
-    "Warning, this file will self-destruct after being read": "",
-    "Internal error during file creation.": "",
+    "JI_WEB_RE": "",
+    "SEL_FILE": "",
+    "SEND": "",
+    "UP": "",
+    "ONE_TIME_DL": "",
+    "PSW": "",
+    "TIME_LIM": "",
+    "MAX_FILE_SIZE": "",
+    "POWERED_BY": "",
+    "MADE_WITH": "",
+    "JI_PROJECT": "",
+    "1_MIN": "",
+    "1_H": "",
+    "1_D": "",
+    "1_W": "",
+    "1_M": "",
+    "1_Q": "",
+    "1_Y": "",
+    "NONE": "",
+    "UP_PSW": "",
+    "2_BIG": "",
+    "FILE_LIM": "",
+    "FILE_DIR_W": "",
+    "LINK_DIR_W": "",
+    "ASYNC_DIR_W": "",
+    "INSTALL_SCRIPT_HERE": "",
+    "ERR_OCC": "",
+    "FILE_UP": "",
+    "DL_PAGE": "",
+    "VALID_UNTIL": "",
+    "VIEW_LINK": "",
+    "DIRECT_DL": "",
+    "DELETE_LINK": "",
+    "DL": "",
+    "PREVIEW": "",
+    "FILE_404": "",
+    "FILE_NOT_AVAIL": "",
+    "FILE_DELETED": "",
+    "FILE_EXPIRED": "",
+    "PSW_PROTEC": "",
+    "GIMME_PSW": "",
+    "ACCESS_KO": "",
+    "NOW_DOWNLOADING": "",
+    "USING_SERIVCE": "",
+    "TOS": "",
+    "AUTO_DESTRUCT": "",
+    "INTERNAL_ERROR_DEL": "",
+    "CONF_AUTOGEN_COMMENT": "",
+    "CANNOT_CREATE_DIR": "",
+    "MANUAL_CREATE": "",
+    "DIR_NOT_W": "",
+    "GIMME_W": "",
+    "HERE_SOLUTION": "",
+    "CONF_SOLUTION": "",
+    "CONF_SOLUTION_2": "",
+    "JI_INSTALL": "",
+    "STEP": "",
+    "OUT_OF": "",
+    "FINALIZATION": "",
+    "SETTING_UP": "",
+    "PREV_STEP": "",
+    "RETRY_STEP": "",
+    "JI_FONCTIONAL": "",
+    "INFO": "",
+    "BASE_ADDR_INFO": "",
+    "BASE_ADDR": "",
+    "DATA_DIR_EXPLAINATION": "",
+    "DATA_DIR": "",
+    "JI_HAZ_LANGAGES": "",
+    "DEF_LANGUAGE": "",
+    "NEXT_STEP": "",
+    "ADMIN_INTERFACE_INFO": "",
+    "ADMIN_PSW": "",
 
-    "This file was generated by the install process. You can edit it. Please see config.original.php to understand the configuration items.": "",
-    "The following directory could not be created": "",
-    "You should create this directory manually.": "",
-    "The following directory is not writable": "",
-    "You should give the write permission to the web server on this directory.": "",
-    "Here is a solution": "",
-    "The local configuration file could not be created. Create a <code>lib/config.local.php</code> file and give the write permission to the web server (preferred solution), or give the write permission to the web server on the <code>lib</code> directory.": "",
-    "The local configuration is not writable by the web server. Give the write permission to the web server on the '<code>lib/config.local.php</code> file.": "",
-    "Installation of Jirafeau": "",
-    "step": "",
-    "out of": "",
-    "Administration password": "",
-    "Finalisation": "",
-    "Jirafeau is setting the website according to the configuration you provided.": "",
-    "Previous step": "",
-    "Retry this step": "",
-    "Jirafeau is now fully operational": "",
-    "Information": "",
-    "The base address of Jirafeau is the first part of the URL, until (and including) the last slash. For example: \"http://www.example.com/\". Do not forget the trailing slash!": "",
-    "Base address": "",
-    "The data directory is where your files and information about your files will be stored. You should put it outside your web site, or at least restrict the access to this directory. Do not forget the trailing slash!": "",
-    "Data directory": "",
-    "Jirafeau is internationalised. Choose a specific langage or choose Automatic (langage is provided by user's browser).": "",
-    "Choose the default language": "",
-    "Next step": "",
-    "Jirafeau has an administration interface (through admin.php). You can set a password to access the interface or leave it empty to disable the interface.": "",
-    "Administration password": "",
-
-    "Sorry, the admin interface is not enabled.": "",
-    "Sorry, you are not authenticated on admin interface.": "",
-    "Login": "",
-    "Wrong password.": "",
-    "Admin interface": "",
-    "Clean expired files": "",
-    "Clean old unfinished transfers": "",
-    "Clean": "",
-    "Search files by name": "",
-    "Search": "",
-    "List all files": "",
-    "List": "",
-    "Actions": "",
-    "Search files by file hash": "",
-    "Search a specific link": "",
-    "Number of cleaned files": "",
-    "Logout": "",
-    "You are now loggued out": "",
-    "Link deleted": "",
-    "Filename": "",
-    "file": "",
-    "link": "",
-    "Type": "",
-    "Size": "",
-    "Expire": "",
-    "Onetime": "",
-    "Upload date": "",
-    "Origin": "",
-    "Action": "",
-    "Del link": "",
-    "Del file and links": "",
-    "Deleted links": "",
-    "year": "",
-    "day": "",
-    "minute": "",
-    "hour": "",
-    "second": "",
-    "less than a second": ""
+    "NO_ADMIN": "",
+    "NO_ADMIN_AUTH": "",
+    "LOGIN": "",
+    "BAD_PSW": "",
+    "ADMIN_INTERFACE": "",
+    "CLEAN_EXPIRED": "",
+    "CLEAN_INCOMPLETE": "",
+    "CLEAN": "",
+    "SEARCH_NAME": "",
+    "SEARCH_LINK": "",
+    "LS_FILES": "",
+    "LIST": "",
+    "ACTIONS": "",
+    "SEARH_BY_HASH": "",
+    "SEARCH": "",
+    "CLEANED_FILES_CNT": "",
+    "LOGOUT": "",
+    "NOW_LOGOUT": "",
+    "LINK_DELETED": "",
+    "FILENAME": "",
+    "FILE": "",
+    "LINK": "",
+    "TYPE": "",
+    "SIZE": "",
+    "EXPIRE": "",
+    "ONETIME": "",
+    "UPLOAD_DATE": "",
+    "ORIGIN": "",
+    "ACTION": "",
+    "DEL_LINK": "",
+    "DEL_FILE_LINKS": "",
+    "DELETED_LINKS": "",
+    "YEAR": "",
+    "DAY": "",
+    "MINUTE": "",
+    "HOUR": "",
+    "SECOND": "",
+    "LESS_1_SEC": ""
 }
index 013a11163bf7c123181ced685e8d1819a85b1518..84e13153b017fb7d3c8c86f324f753279b27416d 100644 (file)
 {
-    "Access denied": "Přístup zamítnut",
-    "Action": "Akce",
-    "Actions": "Akce",
-    "Admin interface": "Administrační rozhraní",
-    "Administration password": "Heslo do administrace",
-    "An error occurred.": "Chyba.",
-    "Base address": "",
-    "By using our services, you accept our": "",
-    "Choose the default language": "Zvolte výchozí jazyk",
-    "Clean": "Vyčistit",
-    "Clean expired files": "Vyčistit soubory, které vypršely",
-    "Clean old unfinished transfers": "Vyčistit nedokončené přenosy",
-    "Data directory": "Data adresář",
-    "Del file and links": "",
-    "Del link": "",
-    "Delete link": "Odkaz na smazání",
-    "Deleted links": "Smazané odkazy",
-    "Direct download link": "Přímý odkaz na stažení",
-    "Download": "Stáhnout",
-    "Download page": "",
-    "Expire": "Vyprší",
-    "File has been deleted.": "Soubor byl smazán.",
-    "File is too big": "Soubor je moc velký",
-    "File not available.": "Soubor není dostupný.",
-    "File size is limited to": "Velikost souboru je limitována na",
-    "File uploaded !": "Soubor nahrán !",
-    "Filename": "Název souboru",
-    "Finalisation": "Dokončování",
-    "Give the password of this file": "Zadejte heslo k souboru",
-    "Here is a solution": "",
-    "Information": "Informace",
-    "Installation of Jirafeau": "",
-    "Installer script still present": "Instalační skript je stále přítomen",
-    "Internal error during file creation.": "Chyba při vytváření souboru.",
-    "Jirafeau Project": "Jirafeau projekt",
-    "Jirafeau has an administration interface (through admin.php). You can set a password to access the interface or leave it empty to disable the interface.": "",
-    "Jirafeau is internationalised. Choose a specific langage or choose Automatic (langage is provided by user's browser).": "Jirafeau je světový. Vyberte si jazyk nebo bude zvolen automaticky (podle uživatelského prohlížeče).",
-    "Jirafeau is now fully operational": "",
-    "Jirafeau is setting the website according to the configuration you provided.": "Jirafeau je nastaveno podle zadané konfigurace.",
-    "Jirafeau, your web file repository": "",
-    "Link deleted": "Odkaz smazán",
-    "List": "",
-    "List all files": "Zobrazit všechny soubory",
-    "Login": "Přihlášení",
-    "Logout": "Odhlásit",
-    "Maximum file size": "Maximální velikost souboru",
-    "Next step": "",
-    "None": "",
-    "Number of cleaned files": "Počet vyčištěných souborů",
-    "One day": "Den",
-    "One hour": "Hodinu",
-    "One minute": "Minutu",
-    "One month": "Měsíc",
-    "One time download": "Jednorázové stáhnutí",
-    "One week": "Týden",
-    "One year": "Rok",
-    "Onetime": "Jednorázové",
-    "Origin": "Původ",
-    "Password": "Heslo",
-    "Password protection": "",
-    "Please make sure to delete the installer script \"install.php\" before continuing.": "Prosím ujistěte se, že jste odstranili soubor \"install.php\" předtím než budete pokračovat.",
-    "Preview": "Náhled",
-    "Previous step": "Přechozí krok",
-    "Retry this step": "Zkusit znovu",
-    "Search": "Hledat",
-    "Search a specific link": "Hledat odkaz",
-    "Search files by file hash": "Hledat soubory podle hashe",
-    "Search files by name": "Hledat podle názvu",
-    "Select a file": "Vybrat soubor",
-    "Send": "Odeslat",
-    "Size": "Velikost",
-    "Sorry, the admin interface is not enabled.": "Omlouváme se, administrační rozhraní není povoleno.",
-    "Sorry, the requested file is not found": "Omlouváme se, ale soubor se nepovedlo nalézt",
-    "Sorry, you are not authenticated on admin interface.": "",
+    "ACCESS_KO": "Přístup zamítnut",
+    "ACTION": "Akce",
+    "ACTIONS": "Akce",
+    "ADMIN_INTERFACE": "Administrační rozhraní",
+    "ADMIN_PSW": "Heslo do administrace",
+    "ERR_OCC": "Chyba.",
+    "BASE_ADDR": "",
+    "USING_SERIVCE": "",
+    "DEF_LANGUAGE": "Zvolte výchozí jazyk",
+    "CLEAN": "Vyčistit",
+    "CLEAN_EXPIRED": "Vyčistit soubory, které vypršely",
+    "CLEAN_INCOMPLETE": "Vyčistit nedokončené přenosy",
+    "DATA_DIR": "Data adresář",
+    "DEL_FILE_LINKS": "",
+    "DEL_LINK": "",
+    "DELETE_LINK": "Odkaz na smazání",
+    "DELETED_LINKS": "Smazané odkazy",
+    "DIRECT_DL": "Přímý odkaz na stažení",
+    "DL": "Stáhnout",
+    "DL_PAGE": "",
+    "EXPIRE": "Vyprší",
+    "FILE_DELETED": "Soubor byl smazán.",
+    "2_BIG": "Soubor je moc velký",
+    "FILE_NOT_AVAIL": "Soubor není dostupný.",
+    "FILE_LIM": "Velikost souboru je limitována na",
+    "FILE_UP": "Soubor nahrán !",
+    "FILENAME": "Název souboru",
+    "FINALIZATION": "Dokončování",
+    "GIMME_PSW": "Zadejte heslo k souboru",
+    "HERE_SOLUTION": "",
+    "INFO": "Informace",
+    "JI_INSTALL": "",
+    "INSTALL_SCRIPT_HERE": "Instalační skript je stále přítomen",
+    "INTERNAL_ERROR_DEL": "Chyba při vytváření souboru.",
+    "JI_PROJECT": "Jirafeau projekt",
+    "ADMIN_INTERFACE_INFO": "",
+    "JI_HAZ_LANGAGES": "Jirafeau je světový. Vyberte si jazyk nebo bude zvolen automaticky (podle uživatelského prohlížeče).",
+    "JI_FONCTIONAL": "",
+    "SETTING_UP": "Jirafeau je nastaveno podle zadané konfigurace.",
+    "JI_WEB_RE": "",
+    "LINK_DELETED": "Odkaz smazán",
+    "LIST": "",
+    "LS_FILES": "Zobrazit všechny soubory",
+    "LOGIN": "Přihlášení",
+    "LOGOUT": "Odhlásit",
+    "MAX_FILE_SIZE": "Maximální velikost souboru",
+    "NEXT_STEP": "",
+    "NONE": "",
+    "CLEANED_FILES_CNT": "Počet vyčištěných souborů",
+    "1_D": "Den",
+    "1_H": "Hodinu",
+    "1_MIN": "Minutu",
+    "1_M": "Měsíc",
+    "ONE_TIME_DL": "Jednorázové stáhnutí",
+    "1_W": "Týden",
+    "1_Y": "Rok",
+    "ONETIME": "Jednorázové",
+    "ORIGIN": "Původ",
+    "PSW": "Heslo",
+    "PSW_PROTEC": "",
+    "PREVIEW": "Náhled",
+    "PREV_STEP": "Přechozí krok",
+    "RETRY_STEP": "Zkusit znovu",
+    "SEARCH": "Hledat",
+    "SEARCH_LINK": "Hledat odkaz",
+    "SEARH_BY_HASH": "Hledat soubory podle hashe",
+    "SEARCH_NAME": "Hledat podle názvu",
+    "SEL_FILE": "Vybrat soubor",
+    "SEND": "Odeslat",
+    "SIZE": "Velikost",
+    "NO_ADMIN": "Omlouváme se, administrační rozhraní není povoleno.",
+    "FILE_404": "Omlouváme se, ale soubor se nepovedlo nalézt",
+    "NO_ADMIN_AUTH": "",
     "Term Of Service": "Podmínky použití",
-    "The async directory is not writable!": "Do adresáře async se nedá zapisovat!",
-    "The base address of Jirafeau is the first part of the URL, until (and including) the last slash. For example: \"http://www.example.com/\". Do not forget the trailing slash!": "",
-    "The data directory is where your files and information about your files will be stored. You should put it outside your web site, or at least restrict the access to this directory. Do not forget the trailing slash!": "Adresář s daty kde se nachází soubory a všechny relevantní informace. Doporučujeme tento adresář umístit mimo adresář s webovými stránkami, nebo alespoň omezit práva pro tento adresář. Nezapoměňte na poslední lomítko!",
-    "The file directory is not writable": "",
-    "The following directory could not be created": "Tento adresář nemůže být vytvořen",
-    "The following directory is not writable": "Do adresáře nelze zapisovat",
-    "The link directory is not writable": "",
-    "The local configuration file could not be created. Create a <code>lib/config.local.php</code> file and give the write permission to the web server (preferred solution), or give the write permission to the web server on the <code>lib</code> directory.": "",
-    "The local configuration is not writable by the web server. Give the write permission to the web server on the '<code>lib/config.local.php</code> file.": "Konfigurace nemůže být změněna webovým serverem. Nastavte práva pro zápis webovému serveru pro soubor '<code>lib/config.local.php</code>'.",
-    "The time limit of this file has expired.": "Časový limit souboru již vypršel.",
-    "This file is valid until the following date": "Tento soubor vyprší po následujícím datu",
-    "This file was generated by the install process. You can edit it. Please see config.original.php to understand the configuration items.": "Tento soubor byl vygenerovaný během instalačního procesu. Můžete jej editovat. Pro konfigurační možnosti se můžete podívat do souboru config.original.php.",
-    "Time limit": "Časový limit",
-    "Type": "Typ",
-    "Upload date": "Datum nahrání",
-    "Upload password": "",
-    "Uploading ...": "Nahrávání ...",
-    "View link": "Zobrazit odkaz",
-    "Warning, this file will self-destruct after being read": "Pozor, soubor bude smazán jakmile bude přečten",
-    "Wrong password.": "Špatné heslo.",
-    "You are about to download": "",
-    "You are now loggued out": "Odhlášen",
-    "You should create this directory manually.": "Vytvořte tento adresář manuálně.",
-    "You should give the write permission to the web server on this directory.": "",
-    "file": "soubor",
-    "link": "odkaz",
-    "out of": "",
-    "powered by Open-Source project Jirafeau": "poháněno open-source projektem Jirafeau",
-    "step": "krok",
-    "year": "",
-    "day": "",
-    "minute": "",
-    "hour": "",
-    "second": "",
-    "less than a second": ""
+    "ASYNC_DIR_W": "Do adresáře async se nedá zapisovat!",
+    "BASE_ADDR_INFO": "",
+    "DATA_DIR_EXPLAINATION": "Adresář s daty kde se nachází soubory a všechny relevantní informace. Doporučujeme tento adresář umístit mimo adresář s webovými stránkami, nebo alespoň omezit práva pro tento adresář. Nezapoměňte na poslední lomítko!",
+    "FILE_DIR_W": "",
+    "CANNOT_CREATE_DIR": "Tento adresář nemůže být vytvořen",
+    "DIR_NOT_W": "Do adresáře nelze zapisovat",
+    "LINK_DIR_W": "",
+    "CONF_SOLUTION": "",
+    "CONF_SOLUTION_2": "Konfigurace nemůže být změněna webovým serverem. Nastavte práva pro zápis webovému serveru pro soubor '<code>lib/config.local.php</code>'.",
+    "FILE_EXPIRED": "Časový limit souboru již vypršel.",
+    "VALID_UNTIL": "Tento soubor vyprší po následujícím datu",
+    "CONF_AUTOGEN_COMMENT": "Tento soubor byl vygenerovaný během instalačního procesu. Můžete jej editovat. Pro konfigurační možnosti se můžete podívat do souboru config.original.php.",
+    "TIME_LIM": "Časový limit",
+    "TYPE": "Typ",
+    "UPLOAD_DATE": "Datum nahrání",
+    "UP_PSW": "",
+    "UP": "Nahrávání ...",
+    "VIEW_LINK": "Zobrazit odkaz",
+    "AUTO_DESTRUCT": "Pozor, soubor bude smazán jakmile bude přečten",
+    "BAD_PSW": "Špatné heslo.",
+    "NOW_DOWNLOADING": "",
+    "NOW_LOGOUT": "Odhlášen",
+    "MANUAL_CREATE": "Vytvořte tento adresář manuálně.",
+    "GIMME_W": "",
+    "FILE": "soubor",
+    "LINK": "odkaz",
+    "OUT_OF": "",
+    "POWERED_BY": "poháněno open-source projektem Jirafeau",
+    "STEP": "krok",
+    "YEAR": "",
+    "DAY": "",
+    "MINUTE": "",
+    "HOUR": "",
+    "SECOND": "",
+    "LESS_1_SEC": ""
 }
index b0729d0fa551d75c5ec97999e962ca07233ebdcf..0a3f7f61981c7a39e48b98a313520667cbfca396 100644 (file)
 {
-    "Jirafeau, your web file repository": "",
-    "Select a file": "",
-    "Send": "",
-    "Uploading ...": "",
-    "One time download": "",
-    "Password": "",
-    "Time limit": "",
-    "Maximum file size": "",
-    "powered by Open-Source project Jirafeau": "",
-    "Made with": "",
-    "Jirafeau Project": "",
-    "One minute": "",
-    "One hour": "",
-    "One day": "",
-    "One week": "",
-    "One month": "",
-    "One quarter": "",
-    "One year": "",
-    "None": "",
-    "Upload password": "",
-    "File is too big": "",
-    "File size is limited to": "",
-    "The file directory is not writable": "",
-    "The link directory is not writable": "",
-    "The async directory is not writable!": "",
-    "Installer script still present": "",
-    "Please make sure to delete the installer script \"install.php\" before continuing.": "",
-    "An error occurred.": "",
-    "File uploaded !": "",
-    "Download page": "",
-    "This file is valid until the following date": "",
-    "View link": "",
-    "Direct download link": "",
-    "Delete link": "",
-    "Download": "",
-    "Preview": "",
-    "Sorry, the requested file is not found": "",
-    "File not available.": "",
-    "File has been deleted.": "",
-    "The time limit of this file has expired.": "",
-    "Password protection": "",
-    "Give the password of this file": "",
-    "Access denied": "",
-    "You are about to download": "",
-    "By using our services, you accept our": "",
-    "Terms of Service": "",
-    "Warning, this file will self-destruct after being read": "",
-    "Internal error during file creation.": "",
+    "JI_WEB_RE": "",
+    "SEL_FILE": "",
+    "SEND": "",
+    "UP": "",
+    "ONE_TIME_DL": "",
+    "PSW": "",
+    "TIME_LIM": "",
+    "MAX_FILE_SIZE": "",
+    "POWERED_BY": "",
+    "MADE_WITH": "",
+    "JI_PROJECT": "",
+    "1_MIN": "",
+    "1_H": "",
+    "1_D": "",
+    "1_W": "",
+    "1_M": "",
+    "1_Q": "",
+    "1_Y": "",
+    "NONE": "",
+    "UP_PSW": "",
+    "2_BIG": "",
+    "FILE_LIM": "",
+    "FILE_DIR_W": "",
+    "LINK_DIR_W": "",
+    "ASYNC_DIR_W": "",
+    "INSTALL_SCRIPT_HERE": "",
+    "ERR_OCC": "",
+    "FILE_UP": "",
+    "DL_PAGE": "",
+    "VALID_UNTIL": "",
+    "VIEW_LINK": "",
+    "DIRECT_DL": "",
+    "DELETE_LINK": "",
+    "DL": "",
+    "PREVIEW": "",
+    "FILE_404": "",
+    "FILE_NOT_AVAIL": "",
+    "FILE_DELETED": "",
+    "FILE_EXPIRED": "",
+    "PSW_PROTEC": "",
+    "GIMME_PSW": "",
+    "ACCESS_KO": "",
+    "NOW_DOWNLOADING": "",
+    "USING_SERIVCE": "",
+    "TOS": "",
+    "AUTO_DESTRUCT": "",
+    "INTERNAL_ERROR_DEL": "",
+    "CONF_AUTOGEN_COMMENT": "",
+    "CANNOT_CREATE_DIR": "",
+    "MANUAL_CREATE": "",
+    "DIR_NOT_W": "",
+    "GIMME_W": "",
+    "HERE_SOLUTION": "",
+    "CONF_SOLUTION": "",
+    "CONF_SOLUTION_2": "",
+    "JI_INSTALL": "",
+    "STEP": "",
+    "OUT_OF": "",
+    "ADMIN_PSW": "",
+    "FINALIZATION": "",
+    "SETTING_UP": "",
+    "PREV_STEP": "",
+    "RETRY_STEP": "",
+    "JI_FONCTIONAL": "",
+    "INFO": "",
+    "BASE_ADDR_INFO": "",
+    "BASE_ADDR": "",
+    "DATA_DIR_EXPLAINATION": "",
+    "DATA_DIR": "",
+    "JI_HAZ_LANGAGES": "",
+    "DEF_LANGUAGE": "",
+    "NEXT_STEP": "",
+    "ADMIN_INTERFACE_INFO": "",
 
-    "This file was generated by the install process. You can edit it. Please see config.original.php to understand the configuration items.": "",
-    "The following directory could not be created": "",
-    "You should create this directory manually.": "",
-    "The following directory is not writable": "",
-    "You should give the write permission to the web server on this directory.": "",
-    "Here is a solution": "",
-    "The local configuration file could not be created. Create a <code>lib/config.local.php</code> file and give the write permission to the web server (preferred solution), or give the write permission to the web server on the <code>lib</code> directory.": "",
-    "The local configuration is not writable by the web server. Give the write permission to the web server on the '<code>lib/config.local.php</code> file.": "",
-    "Installation of Jirafeau": "",
-    "step": "",
-    "out of": "",
-    "Administration password": "",
-    "Finalisation": "",
-    "Jirafeau is setting the website according to the configuration you provided.": "",
-    "Previous step": "",
-    "Retry this step": "",
-    "Jirafeau is now fully operational": "",
-    "Information": "",
-    "The base address of Jirafeau is the first part of the URL, until (and including) the last slash. For example: \"http://www.example.com/\". Do not forget the trailing slash!": "",
-    "Base address": "",
-    "The data directory is where your files and information about your files will be stored. You should put it outside your web site, or at least restrict the access to this directory. Do not forget the trailing slash!": "",
-    "Data directory": "",
-    "Jirafeau is internationalised. Choose a specific langage or choose Automatic (langage is provided by user's browser).": "",
-    "Choose the default language": "",
-    "Next step": "",
-    "Jirafeau has an administration interface (through admin.php). You can set a password to access the interface or leave it empty to disable the interface.": "",
-    "Administration password": "",
-
-    "Sorry, the admin interface is not enabled.": "",
-    "Sorry, you are not authenticated on admin interface.": "",
-    "Login": "",
-    "Wrong password.": "",
-    "Admin interface": "",
-    "Clean expired files": "",
-    "Clean old unfinished transfers": "",
-    "Clean": "",
-    "Search files by name": "",
-    "Search": "",
-    "List all files": "",
-    "List": "",
-    "Actions": "",
-    "Search files by file hash": "",
-    "Search a specific link": "",
-    "Number of cleaned files": "",
-    "Logout": "",
-    "You are now loggued out": "",
-    "Link deleted": "",
-    "Filename": "",
-    "file": "",
-    "link": "",
-    "Type": "",
-    "Size": "",
-    "Expire": "",
-    "Onetime": "",
-    "Upload date": "",
-    "Origin": "",
-    "Action": "",
-    "Del link": "",
-    "Del file and links": "",
-    "Deleted links": "",
-    "year": "",
-    "day": "",
-    "minute": "",
-    "hour": "",
-    "second": "",
-    "less than a second": ""
+    "NO_ADMIN": "",
+    "NO_ADMIN_AUTH": "",
+    "LOGIN": "",
+    "BAD_PSW": "",
+    "ADMIN_INTERFACE": "",
+    "CLEAN_EXPIRED": "",
+    "CLEAN_INCOMPLETE": "",
+    "CLEAN": "",
+    "SEARCH_NAME": "",
+    "SEARCH": "",
+    "LS_FILES": "",
+    "LIST": "",
+    "ACTIONS": "",
+    "SEARH_BY_HASH": "",
+    "SEARCH_LINK": "",
+    "CLEANED_FILES_CNT": "",
+    "LOGOUT": "",
+    "NOW_LOGOUT": "",
+    "LINK_DELETED": "",
+    "FILENAME": "",
+    "FILE": "",
+    "LINK": "",
+    "TYPE": "",
+    "SIZE": "",
+    "EXPIRE": "",
+    "ONETIME": "",
+    "UPLOAD_DATE": "",
+    "ORIGIN": "",
+    "ACTION": "",
+    "DEL_LINK": "",
+    "DEL_FILE_LINKS": "",
+    "DELETED_LINKS": "",
+    "YEAR": "",
+    "DAY": "",
+    "MINUTE": "",
+    "HOUR": "",
+    "SECOND": "",
+    "LESS_1_SEC": ""
 }
index 3c2f4fe41fb2845fa80bf3971edec1fd2b3dd718..3fb06bee549cef5bcdeaac3e486e1d54e7549ceb 100644 (file)
 {
-    "Access denied": "Zugriff verweigert",
-    "Action": "Aktion",
-    "Actions": "Aktionen",
-    "Admin interface": "Admin-Oberfläche",
-    "Administration password": "Administrator-Passwort",
-    "An error occurred.": "Ein Fehler ist aufgetreten.",
-    "Base address": "Basisadresse",
-    "By using our services, you accept our": "Durch die Nutzung unserer Dienste, akzeptieren Sie unsere",
-    "Choose the default language": "Wählen Sie die Standardsprache",
-    "Clean": "Aufräumen",
-    "Clean expired files": "Abgelaufene Dateien löschen",
-    "Clean old unfinished transfers": "Alte unfertige Übertragungen löschen",
-    "Confirm deletion": "Löschen bestätigen",
-    "Data directory": "Datenverzeichnis",
-    "Del file and links": "Datei und Link löschen",
-    "Del link": "Link löschen",
-    "Delete": "Löschen",
-    "Delete link": "Link zum Löschen der Datei",
-    "Deleted links": "Gelöschte Links",
-    "Direct download link": "Direkter Download-Link",
-    "Download": "Herunterladen",
-    "Download page": "Download-Seite",
-    "Expire": "Ablauffrist",
-    "File has been deleted.": "Die Datei wurde gelöscht.",
-    "File is too big": "Die Datei ist zu groß",
-    "File not available.": "Datei nicht gefunden.",
-    "File size is limited to": "Die maximale Dateigröße ist",
-    "File uploaded !": "Die Datei wurde hochgeladen!",
-    "Filename": "Dateiname",
-    "Finalisation": "Fertig",
-    "Give the password of this file": "Bitte Passwort für diese Datei eingeben",
-    "Here is a solution": "Hier ist eine Lösung",
-    "Information": "Information",
-    "Installation of Jirafeau": "Installation von Jirafeau",
-    "Installer script still present": "Installer-Skript noch vorhanden",
-    "Internal error during file creation.": "Interner Fehler während der Dateierstellung.",
-    "Jirafeau Project": "Jirafeau Projekt",
-    "Jirafeau has an administration interface (through admin.php). You can set a password to access the interface or leave it empty to disable the interface.": "Jirafeau hat eine Administrations-Oberfläche (durch admin.php). Sie können ein Kennwort zum Zugriff auf die Schnittstelle festlegen oder lassen Sie es leer, um die Schnittstelle zu deaktivieren.",
-    "Jirafeau is internationalised. Choose a specific langage or choose Automatic (langage is provided by user's browser).": "Jirafeau ist internationalisiert. Wählen Sie eine bestimmte Sprache oder Automatik (die Sprache wird vom Browser des Benutzers bereitgestellt).",
-    "Jirafeau is now fully operational": "Jirafeau ist nun voll funktionsfähig",
-    "Jirafeau is setting the website according to the configuration you provided.": "Jirafeau richtet die Webseite entsprechend der Konfiguration, die Sie angegeben haben, ein.",
-    "Jirafeau, your web file repository": "Jirafeau, Ihr Web-Datei-Speicher",
-    "Link deleted": "Link gelöscht",
-    "List": "Auflisten",
-    "List all files": "Alle Dateien auflisten",
-    "Login": "Login",
-    "Logout": "Ausloggen",
-    "Made with": "Erstellt mit",
-    "Maximum file size": "Maximale Dateigröße",
-    "Next step": "Nächster Schritt",
-    "None": "Nie",
-    "Number of cleaned files": "Anzahl der gelöschten Dateien",
-    "One day": "Ein Tag",
-    "One hour": "Eine Stunde",
-    "One minute": "Eine Minute",
-    "One month": "Ein Monat",
-    "One quarter": "Drei Monate",
-    "One time download": "Einmaliger Download",
-    "One week": "Eine Woche",
-    "One year": "Ein Jahr",
-    "Onetime": "Einmalig",
-    "Origin": "Ursprung",
-    "Password": "Passwort",
-    "Password protection": "Passwort-Schutz",
-    "Please make sure to delete the installer script \"install.php\" before continuing.": "Bitte achten Sie darauf, das Installationsskript \"install.php\" zu löschen, bevor Sie fortfahren.",
-    "Preview": "Vorschau",
-    "Previous step": "Vorheriger Schritt",
-    "Retry this step": "Diesen Schritt wiederholen",
-    "Search": "Suchen",
-    "Search a specific link": "Einen bestimmten Link suchen",
-    "Search files by file hash": "Suche Dateien nach Dateihash",
-    "Search files by name": "Dateien nach Name suchen",
-    "Select a file": "Datei auswählen",
-    "Send": "Hochladen",
-    "Size": "Größe",
-    "Sorry, the admin interface is not enabled.": "Entschuldigung, die Admin-Oberfläche ist deaktiviert.",
-    "Sorry, the requested file is not found": "Leider wurde die angeforderte Datei nicht gefunden",
-    "Sorry, you are not authenticated on admin interface.": "Entschuldigung, Sie sind nicht auf der Admin-Oberfläche authentifiziert.",
-    "Terms of Service": "Allgemeine Geschäftsbedingungen",
-    "The async directory is not writable!": "Das Async-Verzeichnis ist nicht beschreibbar!",
-    "The base address of Jirafeau is the first part of the URL, until (and including) the last slash. For example: \"http://www.example.com/\". Do not forget the trailing slash!": "Die Basisadresse von Jirafeau ist der erste Teil der URL, bis (und einschließlich) dem letzten Schrägstrich. Zum Beispiel: \"http://www.example.com/\". Vergessen Sie nicht den abschließenden Schrägstrich!",
-    "The data directory is where your files and information about your files will be stored. You should put it outside your web site, or at least restrict the access to this directory. Do not forget the trailing slash!": "Das Datenverzeichnis ist, wo Ihre Dateien und Informationen über Ihre Dateien gespeichert werden. Sie sollten dieses Verzeichnis außerhalb Ihrer Webseite setzen, oder zumindest den Zugriff auf dieses Verzeichnis beschränken. Vergessen Sie nicht den abschließenden Schrägstrich!",
-    "The file directory is not writable": "Das Dateiverzeichnis ist nicht beschreibbar",
-    "The following directory could not be created": "Der folgende Ordner konnte nicht erstellt werden",
-    "The following directory is not writable": "Das folgende Verzeichnis ist nicht beschreibbar",
-    "The link directory is not writable": "Das Link-Verzeichnis ist nicht beschreibbar",
-    "The local configuration file could not be created. Create a <code>lib/config.local.php</code> file and give the write permission to the web server (preferred solution), or give the write permission to the web server on the <code>lib</code> directory.": "Die lokale Konfiguration-Datei konnte nicht erstellt werden. Erstellen Sie die Datei <code>lib/config.local.php</code> und geben Sie dem Webserver die Schreibberechtigung (bevorzugte Lösung) oder geben Sie dem Webserver die Schreibberechtigung für das <code>Lib</code>-Verzeichnis.",
-    "The local configuration is not writable by the web server. Give the write permission to the web server on the '<code>lib/config.local.php</code> file.": "Die lokale Konfiguration ist nicht vom Webserver beschreibbar. Geben Sie dem Webserver die Schreibberechtigung für die \"<code>lib/config.local.php</code> Datei.",
-    "The time limit of this file has expired.": "Die zeitliche Begrenzung dieser Datei ist abgelaufen.",
-    "This file is valid until the following date": "Diese Datei ist gültig bis",
-    "This file was generated by the install process. You can edit it. Please see config.original.php to understand the configuration items.": "Diese Datei wurde vom Installationsprozess generiert. Sie können diese bearbeiten. Siehe config.original.php, um die Konfigurationsparameter zu verstehen.",
-    "Time limit": "Ablauffrist",
-    "Type": "Typ",
-    "Upload date": "Datum",
-    "Upload password": "Passwort",
-    "Uploading ...": "Lädt hoch ...",
-    "View link": "Vorschau-Link",
-    "Warning, this file will self-destruct after being read": "Achtung, diese Datei wird automatisch gelöscht, nachdem diese gelesen wird",
-    "Wrong password.": "Falsches Passwort.",
-    "You are about to delete": "Sie löschen",
-    "You are about to download": "Es wird heruntergeladen",
-    "You are now loggued out": "Sie wurden abgemeldet",
-    "You should create this directory manually.": "Sie sollten dieses Verzeichnis manuell erstellen.",
-    "You should give the write permission to the web server on this directory.": "Geben Sie dem Webserver die Schreibberechtigung für dieses Verzeichnis.",
-    "day": "Tag",
-    "file": "Datei",
-    "hour": "Stunde",
-    "less than a second": "weniger als einer Sekunde",
-    "link": "Link",
-    "minute": "Minute",
-    "out of": "von",
-    "powered by Open-Source project Jirafeau": "angetrieben vom Open-Source-Projekt Jirafeau",
-    "second": "Sekunde",
-    "step": "Schritt",
-    "year": "Jahr"
+    "ACCESS_KO": "Zugriff verweigert",
+    "ACTION": "Aktion",
+    "ACTIONS": "Aktionen",
+    "ADMIN_INTERFACE": "Admin-Oberfläche",
+    "ADMIN_PSW": "Administrator-Passwort",
+    "ERR_OCC": "Ein Fehler ist aufgetreten.",
+    "BASE_ADDR": "Basisadresse",
+    "USING_SERIVCE": "Durch die Nutzung unserer Dienste, akzeptieren Sie unsere",
+    "DEF_LANGUAGE": "Wählen Sie die Standardsprache",
+    "CLEAN": "Aufräumen",
+    "CLEAN_EXPIRED": "Abgelaufene Dateien löschen",
+    "CLEAN_INCOMPLETE": "Alte unfertige Übertragungen löschen",
+    "CONFIRM_DEL": "Löschen bestätigen",
+    "DATA_DIR": "Datenverzeichnis",
+    "DEL_FILE_LINKS": "Datei und Link löschen",
+    "DEL_LINK": "Link löschen",
+    "DELETE": "Löschen",
+    "DELETE_LINK": "Link zum Löschen der Datei",
+    "DELETED_LINKS": "Gelöschte Links",
+    "DIRECT_DL": "Direkter Download-Link",
+    "DL": "Herunterladen",
+    "DL_PAGE": "Download-Seite",
+    "EXPIRE": "Ablauffrist",
+    "FILE_DELETED": "Die Datei wurde gelöscht.",
+    "2_BIG": "Die Datei ist zu groß",
+    "FILE_NOT_AVAIL": "Datei nicht gefunden.",
+    "FILE_LIM": "Die maximale Dateigröße ist",
+    "FILE_UP": "Die Datei wurde hochgeladen!",
+    "FILENAME": "Dateiname",
+    "FINALIZATION": "Fertig",
+    "GIMME_PSW": "Bitte Passwort für diese Datei eingeben",
+    "HERE_SOLUTION": "Hier ist eine Lösung",
+    "INFO": "Information",
+    "JI_INSTALL": "Installation von Jirafeau",
+    "INSTALL_SCRIPT_HERE": "Installer-Skript noch vorhanden",
+    "INTERNAL_ERROR_DEL": "Interner Fehler während der Dateierstellung.",
+    "JI_PROJECT": "Jirafeau Projekt",
+    "ADMIN_INTERFACE_INFO": "Jirafeau hat eine Administrations-Oberfläche (durch admin.php). Sie können ein Kennwort zum Zugriff auf die Schnittstelle festlegen oder lassen Sie es leer, um die Schnittstelle zu deaktivieren.",
+    "JI_HAZ_LANGAGES": "Jirafeau ist internationalisiert. Wählen Sie eine bestimmte Sprache oder Automatik (die Sprache wird vom Browser des Benutzers bereitgestellt).",
+    "JI_FONCTIONAL": "Jirafeau ist nun voll funktionsfähig",
+    "SETTING_UP": "Jirafeau richtet die Webseite entsprechend der Konfiguration, die Sie angegeben haben, ein.",
+    "JI_WEB_RE": "Jirafeau, Ihr Web-Datei-Speicher",
+    "LINK_DELETED": "Link gelöscht",
+    "LIST": "Auflisten",
+    "LS_FILES": "Alle Dateien auflisten",
+    "LOGIN": "Login",
+    "LOGOUT": "Ausloggen",
+    "MADE_WITH": "Erstellt mit",
+    "MAX_FILE_SIZE": "Maximale Dateigröße",
+    "NEXT_STEP": "Nächster Schritt",
+    "NONE": "Nie",
+    "CLEANED_FILES_CNT": "Anzahl der gelöschten Dateien",
+    "1_D": "Ein Tag",
+    "1_H": "Eine Stunde",
+    "1_MIN": "Eine Minute",
+    "1_M": "Ein Monat",
+    "1_Q": "Drei Monate",
+    "ONE_TIME_DL": "Einmaliger Download",
+    "1_W": "Eine Woche",
+    "1_Y": "Ein Jahr",
+    "ONETIME": "Einmalig",
+    "ORIGIN": "Ursprung",
+    "PSW": "Passwort",
+    "PSW_PROTEC": "Passwort-Schutz",
+    "PREVIEW": "Vorschau",
+    "PREV_STEP": "Vorheriger Schritt",
+    "RETRY_STEP": "Diesen Schritt wiederholen",
+    "SEARCH": "Suchen",
+    "SEARCH_LINK": "Einen bestimmten Link suchen",
+    "SEARH_BY_HASH": "Suche Dateien nach Dateihash",
+    "SEARCH_NAME": "Dateien nach Name suchen",
+    "SEL_FILE": "Datei auswählen",
+    "SEND": "Hochladen",
+    "SIZE": "Größe",
+    "NO_ADMIN": "Entschuldigung, die Admin-Oberfläche ist deaktiviert.",
+    "FILE_404": "Leider wurde die angeforderte Datei nicht gefunden",
+    "NO_ADMIN_AUTH": "Entschuldigung, Sie sind nicht auf der Admin-Oberfläche authentifiziert.",
+    "TOS": "Allgemeine Geschäftsbedingungen",
+    "ASYNC_DIR_W": "Das Async-Verzeichnis ist nicht beschreibbar!",
+    "BASE_ADDR_INFO": "Die Basisadresse von Jirafeau ist der erste Teil der URL, bis (und einschließlich) dem letzten Schrägstrich. Zum Beispiel: \"http://www.example.com/\". Vergessen Sie nicht den abschließenden Schrägstrich!",
+    "DATA_DIR_EXPLAINATION": "Das Datenverzeichnis ist, wo Ihre Dateien und Informationen über Ihre Dateien gespeichert werden. Sie sollten dieses Verzeichnis außerhalb Ihrer Webseite setzen, oder zumindest den Zugriff auf dieses Verzeichnis beschränken. Vergessen Sie nicht den abschließenden Schrägstrich!",
+    "FILE_DIR_W": "Das Dateiverzeichnis ist nicht beschreibbar",
+    "CANNOT_CREATE_DIR": "Der folgende Ordner konnte nicht erstellt werden",
+    "DIR_NOT_W": "Das folgende Verzeichnis ist nicht beschreibbar",
+    "LINK_DIR_W": "Das Link-Verzeichnis ist nicht beschreibbar",
+    "CONF_SOLUTION": "Die lokale Konfiguration-Datei konnte nicht erstellt werden. Erstellen Sie die Datei <code>lib/config.local.php</code> und geben Sie dem Webserver die Schreibberechtigung (bevorzugte Lösung) oder geben Sie dem Webserver die Schreibberechtigung für das <code>Lib</code>-Verzeichnis.",
+    "CONF_SOLUTION_2": "Die lokale Konfiguration ist nicht vom Webserver beschreibbar. Geben Sie dem Webserver die Schreibberechtigung für die \"<code>lib/config.local.php</code> Datei.",
+    "FILE_EXPIRED": "Die zeitliche Begrenzung dieser Datei ist abgelaufen.",
+    "VALID_UNTIL": "Diese Datei ist gültig bis",
+    "CONF_AUTOGEN_COMMENT": "Diese Datei wurde vom Installationsprozess generiert. Sie können diese bearbeiten. Siehe config.original.php, um die Konfigurationsparameter zu verstehen.",
+    "TIME_LIM": "Ablauffrist",
+    "TYPE": "Typ",
+    "UPLOAD_DATE": "Datum",
+    "UP_PSW": "Passwort",
+    "UP": "Lädt hoch ...",
+    "VIEW_LINK": "Vorschau-Link",
+    "AUTO_DESTRUCT": "Achtung, diese Datei wird automatisch gelöscht, nachdem diese gelesen wird",
+    "BAD_PSW": "Falsches Passwort.",
+    "GONNA_DEL": "Sie löschen",
+    "NOW_DOWNLOADING": "Es wird heruntergeladen",
+    "NOW_LOGOUT": "Sie wurden abgemeldet",
+    "MANUAL_CREATE": "Sie sollten dieses Verzeichnis manuell erstellen.",
+    "GIMME_W": "Geben Sie dem Webserver die Schreibberechtigung für dieses Verzeichnis.",
+    "DAY": "Tag",
+    "FILE": "Datei",
+    "HOUR": "Stunde",
+    "LESS_1_SEC": "weniger als einer Sekunde",
+    "LINK": "Link",
+    "MINUTE": "Minute",
+    "OUT_OF": "von",
+    "POWERED_BY": "angetrieben vom Open-Source-Projekt Jirafeau",
+    "SECOND": "Sekunde",
+    "STEP": "Schritt",
+    "YEAR": "Jahr"
 }
index dfd4e5a8307e4444fba3d9a10aa95fe78da3b993..9eabf5bb2ebae9bab5d6cc13cb69975b33491a69 100644 (file)
 {
-    "Jirafeau, your web file repository": "Χώρος αποθήκευσης των διαδικτυακών σας αρχείων",
-    "Select a file": "Επιλέξτε ένα Αρχείο",
-    "Send": "Αποστολή",
-    "Uploading ...": "Φόρτωμα ...",
-    "One time download": "Το αρχείο επιτρέπετε να κατέβει μόνο μια φορά",
-    "Password": "Κωδικός Πρόσβασης",
-    "Time limit": "Ενεργό για",
-    "Maximum file size": "Μέγιστο μέγεθος αρχείου",
-    "powered by Open-Source project Jirafeau": "",
-    "Jirafeau Project": "Πρόγραμμα Jirafeau",
-    "One minute": "Ένα λεπτό",
-    "One hour": "Μία ώρα",
-    "One day": "Μία μέρα",
-    "One week": "Μία εβδομάδα",
-    "One month": "Ένας μήνας",
-    "One year": "Ένας χρόνος",
-    "None": "Κανένα",
-    "Upload password": "Κωδικός μεταφόρτωσης",
-    "File is too big": "Το αρχείο είναι πολύ μεγάλο",
-    "File size is limited to": "Μέγιστο μέγεθος αρχείου",
-    "The file directory is not writable": "Ο κατάλογος αρχείων δεν είναι εγγράψιμος",
-    "The link directory is not writable": "Ο συνδεδεμένος κατάλογο δεν είναι εγγράψιμος",
-    "The async directory is not writable!": "",
-    "Installer script still present": "",
-    "Please make sure to delete the installer script \"install.php\" before continuing.": "Παρακαλούμε φροντίστε να διαγράψετε το αρχείο εγκατάστασης \"install.php\" πριν συνεχίσετε.",
-    "An error occurred.": "Παρουσιάστηκε σφάλμα.",
-    "File uploaded !": "Το αρχείο ανέβηκε !",
-    "Download page": "Σελίδα λήψης",
-    "This file is valid until the following date": "Αυτό το αρχείο είναι έγκυρο μέχρι την παρακάτω ημερομηνία",
-    "View link": "Σύνδεσμος Προβολής",
-    "Direct download link": "Σύνδεσμος απευθείας λήψης",
-    "Delete link": "Διαγραφή Συνδέσμου",
-    "Download": "Λήψη",
-    "Preview": "Προεπισκόπηση",
-    "Sorry, the requested file is not found": "Λυπούμαστε, το ζητούμενο αρχείο δεν βρέθηκε",
-    "File not available.": "Το αρχείο δεν είναι διαθέσιμο.",
-    "File has been deleted.": "Το αρχείο έχει διαγραφεί.",
-    "The time limit of this file has expired.": "Η προθεσμία του αρχείου αυτού έχει λήξει.",
-    "Password protection": "Προστασία με κωδικό πρόσβασης",
-    "Give the password of this file": "Δώστε τον κωδικό πρόσβασης αυτού του αρχείου",
-    "Access denied": "Δεν επιτρέπεται η πρόσβαση",
-    "You are about to download": "Είστε έτοιμοι να κατεβάσετε",
-    "By using our services, you accept our": "Με τη χρήση των υπηρεσιών μας, αποδέχεστε τους",
+    "JI_WEB_RE": "Χώρος αποθήκευσης των διαδικτυακών σας αρχείων",
+    "SEL_FILE": "Επιλέξτε ένα Αρχείο",
+    "SEND": "Αποστολή",
+    "UP": "Φόρτωμα ...",
+    "ONE_TIME_DL": "Το αρχείο επιτρέπετε να κατέβει μόνο μια φορά",
+    "PSW": "Κωδικός Πρόσβασης",
+    "TIME_LIM": "Ενεργό για",
+    "MAX_FILE_SIZE": "Μέγιστο μέγεθος αρχείου",
+    "POWERED_BY": "",
+    "JI_PROJECT": "Πρόγραμμα Jirafeau",
+    "1_MIN": "Ένα λεπτό",
+    "1_H": "Μία ώρα",
+    "1_D": "Μία μέρα",
+    "1_W": "Μία εβδομάδα",
+    "1_M": "Ένας μήνας",
+    "1_Y": "Ένας χρόνος",
+    "NONE": "Κανένα",
+    "UP_PSW": "Κωδικός μεταφόρτωσης",
+    "2_BIG": "Το αρχείο είναι πολύ μεγάλο",
+    "FILE_LIM": "Μέγιστο μέγεθος αρχείου",
+    "FILE_DIR_W": "Ο κατάλογος αρχείων δεν είναι εγγράψιμος",
+    "LINK_DIR_W": "Ο συνδεδεμένος κατάλογο δεν είναι εγγράψιμος",
+    "ASYNC_DIR_W": "",
+    "INSTALL_SCRIPT_HERE": "",
+    "ERR_OCC": "Παρουσιάστηκε σφάλμα.",
+    "FILE_UP": "Το αρχείο ανέβηκε !",
+    "DL_PAGE": "Σελίδα λήψης",
+    "VALID_UNTIL": "Αυτό το αρχείο είναι έγκυρο μέχρι την παρακάτω ημερομηνία",
+    "VIEW_LINK": "Σύνδεσμος Προβολής",
+    "DIRECT_DL": "Σύνδεσμος απευθείας λήψης",
+    "DELETE_LINK": "Διαγραφή Συνδέσμου",
+    "DL": "Λήψη",
+    "PREVIEW": "Προεπισκόπηση",
+    "FILE_404": "Λυπούμαστε, το ζητούμενο αρχείο δεν βρέθηκε",
+    "FILE_NOT_AVAIL": "Το αρχείο δεν είναι διαθέσιμο.",
+    "FILE_DELETED": "Το αρχείο έχει διαγραφεί.",
+    "FILE_EXPIRED": "Η προθεσμία του αρχείου αυτού έχει λήξει.",
+    "PSW_PROTEC": "Προστασία με κωδικό πρόσβασης",
+    "GIMME_PSW": "Δώστε τον κωδικό πρόσβασης αυτού του αρχείου",
+    "ACCESS_KO": "Δεν επιτρέπεται η πρόσβαση",
+    "NOW_DOWNLOADING": "Είστε έτοιμοι να κατεβάσετε",
+    "USING_SERIVCE": "Με τη χρήση των υπηρεσιών μας, αποδέχεστε τους",
     "Term Of Service": "Όροι Χρήσης",
-    "Warning, this file will self-destruct after being read": "Προειδοποίηση, το αρχείο αυτό θα αυτοκαταστραφεί μετά την ανάγνωση",
-    "Internal error during file creation.": "Εσωτερικό σφάλμα κατά τη δημιουργία του αρχείου.",
-    "This file was generated by the install process. You can edit it. Please see config.original.php to understand the configuration items.": "",
-    "The following directory could not be created": "Ο ακόλουθος κατάλογος δεν μπόρεσε να δημιουργηθεί",
-    "You should create this directory manually.": "Θα πρέπει να δημιουργήσετε αυτόν τον κατάλογο χειροκίνητα.",
-    "The following directory is not writable": "Ο παρακάτω κατάλογος δεν είναι εγγράψιμος",
-    "You should give the write permission to the web server on this directory.": "",
-    "Here is a solution": "Εδώ είναι μια λύση",
-    "The local configuration file could not be created. Create a <code>lib/config.local.php</code> file and give the write permission to the web server (preferred solution), or give the write permission to the web server on the <code>lib</code> directory.": "",
-    "The local configuration is not writable by the web server. Give the write permission to the web server on the '<code>lib/config.local.php</code> file.": "",
-    "Installation of Jirafeau": "Εγκατάσταση του Jirafeau",
-    "step": "βήμα",
-    "out of": "εκτός",
-    "Administration password": "Κωδικός Διαχειριστή",
-    "Finalisation": "Οριστικοποίηση",
-    "Jirafeau is setting the website according to the configuration you provided.": "",
-    "Previous step": "Προηγούμενο βήμα",
-    "Retry this step": "Επαναλάβετε αυτό το βήμα",
-    "Jirafeau is now fully operational": "Το Jirafeau είναι τώρα σε πλήρη λειτουργία",
-    "Information": "Πληροφορίες",
-    "The base address of Jirafeau is the first part of the URL, until (and including) the last slash. For example: \"http://www.example.com/\". Do not forget the trailing slash!": "",
-    "Base address": "",
-    "The data directory is where your files and information about your files will be stored. You should put it outside your web site, or at least restrict the access to this directory. Do not forget the trailing slash!": "",
-    "Data directory": "Κατάλογο δεδομένων",
-    "Jirafeau is internationalised. Choose a specific langage or choose Automatic (langage is provided by user's browser).": "",
-    "Choose the default language": "Επιλέξτε την προεπιλεγμένη γλώσσα",
-    "Next step": "Επόμενο βήμα",
-    "Jirafeau has an administration interface (through admin.php). You can set a password to access the interface or leave it empty to disable the interface.": "",
-    "Sorry, the admin interface is not enabled.": "Συγγνώμη, το περιβάλλον διαχειριστή δεν είναι ενεργοποιημένο.",
-    "Sorry, you are not authenticated on admin interface.": "Λυπούμαστε, δεν έχετε δικαίωμα πρόσβασης στο περιβάλλον διαχειριστή.",
-    "Login": "Σύνδεση",
-    "Wrong password.": "Λάθος κωδικός πρόσβασης.",
-    "Admin interface": "Περιβάλλον διαχειριστή",
-    "Clean expired files": "Εκκαθάριση αρχείων που έχουν λήξει",
-    "Clean old unfinished transfers": "Εκκαθάριση παλιών ημιτελών μεταφορών",
-    "Clean": "Εκκαθάριση",
-    "Search files by name": "Αναζήτηση αρχείων κατά όνομα",
-    "Search": "Αναζήτηση",
-    "List all files": "Λίστα όλων των αρχείων",
-    "List": "Λίστα",
-    "Actions": "Δράσεις",
-    "Search files by file hash": "",
-    "Search a specific link": "Αναζήτηση ενός συγκεκριμένου συνδέσμου",
-    "Number of cleaned files": "Αριθμός αρχείων που καθαρίστηκαν",
-    "Logout": "Έξοδος",
-    "You are now loggued out": "Έχετε αποσυνδεθεί",
-    "Link deleted": "Ο σύνδεσμος έχει διαγραφεί",
-    "Filename": "Όνομα αρχείου",
-    "file": "αρχείο",
-    "link": "Σύνδεσμος",
-    "Type": "Τύπος",
-    "Size": "Μέγεθος",
-    "Expire": "",
-    "Onetime": "Μια φορά",
-    "Upload date": "Ημερομηνία ανεβάσματος",
-    "Origin": "Προέλευση",
-    "Action": "Ενέργεια",
-    "Del link": "Διαγραφή συνδέσμου",
-    "Del file and links": "Διαγραφή αρχείου και συνδέσμων",
-    "Deleted links": "Σύνδεσμοι που έχουν διαγραφεί",
-    "year": "Χρονιά",
-    "day": "Ημέρα",
-    "minute": "Λεπτά",
-    "hour": "Ώρα",
-    "second": "Δευτερόλεπτα",
-    "less than a second": "λιγότερο από ένα δευτερόλεπτο"
+    "AUTO_DESTRUCT": "Προειδοποίηση, το αρχείο αυτό θα αυτοκαταστραφεί μετά την ανάγνωση",
+    "INTERNAL_ERROR_DEL": "Εσωτερικό σφάλμα κατά τη δημιουργία του αρχείου.",
+    "CONF_AUTOGEN_COMMENT": "",
+    "CANNOT_CREATE_DIR": "Ο ακόλουθος κατάλογος δεν μπόρεσε να δημιουργηθεί",
+    "MANUAL_CREATE": "Θα πρέπει να δημιουργήσετε αυτόν τον κατάλογο χειροκίνητα.",
+    "DIR_NOT_W": "Ο παρακάτω κατάλογος δεν είναι εγγράψιμος",
+    "GIMME_W": "",
+    "HERE_SOLUTION": "Εδώ είναι μια λύση",
+    "CONF_SOLUTION": "",
+    "CONF_SOLUTION_2": "",
+    "JI_INSTALL": "Εγκατάσταση του Jirafeau",
+    "STEP": "βήμα",
+    "OUT_OF": "εκτός",
+    "ADMIN_PSW": "Κωδικός Διαχειριστή",
+    "FINALIZATION": "Οριστικοποίηση",
+    "SETTING_UP": "",
+    "PREV_STEP": "Προηγούμενο βήμα",
+    "RETRY_STEP": "Επαναλάβετε αυτό το βήμα",
+    "JI_FONCTIONAL": "Το Jirafeau είναι τώρα σε πλήρη λειτουργία",
+    "INFO": "Πληροφορίες",
+    "BASE_ADDR_INFO": "",
+    "BASE_ADDR": "",
+    "DATA_DIR_EXPLAINATION": "",
+    "DATA_DIR": "Κατάλογο δεδομένων",
+    "JI_HAZ_LANGAGES": "",
+    "DEF_LANGUAGE": "Επιλέξτε την προεπιλεγμένη γλώσσα",
+    "NEXT_STEP": "Επόμενο βήμα",
+    "ADMIN_INTERFACE_INFO": "",
+    "NO_ADMIN": "Συγγνώμη, το περιβάλλον διαχειριστή δεν είναι ενεργοποιημένο.",
+    "NO_ADMIN_AUTH": "Λυπούμαστε, δεν έχετε δικαίωμα πρόσβασης στο περιβάλλον διαχειριστή.",
+    "LOGIN": "Σύνδεση",
+    "BAD_PSW": "Λάθος κωδικός πρόσβασης.",
+    "ADMIN_INTERFACE": "Περιβάλλον διαχειριστή",
+    "CLEAN_EXPIRED": "Εκκαθάριση αρχείων που έχουν λήξει",
+    "CLEAN_INCOMPLETE": "Εκκαθάριση παλιών ημιτελών μεταφορών",
+    "CLEAN": "Εκκαθάριση",
+    "SEARCH_NAME": "Αναζήτηση αρχείων κατά όνομα",
+    "SEARCH": "Αναζήτηση",
+    "LS_FILES": "Λίστα όλων των αρχείων",
+    "LIST": "Λίστα",
+    "ACTIONS": "Δράσεις",
+    "SEARH_BY_HASH": "",
+    "SEARCH_LINK": "Αναζήτηση ενός συγκεκριμένου συνδέσμου",
+    "CLEANED_FILES_CNT": "Αριθμός αρχείων που καθαρίστηκαν",
+    "LOGOUT": "Έξοδος",
+    "NOW_LOGOUT": "Έχετε αποσυνδεθεί",
+    "LINK_DELETED": "Ο σύνδεσμος έχει διαγραφεί",
+    "FILENAME": "Όνομα αρχείου",
+    "FILE": "αρχείο",
+    "LINK": "Σύνδεσμος",
+    "TYPE": "Τύπος",
+    "SIZE": "Μέγεθος",
+    "EXPIRE": "",
+    "ONETIME": "Μια φορά",
+    "UPLOAD_DATE": "Ημερομηνία ανεβάσματος",
+    "ORIGIN": "Προέλευση",
+    "ACTION": "Ενέργεια",
+    "DEL_LINK": "Διαγραφή συνδέσμου",
+    "DEL_FILE_LINKS": "Διαγραφή αρχείου και συνδέσμων",
+    "DELETED_LINKS": "Σύνδεσμοι που έχουν διαγραφεί",
+    "YEAR": "Χρονιά",
+    "DAY": "Ημέρα",
+    "MINUTE": "Λεπτά",
+    "HOUR": "Ώρα",
+    "SECOND": "Δευτερόλεπτα",
+    "LESS_1_SEC": "λιγότερο από ένα δευτερόλεπτο"
 }
index c2a3089a9960e39cc14e8bf5ae0ac901456eb685..28fc125ffa7601fb4bfe3ab84f315730acf58090 100644 (file)
 {
-    "Jirafeau, your web file repository": 
-    "Jirafeau, your web file repository",
-    "Select a file":
-    "Select a file",
-    "Send":
-    "Send",
-    "Uploading ...":
-    "Uploading ...",
-    "One time download":
-    "One time download",
-    "Password":
-    "Password",
-    "Time limit":
-    "Time limit",
-    "Maximum file size":
-    "Maximum file size",
-    "powered by Open-Source project Jirafeau":
-    "powered by Open-Source project Jirafeau",
-    "Made with":
-    "Made with",
-    "Jirafeau Project":
-    "Jirafeau Project",
-    "One minute":
-    "One minute",
-    "One hour":
-    "One hour",
-    "One day":
-    "One day",
-    "One week":
-    "One week",
-    "One month":
-    "One month",
-    "One quarter":
-    "One quarter",
-    "One year":
-    "One year",
-    "None":
-    "None",
-    "Upload password":
-    "Upload password",
-    "File is too big":
-    "File is too big",
-    "File size is limited to":
-    "File size is limited to",
-    "The file directory is not writable":
-    "The file directory is not writable",
-    "The link directory is not writable":
-    "The link directory is not writable",
-    "The async directory is not writable!":
-    "The async directory is not writable!",
-    "Installer script still present":
-    "Installer script still present",
-    "Please make sure to delete the installer script \"install.php\" before continuing.":
-    "Please make sure to delete the installer script \"install.php\" before continuing.",
-    "An error occurred.":
-    "An error occurred.",
-    "File uploaded !":
-    "File uploaded !",
-    "Download page":
-    "Download page",
-    "This file is valid until the following date":
-    "This file is valid until the following date",
-    "View link":
-    "View link",
-    "Direct download link":
-    "Direct download link",
-    "Delete link":
-    "Delete link",
-    "Download":
-    "Download",
-    "Preview":
-    "Preview",
-    "Sorry, the requested file is not found":
-    "Sorry, the requested file is not found",
-    "File not available.":
-    "File not available.",
-    "Confirm deletion":
-    "Confirm deletion",
-    "You are about to delete":
-    "You are about to delete",
-    "Delete":
-    "Delete",
-    "File has been deleted.":
-    "File has been deleted.",
-    "The time limit of this file has expired.":
-    "The time limit of this file has expired.",
-    "Password protection":
-    "Password protection",
-    "Give the password of this file":
-    "Give the password of this file",
-    "Access denied":
-    "Access denied",
-    "You are about to download":
-    "You are about to download",
-    "By using our services, you accept our":
-    "By using our services, you accept our",
-    "Terms of Service":
-    "Terms of Service",
-    "Warning, this file will self-destruct after being read":
-    "Warning, this file will self-destruct after being read",
-    "Internal error during file creation.":
-    "Internal error during file creation.",
-    "This file was generated by the install process. You can edit it. Please see config.original.php to understand the configuration items.":
-    "This file was generated by the install process. You can edit it. Please see config.original.php to understand the configuration items.",
-    "The following directory could not be created":
-    "The following directory could not be created",
-    "You should create this directory manually.":
-    "You should create this directory manually.",
-    "The following directory is not writable":
-    "The following directory is not writable",
-    "You should give the write permission to the web server on this directory.":
-    "You should give the write permission to the web server on this directory.",
-    "Here is a solution":
-    "Here is a solution",
-    "The local configuration file could not be created. Create a <code>lib/config.local.php</code> file and give the write permission to the web server (preferred solution), or give the write permission to the web server on the <code>lib</code> directory.":
-    "The local configuration file could not be created. Create a <code>lib/config.local.php</code> file and give the write permission to the web server (preferred solution), or give the write permission to the web server on the <code>lib</code> directory.",
-    "The local configuration is not writable by the web server. Give the write permission to the web server on the '<code>lib/config.local.php</code> file.":
-    "The local configuration is not writable by the web server. Give the write permission to the web server on the '<code>lib/config.local.php</code> file.",
-    "Installation of Jirafeau":
-    "Installation of Jirafeau",
-    "step":
-    "step",
-    "out of":
-    "out of",
-    "Administration password":
-    "Administration password",
-    "Finalisation":
-    "Finalisation",
-    "Jirafeau is setting the website according to the configuration you provided.":
-    "Jirafeau is setting the website according to the configuration you provided.",
-    "Previous step":
-    "Previous step",
-    "Retry this step":
-    "Retry this step",
-    "Jirafeau is now fully operational":
-    "Jirafeau is now fully operational",
-    "Information":
-    "Information",
-    "The base address of Jirafeau is the first part of the URL, until (and including) the last slash. For example: \"http://www.example.com/\". Do not forget the trailing slash!":
-    "The base address of Jirafeau is the first part of the URL, until (and including) the last slash. For example: \"http://www.example.com/\". Do not forget the trailing slash!",
-    "Base address":
-    "Base address",
-    "The data directory is where your files and information about your files will be stored. You should put it outside your web site, or at least restrict the access to this directory. Do not forget the trailing slash!":
-    "The data directory is where your files and information about your files will be stored. You should put it outside your web site, or at least restrict the access to this directory. Do not forget the trailing slash!",
-    "Data directory":
-    "Data directory",
-    "Jirafeau is internationalised. Choose a specific langage or choose Automatic (langage is provided by user's browser).":
-    "Jirafeau is internationalised. Choose a specific langage or choose Automatic (langage is provided by user's browser).",
-    "Choose the default language":
-    "Choose the default language",
-    "Next step":
-    "Next step",
-    "Jirafeau has an administration interface (through admin.php). You can set a password to access the interface or leave it empty to disable the interface.":
-    "Jirafeau has an administration interface (through admin.php). You can set a password to access the interface or leave it empty to disable the interface.",
-    "Administration password":
-    "Administration password",
-    "Sorry, the admin interface is not enabled.":
-    "Sorry, the admin interface is not enabled.",
-    "Sorry, you are not authenticated on admin interface.":
-    "Sorry, you are not authenticated on admin interface.",
-    "Login":
-    "Login",
-    "Wrong password.":
-    "Wrong password.",
-    "Admin interface":
-    "Admin interface",
-    "Clean expired files":
-    "Clean expired files",
-    "Clean old unfinished transfers":
-    "Clean old unfinished transfers",
-    "Clean":
-    "Clean",
-    "Search files by name":
-    "Search files by name",
-    "Search":
-    "Search",
-    "List all files":
-    "List all files",
-    "List":
-    "List",
-    "Actions":
-    "Actions",
-    "Search files by file hash":
-    "Search files by file hash",
-    "Search a specific link":
-    "Search a specific link",
-    "Number of cleaned files":
-    "Number of cleaned files",
-    "Logout":
-    "Logout",
-    "You are now loggued out":
-    "You are now loggued out",
-    "Link deleted":
-    "Link deleted",
-    "Filename":
-    "Filename",
-    "file":
-    "file",
-    "link":
-    "link",
-    "Type":
-    "Type",
-    "Size":
-    "Size",
-    "Expire":
-    "Expire",
-    "Onetime":
-    "Onetime",
-    "Upload date":
-    "Upload date",
-    "Origin":
-    "Origin",
-    "Action":
-    "Action",
-    "Del link":
-    "Del link",
-    "Del file and links":
-    "Del file and links",
-    "Deleted links":
-    "Deleted links",
-    "year":
-    "year",
-    "day":
-    "day",
-    "minute":
-    "minute",
-    "hour":
-    "hour",
-    "second":
-    "second",
-    "less than a second":
-    "less than a second"
+    "JI_WEB_RE":  "Jirafeau, your web file repository",
+    "SEL_FILE": "Select a file",
+    "SEND": "Send",
+    "UP": "Uploading ...",
+    "ONE_TIME_DL": "One time download",
+    "PSW": "Password",
+    "TIME_LIM": "Time limit",
+    "MAX_FILE_SIZE": "Maximum file size",
+    "POWERED_BY": "powered by Open-Source project Jirafeau",
+    "MADE_WITH": "Made with",
+    "JI_PROJECT": "Jirafeau Project",
+    "1_MIN": "One minute",
+    "1_H": "One hour",
+    "1_D": "One day",
+    "1_W": "One week",
+    "1_M": "One month",
+    "1_Q": "One quarter",
+    "1_Y": "One year",
+    "NONE": "None",
+    "UP_PSW": "Upload password",
+    "2_BIG": "File is too big",
+    "FILE_LIM": "File size is limited to",
+    "FILE_DIR_W": "The file directory is not writable",
+    "LINK_DIR_W": "The link directory is not writable",
+    "ASYNC_DIR_W": "The async directory is not writable!",
+    "INSTALL_SCRIPT_HERE": "Installer script still present",
+    "ERR_OCC": "An error occurred.",
+    "FILE_UP": "File uploaded !",
+    "DL_PAGE": "Download page",
+    "VALID_UNTIL": "This file is valid until the following date",
+    "VIEW_LINK": "View link",
+    "DIRECT_DL": "Direct download link",
+    "DELETE_LINK": "Delete link",
+    "DL": "Download",
+    "PREVIEW": "Preview",
+    "FILE_404": "Sorry, the requested file is not found",
+    "FILE_NOT_AVAIL": "File not available.",
+    "CONFIRM_DEL": "Confirm deletion",
+    "GONNA_DEL": "You are about to delete",
+    "DELETE": "Delete",
+    "FILE_DELETED": "File has been deleted.",
+    "FILE_EXPIRED": "The time limit of this file has expired.",
+    "PSW_PROTEC": "Password protection",
+    "GIMME_PSW": "Give the password of this file",
+    "ACCESS_KO": "Access denied",
+    "NOW_DOWNLOADING": "You are about to download",
+    "USING_SERIVCE": "By using our services, you accept our",
+    "TOS": "Terms of Service",
+    "AUTO_DESTRUCT": "Warning, this file will self-destruct after being read",
+    "INTERNAL_ERROR_DEL": "Internal error during file creation.",
+    "CONF_AUTOGEN_COMMENT": "This file was generated by the install process. You can edit it. Please see config.original.php to understand the configuration items.",
+    "CANNOT_CREATE_DIR": "The following directory could not be created",
+    "MANUAL_CREATE": "You should create this directory manually.",
+    "DIR_NOT_W": "The following directory is not writable",
+    "GIMME_W": "You should give the write permission to the web server on this directory.",
+    "HERE_SOLUTION": "Here is a solution",
+    "CONF_SOLUTION": "The local configuration file could not be created. Create a <code>lib/config.local.php</code> file and give the write permission to the web server (preferred solution), or give the write permission to the web server on the <code>lib</code> directory.",
+    "CONF_SOLUTION_2": "The local configuration is not writable by the web server. Give the write permission to the web server on the '<code>lib/config.local.php</code> file.",
+    "JI_INSTALL": "Installation of Jirafeau",
+    "STEP": "step",
+    "OUT_OF": "out of",
+    "ADMIN_PSW": "Administration password",
+    "FINALIZATION": "Finalisation",
+    "SETTING_UP": "Jirafeau is setting the website according to the configuration you provided.",
+    "PREV_STEP": "Previous step",
+    "RETRY_STEP": "Retry this step",
+    "JI_FONCTIONAL": "Jirafeau is now fully operational",
+    "INFO": "Information",
+    "BASE_ADDR_INFO": "The base address of Jirafeau is the first part of the URL, until (and including) the last slash. For example: \"http://www.example.com/\". Do not forget the trailing slash!",
+    "BASE_ADDR": "Base address",
+    "DATA_DIR_EXPLAINATION": "The data directory is where your files and information about your files will be stored. You should put it outside your web site, or at least restrict the access to this directory. Do not forget the trailing slash!",
+    "DATA_DIR": "Data directory",
+    "JI_HAZ_LANGAGES": "Jirafeau is internationalised. Choose a specific langage or choose Automatic (langage is provided by user's browser).",
+    "DEF_LANGUAGE": "Choose the default language",
+    "NEXT_STEP": "Next step",
+    "ADMIN_INTERFACE_INFO": "Jirafeau has an administration interface (through admin.php). You can set a password to access the interface or leave it empty to disable the interface.",
+    "NO_ADMIN": "Sorry, the admin interface is not enabled.",
+    "NO_ADMIN_AUTH": "Sorry, you are not authenticated on admin interface.",
+    "LOGIN": "Login",
+    "BAD_PSW": "Wrong password.",
+    "ADMIN_INTERFACE": "Admin interface",
+    "CLEAN_EXPIRED": "Clean expired files",
+    "CLEAN_INCOMPLETE": "Clean old unfinished transfers",
+    "CLEAN": "Clean",
+    "SEARCH_NAME": "Search files by name",
+    "SEARCH": "Search",
+    "LS_FILES": "List all files",
+    "LIST": "List",
+    "ACTIONS": "Actions",
+    "SEARH_BY_HASH": "Search files by file hash",
+    "SEARCH_LINK": "Search a specific link",
+    "CLEANED_FILES_CNT": "Number of cleaned files",
+    "LOGOUT": "Logout",
+    "NOW_LOGOUT": "You are now loggued out",
+    "LINK_DELETED": "Link deleted",
+    "FILENAME": "Filename",
+    "FILE": "file",
+    "LINK": "link",
+    "TYPE": "Type",
+    "SIZE": "Size",
+    "EXPIRE": "Expire",
+    "ONETIME": "Onetime",
+    "UPLOAD_DATE": "Upload date",
+    "ORIGIN": "Origin",
+    "ACTION": "Action",
+    "DEL_LINK": "Del link",
+    "DEL_FILE_LINKS": "Del file and links",
+    "DELETED_LINKS": "Deleted links",
+    "YEAR": "year",
+    "DAY": "day",
+    "MINUTE": "minute",
+    "HOUR": "hour",
+    "SECOND": "second",
+    "LESS_1_SEC": "less than a second"
 }
index c5a184594740f94c715630682638874165a506bd..ffff390c48c570d714a82c548dbe21812c119813 100644 (file)
 {
-    "Access denied": "Acceso denegado",
-    "Action": "Acción",
-    "Actions": "Acciones",
-    "Admin interface": "Panel de Administración",
-    "Administration password": "Contraseña de Administración",
-    "An error occurred.": "Ocurrió un error",
-    "Base address": "Dirección base",
-    "By using our services, you accept our": "Al utilizar nuestros servicios, acepta nuestros",
-    "Choose the default language": "Elija el idioma predeterminado",
-    "Clean": "Limpiar",
-    "Clean expired files": "Limpiar archivos caducados",
-    "Clean old unfinished transfers": "Limpiar las transferencias sin terminar",
-    "Data directory": "Directorio de datos",
-    "Del file and links": "Borrar archivos y enlaces",
-    "Del link": "Borrar enlace",
-    "Delete link": "Eliminar enlace",
-    "Deleted links": "Eliminar enlaces",
-    "Direct download link": "Enlace de descarga directa",
-    "Download": "Descargar",
-    "Download page": "Página de descarga",
-    "Expire": "Expira",
-    "File has been deleted.": "El archivos ha sido borrado",
-    "File is too big": "El archivo es demasiado grande",
-    "File not available.": "Archivo no disponible",
-    "File size is limited to": "El tamaño del archivo está limitado a",
-    "File uploaded !": "¡Archivo subido!",
-    "Filename": "Nombre del archivo",
-    "Finalisation": "Finalización",
-    "Give the password of this file": "Contraseña para el archivo",
-    "Here is a solution": "Aquí hay una solución",
-    "Information": "Información",
-    "Installation of Jirafeau": "Instalación de Jirafeau",
-    "Installer script still present": "El Script de instalación todavía existe",
-    "Internal error during file creation.": "Error interno durante la creación del archivo",
-    "Jirafeau Project": "Proyecto Jirafeau",
-    "Jirafeau has an administration interface (through admin.php). You can set a password to access the interface or leave it empty to disable the interface.": "Jirafeau tiene una panel de administración (a través de admin.php). Puede establecer una contraseña para acceder al panel o dejarla vacía para deshabilitarla.",
-    "Jirafeau is internationalised. Choose a specific langage or choose Automatic (langage is provided by user's browser).": "Jirafeau es multilenguaje. Elija un idioma o elija automático (el idioma será proporcionado por el navegador utilizado).",
-    "Jirafeau is now fully operational": "Jirafeau está ahora completamente operativo",
-    "Jirafeau is setting the website according to the configuration you provided.": "Jirafeau está configurado de acuerdo a la configuración proporcionada.",
+    "ACCESS_KO": "Acceso denegado",
+    "ACTION": "Acción",
+    "ACTIONS": "Acciones",
+    "ADMIN_INTERFACE": "Panel de Administración",
+    "ADMIN_PSW": "Contraseña de Administración",
+    "ERR_OCC": "Ocurrió un error",
+    "BASE_ADDR": "Dirección base",
+    "USING_SERIVCE": "Al utilizar nuestros servicios, acepta nuestros",
+    "DEF_LANGUAGE": "Elija el idioma predeterminado",
+    "CLEAN": "Limpiar",
+    "CLEAN_EXPIRED": "Limpiar archivos caducados",
+    "CLEAN_INCOMPLETE": "Limpiar las transferencias sin terminar",
+    "DATA_DIR": "Directorio de datos",
+    "DEL_FILE_LINKS": "Borrar archivos y enlaces",
+    "DEL_LINK": "Borrar enlace",
+    "DELETE_LINK": "Eliminar enlace",
+    "DELETED_LINKS": "Eliminar enlaces",
+    "DIRECT_DL": "Enlace de descarga directa",
+    "DL": "Descargar",
+    "DL_PAGE": "Página de descarga",
+    "EXPIRE": "Expira",
+    "FILE_DELETED": "El archivos ha sido borrado",
+    "2_BIG": "El archivo es demasiado grande",
+    "FILE_NOT_AVAIL": "Archivo no disponible",
+    "FILE_LIM": "El tamaño del archivo está limitado a",
+    "FILE_UP": "¡Archivo subido!",
+    "FILENAME": "Nombre del archivo",
+    "FINALIZATION": "Finalización",
+    "GIMME_PSW": "Contraseña para el archivo",
+    "HERE_SOLUTION": "Aquí hay una solución",
+    "INFO": "Información",
+    "JI_INSTALL": "Instalación de Jirafeau",
+    "INSTALL_SCRIPT_HERE": "El Script de instalación todavía existe",
+    "INTERNAL_ERROR_DEL": "Error interno durante la creación del archivo",
+    "JI_PROJECT": "Proyecto Jirafeau",
+    "ADMIN_INTERFACE_INFO": "Jirafeau tiene una panel de administración (a través de admin.php). Puede establecer una contraseña para acceder al panel o dejarla vacía para deshabilitarla.",
+    "JI_HAZ_LANGAGES": "Jirafeau es multilenguaje. Elija un idioma o elija automático (el idioma será proporcionado por el navegador utilizado).",
+    "JI_FONCTIONAL": "Jirafeau está ahora completamente operativo",
+    "SETTING_UP": "Jirafeau está configurado de acuerdo a la configuración proporcionada.",
     "Jirafeau, su repositorio de archivos web": "",
-    "Link deleted": "Enlace eliminado",
-    "List": "Lista",
-    "List all files": "Listar todos los archivos",
-    "Login": "Iniciar sesión",
-    "Logout": "Cerrar sesión",
-    "Maximum file size": "Tamaño máximo de archivo",
-    "Next step": "Siguiente paso",
-    "None": "Ninguna",
-    "Number of cleaned files": "Número de archivos eliminados",
-    "One day": "Un día",
-    "One hour": "Una hora",
-    "One minute": "Un minuto",
-    "One month": "Un mes",
-    "One time download": "Descargar una vez",
-    "One week": "Una semana",
-    "One year": "Un año",
-    "Onetime": "Una vez",
-    "Origin": "Origen",
-    "Password": "Contraseña",
-    "Password protection": "Protección por Contraseña",
-    "Please make sure to delete the installer script \"install.php\" before continuing.": "Asegúrese de borrar el script de instalación \"install.php\" antes de continuar.",
-    "Preview": "Vista previa",
-    "Previous step": "Paso anterior",
-    "Retry this step": "Reintentar este paso",
-    "Search": "Buscar",
-    "Search a specific link": "Buscar un enlace específico",
-    "Search files by file hash": "Buscar archivos por HASH de archivo",
-    "Search files by name": "Buscar archivos por nombre",
-    "Select a file": "Seleccione un archivo",
-    "Send": "Enviar",
-    "Size": "Tamaño",
-    "Sorry, the admin interface is not enabled.": "Lo sentimos, el panel de administración no está habilitado.",
-    "Sorry, the requested file is not found": "Lo sentimos, no se ha encontrado el archivo solicitado",
-    "Sorry, you are not authenticated on admin interface.": "Lo siento, no estás autenticado en el panel de administración.",
+    "LINK_DELETED": "Enlace eliminado",
+    "LIST": "Lista",
+    "LS_FILES": "Listar todos los archivos",
+    "LOGIN": "Iniciar sesión",
+    "LOGOUT": "Cerrar sesión",
+    "MAX_FILE_SIZE": "Tamaño máximo de archivo",
+    "NEXT_STEP": "Siguiente paso",
+    "NONE": "Ninguna",
+    "CLEANED_FILES_CNT": "Número de archivos eliminados",
+    "1_D": "Un día",
+    "1_H": "Una hora",
+    "1_MIN": "Un minuto",
+    "1_M": "Un mes",
+    "ONE_TIME_DL": "Descargar una vez",
+    "1_W": "Una semana",
+    "1_Y": "Un año",
+    "ONETIME": "Una vez",
+    "ORIGIN": "Origen",
+    "PSW": "Contraseña",
+    "PSW_PROTEC": "Protección por Contraseña",
+    "PREVIEW": "Vista previa",
+    "PREV_STEP": "Paso anterior",
+    "RETRY_STEP": "Reintentar este paso",
+    "SEARCH": "Buscar",
+    "SEARCH_LINK": "Buscar un enlace específico",
+    "SEARH_BY_HASH": "Buscar archivos por HASH de archivo",
+    "SEARCH_NAME": "Buscar archivos por nombre",
+    "SEL_FILE": "Seleccione un archivo",
+    "SEND": "Enviar",
+    "SIZE": "Tamaño",
+    "NO_ADMIN": "Lo sentimos, el panel de administración no está habilitado.",
+    "FILE_404": "Lo sentimos, no se ha encontrado el archivo solicitado",
+    "NO_ADMIN_AUTH": "Lo siento, no estás autenticado en el panel de administración.",
     "Term Of Service": "Términos del servicio",
-    "The async directory is not writable!": "¡No se puede escribir en el directorio asíncrono!",
-    "The base address of Jirafeau is the first part of the URL, until (and including) the last slash. For example: \"http://www.example.com/\". Do not forget the trailing slash!": "La dirección base de Jirafeau es la primera parte de la URL, hasta (e incluyendo) la última barra diagonal. Por ejemplo: \"http://www.example.com/\". ¡No olvide la barra diagonal de finalización!",
-    "The data directory is where your files and information about your files will be stored. You should put it outside your web site, or at least restrict the access to this directory. Do not forget the trailing slash!": "El directorio de datos es donde se almacenarán los archivos e información acerca de sus archivos, debe ponerlo fuera de su sitio web o, al menos, restringir el acceso a este directorio. ¡No olvide la barra diagonal!",
-    "The file directory is not writable": "No se puede escribir en el directorio de archivos.",
-    "The following directory could not be created": "No se puede crear el siguiente directorio",
-    "The following directory is not writable": "No puede escribirse en el siguiente directorio",
-    "The link directory is not writable": "No se pudo crear el siguiente directorio.",
-    "The local configuration file could not be created. Create a <code>lib/config.local.php</code> file and give the write permission to the web server (preferred solution), or give the write permission to the web server on the <code>lib</code> directory.": "No se pudo crear el archivo de configuración local. Crear un archivo <code>lib/config.local.php</code> y dar el permiso de escritura al servidor web (mejor solución) o dar el permiso de escritura al directorio <code>lib/config.local.php</code>.",
-    "The local configuration is not writable by the web server. Give the write permission to the web server on the '<code>lib/config.local.php</code> file.": "La configuracíon local no puede ser escrita. Dé permisos de escritura al archivo '<code>lib/config.local.php</code>",
-    "The time limit of this file has expired.": "El límite de tiempo de este archivo ha finalizado.",
-    "This file is valid until the following date": "Este archivo es válido hasta la siguiente fecha",
-    "This file was generated by the install process. You can edit it. Please see config.original.php to understand the configuration items.": "Este archivo ha sido generado por el proceso de instalación. Puede editarlo. Por favor consulte config.original.php para entender los elementos de configuración.",
-    "Time limit": "Tiempo límite",
-    "Type": "Tipo",
-    "Upload date": "Fecha de subida",
-    "Upload password": "Contraseña de subida",
-    "Uploading ...": "Subiendo ...",
-    "View link": "Ver enlace",
-    "Warning, this file will self-destruct after being read": "Advertencia, este archivo se autodestruirá después de ser leído",
-    "Wrong password.": "Contraseña incorrecta",
-    "You are about to download": "Estás a punto de descargar",
-    "You are now loggued out": "Ahora estás desconectado",
-    "You should create this directory manually.": "Debes crear este directorio manualmente.",
-    "You should give the write permission to the web server on this directory.": "Debe dar el permiso de escritura a este directorio",
-    "day": "día",
-    "file": "archivo",
-    "hour": "hora",
-    "less than a second": "menos de un segundo",
-    "link": "enlace",
-    "minute": "minuto",
-    "out of": "fuera de",
-    "powered by Open-Source project Jirafeau": "Impulsado por el proyecto Open-Source Jirafeau",
-    "second": "segundo",
-    "step": "paso",
-    "year": "año"
-}
\ No newline at end of file
+    "ASYNC_DIR_W": "¡No se puede escribir en el directorio asíncrono!",
+    "BASE_ADDR_INFO": "La dirección base de Jirafeau es la primera parte de la URL, hasta (e incluyendo) la última barra diagonal. Por ejemplo: \"http://www.example.com/\". ¡No olvide la barra diagonal de finalización!",
+    "DATA_DIR_EXPLAINATION": "El directorio de datos es donde se almacenarán los archivos e información acerca de sus archivos, debe ponerlo fuera de su sitio web o, al menos, restringir el acceso a este directorio. ¡No olvide la barra diagonal!",
+    "FILE_DIR_W": "No se puede escribir en el directorio de archivos.",
+    "CANNOT_CREATE_DIR": "No se puede crear el siguiente directorio",
+    "DIR_NOT_W": "No puede escribirse en el siguiente directorio",
+    "LINK_DIR_W": "No se pudo crear el siguiente directorio.",
+    "CONF_SOLUTION": "No se pudo crear el archivo de configuración local. Crear un archivo <code>lib/config.local.php</code> y dar el permiso de escritura al servidor web (mejor solución) o dar el permiso de escritura al directorio <code>lib/config.local.php</code>.",
+    "CONF_SOLUTION_2": "La configuracíon local no puede ser escrita. Dé permisos de escritura al archivo '<code>lib/config.local.php</code>",
+    "FILE_EXPIRED": "El límite de tiempo de este archivo ha finalizado.",
+    "VALID_UNTIL": "Este archivo es válido hasta la siguiente fecha",
+    "CONF_AUTOGEN_COMMENT": "Este archivo ha sido generado por el proceso de instalación. Puede editarlo. Por favor consulte config.original.php para entender los elementos de configuración.",
+    "TIME_LIM": "Tiempo límite",
+    "TYPE": "Tipo",
+    "UPLOAD_DATE": "Fecha de subida",
+    "UP_PSW": "Contraseña de subida",
+    "UP": "Subiendo ...",
+    "VIEW_LINK": "Ver enlace",
+    "AUTO_DESTRUCT": "Advertencia, este archivo se autodestruirá después de ser leído",
+    "BAD_PSW": "Contraseña incorrecta",
+    "NOW_DOWNLOADING": "Estás a punto de descargar",
+    "NOW_LOGOUT": "Ahora estás desconectado",
+    "MANUAL_CREATE": "Debes crear este directorio manualmente.",
+    "GIMME_W": "Debe dar el permiso de escritura a este directorio",
+    "DAY": "día",
+    "FILE": "archivo",
+    "HOUR": "hora",
+    "LESS_1_SEC": "menos de un segundo",
+    "LINK": "enlace",
+    "MINUTE": "minuto",
+    "OUT_OF": "fuera de",
+    "POWERED_BY": "Impulsado por el proyecto Open-Source Jirafeau",
+    "SECOND": "segundo",
+    "STEP": "paso",
+    "YEAR": "año"
+}
index b0729d0fa551d75c5ec97999e962ca07233ebdcf..6e5c26115e4d62eabd3b367ce3c1493d3fdf73ad 100644 (file)
 {
-    "Jirafeau, your web file repository": "",
-    "Select a file": "",
-    "Send": "",
-    "Uploading ...": "",
-    "One time download": "",
-    "Password": "",
-    "Time limit": "",
-    "Maximum file size": "",
-    "powered by Open-Source project Jirafeau": "",
-    "Made with": "",
-    "Jirafeau Project": "",
-    "One minute": "",
-    "One hour": "",
-    "One day": "",
-    "One week": "",
-    "One month": "",
-    "One quarter": "",
-    "One year": "",
-    "None": "",
-    "Upload password": "",
-    "File is too big": "",
-    "File size is limited to": "",
-    "The file directory is not writable": "",
-    "The link directory is not writable": "",
-    "The async directory is not writable!": "",
-    "Installer script still present": "",
-    "Please make sure to delete the installer script \"install.php\" before continuing.": "",
-    "An error occurred.": "",
-    "File uploaded !": "",
-    "Download page": "",
-    "This file is valid until the following date": "",
-    "View link": "",
-    "Direct download link": "",
-    "Delete link": "",
-    "Download": "",
-    "Preview": "",
-    "Sorry, the requested file is not found": "",
-    "File not available.": "",
-    "File has been deleted.": "",
-    "The time limit of this file has expired.": "",
-    "Password protection": "",
-    "Give the password of this file": "",
-    "Access denied": "",
-    "You are about to download": "",
-    "By using our services, you accept our": "",
-    "Terms of Service": "",
-    "Warning, this file will self-destruct after being read": "",
-    "Internal error during file creation.": "",
-
-    "This file was generated by the install process. You can edit it. Please see config.original.php to understand the configuration items.": "",
-    "The following directory could not be created": "",
-    "You should create this directory manually.": "",
-    "The following directory is not writable": "",
-    "You should give the write permission to the web server on this directory.": "",
-    "Here is a solution": "",
-    "The local configuration file could not be created. Create a <code>lib/config.local.php</code> file and give the write permission to the web server (preferred solution), or give the write permission to the web server on the <code>lib</code> directory.": "",
-    "The local configuration is not writable by the web server. Give the write permission to the web server on the '<code>lib/config.local.php</code> file.": "",
-    "Installation of Jirafeau": "",
-    "step": "",
-    "out of": "",
-    "Administration password": "",
-    "Finalisation": "",
-    "Jirafeau is setting the website according to the configuration you provided.": "",
-    "Previous step": "",
-    "Retry this step": "",
-    "Jirafeau is now fully operational": "",
-    "Information": "",
-    "The base address of Jirafeau is the first part of the URL, until (and including) the last slash. For example: \"http://www.example.com/\". Do not forget the trailing slash!": "",
-    "Base address": "",
-    "The data directory is where your files and information about your files will be stored. You should put it outside your web site, or at least restrict the access to this directory. Do not forget the trailing slash!": "",
-    "Data directory": "",
-    "Jirafeau is internationalised. Choose a specific langage or choose Automatic (langage is provided by user's browser).": "",
-    "Choose the default language": "",
-    "Next step": "",
-    "Jirafeau has an administration interface (through admin.php). You can set a password to access the interface or leave it empty to disable the interface.": "",
-    "Administration password": "",
-
-    "Sorry, the admin interface is not enabled.": "",
-    "Sorry, you are not authenticated on admin interface.": "",
-    "Login": "",
-    "Wrong password.": "",
-    "Admin interface": "",
-    "Clean expired files": "",
-    "Clean old unfinished transfers": "",
-    "Clean": "",
-    "Search files by name": "",
-    "Search": "",
-    "List all files": "",
-    "List": "",
-    "Actions": "",
-    "Search files by file hash": "",
-    "Search a specific link": "",
-    "Number of cleaned files": "",
-    "Logout": "",
-    "You are now loggued out": "",
-    "Link deleted": "",
-    "Filename": "",
-    "file": "",
-    "link": "",
-    "Type": "",
-    "Size": "",
-    "Expire": "",
-    "Onetime": "",
-    "Upload date": "",
-    "Origin": "",
-    "Action": "",
-    "Del link": "",
-    "Del file and links": "",
-    "Deleted links": "",
-    "year": "",
-    "day": "",
-    "minute": "",
-    "hour": "",
-    "second": "",
-    "less than a second": ""
+    "JI_WEB_RE": "",
+    "SEL_FILE": "",
+    "SEND": "",
+    "UP": "",
+    "ONE_TIME_DL": "",
+    "PSW": "",
+    "TIME_LIM": "",
+    "MAX_FILE_SIZE": "",
+    "POWERED_BY": "",
+    "MADE_WITH": "",
+    "JI_PROJECT": "",
+    "1_MIN": "",
+    "1_H": "",
+    "1_D": "",
+    "1_W": "",
+    "1_M": "",
+    "1_Q": "",
+    "1_Y": "",
+    "NONE": "",
+    "UP_PSW": "",
+    "2_BIG": "",
+    "FILE_LIM": "",
+    "FILE_DIR_W": "",
+    "LINK_DIR_W": "",
+    "ASYNC_DIR_W": "",
+    "INSTALL_SCRIPT_HERE": "",
+    "ERR_OCC": "",
+    "FILE_UP": "",
+    "DL_PAGE": "",
+    "VALID_UNTIL": "",
+    "VIEW_LINK": "",
+    "DIRECT_DL": "",
+    "DELETE_LINK": "",
+    "DL": "",
+    "PREVIEW": "",
+    "FILE_404": "",
+    "FILE_NOT_AVAIL": "",
+    "FILE_DELETED": "",
+    "FILE_EXPIRED": "",
+    "PSW_PROTEC": "",
+    "GIMME_PSW": "",
+    "ACCESS_KO": "",
+    "NOW_DOWNLOADING": "",
+    "USING_SERIVCE": "",
+    "TOS": "",
+    "AUTO_DESTRUCT": "",
+    "INTERNAL_ERROR_DEL": "",
+    "CONF_AUTOGEN_COMMENT": "",
+    "CANNOT_CREATE_DIR": "",
+    "MANUAL_CREATE": "",
+    "DIR_NOT_W": "",
+    "GIMME_W": "",
+    "HERE_SOLUTION": "",
+    "CONF_SOLUTION": "",
+    "CONF_SOLUTION_2": "",
+    "JI_INSTALL": "",
+    "STEP": "",
+    "OUT_OF": "",
+    "ADMIN_PSW": "",
+    "FINALIZATION": "",
+    "SETTING_UP": "",
+    "PREV_STEP": "",
+    "RETRY_STEP": "",
+    "JI_FONCTIONAL": "",
+    "INFO": "",
+    "BASE_ADDR_INFO": "",
+    "BASE_ADDR": "",
+    "DATA_DIR_EXPLAINATION": "",
+    "DATA_DIR": "",
+    "JI_HAZ_LANGAGES": "",
+    "DEF_LANGUAGE": "",
+    "NEXT_STEP": "",
+    "ADMIN_INTERFACE_INFO": "",
+    "NO_ADMIN": "",
+    "NO_ADMIN_AUTH": "",
+    "LOGIN": "",
+    "BAD_PSW": "",
+    "ADMIN_INTERFACE": "",
+    "CLEAN_EXPIRED": "",
+    "CLEAN_INCOMPLETE": "",
+    "CLEAN": "",
+    "SEARCH_NAME": "",
+    "SEARCH": "",
+    "LS_FILES": "",
+    "LIST": "",
+    "ACTIONS": "",
+    "SEARH_BY_HASH": "",
+    "SEARCH_LINK": "",
+    "CLEANED_FILES_CNT": "",
+    "LOGOUT": "",
+    "NOW_LOGOUT": "",
+    "LINK_DELETED": "",
+    "FILENAME": "",
+    "FILE": "",
+    "LINK": "",
+    "TYPE": "",
+    "SIZE": "",
+    "EXPIRE": "",
+    "ONETIME": "",
+    "UPLOAD_DATE": "",
+    "ORIGIN": "",
+    "ACTION": "",
+    "DEL_LINK": "",
+    "DEL_FILE_LINKS": "",
+    "DELETED_LINKS": "",
+    "YEAR": "",
+    "DAY": "",
+    "MINUTE": "",
+    "HOUR": "",
+    "SECOND": "",
+    "LESS_1_SEC": ""
 }
index 468f9f94578844bb5c78fd980cad20712ef13878..a5a49cb04c0e3ef54e3371d66215242bbd71d73a 100644 (file)
 {
-    "Access denied": "Pääsy estetty",
-    "Action": "Toiminto",
-    "Actions": "Toiminnot",
-    "Admin interface": "Ylläpito",
-    "Administration password": "Ylläpitäjän salasana",
-    "An error occurred.": "Virhe ilmaantui.",
-    "Base address": "Perusosoite",
-    "By using our services, you accept our": "Käyttäessäsi palvelua, hyväksyt",
-    "Choose the default language": "Valitse oletuskieli",
-    "Clean": "Siivoa",
-    "Clean expired files": "Siivoa vanhentuneet tiedostot",
-    "Clean old unfinished transfers": "Siivoa vanhat keskeneräiset lataukset",
-    "Data directory": "Data hakemisto",
-    "Del file and links": "Poista tiedosto ja linkit",
-    "Del link": "Poista linkki",
-    "Delete link": "Poistolinkki",
-    "Deleted links": "Poistetut linkit",
-    "Direct download link": "Suora latauslinkki",
-    "Download": "Lataa",
-    "Download page": "Lataussivu",
-    "Expire": "Vanhentuu",
-    "File has been deleted.": "Tiedosto poistettu.",
-    "File is too big": "Tiedosto on liian iso",
-    "File not available.": "Tiedostoa ei saatavilla.",
-    "File size is limited to": "Tiedoston maksimikoko on",
-    "File uploaded !": "Tiedosto ladattu!",
-    "Filename": "Tiedostonimi",
-    "Finalisation": "Viimeistely",
-    "Give the password of this file": "Anna salasana tiedostolle",
-    "Here is a solution": "Tässä on ratkaisu",
-    "Information": "Tietoja",
-    "Installation of Jirafeau": "Jirafeaun asennus",
-    "Installer script still present": "Asennus skripti edelleen löytyy",
-    "Internal error during file creation.": "Sisäinen virhe ilmaantui tiedostoa luodessa.",
-    "Jirafeau Project": "Jirafeau Projekti",
-    "Jirafeau has an administration interface (through admin.php). You can set a password to access the interface or leave it empty to disable the interface.": "Jirafeaussa on ylläpitosivu (admin.php:n kautta). Voit antaa salanan ottaaksesi sen käyttöön tai jättää tyjäksi poistaaksesi sen käytöstä.",
-    "Jirafeau is internationalised. Choose a specific langage or choose Automatic (langage is provided by user's browser).": "Jirafeau on monikielinen. Valitse haluamasi kieli tai käytä Automaattista tunnistusta (kieli valitaan käyttäjän selaimen kielen perusteella).",
-    "Jirafeau is now fully operational": "Giraffes on nyt toiminnassa",
-    "Jirafeau is setting the website according to the configuration you provided.": "Jirafeau asentaa verkkosivua antamiesi asetusten mukaan.",
-    "Jirafeau, your web file repository": "Jirafeau, sinun tiedostosäilö",
-    "Link deleted": "Tiedosto poistettu",
-    "List": "Näytä",
-    "List all files": "Näytä kaikki tiedostot",
-    "Login": "Kirjaudu sisään",
-    "Logout": "Kirjaudu ulos",
-    "Maximum file size": "Maksimi tiedostokoko",
-    "Next step": "Seuraava vaihe",
-    "None": "Ikuisesti",
-    "Number of cleaned files": "Siivottujen tiedostojen määrä",
-    "One day": "Yksi päivä",
-    "One hour": "Yksi tunti",
-    "One minute": "Yksi minuutti",
-    "One month": "Yksi kuukausi",
-    "One time download": "Kertalataus",
-    "One week": "Yksi viikko",
-    "One year": "Yksi vuosi",
-    "Onetime": "Kertalataus",
-    "Origin": "Alkuperä",
-    "Password": "Salasana",
-    "Password protection": "Salasanasuojaus",
-    "Please make sure to delete the installer script \"install.php\" before continuing.": "Varmista, että poistat \"install.php\" asennustiedoston ennen kuin jatkat.",
-    "Preview": "Esikatsele",
-    "Previous step": "Edellinen vaihe",
-    "Retry this step": "Aloita alusta tämä vaihe",
-    "Search": "Etsi",
-    "Search a specific link": "Etsi tiettyä linkkiä",
-    "Search files by file hash": "Etsi tiedostoja tiedoston hashilla",
-    "Search files by name": "Etsi tiedostoja nimellä",
-    "Select a file": "Valitse tiedosto",
-    "Send": "Lähetä",
-    "Size": "Koko",
-    "Sorry, the admin interface is not enabled.": "Ylläpitotilaa ei otettu käyttöön.",
-    "Sorry, the requested file is not found": "Valitettavasti hakemaasi tiedostoa ei löytynyt",
-    "Sorry, you are not authenticated on admin interface.": "Sinulla ei ole oikeutta ylläpitoon.",
+    "ACCESS_KO": "Pääsy estetty",
+    "ACTION": "Toiminto",
+    "ACTIONS": "Toiminnot",
+    "ADMIN_INTERFACE": "Ylläpito",
+    "ADMIN_PSW": "Ylläpitäjän salasana",
+    "ERR_OCC": "Virhe ilmaantui.",
+    "BASE_ADDR": "Perusosoite",
+    "USING_SERIVCE": "Käyttäessäsi palvelua, hyväksyt",
+    "DEF_LANGUAGE": "Valitse oletuskieli",
+    "CLEAN": "Siivoa",
+    "CLEAN_EXPIRED": "Siivoa vanhentuneet tiedostot",
+    "CLEAN_INCOMPLETE": "Siivoa vanhat keskeneräiset lataukset",
+    "DATA_DIR": "Data hakemisto",
+    "DEL_FILE_LINKS": "Poista tiedosto ja linkit",
+    "DEL_LINK": "Poista linkki",
+    "DELETE_LINK": "Poistolinkki",
+    "DELETED_LINKS": "Poistetut linkit",
+    "DIRECT_DL": "Suora latauslinkki",
+    "DL": "Lataa",
+    "DL_PAGE": "Lataussivu",
+    "EXPIRE": "Vanhentuu",
+    "FILE_DELETED": "Tiedosto poistettu.",
+    "2_BIG": "Tiedosto on liian iso",
+    "FILE_NOT_AVAIL": "Tiedostoa ei saatavilla.",
+    "FILE_LIM": "Tiedoston maksimikoko on",
+    "FILE_UP": "Tiedosto ladattu!",
+    "FILENAME": "Tiedostonimi",
+    "FINALIZATION": "Viimeistely",
+    "GIMME_PSW": "Anna salasana tiedostolle",
+    "HERE_SOLUTION": "Tässä on ratkaisu",
+    "INFO": "Tietoja",
+    "JI_INSTALL": "Jirafeaun asennus",
+    "INSTALL_SCRIPT_HERE": "Asennus skripti edelleen löytyy",
+    "INTERNAL_ERROR_DEL": "Sisäinen virhe ilmaantui tiedostoa luodessa.",
+    "JI_PROJECT": "Jirafeau Projekti",
+    "ADMIN_INTERFACE_INFO": "Jirafeaussa on ylläpitosivu (admin.php:n kautta). Voit antaa salanan ottaaksesi sen käyttöön tai jättää tyjäksi poistaaksesi sen käytöstä.",
+    "JI_HAZ_LANGAGES": "Jirafeau on monikielinen. Valitse haluamasi kieli tai käytä Automaattista tunnistusta (kieli valitaan käyttäjän selaimen kielen perusteella).",
+    "JI_FONCTIONAL": "Giraffes on nyt toiminnassa",
+    "SETTING_UP": "Jirafeau asentaa verkkosivua antamiesi asetusten mukaan.",
+    "JI_WEB_RE": "Jirafeau, sinun tiedostosäilö",
+    "LINK_DELETED": "Tiedosto poistettu",
+    "LIST": "Näytä",
+    "LS_FILES": "Näytä kaikki tiedostot",
+    "LOGIN": "Kirjaudu sisään",
+    "LOGOUT": "Kirjaudu ulos",
+    "MAX_FILE_SIZE": "Maksimi tiedostokoko",
+    "NEXT_STEP": "Seuraava vaihe",
+    "NONE": "Ikuisesti",
+    "CLEANED_FILES_CNT": "Siivottujen tiedostojen määrä",
+    "1_D": "Yksi päivä",
+    "1_H": "Yksi tunti",
+    "1_MIN": "Yksi minuutti",
+    "1_M": "Yksi kuukausi",
+    "ONE_TIME_DL": "Kertalataus",
+    "1_W": "Yksi viikko",
+    "1_Y": "Yksi vuosi",
+    "ONETIME": "Kertalataus",
+    "ORIGIN": "Alkuperä",
+    "PSW": "Salasana",
+    "PSW_PROTEC": "Salasanasuojaus",
+    "PREVIEW": "Esikatsele",
+    "PREV_STEP": "Edellinen vaihe",
+    "RETRY_STEP": "Aloita alusta tämä vaihe",
+    "SEARCH": "Etsi",
+    "SEARCH_LINK": "Etsi tiettyä linkkiä",
+    "SEARH_BY_HASH": "Etsi tiedostoja tiedoston hashilla",
+    "SEARCH_NAME": "Etsi tiedostoja nimellä",
+    "SEL_FILE": "Valitse tiedosto",
+    "SEND": "Lähetä",
+    "SIZE": "Koko",
+    "NO_ADMIN": "Ylläpitotilaa ei otettu käyttöön.",
+    "FILE_404": "Valitettavasti hakemaasi tiedostoa ei löytynyt",
+    "NO_ADMIN_AUTH": "Sinulla ei ole oikeutta ylläpitoon.",
     "Term Of Service": "Palveluehdot",
-    "The async directory is not writable!": "Async hakemistoon ei ole kirjoitusoikeutta!",
-    "The base address of Jirafeau is the first part of the URL, until (and including) the last slash. For example: \"http://www.example.com/\". Do not forget the trailing slash!": "Perusosoite on Jirafeau sivuston ensimmäinen osa, ennen ensimmäistä \"/\"-merkkiä. Esimerkiksi: \"http://www.example.com/\". Älä unohda viimeistä \"/\"-merkkiä!",
-    "The data directory is where your files and information about your files will be stored. You should put it outside your web site, or at least restrict the access to this directory. Do not forget the trailing slash!": "Tämä on hakemisto johon tiedostot ja tiedot niistä tallennetaan. Sinun kannattaa sijoittaa se verkkosivun ulkopuolelle tai ainakin estää pääsy sinne. Älä unohda \"/\"-merkkiä lopusta!",
-    "The file directory is not writable": "Tiedostojen hakemistoon ei ole kirjoitusoikeutta",
-    "The following directory could not be created": "Seuraavaa hakemistoa ei voitu luoda",
-    "The following directory is not writable": "Seuraava hakemistoon ei kirjoitusoikeutta",
-    "The link directory is not writable": "Linkkien hakemistoon ei ole kirjoitusoikeutta",
-    "The local configuration file could not be created. Create a <code>lib/config.local.php</code> file and give the write permission to the web server (preferred solution), or give the write permission to the web server on the <code>lib</code> directory.": "Tiedosto config.local.php ei voitu luoda. Luo <code>lib/config.local.php</code> tiedosto ja palvelimelle kirjoitusoikeus siihen (suositeltu ratkaisu) tai anna palvelimelle oikeus <code>lib</code> hakemistoon.",
-    "The local configuration is not writable by the web server. Give the write permission to the web server on the '<code>lib/config.local.php</code> file.": "Palvelimella ei ole kirjoitusoikeutta tiedostoon. Anna kirjoitusoikeus palvelimelle <code>lib/config.local.php</code> tiedostoon.",
-    "The time limit of this file has expired.": "Tiedoston voimassaoloaika umpeutunut.",
-    "This file is valid until the following date": "Tiedosto on voimassa",
-    "This file was generated by the install process. You can edit it. Please see config.original.php to understand the configuration items.": "Tämä tiedosto luotiin asennusvaiheessa. Voit muokata sitä. Katso config.original.php ymmärtääksesi sen määrittelyt.",
-    "Time limit": "Voimassaoloaika",
-    "Type": "Laji",
-    "Upload date": "Latauspäivämäärä",
-    "Upload password": "Lähetä salasana",
-    "Uploading ...": "Lähetetään...",
-    "View link": "Näytä linkki",
-    "Warning, this file will self-destruct after being read": "Varoitus! Tämä tiedosto tuhoutuu, kun se on ladattu",
-    "Wrong password.": "Väärä salasana.",
-    "You are about to download": "Olet lataamassa tiedostoa",
-    "You are now loggued out": "Olet nyt kirjautunut ulos",
-    "You should create this directory manually.": "Sinun tulee luoda hakemisto käsin.",
-    "You should give the write permission to the web server on this directory.": "Sinun tulee antaa kirjoitusoikeus web palvelimelle tähän hakemistoon.",
-    "file": "tiedosto",
-    "link": "linkki",
-    "out of": "/",
-    "powered by Open-Source project Jirafeau": "taustalla Avoimen lähdekoodin Jirafeau projekti",
-    "step": "vaihe",
-    "year": "vuosi",
-    "day": "päivä",
-    "minute": "minuutti",
-    "hour": "tunti",
-    "second": "sekunti",
-    "less than a second": "alle sekunti"
+    "ASYNC_DIR_W": "Async hakemistoon ei ole kirjoitusoikeutta!",
+    "BASE_ADDR_INFO": "Perusosoite on Jirafeau sivuston ensimmäinen osa, ennen ensimmäistä \"/\"-merkkiä. Esimerkiksi: \"http://www.example.com/\". Älä unohda viimeistä \"/\"-merkkiä!",
+    "DATA_DIR_EXPLAINATION": "Tämä on hakemisto johon tiedostot ja tiedot niistä tallennetaan. Sinun kannattaa sijoittaa se verkkosivun ulkopuolelle tai ainakin estää pääsy sinne. Älä unohda \"/\"-merkkiä lopusta!",
+    "FILE_DIR_W": "Tiedostojen hakemistoon ei ole kirjoitusoikeutta",
+    "CANNOT_CREATE_DIR": "Seuraavaa hakemistoa ei voitu luoda",
+    "DIR_NOT_W": "Seuraava hakemistoon ei kirjoitusoikeutta",
+    "LINK_DIR_W": "Linkkien hakemistoon ei ole kirjoitusoikeutta",
+    "CONF_SOLUTION": "Tiedosto config.local.php ei voitu luoda. Luo <code>lib/config.local.php</code> tiedosto ja palvelimelle kirjoitusoikeus siihen (suositeltu ratkaisu) tai anna palvelimelle oikeus <code>lib</code> hakemistoon.",
+    "CONF_SOLUTION_2": "Palvelimella ei ole kirjoitusoikeutta tiedostoon. Anna kirjoitusoikeus palvelimelle <code>lib/config.local.php</code> tiedostoon.",
+    "FILE_EXPIRED": "Tiedoston voimassaoloaika umpeutunut.",
+    "VALID_UNTIL": "Tiedosto on voimassa",
+    "CONF_AUTOGEN_COMMENT": "Tämä tiedosto luotiin asennusvaiheessa. Voit muokata sitä. Katso config.original.php ymmärtääksesi sen määrittelyt.",
+    "TIME_LIM": "Voimassaoloaika",
+    "TYPE": "Laji",
+    "UPLOAD_DATE": "Latauspäivämäärä",
+    "UP_PSW": "Lähetä salasana",
+    "UP": "Lähetetään...",
+    "VIEW_LINK": "Näytä linkki",
+    "AUTO_DESTRUCT": "Varoitus! Tämä tiedosto tuhoutuu, kun se on ladattu",
+    "BAD_PSW": "Väärä salasana.",
+    "NOW_DOWNLOADING": "Olet lataamassa tiedostoa",
+    "NOW_LOGOUT": "Olet nyt kirjautunut ulos",
+    "MANUAL_CREATE": "Sinun tulee luoda hakemisto käsin.",
+    "GIMME_W": "Sinun tulee antaa kirjoitusoikeus web palvelimelle tähän hakemistoon.",
+    "FILE": "tiedosto",
+    "LINK": "linkki",
+    "OUT_OF": "/",
+    "POWERED_BY": "taustalla Avoimen lähdekoodin Jirafeau projekti",
+    "STEP": "vaihe",
+    "YEAR": "vuosi",
+    "DAY": "päivä",
+    "MINUTE": "minuutti",
+    "HOUR": "tunti",
+    "SECOND": "sekunti",
+    "LESS_1_SEC": "alle sekunti"
 }
index 8b0ecb9546f0d91c74af65869465ca642bb7fc8d..a5dc6266180fe51e4454f1e4655f06f3459970dc 100644 (file)
 {
-    "Access denied": "Accès interdit",
-    "Action": "Action",
-    "Actions": "Actions",
-    "Admin interface": "Interface d'administration",
-    "Administration password": "Mot de passe d'administration",
-    "An error occurred.": "Une erreur s'est produite.",
-    "Base address": "Adresse d'origine",
-    "By using our services, you accept our": "En utilisant nos services, vous acceptez nos",
-    "Choose the default language": "Choisissez la langue par défaut",
-    "Clean": "Nettoyage",
-    "Clean expired files": "Nettoyer les fichiers périmés",
-    "Clean old unfinished transfers": "Nettoyer les anciens transferts inachevés",
-    "Data directory": "Dossier de stockage des données",
-    "Del file and links": "Supprimer fichier et liens",
-    "Del link": "Supprimer le lien",
-    "Delete link": "Lien de suppression",
-    "Deleted links": "Liens supprimés",
-    "Direct download link": "Lien de téléchargement direct",
-    "Download": "Télécharger",
-    "Download page": "Page de téléchargement",
-    "Expire": "Expiration",
-    "File has been deleted.": "Le fichier a été supprimé.",
-    "File is too big": "Le fichier est trop volumineux",
-    "File not available.": "Fichier non disponible.",
-    "Confirm deletion": "Confirmation de suppréssion",
-    "You are about to delete": "Vous êtes sur le point de supprimer",
-    "Delete": "Supprimer",
-    "File size is limited to": "La taille de fichier est limité à",
-    "File uploaded !": "Fichier envoyé !",
-    "Filename": "Nom",
-    "Finalisation": "Finalisation",
-    "Give the password of this file": "Donnez le mot de passe pour ce fichier",
-    "Here is a solution": "Une solution possible",
-    "Information": "Information",
-    "Installation of Jirafeau": "Installation de Jirafeau",
-    "Installer script still present": "Le script d'installation est toujours présent",
-    "Internal error during file creation.": "Erreur interne lors la création de fichier.",
-    "Jirafeau Project": "Projet Jirafeau",
-    "Jirafeau has an administration interface (through admin.php). You can set a password to access the interface or leave it empty to disable the interface.": "Jirafeau a une interface d'administration (accessible via admin.php). Vous pouvez saisir un mot de passe pour y accéder ou ne pas en mettre pour désactiver l'accès à l'interface.",
-    "Jirafeau is internationalised. Choose a specific langage or choose Automatic (langage is provided by user's browser).": "Jirafeau supporte plusieurs langages. Choisissez un langage spécifique ou Automatique (la langue utilisée est alors fournie par le navigateur du visiteur).",
-    "Jirafeau is now fully operational": "Jirafeau est maintenant utilisable",
-    "Jirafeau is setting the website according to the configuration you provided.": "Jirafeau se configure selon les paramètres donnés.",
-    "Jirafeau, your web file repository": "Jirafeau, votre dépôt de fichiers",
-    "Link deleted": "Lien supprimé",
-    "List": "Lister",
-    "List all files": "Lister tous les fichiers",
-    "Login": "Connexion",
-    "Logout": "Déconnexion",
-    "Maximum file size": "Taille maximale",
-    "Next step": "Étape suivante",
-    "None": "Aucune",
-    "Number of cleaned files": "Nombre de fichiers nettoyés",
-    "One day": "Une journée",
-    "One hour": "Une heure",
-    "One minute": "Une minute",
-    "One month": "Un mois",
-    "One quarter": "Trois mois",
-    "One time download": "Téléchargement unique",
-    "One week": "Une semaine",
-    "One year": "Une année",
-    "Onetime": "Une fois",
-    "Origin": "Origine",
-    "Password": "Mot de passe",
-    "Password protection": "Protection par mot de passe",
-    "Please make sure to delete the installer script \"install.php\" before continuing.": "Merci de supprimer le fichier \"install.php\" avant de continuer.",
-    "Preview": "Prévisualiser",
-    "Previous step": "Étape précédente",
-    "Retry this step": "Ressayer cette étape",
-    "Search": "Rechercher",
-    "Search a specific link": "Rechercher un lien particulier",
-    "Search files by file hash": "Rechercher par empreinte de fichier",
-    "Search files by name": "Rechercher les fichiers par leur nom",
-    "Select a file": "Sélectionner un fichier à envoyer:",
-    "Send": "Envoyer",
-    "Size": "Taille",
-    "Sorry, the admin interface is not enabled.": "Désolé, l'interface d'administration n'est pas activée.",
-    "Sorry, the requested file is not found": "Désolé, le fichier que vous demandez n'existe pas ou n'existe plus",
-    "Sorry, you are not authenticated on admin interface.": "Désolé, vous n'êtes pas authentifié sur l'interface d'administration.",
+    "ACCESS_KO": "Accès interdit",
+    "ACTION": "Action",
+    "ACTIONS": "Actions",
+    "ADMIN_INTERFACE": "Interface d'administration",
+    "ADMIN_PSW": "Mot de passe d'administration",
+    "ERR_OCC": "Une erreur s'est produite.",
+    "BASE_ADDR": "Adresse d'origine",
+    "USING_SERIVCE": "En utilisant nos services, vous acceptez nos",
+    "DEF_LANGUAGE": "Choisissez la langue par défaut",
+    "CLEAN": "Nettoyage",
+    "CLEAN_EXPIRED": "Nettoyer les fichiers périmés",
+    "CLEAN_INCOMPLETE": "Nettoyer les anciens transferts inachevés",
+    "DATA_DIR": "Dossier de stockage des données",
+    "DEL_FILE_LINKS": "Supprimer fichier et liens",
+    "DEL_LINK": "Supprimer le lien",
+    "DELETE_LINK": "Lien de suppression",
+    "DELETED_LINKS": "Liens supprimés",
+    "DIRECT_DL": "Lien de téléchargement direct",
+    "DL": "Télécharger",
+    "DL_PAGE": "Page de téléchargement",
+    "EXPIRE": "Expiration",
+    "FILE_DELETED": "Le fichier a été supprimé.",
+    "2_BIG": "Le fichier est trop volumineux",
+    "FILE_NOT_AVAIL": "Fichier non disponible.",
+    "CONFIRM_DEL": "Confirmation de suppréssion",
+    "GONNA_DEL": "Vous êtes sur le point de supprimer",
+    "DELETE": "Supprimer",
+    "FILE_LIM": "La taille de fichier est limité à",
+    "FILE_UP": "Fichier envoyé !",
+    "FILENAME": "Nom",
+    "FINALIZATION": "Finalisation",
+    "GIMME_PSW": "Donnez le mot de passe pour ce fichier",
+    "HERE_SOLUTION": "Une solution possible",
+    "INFO": "Information",
+    "JI_INSTALL": "Installation de Jirafeau",
+    "INSTALL_SCRIPT_HERE": "Le script d'installation est toujours présent",
+    "INTERNAL_ERROR_DEL": "Erreur interne lors la création de fichier.",
+    "JI_PROJECT": "Projet Jirafeau",
+    "ADMIN_INTERFACE_INFO": "Jirafeau a une interface d'administration (accessible via admin.php). Vous pouvez saisir un mot de passe pour y accéder ou ne pas en mettre pour désactiver l'accès à l'interface.",
+    "JI_HAZ_LANGAGES": "Jirafeau supporte plusieurs langages. Choisissez un langage spécifique ou Automatique (la langue utilisée est alors fournie par le navigateur du visiteur).",
+    "JI_FONCTIONAL": "Jirafeau est maintenant utilisable",
+    "SETTING_UP": "Jirafeau se configure selon les paramètres donnés.",
+    "JI_WEB_RE": "Jirafeau, votre dépôt de fichiers",
+    "LINK_DELETED": "Lien supprimé",
+    "LIST": "Lister",
+    "LS_FILES": "Lister tous les fichiers",
+    "LOGIN": "Connexion",
+    "LOGOUT": "Déconnexion",
+    "MAX_FILE_SIZE": "Taille maximale",
+    "NEXT_STEP": "Étape suivante",
+    "NONE": "Aucune",
+    "CLEANED_FILES_CNT": "Nombre de fichiers nettoyés",
+    "1_D": "Une journée",
+    "1_H": "Une heure",
+    "1_MIN": "Une minute",
+    "1_M": "Un mois",
+    "1_Q": "Trois mois",
+    "ONE_TIME_DL": "Téléchargement unique",
+    "1_W": "Une semaine",
+    "1_Y": "Une année",
+    "ONETIME": "Une fois",
+    "ORIGIN": "Origine",
+    "PSW": "Mot de passe",
+    "PSW_PROTEC": "Protection par mot de passe",
+    "PREVIEW": "Prévisualiser",
+    "PREV_STEP": "Étape précédente",
+    "RETRY_STEP": "Ressayer cette étape",
+    "SEARCH": "Rechercher",
+    "SEARCH_LINK": "Rechercher un lien particulier",
+    "SEARH_BY_HASH": "Rechercher par empreinte de fichier",
+    "SEARCH_NAME": "Rechercher les fichiers par leur nom",
+    "SEL_FILE": "Sélectionner un fichier à envoyer:",
+    "SEND": "Envoyer",
+    "SIZE": "Taille",
+    "NO_ADMIN": "Désolé, l'interface d'administration n'est pas activée.",
+    "FILE_404": "Désolé, le fichier que vous demandez n'existe pas ou n'existe plus",
+    "NO_ADMIN_AUTH": "Désolé, vous n'êtes pas authentifié sur l'interface d'administration.",
     "Term Of Service": "Conditions d'utilisation",
-    "The async directory is not writable!": "Le dossier 'async' ne peut être écrit ! ",
-    "The base address of Jirafeau is the first part of the URL, until (and including) the last slash. For example: \"http://www.example.com/\". Do not forget the trailing slash!": "L'adresse d'origine de Jirafeau est la première partie de l'URL (slash de fin inclue). Par exemple: \"http://www.exemple.com/\". N'oubliez pas le slash de fin !",
-    "The data directory is where your files and information about your files will be stored. You should put it outside your web site, or at least restrict the access to this directory. Do not forget the trailing slash!": "Le dossier \"data\" est là où seront conservés les fichiers ainsi que leurs informations. Ce dossier ne devrait pas être accessible directement par l'utilisateur. N'oubliez pas le slash de fin !",
-    "The file directory is not writable": "Le dossier 'file' ne peut être écrit",
-    "The following directory could not be created": "Le dossier suivant ne peut être créé",
-    "The following directory is not writable": "Le dossier suivant ne peut être créé",
-    "The link directory is not writable": "Le dossier 'link' ne peut être écrit",
-    "The local configuration file could not be created. Create a <code>lib/config.local.php</code> file and give the write permission to the web server (preferred solution), or give the write permission to the web server on the <code>lib</code> directory.": "Le fichier de configuration local ne peut être créé. Créez le fichier <code>lib/config.local.php</code> et donnez lui les droits d'écriture par le serveur web (solution préférable) ou bien donnez les accès en écriture au dossier <code>lib</code>.",
-    "The local configuration is not writable by the web server. Give the write permission to the web server on the '<code>lib/config.local.php</code> file.": "Le fichier de configuration local ne peut être écrit. Donnez les droits d'écriture au fichier <code>lib/config.local.php</code> par le serveur web.",
-    "The time limit of this file has expired.": "La limite de temps est dépassée.",
-    "This file is valid until the following date": "Ce fichier est valable jusqu'à la date suivante",
-    "This file was generated by the install process. You can edit it. Please see config.original.php to understand the configuration items.": "Ce fichier a été généré par le processus d'installation. Vous pouvez l'éditer. Merci de se référer à config.original.php pour comprendre les éléments de configuration.",
-    "Time limit": "Limite de temps",
-    "Type": "Type",
-    "Upload date": "Date d’envoi",
-    "Upload password": "Mot de passe",
-    "Uploading ...": "Envoi en cours ...",
-    "View link": "Lien d'affichage",
-    "Warning, this file will self-destruct after being read": "Attention, ce fichier s'auto-détruira après sa lecture",
-    "Wrong password.": "Mot de passe invalide.",
-    "You are about to download": "Vous êtes sur le point de télécharger",
-    "You are now loggued out": "Vous êtes maintenant déconnecté",
-    "You should create this directory manually.": "Vous devriez créer manuellement ce dossier.",
-    "You should give the write permission to the web server on this directory.": "Vous devriez donner le droits d'écriture à ce répertoire pour le rendre accessible par le serveur web.",
-    "file": "fichier",
-    "link": "lien",
-    "out of": "sur",
-    "powered by Open-Source project Jirafeau": "Propulsé par le projet Open-Source Jirafeau",
-    "step": "étape",
-    "year": "année",
-    "day": "jour",
-    "minute": "minute",
-    "hour": "heure",
-    "second": "seconde",
-    "less than a second": "moins d'une seconde"
+    "ASYNC_DIR_W": "Le dossier 'async' ne peut être écrit ! ",
+    "BASE_ADDR_INFO": "L'adresse d'origine de Jirafeau est la première partie de l'URL (slash de fin inclue). Par exemple: \"http://www.exemple.com/\". N'oubliez pas le slash de fin !",
+    "DATA_DIR_EXPLAINATION": "Le dossier \"data\" est là où seront conservés les fichiers ainsi que leurs informations. Ce dossier ne devrait pas être accessible directement par l'utilisateur. N'oubliez pas le slash de fin !",
+    "FILE_DIR_W": "Le dossier 'file' ne peut être écrit",
+    "CANNOT_CREATE_DIR": "Le dossier suivant ne peut être créé",
+    "DIR_NOT_W": "Le dossier suivant ne peut être créé",
+    "LINK_DIR_W": "Le dossier 'link' ne peut être écrit",
+    "CONF_SOLUTION": "Le fichier de configuration local ne peut être créé. Créez le fichier <code>lib/config.local.php</code> et donnez lui les droits d'écriture par le serveur web (solution préférable) ou bien donnez les accès en écriture au dossier <code>lib</code>.",
+    "CONF_SOLUTION_2": "Le fichier de configuration local ne peut être écrit. Donnez les droits d'écriture au fichier <code>lib/config.local.php</code> par le serveur web.",
+    "FILE_EXPIRED": "La limite de temps est dépassée.",
+    "VALID_UNTIL": "Ce fichier est valable jusqu'à la date suivante",
+    "CONF_AUTOGEN_COMMENT": "Ce fichier a été généré par le processus d'installation. Vous pouvez l'éditer. Merci de se référer à config.original.php pour comprendre les éléments de configuration.",
+    "TIME_LIM": "Limite de temps",
+    "TYPE": "Type",
+    "UPLOAD_DATE": "Date d’envoi",
+    "UP_PSW": "Mot de passe",
+    "UP": "Envoi en cours ...",
+    "VIEW_LINK": "Lien d'affichage",
+    "AUTO_DESTRUCT": "Attention, ce fichier s'auto-détruira après sa lecture",
+    "BAD_PSW": "Mot de passe invalide.",
+    "NOW_DOWNLOADING": "Vous êtes sur le point de télécharger",
+    "NOW_LOGOUT": "Vous êtes maintenant déconnecté",
+    "MANUAL_CREATE": "Vous devriez créer manuellement ce dossier.",
+    "GIMME_W": "Vous devriez donner le droits d'écriture à ce répertoire pour le rendre accessible par le serveur web.",
+    "FILE": "fichier",
+    "LINK": "lien",
+    "OUT_OF": "sur",
+    "POWERED_BY": "Propulsé par le projet Open-Source Jirafeau",
+    "STEP": "étape",
+    "YEAR": "année",
+    "DAY": "jour",
+    "MINUTE": "minute",
+    "HOUR": "heure",
+    "SECOND": "seconde",
+    "LESS_1_SEC": "moins d'une seconde"
 
 }
index 8d61aeffee35a89f5bf12cced95f704144e43849..8df1567db38b07c364a9b6ce6a93b1395531ea76 100644 (file)
 {
-    "Jirafeau, your web file repository": "Jirafeau , אתר הקבצים שלך",
-    "Select a file": "בחר קובץ לשתף",
-    "Send": "שלח",
-    "Uploading ...": "מעלה את הקבצים שלך...",
-    "One time download": "הגבל הורדה לפעם אחת",
-    "Password": "סיסמה",
-    "Time limit": "הגבלת זמן",
-    "Maximum file size": "גודל קובץ מקסימלי",
-    "powered by Open-Source project Jirafeau": "",
-    "Made with": "נוצר באמצעות",
-    "Jirafeau Project": "",
-    "One minute": "דקה אחת",
-    "One hour": "שעה אחת",
-    "One day": "יום אחד",
-    "One week": "שבוע אחד",
-    "One month": "חודש אחד",
-    "One quarter": "רבעון אחד",
-    "One year": "שנה אחת",
-    "None": "ללא",
-    "Upload password": "סיסמת העלאה",
-    "File is too big": "הקובץ גדול מידי",
-    "File size is limited to": "גודל הקובץ מוגבל ל",
-    "The file directory is not writable": "סיפריית הקובץ לא ניתנת לעריכה",
-    "The link directory is not writable": "ספריית הקישור לא ניתנת לעריכה",
-    "The async directory is not writable!": "",
-    "Installer script still present": "",
-    "Please make sure to delete the installer script \"install.php\" before continuing.": "",
-    "An error occurred.": "",
-    "File uploaded !": "הקובץ עלה !",
-    "Download page": "עמוד ההורדה",
-    "This file is valid until the following date": "הקובץ זמין עד התאריך הבא",
-    "View link": "צפה בקישור",
-    "Direct download link": "קישור להורדה ישירה",
-    "Delete link": "מחק את הקישור",
-    "Download": "הורדה",
-    "Preview": "תצוגה מקדימה",
-    "Sorry, the requested file is not found": "מצטערים , הקובץ המבוקש לא נמצא",
-    "File not available.": "הקובץ לא זמין .",
-    "File has been deleted.": "הקובץ נמחק.",
-    "The time limit of this file has expired.": "מגבלת הזמן של הקובץ תמה .",
-    "Password protection": "הגנת סיסמה",
-    "Give the password of this file": "סיסמה לקובץ",
-    "Access denied": "הגישה נדחתה",
-    "You are about to download": "אתה עומד להוריד",
-    "By using our services, you accept our": "ע\"י שימוש בשירות שלנו , אתה מקבל",
-    "Terms of Service": "תנאי השירות",
-    "Warning, this file will self-destruct after being read": "הזהרה , הקובץ הזה מוחק את עצמו אחרי הצפייה",
-    "Internal error during file creation.": "שגיאה פנימית בעת יצירת הקובץ .",
-    "This file was generated by the install process. You can edit it. Please see config.original.php to understand the configuration items.": "",
-    "The following directory could not be created": "התיקייה המוצגת אינה יכול להווצר",
-    "You should create this directory manually.": "אתה צריך ליצור את התיקייה באופן ידני .",
-    "The following directory is not writable": "",
-    "You should give the write permission to the web server on this directory.": "",
-    "Here is a solution": "",
-    "The local configuration file could not be created. Create a <code>lib/config.local.php</code> file and give the write permission to the web server (preferred solution), or give the write permission to the web server on the <code>lib</code> directory.": "",
-    "The local configuration is not writable by the web server. Give the write permission to the web server on the '<code>lib/config.local.php</code> file.": "",
-    "Installation of Jirafeau": "",
-    "step": "צעד",
-    "out of": "מחוץ ל",
-    "Administration password": "סיסמת מנהל",
-    "Finalisation": "סיום",
-    "Jirafeau is setting the website according to the configuration you provided.": "",
-    "Previous step": "הצעד הקודם",
-    "Retry this step": "חזור על הצעד הזה",
-    "Jirafeau is now fully operational": "",
-    "Information": "מידע",
-    "The base address of Jirafeau is the first part of the URL, until (and including) the last slash. For example: \"http://www.example.com/\". Do not forget the trailing slash!": "",
-    "Base address": "",
-    "The data directory is where your files and information about your files will be stored. You should put it outside your web site, or at least restrict the access to this directory. Do not forget the trailing slash!": "",
-    "Data directory": "",
-    "Jirafeau is internationalised. Choose a specific langage or choose Automatic (langage is provided by user's browser).": "",
-    "Choose the default language": "בחר את שפת ברירת המחדל",
-    "Next step": "הצעד הבא",
-    "Jirafeau has an administration interface (through admin.php). You can set a password to access the interface or leave it empty to disable the interface.": "",
-    "Sorry, the admin interface is not enabled.": "",
-    "Sorry, you are not authenticated on admin interface.": "",
-    "Login": "התחברות",
-    "Wrong password.": "סיסמה שגויה.",
-    "Admin interface": "",
-    "Clean expired files": "נקה קבצים שתוקפם פג",
-    "Clean old unfinished transfers": "נקה העברות ישנות שלא הסתיימו",
-    "Clean": "נקה",
-    "Search files by name": "חפש לפי שם קובץ",
-    "Search": "חיפוש",
-    "List all files": "רשימת כל הקבצים",
-    "List": "רשימה",
-    "Actions": "פעילויות",
-    "Search files by file hash": "חפש קובץ לפי HASH",
-    "Search a specific link": "חיפוש לינק מסויים",
-    "Number of cleaned files": "מספר הקבצים שנוקו",
-    "Logout": "התנתק",
-    "You are now loggued out": "אתה כרגע מנותק",
-    "Link deleted": "הקישור נמחק",
-    "Filename": "שם הקובץ",
-    "file": "קובץ",
-    "link": "קישור",
-    "Type": "סוג",
-    "Size": "גודל",
-    "Expire": "תוקף",
-    "Onetime": "חד פעמי",
-    "Upload date": "תאריך העלאה",
-    "Origin": "מקור",
-    "Action": "פעולה",
-    "Del link": "מחק קישור",
-    "Del file and links": "מחק קובץ וקישור",
-    "Deleted links": "קישורים נמחקו",
-    "year": "שנה",
-    "day": "יום",
-    "minute": "דקה",
-    "hour": "שעה",
-    "second": "שניה",
-    "less than a second": "פחות משניה"
+    "JI_WEB_RE": "Jirafeau , אתר הקבצים שלך",
+    "SEL_FILE": "בחר קובץ לשתף",
+    "SEND": "שלח",
+    "UP": "מעלה את הקבצים שלך...",
+    "ONE_TIME_DL": "הגבל הורדה לפעם אחת",
+    "PSW": "סיסמה",
+    "TIME_LIM": "הגבלת זמן",
+    "MAX_FILE_SIZE": "גודל קובץ מקסימלי",
+    "POWERED_BY": "",
+    "MADE_WITH": "נוצר באמצעות",
+    "JI_PROJECT": "",
+    "1_MIN": "דקה אחת",
+    "1_H": "שעה אחת",
+    "1_D": "יום אחד",
+    "1_W": "שבוע אחד",
+    "1_M": "חודש אחד",
+    "1_Q": "רבעון אחד",
+    "1_Y": "שנה אחת",
+    "NONE": "ללא",
+    "UP_PSW": "סיסמת העלאה",
+    "2_BIG": "הקובץ גדול מידי",
+    "FILE_LIM": "גודל הקובץ מוגבל ל",
+    "FILE_DIR_W": "סיפריית הקובץ לא ניתנת לעריכה",
+    "LINK_DIR_W": "ספריית הקישור לא ניתנת לעריכה",
+    "ASYNC_DIR_W": "",
+    "INSTALL_SCRIPT_HERE": "",
+    "ERR_OCC": "",
+    "FILE_UP": "הקובץ עלה !",
+    "DL_PAGE": "עמוד ההורדה",
+    "VALID_UNTIL": "הקובץ זמין עד התאריך הבא",
+    "VIEW_LINK": "צפה בקישור",
+    "DIRECT_DL": "קישור להורדה ישירה",
+    "DELETE_LINK": "מחק את הקישור",
+    "DL": "הורדה",
+    "PREVIEW": "תצוגה מקדימה",
+    "FILE_404": "מצטערים , הקובץ המבוקש לא נמצא",
+    "FILE_NOT_AVAIL": "הקובץ לא זמין .",
+    "FILE_DELETED": "הקובץ נמחק.",
+    "FILE_EXPIRED": "מגבלת הזמן של הקובץ תמה .",
+    "PSW_PROTEC": "הגנת סיסמה",
+    "GIMME_PSW": "סיסמה לקובץ",
+    "ACCESS_KO": "הגישה נדחתה",
+    "NOW_DOWNLOADING": "אתה עומד להוריד",
+    "USING_SERIVCE": "ע\"י שימוש בשירות שלנו , אתה מקבל",
+    "TOS": "תנאי השירות",
+    "AUTO_DESTRUCT": "הזהרה , הקובץ הזה מוחק את עצמו אחרי הצפייה",
+    "INTERNAL_ERROR_DEL": "שגיאה פנימית בעת יצירת הקובץ .",
+    "CONF_AUTOGEN_COMMENT": "",
+    "CANNOT_CREATE_DIR": "התיקייה המוצגת אינה יכול להווצר",
+    "MANUAL_CREATE": "אתה צריך ליצור את התיקייה באופן ידני .",
+    "DIR_NOT_W": "",
+    "GIMME_W": "",
+    "HERE_SOLUTION": "",
+    "CONF_SOLUTION": "",
+    "CONF_SOLUTION_2": "",
+    "JI_INSTALL": "",
+    "STEP": "צעד",
+    "OUT_OF": "מחוץ ל",
+    "ADMIN_PSW": "סיסמת מנהל",
+    "FINALIZATION": "סיום",
+    "SETTING_UP": "",
+    "PREV_STEP": "הצעד הקודם",
+    "RETRY_STEP": "חזור על הצעד הזה",
+    "JI_FONCTIONAL": "",
+    "INFO": "מידע",
+    "BASE_ADDR_INFO": "",
+    "BASE_ADDR": "",
+    "DATA_DIR_EXPLAINATION": "",
+    "DATA_DIR": "",
+    "JI_HAZ_LANGAGES": "",
+    "DEF_LANGUAGE": "בחר את שפת ברירת המחדל",
+    "NEXT_STEP": "הצעד הבא",
+    "ADMIN_INTERFACE_INFO": "",
+    "NO_ADMIN": "",
+    "NO_ADMIN_AUTH": "",
+    "LOGIN": "התחברות",
+    "BAD_PSW": "סיסמה שגויה.",
+    "ADMIN_INTERFACE": "",
+    "CLEAN_EXPIRED": "נקה קבצים שתוקפם פג",
+    "CLEAN_INCOMPLETE": "נקה העברות ישנות שלא הסתיימו",
+    "CLEAN": "נקה",
+    "SEARCH_NAME": "חפש לפי שם קובץ",
+    "SEARCH_LINK": "חיפוש",
+    "LS_FILES": "רשימת כל הקבצים",
+    "LIST": "רשימה",
+    "ACTIONS": "פעילויות",
+    "SEARH_BY_HASH": "חפש קובץ לפי HASH",
+    "SEARCH": "חיפוש לינק מסויים",
+    "CLEANED_FILES_CNT": "מספר הקבצים שנוקו",
+    "LOGOUT": "התנתק",
+    "NOW_LOGOUT": "אתה כרגע מנותק",
+    "LINK_DELETED": "הקישור נמחק",
+    "FILENAME": "שם הקובץ",
+    "FILE": "קובץ",
+    "LINK": "קישור",
+    "TYPE": "סוג",
+    "SIZE": "גודל",
+    "EXPIRE": "תוקף",
+    "ONETIME": "חד פעמי",
+    "UPLOAD_DATE": "תאריך העלאה",
+    "ORIGIN": "מקור",
+    "ACTION": "פעולה",
+    "DEL_LINK": "מחק קישור",
+    "DEL_FILE_LINKS": "מחק קובץ וקישור",
+    "DELETED_LINKS": "קישורים נמחקו",
+    "YEAR": "שנה",
+    "DAY": "יום",
+    "MINUTE": "דקה",
+    "HOUR": "שעה",
+    "SECOND": "שניה",
+    "LESS_1_SEC": "פחות משניה"
 }
index d681a6a41f229519481e75c758c3a0e2206fd2b4..46fc9b403a8747187a1462be3a593977c9a682ad 100644 (file)
 {
-    "Access denied": "", 
-    "Action": "", 
-    "Actions": "", 
-    "Admin interface": "", 
-    "Administration password": "", 
-    "An error occurred.": "", 
-    "Base address": "", 
-    "By using our services, you accept our": "", 
-    "Choose the default language": "", 
-    "Clean": "", 
-    "Clean expired files": "", 
-    "Clean old unfinished transfers": "", 
-    "Data directory": "", 
-    "Del file and links": "", 
-    "Del link": "", 
-    "Delete link": "", 
-    "Deleted links": "", 
-    "Direct download link": "", 
-    "Download": "", 
-    "Download page": "", 
-    "Expire": "", 
-    "File has been deleted.": "", 
-    "File is too big": "", 
-    "File not available.": "", 
-    "File size is limited to": "", 
-    "File uploaded !": "", 
-    "Filename": "", 
-    "Finalisation": "", 
-    "Give the password of this file": "", 
-    "Here is a solution": "", 
-    "Information": "", 
-    "Installation of Jirafeau": "", 
-    "Installer script still present": "", 
-    "Internal error during file creation.": "", 
-    "Jirafeau Project": "", 
-    "Jirafeau has an administration interface (through admin.php). You can set a password to access the interface or leave it empty to disable the interface.": "", 
-    "Jirafeau is internationalised. Choose a specific langage or choose Automatic (langage is provided by user's browser).": "", 
-    "Jirafeau is now fully operational": "", 
-    "Jirafeau is setting the website according to the configuration you provided.": "", 
-    "Jirafeau, your web file repository": "", 
-    "Link deleted": "", 
-    "List": "", 
-    "List all files": "", 
-    "Login": "", 
-    "Logout": "", 
-    "Maximum file size": "", 
-    "Next step": "", 
-    "None": "", 
-    "Number of cleaned files": "", 
-    "One day": "", 
-    "One hour": "", 
-    "One minute": "", 
-    "One month": "", 
-    "One time download": "", 
-    "One week": "", 
-    "One year": "", 
-    "Onetime": "", 
-    "Origin": "", 
-    "Password": "", 
-    "Password protection": "", 
-    "Please make sure to delete the installer script \"install.php\" before continuing.": "", 
-    "Preview": "", 
-    "Previous step": "", 
-    "Retry this step": "", 
-    "Search": "", 
-    "Search a specific link": "", 
-    "Search files by file hash": "", 
-    "Search files by name": "", 
-    "Select a file": "", 
-    "Send": "", 
-    "Size": "", 
-    "Sorry, the admin interface is not enabled.": "", 
-    "Sorry, the requested file is not found": "", 
-    "Sorry, you are not authenticated on admin interface.": "", 
+    "ACCESS_KO": "", 
+    "ACTION": "", 
+    "ACTIONS": "", 
+    "ADMIN_INTERFACE": "", 
+    "ADMIN_PSW": "", 
+    "ERR_OCC": "", 
+    "BASE_ADDR": "", 
+    "USING_SERIVCE": "", 
+    "DEF_LANGUAGE": "", 
+    "CLEAN": "", 
+    "CLEAN_EXPIRED": "", 
+    "CLEAN_INCOMPLETE": "", 
+    "DATA_DIR": "", 
+    "DEL_FILE_LINKS": "", 
+    "DEL_LINK": "", 
+    "DELETE_LINK": "", 
+    "DELETED_LINKS": "", 
+    "DIRECT_DL": "", 
+    "DL": "", 
+    "DL_PAGE": "", 
+    "EXPIRE": "", 
+    "FILE_DELETED": "", 
+    "2_BIG": "", 
+    "FILE_NOT_AVAIL": "", 
+    "FILE_LIM": "", 
+    "FILE_UP": "", 
+    "FILENAME": "", 
+    "FINALIZATION": "", 
+    "GIMME_PSW": "", 
+    "HERE_SOLUTION": "", 
+    "INFO": "", 
+    "JI_INSTALL": "", 
+    "INSTALL_SCRIPT_HERE": "", 
+    "INTERNAL_ERROR_DEL": "", 
+    "JI_PROJECT": "", 
+    "ADMIN_INTERFACE_INFO": "", 
+    "JI_HAZ_LANGAGES": "", 
+    "JI_FONCTIONAL": "", 
+    "SETTING_UP": "", 
+    "JI_WEB_RE": "", 
+    "LINK_DELETED": "", 
+    "LIST": "", 
+    "LS_FILES": "", 
+    "LOGIN": "", 
+    "LOGOUT": "", 
+    "MAX_FILE_SIZE": "", 
+    "NEXT_STEP": "", 
+    "NONE": "", 
+    "CLEANED_FILES_CNT": "", 
+    "1_D": "", 
+    "1_H": "", 
+    "1_MIN": "", 
+    "1_M": "", 
+    "ONE_TIME_DL": "", 
+    "1_W": "", 
+    "1_Y": "", 
+    "ONETIME": "", 
+    "ORIGIN": "", 
+    "PSW": "", 
+    "PSW_PROTEC": "", 
+    "PREVIEW": "", 
+    "PREV_STEP": "", 
+    "RETRY_STEP": "", 
+    "SEARCH": "", 
+    "SEARCH_LINK": "", 
+    "SEARH_BY_HASH": "", 
+    "SEARCH_NAME": "", 
+    "SEL_FILE": "", 
+    "SEND": "", 
+    "SIZE": "", 
+    "NO_ADMIN": "", 
+    "FILE_404": "", 
+    "NO_ADMIN_AUTH": "", 
     "Term Of Service": "", 
-    "The async directory is not writable!": "", 
-    "The base address of Jirafeau is the first part of the URL, until (and including) the last slash. For example: \"http://www.example.com/\". Do not forget the trailing slash!": "", 
-    "The data directory is where your files and information about your files will be stored. You should put it outside your web site, or at least restrict the access to this directory. Do not forget the trailing slash!": "", 
-    "The file directory is not writable": "", 
-    "The following directory could not be created": "", 
-    "The following directory is not writable": "", 
-    "The link directory is not writable": "", 
-    "The local configuration file could not be created. Create a <code>lib/config.local.php</code> file and give the write permission to the web server (preferred solution), or give the write permission to the web server on the <code>lib</code> directory.": "", 
-    "The local configuration is not writable by the web server. Give the write permission to the web server on the '<code>lib/config.local.php</code> file.": "", 
-    "The time limit of this file has expired.": "", 
-    "This file is valid until the following date": "", 
-    "This file was generated by the install process. You can edit it. Please see config.original.php to understand the configuration items.": "", 
-    "Time limit": "", 
-    "Type": "", 
-    "Upload date": "", 
-    "Upload password": "", 
-    "Uploading ...": "", 
-    "View link": "", 
-    "Warning, this file will self-destruct after being read": "", 
-    "Wrong password.": "", 
-    "You are about to download": "", 
-    "You are now loggued out": "", 
-    "You should create this directory manually.": "", 
-    "You should give the write permission to the web server on this directory.": "", 
-    "day": "", 
-    "file": "", 
-    "hour": "", 
-    "less than a second": "", 
-    "link": "", 
-    "minute": "", 
-    "out of": "", 
-    "powered by Open-Source project Jirafeau": "", 
-    "second": "", 
-    "step": "", 
-    "year": ""
-}
\ No newline at end of file
+    "ASYNC_DIR_W": "",
+    "BASE_ADDR_INFO": "",
+    "DATA_DIR_EXPLAINATION": "", 
+    "FILE_DIR_W": "", 
+    "CANNOT_CREATE_DIR": "", 
+    "DIR_NOT_W": "", 
+    "LINK_DIR_W": "", 
+    "CONF_SOLUTION": "", 
+    "CONF_SOLUTION_2": "", 
+    "FILE_EXPIRED": "", 
+    "VALID_UNTIL": "", 
+    "CONF_AUTOGEN_COMMENT": "", 
+    "TIME_LIM": "", 
+    "TYPE": "", 
+    "UPLOAD_DATE": "", 
+    "UP_PSW": "", 
+    "UP": "", 
+    "VIEW_LINK": "", 
+    "AUTO_DESTRUCT": "", 
+    "BAD_PSW": "", 
+    "NOW_DOWNLOADING": "", 
+    "NOW_LOGOUT": "", 
+    "MANUAL_CREATE": "", 
+    "GIMME_W": "", 
+    "DAY": "", 
+    "FILE": "", 
+    "HOUR": "", 
+    "LESS_1_SEC": "", 
+    "LINK": "", 
+    "MINUTE": "", 
+    "OUT_OF": "", 
+    "POWERED_BY": "", 
+    "SECOND": "", 
+    "STEP": "", 
+    "YEAR": ""
+}
index e44bc0b7f769b686997eabcb9fe284221827e864..8a905c6ade4773fdbd5b9c0a9cdc47402df052bc 100644 (file)
 {
-    "Jirafeau, your web file repository": "Jirafeau, Vaše mrežno skladište datoteka",
-    "Select a file": "Odaberite datoteku",
-    "Send": "Pošalji",
-    "Uploading ...": "Prijenos u tijeku...",
-    "One time download": "Jednokratno preuzimanje",
-    "Password": "Zaporka",
-    "Time limit": "Vremensko ograničenje",
-    "Maximum file size": "Maksimalna veličina datoteke",
-    "powered by Open-Source project Jirafeau": "",
-    "Jirafeau Project": "",
-    "One minute": "Jedna minuta",
-    "One hour": "Jedan sat",
-    "One day": "Jedan dan",
-    "One week": "Tjedan dana",
-    "One month": "Mjesec dana",
-    "One year": "Jedna godina",
-    "None": "Nijedan",
-    "Upload password": "Unesite zaporku",
-    "File is too big": "Datoteka je prevelika",
-    "File size is limited to": "Veličina datoteke je ograničena na",
-    "The file directory is not writable": "",
-    "The link directory is not writable": "",
-    "The async directory is not writable!": "",
-    "Installer script still present": "",
-    "Please make sure to delete the installer script \"install.php\" before continuing.": "Molim obrišite datoteku \"install.php\" prije nego nastavite sa korištenjem ove aplikacije",
-    "An error occurred.": "Došlo je do pogreške.",
-    "File uploaded !": "Datoteka je prenesena!",
-    "Download page": "Stranica za preuzimanje datoteke",
-    "This file is valid until the following date": "Datoteka će biti dostupa do slijedećeg datuma",
-    "View link": "Pogledaj poveznicu",
-    "Direct download link": "Poveznica za direktno preuzimanje datoteke",
-    "Delete link": "Poveznica za brisanje datoteke",
-    "Download": "Preuzimanje",
-    "Preview": "Pretpregled",
-    "Sorry, the requested file is not found": "Nažalost, tražena datoteka nije pronađena",
-    "File not available.": "Datoteka nije dostupna.",
-    "File has been deleted.": "Datoteka je obrisana.",
-    "The time limit of this file has expired.": "Vremensko ograničenje za pohranjivanje ove datoteke je isteklo.",
-    "Password protection": "Zaštititi zaporkom",
-    "Give the password of this file": "Dati zaporku odabrane datoteke",
-    "Access denied": "Pristup nije dozvoljen",
-    "You are about to download": "Preuzimanje će uskoro započeti",
-    "By using our services, you accept our": "Korištenjem naših usluga prihvaćate naše",
+    "JI_WEB_RE": "Jirafeau, Vaše mrežno skladište datoteka",
+    "SEL_FILE": "Odaberite datoteku",
+    "SEND": "Pošalji",
+    "UP": "Prijenos u tijeku...",
+    "ONE_TIME_DL": "Jednokratno preuzimanje",
+    "PSW": "Zaporka",
+    "TIME_LIM": "Vremensko ograničenje",
+    "MAX_FILE_SIZE": "Maksimalna veličina datoteke",
+    "POWERED_BY": "",
+    "JI_PROJECT": "",
+    "1_MIN": "Jedna minuta",
+    "1_H": "Jedan sat",
+    "1_D": "Jedan dan",
+    "1_W": "Tjedan dana",
+    "1_M": "Mjesec dana",
+    "1_Y": "Jedna godina",
+    "NONE": "Nijedan",
+    "UP_PSW": "Unesite zaporku",
+    "2_BIG": "Datoteka je prevelika",
+    "FILE_LIM": "Veličina datoteke je ograničena na",
+    "FILE_DIR_W": "",
+    "LINK_DIR_W": "",
+    "ASYNC_DIR_W": "",
+    "INSTALL_SCRIPT_HERE": "",
+    "ERR_OCC": "Došlo je do pogreške.",
+    "FILE_UP": "Datoteka je prenesena!",
+    "DL_PAGE": "Stranica za preuzimanje datoteke",
+    "VALID_UNTIL": "Datoteka će biti dostupa do slijedećeg datuma",
+    "VIEW_LINK": "Pogledaj poveznicu",
+    "DIRECT_DL": "Poveznica za direktno preuzimanje datoteke",
+    "DELETE_LINK": "Poveznica za brisanje datoteke",
+    "DL": "Preuzimanje",
+    "PREVIEW": "Pretpregled",
+    "FILE_404": "Nažalost, tražena datoteka nije pronađena",
+    "FILE_NOT_AVAIL": "Datoteka nije dostupna.",
+    "FILE_DELETED": "Datoteka je obrisana.",
+    "FILE_EXPIRED": "Vremensko ograničenje za pohranjivanje ove datoteke je isteklo.",
+    "PSW_PROTEC": "Zaštititi zaporkom",
+    "GIMME_PSW": "Dati zaporku odabrane datoteke",
+    "ACCESS_KO": "Pristup nije dozvoljen",
+    "NOW_DOWNLOADING": "Preuzimanje će uskoro započeti",
+    "USING_SERIVCE": "Korištenjem naših usluga prihvaćate naše",
     "Term Of Service": "Uvjeti korištenja",
-    "Warning, this file will self-destruct after being read": "Upozorenje, ova datoteka će biti uništena nakon čitanja",
-    "Internal error during file creation.": "Interna greška prilikom kreiranja datoteke.",
-    "This file was generated by the install process. You can edit it. Please see config.original.php to understand the configuration items.": "",
-    "The following directory could not be created": "",
-    "You should create this directory manually.": "",
-    "The following directory is not writable": "",
-    "You should give the write permission to the web server on this directory.": "",
-    "Here is a solution": "",
-    "The local configuration file could not be created. Create a <code>lib/config.local.php</code> file and give the write permission to the web server (preferred solution), or give the write permission to the web server on the <code>lib</code> directory.": "",
-    "The local configuration is not writable by the web server. Give the write permission to the web server on the '<code>lib/config.local.php</code> file.": "",
-    "Installation of Jirafeau": "",
-    "step": "",
-    "out of": "",
-    "Administration password": "",
-    "Finalisation": "",
-    "Jirafeau is setting the website according to the configuration you provided.": "",
-    "Previous step": "",
-    "Retry this step": "",
-    "Jirafeau is now fully operational": "",
-    "Information": "",
-    "The base address of Jirafeau is the first part of the URL, until (and including) the last slash. For example: \"http://www.example.com/\". Do not forget the trailing slash!": "",
-    "Base address": "",
-    "The data directory is where your files and information about your files will be stored. You should put it outside your web site, or at least restrict the access to this directory. Do not forget the trailing slash!": "",
-    "Data directory": "",
-    "Jirafeau is internationalised. Choose a specific langage or choose Automatic (langage is provided by user's browser).": "",
-    "Choose the default language": "",
-    "Next step": "",
-    "Jirafeau has an administration interface (through admin.php). You can set a password to access the interface or leave it empty to disable the interface.": "",
-    "Sorry, the admin interface is not enabled.": "",
-    "Sorry, you are not authenticated on admin interface.": "",
-    "Login": "",
-    "Wrong password.": "",
-    "Admin interface": "",
-    "Clean expired files": "",
-    "Clean old unfinished transfers": "",
-    "Clean": "",
-    "Search files by name": "",
-    "Search": "",
-    "List all files": "",
-    "List": "",
-    "Actions": "",
-    "Search files by file hash": "",
-    "Search a specific link": "",
-    "Number of cleaned files": "",
-    "Logout": "",
-    "You are now loggued out": "",
-    "Link deleted": "",
-    "Filename": "",
-    "file": "",
-    "link": "",
-    "Type": "",
-    "Size": "",
-    "Expire": "",
-    "Onetime": "",
-    "Upload date": "",
-    "Origin": "",
-    "Action": "",
-    "Del link": "",
-    "Del file and links": "",
-    "Deleted links": "",
-    "year": "",
-    "day": "",
-    "minute": "",
-    "hour": "",
-    "second": "",
-    "less than a second": ""
+    "AUTO_DESTRUCT": "Upozorenje, ova datoteka će biti uništena nakon čitanja",
+    "INTERNAL_ERROR_DEL": "Interna greška prilikom kreiranja datoteke.",
+    "CONF_AUTOGEN_COMMENT": "",
+    "CANNOT_CREATE_DIR": "",
+    "MANUAL_CREATE": "",
+    "DIR_NOT_W": "",
+    "GIMME_W": "",
+    "HERE_SOLUTION": "",
+    "CONF_SOLUTION": "",
+    "CONF_SOLUTION_2": "",
+    "JI_INSTALL": "",
+    "STEP": "",
+    "OUT_OF": "",
+    "ADMIN_PSW": "",
+    "FINALIZATION": "",
+    "SETTING_UP": "",
+    "PREV_STEP": "",
+    "RETRY_STEP": "",
+    "JI_FONCTIONAL": "",
+    "INFO": "",
+    "BASE_ADDR_INFO": "",
+    "BASE_ADDR": "",
+    "DATA_DIR_EXPLAINATION": "",
+    "DATA_DIR": "",
+    "JI_HAZ_LANGAGES": "",
+    "DEF_LANGUAGE": "",
+    "NEXT_STEP": "",
+    "ADMIN_INTERFACE_INFO": "",
+    "NO_ADMIN": "",
+    "NO_ADMIN_AUTH": "",
+    "LOGIN": "",
+    "BAD_PSW": "",
+    "ADMIN_INTERFACE": "",
+    "CLEAN_EXPIRED": "",
+    "CLEAN_INCOMPLETE": "",
+    "CLEAN": "",
+    "SEARCH_NAME": "",
+    "SEARCH": "",
+    "LS_FILES": "",
+    "LIST": "",
+    "ACTIONS": "",
+    "SEARH_BY_HASH": "",
+    "SEARCH_LINK": "",
+    "CLEANED_FILES_CNT": "",
+    "LOGOUT": "",
+    "NOW_LOGOUT": "",
+    "LINK_DELETED": "",
+    "FILENAME": "",
+    "FILE": "",
+    "LINK": "",
+    "TYPE": "",
+    "SIZE": "",
+    "EXPIRE": "",
+    "ONETIME": "",
+    "UPLOAD_DATE": "",
+    "ORIGIN": "",
+    "ACTION": "",
+    "DEL_LINK": "",
+    "DEL_FILE_LINKS": "",
+    "DELETED_LINKS": "",
+    "YEAR": "",
+    "DAY": "",
+    "MINUTE": "",
+    "HOUR": "",
+    "SECOND": "",
+    "LESS_1_SEC": ""
 }
index 2428728a29a1d553807e447c09d419f873368f19..6a75ca48126ef56186d653e25d8510dcc4095f32 100644 (file)
 {
-    "Access denied": "Hozzáférés megtagadva",
-    "Action": "Akció",
-    "Actions": "Akciók",
-    "Admin interface": "Admin felület",
-    "Administration password": "Admin jelszó",
-    "An error occurred.": "Valami hiba történt.",
-    "Base address": "Alap cím",
-    "By using our services, you accept our": "A szolgáltatás használatával elfogadod a feltételeket",
-    "Choose the default language": "Válassz alapértelmezett nyelvet",
-    "Clean": "Tisztít",
-    "Clean expired files": "Lejárt fájlok száma",
-    "Clean old unfinished transfers": "Régebbi, befejezetlen feltöltések törlése",
-    "Data directory": "Adatmappa",
-    "Del file and links": "Fájl és kapcsolódó linkek törlése",
-    "Del link": "Törlő link",
-    "Delete link": "Link a törléshez",
-    "Deleted links": "Törölt linkek",
-    "Direct download link": "Közvetlen letöltő link",
-    "Download": "Letöltés",
-    "Download page": "Letöltési oldal",
-    "Expire": "Felfedezés",
-    "File has been deleted.": "A fájl törölt.",
-    "File is too big": "A fájl túl nagy",
-    "File not available.": "A fájl nem érhető el.",
-    "File size is limited to": "A fájlméret-korlát a következő",
-    "File uploaded !": "Fájl feltöltve!",
-    "Filename": "Fájlnév",
-    "Finalisation": "Véglegesítés",
-    "Give the password of this file": "Add meg a jelszót a fájl eléréséhez",
-    "Here is a solution": "Itt a megoldás",
-    "Information": "Információ",
-    "Installation of Jirafeau": "Jirafeau telepítés",
-    "Installer script still present": "A telepítőt még nem törölted",
-    "Internal error during file creation.": "Belső hiba történt a készítéskor.",
-    "Jirafeau Project": "Jirafeau Projekt",
-    "Jirafeau has an administration interface (through admin.php). You can set a password to access the interface or leave it empty to disable the interface.": "A Jirafeau adminisztrálható (az admin.php felületen). Állíts be jelszót, hogy használhasd, vagy ha üresen hagyod, azzal letiltod az admin oldalt.",
-    "Jirafeau is internationalised. Choose a specific langage or choose Automatic (langage is provided by user's browser).": "A Jirafeau többnyelvű. Válassz kedvedre, vagy használd az automatizmust, ami a böngésződ nyelve lesz.",
-    "Jirafeau is now fully operational": "A Jirafeau immár teljes pompájában működik",
-    "Jirafeau is setting the website according to the configuration you provided.": "A Jirafeau a kért konfiguráció szerint állította be a webszájotot.",
-    "Jirafeau, your web file repository": "Jirafeau, a webes fájltárolód",
-    "Link deleted": "Link törölve",
-    "List": "Lista",
-    "List all files": "Mutass minden fájlt",
-    "Login": "Belép",
-    "Logout": "Kijelentkezés",
-    "Maximum file size": "Max fájl méret",
-    "Next step": "Következő lépés",
-    "None": "Egyik sem",
-    "Number of cleaned files": "Megtisztított fájlok száma",
-    "One day": "Egy nap",
-    "One hour": "Egy óra",
-    "One minute": "Egy perc",
-    "One month": "Egy hónap",
-    "One time download": "Egyszeri letöltés",
-    "One week": "Egy hét",
-    "One year": "Egy év",
-    "Onetime": "Egyidejű",
-    "Origin": "Eredet(i)",
-    "Password": "Jelszó",
-    "Password protection": "Jelszavas védelem",
-    "Please make sure to delete the installer script \"install.php\" before continuing.": "Kérlek töröld le a telepítő szkriptet 'install.php' a folytatás előtt.",
-    "Preview": "Előnézet",
-    "Previous step": "Előző lépés",
-    "Retry this step": "Ismételd meg ezt a lépést",
-    "Search": "Keresés",
-    "Search a specific link": "Egy adott link keresése",
-    "Search files by file hash": "Fállkeresés hash alapján",
-    "Search files by name": "Keresés fájlnév alapján",
-    "Select a file": "Válassz fájlt",
-    "Send": "Küld",
-    "Size": "Méret",
-    "Sorry, the admin interface is not enabled.": "Bocs, de az admin felület nem engedélyezett.",
-    "Sorry, the requested file is not found": "Bocsánat, de nem találjuk ezt a fájlt",
-    "Sorry, you are not authenticated on admin interface.": "Bocs, de nem léptél be adminként.",
+    "ACCESS_KO": "Hozzáférés megtagadva",
+    "ACTION": "Akció",
+    "ACTIONS": "Akciók",
+    "ADMIN_INTERFACE": "Admin felület",
+    "ADMIN_PSW": "Admin jelszó",
+    "ERR_OCC": "Valami hiba történt.",
+    "BASE_ADDR": "Alap cím",
+    "USING_SERIVCE": "A szolgáltatás használatával elfogadod a feltételeket",
+    "DEF_LANGUAGE": "Válassz alapértelmezett nyelvet",
+    "CLEAN": "Tisztít",
+    "CLEAN_EXPIRED": "Lejárt fájlok száma",
+    "CLEAN_INCOMPLETE": "Régebbi, befejezetlen feltöltések törlése",
+    "DATA_DIR": "Adatmappa",
+    "DEL_FILE_LINKS": "Fájl és kapcsolódó linkek törlése",
+    "DEL_LINK": "Törlő link",
+    "DELETE_LINK": "Link a törléshez",
+    "DELETED_LINKS": "Törölt linkek",
+    "DIRECT_DL": "Közvetlen letöltő link",
+    "DL": "Letöltés",
+    "DL_PAGE": "Letöltési oldal",
+    "EXPIRE": "Felfedezés",
+    "FILE_DELETED": "A fájl törölt.",
+    "2_BIG": "A fájl túl nagy",
+    "FILE_NOT_AVAIL": "A fájl nem érhető el.",
+    "FILE_LIM": "A fájlméret-korlát a következő",
+    "FILE_UP": "Fájl feltöltve!",
+    "FILENAME": "Fájlnév",
+    "FINALIZATION": "Véglegesítés",
+    "GIMME_PSW": "Add meg a jelszót a fájl eléréséhez",
+    "HERE_SOLUTION": "Itt a megoldás",
+    "INFO": "Információ",
+    "JI_INSTALL": "Jirafeau telepítés",
+    "INSTALL_SCRIPT_HERE": "A telepítőt még nem törölted",
+    "INTERNAL_ERROR_DEL": "Belső hiba történt a készítéskor.",
+    "JI_PROJECT": "Jirafeau Projekt",
+    "ADMIN_INTERFACE_INFO": "A Jirafeau adminisztrálható (az admin.php felületen). Állíts be jelszót, hogy használhasd, vagy ha üresen hagyod, azzal letiltod az admin oldalt.",
+    "JI_HAZ_LANGAGES": "A Jirafeau többnyelvű. Válassz kedvedre, vagy használd az automatizmust, ami a böngésződ nyelve lesz.",
+    "JI_FONCTIONAL": "A Jirafeau immár teljes pompájában működik",
+    "SETTING_UP": "A Jirafeau a kért konfiguráció szerint állította be a webszájotot.",
+    "JI_WEB_RE": "Jirafeau, a webes fájltárolód",
+    "LINK_DELETED": "Link törölve",
+    "LIST": "Lista",
+    "LS_FILES": "Mutass minden fájlt",
+    "LOGIN": "Belép",
+    "LOGOUT": "Kijelentkezés",
+    "MAX_FILE_SIZE": "Max fájl méret",
+    "NEXT_STEP": "Következő lépés",
+    "NONE": "Egyik sem",
+    "CLEANED_FILES_CNT": "Megtisztított fájlok száma",
+    "1_D": "Egy nap",
+    "1_H": "Egy óra",
+    "1_MIN": "Egy perc",
+    "1_M": "Egy hónap",
+    "ONE_TIME_DL": "Egyszeri letöltés",
+    "1_W": "Egy hét",
+    "1_Y": "Egy év",
+    "ONETIME": "Egyidejű",
+    "ORIGIN": "Eredet(i)",
+    "PSW": "Jelszó",
+    "PSW_PROTEC": "Jelszavas védelem",
+    "PREVIEW": "Előnézet",
+    "PREV_STEP": "Előző lépés",
+    "RETRY_STEP": "Ismételd meg ezt a lépést",
+    "SEARCH": "Keresés",
+    "SEARCH_LINK": "Egy adott link keresése",
+    "SEARH_BY_HASH": "Fállkeresés hash alapján",
+    "SEARCH_NAME": "Keresés fájlnév alapján",
+    "SEL_FILE": "Válassz fájlt",
+    "SEND": "Küld",
+    "SIZE": "Méret",
+    "NO_ADMIN": "Bocs, de az admin felület nem engedélyezett.",
+    "FILE_404": "Bocsánat, de nem találjuk ezt a fájlt",
+    "NO_ADMIN_AUTH": "Bocs, de nem léptél be adminként.",
     "Term Of Service": "Szolgáltatási feltételek",
-    "The async directory is not writable!": "Az async mappa nem írható!",
-    "The base address of Jirafeau is the first part of the URL, until (and including) the last slash. For example: \"http://www.example.com/\". Do not forget the trailing slash!": "Az alap-Jirafeau címe - az URL első fele, az utolsó per-ig (hash), de azt beleértve. Például: \"http://www.example.com/\". El ne felejtsd a lezáró per-t!",
-    "The data directory is where your files and information about your files will be stored. You should put it outside your web site, or at least restrict the access to this directory. Do not forget the trailing slash!": "Az adatmappa, ahol a fájlokat és a metaadatokat tároljuk. Javasolt, hogy a weboldalon kívül legyen, vagy legalább korlátozd az elérést. Ne feledd a záró hash-t (per jelet)!",
-    "The file directory is not writable": "A fájlmappa nem írható",
-    "The following directory could not be created": "A következő mappa nem került létrehozásra",
-    "The following directory is not writable": "A következő mappa nem írható",
-    "The link directory is not writable": "A linkek mappája nem írható",
-    "The local configuration file could not be created. Create a <code>lib/config.local.php</code> file and give the write permission to the web server (preferred solution), or give the write permission to the web server on the <code>lib</code> directory.": "A helyi konfigfájl nem készült el, az hibát okoz. Megoldás: készíts egy <code>lib/config.local.php</code> fájlt és adj írási jogot a webszerveren, vagy adj írási jogot a webszerveren a <code>lib</code> mappának.",
-    "The local configuration is not writable by the web server. Give the write permission to the web server on the '<code>lib/config.local.php</code> file.": "A helyi konfigfájl nem írható a webszervernek. Adj írási jogot  a szerveren a '<code>lib/config.local.php</code> fájlra.",
-    "The time limit of this file has expired.": "A fájlhoz beállított érvényességi idő lejárt.",
-    "This file is valid until the following date": "A fájl érvényes a következő dátumog",
-    "This file was generated by the install process. You can edit it. Please see config.original.php to understand the configuration items.": "Ez a fájl a telepítés során keletkezett. Szerkesztheted. Kérlek nézd meg a config.original.php fájlt, a konfigurációs lehetőségek megértéséhez.",
-    "Time limit": "Időkorlát",
-    "Type": "Típus",
-    "Upload date": "Feltöltés dátuma",
-    "Upload password": "Feltöltési jelszó",
-    "Uploading ...": "Feltöltés ...",
-    "View link": "Megtekintés linkje",
-    "Warning, this file will self-destruct after being read": "Figyelem, ez a fájl törlődik olvasás után",
-    "Wrong password.": "A megadott jelszó hibás.",
-    "You are about to download": "Arra készülsz, hogy letölts",
-    "You are now loggued out": "Sikeresen kiléptél",
-    "You should create this directory manually.": "Kézileg kéne létrehoznod ezt a mappát.",
-    "You should give the write permission to the web server on this directory.": "A webszerveren kellene írási jogot adnod erre a mappára.",
-    "day": "nap",
-    "file": "fájl",
-    "hour": "óra",
-    "less than a second": "kevesebb, mint egy másodperc",
-    "link": "link",
-    "minute": "perc",
-    "out of": "kívűl",
-    "powered by Open-Source project Jirafeau": "működteti a nyílt forrású Jirafeau",
-    "second": "második",
-    "step": "lépés",
-    "year": "év"
+    "ASYNC_DIR_W": "Az async mappa nem írható!",
+    "BASE_ADDR_INFO": "Az alap-Jirafeau címe - az URL első fele, az utolsó per-ig (hash), de azt beleértve. Például: \"http://www.example.com/\". El ne felejtsd a lezáró per-t!",
+    "DATA_DIR_EXPLAINATION": "Az adatmappa, ahol a fájlokat és a metaadatokat tároljuk. Javasolt, hogy a weboldalon kívül legyen, vagy legalább korlátozd az elérést. Ne feledd a záró hash-t (per jelet)!",
+    "FILE_DIR_W": "A fájlmappa nem írható",
+    "CANNOT_CREATE_DIR": "A következő mappa nem került létrehozásra",
+    "DIR_NOT_W": "A következő mappa nem írható",
+    "LINK_DIR_W": "A linkek mappája nem írható",
+    "CONF_SOLUTION": "A helyi konfigfájl nem készült el, az hibát okoz. Megoldás: készíts egy <code>lib/config.local.php</code> fájlt és adj írási jogot a webszerveren, vagy adj írási jogot a webszerveren a <code>lib</code> mappának.",
+    "CONF_SOLUTION_2": "A helyi konfigfájl nem írható a webszervernek. Adj írási jogot  a szerveren a '<code>lib/config.local.php</code> fájlra.",
+    "FILE_EXPIRED": "A fájlhoz beállított érvényességi idő lejárt.",
+    "VALID_UNTIL": "A fájl érvényes a következő dátumog",
+    "CONF_AUTOGEN_COMMENT": "Ez a fájl a telepítés során keletkezett. Szerkesztheted. Kérlek nézd meg a config.original.php fájlt, a konfigurációs lehetőségek megértéséhez.",
+    "TIME_LIM": "Időkorlát",
+    "TYPE": "Típus",
+    "UPLOAD_DATE": "Feltöltés dátuma",
+    "UP_PSW": "Feltöltési jelszó",
+    "UP": "Feltöltés ...",
+    "VIEW_LINK": "Megtekintés linkje",
+    "AUTO_DESTRUCT": "Figyelem, ez a fájl törlődik olvasás után",
+    "BAD_PSW": "A megadott jelszó hibás.",
+    "NOW_DOWNLOADING": "Arra készülsz, hogy letölts",
+    "NOW_LOGOUT": "Sikeresen kiléptél",
+    "MANUAL_CREATE": "Kézileg kéne létrehoznod ezt a mappát.",
+    "GIMME_W": "A webszerveren kellene írási jogot adnod erre a mappára.",
+    "DAY": "nap",
+    "FILE": "fájl",
+    "HOUR": "óra",
+    "LESS_1_SEC": "kevesebb, mint egy másodperc",
+    "LINK": "link",
+    "MINUTE": "perc",
+    "OUT_OF": "kívűl",
+    "POWERED_BY": "működteti a nyílt forrású Jirafeau",
+    "SECOND": "második",
+    "STEP": "lépés",
+    "YEAR": "év"
 }
index b0729d0fa551d75c5ec97999e962ca07233ebdcf..7139bb86b08abd424d86ca1a0ee1f3b0380a4f0c 100644 (file)
 {
-    "Jirafeau, your web file repository": "",
-    "Select a file": "",
-    "Send": "",
-    "Uploading ...": "",
-    "One time download": "",
-    "Password": "",
-    "Time limit": "",
-    "Maximum file size": "",
-    "powered by Open-Source project Jirafeau": "",
-    "Made with": "",
-    "Jirafeau Project": "",
-    "One minute": "",
-    "One hour": "",
-    "One day": "",
-    "One week": "",
-    "One month": "",
-    "One quarter": "",
-    "One year": "",
-    "None": "",
-    "Upload password": "",
-    "File is too big": "",
-    "File size is limited to": "",
-    "The file directory is not writable": "",
-    "The link directory is not writable": "",
-    "The async directory is not writable!": "",
-    "Installer script still present": "",
-    "Please make sure to delete the installer script \"install.php\" before continuing.": "",
-    "An error occurred.": "",
-    "File uploaded !": "",
-    "Download page": "",
-    "This file is valid until the following date": "",
-    "View link": "",
-    "Direct download link": "",
-    "Delete link": "",
-    "Download": "",
-    "Preview": "",
-    "Sorry, the requested file is not found": "",
-    "File not available.": "",
-    "File has been deleted.": "",
-    "The time limit of this file has expired.": "",
-    "Password protection": "",
-    "Give the password of this file": "",
-    "Access denied": "",
-    "You are about to download": "",
-    "By using our services, you accept our": "",
-    "Terms of Service": "",
-    "Warning, this file will self-destruct after being read": "",
-    "Internal error during file creation.": "",
+    "JI_WEB_RE": "",
+    "SEL_FILE": "",
+    "SEND": "",
+    "UP": "",
+    "ONE_TIME_DL": "",
+    "PSW": "",
+    "TIME_LIM": "",
+    "MAX_FILE_SIZE": "",
+    "POWERED_BY": "",
+    "MADE_WITH": "",
+    "JI_PROJECT": "",
+    "1_MIN": "",
+    "1_H": "",
+    "1_D": "",
+    "1_W": "",
+    "1_M": "",
+    "1_Q": "",
+    "1_Y": "",
+    "NONE": "",
+    "UP_PSW": "",
+    "2_BIG": "",
+    "FILE_LIM": "",
+    "FILE_DIR_W": "",
+    "LINK_DIR_W": "",
+    "ASYNC_DIR_W": "",
+    "INSTALL_SCRIPT_HERE": "",
+    "ERR_OCC": "",
+    "FILE_UP": "",
+    "DL_PAGE": "",
+    "VALID_UNTIL": "",
+    "VIEW_LINK": "",
+    "DIRECT_DL": "",
+    "DELETE_LINK": "",
+    "DL": "",
+    "PREVIEW": "",
+    "FILE_404": "",
+    "FILE_NOT_AVAIL": "",
+    "FILE_DELETED": "",
+    "FILE_EXPIRED": "",
+    "PSW_PROTEC": "",
+    "GIMME_PSW": "",
+    "ACCESS_KO": "",
+    "NOW_DOWNLOADING": "",
+    "USING_SERIVCE": "",
+    "TOS": "",
+    "AUTO_DESTRUCT": "",
+    "INTERNAL_ERROR_DEL": "",
+    "CONF_AUTOGEN_COMMENT": "",
+    "CANNOT_CREATE_DIR": "",
+    "MANUAL_CREATE": "",
+    "DIR_NOT_W": "",
+    "GIMME_W": "",
+    "HERE_SOLUTION": "",
+    "CONF_SOLUTION": "",
+    "CONF_SOLUTION_2": "",
+    "JI_INSTALL": "",
+    "STEP": "",
+    "OUT_OF": "",
+    "FINALIZATION": "",
+    "SETTING_UP": "",
+    "PREV_STEP": "",
+    "RETRY_STEP": "",
+    "JI_FONCTIONAL": "",
+    "INFO": "",
+    "BASE_ADDR_INFO": "",
+    "BASE_ADDR": "",
+    "DATA_DIR_EXPLAINATION": "",
+    "DATA_DIR": "",
+    "JI_HAZ_LANGAGES": "",
+    "DEF_LANGUAGE": "",
+    "NEXT_STEP": "",
+    "ADMIN_INTERFACE_INFO": "",
+    "ADMIN_PSW": "",
 
-    "This file was generated by the install process. You can edit it. Please see config.original.php to understand the configuration items.": "",
-    "The following directory could not be created": "",
-    "You should create this directory manually.": "",
-    "The following directory is not writable": "",
-    "You should give the write permission to the web server on this directory.": "",
-    "Here is a solution": "",
-    "The local configuration file could not be created. Create a <code>lib/config.local.php</code> file and give the write permission to the web server (preferred solution), or give the write permission to the web server on the <code>lib</code> directory.": "",
-    "The local configuration is not writable by the web server. Give the write permission to the web server on the '<code>lib/config.local.php</code> file.": "",
-    "Installation of Jirafeau": "",
-    "step": "",
-    "out of": "",
-    "Administration password": "",
-    "Finalisation": "",
-    "Jirafeau is setting the website according to the configuration you provided.": "",
-    "Previous step": "",
-    "Retry this step": "",
-    "Jirafeau is now fully operational": "",
-    "Information": "",
-    "The base address of Jirafeau is the first part of the URL, until (and including) the last slash. For example: \"http://www.example.com/\". Do not forget the trailing slash!": "",
-    "Base address": "",
-    "The data directory is where your files and information about your files will be stored. You should put it outside your web site, or at least restrict the access to this directory. Do not forget the trailing slash!": "",
-    "Data directory": "",
-    "Jirafeau is internationalised. Choose a specific langage or choose Automatic (langage is provided by user's browser).": "",
-    "Choose the default language": "",
-    "Next step": "",
-    "Jirafeau has an administration interface (through admin.php). You can set a password to access the interface or leave it empty to disable the interface.": "",
-    "Administration password": "",
-
-    "Sorry, the admin interface is not enabled.": "",
-    "Sorry, you are not authenticated on admin interface.": "",
-    "Login": "",
-    "Wrong password.": "",
-    "Admin interface": "",
-    "Clean expired files": "",
-    "Clean old unfinished transfers": "",
-    "Clean": "",
-    "Search files by name": "",
-    "Search": "",
-    "List all files": "",
-    "List": "",
-    "Actions": "",
-    "Search files by file hash": "",
-    "Search a specific link": "",
-    "Number of cleaned files": "",
-    "Logout": "",
-    "You are now loggued out": "",
-    "Link deleted": "",
-    "Filename": "",
-    "file": "",
-    "link": "",
-    "Type": "",
-    "Size": "",
-    "Expire": "",
-    "Onetime": "",
-    "Upload date": "",
-    "Origin": "",
-    "Action": "",
-    "Del link": "",
-    "Del file and links": "",
-    "Deleted links": "",
-    "year": "",
-    "day": "",
-    "minute": "",
-    "hour": "",
-    "second": "",
-    "less than a second": ""
+    "NO_ADMIN": "",
+    "NO_ADMIN_AUTH": "",
+    "LOGIN": "",
+    "BAD_PSW": "",
+    "ADMIN_INTERFACE": "",
+    "CLEAN_EXPIRED": "",
+    "CLEAN_INCOMPLETE": "",
+    "CLEAN": "",
+    "SEARCH_NAME": "",
+    "SEARCH": "",
+    "LS_FILES": "",
+    "LIST": "",
+    "ACTIONS": "",
+    "SEARH_BY_HASH": "",
+    "SEARCH_LINK": "",
+    "CLEANED_FILES_CNT": "",
+    "LOGOUT": "",
+    "NOW_LOGOUT": "",
+    "LINK_DELETED": "",
+    "FILENAME": "",
+    "FILE": "",
+    "LINK": "",
+    "TYPE": "",
+    "SIZE": "",
+    "EXPIRE": "",
+    "ONETIME": "",
+    "UPLOAD_DATE": "",
+    "ORIGIN": "",
+    "ACTION": "",
+    "DEL_LINK": "",
+    "DEL_FILE_LINKS": "",
+    "DELETED_LINKS": "",
+    "YEAR": "",
+    "DAY": "",
+    "MINUTE": "",
+    "HOUR": "",
+    "SECOND": "",
+    "LESS_1_SEC": ""
 }
index 3ffa62c5891fa5cc87350ea7158ee601d5cbbc44..82a27496c4652d667dcf1458f547a4fe4aa54cff 100644 (file)
 {
-    "Access denied": "Accesso negato",
-    "Action": "Azione",
-    "Actions": "Azioni",
-    "Admin interface": "Interfaccia di amministrazione",
-    "Administration password": "Password di amministrazione",
-    "An error occurred.": "C'è stato un errore.",
-    "Base address": "Indirizzo base",
-    "By using our services, you accept our": "Utilizzando i nostri servizi, accettate i nostri",
-    "Choose the default language": "Scegliere la lingua predefinita",
-    "Clean": "Ripulisci",
-    "Clean expired files": "Rimuovi i file scaduti",
-    "Clean old unfinished transfers": "Rimuovi i vecchi trasferimenti non conclusi",
-    "Data directory": "Directory data",
-    "Del file and links": "Canc file e links",
-    "Del link": "Canc link",
-    "Delete link": "Link di cancellazione",
-    "Deleted links": "Links cancellati",
-    "Direct download link": "Link per il download diretto",
-    "Download": "Scarica",
-    "Download page": "Pagina di download",
-    "Expire": "Scadenza",
-    "File has been deleted.": "Il file è stato cancellato.",
-    "File is too big": "Il file è troppo grande",
-    "File not available.": "Il file non è disponibile.",
-    "File size is limited to": "La dimensione dei file è limitata a",
-    "File uploaded !": "File caricato !",
-    "Filename": "Nome file",
-    "Finalisation": "Finalizzazione",
-    "Give the password of this file": "Fornire la password per questo file",
-    "Here is a solution": "Ecco una soluzione",
-    "Information": "Informazioni",
-    "Installation of Jirafeau": "Installazione di Jirafeau",
-    "Installer script still present": "Script di installazione ancora presente",
-    "Internal error during file creation.": "Errore interno durante la creazione del file.",
-    "Jirafeau Project": "Progetto Jirafeau",
-    "Jirafeau has an administration interface (through admin.php). You can set a password to access the interface or leave it empty to disable the interface.": "Jirafeau ha una interfaccia di amministrazione (via  admin.php). E' possibile impostare una password per accedere all'interfaccia o lasciarla vuota per disabilitare l'interfaccia stessa.",
-    "Jirafeau is internationalised. Choose a specific langage or choose Automatic (langage is provided by user's browser).": "Jirafeau è internazionalizzato. Scegliere una lingua specifica o scelta Automatica (la lingua è fornita dal browser dell'utente).",
-    "Jirafeau is now fully operational": "Ora Jirafeau è completamente operativo",
-    "Jirafeau is setting the website according to the configuration you provided.": "Jirafeau sta configurando il sito web secondo la configurazione che avete fornito.",
-    "Jirafeau, your web file repository": "Jirafeau, il tuo archivio web di file",
-    "Link deleted": "Link cancellato",
-    "List": "Lista",
-    "List all files": "Elenca tutti i file",
-    "Login": "Entra",
-    "Logout": "Esci",
-    "Maximum file size": "Dimensione massima del file",
-    "Next step": "Passo successivo",
-    "None": "Nessuno",
-    "Number of cleaned files": "Numero di file ripuliti",
-    "One day": "Un giorno",
-    "One hour": "Un ora",
-    "One minute": "Un minuto",
-    "One month": "Un mese",
-    "One time download": "Download unico",
-    "One week": "Una settimana",
-    "One year": "Un anno",
-    "Onetime": "Download unico",
-    "Origin": "Origine",
-    "Password": "Password",
-    "Password protection": "Protezione con password",
-    "Please make sure to delete the installer script \"install.php\" before continuing.": "Per favore verificare di aver cancellato lo script di installazione \"install.php\" prima di continuare.",
-    "Preview": "Anteprima",
-    "Previous step": "Passo precedente",
-    "Retry this step": "Riprovare questo passaggio",
-    "Search": "Cerca",
-    "Search a specific link": "Cerca un link specifico",
-    "Search files by file hash": "Cerca file per hash",
-    "Search files by name": "Cerca files per nome",
-    "Select a file": "Seleziona un file",
-    "Send": "Carica",
-    "Size": "Dimensione",
-    "Sorry, the admin interface is not enabled.": "Spiacente, l'interfaccia di amministrazione non è abilitata.",
-    "Sorry, the requested file is not found": "Spiacente, il file richiesto non è stato trovato",
-    "Sorry, you are not authenticated on admin interface.": "Spiacente, non sei autenticato per l'interfaccia di amministrazione.",
+    "ACCESS_KO": "Accesso negato",
+    "ACTION": "Azione",
+    "ACTIONS": "Azioni",
+    "ADMIN_INTERFACE": "Interfaccia di amministrazione",
+    "ADMIN_PSW": "Password di amministrazione",
+    "ERR_OCC": "C'è stato un errore.",
+    "BASE_ADDR": "Indirizzo base",
+    "USING_SERIVCE": "Utilizzando i nostri servizi, accettate i nostri",
+    "DEF_LANGUAGE": "Scegliere la lingua predefinita",
+    "CLEAN": "Ripulisci",
+    "CLEAN_EXPIRED": "Rimuovi i file scaduti",
+    "CLEAN_INCOMPLETE": "Rimuovi i vecchi trasferimenti non conclusi",
+    "DATA_DIR": "Directory data",
+    "DEL_FILE_LINKS": "Canc file e links",
+    "DEL_LINK": "Canc link",
+    "DELETE_LINK": "Link di cancellazione",
+    "DELETED_LINKS": "Links cancellati",
+    "DIRECT_DL": "Link per il download diretto",
+    "DL": "Scarica",
+    "DL_PAGE": "Pagina di download",
+    "EXPIRE": "Scadenza",
+    "FILE_DELETED": "Il file è stato cancellato.",
+    "2_BIG": "Il file è troppo grande",
+    "FILE_NOT_AVAIL": "Il file non è disponibile.",
+    "FILE_LIM": "La dimensione dei file è limitata a",
+    "FILE_UP": "File caricato !",
+    "FILENAME": "Nome file",
+    "FINALIZATION": "Finalizzazione",
+    "GIMME_PSW": "Fornire la password per questo file",
+    "HERE_SOLUTION": "Ecco una soluzione",
+    "INFO": "Informazioni",
+    "JI_INSTALL": "Installazione di Jirafeau",
+    "INSTALL_SCRIPT_HERE": "Script di installazione ancora presente",
+    "INTERNAL_ERROR_DEL": "Errore interno durante la creazione del file.",
+    "JI_PROJECT": "Progetto Jirafeau",
+    "ADMIN_INTERFACE_INFO": "Jirafeau ha una interfaccia di amministrazione (via  admin.php). E' possibile impostare una password per accedere all'interfaccia o lasciarla vuota per disabilitare l'interfaccia stessa.",
+    "JI_HAZ_LANGAGES": "Jirafeau è internazionalizzato. Scegliere una lingua specifica o scelta Automatica (la lingua è fornita dal browser dell'utente).",
+    "JI_FONCTIONAL": "Ora Jirafeau è completamente operativo",
+    "SETTING_UP": "Jirafeau sta configurando il sito web secondo la configurazione che avete fornito.",
+    "JI_WEB_RE": "Jirafeau, il tuo archivio web di file",
+    "LINK_DELETED": "Link cancellato",
+    "LIST": "Lista",
+    "LS_FILES": "Elenca tutti i file",
+    "LOGIN": "Entra",
+    "LOGOUT": "Esci",
+    "MAX_FILE_SIZE": "Dimensione massima del file",
+    "NEXT_STEP": "Passo successivo",
+    "NONE": "Nessuno",
+    "CLEANED_FILES_CNT": "Numero di file ripuliti",
+    "1_D": "Un giorno",
+    "1_H": "Un ora",
+    "1_MIN": "Un minuto",
+    "1_M": "Un mese",
+    "ONE_TIME_DL": "Download unico",
+    "1_W": "Una settimana",
+    "1_Y": "Un anno",
+    "ONETIME": "Download unico",
+    "ORIGIN": "Origine",
+    "PSW": "Password",
+    "PSW_PROTEC": "Protezione con password",
+    "PREVIEW": "Anteprima",
+    "PREV_STEP": "Passo precedente",
+    "RETRY_STEP": "Riprovare questo passaggio",
+    "SEARCH": "Cerca",
+    "SEARCH_LINK": "Cerca un link specifico",
+    "SEARH_BY_HASH": "Cerca file per hash",
+    "SEARCH_NAME": "Cerca files per nome",
+    "SEL_FILE": "Seleziona un file",
+    "SEND": "Carica",
+    "SIZE": "Dimensione",
+    "NO_ADMIN": "Spiacente, l'interfaccia di amministrazione non è abilitata.",
+    "FILE_404": "Spiacente, il file richiesto non è stato trovato",
+    "NO_ADMIN_AUTH": "Spiacente, non sei autenticato per l'interfaccia di amministrazione.",
     "Term Of Service": "Termini del Servizio",
-    "The async directory is not writable!": "la directory async è non scrivibile!",
-    "The base address of Jirafeau is the first part of the URL, until (and including) the last slash. For example: \"http://www.example.com/\". Do not forget the trailing slash!": "L'indirizzo base di Jirafeau è la prima parte della URL, fino (e incluso) la barra finale. Per esempio:\n\"http://www.example.com/\". Non dimenticare la barra finale!",
-    "The data directory is where your files and information about your files will be stored. You should put it outside your web site, or at least restrict the access to this directory. Do not forget the trailing slash!": "La directory data è dove i vostri file e le informazioni su di essi sono archiviate. Dovrebbe risiedere al di fuori del sito web, o quantomeno si dovrebbe restringere l'accesso a questa directory. Non dimenticare lo slash finale!",
-    "The file directory is not writable": "La directory dei file non è scrivibile",
-    "The following directory could not be created": "Non è stato possibile creare la seguente directory",
-    "The following directory is not writable": "La seguente directory non è scrivibile",
-    "The link directory is not writable": "La directory dei link non è scrivibile",
-    "The local configuration file could not be created. Create a <code>lib/config.local.php</code> file and give the write permission to the web server (preferred solution), or give the write permission to the web server on the <code>lib</code> directory.": "Non è stato possibile creare il file di configurazione locale. Creare un file <code>lib/config.local.php</code> e dare al server web i permessi in scrittura al file stesso (soluzione preferita), oppure dare i permessi in scrittura al server web all'intera directory <code>lib</code>.",
-    "The local configuration is not writable by the web server. Give the write permission to the web server on the '<code>lib/config.local.php</code> file.": "Il server web non può scrivere la configurazione locale. Dare al web server i permessi di scrittura per il file '<code>lib/config.local.php</code>.",
-    "The time limit of this file has expired.": "Il tempo limite di questo file è scaduto.",
-    "This file is valid until the following date": "Questo file è valido fino alla seguente data",
-    "This file was generated by the install process. You can edit it. Please see config.original.php to understand the configuration items.": "Questo file è stato generato dal processo di installazione. E' possibile editarlo. Per capire le possibili voci di configurazione vedere config.original.php.",
-    "Time limit": "Limite di tempo",
-    "Type": "Tipo",
-    "Upload date": "Data di caricamento",
-    "Upload password": "Password per caricare file",
-    "Uploading ...": "Sto caricando ...",
-    "View link": "Visualizza link",
-    "Warning, this file will self-destruct after being read": "Attenzione, questo file si auto distruggerà dopo essere stato letto",
-    "Wrong password.": "Password errata.",
-    "You are about to download": "Stai per scaricare",
-    "You are now loggued out": "Hai eseguito il logout",
-    "You should create this directory manually.": "E' necessario creare manualmente questa directory.",
-    "You should give the write permission to the web server on this directory.": "E' necessario dare al server web i permessi in scrittura per questa directory.",
-    "file": "file",
-    "link": "link",
-    "out of": "fuori da",
-    "powered by Open-Source project Jirafeau": "utilizza il progetto Open Source Jirafeau",
-    "step": "passo",
-    "year": "anno",
-    "day": "giorno",
-    "minute": "minuto",
-    "hour": "ora",
-    "second": "secondo",
-    "less than a second": "meno di un secondo"
+    "ASYNC_DIR_W": "la directory async è non scrivibile!",
+    "BASE_ADDR_INFO": "L'indirizzo base di Jirafeau è la prima parte della URL, fino (e incluso) la barra finale. Per esempio:\n\"http://www.example.com/\". Non dimenticare la barra finale!",
+    "DATA_DIR_EXPLAINATION": "La directory data è dove i vostri file e le informazioni su di essi sono archiviate. Dovrebbe risiedere al di fuori del sito web, o quantomeno si dovrebbe restringere l'accesso a questa directory. Non dimenticare lo slash finale!",
+    "FILE_DIR_W": "La directory dei file non è scrivibile",
+    "CANNOT_CREATE_DIR": "Non è stato possibile creare la seguente directory",
+    "DIR_NOT_W": "La seguente directory non è scrivibile",
+    "LINK_DIR_W": "La directory dei link non è scrivibile",
+    "CONF_SOLUTION": "Non è stato possibile creare il file di configurazione locale. Creare un file <code>lib/config.local.php</code> e dare al server web i permessi in scrittura al file stesso (soluzione preferita), oppure dare i permessi in scrittura al server web all'intera directory <code>lib</code>.",
+    "CONF_SOLUTION_2": "Il server web non può scrivere la configurazione locale. Dare al web server i permessi di scrittura per il file '<code>lib/config.local.php</code>.",
+    "FILE_EXPIRED": "Il tempo limite di questo file è scaduto.",
+    "VALID_UNTIL": "Questo file è valido fino alla seguente data",
+    "CONF_AUTOGEN_COMMENT": "Questo file è stato generato dal processo di installazione. E' possibile editarlo. Per capire le possibili voci di configurazione vedere config.original.php.",
+    "TIME_LIM": "Limite di tempo",
+    "TYPE": "Tipo",
+    "UPLOAD_DATE": "Data di caricamento",
+    "UP_PSW": "Password per caricare file",
+    "UP": "Sto caricando ...",
+    "VIEW_LINK": "Visualizza link",
+    "AUTO_DESTRUCT": "Attenzione, questo file si auto distruggerà dopo essere stato letto",
+    "BAD_PSW": "Password errata.",
+    "NOW_DOWNLOADING": "Stai per scaricare",
+    "NOW_LOGOUT": "Hai eseguito il logout",
+    "MANUAL_CREATE": "E' necessario creare manualmente questa directory.",
+    "GIMME_W": "E' necessario dare al server web i permessi in scrittura per questa directory.",
+    "FILE": "file",
+    "LINK": "link",
+    "OUT_OF": "fuori da",
+    "POWERED_BY": "utilizza il progetto Open Source Jirafeau",
+    "STEP": "passo",
+    "YEAR": "anno",
+    "DAY": "giorno",
+    "MINUTE": "minuto",
+    "HOUR": "ora",
+    "SECOND": "secondo",
+    "LESS_1_SEC": "meno di un secondo"
 }
index d681a6a41f229519481e75c758c3a0e2206fd2b4..84341fb20e0f559fd4fcb97660dffed7ceb7203e 100644 (file)
 {
-    "Access denied": "", 
-    "Action": "", 
-    "Actions": "", 
-    "Admin interface": "", 
-    "Administration password": "", 
-    "An error occurred.": "", 
-    "Base address": "", 
-    "By using our services, you accept our": "", 
-    "Choose the default language": "", 
-    "Clean": "", 
-    "Clean expired files": "", 
-    "Clean old unfinished transfers": "", 
-    "Data directory": "", 
-    "Del file and links": "", 
-    "Del link": "", 
-    "Delete link": "", 
-    "Deleted links": "", 
-    "Direct download link": "", 
-    "Download": "", 
-    "Download page": "", 
-    "Expire": "", 
-    "File has been deleted.": "", 
-    "File is too big": "", 
-    "File not available.": "", 
-    "File size is limited to": "", 
-    "File uploaded !": "", 
-    "Filename": "", 
-    "Finalisation": "", 
-    "Give the password of this file": "", 
-    "Here is a solution": "", 
-    "Information": "", 
-    "Installation of Jirafeau": "", 
-    "Installer script still present": "", 
-    "Internal error during file creation.": "", 
-    "Jirafeau Project": "", 
-    "Jirafeau has an administration interface (through admin.php). You can set a password to access the interface or leave it empty to disable the interface.": "", 
-    "Jirafeau is internationalised. Choose a specific langage or choose Automatic (langage is provided by user's browser).": "", 
-    "Jirafeau is now fully operational": "", 
-    "Jirafeau is setting the website according to the configuration you provided.": "", 
-    "Jirafeau, your web file repository": "", 
-    "Link deleted": "", 
-    "List": "", 
-    "List all files": "", 
-    "Login": "", 
-    "Logout": "", 
-    "Maximum file size": "", 
-    "Next step": "", 
-    "None": "", 
-    "Number of cleaned files": "", 
-    "One day": "", 
-    "One hour": "", 
-    "One minute": "", 
-    "One month": "", 
-    "One time download": "", 
-    "One week": "", 
-    "One year": "", 
-    "Onetime": "", 
-    "Origin": "", 
-    "Password": "", 
-    "Password protection": "", 
-    "Please make sure to delete the installer script \"install.php\" before continuing.": "", 
-    "Preview": "", 
-    "Previous step": "", 
-    "Retry this step": "", 
-    "Search": "", 
-    "Search a specific link": "", 
-    "Search files by file hash": "", 
-    "Search files by name": "", 
-    "Select a file": "", 
-    "Send": "", 
-    "Size": "", 
-    "Sorry, the admin interface is not enabled.": "", 
-    "Sorry, the requested file is not found": "", 
-    "Sorry, you are not authenticated on admin interface.": "", 
+    "ACCESS_KO": "", 
+    "ACTION": "", 
+    "ACTIONS": "", 
+    "ADMIN_INTERFACE": "", 
+    "ADMIN_PSW": "", 
+    "ERR_OCC": "", 
+    "BASE_ADDR": "", 
+    "USING_SERIVCE": "", 
+    "DEF_LANGUAGE": "", 
+    "CLEAN": "", 
+    "CLEAN_EXPIRED": "", 
+    "CLEAN_INCOMPLETE": "", 
+    "DATA_DIR": "", 
+    "DEL_FILE_LINKS": "", 
+    "DEL_LINK": "", 
+    "DELETE_LINK": "", 
+    "DELETED_LINKS": "", 
+    "DIRECT_DL": "", 
+    "DL": "", 
+    "DL_PAGE": "", 
+    "EXPIRE": "", 
+    "FILE_DELETED": "", 
+    "2_BIG": "", 
+    "FILE_NOT_AVAIL": "", 
+    "FILE_LIM": "", 
+    "FILE_UP": "", 
+    "FILENAME": "", 
+    "FINALIZATION": "", 
+    "GIMME_PSW": "", 
+    "HERE_SOLUTION": "", 
+    "INFO": "", 
+    "JI_INSTALL": "", 
+    "INSTALL_SCRIPT_HERE": "", 
+    "INTERNAL_ERROR_DEL": "", 
+    "JI_PROJECT": "", 
+    "ADMIN_INTERFACE_INFO": "", 
+    "JI_HAZ_LANGAGES": "", 
+    "JI_FONCTIONAL": "", 
+    "SETTING_UP": "", 
+    "JI_WEB_RE": "", 
+    "LINK_DELETED": "", 
+    "LIST": "", 
+    "LS_FILES": "", 
+    "LOGIN": "", 
+    "LOGOUT": "", 
+    "MAX_FILE_SIZE": "", 
+    "NEXT_STEP": "", 
+    "NONE": "", 
+    "CLEANED_FILES_CNT": "", 
+    "1_D": "", 
+    "1_H": "", 
+    "1_MIN": "", 
+    "1_M": "", 
+    "ONE_TIME_DL": "", 
+    "1_W": "", 
+    "1_Y": "", 
+    "ONETIME": "", 
+    "ORIGIN": "", 
+    "PSW": "", 
+    "PSW_PROTEC": "", 
+    "PREVIEW": "", 
+    "PREV_STEP": "", 
+    "RETRY_STEP": "", 
+    "SEARCH": "", 
+    "SEARCH_LINK": "", 
+    "SEARH_BY_HASH": "", 
+    "SEARCH_NAME": "", 
+    "SEL_FILE": "", 
+    "SEND": "", 
+    "SIZE": "", 
+    "NO_ADMIN": "", 
+    "FILE_404": "", 
+    "NO_ADMIN_AUTH": "", 
     "Term Of Service": "", 
-    "The async directory is not writable!": "", 
-    "The base address of Jirafeau is the first part of the URL, until (and including) the last slash. For example: \"http://www.example.com/\". Do not forget the trailing slash!": "", 
-    "The data directory is where your files and information about your files will be stored. You should put it outside your web site, or at least restrict the access to this directory. Do not forget the trailing slash!": "", 
-    "The file directory is not writable": "", 
-    "The following directory could not be created": "", 
-    "The following directory is not writable": "", 
-    "The link directory is not writable": "", 
-    "The local configuration file could not be created. Create a <code>lib/config.local.php</code> file and give the write permission to the web server (preferred solution), or give the write permission to the web server on the <code>lib</code> directory.": "", 
-    "The local configuration is not writable by the web server. Give the write permission to the web server on the '<code>lib/config.local.php</code> file.": "", 
-    "The time limit of this file has expired.": "", 
-    "This file is valid until the following date": "", 
-    "This file was generated by the install process. You can edit it. Please see config.original.php to understand the configuration items.": "", 
-    "Time limit": "", 
-    "Type": "", 
-    "Upload date": "", 
-    "Upload password": "", 
-    "Uploading ...": "", 
-    "View link": "", 
-    "Warning, this file will self-destruct after being read": "", 
-    "Wrong password.": "", 
-    "You are about to download": "", 
-    "You are now loggued out": "", 
-    "You should create this directory manually.": "", 
-    "You should give the write permission to the web server on this directory.": "", 
-    "day": "", 
-    "file": "", 
-    "hour": "", 
-    "less than a second": "", 
-    "link": "", 
-    "minute": "", 
-    "out of": "", 
-    "powered by Open-Source project Jirafeau": "", 
-    "second": "", 
-    "step": "", 
-    "year": ""
-}
\ No newline at end of file
+    "ASYNC_DIR_W": "", 
+    "BASE_ADDR_INFO": "",
+    "DATA_DIR_EXPLAINATION": "", 
+    "FILE_DIR_W": "", 
+    "CANNOT_CREATE_DIR": "", 
+    "DIR_NOT_W": "", 
+    "LINK_DIR_W": "", 
+    "CONF_SOLUTION": "", 
+    "CONF_SOLUTION_2": "", 
+    "FILE_EXPIRED": "", 
+    "VALID_UNTIL": "", 
+    "CONF_AUTOGEN_COMMENT": "", 
+    "TIME_LIM": "", 
+    "TYPE": "", 
+    "UPLOAD_DATE": "", 
+    "UP_PSW": "", 
+    "UP": "", 
+    "VIEW_LINK": "", 
+    "AUTO_DESTRUCT": "", 
+    "BAD_PSW": "", 
+    "NOW_DOWNLOADING": "", 
+    "NOW_LOGOUT": "", 
+    "MANUAL_CREATE": "", 
+    "GIMME_W": "", 
+    "DAY": "", 
+    "FILE": "", 
+    "HOUR": "", 
+    "LESS_1_SEC": "", 
+    "LINK": "", 
+    "MINUTE": "", 
+    "OUT_OF": "", 
+    "POWERED_BY": "", 
+    "SECOND": "", 
+    "STEP": "", 
+    "YEAR": ""
+}
index d681a6a41f229519481e75c758c3a0e2206fd2b4..46fc9b403a8747187a1462be3a593977c9a682ad 100644 (file)
 {
-    "Access denied": "", 
-    "Action": "", 
-    "Actions": "", 
-    "Admin interface": "", 
-    "Administration password": "", 
-    "An error occurred.": "", 
-    "Base address": "", 
-    "By using our services, you accept our": "", 
-    "Choose the default language": "", 
-    "Clean": "", 
-    "Clean expired files": "", 
-    "Clean old unfinished transfers": "", 
-    "Data directory": "", 
-    "Del file and links": "", 
-    "Del link": "", 
-    "Delete link": "", 
-    "Deleted links": "", 
-    "Direct download link": "", 
-    "Download": "", 
-    "Download page": "", 
-    "Expire": "", 
-    "File has been deleted.": "", 
-    "File is too big": "", 
-    "File not available.": "", 
-    "File size is limited to": "", 
-    "File uploaded !": "", 
-    "Filename": "", 
-    "Finalisation": "", 
-    "Give the password of this file": "", 
-    "Here is a solution": "", 
-    "Information": "", 
-    "Installation of Jirafeau": "", 
-    "Installer script still present": "", 
-    "Internal error during file creation.": "", 
-    "Jirafeau Project": "", 
-    "Jirafeau has an administration interface (through admin.php). You can set a password to access the interface or leave it empty to disable the interface.": "", 
-    "Jirafeau is internationalised. Choose a specific langage or choose Automatic (langage is provided by user's browser).": "", 
-    "Jirafeau is now fully operational": "", 
-    "Jirafeau is setting the website according to the configuration you provided.": "", 
-    "Jirafeau, your web file repository": "", 
-    "Link deleted": "", 
-    "List": "", 
-    "List all files": "", 
-    "Login": "", 
-    "Logout": "", 
-    "Maximum file size": "", 
-    "Next step": "", 
-    "None": "", 
-    "Number of cleaned files": "", 
-    "One day": "", 
-    "One hour": "", 
-    "One minute": "", 
-    "One month": "", 
-    "One time download": "", 
-    "One week": "", 
-    "One year": "", 
-    "Onetime": "", 
-    "Origin": "", 
-    "Password": "", 
-    "Password protection": "", 
-    "Please make sure to delete the installer script \"install.php\" before continuing.": "", 
-    "Preview": "", 
-    "Previous step": "", 
-    "Retry this step": "", 
-    "Search": "", 
-    "Search a specific link": "", 
-    "Search files by file hash": "", 
-    "Search files by name": "", 
-    "Select a file": "", 
-    "Send": "", 
-    "Size": "", 
-    "Sorry, the admin interface is not enabled.": "", 
-    "Sorry, the requested file is not found": "", 
-    "Sorry, you are not authenticated on admin interface.": "", 
+    "ACCESS_KO": "", 
+    "ACTION": "", 
+    "ACTIONS": "", 
+    "ADMIN_INTERFACE": "", 
+    "ADMIN_PSW": "", 
+    "ERR_OCC": "", 
+    "BASE_ADDR": "", 
+    "USING_SERIVCE": "", 
+    "DEF_LANGUAGE": "", 
+    "CLEAN": "", 
+    "CLEAN_EXPIRED": "", 
+    "CLEAN_INCOMPLETE": "", 
+    "DATA_DIR": "", 
+    "DEL_FILE_LINKS": "", 
+    "DEL_LINK": "", 
+    "DELETE_LINK": "", 
+    "DELETED_LINKS": "", 
+    "DIRECT_DL": "", 
+    "DL": "", 
+    "DL_PAGE": "", 
+    "EXPIRE": "", 
+    "FILE_DELETED": "", 
+    "2_BIG": "", 
+    "FILE_NOT_AVAIL": "", 
+    "FILE_LIM": "", 
+    "FILE_UP": "", 
+    "FILENAME": "", 
+    "FINALIZATION": "", 
+    "GIMME_PSW": "", 
+    "HERE_SOLUTION": "", 
+    "INFO": "", 
+    "JI_INSTALL": "", 
+    "INSTALL_SCRIPT_HERE": "", 
+    "INTERNAL_ERROR_DEL": "", 
+    "JI_PROJECT": "", 
+    "ADMIN_INTERFACE_INFO": "", 
+    "JI_HAZ_LANGAGES": "", 
+    "JI_FONCTIONAL": "", 
+    "SETTING_UP": "", 
+    "JI_WEB_RE": "", 
+    "LINK_DELETED": "", 
+    "LIST": "", 
+    "LS_FILES": "", 
+    "LOGIN": "", 
+    "LOGOUT": "", 
+    "MAX_FILE_SIZE": "", 
+    "NEXT_STEP": "", 
+    "NONE": "", 
+    "CLEANED_FILES_CNT": "", 
+    "1_D": "", 
+    "1_H": "", 
+    "1_MIN": "", 
+    "1_M": "", 
+    "ONE_TIME_DL": "", 
+    "1_W": "", 
+    "1_Y": "", 
+    "ONETIME": "", 
+    "ORIGIN": "", 
+    "PSW": "", 
+    "PSW_PROTEC": "", 
+    "PREVIEW": "", 
+    "PREV_STEP": "", 
+    "RETRY_STEP": "", 
+    "SEARCH": "", 
+    "SEARCH_LINK": "", 
+    "SEARH_BY_HASH": "", 
+    "SEARCH_NAME": "", 
+    "SEL_FILE": "", 
+    "SEND": "", 
+    "SIZE": "", 
+    "NO_ADMIN": "", 
+    "FILE_404": "", 
+    "NO_ADMIN_AUTH": "", 
     "Term Of Service": "", 
-    "The async directory is not writable!": "", 
-    "The base address of Jirafeau is the first part of the URL, until (and including) the last slash. For example: \"http://www.example.com/\". Do not forget the trailing slash!": "", 
-    "The data directory is where your files and information about your files will be stored. You should put it outside your web site, or at least restrict the access to this directory. Do not forget the trailing slash!": "", 
-    "The file directory is not writable": "", 
-    "The following directory could not be created": "", 
-    "The following directory is not writable": "", 
-    "The link directory is not writable": "", 
-    "The local configuration file could not be created. Create a <code>lib/config.local.php</code> file and give the write permission to the web server (preferred solution), or give the write permission to the web server on the <code>lib</code> directory.": "", 
-    "The local configuration is not writable by the web server. Give the write permission to the web server on the '<code>lib/config.local.php</code> file.": "", 
-    "The time limit of this file has expired.": "", 
-    "This file is valid until the following date": "", 
-    "This file was generated by the install process. You can edit it. Please see config.original.php to understand the configuration items.": "", 
-    "Time limit": "", 
-    "Type": "", 
-    "Upload date": "", 
-    "Upload password": "", 
-    "Uploading ...": "", 
-    "View link": "", 
-    "Warning, this file will self-destruct after being read": "", 
-    "Wrong password.": "", 
-    "You are about to download": "", 
-    "You are now loggued out": "", 
-    "You should create this directory manually.": "", 
-    "You should give the write permission to the web server on this directory.": "", 
-    "day": "", 
-    "file": "", 
-    "hour": "", 
-    "less than a second": "", 
-    "link": "", 
-    "minute": "", 
-    "out of": "", 
-    "powered by Open-Source project Jirafeau": "", 
-    "second": "", 
-    "step": "", 
-    "year": ""
-}
\ No newline at end of file
+    "ASYNC_DIR_W": "",
+    "BASE_ADDR_INFO": "",
+    "DATA_DIR_EXPLAINATION": "", 
+    "FILE_DIR_W": "", 
+    "CANNOT_CREATE_DIR": "", 
+    "DIR_NOT_W": "", 
+    "LINK_DIR_W": "", 
+    "CONF_SOLUTION": "", 
+    "CONF_SOLUTION_2": "", 
+    "FILE_EXPIRED": "", 
+    "VALID_UNTIL": "", 
+    "CONF_AUTOGEN_COMMENT": "", 
+    "TIME_LIM": "", 
+    "TYPE": "", 
+    "UPLOAD_DATE": "", 
+    "UP_PSW": "", 
+    "UP": "", 
+    "VIEW_LINK": "", 
+    "AUTO_DESTRUCT": "", 
+    "BAD_PSW": "", 
+    "NOW_DOWNLOADING": "", 
+    "NOW_LOGOUT": "", 
+    "MANUAL_CREATE": "", 
+    "GIMME_W": "", 
+    "DAY": "", 
+    "FILE": "", 
+    "HOUR": "", 
+    "LESS_1_SEC": "", 
+    "LINK": "", 
+    "MINUTE": "", 
+    "OUT_OF": "", 
+    "POWERED_BY": "", 
+    "SECOND": "", 
+    "STEP": "", 
+    "YEAR": ""
+}
index b0729d0fa551d75c5ec97999e962ca07233ebdcf..6e5c26115e4d62eabd3b367ce3c1493d3fdf73ad 100644 (file)
 {
-    "Jirafeau, your web file repository": "",
-    "Select a file": "",
-    "Send": "",
-    "Uploading ...": "",
-    "One time download": "",
-    "Password": "",
-    "Time limit": "",
-    "Maximum file size": "",
-    "powered by Open-Source project Jirafeau": "",
-    "Made with": "",
-    "Jirafeau Project": "",
-    "One minute": "",
-    "One hour": "",
-    "One day": "",
-    "One week": "",
-    "One month": "",
-    "One quarter": "",
-    "One year": "",
-    "None": "",
-    "Upload password": "",
-    "File is too big": "",
-    "File size is limited to": "",
-    "The file directory is not writable": "",
-    "The link directory is not writable": "",
-    "The async directory is not writable!": "",
-    "Installer script still present": "",
-    "Please make sure to delete the installer script \"install.php\" before continuing.": "",
-    "An error occurred.": "",
-    "File uploaded !": "",
-    "Download page": "",
-    "This file is valid until the following date": "",
-    "View link": "",
-    "Direct download link": "",
-    "Delete link": "",
-    "Download": "",
-    "Preview": "",
-    "Sorry, the requested file is not found": "",
-    "File not available.": "",
-    "File has been deleted.": "",
-    "The time limit of this file has expired.": "",
-    "Password protection": "",
-    "Give the password of this file": "",
-    "Access denied": "",
-    "You are about to download": "",
-    "By using our services, you accept our": "",
-    "Terms of Service": "",
-    "Warning, this file will self-destruct after being read": "",
-    "Internal error during file creation.": "",
-
-    "This file was generated by the install process. You can edit it. Please see config.original.php to understand the configuration items.": "",
-    "The following directory could not be created": "",
-    "You should create this directory manually.": "",
-    "The following directory is not writable": "",
-    "You should give the write permission to the web server on this directory.": "",
-    "Here is a solution": "",
-    "The local configuration file could not be created. Create a <code>lib/config.local.php</code> file and give the write permission to the web server (preferred solution), or give the write permission to the web server on the <code>lib</code> directory.": "",
-    "The local configuration is not writable by the web server. Give the write permission to the web server on the '<code>lib/config.local.php</code> file.": "",
-    "Installation of Jirafeau": "",
-    "step": "",
-    "out of": "",
-    "Administration password": "",
-    "Finalisation": "",
-    "Jirafeau is setting the website according to the configuration you provided.": "",
-    "Previous step": "",
-    "Retry this step": "",
-    "Jirafeau is now fully operational": "",
-    "Information": "",
-    "The base address of Jirafeau is the first part of the URL, until (and including) the last slash. For example: \"http://www.example.com/\". Do not forget the trailing slash!": "",
-    "Base address": "",
-    "The data directory is where your files and information about your files will be stored. You should put it outside your web site, or at least restrict the access to this directory. Do not forget the trailing slash!": "",
-    "Data directory": "",
-    "Jirafeau is internationalised. Choose a specific langage or choose Automatic (langage is provided by user's browser).": "",
-    "Choose the default language": "",
-    "Next step": "",
-    "Jirafeau has an administration interface (through admin.php). You can set a password to access the interface or leave it empty to disable the interface.": "",
-    "Administration password": "",
-
-    "Sorry, the admin interface is not enabled.": "",
-    "Sorry, you are not authenticated on admin interface.": "",
-    "Login": "",
-    "Wrong password.": "",
-    "Admin interface": "",
-    "Clean expired files": "",
-    "Clean old unfinished transfers": "",
-    "Clean": "",
-    "Search files by name": "",
-    "Search": "",
-    "List all files": "",
-    "List": "",
-    "Actions": "",
-    "Search files by file hash": "",
-    "Search a specific link": "",
-    "Number of cleaned files": "",
-    "Logout": "",
-    "You are now loggued out": "",
-    "Link deleted": "",
-    "Filename": "",
-    "file": "",
-    "link": "",
-    "Type": "",
-    "Size": "",
-    "Expire": "",
-    "Onetime": "",
-    "Upload date": "",
-    "Origin": "",
-    "Action": "",
-    "Del link": "",
-    "Del file and links": "",
-    "Deleted links": "",
-    "year": "",
-    "day": "",
-    "minute": "",
-    "hour": "",
-    "second": "",
-    "less than a second": ""
+    "JI_WEB_RE": "",
+    "SEL_FILE": "",
+    "SEND": "",
+    "UP": "",
+    "ONE_TIME_DL": "",
+    "PSW": "",
+    "TIME_LIM": "",
+    "MAX_FILE_SIZE": "",
+    "POWERED_BY": "",
+    "MADE_WITH": "",
+    "JI_PROJECT": "",
+    "1_MIN": "",
+    "1_H": "",
+    "1_D": "",
+    "1_W": "",
+    "1_M": "",
+    "1_Q": "",
+    "1_Y": "",
+    "NONE": "",
+    "UP_PSW": "",
+    "2_BIG": "",
+    "FILE_LIM": "",
+    "FILE_DIR_W": "",
+    "LINK_DIR_W": "",
+    "ASYNC_DIR_W": "",
+    "INSTALL_SCRIPT_HERE": "",
+    "ERR_OCC": "",
+    "FILE_UP": "",
+    "DL_PAGE": "",
+    "VALID_UNTIL": "",
+    "VIEW_LINK": "",
+    "DIRECT_DL": "",
+    "DELETE_LINK": "",
+    "DL": "",
+    "PREVIEW": "",
+    "FILE_404": "",
+    "FILE_NOT_AVAIL": "",
+    "FILE_DELETED": "",
+    "FILE_EXPIRED": "",
+    "PSW_PROTEC": "",
+    "GIMME_PSW": "",
+    "ACCESS_KO": "",
+    "NOW_DOWNLOADING": "",
+    "USING_SERIVCE": "",
+    "TOS": "",
+    "AUTO_DESTRUCT": "",
+    "INTERNAL_ERROR_DEL": "",
+    "CONF_AUTOGEN_COMMENT": "",
+    "CANNOT_CREATE_DIR": "",
+    "MANUAL_CREATE": "",
+    "DIR_NOT_W": "",
+    "GIMME_W": "",
+    "HERE_SOLUTION": "",
+    "CONF_SOLUTION": "",
+    "CONF_SOLUTION_2": "",
+    "JI_INSTALL": "",
+    "STEP": "",
+    "OUT_OF": "",
+    "ADMIN_PSW": "",
+    "FINALIZATION": "",
+    "SETTING_UP": "",
+    "PREV_STEP": "",
+    "RETRY_STEP": "",
+    "JI_FONCTIONAL": "",
+    "INFO": "",
+    "BASE_ADDR_INFO": "",
+    "BASE_ADDR": "",
+    "DATA_DIR_EXPLAINATION": "",
+    "DATA_DIR": "",
+    "JI_HAZ_LANGAGES": "",
+    "DEF_LANGUAGE": "",
+    "NEXT_STEP": "",
+    "ADMIN_INTERFACE_INFO": "",
+    "NO_ADMIN": "",
+    "NO_ADMIN_AUTH": "",
+    "LOGIN": "",
+    "BAD_PSW": "",
+    "ADMIN_INTERFACE": "",
+    "CLEAN_EXPIRED": "",
+    "CLEAN_INCOMPLETE": "",
+    "CLEAN": "",
+    "SEARCH_NAME": "",
+    "SEARCH": "",
+    "LS_FILES": "",
+    "LIST": "",
+    "ACTIONS": "",
+    "SEARH_BY_HASH": "",
+    "SEARCH_LINK": "",
+    "CLEANED_FILES_CNT": "",
+    "LOGOUT": "",
+    "NOW_LOGOUT": "",
+    "LINK_DELETED": "",
+    "FILENAME": "",
+    "FILE": "",
+    "LINK": "",
+    "TYPE": "",
+    "SIZE": "",
+    "EXPIRE": "",
+    "ONETIME": "",
+    "UPLOAD_DATE": "",
+    "ORIGIN": "",
+    "ACTION": "",
+    "DEL_LINK": "",
+    "DEL_FILE_LINKS": "",
+    "DELETED_LINKS": "",
+    "YEAR": "",
+    "DAY": "",
+    "MINUTE": "",
+    "HOUR": "",
+    "SECOND": "",
+    "LESS_1_SEC": ""
 }
index 37fa1776fc0440be031bc0580e3ce9688b9703a0..5e1977e96380599c98b2ef07e54b9aa29e3b302e 100644 (file)
 {
-    "Jirafeau, your web file repository": "Jirafeau, web filibus depositum tuum",
-    "Select a file": "Selegi filum",
-    "Send": "Mittere",
-    "Uploading ...": "Mittens ...",
-    "One time download": "",
-    "Password": "Tessera",
-    "Time limit": "Tempori limes",
-    "Maximum file size": "Maxima filo dimensio",
-    "powered by Open-Source project Jirafeau": "alimentato per Open-Source libelo Jirafeau",
-    "Made with": "Factum cum",
-    "Jirafeau Project": "Jirafeau Commisso",
-    "One minute": "Unum minutum",
-    "One hour": "Una hora",
-    "One day": "Uno die",
-    "One week": "Una hebdomada",
-    "One month": "Unus mensis",
-    "One quarter": "Una quarta",
-    "One year": "Unus annus",
-    "None": "Nullum",
-    "Upload password": "Mitte tesseram",
-    "File is too big": "Filum nimis magnus est",
-    "File size is limited to": "Filo dimensioni limes est",
-    "The file directory is not writable": "",
-    "The link directory is not writable": "",
-    "The async directory is not writable!": "",
-    "Installer script still present": "",
-    "Please make sure to delete the installer script \"install.php\" before continuing.": "",
-    "An error occurred.": "Error occurit.",
-    "File uploaded !": "",
-    "Download page": "",
-    "This file is valid until the following date": "",
-    "View link": "Spectate ligaminem",
-    "Direct download link": "",
-    "Delete link": "Delete ligaminem",
-    "Download": "Extrahete",
-    "Preview": "Praespectate",
-    "Sorry, the requested file is not found": "",
-    "File not available.": "Filum non praesto est.",
-    "Confirm deletion": "",
-    "You are about to delete": "",
-    "Delete": "Delere",
-    "File has been deleted.": "Filum deletus est.",
-    "The time limit of this file has expired.": "",
-    "Password protection": "Tesserae praesidium",
-    "Give the password of this file": "",
-    "Access denied": "Aditus prohibitus",
-    "You are about to download": "",
-    "By using our services, you accept our": "",
-    "Terms of Service": "",
-    "Warning, this file will self-destruct after being read": "",
-    "Internal error during file creation.": "",
-    "This file was generated by the install process. You can edit it. Please see config.original.php to understand the configuration items.": "",
-    "The following directory could not be created": "",
-    "You should create this directory manually.": "",
-    "The following directory is not writable": "",
-    "You should give the write permission to the web server on this directory.": "",
-    "Here is a solution": "Ecce solutio",
-    "The local configuration file could not be created. Create a <code>lib/config.local.php</code> file and give the write permission to the web server (preferred solution), or give the write permission to the web server on the <code>lib</code> directory.": "",
-    "The local configuration is not writable by the web server. Give the write permission to the web server on the '<code>lib/config.local.php</code> file.": "",
-    "Installation of Jirafeau": "Jirafeaui institutio",
-    "step": "gradus",
-    "out of": "ex",
-    "Administration password": "",
-    "Finalisation": "",
-    "Jirafeau is setting the website according to the configuration you provided.": "",
-    "Previous step": "Superiore gradus",
-    "Retry this step": "",
-    "Jirafeau is now fully operational": "",
-    "Information": "Informatio",
-    "The base address of Jirafeau is the first part of the URL, until (and including) the last slash. For example: \"http://www.example.com/\". Do not forget the trailing slash!": "",
-    "Base address": "",
-    "The data directory is where your files and information about your files will be stored. You should put it outside your web site, or at least restrict the access to this directory. Do not forget the trailing slash!": "",
-    "Data directory": "",
-    "Jirafeau is internationalised. Choose a specific langage or choose Automatic (langage is provided by user's browser).": "",
-    "Choose the default language": "",
-    "Next step": "Gradus postera",
-    "Jirafeau has an administration interface (through admin.php). You can set a password to access the interface or leave it empty to disable the interface.": "",
-    "Sorry, the admin interface is not enabled.": "",
-    "Sorry, you are not authenticated on admin interface.": "",
-    "Login": "",
-    "Wrong password.": "",
-    "Admin interface": "",
-    "Clean expired files": "",
-    "Clean old unfinished transfers": "",
-    "Clean": "",
-    "Search files by name": "",
-    "Search": "Quaero",
-    "List all files": "",
-    "List": "Index",
-    "Actions": "Actiones",
-    "Search files by file hash": "",
-    "Search a specific link": "",
-    "Number of cleaned files": "",
-    "Logout": "",
-    "You are now loggued out": "",
-    "Link deleted": "",
-    "Filename": "",
-    "file": "filum",
-    "link": "",
-    "Type": "Genus",
-    "Size": "Dimensio",
-    "Expire": "",
-    "Onetime": "",
-    "Upload date": "",
-    "Origin": "Origo",
-    "Action": "Actio",
-    "Del link": "",
-    "Del file and links": "",
-    "Deleted links": "",
-    "year": "annus",
-    "day": "dies",
-    "minute": "",
-    "hour": "",
-    "second": "",
-    "less than a second": ""
+    "JI_WEB_RE": "Jirafeau, web filibus depositum tuum",
+    "SEL_FILE": "Selegi filum",
+    "SEND": "Mittere",
+    "UP": "Mittens ...",
+    "ONE_TIME_DL": "",
+    "PSW": "Tessera",
+    "TIME_LIM": "Tempori limes",
+    "MAX_FILE_SIZE": "Maxima filo dimensio",
+    "POWERED_BY": "alimentato per Open-Source libelo Jirafeau",
+    "MADE_WITH": "Factum cum",
+    "JI_PROJECT": "Jirafeau Commisso",
+    "1_MIN": "Unum minutum",
+    "1_H": "Una hora",
+    "1_D": "Uno die",
+    "1_W": "Una hebdomada",
+    "1_M": "Unus mensis",
+    "1_Q": "Una quarta",
+    "1_Y": "Unus annus",
+    "NONE": "Nullum",
+    "UP_PSW": "Mitte tesseram",
+    "2_BIG": "Filum nimis magnus est",
+    "FILE_LIM": "Filo dimensioni limes est",
+    "FILE_DIR_W": "",
+    "LINK_DIR_W": "",
+    "ASYNC_DIR_W": "",
+    "INSTALL_SCRIPT_HERE": "",
+    "ERR_OCC": "Error occurit.",
+    "FILE_UP": "",
+    "DL_PAGE": "",
+    "VALID_UNTIL": "",
+    "VIEW_LINK": "Spectate ligaminem",
+    "DIRECT_DL": "",
+    "DELETE_LINK": "Delete ligaminem",
+    "DL": "Extrahete",
+    "PREVIEW": "Praespectate",
+    "FILE_404": "",
+    "FILE_NOT_AVAIL": "Filum non praesto est.",
+    "CONFIRM_DEL": "",
+    "GONNA_DEL": "",
+    "DELETE": "Delere",
+    "FILE_DELETED": "Filum deletus est.",
+    "FILE_EXPIRED": "",
+    "PSW_PROTEC": "Tesserae praesidium",
+    "GIMME_PSW": "",
+    "ACCESS_KO": "Aditus prohibitus",
+    "NOW_DOWNLOADING": "",
+    "USING_SERIVCE": "",
+    "TOS": "",
+    "AUTO_DESTRUCT": "",
+    "INTERNAL_ERROR_DEL": "",
+    "CONF_AUTOGEN_COMMENT": "",
+    "CANNOT_CREATE_DIR": "",
+    "MANUAL_CREATE": "",
+    "DIR_NOT_W": "",
+    "GIMME_W": "",
+    "HERE_SOLUTION": "Ecce solutio",
+    "CONF_SOLUTION": "",
+    "CONF_SOLUTION_2": "",
+    "JI_INSTALL": "Jirafeaui institutio",
+    "STEP": "gradus",
+    "OUT_OF": "ex",
+    "ADMIN_PSW": "",
+    "FINALIZATION": "",
+    "SETTING_UP": "",
+    "PREV_STEP": "Superiore gradus",
+    "RETRY_STEP": "",
+    "JI_FONCTIONAL": "",
+    "INFO": "Informatio",
+    "BASE_ADDR_INFO": "",
+    "BASE_ADDR": "",
+    "DATA_DIR_EXPLAINATION": "",
+    "DATA_DIR": "",
+    "JI_HAZ_LANGAGES": "",
+    "DEF_LANGUAGE": "",
+    "NEXT_STEP": "Gradus postera",
+    "ADMIN_INTERFACE_INFO": "",
+    "NO_ADMIN": "",
+    "NO_ADMIN_AUTH": "",
+    "LOGIN": "",
+    "BAD_PSW": "",
+    "ADMIN_INTERFACE": "",
+    "CLEAN_EXPIRED": "",
+    "CLEAN_INCOMPLETE": "",
+    "CLEAN": "",
+    "SEARCH_NAME": "",
+    "SEARCH": "Quaero",
+    "LS_FILES": "",
+    "LIST": "Index",
+    "ACTIONS": "Actiones",
+    "SEARH_BY_HASH": "",
+    "SEARCH_LINK": "",
+    "CLEANED_FILES_CNT": "",
+    "LOGOUT": "",
+    "NOW_LOGOUT": "",
+    "LINK_DELETED": "",
+    "FILENAME": "",
+    "FILE": "filum",
+    "LINK": "",
+    "TYPE": "Genus",
+    "SIZE": "Dimensio",
+    "EXPIRE": "",
+    "ONETIME": "",
+    "UPLOAD_DATE": "",
+    "ORIGIN": "Origo",
+    "ACTION": "Actio",
+    "DEL_LINK": "",
+    "DEL_FILE_LINKS": "",
+    "DELETED_LINKS": "",
+    "YEAR": "annus",
+    "DAY": "dies",
+    "MINUTE": "",
+    "HOUR": "",
+    "SECOND": "",
+    "LESS_1_SEC": ""
 }
index b0729d0fa551d75c5ec97999e962ca07233ebdcf..6e5c26115e4d62eabd3b367ce3c1493d3fdf73ad 100644 (file)
 {
-    "Jirafeau, your web file repository": "",
-    "Select a file": "",
-    "Send": "",
-    "Uploading ...": "",
-    "One time download": "",
-    "Password": "",
-    "Time limit": "",
-    "Maximum file size": "",
-    "powered by Open-Source project Jirafeau": "",
-    "Made with": "",
-    "Jirafeau Project": "",
-    "One minute": "",
-    "One hour": "",
-    "One day": "",
-    "One week": "",
-    "One month": "",
-    "One quarter": "",
-    "One year": "",
-    "None": "",
-    "Upload password": "",
-    "File is too big": "",
-    "File size is limited to": "",
-    "The file directory is not writable": "",
-    "The link directory is not writable": "",
-    "The async directory is not writable!": "",
-    "Installer script still present": "",
-    "Please make sure to delete the installer script \"install.php\" before continuing.": "",
-    "An error occurred.": "",
-    "File uploaded !": "",
-    "Download page": "",
-    "This file is valid until the following date": "",
-    "View link": "",
-    "Direct download link": "",
-    "Delete link": "",
-    "Download": "",
-    "Preview": "",
-    "Sorry, the requested file is not found": "",
-    "File not available.": "",
-    "File has been deleted.": "",
-    "The time limit of this file has expired.": "",
-    "Password protection": "",
-    "Give the password of this file": "",
-    "Access denied": "",
-    "You are about to download": "",
-    "By using our services, you accept our": "",
-    "Terms of Service": "",
-    "Warning, this file will self-destruct after being read": "",
-    "Internal error during file creation.": "",
-
-    "This file was generated by the install process. You can edit it. Please see config.original.php to understand the configuration items.": "",
-    "The following directory could not be created": "",
-    "You should create this directory manually.": "",
-    "The following directory is not writable": "",
-    "You should give the write permission to the web server on this directory.": "",
-    "Here is a solution": "",
-    "The local configuration file could not be created. Create a <code>lib/config.local.php</code> file and give the write permission to the web server (preferred solution), or give the write permission to the web server on the <code>lib</code> directory.": "",
-    "The local configuration is not writable by the web server. Give the write permission to the web server on the '<code>lib/config.local.php</code> file.": "",
-    "Installation of Jirafeau": "",
-    "step": "",
-    "out of": "",
-    "Administration password": "",
-    "Finalisation": "",
-    "Jirafeau is setting the website according to the configuration you provided.": "",
-    "Previous step": "",
-    "Retry this step": "",
-    "Jirafeau is now fully operational": "",
-    "Information": "",
-    "The base address of Jirafeau is the first part of the URL, until (and including) the last slash. For example: \"http://www.example.com/\". Do not forget the trailing slash!": "",
-    "Base address": "",
-    "The data directory is where your files and information about your files will be stored. You should put it outside your web site, or at least restrict the access to this directory. Do not forget the trailing slash!": "",
-    "Data directory": "",
-    "Jirafeau is internationalised. Choose a specific langage or choose Automatic (langage is provided by user's browser).": "",
-    "Choose the default language": "",
-    "Next step": "",
-    "Jirafeau has an administration interface (through admin.php). You can set a password to access the interface or leave it empty to disable the interface.": "",
-    "Administration password": "",
-
-    "Sorry, the admin interface is not enabled.": "",
-    "Sorry, you are not authenticated on admin interface.": "",
-    "Login": "",
-    "Wrong password.": "",
-    "Admin interface": "",
-    "Clean expired files": "",
-    "Clean old unfinished transfers": "",
-    "Clean": "",
-    "Search files by name": "",
-    "Search": "",
-    "List all files": "",
-    "List": "",
-    "Actions": "",
-    "Search files by file hash": "",
-    "Search a specific link": "",
-    "Number of cleaned files": "",
-    "Logout": "",
-    "You are now loggued out": "",
-    "Link deleted": "",
-    "Filename": "",
-    "file": "",
-    "link": "",
-    "Type": "",
-    "Size": "",
-    "Expire": "",
-    "Onetime": "",
-    "Upload date": "",
-    "Origin": "",
-    "Action": "",
-    "Del link": "",
-    "Del file and links": "",
-    "Deleted links": "",
-    "year": "",
-    "day": "",
-    "minute": "",
-    "hour": "",
-    "second": "",
-    "less than a second": ""
+    "JI_WEB_RE": "",
+    "SEL_FILE": "",
+    "SEND": "",
+    "UP": "",
+    "ONE_TIME_DL": "",
+    "PSW": "",
+    "TIME_LIM": "",
+    "MAX_FILE_SIZE": "",
+    "POWERED_BY": "",
+    "MADE_WITH": "",
+    "JI_PROJECT": "",
+    "1_MIN": "",
+    "1_H": "",
+    "1_D": "",
+    "1_W": "",
+    "1_M": "",
+    "1_Q": "",
+    "1_Y": "",
+    "NONE": "",
+    "UP_PSW": "",
+    "2_BIG": "",
+    "FILE_LIM": "",
+    "FILE_DIR_W": "",
+    "LINK_DIR_W": "",
+    "ASYNC_DIR_W": "",
+    "INSTALL_SCRIPT_HERE": "",
+    "ERR_OCC": "",
+    "FILE_UP": "",
+    "DL_PAGE": "",
+    "VALID_UNTIL": "",
+    "VIEW_LINK": "",
+    "DIRECT_DL": "",
+    "DELETE_LINK": "",
+    "DL": "",
+    "PREVIEW": "",
+    "FILE_404": "",
+    "FILE_NOT_AVAIL": "",
+    "FILE_DELETED": "",
+    "FILE_EXPIRED": "",
+    "PSW_PROTEC": "",
+    "GIMME_PSW": "",
+    "ACCESS_KO": "",
+    "NOW_DOWNLOADING": "",
+    "USING_SERIVCE": "",
+    "TOS": "",
+    "AUTO_DESTRUCT": "",
+    "INTERNAL_ERROR_DEL": "",
+    "CONF_AUTOGEN_COMMENT": "",
+    "CANNOT_CREATE_DIR": "",
+    "MANUAL_CREATE": "",
+    "DIR_NOT_W": "",
+    "GIMME_W": "",
+    "HERE_SOLUTION": "",
+    "CONF_SOLUTION": "",
+    "CONF_SOLUTION_2": "",
+    "JI_INSTALL": "",
+    "STEP": "",
+    "OUT_OF": "",
+    "ADMIN_PSW": "",
+    "FINALIZATION": "",
+    "SETTING_UP": "",
+    "PREV_STEP": "",
+    "RETRY_STEP": "",
+    "JI_FONCTIONAL": "",
+    "INFO": "",
+    "BASE_ADDR_INFO": "",
+    "BASE_ADDR": "",
+    "DATA_DIR_EXPLAINATION": "",
+    "DATA_DIR": "",
+    "JI_HAZ_LANGAGES": "",
+    "DEF_LANGUAGE": "",
+    "NEXT_STEP": "",
+    "ADMIN_INTERFACE_INFO": "",
+    "NO_ADMIN": "",
+    "NO_ADMIN_AUTH": "",
+    "LOGIN": "",
+    "BAD_PSW": "",
+    "ADMIN_INTERFACE": "",
+    "CLEAN_EXPIRED": "",
+    "CLEAN_INCOMPLETE": "",
+    "CLEAN": "",
+    "SEARCH_NAME": "",
+    "SEARCH": "",
+    "LS_FILES": "",
+    "LIST": "",
+    "ACTIONS": "",
+    "SEARH_BY_HASH": "",
+    "SEARCH_LINK": "",
+    "CLEANED_FILES_CNT": "",
+    "LOGOUT": "",
+    "NOW_LOGOUT": "",
+    "LINK_DELETED": "",
+    "FILENAME": "",
+    "FILE": "",
+    "LINK": "",
+    "TYPE": "",
+    "SIZE": "",
+    "EXPIRE": "",
+    "ONETIME": "",
+    "UPLOAD_DATE": "",
+    "ORIGIN": "",
+    "ACTION": "",
+    "DEL_LINK": "",
+    "DEL_FILE_LINKS": "",
+    "DELETED_LINKS": "",
+    "YEAR": "",
+    "DAY": "",
+    "MINUTE": "",
+    "HOUR": "",
+    "SECOND": "",
+    "LESS_1_SEC": ""
 }
index b0729d0fa551d75c5ec97999e962ca07233ebdcf..7139bb86b08abd424d86ca1a0ee1f3b0380a4f0c 100644 (file)
 {
-    "Jirafeau, your web file repository": "",
-    "Select a file": "",
-    "Send": "",
-    "Uploading ...": "",
-    "One time download": "",
-    "Password": "",
-    "Time limit": "",
-    "Maximum file size": "",
-    "powered by Open-Source project Jirafeau": "",
-    "Made with": "",
-    "Jirafeau Project": "",
-    "One minute": "",
-    "One hour": "",
-    "One day": "",
-    "One week": "",
-    "One month": "",
-    "One quarter": "",
-    "One year": "",
-    "None": "",
-    "Upload password": "",
-    "File is too big": "",
-    "File size is limited to": "",
-    "The file directory is not writable": "",
-    "The link directory is not writable": "",
-    "The async directory is not writable!": "",
-    "Installer script still present": "",
-    "Please make sure to delete the installer script \"install.php\" before continuing.": "",
-    "An error occurred.": "",
-    "File uploaded !": "",
-    "Download page": "",
-    "This file is valid until the following date": "",
-    "View link": "",
-    "Direct download link": "",
-    "Delete link": "",
-    "Download": "",
-    "Preview": "",
-    "Sorry, the requested file is not found": "",
-    "File not available.": "",
-    "File has been deleted.": "",
-    "The time limit of this file has expired.": "",
-    "Password protection": "",
-    "Give the password of this file": "",
-    "Access denied": "",
-    "You are about to download": "",
-    "By using our services, you accept our": "",
-    "Terms of Service": "",
-    "Warning, this file will self-destruct after being read": "",
-    "Internal error during file creation.": "",
+    "JI_WEB_RE": "",
+    "SEL_FILE": "",
+    "SEND": "",
+    "UP": "",
+    "ONE_TIME_DL": "",
+    "PSW": "",
+    "TIME_LIM": "",
+    "MAX_FILE_SIZE": "",
+    "POWERED_BY": "",
+    "MADE_WITH": "",
+    "JI_PROJECT": "",
+    "1_MIN": "",
+    "1_H": "",
+    "1_D": "",
+    "1_W": "",
+    "1_M": "",
+    "1_Q": "",
+    "1_Y": "",
+    "NONE": "",
+    "UP_PSW": "",
+    "2_BIG": "",
+    "FILE_LIM": "",
+    "FILE_DIR_W": "",
+    "LINK_DIR_W": "",
+    "ASYNC_DIR_W": "",
+    "INSTALL_SCRIPT_HERE": "",
+    "ERR_OCC": "",
+    "FILE_UP": "",
+    "DL_PAGE": "",
+    "VALID_UNTIL": "",
+    "VIEW_LINK": "",
+    "DIRECT_DL": "",
+    "DELETE_LINK": "",
+    "DL": "",
+    "PREVIEW": "",
+    "FILE_404": "",
+    "FILE_NOT_AVAIL": "",
+    "FILE_DELETED": "",
+    "FILE_EXPIRED": "",
+    "PSW_PROTEC": "",
+    "GIMME_PSW": "",
+    "ACCESS_KO": "",
+    "NOW_DOWNLOADING": "",
+    "USING_SERIVCE": "",
+    "TOS": "",
+    "AUTO_DESTRUCT": "",
+    "INTERNAL_ERROR_DEL": "",
+    "CONF_AUTOGEN_COMMENT": "",
+    "CANNOT_CREATE_DIR": "",
+    "MANUAL_CREATE": "",
+    "DIR_NOT_W": "",
+    "GIMME_W": "",
+    "HERE_SOLUTION": "",
+    "CONF_SOLUTION": "",
+    "CONF_SOLUTION_2": "",
+    "JI_INSTALL": "",
+    "STEP": "",
+    "OUT_OF": "",
+    "FINALIZATION": "",
+    "SETTING_UP": "",
+    "PREV_STEP": "",
+    "RETRY_STEP": "",
+    "JI_FONCTIONAL": "",
+    "INFO": "",
+    "BASE_ADDR_INFO": "",
+    "BASE_ADDR": "",
+    "DATA_DIR_EXPLAINATION": "",
+    "DATA_DIR": "",
+    "JI_HAZ_LANGAGES": "",
+    "DEF_LANGUAGE": "",
+    "NEXT_STEP": "",
+    "ADMIN_INTERFACE_INFO": "",
+    "ADMIN_PSW": "",
 
-    "This file was generated by the install process. You can edit it. Please see config.original.php to understand the configuration items.": "",
-    "The following directory could not be created": "",
-    "You should create this directory manually.": "",
-    "The following directory is not writable": "",
-    "You should give the write permission to the web server on this directory.": "",
-    "Here is a solution": "",
-    "The local configuration file could not be created. Create a <code>lib/config.local.php</code> file and give the write permission to the web server (preferred solution), or give the write permission to the web server on the <code>lib</code> directory.": "",
-    "The local configuration is not writable by the web server. Give the write permission to the web server on the '<code>lib/config.local.php</code> file.": "",
-    "Installation of Jirafeau": "",
-    "step": "",
-    "out of": "",
-    "Administration password": "",
-    "Finalisation": "",
-    "Jirafeau is setting the website according to the configuration you provided.": "",
-    "Previous step": "",
-    "Retry this step": "",
-    "Jirafeau is now fully operational": "",
-    "Information": "",
-    "The base address of Jirafeau is the first part of the URL, until (and including) the last slash. For example: \"http://www.example.com/\". Do not forget the trailing slash!": "",
-    "Base address": "",
-    "The data directory is where your files and information about your files will be stored. You should put it outside your web site, or at least restrict the access to this directory. Do not forget the trailing slash!": "",
-    "Data directory": "",
-    "Jirafeau is internationalised. Choose a specific langage or choose Automatic (langage is provided by user's browser).": "",
-    "Choose the default language": "",
-    "Next step": "",
-    "Jirafeau has an administration interface (through admin.php). You can set a password to access the interface or leave it empty to disable the interface.": "",
-    "Administration password": "",
-
-    "Sorry, the admin interface is not enabled.": "",
-    "Sorry, you are not authenticated on admin interface.": "",
-    "Login": "",
-    "Wrong password.": "",
-    "Admin interface": "",
-    "Clean expired files": "",
-    "Clean old unfinished transfers": "",
-    "Clean": "",
-    "Search files by name": "",
-    "Search": "",
-    "List all files": "",
-    "List": "",
-    "Actions": "",
-    "Search files by file hash": "",
-    "Search a specific link": "",
-    "Number of cleaned files": "",
-    "Logout": "",
-    "You are now loggued out": "",
-    "Link deleted": "",
-    "Filename": "",
-    "file": "",
-    "link": "",
-    "Type": "",
-    "Size": "",
-    "Expire": "",
-    "Onetime": "",
-    "Upload date": "",
-    "Origin": "",
-    "Action": "",
-    "Del link": "",
-    "Del file and links": "",
-    "Deleted links": "",
-    "year": "",
-    "day": "",
-    "minute": "",
-    "hour": "",
-    "second": "",
-    "less than a second": ""
+    "NO_ADMIN": "",
+    "NO_ADMIN_AUTH": "",
+    "LOGIN": "",
+    "BAD_PSW": "",
+    "ADMIN_INTERFACE": "",
+    "CLEAN_EXPIRED": "",
+    "CLEAN_INCOMPLETE": "",
+    "CLEAN": "",
+    "SEARCH_NAME": "",
+    "SEARCH": "",
+    "LS_FILES": "",
+    "LIST": "",
+    "ACTIONS": "",
+    "SEARH_BY_HASH": "",
+    "SEARCH_LINK": "",
+    "CLEANED_FILES_CNT": "",
+    "LOGOUT": "",
+    "NOW_LOGOUT": "",
+    "LINK_DELETED": "",
+    "FILENAME": "",
+    "FILE": "",
+    "LINK": "",
+    "TYPE": "",
+    "SIZE": "",
+    "EXPIRE": "",
+    "ONETIME": "",
+    "UPLOAD_DATE": "",
+    "ORIGIN": "",
+    "ACTION": "",
+    "DEL_LINK": "",
+    "DEL_FILE_LINKS": "",
+    "DELETED_LINKS": "",
+    "YEAR": "",
+    "DAY": "",
+    "MINUTE": "",
+    "HOUR": "",
+    "SECOND": "",
+    "LESS_1_SEC": ""
 }
index cea537ff4f4a38de82a0a1f7597882d4e976fe42..3319d534e0fe66c764886596c84f51f3eadadc4a 100644 (file)
 {
-    "Jirafeau, your web file repository": "Jirafeau, din vevfilpakkebrønn",
-    "Select a file": "Velg ei fil",
-    "Send": "Send",
-    "Uploading ...": "Laster opp…",
-    "One time download": "Éngangsnedlasting",
-    "Password": "Passord",
-    "Time limit": "Tidsgrense",
-    "Maximum file size": "Maksimal filstørrelse",
-    "powered by Open-Source project Jirafeau": "drevet av friprogprosjektet Jirafeau",
-    "Made with": "Laget med",
-    "Jirafeau Project": "Jirafeau-prosjektet",
-    "One minute": "Ett minutt",
-    "One hour": "Én time",
-    "One day": "Én dag",
-    "One week": "Ei uke",
-    "One month": "Én måned",
-    "One quarter": "Ett kvartal",
-    "One year": "Ett år",
-    "None": "Ingen",
-    "Upload password": "Last opp passord",
-    "File is too big": "Fila er for stor",
-    "File size is limited to": "Filstørrelse begrenset til",
-    "The file directory is not writable": "Filmappen er ikke skrivbar",
-    "The link directory is not writable": "Lenkemappen er ikke skrivbar",
-    "The async directory is not writable!": "Asynkmappen er ikke skrivbar!",
-    "Installer script still present": "Installasjonsskriptet er der enda",
-    "Please make sure to delete the installer script \"install.php\" before continuing.": "Slett installasjonsskriptet \"install.php\" før du fortsetter.",
-    "An error occurred.": "En feil inntraff.",
-    "File uploaded !": "Fil opplastet",
-    "Download page": "Nedlastingsside",
-    "This file is valid until the following date": "Filen er gyldig til følgende dato",
-    "View link": "Vis lenke",
-    "Direct download link": "Direkte nedlastingslenke",
-    "Delete link": "Slett lenke",
-    "Download": "Last ned",
-    "Preview": "Forhåndsvis",
-    "Sorry, the requested file is not found": "Beklager, forespurt fil finnes ikke",
-    "File not available.": "Fila er ikke tilgjengelig.",
-    "Confirm deletion": "Bekreft sletting",
-    "You are about to delete": "Du er i ferd med å slette",
-    "Delete": "Slett",
-    "File has been deleted.": "Fila har blitt slettet.",
-    "The time limit of this file has expired.": "Tidsgrensen for denne fila har utløpt.",
-    "Password protection": "Passordbeskyttelse",
-    "Give the password of this file": "Angi passordet for denne fila",
-    "Access denied": "Tilgang nektet",
-    "You are about to download": "Du er i ferd med å laste ned",
-    "By using our services, you accept our": "Ved å bruke tjenestene våre, godtar du",
-    "Terms of Service": "Tjenestevilkårene",
-    "Warning, this file will self-destruct after being read": "Advarsel, denne fila vil bli slettet etter at den er lest",
-    "Internal error during file creation.": "Intern fil under filopprettelse.",
-    "This file was generated by the install process. You can edit it. Please see config.original.php to understand the configuration items.": "Denne fila ble opprettet av installasjonsprosessen. Du kan redigere den. Se config.original.php for å forstå oppsettselementene.",
-    "The following directory could not be created": "Følgende mappe kunne ikke opprettes",
-    "You should create this directory manually.": "Du burde opprette denne mappen manuelt.",
-    "The following directory is not writable": "Følgende mappe er ikke skrivbar",
-    "You should give the write permission to the web server on this directory.": "Du burde gi skrivetilgang til vevtjeneren i denne mappen.",
-    "Here is a solution": "Her er løsningen",
-    "The local configuration file could not be created. Create a <code>lib/config.local.php</code> file and give the write permission to the web server (preferred solution), or give the write permission to the web server on the <code>lib</code> directory.": "Den lokale oppsettsfila kunne ikke opprettes. Opprett ei <code>lib/config.local.php</code>-fil og gi vevtjeneren skrivetilgang til den (foretrukket løsning), eller gi skrivetilgang til vevtjeneren på hele <code>lib</code>mappa.",
-    "The local configuration is not writable by the web server. Give the write permission to the web server on the '<code>lib/config.local.php</code> file.": "Det lokale oppsettes kan ikke endres av vevtjeneren. Gi skrivetilgang til vevtjeneren for skriving til <code>lib/config.local.php</code>-fila.",
-    "Installation of Jirafeau": "Installasjon av Jirafeau",
-    "step": "steg",
-    "out of": "av",
-    "Administration password": "Administrasjonspassord",
-    "Finalisation": "Fullføring",
-    "Jirafeau is setting the website according to the configuration you provided.": "Jirefeau setter opp nettsiden i henhold til oppsettet du angav.",
-    "Previous step": "Forrige steg",
-    "Retry this step": "Gjenta dette steget",
-    "Jirafeau is now fully operational": "Jirafeau er nå fullt operativt",
-    "Information": "Informasjon",
-    "The base address of Jirafeau is the first part of the URL, until (and including) the last slash. For example: \"http://www.example.com/\". Do not forget the trailing slash!": "Basisadressen til Jirafeau er første den av nettadressen, til (og innbefattet) siste skråstrek. For eksempel: \"http://www.eksempel.no/\". Ikke glem den etterfølgende skråstreken!",
-    "Base address": "Basisadresse",
-    "The data directory is where your files and information about your files will be stored. You should put it outside your web site, or at least restrict the access to this directory. Do not forget the trailing slash!": "Datamappen er der filer og informasjon om filene dine blir lagret. Du burde legge den utenfor din nettside, eller i det minste begrense tilgang til denne mappen. Ikke glem den etterfølgende skråstreken!",
-    "Data directory": "Datamappe",
-    "Jirafeau is internationalised. Choose a specific langage or choose Automatic (langage is provided by user's browser).": "Jirafeau lar deg velge språk eller bruke automatisk forvalg (språk innstilt i brukerens nettleser).",
-    "Choose the default language": "Endre forvalgt språk",
-    "Next step": "Neste steg",
-    "Jirafeau has an administration interface (through admin.php). You can set a password to access the interface or leave it empty to disable the interface.": "Jirafeau har et administrasjonsgrensesnitt (gjennom admin.php). Du kan sette et passord for tilgang til grensesnittet, eller la det stå tomt for å skru det av.",
-    "Sorry, the admin interface is not enabled.": "Administrasjonsgrensesnittet er ikke påslått.",
-    "Sorry, you are not authenticated on admin interface.": "Du er ikke autentisert på administrasjonsgrensesnittet.",
-    "Login": "Logg inn",
-    "Wrong password.": "Galt passord.",
-    "Admin interface": "Administrasjonsgrensesnitt",
-    "Clean expired files": "Tøm utløpte filer",
-    "Clean old unfinished transfers": "Tøm gamle ufullførte overføringer",
-    "Clean": "Tøm",
-    "Search files by name": "Søk etter filer etter navn",
-    "Search": "Søk",
-    "List all files": "List opp alle filer",
-    "List": "List opp",
-    "Actions": "Handlinger",
-    "Search files by file hash": "Søk etter filer etter sjekksum",
-    "Search a specific link": "Søk etter en spesifikk lenke",
-    "Number of cleaned files": "Antall tømte filer",
-    "Logout": "Logg ut",
-    "You are now loggued out": "Du er nå utlogget",
-    "Link deleted": "Lenke slettet",
-    "Filename": "Filnavn",
-    "file": "fil",
-    "link": "lenke",
-    "Type": "Type",
-    "Size": "Størrelse",
-    "Expire": "Utløper",
-    "Onetime": "Engangs",
-    "Upload date": "Opplastingsdato",
-    "Origin": "Opprinnelse",
-    "Action": "Handling",
-    "Del link": "Slett lenke",
-    "Del file and links": "Slett fil og lenker",
-    "Deleted links": "Slettede lenker",
-    "year": "år",
-    "day": "dag",
-    "minute": "minutt",
-    "hour": "time",
-    "second": "sekund",
-    "less than a second": "mindre enn ett sekund"
+    "JI_WEB_RE": "Jirafeau, din vevfilpakkebrønn",
+    "SEL_FILE": "Velg ei fil",
+    "SEND": "Send",
+    "UP": "Laster opp…",
+    "ONE_TIME_DL": "Éngangsnedlasting",
+    "PSW": "Passord",
+    "TIME_LIM": "Tidsgrense",
+    "MAX_FILE_SIZE": "Maksimal filstørrelse",
+    "POWERED_BY": "drevet av friprogprosjektet Jirafeau",
+    "MADE_WITH": "Laget med",
+    "JI_PROJECT": "Jirafeau-prosjektet",
+    "1_MIN": "Ett minutt",
+    "1_H": "Én time",
+    "1_D": "Én dag",
+    "1_W": "Ei uke",
+    "1_M": "Én måned",
+    "1_Q": "Ett kvartal",
+    "1_Y": "Ett år",
+    "NONE": "Ingen",
+    "UP_PSW": "Last opp passord",
+    "2_BIG": "Fila er for stor",
+    "FILE_LIM": "Filstørrelse begrenset til",
+    "FILE_DIR_W": "Filmappen er ikke skrivbar",
+    "LINK_DIR_W": "Lenkemappen er ikke skrivbar",
+    "ASYNC_DIR_W": "Asynkmappen er ikke skrivbar!",
+    "INSTALL_SCRIPT_HERE": "Installasjonsskriptet er der enda",
+    "ERR_OCC": "En feil inntraff.",
+    "FILE_UP": "Fil opplastet",
+    "DL_PAGE": "Nedlastingsside",
+    "VALID_UNTIL": "Filen er gyldig til følgende dato",
+    "VIEW_LINK": "Vis lenke",
+    "DIRECT_DL": "Direkte nedlastingslenke",
+    "DELETE_LINK": "Slett lenke",
+    "DL": "Last ned",
+    "PREVIEW": "Forhåndsvis",
+    "FILE_404": "Beklager, forespurt fil finnes ikke",
+    "FILE_NOT_AVAIL": "Fila er ikke tilgjengelig.",
+    "CONFIRM_DEL": "Bekreft sletting",
+    "GONNA_DEL": "Du er i ferd med å slette",
+    "DELETE": "Slett",
+    "FILE_DELETED": "Fila har blitt slettet.",
+    "FILE_EXPIRED": "Tidsgrensen for denne fila har utløpt.",
+    "PSW_PROTEC": "Passordbeskyttelse",
+    "GIMME_PSW": "Angi passordet for denne fila",
+    "ACCESS_KO": "Tilgang nektet",
+    "NOW_DOWNLOADING": "Du er i ferd med å laste ned",
+    "USING_SERIVCE": "Ved å bruke tjenestene våre, godtar du",
+    "TOS": "Tjenestevilkårene",
+    "AUTO_DESTRUCT": "Advarsel, denne fila vil bli slettet etter at den er lest",
+    "INTERNAL_ERROR_DEL": "Intern fil under filopprettelse.",
+    "CONF_AUTOGEN_COMMENT": "Denne fila ble opprettet av installasjonsprosessen. Du kan redigere den. Se config.original.php for å forstå oppsettselementene.",
+    "CANNOT_CREATE_DIR": "Følgende mappe kunne ikke opprettes",
+    "MANUAL_CREATE": "Du burde opprette denne mappen manuelt.",
+    "DIR_NOT_W": "Følgende mappe er ikke skrivbar",
+    "GIMME_W": "Du burde gi skrivetilgang til vevtjeneren i denne mappen.",
+    "HERE_SOLUTION": "Her er løsningen",
+    "CONF_SOLUTION": "Den lokale oppsettsfila kunne ikke opprettes. Opprett ei <code>lib/config.local.php</code>-fil og gi vevtjeneren skrivetilgang til den (foretrukket løsning), eller gi skrivetilgang til vevtjeneren på hele <code>lib</code>mappa.",
+    "CONF_SOLUTION_2": "Det lokale oppsettes kan ikke endres av vevtjeneren. Gi skrivetilgang til vevtjeneren for skriving til <code>lib/config.local.php</code>-fila.",
+    "JI_INSTALL": "Installasjon av Jirafeau",
+    "STEP": "steg",
+    "OUT_OF": "av",
+    "ADMIN_PSW": "Administrasjonspassord",
+    "FINALIZATION": "Fullføring",
+    "SETTING_UP": "Jirefeau setter opp nettsiden i henhold til oppsettet du angav.",
+    "PREV_STEP": "Forrige steg",
+    "RETRY_STEP": "Gjenta dette steget",
+    "JI_FONCTIONAL": "Jirafeau er nå fullt operativt",
+    "INFO": "Informasjon",
+    "BASE_ADDR_INFO": "Basisadressen til Jirafeau er første den av nettadressen, til (og innbefattet) siste skråstrek. For eksempel: \"http://www.eksempel.no/\". Ikke glem den etterfølgende skråstreken!",
+    "BASE_ADDR": "Basisadresse",
+    "DATA_DIR_EXPLAINATION": "Datamappen er der filer og informasjon om filene dine blir lagret. Du burde legge den utenfor din nettside, eller i det minste begrense tilgang til denne mappen. Ikke glem den etterfølgende skråstreken!",
+    "DATA_DIR": "Datamappe",
+    "JI_HAZ_LANGAGES": "Jirafeau lar deg velge språk eller bruke automatisk forvalg (språk innstilt i brukerens nettleser).",
+    "DEF_LANGUAGE": "Endre forvalgt språk",
+    "NEXT_STEP": "Neste steg",
+    "ADMIN_INTERFACE_INFO": "Jirafeau har et administrasjonsgrensesnitt (gjennom admin.php). Du kan sette et passord for tilgang til grensesnittet, eller la det stå tomt for å skru det av.",
+    "NO_ADMIN": "Administrasjonsgrensesnittet er ikke påslått.",
+    "NO_ADMIN_AUTH": "Du er ikke autentisert på administrasjonsgrensesnittet.",
+    "LOGIN": "Logg inn",
+    "BAD_PSW": "Galt passord.",
+    "ADMIN_INTERFACE": "Administrasjonsgrensesnitt",
+    "CLEAN_EXPIRED": "Tøm utløpte filer",
+    "CLEAN_INCOMPLETE": "Tøm gamle ufullførte overføringer",
+    "CLEAN": "Tøm",
+    "SEARCH_NAME": "Søk etter filer etter navn",
+    "SEARCH": "Søk",
+    "LS_FILES": "List opp alle filer",
+    "LIST": "List opp",
+    "ACTIONS": "Handlinger",
+    "SEARH_BY_HASH": "Søk etter filer etter sjekksum",
+    "SEARCH_LINK": "Søk etter en spesifikk lenke",
+    "CLEANED_FILES_CNT": "Antall tømte filer",
+    "LOGOUT": "Logg ut",
+    "NOW_LOGOUT": "Du er nå utlogget",
+    "LINK_DELETED": "Lenke slettet",
+    "FILENAME": "Filnavn",
+    "FILE": "fil",
+    "LINK": "lenke",
+    "TYPE": "Type",
+    "SIZE": "Størrelse",
+    "EXPIRE": "Utløper",
+    "ONETIME": "Engangs",
+    "UPLOAD_DATE": "Opplastingsdato",
+    "ORIGIN": "Opprinnelse",
+    "ACTION": "Handling",
+    "DEL_LINK": "Slett lenke",
+    "DEL_FILE_LINKS": "Slett fil og lenker",
+    "DELETED_LINKS": "Slettede lenker",
+    "YEAR": "år",
+    "DAY": "dag",
+    "MINUTE": "minutt",
+    "HOUR": "time",
+    "SECOND": "sekund",
+    "LESS_1_SEC": "mindre enn ett sekund"
 }
index 7afa1ba826c43e02eefc50ae84f3823068a457a4..ce5080099fa9dc3ed662a6662ebb176bf04ec117 100644 (file)
 {
-    "Access denied": "Toegang geweigerd",
-    "Action": "Actie",
-    "Actions": "Acties",
-    "Admin interface": "Beheerdersinterface",
-    "Administration password": "Beheerderswachtwoord",
-    "An error occurred.": "Er is een fout opgetreden.",
-    "Base address": "Basis URL",
-    "By using our services, you accept our": "Door deze dienst te gebruiken, ga je akkoord met de",
-    "Choose the default language": "Kies de standaard taal",
-    "Clean": "Opschonen",
-    "Clean expired files": "Verlopen bestanden opschonen",
-    "Clean old unfinished transfers": "Schoon oude onvoltooide overdrachten op",
-    "Data directory": "Datamap",
-    "Del file and links": "Verwijder bestand en links",
-    "Del link": "Verwijder link",
-    "Delete link": "Verwijder link",
-    "Deleted links": "Verwijderde links",
-    "Direct download link": "Rechtstreekse downloadlink",
-    "Download": "Downloaden",
-    "Download page": "Downloadpagina",
-    "Expire": "Verloopt",
-    "File has been deleted.": "Bestand is verwijderd.",
-    "File is too big": "Bestand is te groot",
-    "File not available.": "Bestand niet beschikbaar.",
-    "File size is limited to": "Bestandsgrootte is beperkt tot",
-    "File uploaded !": "Bestand geupload!",
-    "Filename": "Bestandsnaam",
-    "Finalisation": "Afronding",
-    "Give the password of this file": "Geef het wachtwoord van dit bestand op",
-    "Here is a solution": "Hier is een oplossing",
-    "Information": "Informatie",
-    "Installation of Jirafeau": "Installatie van Jirafeau",
-    "Installer script still present": "Installatiescript nog aanwezig",
-    "Internal error during file creation.": "Interne fout tijdens aanmaken van bestand.",
-    "Jirafeau Project": "Jirafeau Project",
-    "Jirafeau has an administration interface (through admin.php). You can set a password to access the interface or leave it empty to disable the interface.": "Jirafeau heeft een beheerdersinterface (via admin.php). Je kan een wachtwoord instellen om de interface te gebruiken of deze leeg laten om de interface uit te schakelen.",
-    "Jirafeau is internationalised. Choose a specific langage or choose Automatic (langage is provided by user's browser).": "Jirafeau is beschikbaar in verschillende talen. Selecteer een taal of kies Automatisch. Hierbij wordt de taal van de browser van de gebruiker gedetecteerd.",
-    "Jirafeau is now fully operational": "Jirafeau is nu volledig operationeel",
-    "Jirafeau is setting the website according to the configuration you provided.": "Jirafeau toont de website volgens het aangeleverde configuratiebestand.",
-    "Jirafeau, your web file repository": "Jirafeau, jouw online bestandsopslag",
-    "Link deleted": "Link verwijderd",
-    "List": "Toon",
-    "List all files": "Toon alle bestanden",
-    "Login": "Inloggen",
-    "Logout": "Uitloggen",
-    "Maximum file size": "Maximale bestandsgrootte",
-    "Next step": "Volgende stap",
-    "None": "Geen",
-    "Number of cleaned files": "Aantal opgeschoonde bestanden",
-    "One day": "Een dag",
-    "One hour": "Een uur",
-    "One minute": "Een minuut",
-    "One month": "Een maand",
-    "One time download": "Eenmalige download",
-    "One week": "Een week",
-    "One year": "Een jaar",
-    "Onetime": "Eenmalig",
-    "Origin": "Origineel",
-    "Password": "Wachtwoord",
-    "Password protection": "Wachtwoordbeveiliging",
-    "Please make sure to delete the installer script \"install.php\" before continuing.": "Verwijder het installatiescript \"install.php\" voordat je verder gaat.",
-    "Preview": "Voorbeeld",
-    "Previous step": "Vorige stap",
-    "Retry this step": "Stap nogmaals uitvoeren",
-    "Search": "Zoeken",
-    "Search a specific link": "Zoek een specifieke link",
-    "Search files by file hash": "Zoek bestanden op hash",
-    "Search files by name": "Zoek bestanden op naam",
-    "Select a file": "Selecteer een bestand",
-    "Send": "Versturen",
-    "Size": "Grootte",
-    "Sorry, the admin interface is not enabled.": "Sorry, de beheerdersinterface is niet ingeschakeld.",
-    "Sorry, the requested file is not found": "Sorry, het opgevraagde bestand is niet gevonden",
-    "Sorry, you are not authenticated on admin interface.": "Sorry, je bent niet ingelogd op de beheerdersinterface.",
+    "ACCESS_KO": "Toegang geweigerd",
+    "ACTION": "Actie",
+    "ACTIONS": "Acties",
+    "ADMIN_INTERFACE": "Beheerdersinterface",
+    "ADMIN_PSW": "Beheerderswachtwoord",
+    "ERR_OCC": "Er is een fout opgetreden.",
+    "BASE_ADDR": "Basis URL",
+    "USING_SERIVCE": "Door deze dienst te gebruiken, ga je akkoord met de",
+    "DEF_LANGUAGE": "Kies de standaard taal",
+    "CLEAN": "Opschonen",
+    "CLEAN_EXPIRED": "Verlopen bestanden opschonen",
+    "CLEAN_INCOMPLETE": "Schoon oude onvoltooide overdrachten op",
+    "DATA_DIR": "Datamap",
+    "DEL_FILE_LINKS": "Verwijder bestand en links",
+    "DEL_LINK": "Verwijder link",
+    "DELETE_LINK": "Verwijder link",
+    "DELETED_LINKS": "Verwijderde links",
+    "DIRECT_DL": "Rechtstreekse downloadlink",
+    "DL": "Downloaden",
+    "DL_PAGE": "Downloadpagina",
+    "EXPIRE": "Verloopt",
+    "FILE_DELETED": "Bestand is verwijderd.",
+    "2_BIG": "Bestand is te groot",
+    "FILE_NOT_AVAIL": "Bestand niet beschikbaar.",
+    "FILE_LIM": "Bestandsgrootte is beperkt tot",
+    "FILE_UP": "Bestand geupload!",
+    "FILENAME": "Bestandsnaam",
+    "FINALIZATION": "Afronding",
+    "GIMME_PSW": "Geef het wachtwoord van dit bestand op",
+    "HERE_SOLUTION": "Hier is een oplossing",
+    "INFO": "Informatie",
+    "JI_INSTALL": "Installatie van Jirafeau",
+    "INSTALL_SCRIPT_HERE": "Installatiescript nog aanwezig",
+    "INTERNAL_ERROR_DEL": "Interne fout tijdens aanmaken van bestand.",
+    "JI_PROJECT": "Jirafeau Project",
+    "ADMIN_INTERFACE_INFO": "Jirafeau heeft een beheerdersinterface (via admin.php). Je kan een wachtwoord instellen om de interface te gebruiken of deze leeg laten om de interface uit te schakelen.",
+    "JI_HAZ_LANGAGES": "Jirafeau is beschikbaar in verschillende talen. Selecteer een taal of kies Automatisch. Hierbij wordt de taal van de browser van de gebruiker gedetecteerd.",
+    "JI_FONCTIONAL": "Jirafeau is nu volledig operationeel",
+    "SETTING_UP": "Jirafeau toont de website volgens het aangeleverde configuratiebestand.",
+    "JI_WEB_RE": "Jirafeau, jouw online bestandsopslag",
+    "LINK_DELETED": "Link verwijderd",
+    "LIST": "Toon",
+    "LS_FILES": "Toon alle bestanden",
+    "LOGIN": "Inloggen",
+    "LOGOUT": "Uitloggen",
+    "MAX_FILE_SIZE": "Maximale bestandsgrootte",
+    "NEXT_STEP": "Volgende stap",
+    "NONE": "Geen",
+    "CLEANED_FILES_CNT": "Aantal opgeschoonde bestanden",
+    "1_D": "Een dag",
+    "1_H": "Een uur",
+    "1_MIN": "Een minuut",
+    "1_M": "Een maand",
+    "ONE_TIME_DL": "Eenmalige download",
+    "1_W": "Een week",
+    "1_Y": "Een jaar",
+    "ONETIME": "Eenmalig",
+    "ORIGIN": "Origineel",
+    "PSW": "Wachtwoord",
+    "PSW_PROTEC": "Wachtwoordbeveiliging",
+    "PREVIEW": "Voorbeeld",
+    "PREV_STEP": "Vorige stap",
+    "RETRY_STEP": "Stap nogmaals uitvoeren",
+    "SEARCH": "Zoeken",
+    "SEARCH_LINK": "Zoek een specifieke link",
+    "SEARH_BY_HASH": "Zoek bestanden op hash",
+    "SEARCH_NAME": "Zoek bestanden op naam",
+    "SEL_FILE": "Selecteer een bestand",
+    "SEND": "Versturen",
+    "SIZE": "Grootte",
+    "NO_ADMIN": "Sorry, de beheerdersinterface is niet ingeschakeld.",
+    "FILE_404": "Sorry, het opgevraagde bestand is niet gevonden",
+    "NO_ADMIN_AUTH": "Sorry, je bent niet ingelogd op de beheerdersinterface.",
     "Term Of Service": "Servicevoorwaarden",
-    "The async directory is not writable!": "De async-map is niet schrijfbaar!",
-    "The base address of Jirafeau is the first part of the URL, until (and including) the last slash. For example: \"http://www.example.com/\". Do not forget the trailing slash!": "De basis URL van Jirafeau is het eerst gedeelte van de URL, tot (maar inclusief) de laatste schuine streep. Bijvoorbeeld: \"http://www.voorbeeld.nl/\". Vergeet de afsluitende schuine streep niet!",
-    "The data directory is where your files and information about your files will be stored. You should put it outside your web site, or at least restrict the access to this directory. Do not forget the trailing slash!": "De datamap is waar de bestanden en informatie van deze bestanden worden opgeslagen. Plaats deze buiten de website, of beperk op zijn minst de toegang tot deze map. Vergeet de afsluitende schuine streep niet!",
-    "The file directory is not writable": "De bestandsmap is niet schrijfbaar",
-    "The following directory could not be created": "De volgende map kon niet worden aangemaakt",
-    "The following directory is not writable": "De volgende map is niet schrijfbaar",
-    "The link directory is not writable": "De linkmap is niet schrijfbaar",
-    "The local configuration file could not be created. Create a <code>lib/config.local.php</code> file and give the write permission to the web server (preferred solution), or give the write permission to the web server on the <code>lib</code> directory.": "Het lokale configuratiebestand kon niet worden aangemaakt. Maak het bestand <code>lib/config.local.php</code> aan en geef de webserver hierop schrijfpermissies (voorkeursoptie). Als alternatief, geef de webserver schrijfpermissies op de map <code>lib</code>.",
-    "The local configuration is not writable by the web server. Give the write permission to the web server on the '<code>lib/config.local.php</code> file.": "Het lokale configuratiebestand kon niet worden weggeschreven door de webserver. Geef de webserver schrijfpermissies op het <code>lib/config.local.php</code> bestand.",
-    "The time limit of this file has expired.": "De tijdslimiet van het bestand is verlopen.",
-    "This file is valid until the following date": "Dit bestand is geldig tot het volgende tijdstip",
-    "This file was generated by the install process. You can edit it. Please see config.original.php to understand the configuration items.": "Dit bestand is gegenereerd door het installatieproces. Je kan deze aanpassen. Zie config.original.php om de configuratieopties te bekijken.",
-    "Time limit": "Tijdslimiet",
-    "Type": "Type",
-    "Upload date": "Uploaddatum",
-    "Upload password": "Uploadwachtwoord",
-    "Uploading ...": "Uploaden...",
-    "View link": "Link bekijken",
-    "Warning, this file will self-destruct after being read": "Waarschuwing, dit bestand wordt na het lezen automatisch verwijderd",
-    "Wrong password.": "Verkeerd wachtwoord.",
-    "You are about to download": "Je staat op het punt om te downloaden:",
-    "You are now loggued out": "Je bent nu uitgelogd",
-    "You should create this directory manually.": "Maak deze map handmatig aan.",
-    "You should give the write permission to the web server on this directory.": "Geef de webserver schrijfpermissies op deze map.",
-    "day": "dag",
-    "file": "bestand",
-    "hour": "uur",
-    "less than a second": "minder dan een seconde",
-    "link": "link",
-    "minute": "minuut",
-    "out of": "van",
-    "powered by Open-Source project Jirafeau": "mogelijk gemaakt door open source project Jirafeau",
-    "second": "seconde",
-    "step": "stap",
-    "year": "jaar"
-}
\ No newline at end of file
+    "ASYNC_DIR_W": "De async-map is niet schrijfbaar!",
+    "BASE_ADDR_INFO": "De basis URL van Jirafeau is het eerst gedeelte van de URL, tot (maar inclusief) de laatste schuine streep. Bijvoorbeeld: \"http://www.voorbeeld.nl/\". Vergeet de afsluitende schuine streep niet!",
+    "DATA_DIR_EXPLAINATION": "De datamap is waar de bestanden en informatie van deze bestanden worden opgeslagen. Plaats deze buiten de website, of beperk op zijn minst de toegang tot deze map. Vergeet de afsluitende schuine streep niet!",
+    "FILE_DIR_W": "De bestandsmap is niet schrijfbaar",
+    "CANNOT_CREATE_DIR": "De volgende map kon niet worden aangemaakt",
+    "DIR_NOT_W": "De volgende map is niet schrijfbaar",
+    "LINK_DIR_W": "De linkmap is niet schrijfbaar",
+    "CONF_SOLUTION": "Het lokale configuratiebestand kon niet worden aangemaakt. Maak het bestand <code>lib/config.local.php</code> aan en geef de webserver hierop schrijfpermissies (voorkeursoptie). Als alternatief, geef de webserver schrijfpermissies op de map <code>lib</code>.",
+    "CONF_SOLUTION_2": "Het lokale configuratiebestand kon niet worden weggeschreven door de webserver. Geef de webserver schrijfpermissies op het <code>lib/config.local.php</code> bestand.",
+    "FILE_EXPIRED": "De tijdslimiet van het bestand is verlopen.",
+    "VALID_UNTIL": "Dit bestand is geldig tot het volgende tijdstip",
+    "CONF_AUTOGEN_COMMENT": "Dit bestand is gegenereerd door het installatieproces. Je kan deze aanpassen. Zie config.original.php om de configuratieopties te bekijken.",
+    "TIME_LIM": "Tijdslimiet",
+    "TYPE": "Type",
+    "UPLOAD_DATE": "Uploaddatum",
+    "UP_PSW": "Uploadwachtwoord",
+    "UP": "Uploaden...",
+    "VIEW_LINK": "Link bekijken",
+    "AUTO_DESTRUCT": "Waarschuwing, dit bestand wordt na het lezen automatisch verwijderd",
+    "BAD_PSW": "Verkeerd wachtwoord.",
+    "NOW_DOWNLOADING": "Je staat op het punt om te downloaden:",
+    "NOW_LOGOUT": "Je bent nu uitgelogd",
+    "MANUAL_CREATE": "Maak deze map handmatig aan.",
+    "GIMME_W": "Geef de webserver schrijfpermissies op deze map.",
+    "DAY": "dag",
+    "FILE": "bestand",
+    "HOUR": "uur",
+    "LESS_1_SEC": "minder dan een seconde",
+    "LINK": "link",
+    "MINUTE": "minuut",
+    "OUT_OF": "van",
+    "POWERED_BY": "mogelijk gemaakt door open source project Jirafeau",
+    "SECOND": "seconde",
+    "STEP": "stap",
+    "YEAR": "jaar"
+}
index 1f394fa699200e6e7cda8de7af07dcda911209f0..6eb93b66474b008d8ce667e9e9aee8238e9b1ce0 100644 (file)
 {
-    "Jirafeau, your web file repository": "Jirafeau, twoje internetowe repozytorium plików",
-    "Select a file": "Wybierz plik",
-    "Send": "Wyślij",
-    "Uploading ...": "Wysyłanie...",
-    "One time download": "Jednorazowe pobieranie",
-    "Password": "Hasło",
-    "Time limit": "Limit czasowy",
-    "Maximum file size": "maksymalny rozmiar pliku",
-    "powered by Open-Source project Jirafeau": "wspierany przez Open-Source project Jirafeau",
-    "Jirafeau Project": "Projekt Jirafeau",
-    "One minute": "Jedna minuta",
-    "One hour": "Jedna godzina",
-    "One day": "Jeden dzień",
-    "One week": "Jeden tydzień",
-    "One month": "Jeden miesiąc",
-    "One year": "Jeden rok",
-    "None": "Żaden",
-    "Upload password": "Hasło",
-    "File is too big": "Plik jest za duży",
-    "File size is limited to": "Wielkość pliku jest limitowana do",
-    "The file directory is not writable": "Katalog plików nie jest do zapisu",
-    "The link directory is not writable": "Katalog linków nie jest do zapisu",
-    "The async directory is not writable!": "Katalog Asynchronizacji nie jest do zapisu!",
-    "Installer script still present": "Skrypt instalacyjny wciąż istnieje",
-    "Please make sure to delete the installer script \"install.php\" before continuing.": "Upewnij się, że usunąłeś plik instalacyjny \"install.php\" zanim będziesz kontynuował.",
-    "An error occurred.": "Wystąpił błąd.",
-    "File uploaded !": "Plik wysłany!",
-    "Download page": "Strona pobierania",
-    "This file is valid until the following date": "Ten plik będzie dostępny do",
-    "View link": "Link wyświetlania",
-    "Direct download link": "Link bezpośredniego pobierania",
-    "Delete link": "Usuń link",
-    "Download": "Pobieranie",
-    "Preview": "Podgląd",
-    "Sorry, the requested file is not found": "Nie znaleziono pliku",
-    "File not available.": "Plik niedostępny.",
-    "File has been deleted.": "Plik został usunięty.",
-    "The time limit of this file has expired.": "Ten plik nie jest już dostępny.",
-    "Password protection": "Ochrona hasłem",
-    "Give the password of this file": "Podaj hasło do pliku",
-    "Access denied": "Brak dostępu",
-    "You are about to download": "Zamierzasz pobrać",
-    "By using our services, you accept our": "Używając usługi akceptujesz nasze",
+    "JI_WEB_RE": "Jirafeau, twoje internetowe repozytorium plików",
+    "SEL_FILE": "Wybierz plik",
+    "SEND": "Wyślij",
+    "UP": "Wysyłanie...",
+    "ONE_TIME_DL": "Jednorazowe pobieranie",
+    "PSW": "Hasło",
+    "TIME_LIM": "Limit czasowy",
+    "MAX_FILE_SIZE": "maksymalny rozmiar pliku",
+    "POWERED_BY": "wspierany przez Open-Source project Jirafeau",
+    "JI_PROJECT": "Projekt Jirafeau",
+    "1_MIN": "Jedna minuta",
+    "1_H": "Jedna godzina",
+    "1_D": "Jeden dzień",
+    "1_W": "Jeden tydzień",
+    "1_M": "Jeden miesiąc",
+    "1_Y": "Jeden rok",
+    "NONE": "Żaden",
+    "UP_PSW": "Hasło",
+    "2_BIG": "Plik jest za duży",
+    "FILE_LIM": "Wielkość pliku jest limitowana do",
+    "FILE_DIR_W": "Katalog plików nie jest do zapisu",
+    "LINK_DIR_W": "Katalog linków nie jest do zapisu",
+    "ASYNC_DIR_W": "Katalog Asynchronizacji nie jest do zapisu!",
+    "INSTALL_SCRIPT_HERE": "Skrypt instalacyjny wciąż istnieje",
+    "ERR_OCC": "Wystąpił błąd.",
+    "FILE_UP": "Plik wysłany!",
+    "DL_PAGE": "Strona pobierania",
+    "VALID_UNTIL": "Ten plik będzie dostępny do",
+    "VIEW_LINK": "Link wyświetlania",
+    "DIRECT_DL": "Link bezpośredniego pobierania",
+    "DELETE_LINK": "Usuń link",
+    "DL": "Pobieranie",
+    "PREVIEW": "Podgląd",
+    "FILE_404": "Nie znaleziono pliku",
+    "FILE_NOT_AVAIL": "Plik niedostępny.",
+    "FILE_DELETED": "Plik został usunięty.",
+    "FILE_EXPIRED": "Ten plik nie jest już dostępny.",
+    "PSW_PROTEC": "Ochrona hasłem",
+    "GIMME_PSW": "Podaj hasło do pliku",
+    "ACCESS_KO": "Brak dostępu",
+    "NOW_DOWNLOADING": "Zamierzasz pobrać",
+    "USING_SERIVCE": "Używając usługi akceptujesz nasze",
     "Term Of Service": "Zasady Użytkowania",
-    "Warning, this file will self-destruct after being read": "Uwaga, ten plik ulegnie autodestrukcji po pobraniu",
-    "Internal error during file creation.": "Wewnętrzny błąd podczas tworzenia pliku.",
-    "This file was generated by the install process. You can edit it. Please see config.original.php to understand the configuration items.": "Ten plik został wygenerowany przez proces instalacyjny. Możesz go modyfikować. Zajrzyj do pliku config.original.php aby uzyskać informacje o możliwych opcjach konfiguracji.",
-    "The following directory could not be created": "Następujący katalog nie mógł zostać utworzony",
-    "You should create this directory manually.": "Możesz stworzyć ten katalog ręcznie.",
-    "The following directory is not writable": "Następujący katalog nie jest do zapisu",
-    "You should give the write permission to the web server on this directory.": "Powinieneś przydzielić uprawnienia zapisu w tym katalogu na serwerze www.",
-    "Here is a solution": "Oto rozwiązanie",
-    "The local configuration file could not be created. Create a <code>lib/config.local.php</code> file and give the write permission to the web server (preferred solution), or give the write permission to the web server on the <code>lib</code> directory.": "Nie można utworzyć lokalnego pliku konfiguracyjnego. Utwórz plik <code>lib/config.local.php</code> i nadaj uprawnienia do zapisu na serwerze (preferowane) lub podaj uprawnienia do zapisu na serwerze WWW w katalogu <code>lib</code>.",
-    "The local configuration is not writable by the web server. Give the write permission to the web server on the '<code>lib/config.local.php</code> file.": "Lokalna konfiguracja nie może być zapisywana przez serwer WWW. Nadaj uprawnienia do zapisu na serwerze WWW w pliku '<code>lib/config.local.php</code>.",
-    "Installation of Jirafeau": "Instalacja Jirafeau",
-    "step": "krok",
-    "out of": "z",
-    "Administration password": "Hasło administracyjne",
-    "Finalisation": "Finalizacja",
-    "Jirafeau is setting the website according to the configuration you provided.": "Jirafeau ustawia stronę internetową według konfiguracji nadanej przez Ciebie.",
-    "Previous step": "Poprzedni krok",
-    "Retry this step": "Powtórz ten krok",
-    "Jirafeau is now fully operational": "Jirafeau jest teraz w pełni operacyjny",
-    "Information": "Informacja",
-    "The base address of Jirafeau is the first part of the URL, until (and including) the last slash. For example: \"http://www.example.com/\". Do not forget the trailing slash!": "Podstawowym adresem Jirafeau jest pierwsza część adresu URL, aż do ostatniego ukośnika. Na przykład: \"http://www.example.com/\". Nie zapomnij o ukośniku na końcu!",
-    "Base address": "Główny adres",
-    "The data directory is where your files and information about your files will be stored. You should put it outside your web site, or at least restrict the access to this directory. Do not forget the trailing slash!": "W katalogu danych znajdują się pliki i informacje o przechowywanych plikach. Należy umieścić go poza witryną internetową lub przynajmniej ograniczyć dostęp do tego katalogu. Nie zapomnij o ukośniku!",
-    "Data directory": "Folder danych",
-    "Jirafeau is internationalised. Choose a specific langage or choose Automatic (langage is provided by user's browser).": "Jirafeau jest zinternacjonalizowany. Wybierz specyficzny język albo pozwól nam pomóc na podstawie domyślnego języka Twojej przeglądarki.",
-    "Choose the default language": "Wybierz domyślny język",
-    "Next step": "Następny krok",
-    "Jirafeau has an administration interface (through admin.php). You can set a password to access the interface or leave it empty to disable the interface.": "Jirafeau posiada interfejs administracyjny (przez admin.php). Możesz ustawić hasło dostępu do interfejsu lub pozostawić puste, aby wyłączyć interfejs.",
-    "Sorry, the admin interface is not enabled.": "Przepraszamy, interfejs administracyjny nie jest dostępny.",
-    "Sorry, you are not authenticated on admin interface.": "Niestety, nie masz uprawnień do uwierzytelniania w interfejsie administratora.",
-    "Login": "Login",
-    "Wrong password.": "Niepoprawne hasło.",
-    "Admin interface": "Interfejs administracyjny",
-    "Clean expired files": "Wyczyść pliki, które wygasły",
-    "Clean old unfinished transfers": "Wyczyść stare, niezakończone transfery",
-    "Clean": "Czyste",
-    "Search files by name": "Szukaj plików wg nazwy",
-    "Search": "Szukaj",
-    "List all files": "Pokaż wszystkie pliki",
-    "List": "Lista",
-    "Actions": "Akcje",
-    "Search files by file hash": "Szukaj plików wg haszy",
-    "Search a specific link": "Szukaj specyficzny link",
-    "Number of cleaned files": "Liczba wyczyszczonych plików",
-    "Logout": "Wyloguj",
-    "You are now loggued out": "Jesteś wylogowany",
-    "Link deleted": "Link usunięty",
-    "Filename": "Nazwa pliku",
-    "file": "plik",
-    "link": "link",
-    "Type": "Typ",
-    "Size": "Rozmiar",
-    "Expire": "Wygasać",
-    "Onetime": "Jeden raz",
-    "Upload date": "Data przesłania",
-    "Origin": "Źródło",
-    "Action": "Akcja",
-    "Del link": "Usuń link",
-    "Del file and links": "Usuń plik i linki",
-    "Deleted links": "Usunięte linki",
-    "year": "rok",
-    "day": "dzień",
-    "minute": "minuta",
-    "hour": "godzina",
-    "second": "sekunda",
-    "less than a second": "mniej niż sekunda"
+    "AUTO_DESTRUCT": "Uwaga, ten plik ulegnie autodestrukcji po pobraniu",
+    "INTERNAL_ERROR_DEL": "Wewnętrzny błąd podczas tworzenia pliku.",
+    "CONF_AUTOGEN_COMMENT": "Ten plik został wygenerowany przez proces instalacyjny. Możesz go modyfikować. Zajrzyj do pliku config.original.php aby uzyskać informacje o możliwych opcjach konfiguracji.",
+    "CANNOT_CREATE_DIR": "Następujący katalog nie mógł zostać utworzony",
+    "MANUAL_CREATE": "Możesz stworzyć ten katalog ręcznie.",
+    "DIR_NOT_W": "Następujący katalog nie jest do zapisu",
+    "GIMME_W": "Powinieneś przydzielić uprawnienia zapisu w tym katalogu na serwerze www.",
+    "HERE_SOLUTION": "Oto rozwiązanie",
+    "CONF_SOLUTION": "Nie można utworzyć lokalnego pliku konfiguracyjnego. Utwórz plik <code>lib/config.local.php</code> i nadaj uprawnienia do zapisu na serwerze (preferowane) lub podaj uprawnienia do zapisu na serwerze WWW w katalogu <code>lib</code>.",
+    "CONF_SOLUTION_2": "Lokalna konfiguracja nie może być zapisywana przez serwer WWW. Nadaj uprawnienia do zapisu na serwerze WWW w pliku '<code>lib/config.local.php</code>.",
+    "JI_INSTALL": "Instalacja Jirafeau",
+    "STEP": "krok",
+    "OUT_OF": "z",
+    "ADMIN_PSW": "Hasło administracyjne",
+    "FINALIZATION": "Finalizacja",
+    "SETTING_UP": "Jirafeau ustawia stronę internetową według konfiguracji nadanej przez Ciebie.",
+    "PREV_STEP": "Poprzedni krok",
+    "RETRY_STEP": "Powtórz ten krok",
+    "JI_FONCTIONAL": "Jirafeau jest teraz w pełni operacyjny",
+    "INFO": "Informacja",
+    "BASE_ADDR_INFO": "Podstawowym adresem Jirafeau jest pierwsza część adresu URL, aż do ostatniego ukośnika. Na przykład: \"http://www.example.com/\". Nie zapomnij o ukośniku na końcu!",
+    "BASE_ADDR": "Główny adres",
+    "DATA_DIR_EXPLAINATION": "W katalogu danych znajdują się pliki i informacje o przechowywanych plikach. Należy umieścić go poza witryną internetową lub przynajmniej ograniczyć dostęp do tego katalogu. Nie zapomnij o ukośniku!",
+    "DATA_DIR": "Folder danych",
+    "JI_HAZ_LANGAGES": "Jirafeau jest zinternacjonalizowany. Wybierz specyficzny język albo pozwól nam pomóc na podstawie domyślnego języka Twojej przeglądarki.",
+    "DEF_LANGUAGE": "Wybierz domyślny język",
+    "NEXT_STEP": "Następny krok",
+    "ADMIN_INTERFACE_INFO": "Jirafeau posiada interfejs administracyjny (przez admin.php). Możesz ustawić hasło dostępu do interfejsu lub pozostawić puste, aby wyłączyć interfejs.",
+    "NO_ADMIN": "Przepraszamy, interfejs administracyjny nie jest dostępny.",
+    "NO_ADMIN_AUTH": "Niestety, nie masz uprawnień do uwierzytelniania w interfejsie administratora.",
+    "LOGIN": "Login",
+    "BAD_PSW": "Niepoprawne hasło.",
+    "ADMIN_INTERFACE": "Interfejs administracyjny",
+    "CLEAN_EXPIRED": "Wyczyść pliki, które wygasły",
+    "CLEAN_INCOMPLETE": "Wyczyść stare, niezakończone transfery",
+    "CLEAN": "Czyste",
+    "SEARCH_NAME": "Szukaj plików wg nazwy",
+    "SEARCH": "Szukaj",
+    "LS_FILES": "Pokaż wszystkie pliki",
+    "LIST": "Lista",
+    "ACTIONS": "Akcje",
+    "SEARH_BY_HASH": "Szukaj plików wg haszy",
+    "SEARCH_LINK": "Szukaj specyficzny link",
+    "CLEANED_FILES_CNT": "Liczba wyczyszczonych plików",
+    "LOGOUT": "Wyloguj",
+    "NOW_LOGOUT": "Jesteś wylogowany",
+    "LINK_DELETED": "Link usunięty",
+    "FILENAME": "Nazwa pliku",
+    "FILE": "plik",
+    "LINK": "link",
+    "TYPE": "Typ",
+    "SIZE": "Rozmiar",
+    "EXPIRE": "Wygasać",
+    "ONETIME": "Jeden raz",
+    "UPLOAD_DATE": "Data przesłania",
+    "ORIGIN": "Źródło",
+    "ACTION": "Akcja",
+    "DEL_LINK": "Usuń link",
+    "DEL_FILE_LINKS": "Usuń plik i linki",
+    "DELETED_LINKS": "Usunięte linki",
+    "YEAR": "rok",
+    "DAY": "dzień",
+    "MINUTE": "minuta",
+    "HOUR": "godzina",
+    "SECOND": "sekunda",
+    "LESS_1_SEC": "mniej niż sekunda"
 }
index b0729d0fa551d75c5ec97999e962ca07233ebdcf..6e5c26115e4d62eabd3b367ce3c1493d3fdf73ad 100644 (file)
 {
-    "Jirafeau, your web file repository": "",
-    "Select a file": "",
-    "Send": "",
-    "Uploading ...": "",
-    "One time download": "",
-    "Password": "",
-    "Time limit": "",
-    "Maximum file size": "",
-    "powered by Open-Source project Jirafeau": "",
-    "Made with": "",
-    "Jirafeau Project": "",
-    "One minute": "",
-    "One hour": "",
-    "One day": "",
-    "One week": "",
-    "One month": "",
-    "One quarter": "",
-    "One year": "",
-    "None": "",
-    "Upload password": "",
-    "File is too big": "",
-    "File size is limited to": "",
-    "The file directory is not writable": "",
-    "The link directory is not writable": "",
-    "The async directory is not writable!": "",
-    "Installer script still present": "",
-    "Please make sure to delete the installer script \"install.php\" before continuing.": "",
-    "An error occurred.": "",
-    "File uploaded !": "",
-    "Download page": "",
-    "This file is valid until the following date": "",
-    "View link": "",
-    "Direct download link": "",
-    "Delete link": "",
-    "Download": "",
-    "Preview": "",
-    "Sorry, the requested file is not found": "",
-    "File not available.": "",
-    "File has been deleted.": "",
-    "The time limit of this file has expired.": "",
-    "Password protection": "",
-    "Give the password of this file": "",
-    "Access denied": "",
-    "You are about to download": "",
-    "By using our services, you accept our": "",
-    "Terms of Service": "",
-    "Warning, this file will self-destruct after being read": "",
-    "Internal error during file creation.": "",
-
-    "This file was generated by the install process. You can edit it. Please see config.original.php to understand the configuration items.": "",
-    "The following directory could not be created": "",
-    "You should create this directory manually.": "",
-    "The following directory is not writable": "",
-    "You should give the write permission to the web server on this directory.": "",
-    "Here is a solution": "",
-    "The local configuration file could not be created. Create a <code>lib/config.local.php</code> file and give the write permission to the web server (preferred solution), or give the write permission to the web server on the <code>lib</code> directory.": "",
-    "The local configuration is not writable by the web server. Give the write permission to the web server on the '<code>lib/config.local.php</code> file.": "",
-    "Installation of Jirafeau": "",
-    "step": "",
-    "out of": "",
-    "Administration password": "",
-    "Finalisation": "",
-    "Jirafeau is setting the website according to the configuration you provided.": "",
-    "Previous step": "",
-    "Retry this step": "",
-    "Jirafeau is now fully operational": "",
-    "Information": "",
-    "The base address of Jirafeau is the first part of the URL, until (and including) the last slash. For example: \"http://www.example.com/\". Do not forget the trailing slash!": "",
-    "Base address": "",
-    "The data directory is where your files and information about your files will be stored. You should put it outside your web site, or at least restrict the access to this directory. Do not forget the trailing slash!": "",
-    "Data directory": "",
-    "Jirafeau is internationalised. Choose a specific langage or choose Automatic (langage is provided by user's browser).": "",
-    "Choose the default language": "",
-    "Next step": "",
-    "Jirafeau has an administration interface (through admin.php). You can set a password to access the interface or leave it empty to disable the interface.": "",
-    "Administration password": "",
-
-    "Sorry, the admin interface is not enabled.": "",
-    "Sorry, you are not authenticated on admin interface.": "",
-    "Login": "",
-    "Wrong password.": "",
-    "Admin interface": "",
-    "Clean expired files": "",
-    "Clean old unfinished transfers": "",
-    "Clean": "",
-    "Search files by name": "",
-    "Search": "",
-    "List all files": "",
-    "List": "",
-    "Actions": "",
-    "Search files by file hash": "",
-    "Search a specific link": "",
-    "Number of cleaned files": "",
-    "Logout": "",
-    "You are now loggued out": "",
-    "Link deleted": "",
-    "Filename": "",
-    "file": "",
-    "link": "",
-    "Type": "",
-    "Size": "",
-    "Expire": "",
-    "Onetime": "",
-    "Upload date": "",
-    "Origin": "",
-    "Action": "",
-    "Del link": "",
-    "Del file and links": "",
-    "Deleted links": "",
-    "year": "",
-    "day": "",
-    "minute": "",
-    "hour": "",
-    "second": "",
-    "less than a second": ""
+    "JI_WEB_RE": "",
+    "SEL_FILE": "",
+    "SEND": "",
+    "UP": "",
+    "ONE_TIME_DL": "",
+    "PSW": "",
+    "TIME_LIM": "",
+    "MAX_FILE_SIZE": "",
+    "POWERED_BY": "",
+    "MADE_WITH": "",
+    "JI_PROJECT": "",
+    "1_MIN": "",
+    "1_H": "",
+    "1_D": "",
+    "1_W": "",
+    "1_M": "",
+    "1_Q": "",
+    "1_Y": "",
+    "NONE": "",
+    "UP_PSW": "",
+    "2_BIG": "",
+    "FILE_LIM": "",
+    "FILE_DIR_W": "",
+    "LINK_DIR_W": "",
+    "ASYNC_DIR_W": "",
+    "INSTALL_SCRIPT_HERE": "",
+    "ERR_OCC": "",
+    "FILE_UP": "",
+    "DL_PAGE": "",
+    "VALID_UNTIL": "",
+    "VIEW_LINK": "",
+    "DIRECT_DL": "",
+    "DELETE_LINK": "",
+    "DL": "",
+    "PREVIEW": "",
+    "FILE_404": "",
+    "FILE_NOT_AVAIL": "",
+    "FILE_DELETED": "",
+    "FILE_EXPIRED": "",
+    "PSW_PROTEC": "",
+    "GIMME_PSW": "",
+    "ACCESS_KO": "",
+    "NOW_DOWNLOADING": "",
+    "USING_SERIVCE": "",
+    "TOS": "",
+    "AUTO_DESTRUCT": "",
+    "INTERNAL_ERROR_DEL": "",
+    "CONF_AUTOGEN_COMMENT": "",
+    "CANNOT_CREATE_DIR": "",
+    "MANUAL_CREATE": "",
+    "DIR_NOT_W": "",
+    "GIMME_W": "",
+    "HERE_SOLUTION": "",
+    "CONF_SOLUTION": "",
+    "CONF_SOLUTION_2": "",
+    "JI_INSTALL": "",
+    "STEP": "",
+    "OUT_OF": "",
+    "ADMIN_PSW": "",
+    "FINALIZATION": "",
+    "SETTING_UP": "",
+    "PREV_STEP": "",
+    "RETRY_STEP": "",
+    "JI_FONCTIONAL": "",
+    "INFO": "",
+    "BASE_ADDR_INFO": "",
+    "BASE_ADDR": "",
+    "DATA_DIR_EXPLAINATION": "",
+    "DATA_DIR": "",
+    "JI_HAZ_LANGAGES": "",
+    "DEF_LANGUAGE": "",
+    "NEXT_STEP": "",
+    "ADMIN_INTERFACE_INFO": "",
+    "NO_ADMIN": "",
+    "NO_ADMIN_AUTH": "",
+    "LOGIN": "",
+    "BAD_PSW": "",
+    "ADMIN_INTERFACE": "",
+    "CLEAN_EXPIRED": "",
+    "CLEAN_INCOMPLETE": "",
+    "CLEAN": "",
+    "SEARCH_NAME": "",
+    "SEARCH": "",
+    "LS_FILES": "",
+    "LIST": "",
+    "ACTIONS": "",
+    "SEARH_BY_HASH": "",
+    "SEARCH_LINK": "",
+    "CLEANED_FILES_CNT": "",
+    "LOGOUT": "",
+    "NOW_LOGOUT": "",
+    "LINK_DELETED": "",
+    "FILENAME": "",
+    "FILE": "",
+    "LINK": "",
+    "TYPE": "",
+    "SIZE": "",
+    "EXPIRE": "",
+    "ONETIME": "",
+    "UPLOAD_DATE": "",
+    "ORIGIN": "",
+    "ACTION": "",
+    "DEL_LINK": "",
+    "DEL_FILE_LINKS": "",
+    "DELETED_LINKS": "",
+    "YEAR": "",
+    "DAY": "",
+    "MINUTE": "",
+    "HOUR": "",
+    "SECOND": "",
+    "LESS_1_SEC": ""
 }
index d1f0e6f2777ff72ca41a88ccff2b8fdf58b38dd9..247834b111f3089bf77fadac3f3625e0b33af6ba 100644 (file)
 {
-    "Access denied": "Acesso negado",
-    "Action": "Acção",
-    "Actions": "Acções",
-    "Admin interface": "Interface de administração",
-    "Administration password": "Palavra-passe  de administração",
-    "An error occurred.": "Ocorreu um  erro.",
-    "Base address": "Endereço base",
-    "By using our services, you accept our": "Ao usar os nossos serviços, aceita a nossa",
-    "Choose the default language": "Escolha o idioma por omissão",
-    "Clean": "Limpar",
-    "Clean expired files": "Limpar arquivos expirados",
-    "Clean old unfinished transfers": "Limpar transferências antigas inacabadas",
-    "Data directory": "Diretório de dados",
-    "Del file and links": "Apagar arquivos e ligações",
-    "Del link": "Apagar ligações",
-    "Delete link": "Apagar ligação",
-    "Deleted links": "Ligações apagadas",
-    "Direct download link": "Ligação directa para descarregar",
-    "Download": "Descarregar",
-    "Download page": "Pagina de Descarga",
-    "Expire": "Expira",
-    "File has been deleted.": "O arquivo foi apagado.",
-    "File is too big": "Arquivo demasiado grande",
-    "File not available.": "Arquivo Indisponível.",
-    "File size is limited to": "Tamanho de arquivo limitado a",
-    "File uploaded !": "Arquivo carregado!",
-    "Filename": "Nome do arquivo",
-    "Finalisation": "Finalização",
-    "Give the password of this file": "Coloque a palavra-passe para este arquivo",
-    "Here is a solution": "Eis uma solução",
-    "Information": "Informação",
-    "Installation of Jirafeau": "Instalação do Jirafeau",
-    "Installer script still present": "O script de instalação ainda está presente",
-    "Internal error during file creation.": "Erro interno durante a criação do arquivo.",
-    "Jirafeau Project": "Projecto Jirafeau",
-    "Jirafeau has an administration interface (through admin.php). You can set a password to access the interface or leave it empty to disable the interface.": "Jirafeau possui um interface de administração (admin.php). Pode definir uma senha para aceder ao interface ou deixá-la vazia para desabilitar este interface.",
-    "Jirafeau is internationalised. Choose a specific langage or choose Automatic (langage is provided by user's browser).": "O Jirafeau é internacionalizado. Especifique um idioma ou escolha Automático (o idioma providenciado pelo navegador do utilizador).",
-    "Jirafeau is now fully operational": "Jirafeau está agora totalmente operacional",
-    "Jirafeau is setting the website according to the configuration you provided.": "Jirafeau está a configurar o site de acordo com a configuração que forneceu.",
-    "Jirafeau, your web file repository": "Jirafeau, o seu repositório web de ficheiros",
-    "Link deleted": "Ligação apagada",
-    "List": "Listar",
-    "List all files": "Listar todos os arquivos",
-    "Login": "Iniciar sessão",
-    "Logout": "Terminar sessão",
-    "Maximum file size": "Tamanho maximo de arquivo",
-    "Next step": "Próximo passo",
-    "None": "Nenhum",
-    "Number of cleaned files": "Numero de arquivos limpos",
-    "One day": "Um dia",
-    "One hour": "Uma hora",
-    "One minute": "Um minuto",
-    "One month": "Um mês",
-    "One time download": "Descarga única",
-    "One week": "Uma semana",
-    "One year": "Um ano",
-    "Onetime": "Uma vez",
-    "Origin": "Origem",
-    "Password": "Palavra-passe",
-    "Password protection": "Protecção de palavra-passe",
-    "Please make sure to delete the installer script \"install.php\" before continuing.": "Por favor tenha a certeza de apagar o script de instalação \"install.php\" antes de continuar.",
-    "Preview": "Previsualizar",
-    "Previous step": "Passo anterior",
-    "Retry this step": "Voltar a tentar este passo",
-    "Search": "Pesquisar",
-    "Search a specific link": "Pesquisar uma ligação especifica",
-    "Search files by file hash": "Pesquisar arquivos por hash de ficheiro",
-    "Search files by name": "Pesquisar arquivos por nome",
-    "Select a file": "Seleccione um arquivo",
-    "Send": "Enviar",
-    "Size": "Tamanho",
-    "Sorry, the admin interface is not enabled.": "Desculpe, o interface de administração está desabilitado.",
-    "Sorry, the requested file is not found": "Desculpe, o ficheiro requisitado não foi encontrado",
-    "Sorry, you are not authenticated on admin interface.": "Desculpe, não está autenticado no interface de administração.",
+    "ACCESS_KO": "Acesso negado",
+    "ACTION": "Acção",
+    "ACTIONS": "Acções",
+    "ADMIN_INTERFACE": "Interface de administração",
+    "ADMIN_PSW": "Palavra-passe  de administração",
+    "ERR_OCC": "Ocorreu um  erro.",
+    "BASE_ADDR": "Endereço base",
+    "USING_SERIVCE": "Ao usar os nossos serviços, aceita a nossa",
+    "DEF_LANGUAGE": "Escolha o idioma por omissão",
+    "CLEAN": "Limpar",
+    "CLEAN_EXPIRED": "Limpar arquivos expirados",
+    "CLEAN_INCOMPLETE": "Limpar transferências antigas inacabadas",
+    "DATA_DIR": "Diretório de dados",
+    "DEL_FILE_LINKS": "Apagar arquivos e ligações",
+    "DEL_LINK": "Apagar ligações",
+    "DELETE_LINK": "Apagar ligação",
+    "DELETED_LINKS": "Ligações apagadas",
+    "DIRECT_DL": "Ligação directa para descarregar",
+    "DL": "Descarregar",
+    "DL_PAGE": "Pagina de Descarga",
+    "EXPIRE": "Expira",
+    "FILE_DELETED": "O arquivo foi apagado.",
+    "2_BIG": "Arquivo demasiado grande",
+    "FILE_NOT_AVAIL": "Arquivo Indisponível.",
+    "FILE_LIM": "Tamanho de arquivo limitado a",
+    "FILE_UP": "Arquivo carregado!",
+    "FILENAME": "Nome do arquivo",
+    "FINALIZATION": "Finalização",
+    "GIMME_PSW": "Coloque a palavra-passe para este arquivo",
+    "HERE_SOLUTION": "Eis uma solução",
+    "INFO": "Informação",
+    "JI_INSTALL": "Instalação do Jirafeau",
+    "INSTALL_SCRIPT_HERE": "O script de instalação ainda está presente",
+    "INTERNAL_ERROR_DEL": "Erro interno durante a criação do arquivo.",
+    "JI_PROJECT": "Projecto Jirafeau",
+    "ADMIN_INTERFACE_INFO": "Jirafeau possui um interface de administração (admin.php). Pode definir uma senha para aceder ao interface ou deixá-la vazia para desabilitar este interface.",
+    "JI_HAZ_LANGAGES": "O Jirafeau é internacionalizado. Especifique um idioma ou escolha Automático (o idioma providenciado pelo navegador do utilizador).",
+    "JI_FONCTIONAL": "Jirafeau está agora totalmente operacional",
+    "SETTING_UP": "Jirafeau está a configurar o site de acordo com a configuração que forneceu.",
+    "JI_WEB_RE": "Jirafeau, o seu repositório web de ficheiros",
+    "LINK_DELETED": "Ligação apagada",
+    "LIST": "Listar",
+    "LS_FILES": "Listar todos os arquivos",
+    "LOGIN": "Iniciar sessão",
+    "LOGOUT": "Terminar sessão",
+    "MAX_FILE_SIZE": "Tamanho maximo de arquivo",
+    "NEXT_STEP": "Próximo passo",
+    "NONE": "Nenhum",
+    "CLEANED_FILES_CNT": "Numero de arquivos limpos",
+    "1_D": "Um dia",
+    "1_H": "Uma hora",
+    "1_MIN": "Um minuto",
+    "1_M": "Um mês",
+    "ONE_TIME_DL": "Descarga única",
+    "1_W": "Uma semana",
+    "1_Y": "Um ano",
+    "ONETIME": "Uma vez",
+    "ORIGIN": "Origem",
+    "PSW": "Palavra-passe",
+    "PSW_PROTEC": "Protecção de palavra-passe",
+    "PREVIEW": "Previsualizar",
+    "PREV_STEP": "Passo anterior",
+    "RETRY_STEP": "Voltar a tentar este passo",
+    "SEARCH": "Pesquisar",
+    "SEARCH_LINK": "Pesquisar uma ligação especifica",
+    "SEARH_BY_HASH": "Pesquisar arquivos por hash de ficheiro",
+    "SEARCH_NAME": "Pesquisar arquivos por nome",
+    "SEL_FILE": "Seleccione um arquivo",
+    "SEND": "Enviar",
+    "SIZE": "Tamanho",
+    "NO_ADMIN": "Desculpe, o interface de administração está desabilitado.",
+    "FILE_404": "Desculpe, o ficheiro requisitado não foi encontrado",
+    "NO_ADMIN_AUTH": "Desculpe, não está autenticado no interface de administração.",
     "Term Of Service": "Termo do Serviço",
-    "The async directory is not writable!": "O directório async não permite escrita!",
-    "The base address of Jirafeau is the first part of the URL, until (and including) the last slash. For example: \"http://www.example.com/\". Do not forget the trailing slash!": "O endereço base do Jirafeau é a primeira parte do URL, até (e incluindo) a ultima barra. Por exemplo: \"http://www.exemplo.com/\".Não se esqueça da barra final!",
-    "The data directory is where your files and information about your files will be stored. You should put it outside your web site, or at least restrict the access to this directory. Do not forget the trailing slash!": "O directório de dados é onde os seus arquivos e a informação sobre os arquivos serão armazenados. Deverá coloca-lo fora do seu servidor web ou pelo menos restringir o acesso a este directório.Não esquecer a barra final!",
-    "The file directory is not writable": "O directório de ficheiros não permite escrita",
-    "The following directory could not be created": "O seguinte directório não pode ser criado",
-    "The following directory is not writable": "O seguinte directório não permite escrita",
-    "The link directory is not writable": "O diretório da ligação não permite escrita",
-    "The local configuration file could not be created. Create a <code>lib/config.local.php</code> file and give the write permission to the web server (preferred solution), or give the write permission to the web server on the <code>lib</code> directory.": "O arquivo local de configuração não pode ser criado. Crie o arquivo <code>lib/config.local.php</code> e atribua permissão de escrita ao servidor web (solução preferencial), ou atribua permissões de escrita ao servidor web na directoria <code>lib</code>.",
-    "The local configuration is not writable by the web server. Give the write permission to the web server on the '<code>lib/config.local.php</code> file.": "O arquivo local de configuração não consegue ser escrito pelo servidor web. Atribua permissão de escrita ao servidor web no arquivo <code>lib/config.local.php</code>.",
-    "The time limit of this file has expired.": "O limite de tempo para este arquivo expirou.",
-    "This file is valid until the following date": "Este ficheiro é válido até à seguinte data",
-    "This file was generated by the install process. You can edit it. Please see config.original.php to understand the configuration items.": "Este ficheiro foi gerado durante o processo de instalação. Pode edita-lo. Por favor leia config.original.php para compreender os itens de configuração.",
-    "Time limit": "Limite de tempo",
-    "Type": "Tipo",
-    "Upload date": "Data de carregamento",
-    "Upload password": "Palavra-passe de carregamento",
-    "Uploading ...": "Carregando...",
-    "View link": "Ver ligação",
-    "Warning, this file will self-destruct after being read": "Cuidado, esse arquivo irá se auto-destruir após ser lido",
-    "Wrong password.": "Palavra-passe errada.",
-    "You are about to download": "Está prestes a descarregar",
-    "You are now loggued out": "Terminou a sessão",
-    "You should create this directory manually.": "Deve criar este directório manualmente.",
-    "You should give the write permission to the web server on this directory.": "Deve dar permissões de escrita ao servidor web neste directório.",
-    "day": "dia",
-    "file": "arquivo",
-    "hour": "hora",
-    "less than a second": "menos que um segundo",
-    "link": "ligação",
-    "minute": "minuto",
-    "out of": "de",
-    "powered by Open-Source project Jirafeau": "disponibilizado pelo projeto Open-Source Jirafeau",
-    "second": "segundo",
-    "step": "passo",
-    "year": "ano"
+    "ASYNC_DIR_W": "O directório async não permite escrita!",
+    "BASE_ADDR_INFO": "O endereço base do Jirafeau é a primeira parte do URL, até (e incluindo) a ultima barra. Por exemplo: \"http://www.exemplo.com/\".Não se esqueça da barra final!",
+    "DATA_DIR_EXPLAINATION": "O directório de dados é onde os seus arquivos e a informação sobre os arquivos serão armazenados. Deverá coloca-lo fora do seu servidor web ou pelo menos restringir o acesso a este directório.Não esquecer a barra final!",
+    "FILE_DIR_W": "O directório de ficheiros não permite escrita",
+    "CANNOT_CREATE_DIR": "O seguinte directório não pode ser criado",
+    "DIR_NOT_W": "O seguinte directório não permite escrita",
+    "LINK_DIR_W": "O diretório da ligação não permite escrita",
+    "CONF_SOLUTION": "O arquivo local de configuração não pode ser criado. Crie o arquivo <code>lib/config.local.php</code> e atribua permissão de escrita ao servidor web (solução preferencial), ou atribua permissões de escrita ao servidor web na directoria <code>lib</code>.",
+    "CONF_SOLUTION_2": "O arquivo local de configuração não consegue ser escrito pelo servidor web. Atribua permissão de escrita ao servidor web no arquivo <code>lib/config.local.php</code>.",
+    "FILE_EXPIRED": "O limite de tempo para este arquivo expirou.",
+    "VALID_UNTIL": "Este ficheiro é válido até à seguinte data",
+    "CONF_AUTOGEN_COMMENT": "Este ficheiro foi gerado durante o processo de instalação. Pode edita-lo. Por favor leia config.original.php para compreender os itens de configuração.",
+    "TIME_LIM": "Limite de tempo",
+    "TYPE": "Tipo",
+    "UPLOAD_DATE": "Data de carregamento",
+    "UP_PSW": "Palavra-passe de carregamento",
+    "UP": "Carregando...",
+    "VIEW_LINK": "Ver ligação",
+    "AUTO_DESTRUCT": "Cuidado, esse arquivo irá se auto-destruir após ser lido",
+    "BAD_PSW": "Palavra-passe errada.",
+    "NOW_DOWNLOADING": "Está prestes a descarregar",
+    "NOW_LOGOUT": "Terminou a sessão",
+    "MANUAL_CREATE": "Deve criar este directório manualmente.",
+    "GIMME_W": "Deve dar permissões de escrita ao servidor web neste directório.",
+    "DAY": "dia",
+    "FILE": "arquivo",
+    "HOUR": "hora",
+    "LESS_1_SEC": "menos que um segundo",
+    "LINK": "ligação",
+    "MINUTE": "minuto",
+    "OUT_OF": "de",
+    "POWERED_BY": "disponibilizado pelo projeto Open-Source Jirafeau",
+    "SECOND": "segundo",
+    "STEP": "passo",
+    "YEAR": "ano"
 }
index 5b3e35661893b16e8b1509508e4fb086af908c20..7a3fcb01fc2b84095b8c3c488eed698c58d52601 100644 (file)
 {
-    "Jirafeau, your web file repository": "Jirafeau, o seu repositório web de arquivos",
-    "Select a file": "Selecione um arquivo",
-    "Send": "Enviar",
-    "Uploading ...": "Carregando...",
-    "One time download": "Download único",
-    "Password": "Senha",
-    "Time limit": "Limite de tempo",
-    "Maximum file size": "Tamanho máximo de arquivo",
-    "powered by Open-Source project Jirafeau": "disponibilizado pelo projeto Open-Source Jirafeau",
-    "Made with": "Feito com",
-    "Jirafeau Project": "Projeto Jirafeau",
-    "One minute": "Um minuto",
-    "One hour": "Uma hora",
-    "One day": "Um dia",
-    "One week": "Uma semana",
-    "One month": "Um mês",
-    "One quarter": "Três meses",
-    "One year": "Um ano",
-    "None": "Nenhum",
-    "Upload password": "Senha de upload",
-    "File is too big": "Arquivo muito grande",
-    "File size is limited to": "Tamanho de arquivo limitado a",
-    "The file directory is not writable": "O diretório de arquivos não permite escrita",
-    "The link directory is not writable": "O diretório de link não permite escrita",
-    "The async directory is not writable!": "O diretório async não permite escrita!",
-    "Installer script still present": "O script de instalação ainda está presente",
-    "Please make sure to delete the installer script \"install.php\" before continuing.": "Por favor, tenha certeza de apagar o script de instalação \"install.php\" antes de continuar.",
-    "An error occurred.": "Ocorreu um erro.",
-    "File uploaded !": "Arquivo carregado!",
-    "Download page": "Pagina de Download",
-    "This file is valid until the following date": "Este arquivo é válido até à seguinte data",
-    "View link": "Visualizar link",
-    "Direct download link": "Link para download direto",
-    "Delete link": "Apagar link",
-    "Download": "Baixar",
-    "Preview": "Pré-visualizar",
-    "Sorry, the requested file is not found": "Desculpe, o arquivo requisitado não foi encontrado",
-    "File not available.": "Arquivo indisponível.",
-    "File has been deleted.": "O arquivo foi apagado.",
-    "The time limit of this file has expired.": "O limite de tempo para este arquivo expirou.",
-    "Password protection": "Proteção de senha",
-    "Give the password of this file": "Coloque a senha para este arquivo",
-    "Access denied": "Acesso negado",
-    "You are about to download": "Você está prestes a fazer o download",
-    "By using our services, you accept our": "Ao usar os nossos serviços, você aceita a nossa",
-    "Terms of Service": "Termos do Serviço",
-    "Warning, this file will self-destruct after being read": "Cuidado, esse arquivo irá se auto-destruir após ser lido",
-    "Internal error during file creation.": "Erro interno durante a criação do arquivo.",
-    "This file was generated by the install process. You can edit it. Please see config.original.php to understand the configuration items.": "Este arquivo foi gerado durante o processo de instalação. Você pode edita-lo. Por favor leia config.original.php para compreender os itens de configuração.",
-    "The following directory could not be created": "O seguinte diretório não pode ser criado",
-    "You should create this directory manually.": "Você deve criar este diretório manualmente.",
-    "The following directory is not writable": "O seguinte diretório não permite escrita",
-    "You should give the write permission to the web server on this directory.": "Você deve dar permissões de escrita ao servidor web neste diretório.",
-    "Here is a solution": "Eis uma solução",
-    "The local configuration file could not be created. Create a <code>lib/config.local.php</code> file and give the write permission to the web server (preferred solution), or give the write permission to the web server on the <code>lib</code> directory.": "O arquivo local de configuração não pode ser criado. Crie o arquivo <code>lib/config.local.php</code> e atribua permissão de escrita ao servidor web (solução preferencial), ou atribua permissões de escrita ao servidor web no diretório <code>lib</code>.",
-    "The local configuration is not writable by the web server. Give the write permission to the web server on the '<code>lib/config.local.php</code> file.": "O arquivo local de configuração não consegue ser escrito pelo servidor web. Atribua permissão de escrita ao servidor web no arquivo <code>lib/config.local.php</code>.",
-    "Installation of Jirafeau": "Instalação do Jirafeau",
-    "step": "passo",
-    "out of": "de",
-    "Administration password": "Senha de administração",
-    "Finalisation": "Finalização",
-    "Jirafeau is setting the website according to the configuration you provided.": "Jirafeau irá configurar o site de acordo com as configurações que você forneceu.",
-    "Previous step": "Passo anterior",
-    "Retry this step": "Tentar este passo novamente",
-    "Jirafeau is now fully operational": "Jirafeau está totalmente operacional agora",
-    "Information": "Informação",
-    "The base address of Jirafeau is the first part of the URL, until (and including) the last slash. For example: \"http://www.example.com/\". Do not forget the trailing slash!": "O endereço base do Jirafeau é a primeira parte do URL, até (e incluindo) a ultima barra. Por exemplo: \\\"http://www.exemplo.com/\\\".Não se esqueça da barra final!",
-    "Base address": "Endereço base",
-    "The data directory is where your files and information about your files will be stored. You should put it outside your web site, or at least restrict the access to this directory. Do not forget the trailing slash!": "O diretório de dados é onde os seus arquivos e a informações sobre os arquivos serão armazenados. Deverá coloca-lo fora do seu servidor web ou pelo menos restringir o acesso a este diretório. Não esquecer a barra final!",
-    "Data directory": "Diretório de dados",
-    "Jirafeau is internationalised. Choose a specific langage or choose Automatic (langage is provided by user's browser).": "O Jirafeau é internacionalizado. Especifique um idioma ou escolha Automático (o idioma provido pelo navegador do utilizador).",
-    "Choose the default language": "Escolha o idioma padrão",
-    "Next step": "Próximo passo",
-    "Jirafeau has an administration interface (through admin.php). You can set a password to access the interface or leave it empty to disable the interface.": "Jirafeau possui um interface de administração (admin.php). Você definir uma senha para acessar a interface ou deixá-la vazia para desabilitar esta interface.",
-    "Sorry, the admin interface is not enabled.": "Desculpe, a interface de administração está desabilitada.",
-    "Sorry, you are not authenticated on admin interface.": "Desculpe, não está autenticado na interface de administração.",
-    "Login": "Iniciar sessão",
-    "Wrong password.": "Senha incorreta.",
-    "Admin interface": "Interface de administração",
-    "Clean expired files": "Limpar arquivos expirados",
-    "Clean old unfinished transfers": "Limpar transferências antigas inacabadas",
-    "Clean": "Limpar",
-    "Search files by name": "Pesquisar arquivos por nome",
-    "Search": "Pesquisar",
-    "List all files": "Listar todos os arquivos",
-    "List": "Listar",
-    "Actions": "Ações",
-    "Search files by file hash": "Pesquisar arquivos por hash",
-    "Search a specific link": "Pesquisar um link especifico",
-    "Number of cleaned files": "Numero de arquivos limpos",
-    "Logout": "Terminar sessão",
-    "You are now loggued out": "Sessão terminada",
-    "Link deleted": "Link apagado",
-    "Filename": "Nome do arquivo",
-    "file": "arquivo",
-    "link": "link",
-    "Type": "Tipo",
-    "Size": "Tamanho",
-    "Expire": "Expira",
-    "Onetime": "Uma vez",
-    "Upload date": "Data de upload",
-    "Origin": "Origem",
-    "Action": "Ação",
-    "Del link": "Apagar links",
-    "Del file and links": "Apagar arquivos e links",
-    "Deleted links": "Links apagados",
-    "year": "ano",
-    "day": "dia",
-    "minute": "minuto",
-    "hour": "hora",
-    "second": "segundo",
-    "less than a second": "Menos de um segundo"
+    "JI_WEB_RE": "Jirafeau, o seu repositório web de arquivos",
+    "SEL_FILE": "Selecione um arquivo",
+    "SEND": "Enviar",
+    "UP": "Carregando...",
+    "ONE_TIME_DL": "Download único",
+    "PSW": "Senha",
+    "TIME_LIM": "Limite de tempo",
+    "MAX_FILE_SIZE": "Tamanho máximo de arquivo",
+    "POWERED_BY": "disponibilizado pelo projeto Open-Source Jirafeau",
+    "MADE_WITH": "Feito com",
+    "JI_PROJECT": "Projeto Jirafeau",
+    "1_MIN": "Um minuto",
+    "1_H": "Uma hora",
+    "1_D": "Um dia",
+    "1_W": "Uma semana",
+    "1_M": "Um mês",
+    "1_Q": "Três meses",
+    "1_Y": "Um ano",
+    "NONE": "Nenhum",
+    "UP_PSW": "Senha de upload",
+    "2_BIG": "Arquivo muito grande",
+    "FILE_LIM": "Tamanho de arquivo limitado a",
+    "FILE_DIR_W": "O diretório de arquivos não permite escrita",
+    "LINK_DIR_W": "O diretório de link não permite escrita",
+    "ASYNC_DIR_W": "O diretório async não permite escrita!",
+    "INSTALL_SCRIPT_HERE": "O script de instalação ainda está presente",
+    "ERR_OCC": "Ocorreu um erro.",
+    "FILE_UP": "Arquivo carregado!",
+    "DL_PAGE": "Pagina de Download",
+    "VALID_UNTIL": "Este arquivo é válido até à seguinte data",
+    "VIEW_LINK": "Visualizar link",
+    "DIRECT_DL": "Link para download direto",
+    "DELETE_LINK": "Apagar link",
+    "DL": "Baixar",
+    "PREVIEW": "Pré-visualizar",
+    "FILE_404": "Desculpe, o arquivo requisitado não foi encontrado",
+    "FILE_NOT_AVAIL": "Arquivo indisponível.",
+    "FILE_DELETED": "O arquivo foi apagado.",
+    "FILE_EXPIRED": "O limite de tempo para este arquivo expirou.",
+    "PSW_PROTEC": "Proteção de senha",
+    "GIMME_PSW": "Coloque a senha para este arquivo",
+    "ACCESS_KO": "Acesso negado",
+    "NOW_DOWNLOADING": "Você está prestes a fazer o download",
+    "USING_SERIVCE": "Ao usar os nossos serviços, você aceita a nossa",
+    "TOS": "Termos do Serviço",
+    "AUTO_DESTRUCT": "Cuidado, esse arquivo irá se auto-destruir após ser lido",
+    "INTERNAL_ERROR_DEL": "Erro interno durante a criação do arquivo.",
+    "CONF_AUTOGEN_COMMENT": "Este arquivo foi gerado durante o processo de instalação. Você pode edita-lo. Por favor leia config.original.php para compreender os itens de configuração.",
+    "CANNOT_CREATE_DIR": "O seguinte diretório não pode ser criado",
+    "MANUAL_CREATE": "Você deve criar este diretório manualmente.",
+    "DIR_NOT_W": "O seguinte diretório não permite escrita",
+    "GIMME_W": "Você deve dar permissões de escrita ao servidor web neste diretório.",
+    "HERE_SOLUTION": "Eis uma solução",
+    "CONF_SOLUTION": "O arquivo local de configuração não pode ser criado. Crie o arquivo <code>lib/config.local.php</code> e atribua permissão de escrita ao servidor web (solução preferencial), ou atribua permissões de escrita ao servidor web no diretório <code>lib</code>.",
+    "CONF_SOLUTION_2": "O arquivo local de configuração não consegue ser escrito pelo servidor web. Atribua permissão de escrita ao servidor web no arquivo <code>lib/config.local.php</code>.",
+    "JI_INSTALL": "Instalação do Jirafeau",
+    "STEP": "passo",
+    "OUT_OF": "de",
+    "ADMIN_PSW": "Senha de administração",
+    "FINALIZATION": "Finalização",
+    "SETTING_UP": "Jirafeau irá configurar o site de acordo com as configurações que você forneceu.",
+    "PREV_STEP": "Passo anterior",
+    "RETRY_STEP": "Tentar este passo novamente",
+    "JI_FONCTIONAL": "Jirafeau está totalmente operacional agora",
+    "INFO": "Informação",
+    "BASE_ADDR_INFO": "O endereço base do Jirafeau é a primeira parte do URL, até (e incluindo) a ultima barra. Por exemplo: \\\"http://www.exemplo.com/\\\".Não se esqueça da barra final!",
+    "BASE_ADDR": "Endereço base",
+    "DATA_DIR_EXPLAINATION": "O diretório de dados é onde os seus arquivos e a informações sobre os arquivos serão armazenados. Deverá coloca-lo fora do seu servidor web ou pelo menos restringir o acesso a este diretório. Não esquecer a barra final!",
+    "DATA_DIR": "Diretório de dados",
+    "JI_HAZ_LANGAGES": "O Jirafeau é internacionalizado. Especifique um idioma ou escolha Automático (o idioma provido pelo navegador do utilizador).",
+    "DEF_LANGUAGE": "Escolha o idioma padrão",
+    "NEXT_STEP": "Próximo passo",
+    "ADMIN_INTERFACE_INFO": "Jirafeau possui um interface de administração (admin.php). Você definir uma senha para acessar a interface ou deixá-la vazia para desabilitar esta interface.",
+    "NO_ADMIN": "Desculpe, a interface de administração está desabilitada.",
+    "NO_ADMIN_AUTH": "Desculpe, não está autenticado na interface de administração.",
+    "LOGIN": "Iniciar sessão",
+    "BAD_PSW": "Senha incorreta.",
+    "ADMIN_INTERFACE": "Interface de administração",
+    "CLEAN_EXPIRED": "Limpar arquivos expirados",
+    "CLEAN_INCOMPLETE": "Limpar transferências antigas inacabadas",
+    "CLEAN": "Limpar",
+    "SEARCH_NAME": "Pesquisar arquivos por nome",
+    "SEARCH": "Pesquisar",
+    "LS_FILES": "Listar todos os arquivos",
+    "LIST": "Listar",
+    "ACTIONS": "Ações",
+    "SEARH_BY_HASH": "Pesquisar arquivos por hash",
+    "SEARCH_LINK": "Pesquisar um link especifico",
+    "CLEANED_FILES_CNT": "Numero de arquivos limpos",
+    "LOGOUT": "Terminar sessão",
+    "NOW_LOGOUT": "Sessão terminada",
+    "LINK_DELETED": "Link apagado",
+    "FILENAME": "Nome do arquivo",
+    "FILE": "arquivo",
+    "LINK": "link",
+    "TYPE": "Tipo",
+    "SIZE": "Tamanho",
+    "EXPIRE": "Expira",
+    "ONETIME": "Uma vez",
+    "UPLOAD_DATE": "Data de upload",
+    "ORIGIN": "Origem",
+    "ACTION": "Ação",
+    "DEL_LINK": "Apagar links",
+    "DEL_FILE_LINKS": "Apagar arquivos e links",
+    "DELETED_LINKS": "Links apagados",
+    "YEAR": "ano",
+    "DAY": "dia",
+    "MINUTE": "minuto",
+    "HOUR": "hora",
+    "SECOND": "segundo",
+    "LESS_1_SEC": "Menos de um segundo"
 }
index c4a07b2abc640bd060f2a194966c97ed9c820d6b..84daa8ce69181c27c60670a03df9f2649122fd4a 100644 (file)
 {
-    "Access denied": "Acces refuzat", 
-    "Action": "Acţiune", 
-    "Actions": "Acţiuni", 
-    "Admin interface": "Interfaţă administrare", 
-    "Administration password": "Parola de administrare", 
-    "An error occurred.": "A apărut o eroare.", 
-    "Base address": "Adresa de bază", 
-    "By using our services, you accept our": "Utilizând serviciile noastre, accepţi", 
-    "Choose the default language": "Alege limba implicită", 
-    "Clean": "Curăţă", 
-    "Clean expired files": "Şterge fişierele expirate", 
-    "Clean old unfinished transfers": "Şterge transferurile vechi nefinalizate", 
-    "Data directory": "Director date", 
-    "Del file and links": "Şterge fişierul şi link-urile", 
-    "Del link": "Şterge link", 
-    "Delete link": "Şterge link", 
-    "Deleted links": "Link-uri şterse", 
-    "Direct download link": "Link de descărcare directă", 
-    "Download": "Descărcare", 
-    "Download page": "Pagina de descărcare", 
-    "Expire": "Expiră", 
-    "File has been deleted.": "Fişierul a fost şters.", 
-    "File is too big": "Fişierul este prea mare", 
-    "File not available.": "Fişierul nu este disponibil.", 
-    "File size is limited to": "Dimensiunea fişierului este limitată la", 
-    "File uploaded !": "Fişier încărcat !", 
-    "Filename": "Nume fişier", 
-    "Finalisation": "Finalizare", 
-    "Give the password of this file": "Introdu parola acestui fişier", 
-    "Here is a solution": "Iată o soluţie", 
-    "Information": "Informaţii", 
-    "Installation of Jirafeau": "Instalare Jirafeau", 
-    "Installer script still present": "Scriptul de instalare este încă prezent", 
-    "Internal error during file creation.": "Eroare internă în timpul creării fişierului.", 
-    "Jirafeau Project": "Jirafeau Proiect", 
-    "Jirafeau has an administration interface (through admin.php). You can set a password to access the interface or leave it empty to disable the interface.": "Jirafeau are o interfaţă de administrare(prin admin.php). Poţi seta o parolă pentru accesarea interfeţei sau poţi lăsa parola blank pentru a dezactiva interfaţa.", 
-    "Jirafeau is internationalised. Choose a specific langage or choose Automatic (langage is provided by user's browser).": "Jirafeu este multi-limbă. Alege o limbă sau Automatic(limba este preluată din browser).", 
-    "Jirafeau is now fully operational": "Jirafeau este complet operaţional", 
-    "Jirafeau is setting the website according to the configuration you provided.": "Jirafeau setează site-ul în concordanţă cu configuraţia furnizată.", 
-    "Jirafeau, your web file repository": "Jirafeau, depozitul tău web de fişiere", 
-    "Link deleted": "Link şters", 
-    "List": "Listă", 
-    "List all files": "Listează toate fişierele", 
-    "Login": "Logare", 
-    "Logout": "Deconectare", 
-    "Maximum file size": "Dimensiunea maximă a fişierului", 
-    "Next step": "Următorul pas", 
-    "None": "Nimic", 
-    "Number of cleaned files": "Numărul de fişiere curăţate", 
-    "One day": "O zi", 
-    "One hour": "O oră", 
-    "One minute": "Un minut", 
-    "One month": "O lună", 
-    "One time download": "O singură descărcare", 
-    "One week": "O săptămână", 
-    "One year": "Un an", 
-    "Onetime": "O singură dată", 
-    "Origin": "Origine", 
-    "Password": "Parolă", 
-    "Password protection": "Protecţie cu parolă", 
-    "Please make sure to delete the installer script \"install.php\" before continuing.": "Asigură-te că ai şters scriptul de instalare \"install.php\" înainte de a continua.", 
-    "Preview": "Previzualizare", 
-    "Previous step": "Pasul anterior", 
-    "Retry this step": "Re-încearcă acest pas", 
-    "Search": "Cautare", 
-    "Search a specific link": "Caută un link specific", 
-    "Search files by file hash": "Caută fişiere după hash", 
-    "Search files by name": "Caută fişiere după nume", 
-    "Select a file": "Selectează un fişier", 
-    "Send": "Trimite", 
-    "Size": "Dimensiune", 
-    "Sorry, the admin interface is not enabled.": "Ne pare rău, interfaţa de administrare nu este activată.", 
-    "Sorry, the requested file is not found": "Ne pare rău, fişierul solicitat nu a fost găsit", 
-    "Sorry, you are not authenticated on admin interface.": "Ne pare rău, nu eşti autentificat pe interfaţa de administrare.", 
+    "ACCESS_KO": "Acces refuzat", 
+    "ACTION": "Acţiune", 
+    "ACTIONS": "Acţiuni", 
+    "ADMIN_INTERFACE": "Interfaţă administrare", 
+    "ADMIN_PSW": "Parola de administrare", 
+    "ERR_OCC": "A apărut o eroare.", 
+    "BASE_ADDR": "Adresa de bază", 
+    "USING_SERIVCE": "Utilizând serviciile noastre, accepţi", 
+    "DEF_LANGUAGE": "Alege limba implicită", 
+    "CLEAN": "Curăţă", 
+    "CLEAN_EXPIRED": "Şterge fişierele expirate", 
+    "CLEAN_INCOMPLETE": "Şterge transferurile vechi nefinalizate", 
+    "DATA_DIR": "Director date", 
+    "DEL_FILE_LINKS": "Şterge fişierul şi link-urile", 
+    "DEL_LINK": "Şterge link", 
+    "DELETE_LINK": "Şterge link", 
+    "DELETED_LINKS": "Link-uri şterse", 
+    "DIRECT_DL": "Link de descărcare directă", 
+    "DL": "Descărcare", 
+    "DL_PAGE": "Pagina de descărcare", 
+    "EXPIRE": "Expiră", 
+    "FILE_DELETED": "Fişierul a fost şters.", 
+    "2_BIG": "Fişierul este prea mare", 
+    "FILE_NOT_AVAIL": "Fişierul nu este disponibil.", 
+    "FILE_LIM": "Dimensiunea fişierului este limitată la", 
+    "FILE_UP": "Fişier încărcat !", 
+    "FILENAME": "Nume fişier", 
+    "FINALIZATION": "Finalizare", 
+    "GIMME_PSW": "Introdu parola acestui fişier", 
+    "HERE_SOLUTION": "Iată o soluţie", 
+    "INFO": "Informaţii", 
+    "JI_INSTALL": "Instalare Jirafeau", 
+    "INSTALL_SCRIPT_HERE": "Scriptul de instalare este încă prezent", 
+    "INTERNAL_ERROR_DEL": "Eroare internă în timpul creării fişierului.", 
+    "JI_PROJECT": "Jirafeau Proiect", 
+    "ADMIN_INTERFACE_INFO": "Jirafeau are o interfaţă de administrare(prin admin.php). Poţi seta o parolă pentru accesarea interfeţei sau poţi lăsa parola blank pentru a dezactiva interfaţa.", 
+    "JI_HAZ_LANGAGES": "Jirafeu este multi-limbă. Alege o limbă sau Automatic(limba este preluată din browser).", 
+    "JI_FONCTIONAL": "Jirafeau este complet operaţional", 
+    "SETTING_UP": "Jirafeau setează site-ul în concordanţă cu configuraţia furnizată.", 
+    "JI_WEB_RE": "Jirafeau, depozitul tău web de fişiere", 
+    "LINK_DELETED": "Link şters", 
+    "LIST": "Listă", 
+    "LS_FILES": "Listează toate fişierele", 
+    "LOGIN": "Logare", 
+    "LOGOUT": "Deconectare", 
+    "MAX_FILE_SIZE": "Dimensiunea maximă a fişierului", 
+    "NEXT_STEP": "Următorul pas", 
+    "NONE": "Nimic", 
+    "CLEANED_FILES_CNT": "Numărul de fişiere curăţate", 
+    "1_D": "O zi", 
+    "1_H": "O oră", 
+    "1_MIN": "Un minut", 
+    "1_M": "O lună", 
+    "ONE_TIME_DL": "O singură descărcare", 
+    "1_W": "O săptămână", 
+    "1_Y": "Un an", 
+    "ONETIME": "O singură dată", 
+    "ORIGIN": "Origine", 
+    "PSW": "Parolă", 
+    "PSW_PROTEC": "Protecţie cu parolă", 
+    "PREVIEW": "Previzualizare", 
+    "PREV_STEP": "Pasul anterior", 
+    "RETRY_STEP": "Re-încearcă acest pas", 
+    "SEARCH": "Cautare", 
+    "SEARCH_LINK": "Caută un link specific", 
+    "SEARH_BY_HASH": "Caută fişiere după hash", 
+    "SEARCH_NAME": "Caută fişiere după nume", 
+    "SEL_FILE": "Selectează un fişier", 
+    "SEND": "Trimite", 
+    "SIZE": "Dimensiune", 
+    "NO_ADMIN": "Ne pare rău, interfaţa de administrare nu este activată.", 
+    "FILE_404": "Ne pare rău, fişierul solicitat nu a fost găsit", 
+    "NO_ADMIN_AUTH": "Ne pare rău, nu eşti autentificat pe interfaţa de administrare.", 
     "Term Of Service": "Termenii de utilizare a serviciului", 
-    "The async directory is not writable!": "Directorul async nu este scriptibil!", 
-    "The base address of Jirafeau is the first part of the URL, until (and including) the last slash. For example: \"http://www.example.com/\". Do not forget the trailing slash!": "Adresa de bază Jirafeau este prima parte a URL-ului, până la (incluzând) ultimul slash. De exemplu : \"http://www.example.com/\". Nu uita de slash-ul de la coadă!", 
-    "The data directory is where your files and information about your files will be stored. You should put it outside your web site, or at least restrict the access to this directory. Do not forget the trailing slash!": "Directorul de date reţine fişierele şi datele despre fişiere.Ar trebui să-l ţii în afara website-ului, sau cel puţin să pui restricţii de acces pe acest director. Nu uita de slash-ul de la coadă!", 
-    "The file directory is not writable": "Directorul de fişiere nu are drepturi de scriere", 
-    "The following directory could not be created": "Următorul director nu poate fi creat", 
-    "The following directory is not writable": "Următorul director nu are drepturi de scriere", 
-    "The link directory is not writable": "Directorul de link-uri nu are drepturi de scriere", 
-    "The local configuration file could not be created. Create a <code>lib/config.local.php</code> file and give the write permission to the web server (preferred solution), or give the write permission to the web server on the <code>lib</code> directory.": "Fişierul de configuraţie locală nu poate fi creat. Creează un fişier <code>lib/config.local.php</code> şi dă drepturi de scriere pe el(recomandat), sau acordă drepturi de scriere pe directorul <code>lib</code>.", 
-    "The local configuration is not writable by the web server. Give the write permission to the web server on the '<code>lib/config.local.php</code> file.": "Configuraţia locală nu poate fi editată de serverul web. Dă permisiuni de scriere pe fişierul '<code>lib/config.local.php</code>.", 
-    "The time limit of this file has expired.": "Durata de stocare a fişierului a expirat.", 
-    "This file is valid until the following date": "Acest fişier este valid până la următoarea dată", 
-    "This file was generated by the install process. You can edit it. Please see config.original.php to understand the configuration items.": "Acest fişier a fost generat la instalare. Îl poţi edita. Vezi config.original.php pentru a înţelege elementele de configurare.", 
-    "Time limit": "Limita de timp", 
-    "Type": "Tip", 
-    "Upload date": "Data încărcare", 
-    "Upload password": "Încarcă o parolă", 
-    "Uploading ...": "Se încarcă..", 
-    "View link": "Vizualizare link", 
-    "Warning, this file will self-destruct after being read": "Atenţie, acest fişier se auto-distruge după ce este citit", 
-    "Wrong password.": "Parolă incorectă.", 
-    "You are about to download": "Eşti pe cale să descarci", 
-    "You are now loggued out": "Acum eşti deconectat", 
-    "You should create this directory manually.": "Trebuie să creezi acest director manual.", 
-    "You should give the write permission to the web server on this directory.": "Trebuie să dai permisiuni de scriere pe acest director.", 
-    "day": "zi", 
-    "file": "fişier", 
-    "hour": "oră", 
-    "less than a second": "mai puţin de o secundă", 
-    "link": "link", 
-    "minute": "minut", 
-    "out of": "din", 
-    "powered by Open-Source project Jirafeau": "powered by Jirafeau - proiect open source", 
-    "second": "secundă", 
-    "step": "pas", 
-    "year": "an"
-}
\ No newline at end of file
+    "ASYNC_DIR_W": "Directorul async nu este scriptibil!", 
+    "BASE_ADDR_INFO": "Adresa de bază Jirafeau este prima parte a URL-ului, până la (incluzând) ultimul slash. De exemplu : \"http://www.example.com/\". Nu uita de slash-ul de la coadă!", 
+    "DATA_DIR_EXPLAINATION": "Directorul de date reţine fişierele şi datele despre fişiere.Ar trebui să-l ţii în afara website-ului, sau cel puţin să pui restricţii de acces pe acest director. Nu uita de slash-ul de la coadă!", 
+    "FILE_DIR_W": "Directorul de fişiere nu are drepturi de scriere", 
+    "CANNOT_CREATE_DIR": "Următorul director nu poate fi creat", 
+    "DIR_NOT_W": "Următorul director nu are drepturi de scriere", 
+    "LINK_DIR_W": "Directorul de link-uri nu are drepturi de scriere", 
+    "CONF_SOLUTION": "Fişierul de configuraţie locală nu poate fi creat. Creează un fişier <code>lib/config.local.php</code> şi dă drepturi de scriere pe el(recomandat), sau acordă drepturi de scriere pe directorul <code>lib</code>.", 
+    "CONF_SOLUTION_2": "Configuraţia locală nu poate fi editată de serverul web. Dă permisiuni de scriere pe fişierul '<code>lib/config.local.php</code>.", 
+    "FILE_EXPIRED": "Durata de stocare a fişierului a expirat.", 
+    "VALID_UNTIL": "Acest fişier este valid până la următoarea dată", 
+    "CONF_AUTOGEN_COMMENT": "Acest fişier a fost generat la instalare. Îl poţi edita. Vezi config.original.php pentru a înţelege elementele de configurare.", 
+    "TIME_LIM": "Limita de timp", 
+    "TYPE": "Tip", 
+    "UPLOAD_DATE": "Data încărcare", 
+    "UP_PSW": "Încarcă o parolă", 
+    "UP": "Se încarcă..", 
+    "VIEW_LINK": "Vizualizare link", 
+    "AUTO_DESTRUCT": "Atenţie, acest fişier se auto-distruge după ce este citit", 
+    "BAD_PSW": "Parolă incorectă.", 
+    "NOW_DOWNLOADING": "Eşti pe cale să descarci", 
+    "NOW_LOGOUT": "Acum eşti deconectat", 
+    "MANUAL_CREATE": "Trebuie să creezi acest director manual.", 
+    "GIMME_W": "Trebuie să dai permisiuni de scriere pe acest director.", 
+    "DAY": "zi", 
+    "FILE": "fişier", 
+    "HOUR": "oră", 
+    "LESS_1_SEC": "mai puţin de o secundă", 
+    "LINK": "link", 
+    "MINUTE": "minut", 
+    "OUT_OF": "din", 
+    "POWERED_BY": "powered by Jirafeau - proiect open source", 
+    "SECOND": "secundă", 
+    "STEP": "pas", 
+    "YEAR": "an"
+}
index 81280710ffff0cfbd5c663ee0be7c0b00074507e..ad477e167ada199e86f1958c2417a9ee38151cc9 100644 (file)
 {
-    "Access denied": "Доступ запрещён",
-    "Action": "Действие",
-    "Actions": "Действия",
-    "Admin interface": "Административный интерфейс",
-    "Administration password": "Пароль администратора",
-    "An error occurred.": "Произошла ошибка.",
-    "Base address": "Основной адрес",
-    "By using our services, you accept our": "Используя наши услуги, вы принимаете",
-    "Choose the default language": "Выберите язык по-умолчанию",
-    "Clean": "Очистить",
-    "Clean expired files": "Очистить устаревшие файлы",
-    "Clean old unfinished transfers": "Очистить старые незавершенные передачи",
-    "Data directory": "Папка с данными",
-    "Del file and links": "Удалить файл и ссылки",
-    "Del link": "Удалить ссылку",
-    "Delete link": "Удалить ссылку",
-    "Deleted links": "Удаленные ссылки",
-    "Direct download link": "Прямая ссылка",
-    "Download": "Загрузка",
-    "Download page": "Страница загрузки",
-    "Expire": "Устареет",
-    "File has been deleted.": "Файл был удалён.",
-    "File is too big": "Файл слишком большой",
-    "File not available.": "Файл недоступен.",
-    "File size is limited to": "Размер файла ограничен",
-    "File uploaded !": "Файл загружен !",
-    "Filename": "Имя файла",
-    "Finalisation": "Завершение",
-    "Give the password of this file": "Укажите пароль для этого файла",
-    "Here is a solution": "Вот решение",
-    "Information": "Информация",
-    "Installation of Jirafeau": "Инсталляция Jirafeau",
-    "Installer script still present": "Инсталляционный скрипт все ещё на месте",
-    "Internal error during file creation.": "Внутренняя ошибка при создании файла.",
-    "Jirafeau Project": "Проект Jirafeau",
-    "Jirafeau has an administration interface (through admin.php). You can set a password to access the interface or leave it empty to disable the interface.": "У Jirafeau есть административный интерфейс (через admin.php). Вы можете установить пароль для доступа к этому интерфейсу или оставить поле пустым, чтобы отключить административный интерфейс.",
-    "Jirafeau is internationalised. Choose a specific langage or choose Automatic (langage is provided by user's browser).": "Jirafeau переведён на множество языков. Выберите язык или выберите Автоматически (язык будет взят из настроек браузера пользователя).",
-    "Jirafeau is now fully operational": "Jirafeau теперь полностью готов к работе",
-    "Jirafeau is setting the website according to the configuration you provided.": "Jirafeau настраивает вебсайт в соответствии с конфигурацией, которую вы предоставили.",
-    "Jirafeau, your web file repository": "Jirafeau, ваше веб хранилище файлов",
-    "Link deleted": "Ссылка удалена",
-    "List": "Список",
-    "List all files": "Список всех файлов",
-    "Login": "Логин",
-    "Logout": "Выход",
-    "Maximum file size": "Максимальный размер файла",
-    "Next step": "Следующий шаг",
-    "None": "Нет",
-    "Number of cleaned files": "Количество удаляемых файлов",
-    "One day": "Один день",
-    "One hour": "Один час",
-    "One minute": "Одна минута",
-    "One month": "Один месяц",
-    "One time download": "Однократное скачивание",
-    "One week": "Одна неделя",
-    "One year": "Один год",
-    "Onetime": "Однократное",
-    "Origin": "Источник",
-    "Password": "Пароль",
-    "Password protection": "Защита паролем",
-    "Please make sure to delete the installer script \"install.php\" before continuing.": "Пожалуйста, проверьте, что вы удалили скрипт \"install.php\" прежде, чем продолжить.",
-    "Preview": "Просмотр",
-    "Previous step": "Предыдущий шаг",
-    "Retry this step": "Повторить этот шаг",
-    "Search": "Поиск",
-    "Search a specific link": "Искать конкретную ссылку",
-    "Search files by file hash": "Искать файлы по хэшу",
-    "Search files by name": "Искать файлы по имени",
-    "Select a file": "Выберите файл",
-    "Send": "Отправить",
-    "Size": "Размер",
-    "Sorry, the admin interface is not enabled.": "Извините, административный интерфейс не включен (пароль не задан).",
-    "Sorry, the requested file is not found": "Извините, запрошенный файл не найден",
-    "Sorry, you are not authenticated on admin interface.": "Извините, но аутентификация для административного интерфейса не пройдена.",
+    "ACCESS_KO": "Доступ запрещён",
+    "ACTION": "Действие",
+    "ACTIONS": "Действия",
+    "ADMIN_INTERFACE": "Административный интерфейс",
+    "ADMIN_PSW": "Пароль администратора",
+    "ERR_OCC": "Произошла ошибка.",
+    "BASE_ADDR": "Основной адрес",
+    "USING_SERIVCE": "Используя наши услуги, вы принимаете",
+    "DEF_LANGUAGE": "Выберите язык по-умолчанию",
+    "CLEAN": "Очистить",
+    "CLEAN_EXPIRED": "Очистить устаревшие файлы",
+    "CLEAN_INCOMPLETE": "Очистить старые незавершенные передачи",
+    "DATA_DIR": "Папка с данными",
+    "DEL_FILE_LINKS": "Удалить файл и ссылки",
+    "DEL_LINK": "Удалить ссылку",
+    "DELETE_LINK": "Удалить ссылку",
+    "DELETED_LINKS": "Удаленные ссылки",
+    "DIRECT_DL": "Прямая ссылка",
+    "DL": "Загрузка",
+    "DL_PAGE": "Страница загрузки",
+    "EXPIRE": "Устареет",
+    "FILE_DELETED": "Файл был удалён.",
+    "2_BIG": "Файл слишком большой",
+    "FILE_NOT_AVAIL": "Файл недоступен.",
+    "FILE_LIM": "Размер файла ограничен",
+    "FILE_UP": "Файл загружен !",
+    "FILENAME": "Имя файла",
+    "FINALIZATION": "Завершение",
+    "GIMME_PSW": "Укажите пароль для этого файла",
+    "HERE_SOLUTION": "Вот решение",
+    "INFO": "Информация",
+    "JI_INSTALL": "Инсталляция Jirafeau",
+    "INSTALL_SCRIPT_HERE": "Инсталляционный скрипт все ещё на месте",
+    "INTERNAL_ERROR_DEL": "Внутренняя ошибка при создании файла.",
+    "JI_PROJECT": "Проект Jirafeau",
+    "ADMIN_INTERFACE_INFO": "У Jirafeau есть административный интерфейс (через admin.php). Вы можете установить пароль для доступа к этому интерфейсу или оставить поле пустым, чтобы отключить административный интерфейс.",
+    "JI_HAZ_LANGAGES": "Jirafeau переведён на множество языков. Выберите язык или выберите Автоматически (язык будет взят из настроек браузера пользователя).",
+    "JI_FONCTIONAL": "Jirafeau теперь полностью готов к работе",
+    "SETTING_UP": "Jirafeau настраивает вебсайт в соответствии с конфигурацией, которую вы предоставили.",
+    "JI_WEB_RE": "Jirafeau, ваше веб хранилище файлов",
+    "LINK_DELETED": "Ссылка удалена",
+    "LIST": "Список",
+    "LS_FILES": "Список всех файлов",
+    "LOGIN": "Логин",
+    "LOGOUT": "Выход",
+    "MAX_FILE_SIZE": "Максимальный размер файла",
+    "NEXT_STEP": "Следующий шаг",
+    "NONE": "Нет",
+    "CLEANED_FILES_CNT": "Количество удаляемых файлов",
+    "1_D": "Один день",
+    "1_H": "Один час",
+    "1_MIN": "Одна минута",
+    "1_M": "Один месяц",
+    "ONE_TIME_DL": "Однократное скачивание",
+    "1_W": "Одна неделя",
+    "1_Y": "Один год",
+    "ONETIME": "Однократное",
+    "ORIGIN": "Источник",
+    "PSW": "Пароль",
+    "PSW_PROTEC": "Защита паролем",
+    "PREVIEW": "Просмотр",
+    "PREV_STEP": "Предыдущий шаг",
+    "RETRY_STEP": "Повторить этот шаг",
+    "SEARCH": "Поиск",
+    "SEARCH_LINK": "Искать конкретную ссылку",
+    "SEARH_BY_HASH": "Искать файлы по хэшу",
+    "SEARCH_NAME": "Искать файлы по имени",
+    "SEL_FILE": "Выберите файл",
+    "SEND": "Отправить",
+    "SIZE": "Размер",
+    "NO_ADMIN": "Извините, административный интерфейс не включен (пароль не задан).",
+    "FILE_404": "Извините, запрошенный файл не найден",
+    "NO_ADMIN_AUTH": "Извините, но аутентификация для административного интерфейса не пройдена.",
     "Term Of Service": "Правила использования",
-    "The async directory is not writable!": "Не разрешена запись в папку async!",
-    "The base address of Jirafeau is the first part of the URL, until (and including) the last slash. For example: \"http://www.example.com/\". Do not forget the trailing slash!": "Основной адрес Jurafeau - это часть URL до последнего слэша (включая слэш). Например: \"http://www.example.com/\". Не забудьте слэш в конце!",
-    "The data directory is where your files and information about your files will be stored. You should put it outside your web site, or at least restrict the access to this directory. Do not forget the trailing slash!": "Папка с данными - это место, где будут храниться ваши файлы и информация о них. Лучше переместить её за пределы дерева вашего сайта или как минимум ограничить доступ к ней средствами веб-сервера. Не забудьте слэш в конце!",
-    "The file directory is not writable": "Не разрешена запись в папку file",
-    "The following directory could not be created": "Следующая папка не может быть создана",
-    "The following directory is not writable": "Следующая папка недоступна для записи",
-    "The link directory is not writable": "Не разрешена запись в папку link",
-    "The local configuration file could not be created. Create a <code>lib/config.local.php</code> file and give the write permission to the web server (preferred solution), or give the write permission to the web server on the <code>lib</code> directory.": "Невозможно создать локальный файл конфигурации. Создайте файл <code>lib/config.local.php</code> и дайте веб-серверу права на запись в него (лучший вариант) или дайте веб-серверу права на запись в папку <code>lib</code>.",
-    "The local configuration is not writable by the web server. Give the write permission to the web server on the '<code>lib/config.local.php</code> file.": "Веб-сервер не может записать локальный файл конфигурации. Дайте веб-серверу права на запись в файл <code>lib/config.local.php</code>.",
-    "The time limit of this file has expired.": "Ограничение по времени для этого файла истекло.",
-    "This file is valid until the following date": "Файл будет доступен до следующей даты",
-    "This file was generated by the install process. You can edit it. Please see config.original.php to understand the configuration items.": "Этот файл был создан в процессе установки. Вы можете его редактировать. Пожалуйста загляните в config.original.php чтобы понять значение параметров конфигурации.",
-    "Time limit": "Ограничение по времени",
-    "Type": "Тип",
-    "Upload date": "Дата загрузки",
-    "Upload password": "Пароль загрузки",
-    "Uploading ...": "Загрузка ...",
-    "View link": "Посмотреть ссылку",
-    "Warning, this file will self-destruct after being read": "Внимание, этот файл будет автоматически удален после прочтения",
-    "Wrong password.": "Пароль неверный.",
-    "You are about to download": "Ваша загрузка сейчас начнется",
-    "You are now loggued out": "Вы выполнили выход",
-    "You should create this directory manually.": "Вам необходимо создать эту папку вручную.",
-    "You should give the write permission to the web server on this directory.": "Необходимо дать веб-серверу права на запись в эту папку.",
-    "day": "день",
-    "file": "файл",
-    "hour": "час",
-    "less than a second": "меньше секунды",
-    "link": "ссылка",
-    "minute": "минута",
-    "out of": "из",
-    "powered by Open-Source project Jirafeau": "работает на проекте с открытым кодом Jirafeau",
-    "second": "секунда",
-    "step": "шаг",
-    "year": "год"
+    "ASYNC_DIR_W": "Не разрешена запись в папку async!",
+    "BASE_ADDR_INFO": "Основной адрес Jurafeau - это часть URL до последнего слэша (включая слэш). Например: \"http://www.example.com/\". Не забудьте слэш в конце!",
+    "DATA_DIR_EXPLAINATION": "Папка с данными - это место, где будут храниться ваши файлы и информация о них. Лучше переместить её за пределы дерева вашего сайта или как минимум ограничить доступ к ней средствами веб-сервера. Не забудьте слэш в конце!",
+    "FILE_DIR_W": "Не разрешена запись в папку file",
+    "CANNOT_CREATE_DIR": "Следующая папка не может быть создана",
+    "DIR_NOT_W": "Следующая папка недоступна для записи",
+    "LINK_DIR_W": "Не разрешена запись в папку link",
+    "CONF_SOLUTION": "Невозможно создать локальный файл конфигурации. Создайте файл <code>lib/config.local.php</code> и дайте веб-серверу права на запись в него (лучший вариант) или дайте веб-серверу права на запись в папку <code>lib</code>.",
+    "CONF_SOLUTION_2": "Веб-сервер не может записать локальный файл конфигурации. Дайте веб-серверу права на запись в файл <code>lib/config.local.php</code>.",
+    "FILE_EXPIRED": "Ограничение по времени для этого файла истекло.",
+    "VALID_UNTIL": "Файл будет доступен до следующей даты",
+    "CONF_AUTOGEN_COMMENT": "Этот файл был создан в процессе установки. Вы можете его редактировать. Пожалуйста загляните в config.original.php чтобы понять значение параметров конфигурации.",
+    "TIME_LIM": "Ограничение по времени",
+    "TYPE": "Тип",
+    "UPLOAD_DATE": "Дата загрузки",
+    "UP_PSW": "Пароль загрузки",
+    "UP": "Загрузка ...",
+    "VIEW_LINK": "Посмотреть ссылку",
+    "AUTO_DESTRUCT": "Внимание, этот файл будет автоматически удален после прочтения",
+    "BAD_PSW": "Пароль неверный.",
+    "NOW_DOWNLOADING": "Ваша загрузка сейчас начнется",
+    "NOW_LOGOUT": "Вы выполнили выход",
+    "MANUAL_CREATE": "Вам необходимо создать эту папку вручную.",
+    "GIMME_W": "Необходимо дать веб-серверу права на запись в эту папку.",
+    "DAY": "день",
+    "FILE": "файл",
+    "HOUR": "час",
+    "LESS_1_SEC": "меньше секунды",
+    "LINK": "ссылка",
+    "MINUTE": "минута",
+    "OUT_OF": "из",
+    "POWERED_BY": "работает на проекте с открытым кодом Jirafeau",
+    "SECOND": "секунда",
+    "STEP": "шаг",
+    "YEAR": "год"
 }
index b0729d0fa551d75c5ec97999e962ca07233ebdcf..6e5c26115e4d62eabd3b367ce3c1493d3fdf73ad 100644 (file)
 {
-    "Jirafeau, your web file repository": "",
-    "Select a file": "",
-    "Send": "",
-    "Uploading ...": "",
-    "One time download": "",
-    "Password": "",
-    "Time limit": "",
-    "Maximum file size": "",
-    "powered by Open-Source project Jirafeau": "",
-    "Made with": "",
-    "Jirafeau Project": "",
-    "One minute": "",
-    "One hour": "",
-    "One day": "",
-    "One week": "",
-    "One month": "",
-    "One quarter": "",
-    "One year": "",
-    "None": "",
-    "Upload password": "",
-    "File is too big": "",
-    "File size is limited to": "",
-    "The file directory is not writable": "",
-    "The link directory is not writable": "",
-    "The async directory is not writable!": "",
-    "Installer script still present": "",
-    "Please make sure to delete the installer script \"install.php\" before continuing.": "",
-    "An error occurred.": "",
-    "File uploaded !": "",
-    "Download page": "",
-    "This file is valid until the following date": "",
-    "View link": "",
-    "Direct download link": "",
-    "Delete link": "",
-    "Download": "",
-    "Preview": "",
-    "Sorry, the requested file is not found": "",
-    "File not available.": "",
-    "File has been deleted.": "",
-    "The time limit of this file has expired.": "",
-    "Password protection": "",
-    "Give the password of this file": "",
-    "Access denied": "",
-    "You are about to download": "",
-    "By using our services, you accept our": "",
-    "Terms of Service": "",
-    "Warning, this file will self-destruct after being read": "",
-    "Internal error during file creation.": "",
-
-    "This file was generated by the install process. You can edit it. Please see config.original.php to understand the configuration items.": "",
-    "The following directory could not be created": "",
-    "You should create this directory manually.": "",
-    "The following directory is not writable": "",
-    "You should give the write permission to the web server on this directory.": "",
-    "Here is a solution": "",
-    "The local configuration file could not be created. Create a <code>lib/config.local.php</code> file and give the write permission to the web server (preferred solution), or give the write permission to the web server on the <code>lib</code> directory.": "",
-    "The local configuration is not writable by the web server. Give the write permission to the web server on the '<code>lib/config.local.php</code> file.": "",
-    "Installation of Jirafeau": "",
-    "step": "",
-    "out of": "",
-    "Administration password": "",
-    "Finalisation": "",
-    "Jirafeau is setting the website according to the configuration you provided.": "",
-    "Previous step": "",
-    "Retry this step": "",
-    "Jirafeau is now fully operational": "",
-    "Information": "",
-    "The base address of Jirafeau is the first part of the URL, until (and including) the last slash. For example: \"http://www.example.com/\". Do not forget the trailing slash!": "",
-    "Base address": "",
-    "The data directory is where your files and information about your files will be stored. You should put it outside your web site, or at least restrict the access to this directory. Do not forget the trailing slash!": "",
-    "Data directory": "",
-    "Jirafeau is internationalised. Choose a specific langage or choose Automatic (langage is provided by user's browser).": "",
-    "Choose the default language": "",
-    "Next step": "",
-    "Jirafeau has an administration interface (through admin.php). You can set a password to access the interface or leave it empty to disable the interface.": "",
-    "Administration password": "",
-
-    "Sorry, the admin interface is not enabled.": "",
-    "Sorry, you are not authenticated on admin interface.": "",
-    "Login": "",
-    "Wrong password.": "",
-    "Admin interface": "",
-    "Clean expired files": "",
-    "Clean old unfinished transfers": "",
-    "Clean": "",
-    "Search files by name": "",
-    "Search": "",
-    "List all files": "",
-    "List": "",
-    "Actions": "",
-    "Search files by file hash": "",
-    "Search a specific link": "",
-    "Number of cleaned files": "",
-    "Logout": "",
-    "You are now loggued out": "",
-    "Link deleted": "",
-    "Filename": "",
-    "file": "",
-    "link": "",
-    "Type": "",
-    "Size": "",
-    "Expire": "",
-    "Onetime": "",
-    "Upload date": "",
-    "Origin": "",
-    "Action": "",
-    "Del link": "",
-    "Del file and links": "",
-    "Deleted links": "",
-    "year": "",
-    "day": "",
-    "minute": "",
-    "hour": "",
-    "second": "",
-    "less than a second": ""
+    "JI_WEB_RE": "",
+    "SEL_FILE": "",
+    "SEND": "",
+    "UP": "",
+    "ONE_TIME_DL": "",
+    "PSW": "",
+    "TIME_LIM": "",
+    "MAX_FILE_SIZE": "",
+    "POWERED_BY": "",
+    "MADE_WITH": "",
+    "JI_PROJECT": "",
+    "1_MIN": "",
+    "1_H": "",
+    "1_D": "",
+    "1_W": "",
+    "1_M": "",
+    "1_Q": "",
+    "1_Y": "",
+    "NONE": "",
+    "UP_PSW": "",
+    "2_BIG": "",
+    "FILE_LIM": "",
+    "FILE_DIR_W": "",
+    "LINK_DIR_W": "",
+    "ASYNC_DIR_W": "",
+    "INSTALL_SCRIPT_HERE": "",
+    "ERR_OCC": "",
+    "FILE_UP": "",
+    "DL_PAGE": "",
+    "VALID_UNTIL": "",
+    "VIEW_LINK": "",
+    "DIRECT_DL": "",
+    "DELETE_LINK": "",
+    "DL": "",
+    "PREVIEW": "",
+    "FILE_404": "",
+    "FILE_NOT_AVAIL": "",
+    "FILE_DELETED": "",
+    "FILE_EXPIRED": "",
+    "PSW_PROTEC": "",
+    "GIMME_PSW": "",
+    "ACCESS_KO": "",
+    "NOW_DOWNLOADING": "",
+    "USING_SERIVCE": "",
+    "TOS": "",
+    "AUTO_DESTRUCT": "",
+    "INTERNAL_ERROR_DEL": "",
+    "CONF_AUTOGEN_COMMENT": "",
+    "CANNOT_CREATE_DIR": "",
+    "MANUAL_CREATE": "",
+    "DIR_NOT_W": "",
+    "GIMME_W": "",
+    "HERE_SOLUTION": "",
+    "CONF_SOLUTION": "",
+    "CONF_SOLUTION_2": "",
+    "JI_INSTALL": "",
+    "STEP": "",
+    "OUT_OF": "",
+    "ADMIN_PSW": "",
+    "FINALIZATION": "",
+    "SETTING_UP": "",
+    "PREV_STEP": "",
+    "RETRY_STEP": "",
+    "JI_FONCTIONAL": "",
+    "INFO": "",
+    "BASE_ADDR_INFO": "",
+    "BASE_ADDR": "",
+    "DATA_DIR_EXPLAINATION": "",
+    "DATA_DIR": "",
+    "JI_HAZ_LANGAGES": "",
+    "DEF_LANGUAGE": "",
+    "NEXT_STEP": "",
+    "ADMIN_INTERFACE_INFO": "",
+    "NO_ADMIN": "",
+    "NO_ADMIN_AUTH": "",
+    "LOGIN": "",
+    "BAD_PSW": "",
+    "ADMIN_INTERFACE": "",
+    "CLEAN_EXPIRED": "",
+    "CLEAN_INCOMPLETE": "",
+    "CLEAN": "",
+    "SEARCH_NAME": "",
+    "SEARCH": "",
+    "LS_FILES": "",
+    "LIST": "",
+    "ACTIONS": "",
+    "SEARH_BY_HASH": "",
+    "SEARCH_LINK": "",
+    "CLEANED_FILES_CNT": "",
+    "LOGOUT": "",
+    "NOW_LOGOUT": "",
+    "LINK_DELETED": "",
+    "FILENAME": "",
+    "FILE": "",
+    "LINK": "",
+    "TYPE": "",
+    "SIZE": "",
+    "EXPIRE": "",
+    "ONETIME": "",
+    "UPLOAD_DATE": "",
+    "ORIGIN": "",
+    "ACTION": "",
+    "DEL_LINK": "",
+    "DEL_FILE_LINKS": "",
+    "DELETED_LINKS": "",
+    "YEAR": "",
+    "DAY": "",
+    "MINUTE": "",
+    "HOUR": "",
+    "SECOND": "",
+    "LESS_1_SEC": ""
 }
index 704fff2c7bfad204e4cbcc545914a6524b64632d..5bacb445d3683277445f94f62ae7f7e12ea140b1 100644 (file)
 {
-    "Access denied": "Prístup odoprený",
-    "Action": "Akcia",
-    "Actions": "Akcie",
-    "Admin interface": "Rozhranie pre správu",
-    "Administration password": "Heslo správcu",
-    "An error occurred.": "Vyskytla sa chyba.",
-    "Base address": "Základná adresa",
-    "By using our services, you accept our": "Používaním tejto služby akceptujete naše",
-    "Choose the default language": "Vyberte si predvolený jazyk",
-    "Clean": "Vyčistiť",
-    "Clean expired files": "Zmazať exspirované súbory",
-    "Clean old unfinished transfers": "Vyčistiť staré nedokončené prenosy",
-    "Data directory": "Adresár data",
-    "Del file and links": "Zmazať súbor aj odkazy",
-    "Del link": "Zmazať odkaz",
-    "Delete link": "Zmazať odkaz",
-    "Deleted links": "Zmazané odkazy",
-    "Direct download link": "Priamy odkaz na stiahnutie",
-    "Download": "Stiahnuť",
-    "Download page": "Stránka so súborom",
-    "Expire": "Platnosť do",
-    "File has been deleted.": "Súbor bol zmazaný.",
-    "File is too big": "Súbor je príliš veľký",
-    "File not available.": "Súbor je nedostupný.",
-    "File size is limited to": "Veľkosť súboru je obmedzená na",
-    "File uploaded !": "Súbor bol odoslaný!",
-    "Filename": "Názov súboru",
-    "Finalisation": "Finalizácia",
-    "Give the password of this file": "Zadajte heslo k tomuto súboru",
-    "Here is a solution": "Tu je riešenie",
-    "Information": "Informácie",
-    "Installation of Jirafeau": "Inštalácia Jirafeau",
-    "Installer script still present": "Inštalačný skript stále existuje",
-    "Internal error during file creation.": "Interná chyba počas vytvárania súboru.",
-    "Jirafeau Project": "Projekt Jirafeau",
-    "Jirafeau has an administration interface (through admin.php). You can set a password to access the interface or leave it empty to disable the interface.": "Jirafeau má rozhranie pre správcu (admin.php). Môžete buď nastaviť heslo pre prístup k nemu, alebo ho nechať prázdne. Ak je prázdne, rozhranie pre správcu je vypnuté.",
-    "Jirafeau is internationalised. Choose a specific langage or choose Automatic (langage is provided by user's browser).": "Aplikácia Jirafeau je preložená do viacerých jazykov. Vyberte si konkrétny jazyk alebo si zvoľte Automatický (jazykové nastavenie sa získa z používateľovho prehliadača).",
-    "Jirafeau is now fully operational": "Web Jirafeau je teraz plne funkčný",
-    "Jirafeau is setting the website according to the configuration you provided.": "Jirafeau nastavuje web na základe informácií, ktoré ste poskytli.",
-    "Jirafeau, your web file repository": "Jirafeau, Vaše webové úložisko",
-    "Link deleted": "Odkaz bol zmazaný",
-    "List": "Zoznam",
-    "List all files": "Zobraziť všetky súbory",
-    "Login": "Prihlásenie",
-    "Logout": "Odhlásiť",
-    "Maximum file size": "Maximálna veľkosť súboru",
-    "Next step": "Ďalší krok",
-    "None": "Neobmedzená",
-    "Number of cleaned files": "Počet vyčistených súborov",
-    "One day": "Jeden deň",
-    "One hour": "Jedna hodina",
-    "One minute": "Jedna minúta",
-    "One month": "Jeden mesiac",
-    "One time download": "Jednorazové stiahnutie",
-    "One week": "Jeden týždeň",
-    "One year": "Jeden rok",
-    "Onetime": "Na jedno stiahnutie",
-    "Origin": "Pôvod",
-    "Password": "Heslo",
-    "Password protection": "Ochrana heslom",
-    "Please make sure to delete the installer script \"install.php\" before continuing.": "Uistite sa, že ste zmazali skript \"install.php\" pred tým, ako budete pokračovať, prosím.",
-    "Preview": "Náhľad",
-    "Previous step": "Predchádzajúci krok",
-    "Retry this step": "Opakovať tento krok",
-    "Search": "Hľadať",
-    "Search a specific link": "Hľadať konkrétny odkaz",
-    "Search files by file hash": "Hľadať súbor podľa hash",
-    "Search files by name": "Hľadať súbory podľa mena",
-    "Select a file": "Vybrať súbor",
-    "Send": "Poslať",
-    "Size": "Veľkosť",
-    "Sorry, the admin interface is not enabled.": "Prepáčte, rozhranie pre správcu nie je povolené.",
-    "Sorry, the requested file is not found": "Prepáčte, požadovaný súbor nebol nájdený",
-    "Sorry, you are not authenticated on admin interface.": "Prepáčte, nie ste autorizovaní použiť rozhranie pre správu.",
+    "ACCESS_KO": "Prístup odoprený",
+    "ACTION": "Akcia",
+    "ACTIONS": "Akcie",
+    "ADMIN_INTERFACE": "Rozhranie pre správu",
+    "ADMIN_PSW": "Heslo správcu",
+    "ERR_OCC": "Vyskytla sa chyba.",
+    "BASE_ADDR": "Základná adresa",
+    "USING_SERIVCE": "Používaním tejto služby akceptujete naše",
+    "DEF_LANGUAGE": "Vyberte si predvolený jazyk",
+    "CLEAN": "Vyčistiť",
+    "CLEAN_EXPIRED": "Zmazať exspirované súbory",
+    "CLEAN_INCOMPLETE": "Vyčistiť staré nedokončené prenosy",
+    "DATA_DIR": "Adresár data",
+    "DEL_FILE_LINKS": "Zmazať súbor aj odkazy",
+    "DEL_LINK": "Zmazať odkaz",
+    "DELETE_LINK": "Zmazať odkaz",
+    "DELETED_LINKS": "Zmazané odkazy",
+    "DIRECT_DL": "Priamy odkaz na stiahnutie",
+    "DL": "Stiahnuť",
+    "DL_PAGE": "Stránka so súborom",
+    "EXPIRE": "Platnosť do",
+    "FILE_DELETED": "Súbor bol zmazaný.",
+    "2_BIG": "Súbor je príliš veľký",
+    "FILE_NOT_AVAIL": "Súbor je nedostupný.",
+    "FILE_LIM": "Veľkosť súboru je obmedzená na",
+    "FILE_UP": "Súbor bol odoslaný!",
+    "FILENAME": "Názov súboru",
+    "FINALIZATION": "Finalizácia",
+    "GIMME_PSW": "Zadajte heslo k tomuto súboru",
+    "HERE_SOLUTION": "Tu je riešenie",
+    "INFO": "Informácie",
+    "JI_INSTALL": "Inštalácia Jirafeau",
+    "INSTALL_SCRIPT_HERE": "Inštalačný skript stále existuje",
+    "INTERNAL_ERROR_DEL": "Interná chyba počas vytvárania súboru.",
+    "JI_PROJECT": "Projekt Jirafeau",
+    "ADMIN_INTERFACE_INFO": "Jirafeau má rozhranie pre správcu (admin.php). Môžete buď nastaviť heslo pre prístup k nemu, alebo ho nechať prázdne. Ak je prázdne, rozhranie pre správcu je vypnuté.",
+    "JI_HAZ_LANGAGES": "Aplikácia Jirafeau je preložená do viacerých jazykov. Vyberte si konkrétny jazyk alebo si zvoľte Automatický (jazykové nastavenie sa získa z používateľovho prehliadača).",
+    "JI_FONCTIONAL": "Web Jirafeau je teraz plne funkčný",
+    "SETTING_UP": "Jirafeau nastavuje web na základe informácií, ktoré ste poskytli.",
+    "JI_WEB_RE": "Jirafeau, Vaše webové úložisko",
+    "LINK_DELETED": "Odkaz bol zmazaný",
+    "LIST": "Zoznam",
+    "LS_FILES": "Zobraziť všetky súbory",
+    "LOGIN": "Prihlásenie",
+    "LOGOUT": "Odhlásiť",
+    "MAX_FILE_SIZE": "Maximálna veľkosť súboru",
+    "NEXT_STEP": "Ďalší krok",
+    "NONE": "Neobmedzená",
+    "CLEANED_FILES_CNT": "Počet vyčistených súborov",
+    "1_D": "Jeden deň",
+    "1_H": "Jedna hodina",
+    "1_MIN": "Jedna minúta",
+    "1_M": "Jeden mesiac",
+    "ONE_TIME_DL": "Jednorazové stiahnutie",
+    "1_W": "Jeden týždeň",
+    "1_Y": "Jeden rok",
+    "ONETIME": "Na jedno stiahnutie",
+    "ORIGIN": "Pôvod",
+    "PSW": "Heslo",
+    "PSW_PROTEC": "Ochrana heslom",
+    "PREVIEW": "Náhľad",
+    "PREV_STEP": "Predchádzajúci krok",
+    "RETRY_STEP": "Opakovať tento krok",
+    "SEARCH": "Hľadať",
+    "SEARCH_LINK": "Hľadať konkrétny odkaz",
+    "SEARH_BY_HASH": "Hľadať súbor podľa hash",
+    "SEARCH_NAME": "Hľadať súbory podľa mena",
+    "SEL_FILE": "Vybrať súbor",
+    "SEND": "Poslať",
+    "SIZE": "Veľkosť",
+    "NO_ADMIN": "Prepáčte, rozhranie pre správcu nie je povolené.",
+    "FILE_404": "Prepáčte, požadovaný súbor nebol nájdený",
+    "NO_ADMIN_AUTH": "Prepáčte, nie ste autorizovaní použiť rozhranie pre správu.",
     "Term Of Service": "Podmienky služby",
-    "The async directory is not writable!": "Nie je možné zapisovať do adresára async!",
-    "The base address of Jirafeau is the first part of the URL, until (and including) the last slash. For example: \"http://www.example.com/\". Do not forget the trailing slash!": "Základná adresa Jirafeau je prvá časť URL až po posledné lomítko (vrátane). Napr. \"http://www.example.org/\". Koncové lomítko je povinné!",
-    "The data directory is where your files and information about your files will be stored. You should put it outside your web site, or at least restrict the access to this directory. Do not forget the trailing slash!": "Adresár \"data\" obsahuje všetky uložené súbory a informácie o nich. Obsah adresára nesmie byť dostupný cez HTTP (uložte ho inam ako je koreňový adresár web servera, prípadne obmedzte prístup napr. pomocou .htaccess). Cesta musí končiť lomítkom!",
-    "The file directory is not writable": "Nie je možné zapisovať do zoznamu súborov",
-    "The following directory could not be created": "Adresár sa nepodarilo vytvoriť",
-    "The following directory is not writable": "Do nasledujúceho adresáru nie je možné zapisovať",
-    "The link directory is not writable": "Nie je možné zapisovať do súboru so zoznamom odkazov",
-    "The local configuration file could not be created. Create a <code>lib/config.local.php</code> file and give the write permission to the web server (preferred solution), or give the write permission to the web server on the <code>lib</code> directory.": "Nepodarilo sa vytvoriť lokálny konfiguračný súbor. Vytvorte súbor <code>lib/config.local.php</code> a nastavte oprávnenia na zápis do neho pre web server (preferované riešenie), alebo dajte web serveru prístup na zápis do adresára <code>lib</code>.",
-    "The local configuration is not writable by the web server. Give the write permission to the web server on the '<code>lib/config.local.php</code> file.": "Web server nemôže zapisovať do súboru s lokálnou konfiguráciou. Dajte web serveru oprávnenie na zápis do súboru '<code>lib/config.local.php</code>.",
-    "The time limit of this file has expired.": "Platnosť daného súboru vypršala.",
-    "This file is valid until the following date": "Súbor exspiruje",
-    "This file was generated by the install process. You can edit it. Please see config.original.php to understand the configuration items.": "Tento súbor bol vygenerovaný inštalátorom. Môžete ho upraviť podľa potreby. Vysvetlivky ku konfiguračným parametrom nájdete v súbore config.original.php.",
-    "Time limit": "Doba olatnosti",
-    "Type": "Typ",
-    "Upload date": "Dátum nahratia",
-    "Upload password": "Heslo k súboru",
-    "Uploading ...": "Odosielanie ...",
-    "View link": "Zobraziť odkaz",
-    "Warning, this file will self-destruct after being read": "Pozor, tento súbor bude po prečítaní zmazaný",
-    "Wrong password.": "Nesprávne heslo.",
-    "You are about to download": "Tu si môžete stiahnuť",
-    "You are now loggued out": "Boli ste odhlásení",
-    "You should create this directory manually.": "Tento adresár musíte vytvoriť ručne.",
-    "You should give the write permission to the web server on this directory.": "Mali by ste dať oprávnenie na prístup k tomuto adresáru používateľovi, ktorý spúšťa web server.",
-    "day": "deň",
-    "file": "súbor",
-    "hour": "hodina",
-    "less than a second": "menej ako sekunda",
-    "link": "odkaz",
-    "minute": "minúta",
-    "out of": "z",
-    "powered by Open-Source project Jirafeau": "poskytované open source projektom Jirafeau",
-    "second": "sekunda",
-    "step": "krok",
-    "year": "rok"
+    "ASYNC_DIR_W": "Nie je možné zapisovať do adresára async!",
+    "BASE_ADDR_INFO": "Základná adresa Jirafeau je prvá časť URL až po posledné lomítko (vrátane). Napr. \"http://www.example.org/\". Koncové lomítko je povinné!",
+    "DATA_DIR_EXPLAINATION": "Adresár \"data\" obsahuje všetky uložené súbory a informácie o nich. Obsah adresára nesmie byť dostupný cez HTTP (uložte ho inam ako je koreňový adresár web servera, prípadne obmedzte prístup napr. pomocou .htaccess). Cesta musí končiť lomítkom!",
+    "FILE_DIR_W": "Nie je možné zapisovať do zoznamu súborov",
+    "CANNOT_CREATE_DIR": "Adresár sa nepodarilo vytvoriť",
+    "DIR_NOT_W": "Do nasledujúceho adresáru nie je možné zapisovať",
+    "LINK_DIR_W": "Nie je možné zapisovať do súboru so zoznamom odkazov",
+    "CONF_SOLUTION": "Nepodarilo sa vytvoriť lokálny konfiguračný súbor. Vytvorte súbor <code>lib/config.local.php</code> a nastavte oprávnenia na zápis do neho pre web server (preferované riešenie), alebo dajte web serveru prístup na zápis do adresára <code>lib</code>.",
+    "CONF_SOLUTION_2": "Web server nemôže zapisovať do súboru s lokálnou konfiguráciou. Dajte web serveru oprávnenie na zápis do súboru '<code>lib/config.local.php</code>.",
+    "FILE_EXPIRED": "Platnosť daného súboru vypršala.",
+    "VALID_UNTIL": "Súbor exspiruje",
+    "CONF_AUTOGEN_COMMENT": "Tento súbor bol vygenerovaný inštalátorom. Môžete ho upraviť podľa potreby. Vysvetlivky ku konfiguračným parametrom nájdete v súbore config.original.php.",
+    "TIME_LIM": "Doba olatnosti",
+    "TYPE": "Typ",
+    "UPLOAD_DATE": "Dátum nahratia",
+    "UP_PSW": "Heslo k súboru",
+    "UP": "Odosielanie ...",
+    "VIEW_LINK": "Zobraziť odkaz",
+    "AUTO_DESTRUCT": "Pozor, tento súbor bude po prečítaní zmazaný",
+    "BAD_PSW": "Nesprávne heslo.",
+    "NOW_DOWNLOADING": "Tu si môžete stiahnuť",
+    "NOW_LOGOUT": "Boli ste odhlásení",
+    "MANUAL_CREATE": "Tento adresár musíte vytvoriť ručne.",
+    "GIMME_W": "Mali by ste dať oprávnenie na prístup k tomuto adresáru používateľovi, ktorý spúšťa web server.",
+    "DAY": "deň",
+    "FILE": "súbor",
+    "HOUR": "hodina",
+    "LESS_1_SEC": "menej ako sekunda",
+    "LINK": "odkaz",
+    "MINUTE": "minúta",
+    "OUT_OF": "z",
+    "POWERED_BY": "poskytované open source projektom Jirafeau",
+    "SECOND": "sekunda",
+    "STEP": "krok",
+    "YEAR": "rok"
 }
index b0729d0fa551d75c5ec97999e962ca07233ebdcf..6e5c26115e4d62eabd3b367ce3c1493d3fdf73ad 100644 (file)
 {
-    "Jirafeau, your web file repository": "",
-    "Select a file": "",
-    "Send": "",
-    "Uploading ...": "",
-    "One time download": "",
-    "Password": "",
-    "Time limit": "",
-    "Maximum file size": "",
-    "powered by Open-Source project Jirafeau": "",
-    "Made with": "",
-    "Jirafeau Project": "",
-    "One minute": "",
-    "One hour": "",
-    "One day": "",
-    "One week": "",
-    "One month": "",
-    "One quarter": "",
-    "One year": "",
-    "None": "",
-    "Upload password": "",
-    "File is too big": "",
-    "File size is limited to": "",
-    "The file directory is not writable": "",
-    "The link directory is not writable": "",
-    "The async directory is not writable!": "",
-    "Installer script still present": "",
-    "Please make sure to delete the installer script \"install.php\" before continuing.": "",
-    "An error occurred.": "",
-    "File uploaded !": "",
-    "Download page": "",
-    "This file is valid until the following date": "",
-    "View link": "",
-    "Direct download link": "",
-    "Delete link": "",
-    "Download": "",
-    "Preview": "",
-    "Sorry, the requested file is not found": "",
-    "File not available.": "",
-    "File has been deleted.": "",
-    "The time limit of this file has expired.": "",
-    "Password protection": "",
-    "Give the password of this file": "",
-    "Access denied": "",
-    "You are about to download": "",
-    "By using our services, you accept our": "",
-    "Terms of Service": "",
-    "Warning, this file will self-destruct after being read": "",
-    "Internal error during file creation.": "",
-
-    "This file was generated by the install process. You can edit it. Please see config.original.php to understand the configuration items.": "",
-    "The following directory could not be created": "",
-    "You should create this directory manually.": "",
-    "The following directory is not writable": "",
-    "You should give the write permission to the web server on this directory.": "",
-    "Here is a solution": "",
-    "The local configuration file could not be created. Create a <code>lib/config.local.php</code> file and give the write permission to the web server (preferred solution), or give the write permission to the web server on the <code>lib</code> directory.": "",
-    "The local configuration is not writable by the web server. Give the write permission to the web server on the '<code>lib/config.local.php</code> file.": "",
-    "Installation of Jirafeau": "",
-    "step": "",
-    "out of": "",
-    "Administration password": "",
-    "Finalisation": "",
-    "Jirafeau is setting the website according to the configuration you provided.": "",
-    "Previous step": "",
-    "Retry this step": "",
-    "Jirafeau is now fully operational": "",
-    "Information": "",
-    "The base address of Jirafeau is the first part of the URL, until (and including) the last slash. For example: \"http://www.example.com/\". Do not forget the trailing slash!": "",
-    "Base address": "",
-    "The data directory is where your files and information about your files will be stored. You should put it outside your web site, or at least restrict the access to this directory. Do not forget the trailing slash!": "",
-    "Data directory": "",
-    "Jirafeau is internationalised. Choose a specific langage or choose Automatic (langage is provided by user's browser).": "",
-    "Choose the default language": "",
-    "Next step": "",
-    "Jirafeau has an administration interface (through admin.php). You can set a password to access the interface or leave it empty to disable the interface.": "",
-    "Administration password": "",
-
-    "Sorry, the admin interface is not enabled.": "",
-    "Sorry, you are not authenticated on admin interface.": "",
-    "Login": "",
-    "Wrong password.": "",
-    "Admin interface": "",
-    "Clean expired files": "",
-    "Clean old unfinished transfers": "",
-    "Clean": "",
-    "Search files by name": "",
-    "Search": "",
-    "List all files": "",
-    "List": "",
-    "Actions": "",
-    "Search files by file hash": "",
-    "Search a specific link": "",
-    "Number of cleaned files": "",
-    "Logout": "",
-    "You are now loggued out": "",
-    "Link deleted": "",
-    "Filename": "",
-    "file": "",
-    "link": "",
-    "Type": "",
-    "Size": "",
-    "Expire": "",
-    "Onetime": "",
-    "Upload date": "",
-    "Origin": "",
-    "Action": "",
-    "Del link": "",
-    "Del file and links": "",
-    "Deleted links": "",
-    "year": "",
-    "day": "",
-    "minute": "",
-    "hour": "",
-    "second": "",
-    "less than a second": ""
+    "JI_WEB_RE": "",
+    "SEL_FILE": "",
+    "SEND": "",
+    "UP": "",
+    "ONE_TIME_DL": "",
+    "PSW": "",
+    "TIME_LIM": "",
+    "MAX_FILE_SIZE": "",
+    "POWERED_BY": "",
+    "MADE_WITH": "",
+    "JI_PROJECT": "",
+    "1_MIN": "",
+    "1_H": "",
+    "1_D": "",
+    "1_W": "",
+    "1_M": "",
+    "1_Q": "",
+    "1_Y": "",
+    "NONE": "",
+    "UP_PSW": "",
+    "2_BIG": "",
+    "FILE_LIM": "",
+    "FILE_DIR_W": "",
+    "LINK_DIR_W": "",
+    "ASYNC_DIR_W": "",
+    "INSTALL_SCRIPT_HERE": "",
+    "ERR_OCC": "",
+    "FILE_UP": "",
+    "DL_PAGE": "",
+    "VALID_UNTIL": "",
+    "VIEW_LINK": "",
+    "DIRECT_DL": "",
+    "DELETE_LINK": "",
+    "DL": "",
+    "PREVIEW": "",
+    "FILE_404": "",
+    "FILE_NOT_AVAIL": "",
+    "FILE_DELETED": "",
+    "FILE_EXPIRED": "",
+    "PSW_PROTEC": "",
+    "GIMME_PSW": "",
+    "ACCESS_KO": "",
+    "NOW_DOWNLOADING": "",
+    "USING_SERIVCE": "",
+    "TOS": "",
+    "AUTO_DESTRUCT": "",
+    "INTERNAL_ERROR_DEL": "",
+    "CONF_AUTOGEN_COMMENT": "",
+    "CANNOT_CREATE_DIR": "",
+    "MANUAL_CREATE": "",
+    "DIR_NOT_W": "",
+    "GIMME_W": "",
+    "HERE_SOLUTION": "",
+    "CONF_SOLUTION": "",
+    "CONF_SOLUTION_2": "",
+    "JI_INSTALL": "",
+    "STEP": "",
+    "OUT_OF": "",
+    "ADMIN_PSW": "",
+    "FINALIZATION": "",
+    "SETTING_UP": "",
+    "PREV_STEP": "",
+    "RETRY_STEP": "",
+    "JI_FONCTIONAL": "",
+    "INFO": "",
+    "BASE_ADDR_INFO": "",
+    "BASE_ADDR": "",
+    "DATA_DIR_EXPLAINATION": "",
+    "DATA_DIR": "",
+    "JI_HAZ_LANGAGES": "",
+    "DEF_LANGUAGE": "",
+    "NEXT_STEP": "",
+    "ADMIN_INTERFACE_INFO": "",
+    "NO_ADMIN": "",
+    "NO_ADMIN_AUTH": "",
+    "LOGIN": "",
+    "BAD_PSW": "",
+    "ADMIN_INTERFACE": "",
+    "CLEAN_EXPIRED": "",
+    "CLEAN_INCOMPLETE": "",
+    "CLEAN": "",
+    "SEARCH_NAME": "",
+    "SEARCH": "",
+    "LS_FILES": "",
+    "LIST": "",
+    "ACTIONS": "",
+    "SEARH_BY_HASH": "",
+    "SEARCH_LINK": "",
+    "CLEANED_FILES_CNT": "",
+    "LOGOUT": "",
+    "NOW_LOGOUT": "",
+    "LINK_DELETED": "",
+    "FILENAME": "",
+    "FILE": "",
+    "LINK": "",
+    "TYPE": "",
+    "SIZE": "",
+    "EXPIRE": "",
+    "ONETIME": "",
+    "UPLOAD_DATE": "",
+    "ORIGIN": "",
+    "ACTION": "",
+    "DEL_LINK": "",
+    "DEL_FILE_LINKS": "",
+    "DELETED_LINKS": "",
+    "YEAR": "",
+    "DAY": "",
+    "MINUTE": "",
+    "HOUR": "",
+    "SECOND": "",
+    "LESS_1_SEC": ""
 }
index b0729d0fa551d75c5ec97999e962ca07233ebdcf..6e5c26115e4d62eabd3b367ce3c1493d3fdf73ad 100644 (file)
 {
-    "Jirafeau, your web file repository": "",
-    "Select a file": "",
-    "Send": "",
-    "Uploading ...": "",
-    "One time download": "",
-    "Password": "",
-    "Time limit": "",
-    "Maximum file size": "",
-    "powered by Open-Source project Jirafeau": "",
-    "Made with": "",
-    "Jirafeau Project": "",
-    "One minute": "",
-    "One hour": "",
-    "One day": "",
-    "One week": "",
-    "One month": "",
-    "One quarter": "",
-    "One year": "",
-    "None": "",
-    "Upload password": "",
-    "File is too big": "",
-    "File size is limited to": "",
-    "The file directory is not writable": "",
-    "The link directory is not writable": "",
-    "The async directory is not writable!": "",
-    "Installer script still present": "",
-    "Please make sure to delete the installer script \"install.php\" before continuing.": "",
-    "An error occurred.": "",
-    "File uploaded !": "",
-    "Download page": "",
-    "This file is valid until the following date": "",
-    "View link": "",
-    "Direct download link": "",
-    "Delete link": "",
-    "Download": "",
-    "Preview": "",
-    "Sorry, the requested file is not found": "",
-    "File not available.": "",
-    "File has been deleted.": "",
-    "The time limit of this file has expired.": "",
-    "Password protection": "",
-    "Give the password of this file": "",
-    "Access denied": "",
-    "You are about to download": "",
-    "By using our services, you accept our": "",
-    "Terms of Service": "",
-    "Warning, this file will self-destruct after being read": "",
-    "Internal error during file creation.": "",
-
-    "This file was generated by the install process. You can edit it. Please see config.original.php to understand the configuration items.": "",
-    "The following directory could not be created": "",
-    "You should create this directory manually.": "",
-    "The following directory is not writable": "",
-    "You should give the write permission to the web server on this directory.": "",
-    "Here is a solution": "",
-    "The local configuration file could not be created. Create a <code>lib/config.local.php</code> file and give the write permission to the web server (preferred solution), or give the write permission to the web server on the <code>lib</code> directory.": "",
-    "The local configuration is not writable by the web server. Give the write permission to the web server on the '<code>lib/config.local.php</code> file.": "",
-    "Installation of Jirafeau": "",
-    "step": "",
-    "out of": "",
-    "Administration password": "",
-    "Finalisation": "",
-    "Jirafeau is setting the website according to the configuration you provided.": "",
-    "Previous step": "",
-    "Retry this step": "",
-    "Jirafeau is now fully operational": "",
-    "Information": "",
-    "The base address of Jirafeau is the first part of the URL, until (and including) the last slash. For example: \"http://www.example.com/\". Do not forget the trailing slash!": "",
-    "Base address": "",
-    "The data directory is where your files and information about your files will be stored. You should put it outside your web site, or at least restrict the access to this directory. Do not forget the trailing slash!": "",
-    "Data directory": "",
-    "Jirafeau is internationalised. Choose a specific langage or choose Automatic (langage is provided by user's browser).": "",
-    "Choose the default language": "",
-    "Next step": "",
-    "Jirafeau has an administration interface (through admin.php). You can set a password to access the interface or leave it empty to disable the interface.": "",
-    "Administration password": "",
-
-    "Sorry, the admin interface is not enabled.": "",
-    "Sorry, you are not authenticated on admin interface.": "",
-    "Login": "",
-    "Wrong password.": "",
-    "Admin interface": "",
-    "Clean expired files": "",
-    "Clean old unfinished transfers": "",
-    "Clean": "",
-    "Search files by name": "",
-    "Search": "",
-    "List all files": "",
-    "List": "",
-    "Actions": "",
-    "Search files by file hash": "",
-    "Search a specific link": "",
-    "Number of cleaned files": "",
-    "Logout": "",
-    "You are now loggued out": "",
-    "Link deleted": "",
-    "Filename": "",
-    "file": "",
-    "link": "",
-    "Type": "",
-    "Size": "",
-    "Expire": "",
-    "Onetime": "",
-    "Upload date": "",
-    "Origin": "",
-    "Action": "",
-    "Del link": "",
-    "Del file and links": "",
-    "Deleted links": "",
-    "year": "",
-    "day": "",
-    "minute": "",
-    "hour": "",
-    "second": "",
-    "less than a second": ""
+    "JI_WEB_RE": "",
+    "SEL_FILE": "",
+    "SEND": "",
+    "UP": "",
+    "ONE_TIME_DL": "",
+    "PSW": "",
+    "TIME_LIM": "",
+    "MAX_FILE_SIZE": "",
+    "POWERED_BY": "",
+    "MADE_WITH": "",
+    "JI_PROJECT": "",
+    "1_MIN": "",
+    "1_H": "",
+    "1_D": "",
+    "1_W": "",
+    "1_M": "",
+    "1_Q": "",
+    "1_Y": "",
+    "NONE": "",
+    "UP_PSW": "",
+    "2_BIG": "",
+    "FILE_LIM": "",
+    "FILE_DIR_W": "",
+    "LINK_DIR_W": "",
+    "ASYNC_DIR_W": "",
+    "INSTALL_SCRIPT_HERE": "",
+    "ERR_OCC": "",
+    "FILE_UP": "",
+    "DL_PAGE": "",
+    "VALID_UNTIL": "",
+    "VIEW_LINK": "",
+    "DIRECT_DL": "",
+    "DELETE_LINK": "",
+    "DL": "",
+    "PREVIEW": "",
+    "FILE_404": "",
+    "FILE_NOT_AVAIL": "",
+    "FILE_DELETED": "",
+    "FILE_EXPIRED": "",
+    "PSW_PROTEC": "",
+    "GIMME_PSW": "",
+    "ACCESS_KO": "",
+    "NOW_DOWNLOADING": "",
+    "USING_SERIVCE": "",
+    "TOS": "",
+    "AUTO_DESTRUCT": "",
+    "INTERNAL_ERROR_DEL": "",
+    "CONF_AUTOGEN_COMMENT": "",
+    "CANNOT_CREATE_DIR": "",
+    "MANUAL_CREATE": "",
+    "DIR_NOT_W": "",
+    "GIMME_W": "",
+    "HERE_SOLUTION": "",
+    "CONF_SOLUTION": "",
+    "CONF_SOLUTION_2": "",
+    "JI_INSTALL": "",
+    "STEP": "",
+    "OUT_OF": "",
+    "ADMIN_PSW": "",
+    "FINALIZATION": "",
+    "SETTING_UP": "",
+    "PREV_STEP": "",
+    "RETRY_STEP": "",
+    "JI_FONCTIONAL": "",
+    "INFO": "",
+    "BASE_ADDR_INFO": "",
+    "BASE_ADDR": "",
+    "DATA_DIR_EXPLAINATION": "",
+    "DATA_DIR": "",
+    "JI_HAZ_LANGAGES": "",
+    "DEF_LANGUAGE": "",
+    "NEXT_STEP": "",
+    "ADMIN_INTERFACE_INFO": "",
+    "NO_ADMIN": "",
+    "NO_ADMIN_AUTH": "",
+    "LOGIN": "",
+    "BAD_PSW": "",
+    "ADMIN_INTERFACE": "",
+    "CLEAN_EXPIRED": "",
+    "CLEAN_INCOMPLETE": "",
+    "CLEAN": "",
+    "SEARCH_NAME": "",
+    "SEARCH": "",
+    "LS_FILES": "",
+    "LIST": "",
+    "ACTIONS": "",
+    "SEARH_BY_HASH": "",
+    "SEARCH_LINK": "",
+    "CLEANED_FILES_CNT": "",
+    "LOGOUT": "",
+    "NOW_LOGOUT": "",
+    "LINK_DELETED": "",
+    "FILENAME": "",
+    "FILE": "",
+    "LINK": "",
+    "TYPE": "",
+    "SIZE": "",
+    "EXPIRE": "",
+    "ONETIME": "",
+    "UPLOAD_DATE": "",
+    "ORIGIN": "",
+    "ACTION": "",
+    "DEL_LINK": "",
+    "DEL_FILE_LINKS": "",
+    "DELETED_LINKS": "",
+    "YEAR": "",
+    "DAY": "",
+    "MINUTE": "",
+    "HOUR": "",
+    "SECOND": "",
+    "LESS_1_SEC": ""
 }
index 01876cb21e562501a22cd79164ec7a27c5494878..bcf4b2fe63fd5c4e27ea2c1047be4b56b00418bf 100644 (file)
 {
-    "Access denied": "Приступ одбијен", 
-    "Action": "", 
-    "Actions": "", 
-    "Admin interface": "", 
-    "Administration password": "", 
-    "An error occurred.": "", 
-    "Base address": "", 
-    "By using our services, you accept our": "", 
-    "Choose the default language": "Изаберите подразумевани језик", 
-    "Clean": "", 
-    "Clean expired files": "", 
-    "Clean old unfinished transfers": "", 
-    "Data directory": "", 
-    "Del file and links": "Бриши фајл и везе", 
-    "Del link": "", 
-    "Delete link": "", 
-    "Deleted links": "Обрисане везе", 
-    "Direct download link": "Веза за директно преузимање", 
-    "Download": "", 
-    "Download page": "Страница преузимања", 
-    "Expire": "Истиче", 
-    "File has been deleted.": "", 
-    "File is too big": "Фајл је превелик", 
-    "File not available.": "", 
-    "File size is limited to": "", 
-    "File uploaded !": "", 
-    "Filename": "Назив фајла", 
-    "Finalisation": "", 
-    "Give the password of this file": "Дајте лозинку за овај фајл", 
-    "Here is a solution": "Ево решења", 
-    "Information": "", 
-    "Installation of Jirafeau": "", 
-    "Installer script still present": "Инсталациона скрипта је и даље присутна", 
-    "Internal error during file creation.": "", 
-    "Jirafeau Project": "", 
-    "Jirafeau has an administration interface (through admin.php). You can set a password to access the interface or leave it empty to disable the interface.": "Жирафа има администраторско сучеље (кроз admin.php). Можете поставити лозинку за приступ сучељу или је оставити празну да бисте га искључили.", 
-    "Jirafeau is internationalised. Choose a specific langage or choose Automatic (langage is provided by user's browser).": "Жирафа је преведена. Изаберите жељени језик или изаберите „Аутоматски“ (језик ће изабрати корисников прегледач).", 
-    "Jirafeau is now fully operational": "", 
-    "Jirafeau is setting the website according to the configuration you provided.": "Жирафа поставља веб сајт у складу са подешавањима које сте дали.", 
-    "Jirafeau, your web file repository": "Жирафа, ваша веб ризница", 
-    "Link deleted": "", 
-    "List": "", 
-    "List all files": "Излистај све фајлове", 
-    "Login": "", 
-    "Logout": "", 
-    "Maximum file size": "", 
-    "Next step": "", 
-    "None": "", 
-    "Number of cleaned files": "Број очишћених фајлова", 
-    "One day": "", 
-    "One hour": "", 
-    "One minute": "један минут", 
-    "One month": "", 
-    "One time download": "", 
-    "One week": "једна седмица", 
-    "One year": "једна година", 
-    "Onetime": "Једном", 
-    "Origin": "Порекло", 
-    "Password": "", 
-    "Password protection": "", 
-    "Please make sure to delete the installer script \"install.php\" before continuing.": "", 
-    "Preview": "", 
-    "Previous step": "", 
-    "Retry this step": "Понови овај корак", 
-    "Search": "", 
-    "Search a specific link": "Тражи одређену везу", 
-    "Search files by file hash": "Тражи фајл по хешу", 
-    "Search files by name": "Тражи фајл по називу", 
-    "Select a file": "Изаберите фајл", 
-    "Send": "Пошаљи", 
-    "Size": "", 
-    "Sorry, the admin interface is not enabled.": "Нажалост, администраторско сучеље је искључено.", 
-    "Sorry, the requested file is not found": "", 
-    "Sorry, you are not authenticated on admin interface.": "", 
+    "ACCESS_KO": "Приступ одбијен", 
+    "ACTION": "", 
+    "ACTIONS": "", 
+    "ADMIN_INTERFACE": "", 
+    "ADMIN_PSW": "", 
+    "ERR_OCC": "", 
+    "BASE_ADDR": "", 
+    "USING_SERIVCE": "", 
+    "DEF_LANGUAGE": "Изаберите подразумевани језик", 
+    "CLEAN": "", 
+    "CLEAN_EXPIRED": "", 
+    "CLEAN_INCOMPLETE": "", 
+    "DATA_DIR": "", 
+    "DEL_FILE_LINKS": "Бриши фајл и везе", 
+    "DEL_LINK": "", 
+    "DELETE_LINK": "", 
+    "DELETED_LINKS": "Обрисане везе", 
+    "DIRECT_DL": "Веза за директно преузимање", 
+    "DL": "", 
+    "DL_PAGE": "Страница преузимања", 
+    "EXPIRE": "Истиче", 
+    "FILE_DELETED": "", 
+    "2_BIG": "Фајл је превелик", 
+    "FILE_NOT_AVAIL": "", 
+    "FILE_LIM": "", 
+    "FILE_UP": "", 
+    "FILENAME": "Назив фајла", 
+    "FINALIZATION": "", 
+    "GIMME_PSW": "Дајте лозинку за овај фајл", 
+    "HERE_SOLUTION": "Ево решења", 
+    "INFO": "", 
+    "JI_INSTALL": "", 
+    "INSTALL_SCRIPT_HERE": "Инсталациона скрипта је и даље присутна", 
+    "INTERNAL_ERROR_DEL": "", 
+    "JI_PROJECT": "", 
+    "ADMIN_INTERFACE_INFO": "Жирафа има администраторско сучеље (кроз admin.php). Можете поставити лозинку за приступ сучељу или је оставити празну да бисте га искључили.", 
+    "JI_HAZ_LANGAGES": "Жирафа је преведена. Изаберите жељени језик или изаберите „Аутоматски“ (језик ће изабрати корисников прегледач).", 
+    "JI_FONCTIONAL": "", 
+    "SETTING_UP": "Жирафа поставља веб сајт у складу са подешавањима које сте дали.", 
+    "JI_WEB_RE": "Жирафа, ваша веб ризница", 
+    "LINK_DELETED": "", 
+    "LIST": "", 
+    "LS_FILES": "Излистај све фајлове", 
+    "LOGIN": "", 
+    "LOGOUT": "", 
+    "MAX_FILE_SIZE": "", 
+    "NEXT_STEP": "", 
+    "NONE": "", 
+    "CLEANED_FILES_CNT": "Број очишћених фајлова", 
+    "1_D": "", 
+    "1_H": "", 
+    "1_MIN": "један минут", 
+    "1_M": "", 
+    "ONE_TIME_DL": "", 
+    "1_W": "једна седмица", 
+    "1_Y": "једна година", 
+    "ONETIME": "Једном", 
+    "ORIGIN": "Порекло", 
+    "PSW": "", 
+    "PSW_PROTEC": "", 
+    "PREVIEW": "", 
+    "PREV_STEP": "", 
+    "RETRY_STEP": "Понови овај корак", 
+    "SEARCH": "", 
+    "SEARCH_LINK": "Тражи одређену везу", 
+    "SEARH_BY_HASH": "Тражи фајл по хешу", 
+    "SEARCH_NAME": "Тражи фајл по називу", 
+    "SEL_FILE": "Изаберите фајл", 
+    "SEND": "Пошаљи", 
+    "SIZE": "", 
+    "NO_ADMIN": "Нажалост, администраторско сучеље је искључено.", 
+    "FILE_404": "", 
+    "NO_ADMIN_AUTH": "", 
     "Term Of Service": "Услови коришћења", 
-    "The async directory is not writable!": "„async“ директоријум није уписив!", 
-    "The base address of Jirafeau is the first part of the URL, until (and including) the last slash. For example: \"http://www.example.com/\". Do not forget the trailing slash!": "", 
-    "The data directory is where your files and information about your files will be stored. You should put it outside your web site, or at least restrict the access to this directory. Do not forget the trailing slash!": "", 
-    "The file directory is not writable": "", 
-    "The following directory could not be created": "Следећи директоријум се не може направити", 
-    "The following directory is not writable": "", 
-    "The link directory is not writable": "", 
-    "The local configuration file could not be created. Create a <code>lib/config.local.php</code> file and give the write permission to the web server (preferred solution), or give the write permission to the web server on the <code>lib</code> directory.": "", 
-    "The local configuration is not writable by the web server. Give the write permission to the web server on the '<code>lib/config.local.php</code> file.": "Локална подешавања нису уписива за веб сервер. Дајте веб серверу права уписа у фајлу „<code>lib/config.local.php</code>“.", 
-    "The time limit of this file has expired.": "Временско ограничење за фајл је истекло.", 
-    "This file is valid until the following date": "", 
-    "This file was generated by the install process. You can edit it. Please see config.original.php to understand the configuration items.": "Овај фајл је генерисао инсталациони процес. Можете га мењати. Погледајте „config.original.php“ да бисте разумели конфигурационе ставке.", 
-    "Time limit": "", 
-    "Type": "", 
-    "Upload date": "", 
-    "Upload password": "", 
-    "Uploading ...": "", 
-    "View link": "", 
-    "Warning, this file will self-destruct after being read": "Пажња, овај фајл ће се самоуништити након читања", 
-    "Wrong password.": "Погрешна лозинка.", 
-    "You are about to download": "", 
-    "You are now loggued out": "", 
-    "You should create this directory manually.": "", 
-    "You should give the write permission to the web server on this directory.": "", 
-    "file": "", 
-    "link": "", 
-    "out of": "", 
-    "powered by Open-Source project Jirafeau": "", 
-    "step": "",
-    "year": "",
-    "day": "",
-    "minute": "",
-    "hour": "",
-    "second": "",
-    "less than a second": ""
+    "ASYNC_DIR_W": "„async“ директоријум није уписив!", 
+    "BASE_ADDR_INFO": "",
+    "DATA_DIR_EXPLAINATION": "", 
+    "FILE_DIR_W": "", 
+    "CANNOT_CREATE_DIR": "Следећи директоријум се не може направити", 
+    "DIR_NOT_W": "", 
+    "LINK_DIR_W": "", 
+    "CONF_SOLUTION": "", 
+    "CONF_SOLUTION_2": "Локална подешавања нису уписива за веб сервер. Дајте веб серверу права уписа у фајлу „<code>lib/config.local.php</code>“.", 
+    "FILE_EXPIRED": "Временско ограничење за фајл је истекло.", 
+    "VALID_UNTIL": "", 
+    "CONF_AUTOGEN_COMMENT": "Овај фајл је генерисао инсталациони процес. Можете га мењати. Погледајте „config.original.php“ да бисте разумели конфигурационе ставке.", 
+    "TIME_LIM": "", 
+    "TYPE": "", 
+    "UPLOAD_DATE": "", 
+    "UP_PSW": "", 
+    "UP": "", 
+    "VIEW_LINK": "", 
+    "AUTO_DESTRUCT": "Пажња, овај фајл ће се самоуништити након читања", 
+    "BAD_PSW": "Погрешна лозинка.", 
+    "NOW_DOWNLOADING": "", 
+    "NOW_LOGOUT": "", 
+    "MANUAL_CREATE": "", 
+    "GIMME_W": "", 
+    "FILE": "", 
+    "LINK": "", 
+    "OUT_OF": "", 
+    "POWERED_BY": "", 
+    "STEP": "",
+    "YEAR": "",
+    "DAY": "",
+    "MINUTE": "",
+    "HOUR": "",
+    "SECOND": "",
+    "LESS_1_SEC": ""
 
 }
index b0729d0fa551d75c5ec97999e962ca07233ebdcf..6e5c26115e4d62eabd3b367ce3c1493d3fdf73ad 100644 (file)
 {
-    "Jirafeau, your web file repository": "",
-    "Select a file": "",
-    "Send": "",
-    "Uploading ...": "",
-    "One time download": "",
-    "Password": "",
-    "Time limit": "",
-    "Maximum file size": "",
-    "powered by Open-Source project Jirafeau": "",
-    "Made with": "",
-    "Jirafeau Project": "",
-    "One minute": "",
-    "One hour": "",
-    "One day": "",
-    "One week": "",
-    "One month": "",
-    "One quarter": "",
-    "One year": "",
-    "None": "",
-    "Upload password": "",
-    "File is too big": "",
-    "File size is limited to": "",
-    "The file directory is not writable": "",
-    "The link directory is not writable": "",
-    "The async directory is not writable!": "",
-    "Installer script still present": "",
-    "Please make sure to delete the installer script \"install.php\" before continuing.": "",
-    "An error occurred.": "",
-    "File uploaded !": "",
-    "Download page": "",
-    "This file is valid until the following date": "",
-    "View link": "",
-    "Direct download link": "",
-    "Delete link": "",
-    "Download": "",
-    "Preview": "",
-    "Sorry, the requested file is not found": "",
-    "File not available.": "",
-    "File has been deleted.": "",
-    "The time limit of this file has expired.": "",
-    "Password protection": "",
-    "Give the password of this file": "",
-    "Access denied": "",
-    "You are about to download": "",
-    "By using our services, you accept our": "",
-    "Terms of Service": "",
-    "Warning, this file will self-destruct after being read": "",
-    "Internal error during file creation.": "",
-
-    "This file was generated by the install process. You can edit it. Please see config.original.php to understand the configuration items.": "",
-    "The following directory could not be created": "",
-    "You should create this directory manually.": "",
-    "The following directory is not writable": "",
-    "You should give the write permission to the web server on this directory.": "",
-    "Here is a solution": "",
-    "The local configuration file could not be created. Create a <code>lib/config.local.php</code> file and give the write permission to the web server (preferred solution), or give the write permission to the web server on the <code>lib</code> directory.": "",
-    "The local configuration is not writable by the web server. Give the write permission to the web server on the '<code>lib/config.local.php</code> file.": "",
-    "Installation of Jirafeau": "",
-    "step": "",
-    "out of": "",
-    "Administration password": "",
-    "Finalisation": "",
-    "Jirafeau is setting the website according to the configuration you provided.": "",
-    "Previous step": "",
-    "Retry this step": "",
-    "Jirafeau is now fully operational": "",
-    "Information": "",
-    "The base address of Jirafeau is the first part of the URL, until (and including) the last slash. For example: \"http://www.example.com/\". Do not forget the trailing slash!": "",
-    "Base address": "",
-    "The data directory is where your files and information about your files will be stored. You should put it outside your web site, or at least restrict the access to this directory. Do not forget the trailing slash!": "",
-    "Data directory": "",
-    "Jirafeau is internationalised. Choose a specific langage or choose Automatic (langage is provided by user's browser).": "",
-    "Choose the default language": "",
-    "Next step": "",
-    "Jirafeau has an administration interface (through admin.php). You can set a password to access the interface or leave it empty to disable the interface.": "",
-    "Administration password": "",
-
-    "Sorry, the admin interface is not enabled.": "",
-    "Sorry, you are not authenticated on admin interface.": "",
-    "Login": "",
-    "Wrong password.": "",
-    "Admin interface": "",
-    "Clean expired files": "",
-    "Clean old unfinished transfers": "",
-    "Clean": "",
-    "Search files by name": "",
-    "Search": "",
-    "List all files": "",
-    "List": "",
-    "Actions": "",
-    "Search files by file hash": "",
-    "Search a specific link": "",
-    "Number of cleaned files": "",
-    "Logout": "",
-    "You are now loggued out": "",
-    "Link deleted": "",
-    "Filename": "",
-    "file": "",
-    "link": "",
-    "Type": "",
-    "Size": "",
-    "Expire": "",
-    "Onetime": "",
-    "Upload date": "",
-    "Origin": "",
-    "Action": "",
-    "Del link": "",
-    "Del file and links": "",
-    "Deleted links": "",
-    "year": "",
-    "day": "",
-    "minute": "",
-    "hour": "",
-    "second": "",
-    "less than a second": ""
+    "JI_WEB_RE": "",
+    "SEL_FILE": "",
+    "SEND": "",
+    "UP": "",
+    "ONE_TIME_DL": "",
+    "PSW": "",
+    "TIME_LIM": "",
+    "MAX_FILE_SIZE": "",
+    "POWERED_BY": "",
+    "MADE_WITH": "",
+    "JI_PROJECT": "",
+    "1_MIN": "",
+    "1_H": "",
+    "1_D": "",
+    "1_W": "",
+    "1_M": "",
+    "1_Q": "",
+    "1_Y": "",
+    "NONE": "",
+    "UP_PSW": "",
+    "2_BIG": "",
+    "FILE_LIM": "",
+    "FILE_DIR_W": "",
+    "LINK_DIR_W": "",
+    "ASYNC_DIR_W": "",
+    "INSTALL_SCRIPT_HERE": "",
+    "ERR_OCC": "",
+    "FILE_UP": "",
+    "DL_PAGE": "",
+    "VALID_UNTIL": "",
+    "VIEW_LINK": "",
+    "DIRECT_DL": "",
+    "DELETE_LINK": "",
+    "DL": "",
+    "PREVIEW": "",
+    "FILE_404": "",
+    "FILE_NOT_AVAIL": "",
+    "FILE_DELETED": "",
+    "FILE_EXPIRED": "",
+    "PSW_PROTEC": "",
+    "GIMME_PSW": "",
+    "ACCESS_KO": "",
+    "NOW_DOWNLOADING": "",
+    "USING_SERIVCE": "",
+    "TOS": "",
+    "AUTO_DESTRUCT": "",
+    "INTERNAL_ERROR_DEL": "",
+    "CONF_AUTOGEN_COMMENT": "",
+    "CANNOT_CREATE_DIR": "",
+    "MANUAL_CREATE": "",
+    "DIR_NOT_W": "",
+    "GIMME_W": "",
+    "HERE_SOLUTION": "",
+    "CONF_SOLUTION": "",
+    "CONF_SOLUTION_2": "",
+    "JI_INSTALL": "",
+    "STEP": "",
+    "OUT_OF": "",
+    "ADMIN_PSW": "",
+    "FINALIZATION": "",
+    "SETTING_UP": "",
+    "PREV_STEP": "",
+    "RETRY_STEP": "",
+    "JI_FONCTIONAL": "",
+    "INFO": "",
+    "BASE_ADDR_INFO": "",
+    "BASE_ADDR": "",
+    "DATA_DIR_EXPLAINATION": "",
+    "DATA_DIR": "",
+    "JI_HAZ_LANGAGES": "",
+    "DEF_LANGUAGE": "",
+    "NEXT_STEP": "",
+    "ADMIN_INTERFACE_INFO": "",
+    "NO_ADMIN": "",
+    "NO_ADMIN_AUTH": "",
+    "LOGIN": "",
+    "BAD_PSW": "",
+    "ADMIN_INTERFACE": "",
+    "CLEAN_EXPIRED": "",
+    "CLEAN_INCOMPLETE": "",
+    "CLEAN": "",
+    "SEARCH_NAME": "",
+    "SEARCH": "",
+    "LS_FILES": "",
+    "LIST": "",
+    "ACTIONS": "",
+    "SEARH_BY_HASH": "",
+    "SEARCH_LINK": "",
+    "CLEANED_FILES_CNT": "",
+    "LOGOUT": "",
+    "NOW_LOGOUT": "",
+    "LINK_DELETED": "",
+    "FILENAME": "",
+    "FILE": "",
+    "LINK": "",
+    "TYPE": "",
+    "SIZE": "",
+    "EXPIRE": "",
+    "ONETIME": "",
+    "UPLOAD_DATE": "",
+    "ORIGIN": "",
+    "ACTION": "",
+    "DEL_LINK": "",
+    "DEL_FILE_LINKS": "",
+    "DELETED_LINKS": "",
+    "YEAR": "",
+    "DAY": "",
+    "MINUTE": "",
+    "HOUR": "",
+    "SECOND": "",
+    "LESS_1_SEC": ""
 }
index b0729d0fa551d75c5ec97999e962ca07233ebdcf..6e5c26115e4d62eabd3b367ce3c1493d3fdf73ad 100644 (file)
 {
-    "Jirafeau, your web file repository": "",
-    "Select a file": "",
-    "Send": "",
-    "Uploading ...": "",
-    "One time download": "",
-    "Password": "",
-    "Time limit": "",
-    "Maximum file size": "",
-    "powered by Open-Source project Jirafeau": "",
-    "Made with": "",
-    "Jirafeau Project": "",
-    "One minute": "",
-    "One hour": "",
-    "One day": "",
-    "One week": "",
-    "One month": "",
-    "One quarter": "",
-    "One year": "",
-    "None": "",
-    "Upload password": "",
-    "File is too big": "",
-    "File size is limited to": "",
-    "The file directory is not writable": "",
-    "The link directory is not writable": "",
-    "The async directory is not writable!": "",
-    "Installer script still present": "",
-    "Please make sure to delete the installer script \"install.php\" before continuing.": "",
-    "An error occurred.": "",
-    "File uploaded !": "",
-    "Download page": "",
-    "This file is valid until the following date": "",
-    "View link": "",
-    "Direct download link": "",
-    "Delete link": "",
-    "Download": "",
-    "Preview": "",
-    "Sorry, the requested file is not found": "",
-    "File not available.": "",
-    "File has been deleted.": "",
-    "The time limit of this file has expired.": "",
-    "Password protection": "",
-    "Give the password of this file": "",
-    "Access denied": "",
-    "You are about to download": "",
-    "By using our services, you accept our": "",
-    "Terms of Service": "",
-    "Warning, this file will self-destruct after being read": "",
-    "Internal error during file creation.": "",
-
-    "This file was generated by the install process. You can edit it. Please see config.original.php to understand the configuration items.": "",
-    "The following directory could not be created": "",
-    "You should create this directory manually.": "",
-    "The following directory is not writable": "",
-    "You should give the write permission to the web server on this directory.": "",
-    "Here is a solution": "",
-    "The local configuration file could not be created. Create a <code>lib/config.local.php</code> file and give the write permission to the web server (preferred solution), or give the write permission to the web server on the <code>lib</code> directory.": "",
-    "The local configuration is not writable by the web server. Give the write permission to the web server on the '<code>lib/config.local.php</code> file.": "",
-    "Installation of Jirafeau": "",
-    "step": "",
-    "out of": "",
-    "Administration password": "",
-    "Finalisation": "",
-    "Jirafeau is setting the website according to the configuration you provided.": "",
-    "Previous step": "",
-    "Retry this step": "",
-    "Jirafeau is now fully operational": "",
-    "Information": "",
-    "The base address of Jirafeau is the first part of the URL, until (and including) the last slash. For example: \"http://www.example.com/\". Do not forget the trailing slash!": "",
-    "Base address": "",
-    "The data directory is where your files and information about your files will be stored. You should put it outside your web site, or at least restrict the access to this directory. Do not forget the trailing slash!": "",
-    "Data directory": "",
-    "Jirafeau is internationalised. Choose a specific langage or choose Automatic (langage is provided by user's browser).": "",
-    "Choose the default language": "",
-    "Next step": "",
-    "Jirafeau has an administration interface (through admin.php). You can set a password to access the interface or leave it empty to disable the interface.": "",
-    "Administration password": "",
-
-    "Sorry, the admin interface is not enabled.": "",
-    "Sorry, you are not authenticated on admin interface.": "",
-    "Login": "",
-    "Wrong password.": "",
-    "Admin interface": "",
-    "Clean expired files": "",
-    "Clean old unfinished transfers": "",
-    "Clean": "",
-    "Search files by name": "",
-    "Search": "",
-    "List all files": "",
-    "List": "",
-    "Actions": "",
-    "Search files by file hash": "",
-    "Search a specific link": "",
-    "Number of cleaned files": "",
-    "Logout": "",
-    "You are now loggued out": "",
-    "Link deleted": "",
-    "Filename": "",
-    "file": "",
-    "link": "",
-    "Type": "",
-    "Size": "",
-    "Expire": "",
-    "Onetime": "",
-    "Upload date": "",
-    "Origin": "",
-    "Action": "",
-    "Del link": "",
-    "Del file and links": "",
-    "Deleted links": "",
-    "year": "",
-    "day": "",
-    "minute": "",
-    "hour": "",
-    "second": "",
-    "less than a second": ""
+    "JI_WEB_RE": "",
+    "SEL_FILE": "",
+    "SEND": "",
+    "UP": "",
+    "ONE_TIME_DL": "",
+    "PSW": "",
+    "TIME_LIM": "",
+    "MAX_FILE_SIZE": "",
+    "POWERED_BY": "",
+    "MADE_WITH": "",
+    "JI_PROJECT": "",
+    "1_MIN": "",
+    "1_H": "",
+    "1_D": "",
+    "1_W": "",
+    "1_M": "",
+    "1_Q": "",
+    "1_Y": "",
+    "NONE": "",
+    "UP_PSW": "",
+    "2_BIG": "",
+    "FILE_LIM": "",
+    "FILE_DIR_W": "",
+    "LINK_DIR_W": "",
+    "ASYNC_DIR_W": "",
+    "INSTALL_SCRIPT_HERE": "",
+    "ERR_OCC": "",
+    "FILE_UP": "",
+    "DL_PAGE": "",
+    "VALID_UNTIL": "",
+    "VIEW_LINK": "",
+    "DIRECT_DL": "",
+    "DELETE_LINK": "",
+    "DL": "",
+    "PREVIEW": "",
+    "FILE_404": "",
+    "FILE_NOT_AVAIL": "",
+    "FILE_DELETED": "",
+    "FILE_EXPIRED": "",
+    "PSW_PROTEC": "",
+    "GIMME_PSW": "",
+    "ACCESS_KO": "",
+    "NOW_DOWNLOADING": "",
+    "USING_SERIVCE": "",
+    "TOS": "",
+    "AUTO_DESTRUCT": "",
+    "INTERNAL_ERROR_DEL": "",
+    "CONF_AUTOGEN_COMMENT": "",
+    "CANNOT_CREATE_DIR": "",
+    "MANUAL_CREATE": "",
+    "DIR_NOT_W": "",
+    "GIMME_W": "",
+    "HERE_SOLUTION": "",
+    "CONF_SOLUTION": "",
+    "CONF_SOLUTION_2": "",
+    "JI_INSTALL": "",
+    "STEP": "",
+    "OUT_OF": "",
+    "ADMIN_PSW": "",
+    "FINALIZATION": "",
+    "SETTING_UP": "",
+    "PREV_STEP": "",
+    "RETRY_STEP": "",
+    "JI_FONCTIONAL": "",
+    "INFO": "",
+    "BASE_ADDR_INFO": "",
+    "BASE_ADDR": "",
+    "DATA_DIR_EXPLAINATION": "",
+    "DATA_DIR": "",
+    "JI_HAZ_LANGAGES": "",
+    "DEF_LANGUAGE": "",
+    "NEXT_STEP": "",
+    "ADMIN_INTERFACE_INFO": "",
+    "NO_ADMIN": "",
+    "NO_ADMIN_AUTH": "",
+    "LOGIN": "",
+    "BAD_PSW": "",
+    "ADMIN_INTERFACE": "",
+    "CLEAN_EXPIRED": "",
+    "CLEAN_INCOMPLETE": "",
+    "CLEAN": "",
+    "SEARCH_NAME": "",
+    "SEARCH": "",
+    "LS_FILES": "",
+    "LIST": "",
+    "ACTIONS": "",
+    "SEARH_BY_HASH": "",
+    "SEARCH_LINK": "",
+    "CLEANED_FILES_CNT": "",
+    "LOGOUT": "",
+    "NOW_LOGOUT": "",
+    "LINK_DELETED": "",
+    "FILENAME": "",
+    "FILE": "",
+    "LINK": "",
+    "TYPE": "",
+    "SIZE": "",
+    "EXPIRE": "",
+    "ONETIME": "",
+    "UPLOAD_DATE": "",
+    "ORIGIN": "",
+    "ACTION": "",
+    "DEL_LINK": "",
+    "DEL_FILE_LINKS": "",
+    "DELETED_LINKS": "",
+    "YEAR": "",
+    "DAY": "",
+    "MINUTE": "",
+    "HOUR": "",
+    "SECOND": "",
+    "LESS_1_SEC": ""
 }
index ce652a593d2b9b03aea25be836ee242bc95db00a..ffc89365fcb125f3cd6d243a9798bb7780d5fefb 100644 (file)
 {
-    "Jirafeau, your web file repository": "",
-    "Select a file": "",
-    "Send": "",
-    "Uploading ...": "",
-    "One time download": "",
-    "Password": "",
-    "Time limit": "",
-    "Maximum file size": "",
-    "powered by Open-Source project Jirafeau": "",
-    "Made with": "",
-    "Jirafeau Project": "",
-    "One minute": "",
-    "One hour": "",
-    "One day": "",
-    "One week": "",
-    "One month": "",
-    "One quarter": "",
-    "One year": "",
-    "None": "",
-    "Upload password": "",
-    "File is too big": "",
-    "File size is limited to": "",
-    "The file directory is not writable": "",
-    "The link directory is not writable": "",
-    "The async directory is not writable!": "",
-    "Installer script still present": "",
-    "Please make sure to delete the installer script \"install.php\" before continuing.": "",
-    "An error occurred.": "",
-    "File uploaded !": "",
-    "Download page": "",
-    "This file is valid until the following date": "",
-    "View link": "",
-    "Direct download link": "",
-    "Delete link": "",
-    "Download": "",
-    "Preview": "",
-    "Sorry, the requested file is not found": "",
-    "File not available.": "",
-    "Confirm deletion": "",
-    "You are about to delete": "",
-    "Delete": "",
-    "File has been deleted.": "",
-    "The time limit of this file has expired.": "",
-    "Password protection": "",
-    "Give the password of this file": "",
-    "Access denied": "",
-    "You are about to download": "",
-    "By using our services, you accept our": "",
-    "Terms of Service": "",
-    "Warning, this file will self-destruct after being read": "",
-    "Internal error during file creation.": "",
-
-    "This file was generated by the install process. You can edit it. Please see config.original.php to understand the configuration items.": "",
-    "The following directory could not be created": "",
-    "You should create this directory manually.": "",
-    "The following directory is not writable": "",
-    "You should give the write permission to the web server on this directory.": "",
-    "Here is a solution": "",
-    "The local configuration file could not be created. Create a <code>lib/config.local.php</code> file and give the write permission to the web server (preferred solution), or give the write permission to the web server on the <code>lib</code> directory.": "",
-    "The local configuration is not writable by the web server. Give the write permission to the web server on the '<code>lib/config.local.php</code> file.": "",
-    "Installation of Jirafeau": "",
-    "step": "",
-    "out of": "",
-    "Administration password": "",
-    "Finalisation": "",
-    "Jirafeau is setting the website according to the configuration you provided.": "",
-    "Previous step": "",
-    "Retry this step": "",
-    "Jirafeau is now fully operational": "",
-    "Information": "",
-    "The base address of Jirafeau is the first part of the URL, until (and including) the last slash. For example: \"http://www.example.com/\". Do not forget the trailing slash!": "",
-    "Base address": "",
-    "The data directory is where your files and information about your files will be stored. You should put it outside your web site, or at least restrict the access to this directory. Do not forget the trailing slash!": "",
-    "Data directory": "",
-    "Jirafeau is internationalised. Choose a specific langage or choose Automatic (langage is provided by user's browser).": "",
-    "Choose the default language": "",
-    "Next step": "",
-    "Jirafeau has an administration interface (through admin.php). You can set a password to access the interface or leave it empty to disable the interface.": "",
-    "Administration password": "",
-
-    "Sorry, the admin interface is not enabled.": "",
-    "Sorry, you are not authenticated on admin interface.": "",
-    "Login": "",
-    "Wrong password.": "",
-    "Admin interface": "",
-    "Clean expired files": "",
-    "Clean old unfinished transfers": "",
-    "Clean": "",
-    "Search files by name": "",
-    "Search": "",
-    "List all files": "",
-    "List": "",
-    "Actions": "",
-    "Search files by file hash": "",
-    "Search a specific link": "",
-    "Number of cleaned files": "",
-    "Logout": "",
-    "You are now loggued out": "",
-    "Link deleted": "",
-    "Filename": "",
-    "file": "",
-    "link": "",
-    "Type": "",
-    "Size": "",
-    "Expire": "",
-    "Onetime": "",
-    "Upload date": "",
-    "Origin": "",
-    "Action": "",
-    "Del link": "",
-    "Del file and links": "",
-    "Deleted links": "",
-    "year": "",
-    "day": "",
-    "minute": "",
-    "hour": "",
-    "second": "",
-    "less than a second": ""
+    "JI_WEB_RE": "",
+    "SEL_FILE": "",
+    "SEND": "",
+    "UP": "",
+    "ONE_TIME_DL": "",
+    "PSW": "",
+    "TIME_LIM": "",
+    "MAX_FILE_SIZE": "",
+    "POWERED_BY": "",
+    "MADE_WITH": "",
+    "JI_PROJECT": "",
+    "1_MIN": "",
+    "1_H": "",
+    "1_D": "",
+    "1_W": "",
+    "1_M": "",
+    "1_Q": "",
+    "1_Y": "",
+    "NONE": "",
+    "UP_PSW": "",
+    "2_BIG": "",
+    "FILE_LIM": "",
+    "FILE_DIR_W": "",
+    "LINK_DIR_W": "",
+    "ASYNC_DIR_W": "",
+    "INSTALL_SCRIPT_HERE": "",
+    "ERR_OCC": "",
+    "FILE_UP": "",
+    "DL_PAGE": "",
+    "VALID_UNTIL": "",
+    "VIEW_LINK": "",
+    "DIRECT_DL": "",
+    "DELETE_LINK": "",
+    "DL": "",
+    "PREVIEW": "",
+    "FILE_404": "",
+    "FILE_NOT_AVAIL": "",
+    "CONFIRM_DEL": "",
+    "GONNA_DEL": "",
+    "DELETE": "",
+    "FILE_DELETED": "",
+    "FILE_EXPIRED": "",
+    "PSW_PROTEC": "",
+    "GIMME_PSW": "",
+    "ACCESS_KO": "",
+    "NOW_DOWNLOADING": "",
+    "USING_SERIVCE": "",
+    "TOS": "",
+    "AUTO_DESTRUCT": "",
+    "INTERNAL_ERROR_DEL": "",
+    "CONF_AUTOGEN_COMMENT": "",
+    "CANNOT_CREATE_DIR": "",
+    "MANUAL_CREATE": "",
+    "DIR_NOT_W": "",
+    "GIMME_W": "",
+    "HERE_SOLUTION": "",
+    "CONF_SOLUTION": "",
+    "CONF_SOLUTION_2": "",
+    "JI_INSTALL": "",
+    "STEP": "",
+    "OUT_OF": "",
+    "ADMIN_PSW": "",
+    "FINALIZATION": "",
+    "SETTING_UP": "",
+    "PREV_STEP": "",
+    "RETRY_STEP": "",
+    "JI_FONCTIONAL": "",
+    "INFO": "",
+    "BASE_ADDR_INFO": "",
+    "BASE_ADDR": "",
+    "DATA_DIR_EXPLAINATION": "",
+    "DATA_DIR": "",
+    "JI_HAZ_LANGAGES": "",
+    "DEF_LANGUAGE": "",
+    "NEXT_STEP": "",
+    "ADMIN_INTERFACE_INFO": "",
+    "NO_ADMIN": "",
+    "NO_ADMIN_AUTH": "",
+    "LOGIN": "",
+    "BAD_PSW": "",
+    "ADMIN_INTERFACE": "",
+    "CLEAN_EXPIRED": "",
+    "CLEAN_INCOMPLETE": "",
+    "CLEAN": "",
+    "SEARCH_NAME": "",
+    "SEARCH": "",
+    "LS_FILES": "",
+    "LIST": "",
+    "ACTIONS": "",
+    "SEARH_BY_HASH": "",
+    "SEARCH_LINK": "",
+    "CLEANED_FILES_CNT": "",
+    "LOGOUT": "",
+    "NOW_LOGOUT": "",
+    "LINK_DELETED": "",
+    "FILENAME": "",
+    "FILE": "",
+    "LINK": "",
+    "TYPE": "",
+    "SIZE": "",
+    "EXPIRE": "",
+    "ONETIME": "",
+    "UPLOAD_DATE": "",
+    "ORIGIN": "",
+    "ACTION": "",
+    "DEL_LINK": "",
+    "DEL_FILE_LINKS": "",
+    "DELETED_LINKS": "",
+    "YEAR": "",
+    "DAY": "",
+    "MINUTE": "",
+    "HOUR": "",
+    "SECOND": "",
+    "LESS_1_SEC": ""
 }
index b0729d0fa551d75c5ec97999e962ca07233ebdcf..6e5c26115e4d62eabd3b367ce3c1493d3fdf73ad 100644 (file)
 {
-    "Jirafeau, your web file repository": "",
-    "Select a file": "",
-    "Send": "",
-    "Uploading ...": "",
-    "One time download": "",
-    "Password": "",
-    "Time limit": "",
-    "Maximum file size": "",
-    "powered by Open-Source project Jirafeau": "",
-    "Made with": "",
-    "Jirafeau Project": "",
-    "One minute": "",
-    "One hour": "",
-    "One day": "",
-    "One week": "",
-    "One month": "",
-    "One quarter": "",
-    "One year": "",
-    "None": "",
-    "Upload password": "",
-    "File is too big": "",
-    "File size is limited to": "",
-    "The file directory is not writable": "",
-    "The link directory is not writable": "",
-    "The async directory is not writable!": "",
-    "Installer script still present": "",
-    "Please make sure to delete the installer script \"install.php\" before continuing.": "",
-    "An error occurred.": "",
-    "File uploaded !": "",
-    "Download page": "",
-    "This file is valid until the following date": "",
-    "View link": "",
-    "Direct download link": "",
-    "Delete link": "",
-    "Download": "",
-    "Preview": "",
-    "Sorry, the requested file is not found": "",
-    "File not available.": "",
-    "File has been deleted.": "",
-    "The time limit of this file has expired.": "",
-    "Password protection": "",
-    "Give the password of this file": "",
-    "Access denied": "",
-    "You are about to download": "",
-    "By using our services, you accept our": "",
-    "Terms of Service": "",
-    "Warning, this file will self-destruct after being read": "",
-    "Internal error during file creation.": "",
-
-    "This file was generated by the install process. You can edit it. Please see config.original.php to understand the configuration items.": "",
-    "The following directory could not be created": "",
-    "You should create this directory manually.": "",
-    "The following directory is not writable": "",
-    "You should give the write permission to the web server on this directory.": "",
-    "Here is a solution": "",
-    "The local configuration file could not be created. Create a <code>lib/config.local.php</code> file and give the write permission to the web server (preferred solution), or give the write permission to the web server on the <code>lib</code> directory.": "",
-    "The local configuration is not writable by the web server. Give the write permission to the web server on the '<code>lib/config.local.php</code> file.": "",
-    "Installation of Jirafeau": "",
-    "step": "",
-    "out of": "",
-    "Administration password": "",
-    "Finalisation": "",
-    "Jirafeau is setting the website according to the configuration you provided.": "",
-    "Previous step": "",
-    "Retry this step": "",
-    "Jirafeau is now fully operational": "",
-    "Information": "",
-    "The base address of Jirafeau is the first part of the URL, until (and including) the last slash. For example: \"http://www.example.com/\". Do not forget the trailing slash!": "",
-    "Base address": "",
-    "The data directory is where your files and information about your files will be stored. You should put it outside your web site, or at least restrict the access to this directory. Do not forget the trailing slash!": "",
-    "Data directory": "",
-    "Jirafeau is internationalised. Choose a specific langage or choose Automatic (langage is provided by user's browser).": "",
-    "Choose the default language": "",
-    "Next step": "",
-    "Jirafeau has an administration interface (through admin.php). You can set a password to access the interface or leave it empty to disable the interface.": "",
-    "Administration password": "",
-
-    "Sorry, the admin interface is not enabled.": "",
-    "Sorry, you are not authenticated on admin interface.": "",
-    "Login": "",
-    "Wrong password.": "",
-    "Admin interface": "",
-    "Clean expired files": "",
-    "Clean old unfinished transfers": "",
-    "Clean": "",
-    "Search files by name": "",
-    "Search": "",
-    "List all files": "",
-    "List": "",
-    "Actions": "",
-    "Search files by file hash": "",
-    "Search a specific link": "",
-    "Number of cleaned files": "",
-    "Logout": "",
-    "You are now loggued out": "",
-    "Link deleted": "",
-    "Filename": "",
-    "file": "",
-    "link": "",
-    "Type": "",
-    "Size": "",
-    "Expire": "",
-    "Onetime": "",
-    "Upload date": "",
-    "Origin": "",
-    "Action": "",
-    "Del link": "",
-    "Del file and links": "",
-    "Deleted links": "",
-    "year": "",
-    "day": "",
-    "minute": "",
-    "hour": "",
-    "second": "",
-    "less than a second": ""
+    "JI_WEB_RE": "",
+    "SEL_FILE": "",
+    "SEND": "",
+    "UP": "",
+    "ONE_TIME_DL": "",
+    "PSW": "",
+    "TIME_LIM": "",
+    "MAX_FILE_SIZE": "",
+    "POWERED_BY": "",
+    "MADE_WITH": "",
+    "JI_PROJECT": "",
+    "1_MIN": "",
+    "1_H": "",
+    "1_D": "",
+    "1_W": "",
+    "1_M": "",
+    "1_Q": "",
+    "1_Y": "",
+    "NONE": "",
+    "UP_PSW": "",
+    "2_BIG": "",
+    "FILE_LIM": "",
+    "FILE_DIR_W": "",
+    "LINK_DIR_W": "",
+    "ASYNC_DIR_W": "",
+    "INSTALL_SCRIPT_HERE": "",
+    "ERR_OCC": "",
+    "FILE_UP": "",
+    "DL_PAGE": "",
+    "VALID_UNTIL": "",
+    "VIEW_LINK": "",
+    "DIRECT_DL": "",
+    "DELETE_LINK": "",
+    "DL": "",
+    "PREVIEW": "",
+    "FILE_404": "",
+    "FILE_NOT_AVAIL": "",
+    "FILE_DELETED": "",
+    "FILE_EXPIRED": "",
+    "PSW_PROTEC": "",
+    "GIMME_PSW": "",
+    "ACCESS_KO": "",
+    "NOW_DOWNLOADING": "",
+    "USING_SERIVCE": "",
+    "TOS": "",
+    "AUTO_DESTRUCT": "",
+    "INTERNAL_ERROR_DEL": "",
+    "CONF_AUTOGEN_COMMENT": "",
+    "CANNOT_CREATE_DIR": "",
+    "MANUAL_CREATE": "",
+    "DIR_NOT_W": "",
+    "GIMME_W": "",
+    "HERE_SOLUTION": "",
+    "CONF_SOLUTION": "",
+    "CONF_SOLUTION_2": "",
+    "JI_INSTALL": "",
+    "STEP": "",
+    "OUT_OF": "",
+    "ADMIN_PSW": "",
+    "FINALIZATION": "",
+    "SETTING_UP": "",
+    "PREV_STEP": "",
+    "RETRY_STEP": "",
+    "JI_FONCTIONAL": "",
+    "INFO": "",
+    "BASE_ADDR_INFO": "",
+    "BASE_ADDR": "",
+    "DATA_DIR_EXPLAINATION": "",
+    "DATA_DIR": "",
+    "JI_HAZ_LANGAGES": "",
+    "DEF_LANGUAGE": "",
+    "NEXT_STEP": "",
+    "ADMIN_INTERFACE_INFO": "",
+    "NO_ADMIN": "",
+    "NO_ADMIN_AUTH": "",
+    "LOGIN": "",
+    "BAD_PSW": "",
+    "ADMIN_INTERFACE": "",
+    "CLEAN_EXPIRED": "",
+    "CLEAN_INCOMPLETE": "",
+    "CLEAN": "",
+    "SEARCH_NAME": "",
+    "SEARCH": "",
+    "LS_FILES": "",
+    "LIST": "",
+    "ACTIONS": "",
+    "SEARH_BY_HASH": "",
+    "SEARCH_LINK": "",
+    "CLEANED_FILES_CNT": "",
+    "LOGOUT": "",
+    "NOW_LOGOUT": "",
+    "LINK_DELETED": "",
+    "FILENAME": "",
+    "FILE": "",
+    "LINK": "",
+    "TYPE": "",
+    "SIZE": "",
+    "EXPIRE": "",
+    "ONETIME": "",
+    "UPLOAD_DATE": "",
+    "ORIGIN": "",
+    "ACTION": "",
+    "DEL_LINK": "",
+    "DEL_FILE_LINKS": "",
+    "DELETED_LINKS": "",
+    "YEAR": "",
+    "DAY": "",
+    "MINUTE": "",
+    "HOUR": "",
+    "SECOND": "",
+    "LESS_1_SEC": ""
 }
index 336dbd056ed8bbc1477ff80fac6508e1ef1bfd43..2f00b316a80777eb3138927996063f15357d0ded 100644 (file)
 {
-    "Jirafeau, your web file repository": "Jirafeau, web dosya deponuz",
-    "Select a file": "Lütfen bir dosya seçiniz",
-    "Send": "Gönder",
-    "Uploading ...": "Yükleniyor ...",
-    "One time download": "Bir defalık indirilebilir",
-    "Password": "Parola",
-    "Time limit": "Geçerlilik süresi",
-    "Maximum file size": "Dosya büyüklük limiti",
-    "powered by Open-Source project Jirafeau": "Açık kaynak kodlu Jirafeau Projesi ile güçlendirilmiştir.",
-    "Made with": "İle yapıldı",
-    "Jirafeau Project": "Jirafeau Projesi",
-    "One minute": "Bir dakika",
-    "One hour": "Bir saat",
-    "One day": "Bir gün",
-    "One week": "Bir hafta",
-    "One month": "Bir ay",
-    "One quarter": "15 dakika",
-    "One year": "Bir yıl",
-    "None": "Hiçbiri",
-    "Upload password": "Yükleme şifresi",
-    "File is too big": "Dosya çok büyük",
-    "File size is limited to": "En büyük dosya boyutu",
-    "The file directory is not writable": "Dosya klasörü yazılabilir değil",
-    "The link directory is not writable": "Bağlantı klasörü yazdırılabilir değil",
-    "The async directory is not writable!": "Async klasörü yazılabilir değil!",
-    "Installer script still present": "Kurulum script'i halen mevcut",
-    "Please make sure to delete the installer script \"install.php\" before continuing.": "Lütfen devam etmeden önce \"install.php\" kurulum dosyasını sildiğinizden emin olunuz.",
-    "An error occurred.": "Yükleme sırasında hata ile karşılaşıldı!",
-    "File uploaded !": "Dosya yüklendi!",
-    "Download page": "İndirme sayfası",
-    "This file is valid until the following date": "Dosya aşağıdaki tarihe kadar indirilebilecek",
-    "View link": "Bağlantıyı gör",
-    "Direct download link": "İndirme bağlantısı",
-    "Delete link": "Bağlantıyı sil",
-    "Download": "İndir",
-    "Preview": "Önizleme",
-    "Sorry, the requested file is not found": "Üzgünüz, istediğiniz dosya bulunamadı",
-    "File not available.": "Dosya bulunamadı.",
-    "File has been deleted.": "Dosya silindi.",
-    "The time limit of this file has expired.": "Bu dosyanın geçerli indirilebilir süresi doldu",
-    "Password protection": "Şifre koruma",
-    "Give the password of this file": "Bu dosyayı şifre ile koru",
-    "Access denied": "Erişim engellendi",
-    "You are about to download": "İndirmek üzeresiniz",
-    "By using our services, you accept our": "Hizmetimizi kullanarak, kabul edeceksiniz",
-    "Terms of Service": "Kullanım Şartları",
-    "Warning, this file will self-destruct after being read": "Uyarı, bu dosya indirildikten sonra kendiliğinden silinecektir",
-    "Internal error during file creation.": "Dosya yaratılırken sunucu hatası ile karşılaşıldı",
-    "This file was generated by the install process. You can edit it. Please see config.original.php to understand the configuration items.": "Bu dosya kurulum işlemi sırasında üretilmiştir. Düzenleyebilirsiniz. Lütfen ayarlamayı nasıl yapacağınızı config.original.php dosyasına bakarak inceleyiniz.",
-    "The following directory could not be created": "Aşağıdaki klasör açılamadı",
-    "You should create this directory manually.": "Bu klasörü elle açmanız gerekiyor.",
-    "The following directory is not writable": "Aşağıdaki klasör yazılabilir değil.",
-    "You should give the write permission to the web server on this directory.": "Bu klasörde web sunucusu üzerinde yazma yetkisi vermeniz gerekmektedir.",
-    "Here is a solution": "Çözüm burada",
-    "The local configuration file could not be created. Create a <code>lib/config.local.php</code> file and give the write permission to the web server (preferred solution), or give the write permission to the web server on the <code>lib</code> directory.": "Yerel ayar dosyası açılamadı. Lütfen boş bir <code>lib/config.local.php</code> dosyası yaratın ve sunucu tarafında bu dosyaya yazma yetkisi verin (önerilen çözüm), veya web sunucusunba <code>lib</code> klasörü için yazma yetkisi verin.",
-    "The local configuration is not writable by the web server. Give the write permission to the web server on the '<code>lib/config.local.php</code> file.": "Web sunucunuzun yerel ayar dosyası üzerinde yazma yetkisi yok. Lütfen web sunucunuz için <code>lib/config.local.php</code> dosyası için yazma yetkisi veriniz.",
-    "Installation of Jirafeau": "Jirafeau Kurulumu",
-    "step": "adım",
-    "out of": "kalan",
-    "Administration password": "Yönetici parolası",
-    "Finalisation": "Sonuçlandırma",
-    "Jirafeau is setting the website according to the configuration you provided.": "Jirafeau sağladığınız ayarlar doğrultusunda web sayfasını düzenliyor.",
-    "Previous step": "Önceki adım",
-    "Retry this step": "Bu adımı tekrarla",
-    "Jirafeau is now fully operational": "Jirafeau kullanıma hazır durumdadır",
-    "Information": "Bilgi",
-    "The base address of Jirafeau is the first part of the URL, until (and including) the last slash. For example: \"http://www.example.com/\". Do not forget the trailing slash!": "Jrafeau'nun ana adresi, URL'nizin son bölü işaretinden önceki ilk bölümüdür. Örneğin: \"http://www.websayfaniz.com/\". Lütfen adresin sonuna bölü (/) işareti eklemeyi unutmayınız.",
-    "Base address": "Ana adres",
-    "The data directory is where your files and information about your files will be stored. You should put it outside your web site, or at least restrict the access to this directory. Do not forget the trailing slash!": "Veri klasörü dosyalarınızın ve bunların bilgilerinin kaydedildiği yerdir. Bu klasörü web sayfanızın dışına koyabilir veya en azından bu klasöre verilen yetkiyi kısıtlayabilirsiniz. Bölü işareti kullanmayı unutmayınız!",
-    "Data directory": "Veri klasörü",
-    "Jirafeau is internationalised. Choose a specific langage or choose Automatic (langage is provided by user's browser).": "Jirafeau çoklu dil desteği vermektedir. Lütfen belirli bir dil seçiniz veya kullanıcının web tarayıcısının dilini algılayabilmesi için otomatiği seçiniz.",
-    "Choose the default language": "Lütfen varsayılan dili seçiniz",
-    "Next step": "Sonraki adım",
-    "Jirafeau has an administration interface (through admin.php). You can set a password to access the interface or leave it empty to disable the interface.": "Jirafeau, admin.php ile yönetim sayfası sunmaktadır. Yönetim sayfasını etkinleştirmek için bir parola belirleyiniz veya boş bırakarak yönetim sayfasını devre dışı bırakınız.",
-    "Sorry, the admin interface is not enabled.": "Üzgünüz, yönetim sayfanız etkinleştirilmedi.",
-    "Sorry, you are not authenticated on admin interface.": "Üzgünüz, yönetim sayfasına erişebilmeniz için giriş yapmamışsınız.",
-    "Login": "Giriş",
-    "Wrong password.": "Yanlış parola.",
-    "Admin interface": "Yönetim sayfası",
-    "Clean expired files": "Süresi dolan dosyaları sil",
-    "Clean old unfinished transfers": "Eski tamamlanmamış dosyaları sil",
-    "Clean": "Temizle",
-    "Search files by name": "Dosya adı ile arama yap",
-    "Search": "Ara",
-    "List all files": "Tüm dosyaları listele",
-    "List": "Listele",
-    "Actions": "İşlemler",
-    "Search files by file hash": "Dosya kodu ile arama yap",
-    "Search a specific link": "Belirli bir bağlantı adresi ile arama yap",
-    "Number of cleaned files": "Temizlenmiş dosya adedi",
-    "Logout": "Çıkış",
-    "You are now loggued out": "Çıkış yapmak üzeresiniz",
-    "Link deleted": "Bağlantı silindi",
-    "Filename": "Dosya adı",
-    "file": "dosya",
-    "link": "bağlantı",
-    "Type": "Tür",
-    "Size": "Boyut",
-    "Expire": "Geçerlilik süresi",
-    "Onetime": "Bir defalık",
-    "Upload date": "Yüklenme tarihi",
-    "Origin": "Orijin",
-    "Action": "İşlem",
-    "Del link": "Bağlantı sil",
-    "Del file and links": "Dosyayı ve bağlantıyı sil",
-    "Deleted links": "Silinmiş bağlantılar",
-    "year": "yıl",
-    "day": "gün",
-    "minute": "dakika",
-    "hour": "saat",
-    "second": "saniye",
-    "less than a second": "bir saniyeden daha az"
+    "JI_WEB_RE": "Jirafeau, web dosya deponuz",
+    "SEL_FILE": "Lütfen bir dosya seçiniz",
+    "SEND": "Gönder",
+    "UP": "Yükleniyor ...",
+    "ONE_TIME_DL": "Bir defalık indirilebilir",
+    "PSW": "Parola",
+    "TIME_LIM": "Geçerlilik süresi",
+    "MAX_FILE_SIZE": "Dosya büyüklük limiti",
+    "POWERED_BY": "Açık kaynak kodlu Jirafeau Projesi ile güçlendirilmiştir.",
+    "MADE_WITH": "İle yapıldı",
+    "JI_PROJECT": "Jirafeau Projesi",
+    "1_MIN": "Bir dakika",
+    "1_H": "Bir saat",
+    "1_D": "Bir gün",
+    "1_W": "Bir hafta",
+    "1_M": "Bir ay",
+    "1_Q": "15 dakika",
+    "1_Y": "Bir yıl",
+    "NONE": "Hiçbiri",
+    "UP_PSW": "Yükleme şifresi",
+    "2_BIG": "Dosya çok büyük",
+    "FILE_LIM": "En büyük dosya boyutu",
+    "FILE_DIR_W": "Dosya klasörü yazılabilir değil",
+    "LINK_DIR_W": "Bağlantı klasörü yazdırılabilir değil",
+    "ASYNC_DIR_W": "Async klasörü yazılabilir değil!",
+    "INSTALL_SCRIPT_HERE": "Kurulum script'i halen mevcut",
+    "ERR_OCC": "Yükleme sırasında hata ile karşılaşıldı!",
+    "FILE_UP": "Dosya yüklendi!",
+    "DL_PAGE": "İndirme sayfası",
+    "VALID_UNTIL": "Dosya aşağıdaki tarihe kadar indirilebilecek",
+    "VIEW_LINK": "Bağlantıyı gör",
+    "DIRECT_DL": "İndirme bağlantısı",
+    "DELETE_LINK": "Bağlantıyı sil",
+    "DL": "İndir",
+    "PREVIEW": "Önizleme",
+    "FILE_404": "Üzgünüz, istediğiniz dosya bulunamadı",
+    "FILE_NOT_AVAIL": "Dosya bulunamadı.",
+    "FILE_DELETED": "Dosya silindi.",
+    "FILE_EXPIRED": "Bu dosyanın geçerli indirilebilir süresi doldu",
+    "PSW_PROTEC": "Şifre koruma",
+    "GIMME_PSW": "Bu dosyayı şifre ile koru",
+    "ACCESS_KO": "Erişim engellendi",
+    "NOW_DOWNLOADING": "İndirmek üzeresiniz",
+    "USING_SERIVCE": "Hizmetimizi kullanarak, kabul edeceksiniz",
+    "TOS": "Kullanım Şartları",
+    "AUTO_DESTRUCT": "Uyarı, bu dosya indirildikten sonra kendiliğinden silinecektir",
+    "INTERNAL_ERROR_DEL": "Dosya yaratılırken sunucu hatası ile karşılaşıldı",
+    "CONF_AUTOGEN_COMMENT": "Bu dosya kurulum işlemi sırasında üretilmiştir. Düzenleyebilirsiniz. Lütfen ayarlamayı nasıl yapacağınızı config.original.php dosyasına bakarak inceleyiniz.",
+    "CANNOT_CREATE_DIR": "Aşağıdaki klasör açılamadı",
+    "MANUAL_CREATE": "Bu klasörü elle açmanız gerekiyor.",
+    "DIR_NOT_W": "Aşağıdaki klasör yazılabilir değil.",
+    "GIMME_W": "Bu klasörde web sunucusu üzerinde yazma yetkisi vermeniz gerekmektedir.",
+    "HERE_SOLUTION": "Çözüm burada",
+    "CONF_SOLUTION": "Yerel ayar dosyası açılamadı. Lütfen boş bir <code>lib/config.local.php</code> dosyası yaratın ve sunucu tarafında bu dosyaya yazma yetkisi verin (önerilen çözüm), veya web sunucusunba <code>lib</code> klasörü için yazma yetkisi verin.",
+    "CONF_SOLUTION_2": "Web sunucunuzun yerel ayar dosyası üzerinde yazma yetkisi yok. Lütfen web sunucunuz için <code>lib/config.local.php</code> dosyası için yazma yetkisi veriniz.",
+    "JI_INSTALL": "Jirafeau Kurulumu",
+    "STEP": "adım",
+    "OUT_OF": "kalan",
+    "ADMIN_PSW": "Yönetici parolası",
+    "FINALIZATION": "Sonuçlandırma",
+    "SETTING_UP": "Jirafeau sağladığınız ayarlar doğrultusunda web sayfasını düzenliyor.",
+    "PREV_STEP": "Önceki adım",
+    "RETRY_STEP": "Bu adımı tekrarla",
+    "JI_FONCTIONAL": "Jirafeau kullanıma hazır durumdadır",
+    "INFO": "Bilgi",
+    "BASE_ADDR_INFO": "Jrafeau'nun ana adresi, URL'nizin son bölü işaretinden önceki ilk bölümüdür. Örneğin: \"http://www.websayfaniz.com/\". Lütfen adresin sonuna bölü (/) işareti eklemeyi unutmayınız.",
+    "BASE_ADDR": "Ana adres",
+    "DATA_DIR_EXPLAINATION": "Veri klasörü dosyalarınızın ve bunların bilgilerinin kaydedildiği yerdir. Bu klasörü web sayfanızın dışına koyabilir veya en azından bu klasöre verilen yetkiyi kısıtlayabilirsiniz. Bölü işareti kullanmayı unutmayınız!",
+    "DATA_DIR": "Veri klasörü",
+    "JI_HAZ_LANGAGES": "Jirafeau çoklu dil desteği vermektedir. Lütfen belirli bir dil seçiniz veya kullanıcının web tarayıcısının dilini algılayabilmesi için otomatiği seçiniz.",
+    "DEF_LANGUAGE": "Lütfen varsayılan dili seçiniz",
+    "NEXT_STEP": "Sonraki adım",
+    "ADMIN_INTERFACE_INFO": "Jirafeau, admin.php ile yönetim sayfası sunmaktadır. Yönetim sayfasını etkinleştirmek için bir parola belirleyiniz veya boş bırakarak yönetim sayfasını devre dışı bırakınız.",
+    "NO_ADMIN": "Üzgünüz, yönetim sayfanız etkinleştirilmedi.",
+    "NO_ADMIN_AUTH": "Üzgünüz, yönetim sayfasına erişebilmeniz için giriş yapmamışsınız.",
+    "LOGIN": "Giriş",
+    "BAD_PSW": "Yanlış parola.",
+    "ADMIN_INTERFACE": "Yönetim sayfası",
+    "CLEAN_EXPIRED": "Süresi dolan dosyaları sil",
+    "CLEAN_INCOMPLETE": "Eski tamamlanmamış dosyaları sil",
+    "CLEAN": "Temizle",
+    "SEARCH_NAME": "Dosya adı ile arama yap",
+    "SEARCH": "Ara",
+    "LS_FILES": "Tüm dosyaları listele",
+    "LIST": "Listele",
+    "ACTIONS": "İşlemler",
+    "SEARH_BY_HASH": "Dosya kodu ile arama yap",
+    "SEARCH_LINK": "Belirli bir bağlantı adresi ile arama yap",
+    "CLEANED_FILES_CNT": "Temizlenmiş dosya adedi",
+    "LOGOUT": "Çıkış",
+    "NOW_LOGOUT": "Çıkış yapmak üzeresiniz",
+    "LINK_DELETED": "Bağlantı silindi",
+    "FILENAME": "Dosya adı",
+    "FILE": "dosya",
+    "LINK": "bağlantı",
+    "TYPE": "Tür",
+    "SIZE": "Boyut",
+    "EXPIRE": "Geçerlilik süresi",
+    "ONETIME": "Bir defalık",
+    "UPLOAD_DATE": "Yüklenme tarihi",
+    "ORIGIN": "Orijin",
+    "ACTION": "İşlem",
+    "DEL_LINK": "Bağlantı sil",
+    "DEL_FILE_LINKS": "Dosyayı ve bağlantıyı sil",
+    "DELETED_LINKS": "Silinmiş bağlantılar",
+    "YEAR": "yıl",
+    "DAY": "gün",
+    "MINUTE": "dakika",
+    "HOUR": "saat",
+    "SECOND": "saniye",
+    "LESS_1_SEC": "bir saniyeden daha az"
 }
index d681a6a41f229519481e75c758c3a0e2206fd2b4..84341fb20e0f559fd4fcb97660dffed7ceb7203e 100644 (file)
 {
-    "Access denied": "", 
-    "Action": "", 
-    "Actions": "", 
-    "Admin interface": "", 
-    "Administration password": "", 
-    "An error occurred.": "", 
-    "Base address": "", 
-    "By using our services, you accept our": "", 
-    "Choose the default language": "", 
-    "Clean": "", 
-    "Clean expired files": "", 
-    "Clean old unfinished transfers": "", 
-    "Data directory": "", 
-    "Del file and links": "", 
-    "Del link": "", 
-    "Delete link": "", 
-    "Deleted links": "", 
-    "Direct download link": "", 
-    "Download": "", 
-    "Download page": "", 
-    "Expire": "", 
-    "File has been deleted.": "", 
-    "File is too big": "", 
-    "File not available.": "", 
-    "File size is limited to": "", 
-    "File uploaded !": "", 
-    "Filename": "", 
-    "Finalisation": "", 
-    "Give the password of this file": "", 
-    "Here is a solution": "", 
-    "Information": "", 
-    "Installation of Jirafeau": "", 
-    "Installer script still present": "", 
-    "Internal error during file creation.": "", 
-    "Jirafeau Project": "", 
-    "Jirafeau has an administration interface (through admin.php). You can set a password to access the interface or leave it empty to disable the interface.": "", 
-    "Jirafeau is internationalised. Choose a specific langage or choose Automatic (langage is provided by user's browser).": "", 
-    "Jirafeau is now fully operational": "", 
-    "Jirafeau is setting the website according to the configuration you provided.": "", 
-    "Jirafeau, your web file repository": "", 
-    "Link deleted": "", 
-    "List": "", 
-    "List all files": "", 
-    "Login": "", 
-    "Logout": "", 
-    "Maximum file size": "", 
-    "Next step": "", 
-    "None": "", 
-    "Number of cleaned files": "", 
-    "One day": "", 
-    "One hour": "", 
-    "One minute": "", 
-    "One month": "", 
-    "One time download": "", 
-    "One week": "", 
-    "One year": "", 
-    "Onetime": "", 
-    "Origin": "", 
-    "Password": "", 
-    "Password protection": "", 
-    "Please make sure to delete the installer script \"install.php\" before continuing.": "", 
-    "Preview": "", 
-    "Previous step": "", 
-    "Retry this step": "", 
-    "Search": "", 
-    "Search a specific link": "", 
-    "Search files by file hash": "", 
-    "Search files by name": "", 
-    "Select a file": "", 
-    "Send": "", 
-    "Size": "", 
-    "Sorry, the admin interface is not enabled.": "", 
-    "Sorry, the requested file is not found": "", 
-    "Sorry, you are not authenticated on admin interface.": "", 
+    "ACCESS_KO": "", 
+    "ACTION": "", 
+    "ACTIONS": "", 
+    "ADMIN_INTERFACE": "", 
+    "ADMIN_PSW": "", 
+    "ERR_OCC": "", 
+    "BASE_ADDR": "", 
+    "USING_SERIVCE": "", 
+    "DEF_LANGUAGE": "", 
+    "CLEAN": "", 
+    "CLEAN_EXPIRED": "", 
+    "CLEAN_INCOMPLETE": "", 
+    "DATA_DIR": "", 
+    "DEL_FILE_LINKS": "", 
+    "DEL_LINK": "", 
+    "DELETE_LINK": "", 
+    "DELETED_LINKS": "", 
+    "DIRECT_DL": "", 
+    "DL": "", 
+    "DL_PAGE": "", 
+    "EXPIRE": "", 
+    "FILE_DELETED": "", 
+    "2_BIG": "", 
+    "FILE_NOT_AVAIL": "", 
+    "FILE_LIM": "", 
+    "FILE_UP": "", 
+    "FILENAME": "", 
+    "FINALIZATION": "", 
+    "GIMME_PSW": "", 
+    "HERE_SOLUTION": "", 
+    "INFO": "", 
+    "JI_INSTALL": "", 
+    "INSTALL_SCRIPT_HERE": "", 
+    "INTERNAL_ERROR_DEL": "", 
+    "JI_PROJECT": "", 
+    "ADMIN_INTERFACE_INFO": "", 
+    "JI_HAZ_LANGAGES": "", 
+    "JI_FONCTIONAL": "", 
+    "SETTING_UP": "", 
+    "JI_WEB_RE": "", 
+    "LINK_DELETED": "", 
+    "LIST": "", 
+    "LS_FILES": "", 
+    "LOGIN": "", 
+    "LOGOUT": "", 
+    "MAX_FILE_SIZE": "", 
+    "NEXT_STEP": "", 
+    "NONE": "", 
+    "CLEANED_FILES_CNT": "", 
+    "1_D": "", 
+    "1_H": "", 
+    "1_MIN": "", 
+    "1_M": "", 
+    "ONE_TIME_DL": "", 
+    "1_W": "", 
+    "1_Y": "", 
+    "ONETIME": "", 
+    "ORIGIN": "", 
+    "PSW": "", 
+    "PSW_PROTEC": "", 
+    "PREVIEW": "", 
+    "PREV_STEP": "", 
+    "RETRY_STEP": "", 
+    "SEARCH": "", 
+    "SEARCH_LINK": "", 
+    "SEARH_BY_HASH": "", 
+    "SEARCH_NAME": "", 
+    "SEL_FILE": "", 
+    "SEND": "", 
+    "SIZE": "", 
+    "NO_ADMIN": "", 
+    "FILE_404": "", 
+    "NO_ADMIN_AUTH": "", 
     "Term Of Service": "", 
-    "The async directory is not writable!": "", 
-    "The base address of Jirafeau is the first part of the URL, until (and including) the last slash. For example: \"http://www.example.com/\". Do not forget the trailing slash!": "", 
-    "The data directory is where your files and information about your files will be stored. You should put it outside your web site, or at least restrict the access to this directory. Do not forget the trailing slash!": "", 
-    "The file directory is not writable": "", 
-    "The following directory could not be created": "", 
-    "The following directory is not writable": "", 
-    "The link directory is not writable": "", 
-    "The local configuration file could not be created. Create a <code>lib/config.local.php</code> file and give the write permission to the web server (preferred solution), or give the write permission to the web server on the <code>lib</code> directory.": "", 
-    "The local configuration is not writable by the web server. Give the write permission to the web server on the '<code>lib/config.local.php</code> file.": "", 
-    "The time limit of this file has expired.": "", 
-    "This file is valid until the following date": "", 
-    "This file was generated by the install process. You can edit it. Please see config.original.php to understand the configuration items.": "", 
-    "Time limit": "", 
-    "Type": "", 
-    "Upload date": "", 
-    "Upload password": "", 
-    "Uploading ...": "", 
-    "View link": "", 
-    "Warning, this file will self-destruct after being read": "", 
-    "Wrong password.": "", 
-    "You are about to download": "", 
-    "You are now loggued out": "", 
-    "You should create this directory manually.": "", 
-    "You should give the write permission to the web server on this directory.": "", 
-    "day": "", 
-    "file": "", 
-    "hour": "", 
-    "less than a second": "", 
-    "link": "", 
-    "minute": "", 
-    "out of": "", 
-    "powered by Open-Source project Jirafeau": "", 
-    "second": "", 
-    "step": "", 
-    "year": ""
-}
\ No newline at end of file
+    "ASYNC_DIR_W": "", 
+    "BASE_ADDR_INFO": "",
+    "DATA_DIR_EXPLAINATION": "", 
+    "FILE_DIR_W": "", 
+    "CANNOT_CREATE_DIR": "", 
+    "DIR_NOT_W": "", 
+    "LINK_DIR_W": "", 
+    "CONF_SOLUTION": "", 
+    "CONF_SOLUTION_2": "", 
+    "FILE_EXPIRED": "", 
+    "VALID_UNTIL": "", 
+    "CONF_AUTOGEN_COMMENT": "", 
+    "TIME_LIM": "", 
+    "TYPE": "", 
+    "UPLOAD_DATE": "", 
+    "UP_PSW": "", 
+    "UP": "", 
+    "VIEW_LINK": "", 
+    "AUTO_DESTRUCT": "", 
+    "BAD_PSW": "", 
+    "NOW_DOWNLOADING": "", 
+    "NOW_LOGOUT": "", 
+    "MANUAL_CREATE": "", 
+    "GIMME_W": "", 
+    "DAY": "", 
+    "FILE": "", 
+    "HOUR": "", 
+    "LESS_1_SEC": "", 
+    "LINK": "", 
+    "MINUTE": "", 
+    "OUT_OF": "", 
+    "POWERED_BY": "", 
+    "SECOND": "", 
+    "STEP": "", 
+    "YEAR": ""
+}
index 7b020f1679f220d730b7115ebc55b94adc79396f..b386cfb9107ecd5508362cb95c9227d67e4b6862 100644 (file)
 {
-    "Access denied": "拒绝访问",
-    "Action": "操作",
-    "Actions": "操作",
-    "Admin interface": "管理界面",
-    "Administration password": "管理密码",
-    "An error occurred.": "发生错误。",
-    "Base address": "基础地址",
-    "By using our services, you accept our": "使用我们的服务表示您同意我们的",
-    "Choose the default language": "选择默认语言",
-    "Clean": "清理",
-    "Clean expired files": "清除过期的文件",
-    "Clean old unfinished transfers": "清除旧的未完成传输",
-    "Data directory": "数据目录",
-    "Del file and links": "删除文件和链接",
-    "Del link": "删除链接",
-    "Delete link": "删除链接",
-    "Deleted links": "已删除链接",
-    "Direct download link": "直接下载链接",
-    "Download": "下载",
-    "Download page": "下载页面",
-    "Expire": "过期时间",
-    "File has been deleted.": "文件已被删除。",
-    "File is too big": "文件太大",
-    "File not available.": "文件不可用。",
-    "File size is limited to": "文件大小限制为",
-    "File uploaded !": "文件已上传!",
-    "Filename": "文件名",
-    "Finalisation": "决定",
-    "Give the password of this file": "请提供此文件的密码",
-    "Here is a solution": "这是一个解决方案",
-    "Information": "信息",
-    "Installation of Jirafeau": "安装 Jirafeau",
-    "Installer script still present": "安装脚本仍然存在",
-    "Internal error during file creation.": "文件创建时发生内部错误。",
-    "Jirafeau Project": "Jirafeau 项目",
-    "Jirafeau has an administration interface (through admin.php). You can set a password to access the interface or leave it empty to disable the interface.": "",
-    "Jirafeau is internationalised. Choose a specific langage or choose Automatic (langage is provided by user's browser).": "Jirafeau 是国际化的。请选择一个语言或者选择“自动”(按用户的浏览器提供)。",
-    "Jirafeau is now fully operational": "Jirafeau 已全面运行",
-    "Jirafeau is setting the website according to the configuration you provided.": "",
-    "Jirafeau, your web file repository": "Jirafeau,您在网页上的文件库",
-    "Link deleted": "链接已删除",
-    "List": "列表",
-    "List all files": "列出所有文件",
-    "Login": "登录",
-    "Logout": "退出",
-    "Maximum file size": "文件最大大小",
-    "Next step": "下一步",
-    "None": "无",
-    "Number of cleaned files": "已清除文件的数量",
-    "One day": "一天",
-    "One hour": "一小时",
-    "One minute": "一分钟",
-    "One month": "一个月",
-    "One time download": "一次下载",
-    "One week": "一周",
-    "One year": "一年",
-    "Onetime": "一次",
-    "Origin": "",
-    "Password": "密码",
-    "Password protection": "密码保护",
-    "Please make sure to delete the installer script \"install.php\" before continuing.": "请在继续前确保删除安装脚本 \"install.php\"。",
-    "Preview": "预览",
-    "Previous step": "上一步",
-    "Retry this step": "重试此步骤",
-    "Search": "搜索",
-    "Search a specific link": "搜索一个特定链接",
-    "Search files by file hash": "按文件散列搜索",
-    "Search files by name": "按名称搜索文件",
-    "Select a file": "选择一个文件",
-    "Send": "发送",
-    "Size": "大小",
-    "Sorry, the admin interface is not enabled.": "抱歉,管理界面未启用。",
-    "Sorry, the requested file is not found": "抱歉,请求的文件未找到",
-    "Sorry, you are not authenticated on admin interface.": "抱歉,您未被授权使用管理界面。",
+    "ACCESS_KO": "拒绝访问",
+    "ACTION": "操作",
+    "ACTIONS": "操作",
+    "ADMIN_INTERFACE": "管理界面",
+    "ADMIN_PSW": "管理密码",
+    "ERR_OCC": "发生错误。",
+    "BASE_ADDR": "基础地址",
+    "USING_SERIVCE": "使用我们的服务表示您同意我们的",
+    "DEF_LANGUAGE": "选择默认语言",
+    "CLEAN": "清理",
+    "CLEAN_EXPIRED": "清除过期的文件",
+    "CLEAN_INCOMPLETE": "清除旧的未完成传输",
+    "DATA_DIR": "数据目录",
+    "DEL_FILE_LINKS": "删除文件和链接",
+    "DEL_LINK": "删除链接",
+    "DELETE_LINK": "删除链接",
+    "DELETED_LINKS": "已删除链接",
+    "DIRECT_DL": "直接下载链接",
+    "DL": "下载",
+    "DL_PAGE": "下载页面",
+    "EXPIRE": "过期时间",
+    "FILE_DELETED": "文件已被删除。",
+    "2_BIG": "文件太大",
+    "FILE_NOT_AVAIL": "文件不可用。",
+    "FILE_LIM": "文件大小限制为",
+    "FILE_UP": "文件已上传!",
+    "FILENAME": "文件名",
+    "FINALIZATION": "决定",
+    "GIMME_PSW": "请提供此文件的密码",
+    "HERE_SOLUTION": "这是一个解决方案",
+    "INFO": "信息",
+    "JI_INSTALL": "安装 Jirafeau",
+    "INSTALL_SCRIPT_HERE": "安装脚本仍然存在",
+    "INTERNAL_ERROR_DEL": "文件创建时发生内部错误。",
+    "JI_PROJECT": "Jirafeau 项目",
+    "ADMIN_INTERFACE_INFO": "",
+    "JI_HAZ_LANGAGES": "Jirafeau 是国际化的。请选择一个语言或者选择“自动”(按用户的浏览器提供)。",
+    "JI_FONCTIONAL": "Jirafeau 已全面运行",
+    "SETTING_UP": "",
+    "JI_WEB_RE": "Jirafeau,您在网页上的文件库",
+    "LINK_DELETED": "链接已删除",
+    "LIST": "列表",
+    "LS_FILES": "列出所有文件",
+    "LOGIN": "登录",
+    "LOGOUT": "退出",
+    "MAX_FILE_SIZE": "文件最大大小",
+    "NEXT_STEP": "下一步",
+    "NONE": "无",
+    "CLEANED_FILES_CNT": "已清除文件的数量",
+    "1_D": "一天",
+    "1_H": "一小时",
+    "1_MIN": "一分钟",
+    "1_M": "一个月",
+    "ONE_TIME_DL": "一次下载",
+    "1_W": "一周",
+    "1_Y": "一年",
+    "ONETIME": "一次",
+    "ORIGIN": "",
+    "PSW": "密码",
+    "PSW_PROTEC": "密码保护",
+    "PREVIEW": "预览",
+    "PREV_STEP": "上一步",
+    "RETRY_STEP": "重试此步骤",
+    "SEARCH": "搜索",
+    "SEARCH_LINK": "搜索一个特定链接",
+    "SEARH_BY_HASH": "按文件散列搜索",
+    "SEARCH_NAME": "按名称搜索文件",
+    "SEL_FILE": "选择一个文件",
+    "SEND": "发送",
+    "SIZE": "大小",
+    "NO_ADMIN": "抱歉,管理界面未启用。",
+    "FILE_404": "抱歉,请求的文件未找到",
+    "NO_ADMIN_AUTH": "抱歉,您未被授权使用管理界面。",
     "Term Of Service": "服务条款",
-    "The async directory is not writable!": "异步目录无法写入!",
-    "The base address of Jirafeau is the first part of the URL, until (and including) the last slash. For example: \"http://www.example.com/\". Do not forget the trailing slash!": "",
-    "The data directory is where your files and information about your files will be stored. You should put it outside your web site, or at least restrict the access to this directory. Do not forget the trailing slash!": "",
-    "The file directory is not writable": "文件目录无法写入",
-    "The following directory could not be created": "下列目录无法创建",
-    "The following directory is not writable": "下列目录无法写入",
-    "The link directory is not writable": "链接目录无法使用",
-    "The local configuration file could not be created. Create a <code>lib/config.local.php</code> file and give the write permission to the web server (preferred solution), or give the write permission to the web server on the <code>lib</code> directory.": "",
-    "The local configuration is not writable by the web server. Give the write permission to the web server on the '<code>lib/config.local.php</code> file.": "",
-    "The time limit of this file has expired.": "此文件的期限已过期。",
-    "This file is valid until the following date": "此文件在下列日期前有效",
-    "This file was generated by the install process. You can edit it. Please see config.original.php to understand the configuration items.": "此文件由安装进程生成。您可以编辑它。请参阅 config.original.php 了解配置选项。",
-    "Time limit": "时间限制",
-    "Type": "类型",
-    "Upload date": "上传日期",
-    "Upload password": "上传密码",
-    "Uploading ...": "正在上传...",
-    "View link": "查看链接",
-    "Warning, this file will self-destruct after being read": "警告,该文件将在被阅读后自毁",
-    "Wrong password.": "密码错误。",
-    "You are about to download": "您即将下载",
-    "You are now loggued out": "您现在已退出登录",
-    "You should create this directory manually.": "您应该手动创建此目录。",
-    "You should give the write permission to the web server on this directory.": "您应该向网页服务器提供此目录的写入权限。",
-    "day": "天",
-    "file": "文件",
-    "hour": "小时",
-    "less than a second": "不到一秒",
-    "link": "链接",
-    "minute": "分钟",
-    "out of": "/",
-    "powered by Open-Source project Jirafeau": "开源软件 Jirafeau 提供技术支持",
-    "second": "秒",
-    "step": "步骤",
-    "year": "年"
+    "ASYNC_DIR_W": "异步目录无法写入!",
+    "BASE_ADDR_INFO": "",
+    "DATA_DIR_EXPLAINATION": "",
+    "FILE_DIR_W": "文件目录无法写入",
+    "CANNOT_CREATE_DIR": "下列目录无法创建",
+    "DIR_NOT_W": "下列目录无法写入",
+    "LINK_DIR_W": "链接目录无法使用",
+    "CONF_SOLUTION": "",
+    "CONF_SOLUTION_2": "",
+    "FILE_EXPIRED": "此文件的期限已过期。",
+    "VALID_UNTIL": "此文件在下列日期前有效",
+    "CONF_AUTOGEN_COMMENT": "此文件由安装进程生成。您可以编辑它。请参阅 config.original.php 了解配置选项。",
+    "TIME_LIM": "时间限制",
+    "TYPE": "类型",
+    "UPLOAD_DATE": "上传日期",
+    "UP_PSW": "上传密码",
+    "UP": "正在上传...",
+    "VIEW_LINK": "查看链接",
+    "AUTO_DESTRUCT": "警告,该文件将在被阅读后自毁",
+    "BAD_PSW": "密码错误。",
+    "NOW_DOWNLOADING": "您即将下载",
+    "NOW_LOGOUT": "您现在已退出登录",
+    "MANUAL_CREATE": "您应该手动创建此目录。",
+    "GIMME_W": "您应该向网页服务器提供此目录的写入权限。",
+    "DAY": "天",
+    "FILE": "文件",
+    "HOUR": "小时",
+    "LESS_1_SEC": "不到一秒",
+    "LINK": "链接",
+    "MINUTE": "分钟",
+    "OUT_OF": "/",
+    "POWERED_BY": "开源软件 Jirafeau 提供技术支持",
+    "SECOND": "秒",
+    "STEP": "步骤",
+    "YEAR": "年"
 }
index 054f97fa23922af0fc89bdd34ff7288d0d1f9f0e..8647b2eb7d12d4a472bf11dde4f7c89e619e5337 100644 (file)
@@ -3,15 +3,15 @@
     <p>
         <!-- Project links -->
         <?php
-          echo t('Made with') .
-            ' <a href="https://gitlab.com/mojo42/Jirafeau">' . t('Jirafeau Project') . '</a>' .
+          echo t('MADE_WITH') .
+            ' <a href="https://gitlab.com/mojo42/Jirafeau">' . t('JI_PROJECT') . '</a>' .
             ' (<a href="https://www.gnu.org/licenses/agpl.html"><abbr title="GNU Affero General Public License v3">AGPL-3.0</abbr></a>)';
         ?>
         <!-- Installation dependend links -->
         <?php
         if (false === empty($cfg['installation_done'])) {
             echo ' <span>|</span> ';
-            echo '<a href="tos.php">' . t('Terms of Service') . '</a>';
+            echo '<a href="tos.php">' . t('TOS') . '</a>';
         }
         ?>
     </p>
index fa7fb8f59ab3c702f764fd28eb893d25d5449c77..55b3379ac05fd7fed8aa8c237239575b54cbb26e 100644 (file)
@@ -6,7 +6,7 @@ header('x-ua-compatible: ie=edge');
 <html>
 <head>
   <meta charset="utf-8">
-  <title><?php echo (true === empty($cfg['title']))? t('Jirafeau, your web file repository') : $cfg['title']; ?></title>
+  <title><?php echo (true === empty($cfg['title']))? t('JI_WEB_RE') : $cfg['title']; ?></title>
   <link rel="shortcut icon" href="<?php echo 'media/' . $cfg['style'] . '/favicon.ico'; ?>">
   <link href="<?php echo 'media/' . $cfg['style'] . '/style.css.php'; ?>" rel="stylesheet" type="text/css" />
 </head>
@@ -15,6 +15,6 @@ header('x-ua-compatible: ie=edge');
 <div id="content">
   <h1>
     <a href="./">
-      <?php echo (true === empty($cfg['title']))? t('Jirafeau, your web file repository') : $cfg['title']; ?>
+      <?php echo (true === empty($cfg['title']))? t('JI_WEB_RE') : $cfg['title']; ?>
     </a>
   </h1>

patrick-canterino.de