--- a/install/includes/stages/confirm.php Tue Jan 29 17:29:08 2008 -0500
+++ b/install/includes/stages/confirm.php Tue Jan 29 23:15:44 2008 -0500
@@ -21,10 +21,10 @@
$ui->show_header();
?>
-<h3>Enano is ready to install.</h3>
- <p>Almost there! You've entered all the information we need for now. Click Continue to install the Enano database.</p>
- <p style="font-size: smaller;"><b>A note on AES encryption:</b>
- Enano is currently configured to use <?php echo AES_BITS; ?>-bit AES encryption. While the default value of 192 bits is perfectly acceptable for most sites, those in need of extreme security will want to change this value to 256 bits (the maximum available strength). If you need to change the cipher strength, please edit the file includes/constants.php and then <u>restart</u> this installation. Do not click Continue below until you redo the installation process up until this point, or you will experience severe problems with logging into your site.
+ <h3><?php echo $lang->get('confirm_title'); ?></h3>
+ <p><?php echo $lang->get('confirm_body'); ?></p>
+ <p style="font-size: smaller;"><b><?php echo $lang->get('confirm_info_aes_title'); ?></b>
+ <?php echo $lang->get('confirm_info_aes_body', array('aes_bits' => AES_BITS)); ?>
</p>
<form action="install.php?stage=install" method="post" name="install_login" onsubmit="return ( verify() && submit_encrypt() );"><?php
foreach ( $_POST as $key => &$value )
@@ -39,6 +39,6 @@
?>
<div style="text-align: center;">
- <input type="submit" name="_cont" value="<?= $lang->get('meta_btn_continue'); ?>" />
+ <input type="submit" name="_cont" value="<?= $lang->get('confirm_btn_install_enano'); ?>" />
</div>
</form>