diff --git a/htdocs/product/fiche.php b/htdocs/product/fiche.php
index 22a5430e641..0aa0ed6676b 100644
--- a/htdocs/product/fiche.php
+++ b/htdocs/product/fiche.php
@@ -739,7 +739,7 @@ if ($_GET["id"] || $_GET["ref"])
print '
| '.$langs->trans("Stock").' | ';
if ($product->no_stock)
{
- print "".$langs->trans("NoStockDefined");
+ print " | ".$langs->trans("NoStockForThisProduct");
}
else
{
diff --git a/htdocs/product/stats/fiche.php b/htdocs/product/stats/fiche.php
index 2728e69c993..982a42c43fd 100644
--- a/htdocs/product/stats/fiche.php
+++ b/htdocs/product/stats/fiche.php
@@ -109,7 +109,7 @@ if ($_GET["id"] || $_GET["ref"])
print ' |
| '.$langs->trans("Stock").' | ';
if ($product->no_stock)
{
- print "".$langs->trans("NoStockDefined");
+ print " | ".$langs->trans("NoStockForThisProduct");
}
else
{
|