Skip to content
Snippets Groups Projects
Commit 803d336a authored by Laurent Destailleur's avatar Laurent Destailleur
Browse files

Fix: Traductions incompletes

parent 23949f47
No related branches found
No related tags found
No related merge requests found
...@@ -23,7 +23,7 @@ ...@@ -23,7 +23,7 @@
/** /**
\file htdocs/adherents/card_subscriptions.php \file htdocs/adherents/card_subscriptions.php
\ingroup adherent \ingroup adherent
\brief Onglet d'ajout, edition, suppression des adhsions d'un adhrent \brief Onglet d'ajout, edition, suppression des adh�sions d'un adh�rent
\version $Revision$ \version $Revision$
*/ */
...@@ -240,7 +240,7 @@ if ($errmsg) ...@@ -240,7 +240,7 @@ if ($errmsg)
*/ */
print '<div class="tabsAction">'; print '<div class="tabsAction">';
// Lien nouvelle cotisation si non brouillon et non rsili // Lien nouvelle cotisation si non brouillon et non r�sili�
if ($user->rights->adherent->cotisation->creer) if ($user->rights->adherent->cotisation->creer)
{ {
if ($action != 'addsubscription' && $adh->statut > 0) if ($action != 'addsubscription' && $adh->statut > 0)
...@@ -351,7 +351,8 @@ if ($adh->datefin) ...@@ -351,7 +351,8 @@ if ($adh->datefin)
{ {
if ($adh->datefin < time()) if ($adh->datefin < time())
{ {
print dolibarr_print_date($adh->datefin,'day')." ".img_warning($langs->trans("Late")); print dolibarr_print_date($adh->datefin,'day');
if ($adh->statut > 0) print " ".img_warning($langs->trans("Late")); // Affiche picto retard uniquement si non brouillon et non resilie
} }
else else
{ {
...@@ -361,7 +362,7 @@ if ($adh->datefin) ...@@ -361,7 +362,7 @@ if ($adh->datefin)
else else
{ {
print $langs->trans("SubscriptionNotReceived"); print $langs->trans("SubscriptionNotReceived");
if ($adh->statut > 0) print " ".img_warning($langs->trans("Late")); // Affiche picto retard uniquement si non brouillon et non rsili if ($adh->statut > 0) print " ".img_warning($langs->trans("Late")); // Affiche picto retard uniquement si non brouillon et non resilie
} }
print '</td>'; print '</td>';
print '</tr>'; print '</tr>';
...@@ -437,17 +438,17 @@ if ($action == 'addsubscription' && $user->rights->adherent->cotisation->creer) ...@@ -437,17 +438,17 @@ if ($action == 'addsubscription' && $user->rights->adherent->cotisation->creer)
print "</td></tr>\n"; print "</td></tr>\n";
print '<tr><td>'.$langs->trans('Numero'); print '<tr><td>'.$langs->trans('Numero');
print ' <em>(Numro chque ou virement)</em>'; // \todo a traduire print ' <em>('.$langs->trans("ChequeOrTransferNumber").')</em>'; // \todo a traduire
print '</td>'; print '</td>';
print '<td><input name="num_chq" type="text" size="8" value="'.(empty($_POST['num_chq'])?'':$_POST['num_chq']).'"></td></tr>'; print '<td><input name="num_chq" type="text" size="8" value="'.(empty($_POST['num_chq'])?'':$_POST['num_chq']).'"></td></tr>';
print '<tr><td>'.$langs->trans('CheckTransmitter'); print '<tr><td>'.$langs->trans('CheckTransmitter');
print ' <em>(Emetteur du chque)</em>'; // \todo a traduire print ' <em>('.$langs->trans("ChequeMaker").')</em>'; // \todo a traduire
print '</td>'; print '</td>';
print '<td><input name="chqemetteur" size="32" type="text" value="'.(empty($_POST['chqemetteur'])?$facture->client->nom:$_POST['chqemetteur']).'"></td></tr>'; print '<td><input name="chqemetteur" size="32" type="text" value="'.(empty($_POST['chqemetteur'])?$facture->client->nom:$_POST['chqemetteur']).'"></td></tr>';
print '<tr><td>'.$langs->trans('Bank'); print '<tr><td>'.$langs->trans('Bank');
print ' <em>(Banque du chque)</em>'; // \todo a traduire print ' <em>('.$langs->trans("ChequeBank").')</em>'; // \todo a traduire
print '</td>'; print '</td>';
print '<td><input name="chqbank" size="32" type="text" value="'.(empty($_POST['chqbank'])?'':$_POST['chqbank']).'"></td></tr>'; print '<td><input name="chqbank" size="32" type="text" value="'.(empty($_POST['chqbank'])?'':$_POST['chqbank']).'"></td></tr>';
......
...@@ -275,6 +275,8 @@ ExtraInfos=Extra infos ...@@ -275,6 +275,8 @@ ExtraInfos=Extra infos
RegulatedOn=Regulated on RegulatedOn=Regulated on
ChequeNumber=Cheque N ChequeNumber=Cheque N
ChequeOrTransferNumber=Cheque/Transfer N ChequeOrTransferNumber=Cheque/Transfer N
ChequeMaker=Check transmitter
ChequeBank=Bank of cheque
WithDiscountTotalHT=Total HT with discount WithDiscountTotalHT=Total HT with discount
WithDiscountAmountHT=Amount HT with discount WithDiscountAmountHT=Amount HT with discount
NetToBePaid=Net to be paid NetToBePaid=Net to be paid
......
...@@ -274,6 +274,8 @@ ExtraInfos=Informations compl ...@@ -274,6 +274,8 @@ ExtraInfos=Informations compl
RegulatedOn=Réglé le RegulatedOn=Réglé le
ChequeNumber=Chèque N° ChequeNumber=Chèque N°
ChequeOrTransferNumber=Chèque/Virement N° ChequeOrTransferNumber=Chèque/Virement N°
ChequeMaker=Emetteur du chèque
ChequeBank=Banque du chèque
WithDiscountTotalHT=Total HT après remise WithDiscountTotalHT=Total HT après remise
WithDiscountAmountHT=Montant HT après remise WithDiscountAmountHT=Montant HT après remise
NetToBePaid=Net à payer NetToBePaid=Net à payer
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment