Trad: Traductions des onglets info
This commit is contained in:
parent
3989f58c3a
commit
35310f3fb6
@ -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
|
||||||
|
|||||||
@ -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
|
||||||
|
|||||||
@ -10,6 +10,7 @@ ErrorSQL=Erreur SQL
|
|||||||
ErrorLogoFileNotFound=Le fichier logo '%s' n'a pas été trouvé
|
ErrorLogoFileNotFound=Le fichier logo '%s' n'a pas été trouvé
|
||||||
ErrorGoToGlobalSetup=Aller dans la Configuration générale pour corriger
|
ErrorGoToGlobalSetup=Aller dans la Configuration géné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
|
||||||
|
|||||||
@ -10,6 +10,7 @@ ErrorSQL=Erreur SQL
|
|||||||
ErrorLogoFileNotFound=Le fichier logo '%s' n'a pas été trouvé
|
ErrorLogoFileNotFound=Le fichier logo '%s' n'a pas été trouvé
|
||||||
ErrorGoToGlobalSetup=Aller dans la Configuration générale pour corriger
|
ErrorGoToGlobalSetup=Aller dans la Configuration géné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éé par
|
||||||
|
ModifiedBy=Modifié par
|
||||||
|
ValidatedBy=Validé par
|
||||||
|
ClosedBy=Clôturé 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éation
|
||||||
|
DateModification=Date de modification
|
||||||
|
DateValidation=Date de validation
|
||||||
|
DateClosing=Date de clôture
|
||||||
Year=Année
|
Year=Année
|
||||||
Month=Mois
|
Month=Mois
|
||||||
Day=Jour
|
Day=Jour
|
||||||
|
|||||||
@ -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éé par : " . $object->user_creation->fullname . '<br>';
|
global $langs;
|
||||||
print "Date de création : " . strftime("%A %d %B %Y %H:%M:%S",$object->date_creation) . '<br>';
|
|
||||||
|
|
||||||
if (isset($object->user_modification))
|
if (isset($object->user_creation))
|
||||||
print "Modifié par : " . $object->user_modification->fullname . '<br>';
|
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->date_modification))
|
if (isset($object->user_modification))
|
||||||
print "Date de modification : " . strftime("%A %d %B %Y %H:%M:%S",$object->date_modification) . '<br>';
|
print $langs->trans("ModifiedBy")." : " . $object->user_modification->fullname . '<br>';
|
||||||
|
|
||||||
if (isset($object->user_validation))
|
if (isset($object->date_modification))
|
||||||
print "Validé par : " . $object->user_validation->fullname . '<br>';
|
print $langs->trans("DateModification")." : " . dolibarr_print_date($object->date_modification,"%A %d %B %Y %H:%M:%S") . '<br>';
|
||||||
|
|
||||||
if (isset($object->user_cloture))
|
if (isset($object->user_validation))
|
||||||
print "Cloturé par : " . $object->user_cloture->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 $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éro de telephone à formater
|
\param phone numéro de telephone à formater
|
||||||
\return phone numéro de téléphone formaté
|
\return phone numéro de téléphone formaté
|
||||||
\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
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user