]> git.p6c8.net - jirafeau_mojo42.git/commitdiff
better form for download page and fix missing translation
authorJerome Jutteau <mojo@couak.net>
Thu, 3 Jan 2013 00:08:54 +0000 (01:08 +0100)
committerJerome Jutteau <mojo@couak.net>
Thu, 3 Jan 2013 00:08:54 +0000 (01:08 +0100)
file.php
lib/lang/fr.php

index 1f79095788ed77124a3cf5d20f062774d6de2c44..18bb459d6a04e5fddc35a6c8866a2ed8c15e66c9 100644 (file)
--- a/file.php
+++ b/file.php
@@ -110,8 +110,11 @@ if (!empty ($link['key']))
              '</legend><table><tr><td>' .
              t('Give the password of this file') . ' : ' .
              '<input type = "password" name = "key" />' .
-             '</td></tr><tr><td>';
-
+             '</td></tr>' .
+             '<tr><td>' .
+             t('By using our services, you accept of our'). ' <a href="' . $cfg['web_root'] . '/tos.php' . '">' . t('Term Of Service') . '</a>' .
+             '</td></tr>' .
+             '<tr><td>';
             ?><input type="submit" id = "submit_download"  value="<?php echo t('Download'); ?>"
             onclick="document.getElementById('submit').action='<?php echo $_SERVER['REQUEST_URI'] ?>&amp;bd=1';
                      document.getElementById('submit_download').submit ();"/><?php
@@ -149,10 +152,12 @@ if ($cfg['download_page'] && !$password_challenged && !$button_download && !$but
              '<form action = "' . $_SERVER['REQUEST_URI'] . '" ' .
                 'method = "post" id = "submit">'; ?>
              <input type = "hidden" name = "jirafeau" value = "<?php echo JIRAFEAU_VERSION ?>"/><?php
-        echo '<fieldset>' .
-             '<p>' . ('You are about to download ') . substr ($link['file_name'], 0, 20) . ' (' . jirafeau_human_size($link['file_size']) . ')</p>' .
-             '<p>' . t('By using our services, you accept of our '). '<a href="' . $cfg['web_root'] . '/tos.php' . '">' . t('Term Of Service') . '</a>' . '</p>'.
-             '<p>'
+        echo '<fieldset><legend>' . $link['file_name'] . '</legend><table>' .
+             '<tr><td>' .
+             t('You are about to download') . ' "' . $link['file_name'] . '" (' . jirafeau_human_size($link['file_size']) . ')' .
+             '</td></tr>' .
+             '<tr><td>' .
+             t('By using our services, you accept of our'). ' <a href="' . $cfg['web_root'] . '/tos.php' . '">' . t('Term Of Service') . '</a>';
             ?><input type="submit" id = "submit_download"  value="<?php echo t('Download'); ?>"
             onclick="document.getElementById('submit').action='<?php echo $_SERVER['REQUEST_URI'] ?>&amp;bd=1';
                      document.getElementById('submit_download').submit ();"/><?php
@@ -163,7 +168,8 @@ if ($cfg['download_page'] && !$password_challenged && !$button_download && !$but
             onclick="document.getElementById('submit').action='<?php echo $_SERVER['REQUEST_URI'] ?>&amp;bp=1';
                      document.getElementById('submit_preview').submit ();"/><?php
         }
-        echo '</p></fieldset></form></div>';
+        echo '</td></tr>';
+        echo '</table></fieldset></form></div>';
         require (JIRAFEAU_ROOT.'lib/template/footer.php');
         exit;
 }
index 49ec634e61223188ec984b992598239accf68ecd..c8b3fe4accbd1458b3372f0c6c280579d8e34cf1 100755 (executable)
@@ -52,6 +52,9 @@ $tr = array (
              'Password protection' => 'Protection par mot de passe',
              'Give the password of this file' => 'Donnez le mot de passe pour ce fichier',
              'Access denied' => 'Accès interdit',
+             'You are about to download' => 'Vous êtes sur le point de télécharger',
+             'By using our services, you accept of our' => 'En utilisant nos services, vous acceptez nos',
+             'Term Of Service' => 'Conditions d\'utilisation',
              /* functions.php */
              'Internal error during file creation.' => 'Erreur interne durant la creation de fichier.',
              /* install.hpp */

patrick-canterino.de