// French translation of installer
git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@13082 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
@@ -521,6 +521,12 @@ ul#optional {
|
||||
color:#999;
|
||||
}
|
||||
|
||||
#formCheckSQL .userInfos {
|
||||
display: block;
|
||||
font:italic 11px Georgia, Arial, Sans-serif italic;
|
||||
color:#999;
|
||||
}
|
||||
|
||||
|
||||
/* ETAPE 4 - infos ********************************************************* */
|
||||
#sheet_configure {
|
||||
|
||||
@@ -24,7 +24,7 @@ var default_iso = '<?php echo $this->session->shop_country ?>';
|
||||
<label for="infosActivity" class="aligned"><?php echo $this->l('Main activity:') ?></label>
|
||||
<div class="contentinput">
|
||||
<select id="infosActivity" name="shop_activity">
|
||||
<option value="0" <?php if (!$this->session->shop_activity): ?>selected="selected"<?php endif; ?>><?php echo $this->l('-- Please choose your main activity --') ?></option>
|
||||
<option value="0" <?php if (!$this->session->shop_activity): ?>selected="selected"<?php endif; ?>>-- <?php echo $this->l('Please choose your main activity') ?> --</option>
|
||||
<?php foreach ($this->list_activities as $i => $activity): ?>
|
||||
<option value="<?php echo $activity ?>" <?php if ($this->session->shop_activity == $activity): ?>selected="selected"<?php endif; ?>><?php echo $activity ?></option>
|
||||
<?php endforeach; ?>
|
||||
@@ -55,7 +55,7 @@ var default_iso = '<?php echo $this->session->shop_country ?>';
|
||||
<label for="infosCountry" class="aligned"><?php echo $this->l('Default country:') ?></label>
|
||||
<div class="contentinput">
|
||||
<select name="shop_country" id="infosCountry">
|
||||
<option value="0"><?php echo $this->l('-- Select your country --') ?></option>
|
||||
<option value="0">-- <?php echo $this->l('Select your country') ?> --</option>
|
||||
<?php foreach ($this->language->getCountries() as $iso => $country_name): ?>
|
||||
<option value="<?php echo $iso ?>" <?php if ($this->session->shop_country == $iso): ?>selected="selected"<?php endif; ?>><?php echo $country_name ?></option>
|
||||
<?php endforeach; ?>
|
||||
@@ -70,7 +70,7 @@ var default_iso = '<?php echo $this->session->shop_country ?>';
|
||||
<label for="infosTimezone" class="aligned"><?php echo $this->l('Shop timezone:') ?></label>
|
||||
<div class="contentinput">
|
||||
<select name="shop_timezone" id="infosTimezone">
|
||||
<option value="0"><?php echo $this->l('-- Select your timezone --') ?></option>
|
||||
<option value="0">-- <?php echo $this->l('Select your timezone') ?> --</option>
|
||||
<?php foreach ($this->getTimezones() as $timezone): ?>
|
||||
<option value="<?php echo $timezone ?>" <?php if ($this->session->shop_timezone == $timezone): ?>selected="selected"<?php endif; ?>><?php echo $timezone ?></option>
|
||||
<?php endforeach; ?>
|
||||
|
||||
@@ -13,19 +13,20 @@
|
||||
|
||||
<div id="formCheckSQL">
|
||||
<p class="first" style="margin-top: 15px;">
|
||||
<label for="dbServer"><?php echo $this->l('Server:') ?> </label>
|
||||
<label for="dbServer"><?php echo $this->l('Database server address:') ?> </label>
|
||||
<input size="25" class="text" type="text" id="dbServer" name="dbServer" value="<?php echo htmlspecialchars($this->database_server) ?>" />
|
||||
<span class="userInfos aligned"><?php echo $this->l('If you want to use a different port, add :XX after your server address where XX is your port number.') ?></span>
|
||||
</p>
|
||||
<p>
|
||||
<label for="dbName"><?php echo $this->l('Database name:') ?> </label>
|
||||
<input size="10" class="text" type="text" id="dbName" name="dbName" value="<?php echo htmlspecialchars($this->database_name) ?>" />
|
||||
</p>
|
||||
<p>
|
||||
<label for="dbLogin"><?php echo $this->l('Login:') ?> </label>
|
||||
<label for="dbLogin"><?php echo $this->l('Database login:') ?> </label>
|
||||
<input class="text" size="10" type="text" id="dbLogin" name="dbLogin" value="<?php echo htmlspecialchars($this->database_login) ?>" />
|
||||
</p>
|
||||
<p>
|
||||
<label for="dbPassword"><?php echo $this->l('Password:') ?> </label>
|
||||
<label for="dbPassword"><?php echo $this->l('Database password:') ?> </label>
|
||||
<input class="text" size="10" type="password" id="dbPassword" name="dbPassword" value="<?php echo htmlspecialchars($this->database_password) ?>" />
|
||||
</p>
|
||||
<p>
|
||||
@@ -71,7 +72,7 @@
|
||||
<div id="mailSMTPParam">
|
||||
<div class="aligned">
|
||||
<p>
|
||||
<label for="smtpSrv"><?php echo $this->l('SMTP server:') ?> </label>
|
||||
<label for="smtpSrv"><?php echo $this->l('SMTP server address:') ?> </label>
|
||||
<input class="text" type="text" id="smtpSrv" name="smtpSrv" value="<?php echo htmlspecialchars($this->smtp_server) ?>"/>
|
||||
</p>
|
||||
<p>
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
<script type="text/javascript">
|
||||
<!--
|
||||
var install_is_done = '<?php echo addslashes($this->l('Done !')) ?>';
|
||||
var install_is_done = '<?php echo addslashes($this->l('Done!')) ?>';
|
||||
var process_steps = <?php echo Tools::jsonEncode($this->process_steps) ?>;
|
||||
var process_percent = <?php echo 100 / count($this->process_steps) ?>;
|
||||
-->
|
||||
@@ -27,7 +27,7 @@ var process_percent = <?php echo 100 / count($this->process_steps) ?>;
|
||||
</ol>
|
||||
|
||||
<div id="error_process">
|
||||
<h3><?php echo $this->l('An error occured during installation ...') ?></h3>
|
||||
<h3><?php echo $this->l('An error occured during installation...') ?></h3>
|
||||
<p><?php echo $this->l('You can use the links on the left column to go back to the previous steps, or restart the installation process by <a href="%s">clicking here</a>.', 'index.php?restart=true') ?></p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
<?php $this->displayTemplate('header') ?>
|
||||
|
||||
<h2><?php echo $this->l('Welcome to the PrestaShop %s Installer.', _PS_INSTALL_VERSION_) ?></h2>
|
||||
<p><?php echo $this->l('Please allow 5-15 minutes to complete the installation process.') ?></p>
|
||||
<p><?php echo $this->l('The installation should only take a few minutes: if you need help, do not hesitate to check <a href="%1$s" target="_blank">our documentation</a> or to contact our support team: %2$s', $this->getDocumentationLink(), $this->getPhone()) ?></p>
|
||||
<p><?php echo $this->l('The installation process should take only few minutes!') ?></p>
|
||||
<p><?php echo $this->l('If you need help, do not hesitate to check <a href="%1$s" target="_blank">our documentation</a> or to contact our support team: %2$s', $this->getDocumentationLink(), $this->getPhone()) ?></p>
|
||||
|
||||
<!-- List of languages -->
|
||||
<?php if (count($this->language->getIsoList()) > 1): ?>
|
||||
|
||||
Reference in New Issue
Block a user