Fix translation

This commit is contained in:
Laurent Destailleur 2018-03-12 20:11:34 +01:00
parent 8f21f0e265
commit f2bba8fb03
2 changed files with 7 additions and 3 deletions

View File

@ -50,4 +50,6 @@ ConfigLoan=Configuration of the module loan
LOAN_ACCOUNTING_ACCOUNT_CAPITAL=Accounting account capital by default
LOAN_ACCOUNTING_ACCOUNT_INTEREST=Accounting account interest by default
LOAN_ACCOUNTING_ACCOUNT_INSURANCE=Accounting account insurance by default
CreateCalcSchedule=Créer / Modifier échéancier de pret
FinancialCommitment=Financial commitment
CreateCalcSchedule=Edit financial commitment
InterestAmount=Interest amount

View File

@ -692,7 +692,7 @@ if ($id > 0)
$total_insurance = 0;
$total_interest = 0;
$total_capital = 0;
print '<table class="noborder paymenttable">';
print '<table class="noborder">';
print '<tr class="liste_titre">';
print '<td>'.$langs->trans("RefPayment").'</td>';
print '<td>'.$langs->trans("Date").'</td>';
@ -729,7 +729,9 @@ if ($id > 0)
$staytopay = $object->capital - $totalpaid;
print '<tr><td colspan="5" align="right">'.$langs->trans("RemainderToPay").' :</td>';
print '<td align="right"><b>'.price($staytopay, 0, $langs, 0, 0, -1, $conf->currency).'</b></td></tr>';
print '<td align="right"'.($staytopay?' class="amountremaintopay"':'class="amountpaymentcomplete"').'>';
print price($staytopay, 0, $langs, 0, 0, -1, $conf->currency);
print '</td></tr>';
}
print "</table>";
$db->free($resql);