Trad: Traduction onglet "Fournisseur"

This commit is contained in:
Laurent Destailleur 2004-12-04 19:31:50 +00:00
parent d09fb6c90b
commit b9648e9d1e
3 changed files with 25 additions and 18 deletions

View File

@ -360,10 +360,12 @@ else
$h++;
}
$head[$h][0] = DOL_URL_ROOT."/product/fournisseurs.php?id=".$product->id;
$head[$h][1] = 'Fournisseurs';
$h++;
if ($conf->fournisseur->enabled)
{
$head[$h][0] = DOL_URL_ROOT."/product/fournisseurs.php?id=".$product->id;
$head[$h][1] = $langs->trans("Suppliers");
$h++;
}
}
$head[$h][0] = DOL_URL_ROOT."/product/stats/fiche.php?id=".$product->id;

View File

@ -111,17 +111,20 @@ if ($_GET["id"])
if($product->type == 0)
{
if ($conf->stock->enabled)
{
$head[$h][0] = DOL_URL_ROOT."/product/stock/product.php?id=".$product->id;
$head[$h][1] = 'Stock';
$h++;
}
$head[$h][0] = DOL_URL_ROOT."/product/fournisseurs.php?id=".$product->id;
$head[$h][1] = 'Fournisseurs';
$hselected = $h;
$h++;
{
$head[$h][0] = DOL_URL_ROOT."/product/stock/product.php?id=".$product->id;
$head[$h][1] = 'Stock';
$h++;
}
if ($conf->fournisseur->enabled)
{
$head[$h][0] = DOL_URL_ROOT."/product/fournisseurs.php?id=".$product->id;
$head[$h][1] = $langs->trans("Suppliers");
$hselected = $h;
$h++;
}
}
$head[$h][0] = DOL_URL_ROOT."/product/stats/fiche.php?id=".$product->id;

View File

@ -88,9 +88,11 @@ if($product->type == 0)
$h++;
}
$head[$h][0] = DOL_URL_ROOT."/product/fournisseurs.php?id=".$product->id;
$head[$h][1] = 'Fournisseurs';
$h++;
if ($conf->fournisseur->enabled) {
$head[$h][0] = DOL_URL_ROOT."/product/fournisseurs.php?id=".$product->id;
$head[$h][1] = $langs->trans("Suppliers");
$h++;
}
}