mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-17 23:11:29 +01:00
Trad: Traductions des onglets info
This commit is contained in:
@@ -8,7 +8,7 @@ ClassifyCanceled=Classify 'Abandonned'
|
||||
CreateBill=Create Bill
|
||||
Send=Send
|
||||
SendRemind=Send reminder
|
||||
DoPaiement=Do paiement
|
||||
DoPaiement=Do payment
|
||||
BuildPDF=Build PDF
|
||||
RebuildPDF=Rebuild PDF
|
||||
VAT=VAT
|
||||
|
||||
@@ -10,6 +10,7 @@ ErrorSQL=SQL Error
|
||||
ErrorLogoFileNotFound=Logo file '%s' was not found
|
||||
ErrorGoToGlobalSetup=Go to Global setup to fix this
|
||||
ErrorGoToModuleSetup=Go to Module setup to fix this
|
||||
ErrorFailedToSendMail=Failed to send mail (sender=%s, receiver=%s)
|
||||
yes=yes
|
||||
Yes=Yes
|
||||
no=no
|
||||
@@ -38,6 +39,10 @@ Show=Show
|
||||
Search=Search
|
||||
Valid=Valid
|
||||
Upload=Send file
|
||||
CreatedBy=Created by
|
||||
ModifiedBy=Modified by
|
||||
ValidatedBy=Validated by
|
||||
ClosedBy=Closed by
|
||||
ChooseLangage=Please choose your language
|
||||
Author=Author
|
||||
User=User
|
||||
@@ -72,6 +77,10 @@ Next=Next
|
||||
Cards=Cards
|
||||
Card=Card
|
||||
Date=Date
|
||||
DateCreation=Creation date
|
||||
DateModification=Modification date
|
||||
DateValidation=Validation date
|
||||
DateClosing=Closing date
|
||||
Year=Year
|
||||
Month=Month
|
||||
Day=Day
|
||||
|
||||
@@ -10,6 +10,7 @@ ErrorSQL=Erreur SQL
|
||||
ErrorLogoFileNotFound=Le fichier logo '%s' n'a pas <20>t<EFBFBD> trouv<75>
|
||||
ErrorGoToGlobalSetup=Aller dans la Configuration g<>n<EFBFBD>rale pour corriger
|
||||
ErrorGoToModuleSetup=Aller dans la Configuration du module pour corriger
|
||||
ErrorFailedToSendMail=Echec de l'envoi du mail (emetteur=%s, destinataire=%s)
|
||||
yes=oui
|
||||
Yes=Oui
|
||||
no=non
|
||||
|
||||
@@ -10,6 +10,7 @@ ErrorSQL=Erreur SQL
|
||||
ErrorLogoFileNotFound=Le fichier logo '%s' n'a pas <20>t<EFBFBD> trouv<75>
|
||||
ErrorGoToGlobalSetup=Aller dans la Configuration g<>n<EFBFBD>rale pour corriger
|
||||
ErrorGoToModuleSetup=Aller dans la Configuration du module pour corriger
|
||||
ErrorFailedToSendMail=Echec de l'envoi du mail (emetteur=%s, destinataire=%s)
|
||||
yes=oui
|
||||
Yes=Oui
|
||||
no=non
|
||||
@@ -38,6 +39,10 @@ Show=Voir
|
||||
Search=Rechercher
|
||||
Valid=Valider
|
||||
Upload=Envoyer fichier
|
||||
CreatedBy=Cr<43><72> par
|
||||
ModifiedBy=Modifi<66> par
|
||||
ValidatedBy=Valid<69> par
|
||||
ClosedBy=Cl<43>tur<75> par
|
||||
ChooseLangage=Choisissez votre langue
|
||||
Author=Auteur
|
||||
User=Utilisateur
|
||||
@@ -72,6 +77,10 @@ Next=Suivant
|
||||
Cards=Fiches
|
||||
Card=Fiche
|
||||
Date=Date
|
||||
DateCreation=Date de cr<63>ation
|
||||
DateModification=Date de modification
|
||||
DateValidation=Date de validation
|
||||
DateClosing=Date de cl<63>ture
|
||||
Year=Ann<6E>e
|
||||
Month=Mois
|
||||
Day=Jour
|
||||
|
||||
@@ -227,26 +227,35 @@ function dolibarr_print_date($time,$format="%d %b %Y")
|
||||
|
||||
function dolibarr_print_object_info($object)
|
||||
{
|
||||
print "Cr<EFBFBD><EFBFBD> par : " . $object->user_creation->fullname . '<br>';
|
||||
print "Date de cr<63>ation : " . strftime("%A %d %B %Y %H:%M:%S",$object->date_creation) . '<br>';
|
||||
global $langs;
|
||||
|
||||
if (isset($object->user_creation))
|
||||
print $langs->trans("CreatedBy")." : " . $object->user_creation->fullname . '<br>';
|
||||
|
||||
if (isset($object->date_creation))
|
||||
print $langs->trans("DateCreation")." : " . dolibarr_print_date($object->date_creation,"%A %d %B %Y %H:%M:%S") . '<br>';
|
||||
|
||||
if (isset($object->user_modification))
|
||||
print "Modifi<EFBFBD> par : " . $object->user_modification->fullname . '<br>';
|
||||
|
||||
print $langs->trans("ModifiedBy")." : " . $object->user_modification->fullname . '<br>';
|
||||
|
||||
if (isset($object->date_modification))
|
||||
print "Date de modification : " . strftime("%A %d %B %Y %H:%M:%S",$object->date_modification) . '<br>';
|
||||
print $langs->trans("DateModification")." : " . dolibarr_print_date($object->date_modification,"%A %d %B %Y %H:%M:%S") . '<br>';
|
||||
|
||||
if (isset($object->user_validation))
|
||||
print "Valid<EFBFBD> par : " . $object->user_validation->fullname . '<br>';
|
||||
print $langs->trans("ValidatedBy")." : " . $object->user_validation->fullname . '<br>';
|
||||
|
||||
if (isset($object->date_validation))
|
||||
print $langs->trans("DateValidation")." : " . dolibarr_print_date($object->date_modification,"%A %d %B %Y %H:%M:%S") . '<br>';
|
||||
|
||||
if (isset($object->user_cloture))
|
||||
print "Clotur<EFBFBD> par : " . $object->user_cloture->fullname . '<br>';
|
||||
print $langs->trans("ClosedBy")." : " . $object->user_cloture->fullname . '<br>';
|
||||
|
||||
if (isset($object->date_cloture))
|
||||
print $langs->trans("DateClosing")." : " . dolibarr_print_date($object->date_modification,"%A %d %B %Y %H:%M:%S") . '<br>';
|
||||
}
|
||||
|
||||
/*!
|
||||
\brief Formattage du telephone
|
||||
\brief Formatage du telephone
|
||||
\param phone num<75>ro de telephone <20> formater
|
||||
\return phone num<75>ro de t<>l<EFBFBD>phone format<61>
|
||||
\remarks net tient pas en compte le format belge 02/211 34 83
|
||||
|
||||
Reference in New Issue
Block a user