diff --git a/htdocs/langs/en_US/products.lang b/htdocs/langs/en_US/products.lang index 55138235335..147a961db9b 100644 --- a/htdocs/langs/en_US/products.lang +++ b/htdocs/langs/en_US/products.lang @@ -141,7 +141,7 @@ RowMaterial=Raw Material CloneProduct=Clone product or service ConfirmCloneProduct=Are you sure you want to clone product or service %s? CloneContentProduct=Clone all main informations of product/service -ClonePricesProduct=Clone main informations and prices +ClonePricesProduct=Clone prices CloneCompositionProduct=Clone packaged product/service CloneCombinationsProduct=Clone product variants ProductIsUsed=This product is used diff --git a/htdocs/product/list.php b/htdocs/product/list.php index 2d956043c40..837f7f291e3 100644 --- a/htdocs/product/list.php +++ b/htdocs/product/list.php @@ -762,23 +762,23 @@ else // Ref if (! empty($arrayfields['p.ref']['checked'])) { - print ''; - print $product_static->getNomUrl(1,'',24); + print ''; + print $product_static->getNomUrl(1); print "\n"; if (! $i) $totalarray['nbfield']++; } // Ref supplier if (! empty($arrayfields['pfp.ref_fourn']['checked'])) { - print ''; - print $product_static->getNomUrl(1,'',24); + print ''; + print $product_static->getNomUrl(1); print "\n"; if (! $i) $totalarray['nbfield']++; } // Label if (! empty($arrayfields['p.label']['checked'])) { - print ''.dol_trunc($obj->label,40).''; + print ''.dol_trunc($obj->label,40).''; if (! $i) $totalarray['nbfield']++; } diff --git a/htdocs/theme/eldy/style.css.php b/htdocs/theme/eldy/style.css.php index 947a476c1de..f4c7e1c4546 100644 --- a/htdocs/theme/eldy/style.css.php +++ b/htdocs/theme/eldy/style.css.php @@ -701,8 +701,8 @@ div.myavailability { text-overflow: ellipsis; white-space: nowrap; } -.tdoverflowmax200 { /* For tdoverflow, the max-midth become a minimum ! */ - max-width: 200px; +.tdoverflowmax150 { /* For tdoverflow, the max-midth become a minimum ! */ + max-width: 150px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; diff --git a/htdocs/theme/md/style.css.php b/htdocs/theme/md/style.css.php index e8db7ef335b..7e785373a75 100644 --- a/htdocs/theme/md/style.css.php +++ b/htdocs/theme/md/style.css.php @@ -708,8 +708,8 @@ div.myavailability { text-overflow: ellipsis; white-space: nowrap; } -.tdoverflowmax200 { /* For tdoverflow, the max-midth become a minimum ! */ - max-width: 200px; +.tdoverflowmax150 { /* For tdoverflow, the max-midth become a minimum ! */ + max-width: 150px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;