diff --git a/htdocs/langs/en_US/products.lang b/htdocs/langs/en_US/products.lang
index a1bbc45f970..7f82db63178 100644
--- a/htdocs/langs/en_US/products.lang
+++ b/htdocs/langs/en_US/products.lang
@@ -169,6 +169,8 @@ SuppliersPricesOfProductsOrServices=Vendor prices (of products or services)
CustomCode=Customs / Commodity / HS code
CountryOrigin=Origin country
Nature=Nature of product (material/finished)
+NatureOfProductShort=Nature of product
+NatureOfProductDesc=Raw material or finished product
ShortLabel=Short label
Unit=Unit
p=u.
diff --git a/htdocs/product/card.php b/htdocs/product/card.php
index 385e656458a..67e6e9e70f3 100644
--- a/htdocs/product/card.php
+++ b/htdocs/product/card.php
@@ -1054,7 +1054,7 @@ if (is_object($objcanvas) && $objcanvas->displayCanvasExists($action))
if ($type != 1) // Nature, Weight and volume only applies to products and not to services
{
// Nature
- print '
| '.$langs->trans("Nature").' | ';
+ print ' |
| '.$form->textwithpicto($langs->trans("NatureOfProductShort"), $langs->trans("NatureOfProductDesc")).' | ';
$statutarray = array('1' => $langs->trans("Finished"), '0' => $langs->trans("RowMaterial"));
print $form->selectarray('finished', $statutarray, GETPOST('finished', 'alpha'), 1);
print ' |
';
@@ -1470,7 +1470,7 @@ if (is_object($objcanvas) && $objcanvas->displayCanvasExists($action))
print '';
} else {
// Nature
- print '| '.$langs->trans("Nature").' | ';
+ print ' |
| '.$form->textwithpicto($langs->trans("NatureOfProductShort"), $langs->trans("NatureOfProductDesc")).' | ';
$statutarray = array('-1'=>' ', '1' => $langs->trans("Finished"), '0' => $langs->trans("RowMaterial"));
print $form->selectarray('finished', $statutarray, $object->finished);
print ' |
';
@@ -1946,7 +1946,7 @@ if (is_object($objcanvas) && $objcanvas->displayCanvasExists($action))
print '';
} else {
// Nature
- print '| '.$langs->trans("Nature").' | ';
+ print ' |
| '.$form->textwithpicto($langs->trans("NatureOfProductShort"), $langs->trans("NatureOfProductDesc")).' | ';
print $object->getLibFinished();
print ' |
';