Trad: Encore de la traduction
This commit is contained in:
parent
556dad28c2
commit
f1ff08c996
@ -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);
|
||||||
|
|||||||
@ -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)
|
||||||
|
|||||||
@ -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
|
||||||
|
|||||||
@ -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)
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user