]> git.p6c8.net - jirafeau_mojo42.git/blobdiff - file.php
Added french support to installation process
[jirafeau_mojo42.git] / file.php
index 32c097f768b47ea7a9a5293adadab144909e66c7..cc3f163c898820707dfab432fae5547b47e3ceca 100644 (file)
--- a/file.php
+++ b/file.php
  */
 define ('JIRAFEAU_ROOT', dirname (__FILE__) . '/');
 
-require (JIRAFEAU_ROOT.'lib/config.php');
-require (JIRAFEAU_ROOT.'lib/settings.php');
-require (JIRAFEAU_ROOT.'lib/functions.php');
+require (JIRAFEAU_ROOT . 'lib/lang.php');
+require (JIRAFEAU_ROOT . 'lib/config.php');
+require (JIRAFEAU_ROOT . 'lib/settings.php');
+require (JIRAFEAU_ROOT . 'lib/functions.php');
 
 if (isset ($_GET['h']) && !empty ($_GET['h']))
 {
@@ -31,12 +32,12 @@ if (isset ($_GET['h']) && !empty ($_GET['h']))
     if (isset ($_GET['d']) && !empty ($_GET['d']))
         $delete_code = $_GET['d'];
 
-    if (!ereg ('[0-9a-f]{32}$', $link_name))
+    if (!preg_match ('/[0-9a-f]{32}$/', $link_name))
     {
         header ("HTTP/1.0 404 Not Found");
 
         require (JIRAFEAU_ROOT.'lib/template/header.php');
-        echo '<div class="error"><p>Error 404: Not Found</p></div>';
+        echo '<div class="error"><p>' . _('Error 404: Not Found') . '</p></div>';
         require (JIRAFEAU_ROOT.'lib/template/footer.php');
         exit;
     }
@@ -79,8 +80,9 @@ if (isset ($_GET['h']) && !empty ($_GET['h']))
             jirafeau_delete ($link_name);
             require (JIRAFEAU_ROOT.'lib/template/header.php');
             echo '<div class="error"><p>'.
-                _('The time limit of this file has expired.' .
-                  'It has been deleted.') . '</p></div>';
+                _('The time limit of this file has expired.') . ' ' .
+                _('File has been deleted.') .
+                '</p></div>';
             require (JIRAFEAU_ROOT.'lib/template/footer.php');
             exit;
         }
@@ -95,9 +97,9 @@ if (isset ($_GET['h']) && !empty ($_GET['h']))
                     "<?php echo $_SERVER['REQUEST_URI']; ?>" method =
                     "post"> <input type = "hidden" name = "jirafeau" value =
                     "<?php echo JIRAFEAU_VERSION; ?>" /><fieldset>
-                    <legend><?php echo _('Key protection');
+                    <legend><?php echo _('Password protection');
                 ?></legend> <table> <tr>
-                    <td><?php echo _('Give the key of this file:');
+                    <td><?php echo _('Give the password of this file:');
                 ?><input type = "password" name =
                     "key" /></td> </tr> <tr> <td><input type =
                     "submit" value =
@@ -113,7 +115,8 @@ if (isset ($_GET['h']) && !empty ($_GET['h']))
                     header ("HTTP/1.0 403 Forbidden");
 
                     require (JIRAFEAU_ROOT.'lib/template/header.php');
-                    echo '<div class="error"><p>Error 403: Forbidden</p></div>';
+                    echo '<div class="error"><p>' . _('Error 403: Forbidden') .
+                    '</p></div>';
                     require (JIRAFEAU_ROOT.'lib/template/footer.php');
                     exit;
                 }
@@ -138,7 +141,8 @@ if (isset ($_GET['h']) && !empty ($_GET['h']))
         header ("HTTP/1.0 404 Not Found");
 
         require (JIRAFEAU_ROOT.'lib/template/header.php');
-        echo '<div class="error"><p>Error 404: Not Found</p></div>';
+        echo '<div class="error"><p>' . _('Error 404: Not Found') .
+        '</p></div>';
         require (JIRAFEAU_ROOT.'lib/template/footer.php');
         exit;
     }

patrick-canterino.de