Trad: Encore de la traduction

This commit is contained in:
Laurent Destailleur 2004-10-23 00:46:54 +00:00
parent 556dad28c2
commit f1ff08c996
4 changed files with 17 additions and 6 deletions

View File

@ -20,12 +20,20 @@
* $Source$ * $Source$
* *
*/ */
/*!
\file htdocs/contact/fiche.php
\ingroup societe
\brief Page de la fiche contact
\version $Revision$
*/
require("./pre.inc.php"); require("./pre.inc.php");
require("../contact.class.php"); require("../contact.class.php");
/*
* $langs->load("company");
*
*/
llxHeader(); llxHeader();
print '<div class="tabs">'; print '<div class="tabs">';
@ -45,14 +53,14 @@ $contact = new Contact($db);
$contact->fetch($_GET["id"], $user); $contact->fetch($_GET["id"], $user);
$contact->info($_GET["id"]); $contact->info($_GET["id"]);
print_fiche_titre ("Contact : ". $contact->firstname.' '.$contact->name); print_fiche_titre ($langs->trans("Contact")." : ". $contact->firstname.' '.$contact->name);
if ($contact->socid > 0) if ($contact->socid > 0)
{ {
$objsoc = new Societe($db); $objsoc = new Societe($db);
$objsoc->fetch($contact->socid); $objsoc->fetch($contact->socid);
print 'Société : '.$objsoc->nom_url.'<br>'; print $langs->trans("Company").' : '.$objsoc->nom_url.'<br>';
} }
dolibarr_print_object_info($contact); dolibarr_print_object_info($contact);

View File

@ -1,4 +1,5 @@
# Dolibarr language file - en_US - soc # Dolibarr language file - en_US - soc
ErrorBadEMail=EMail %s is wrong
MenuNewCompany=New company MenuNewCompany=New company
MenuSocGroup=Groups MenuSocGroup=Groups
NewCompany=New company (prospect, customer, supplier) NewCompany=New company (prospect, customer, supplier)

View File

@ -1,4 +1,5 @@
# Dolibarr language file - fr_BE - soc # Dolibarr language file - fr_BE - soc
ErrorBadEMail=EMail %s invalide
NewCompany=Nouvelle société (prospect, client, fournisseur) NewCompany=Nouvelle société (prospect, client, fournisseur)
Company=Société Company=Société
Companies=Sociétés Companies=Sociétés

View File

@ -1,4 +1,5 @@
# Dolibarr language file - fr_FR - soc # Dolibarr language file - fr_FR - soc
ErrorBadEMail=EMail %s invalide
MenuNewCompany=Nouvelle société MenuNewCompany=Nouvelle société
MenuSocGroup=Groupes MenuSocGroup=Groupes
NewCompany=Nouvelle société (prospect, client, fournisseur) NewCompany=Nouvelle société (prospect, client, fournisseur)