Implementation of the translation system for installation process

This commit is contained in:
Nicolas Villa
2014-01-20 07:55:24 +01:00
parent b7fc2fc0e5
commit 9056c725c7
9 changed files with 126 additions and 36 deletions

View File

@@ -26,14 +26,19 @@
include("header.php");
?>
<div class="well">
<div class="clearfix">
<a href="?lang=fr_FR"><span class="glyphicon glyphicon-chevron-right"></span> <?php echo $trans->trans('French'); ?></a>
<a href="?lang=en_US"><span class="glyphicon glyphicon-chevron-right"></span> <?php echo $trans->trans('English'); ?></a>
</div>
<p class="lead text-center">
Welcome in the Thelia installation wizard.
<?php echo $trans->trans('Welcome in the Thelia installation wizard.'); ?>
</p>
<p class="text-center">
We will guide you throughout this process to install any application on your system.
<?php echo $trans->trans('We will guide you throughout this process to install any application on your system.'); ?>
</p>
</div>
<div class="clearfix">
<a href="permission.php" class="pull-right btn btn-default btn-primary"><span class="glyphicon glyphicon-chevron-right"></span> Continue</a>
<a href="permission.php" class="pull-right btn btn-default btn-primary"><span class="glyphicon glyphicon-chevron-right"></span> <?php echo $trans->trans('Continue'); ?></a>
</div>
<?php include("footer.php"); ?>