Trad: Traductions des onglets info

This commit is contained in:
Laurent Destailleur
2004-09-18 12:45:37 +00:00
parent 3989f58c3a
commit 35310f3fb6
5 changed files with 44 additions and 16 deletions

View File

@@ -8,7 +8,7 @@ ClassifyCanceled=Classify 'Abandonned'
CreateBill=Create Bill CreateBill=Create Bill
Send=Send Send=Send
SendRemind=Send reminder SendRemind=Send reminder
DoPaiement=Do paiement DoPaiement=Do payment
BuildPDF=Build PDF BuildPDF=Build PDF
RebuildPDF=Rebuild PDF RebuildPDF=Rebuild PDF
VAT=VAT VAT=VAT

View File

@@ -10,6 +10,7 @@ ErrorSQL=SQL Error
ErrorLogoFileNotFound=Logo file '%s' was not found ErrorLogoFileNotFound=Logo file '%s' was not found
ErrorGoToGlobalSetup=Go to Global setup to fix this ErrorGoToGlobalSetup=Go to Global setup to fix this
ErrorGoToModuleSetup=Go to Module 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
Yes=Yes Yes=Yes
no=no no=no
@@ -38,6 +39,10 @@ Show=Show
Search=Search Search=Search
Valid=Valid Valid=Valid
Upload=Send file Upload=Send file
CreatedBy=Created by
ModifiedBy=Modified by
ValidatedBy=Validated by
ClosedBy=Closed by
ChooseLangage=Please choose your language ChooseLangage=Please choose your language
Author=Author Author=Author
User=User User=User
@@ -72,6 +77,10 @@ Next=Next
Cards=Cards Cards=Cards
Card=Card Card=Card
Date=Date Date=Date
DateCreation=Creation date
DateModification=Modification date
DateValidation=Validation date
DateClosing=Closing date
Year=Year Year=Year
Month=Month Month=Month
Day=Day Day=Day

View File

@@ -10,6 +10,7 @@ ErrorSQL=Erreur SQL
ErrorLogoFileNotFound=Le fichier logo '%s' n'a pas <20>t<EFBFBD> trouv<75> ErrorLogoFileNotFound=Le fichier logo '%s' n'a pas <20>t<EFBFBD> trouv<75>
ErrorGoToGlobalSetup=Aller dans la Configuration g<>n<EFBFBD>rale pour corriger ErrorGoToGlobalSetup=Aller dans la Configuration g<>n<EFBFBD>rale pour corriger
ErrorGoToModuleSetup=Aller dans la Configuration du module 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
Yes=Oui Yes=Oui
no=non no=non

View File

@@ -10,6 +10,7 @@ ErrorSQL=Erreur SQL
ErrorLogoFileNotFound=Le fichier logo '%s' n'a pas <20>t<EFBFBD> trouv<75> ErrorLogoFileNotFound=Le fichier logo '%s' n'a pas <20>t<EFBFBD> trouv<75>
ErrorGoToGlobalSetup=Aller dans la Configuration g<>n<EFBFBD>rale pour corriger ErrorGoToGlobalSetup=Aller dans la Configuration g<>n<EFBFBD>rale pour corriger
ErrorGoToModuleSetup=Aller dans la Configuration du module 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
Yes=Oui Yes=Oui
no=non no=non
@@ -38,6 +39,10 @@ Show=Voir
Search=Rechercher Search=Rechercher
Valid=Valider Valid=Valider
Upload=Envoyer fichier 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 ChooseLangage=Choisissez votre langue
Author=Auteur Author=Auteur
User=Utilisateur User=Utilisateur
@@ -72,6 +77,10 @@ Next=Suivant
Cards=Fiches Cards=Fiches
Card=Fiche Card=Fiche
Date=Date 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 Year=Ann<6E>e
Month=Mois Month=Mois
Day=Jour Day=Jour
@@ -116,4 +125,4 @@ Category=Categorie
From=Du From=Du
to=au to=au
Quantity=Quantit<69> Quantity=Quantit<69>
Qty=Qt<51> Qty=Qt<51>

View File

@@ -227,26 +227,35 @@ function dolibarr_print_date($time,$format="%d %b %Y")
function dolibarr_print_object_info($object) function dolibarr_print_object_info($object)
{ {
print "Cr<EFBFBD><EFBFBD> par : " . $object->user_creation->fullname . '<br>'; global $langs;
print "Date de cr<63>ation : " . strftime("%A %d %B %Y %H:%M:%S",$object->date_creation) . '<br>';
if (isset($object->user_creation))
print $langs->trans("CreatedBy")." : " . $object->user_creation->fullname . '<br>';
if (isset($object->user_modification)) if (isset($object->date_creation))
print "Modifi<EFBFBD> par : " . $object->user_modification->fullname . '<br>'; print $langs->trans("DateCreation")." : " . dolibarr_print_date($object->date_creation,"%A %d %B %Y %H:%M:%S") . '<br>';
if (isset($object->user_modification))
print $langs->trans("ModifiedBy")." : " . $object->user_modification->fullname . '<br>';
if (isset($object->date_modification))
print $langs->trans("DateModification")." : " . dolibarr_print_date($object->date_modification,"%A %d %B %Y %H:%M:%S") . '<br>';
if (isset($object->user_validation))
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 $langs->trans("ClosedBy")." : " . $object->user_cloture->fullname . '<br>';
if (isset($object->date_modification)) if (isset($object->date_cloture))
print "Date de modification : " . strftime("%A %d %B %Y %H:%M:%S",$object->date_modification) . '<br>'; print $langs->trans("DateClosing")." : " . 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>';
if (isset($object->user_cloture))
print "Clotur<EFBFBD> par : " . $object->user_cloture->fullname . '<br>';
} }
/*! /*!
\brief Formattage du telephone \brief Formatage du telephone
\param phone num<75>ro de telephone <20> formater \param phone num<75>ro de telephone <20> formater
\return phone num<75>ro de t<>l<EFBFBD>phone format<61> \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 \remarks net tient pas en compte le format belge 02/211 34 83