+ update traduction

This commit is contained in:
DJERY-TOM 2020-05-02 18:50:55 +01:00
parent dabdfd1fea
commit 1e59fc34b0
5 changed files with 47 additions and 31 deletions

View File

@ -20,7 +20,7 @@
$lang['Adhésion'] = 'membership';
$lang['Adhésions par mois sur une année'] = 'Memberships per month over a year';
$lang['Demande de crédits par utilisateurs'] = 'Credit request by users';
$lang['Bienvenue'] = 'welcome';
$lang['Bienvenue'] = 'Welcome';
$lang['Déconnexion'] = 'Sign Out';
$lang['Carte des'] = 'Map of';
$lang['zoom'] ='Zoom into a specific marker to see more details about';
@ -242,6 +242,8 @@ $lang['Modifier la configuration'] = 'Change configuration';
$lang['Historique des 12 derniers mois'] = 'Withdrawals and deposits from the last 12 months';
$lang['Historique'] = 'Historic';
$lang['Commission Hyperviseur'] = 'Hypervisor Commission';
$lang['Commissions Superviseurs'] = 'Supervisor Commissions';
$lang['Commissions Agents']= 'Agent Commissions';
$lang['Parts dépots & retraits'] = 'Deposit & withdrawal shares';
$lang['Historique des transactions'] = 'Transaction history';
$lang['Période'] = 'Period';
@ -252,6 +254,11 @@ $lang['Commission de l\'agent'] = 'Agent\'s commission';
$lang['Aucune demande'] = 'No transactions';
$lang['Acceptée'] = 'Accepted';
$lang['Annulée'] = 'Canceled';
$lang['RETRAIT'] = 'WITHDRAWAL';
$lang['DEPOT'] = 'DEPOSIT';
$lang['RETRAIT'] = 'Withdrawal';
$lang['DEPOT'] = 'Deposit';
$lang['Nom'] = 'Name';
$lang['Solde Principal'] = 'Main Balance';
$lang['Solde Commission'] = 'Commission balance';
$lang['Commission banque'] = 'Bank commission';
$lang['Total commission de la banque'] = 'Total bank commission';
?>

View File

@ -263,9 +263,14 @@
$lang['Commission de l\'hyperviseur'] = 'Commission de l\'hyperviseur';
$lang['Commission du superviseur'] = 'Commission du superviseur';
$lang['Commission de l\'agent'] = 'Commission de l\'agent';
$lang['RETRAIT'] = 'RETRAIT';
$lang['DEPOT'] = 'DEPOT';
$lang['RETRAIT'] = 'Retrait';
$lang['DEPOT'] = 'Dépôt';
$lang['Aucune transaction'] = 'Aucune transaction';
$lang['Acceptée'] = 'Acceptée';
$lang['Annulée'] = 'Annulée';
$lang['Nom'] = 'Nom';
$lang['Solde Principal'] = 'Solde principal';
$lang['Solde Commission'] = 'Solde commission';
$lang['Commission banque'] = 'Commission de la banque';
$lang['Total commission de la banque'] = 'Total commission de la banque';
?>

View File

@ -338,12 +338,12 @@ if ($transactions != false) {
<thead>
<tr>
<?php
echo "<th>Nom</th>
<th>Solde Princ.</th>
<th>Solde Com.</th>
<th>Com. Banque</th>
<th>".$this->lang->line('DEPOT')."</th>
<th>".$this->lang->line('RETRAIT')."</th>";
echo "<th>".$this->lang->line('Nom')."</th>
<th>".$this->lang->line('Solde Principal')."</th>
<th>".$this->lang->line('Solde Commission')."</th>
<th>".$this->lang->line('Commission banque')."</th>
<th>".$this->lang->line('DEPOT'). 's'."</th>
<th>".$this->lang->line('RETRAIT').'s'."</th>";
?>
</tr>
</thead>

View File

@ -177,7 +177,7 @@
<div class="small-box bg-aqua">
<div class="inner">
<h3><?php echo $fmt->format($principal); ?><sup style="font-size: 20px">FCFA</sup></h3>
<p>Solde principal</p>
<p><?php echo $this->lang->line('Solde Principal') ?></p>
</div>
<div class="icon">
<i class="ion ion-cash"></i>
@ -190,7 +190,7 @@
<div class="small-box bg-green">
<div class="inner">
<h3><?php echo $fmt->format($commission); ?><sup style="font-size: 20px">FCFA</sup></h3>
<p>Solde commission</p>
<p><?php echo $this->lang->line('Solde Commission') ?></p>
</div>
<div class="icon">
<i class="ion ion-cash"></i>
@ -202,7 +202,7 @@
<div class="small-box bg-yellow">
<div class="inner">
<h3><?php echo $fmt->format($totalCommissionBanque); ?><sup style="font-size: 20px">FCFA</sup></h3>
<p>Total commission de la banque</p>
<p><?php echo $this->lang->line('Total commission de la banque') ?></p>
</div>
<div class="icon">
<i class="ion ion-cash"></i>
@ -213,7 +213,7 @@
<div class="col-xs-12">
<div class="box box-success">
<div class="box-header with-border">
<h3 class="box-title">Retraits et dépots des 12 derniers mois<?php //echo $this->lang->line('Souscription des 12 derniers mois'); ?></h3>
<h3 class="box-title"><?php echo $this->lang->line('Historique des 12 derniers mois'); ?></h3>
</div>
<div class="box-body">
<div class="chart" id="chart">
@ -225,7 +225,7 @@
<div class="col-xs-6">
<div class="box box-danger">
<div class="box-header with-border">
<h3 class="box-title">Parts dépots & retraits<?php //echo $this->lang->line("Utilisateurs géolocalisés par ville"); ?></h3>
<h3 class="box-title"><?php echo $this->lang->line("Parts dépots & retraits"); ?></h3>
</div>
<div class="box-body" id="chart2">
<canvas id="pieChart" style="height:250px"></canvas>
@ -242,12 +242,14 @@
<table id="example1" class="table table-bordered table-hover">
<thead>
<tr>
<th>Nom</th>
<th>Solde Princ.</th>
<th>Solde Com.</th>
<th>Com. Banque</th>
<th>Dépots</th>
<th>Retraits</th>
<?php
echo "<th>".$this->lang->line('Nom')."</th>
<th>".$this->lang->line('Solde Principal')."</th>
<th>".$this->lang->line('Solde Commission')."</th>
<th>".$this->lang->line('Commission banque')."</th>
<th>".$this->lang->line('DEPOT'). 's'."</th>
<th>".$this->lang->line('RETRAIT').'s'."</th>";
?>
</tr>
</thead>
<tbody>

View File

@ -177,7 +177,7 @@ $fmt = new NumberFormatter( 'fr_FR', NumberFormatter::DECIMAL );
<div class="small-box bg-aqua">
<div class="inner">
<h3><?php echo $fmt->format($principal); ?><sup style="font-size: 20px">FCFA</sup></h3>
<p>Solde principal</p>
<p><?php echo $this->lang->line('Solde Principal') ?></p>
</div>
<div class="icon">
<i class="ion ion-cash"></i>
@ -189,7 +189,7 @@ $fmt = new NumberFormatter( 'fr_FR', NumberFormatter::DECIMAL );
<div class="small-box bg-green">
<div class="inner">
<h3><?php echo $fmt->format($commission); ?><sup style="font-size: 20px">FCFA</sup></h3>
<p>Solde commission</p>
<p><?php echo $this->lang->line('Solde Commission') ?></p>
</div>
<div class="icon">
<i class="ion ion-cash"></i>
@ -200,7 +200,7 @@ $fmt = new NumberFormatter( 'fr_FR', NumberFormatter::DECIMAL );
<div class="col-xs-12">
<div class="box box-success">
<div class="box-header with-border">
<h3 class="box-title">Retraits et dépots des 12 derniers mois<?php //echo $this->lang->line('Souscription des 12 derniers mois'); ?></h3>
<h3 class="box-title"><?php echo $this->lang->line('Historique des 12 derniers mois'); ?></h3>
</div>
<div class="box-body">
<div class="chart" id="chart">
@ -212,7 +212,7 @@ $fmt = new NumberFormatter( 'fr_FR', NumberFormatter::DECIMAL );
<div class="col-xs-6">
<div class="box box-danger">
<div class="box-header with-border">
<h3 class="box-title">Parts dépots & retraits<?php //echo $this->lang->line("Utilisateurs géolocalisés par ville"); ?></h3>
<h3 class="box-title"><?php echo $this->lang->line("Parts dépots & retraits"); ?></h3>
</div>
<div class="box-body" id="chart2">
<canvas id="pieChart" style="height:250px"></canvas>
@ -229,11 +229,13 @@ $fmt = new NumberFormatter( 'fr_FR', NumberFormatter::DECIMAL );
<table id="example1" class="table table-bordered table-hover">
<thead>
<tr>
<th>Nom</th>
<th>Solde Princ.</th>
<th>Solde Com.</th>
<th>Dépots</th>
<th>Retraits</th>
<?php
echo "<th>".$this->lang->line('Nom')."</th>
<th>".$this->lang->line('Solde Principal')."</th>
<th>".$this->lang->line('Solde Commission')."</th>
<th>".$this->lang->line('DEPOT'). 's'."</th>
<th>".$this->lang->line('RETRAIT').'s'."</th>";
?>
</tr>
</thead>
<tbody>