Trad: Traduction des "Ajouter à mes ..."

This commit is contained in:
Laurent Destailleur 2005-02-18 00:34:59 +00:00
parent 00588b832c
commit 29bcd67481
4 changed files with 24 additions and 10 deletions

View File

@ -40,6 +40,7 @@ ProfId3=Professional ID 3
TVAIntra=Intracommunautary VAT TVAIntra=Intracommunautary VAT
ProspectCustomer=Prospect / Customer ProspectCustomer=Prospect / Customer
Prospect=Prospect Prospect=Prospect
CustomerCard=Customer Card
Customer=Customer Customer=Customer
CustomerDiscount=Customer Discount CustomerDiscount=Customer Discount
Supplier=Supplier Supplier=Supplier

View File

@ -46,4 +46,9 @@ ErrorProductAlreadyExists=A product with reference %s already exists.
ErrorProductBadRefOrLabel=Wrong value for reference or label. ErrorProductBadRefOrLabel=Wrong value for reference or label.
ShowProduct=Show product ShowProduct=Show product
ShowService=Show service ShowService=Show service
ProductsAndServicesArea=Product and Services area ProductsAndServicesArea=Product and Services area
AddToMyProposals=Add to my proposals
AddToOtherProposals=Add to other proposals
AddToMyBills=Add to my bills
AddToOtherBills=Add to other bills
CorrectStock=Correct stock

View File

@ -49,4 +49,9 @@ ErrorProductBadRefOrLabel=La valeur de la reference ou du libell
Suppliers=Fournisseurs Suppliers=Fournisseurs
ShowProduct=Afficher produit ShowProduct=Afficher produit
ShowService=Afficher service ShowService=Afficher service
ProductsAndServicesArea=Espace Produit et Services ProductsAndServicesArea=Espace Produit et Services
AddToMyProposals=Ajouter à mes propositions
AddToOtherProposals=Ajouter aux autres propositions
AddToMyBills=Ajouter à mes factures
AddToOtherBills=Ajouter aux autres factures
CorrectStock=Corriger stock

View File

@ -236,6 +236,7 @@ if ($_POST["cancel"] == $langs->trans("Cancel"))
//llxHeader("","",$langs->trans("CardProduct".$product->type)); //llxHeader("","",$langs->trans("CardProduct".$product->type));
llxHeader("","",$langs->trans("CardProduct0")); llxHeader("","",$langs->trans("CardProduct0"));
/* /*
* Création du produit * Création du produit
* *
@ -346,7 +347,7 @@ else
if ($conf->stock->enabled) if ($conf->stock->enabled)
{ {
$head[$h][0] = DOL_URL_ROOT."/product/stock/product.php?id=".$product->id; $head[$h][0] = DOL_URL_ROOT."/product/stock/product.php?id=".$product->id;
$head[$h][1] = 'Stock'; $head[$h][1] = $langs->trans("Stock");
$h++; $h++;
} }
@ -484,7 +485,8 @@ else
print '</table>'; print '</table>';
print '</form>'; print '</form>';
} }
/* /*
* Ajouter un fournisseur * Ajouter un fournisseur
* *
@ -603,6 +605,7 @@ else
} }
} }
/* ************************************************************************** */ /* ************************************************************************** */
/* */ /* */
/* Barre d'action */ /* Barre d'action */
@ -615,7 +618,7 @@ if ($_GET["action"] == '')
{ {
if ($product->type == 0 && $user->rights->produit->commander && $num_fournisseur == 1) if ($product->type == 0 && $user->rights->produit->commander && $num_fournisseur == 1)
{ {
print '<a class="tabAction" href="fiche.php?action=fastappro&amp;id='.$product->id.'">'.$langs->trans("Commander").'</a>'; print '<a class="tabAction" href="fiche.php?action=fastappro&amp;id='.$product->id.'">'.$langs->trans("Order").'</a>';
} }
if ( $user->rights->produit->creer) if ( $user->rights->produit->creer)
{ {
@ -627,7 +630,7 @@ if ($_GET["action"] == '')
} }
if ($product->type == 0 && $conf->stock->enabled) if ($product->type == 0 && $conf->stock->enabled)
{ {
print '<a class="tabAction" href="stock/product.php?id='.$product->id.'&amp;action=correction">Correction stock</a>'; print '<a class="tabAction" href="stock/product.php?id='.$product->id.'&amp;action=correction">'.$langs->trans("CorrectStock").'</a>';
} }
} }
@ -644,9 +647,9 @@ if ($_GET["id"] && $_GET["action"] == '' && $product->envente)
if($user->rights->propale->creer) if($user->rights->propale->creer)
{ {
print "<tr>".'<td width="50%" valign="top">'; print "<tr>".'<td width="50%" valign="top">';
print_titre("AddToMyProposals") . '</td>'; print_titre($langs->trans("AddToMyProposals")) . '</td>';
print '<td width="50%" valign="top">'; print '<td width="50%" valign="top">';
print_titre("AddToOtherProposals") . '</td>'; print_titre($langs->trans("AddToOtherProposals")) . '</td>';
print '</tr>'; print '</tr>';
print "<tr>".'<td width="50%" valign="top">'; print "<tr>".'<td width="50%" valign="top">';
@ -714,9 +717,9 @@ if ($_GET["id"] && $_GET["action"] == '' && $product->envente)
$langs->load("bills"); $langs->load("bills");
print "<tr>".'<td width="50%" valign="top">'; print "<tr>".'<td width="50%" valign="top">';
print_titre("AddToMyBills"); print_titre($langs->trans("AddToMyBills"));
print '</td><td width="50%" valign="top">'; print '</td><td width="50%" valign="top">';
print_titre("AddToOtherBills"); print_titre($langs->trans("AddToOtherBills"));
print '</td></tr>'; print '</td></tr>';
print "<tr>".'<td width="50%" valign="top">'; print "<tr>".'<td width="50%" valign="top">';