From 713b5069805056336ba88e53db4812ecdc78cae8 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Wed, 13 Jul 2022 00:59:39 +0200 Subject: [PATCH] Fix label --- htdocs/product/list.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/htdocs/product/list.php b/htdocs/product/list.php index fbc23a2b262..1cf80a98b79 100644 --- a/htdocs/product/list.php +++ b/htdocs/product/list.php @@ -387,13 +387,13 @@ if (empty($reshook)) { * View */ -$title = $langs->trans("ListOfProductsAndServices"); +$title = $langs->trans("ProductsAndServices"); if ($search_type != '' && $search_type != '-1') { if ($search_type == 1) { - $title = $langs->trans("ListOfServices"); + $title = $langs->trans("Services"); } else { - $title = $langs->trans("ListOfProducts"); + $title = $langs->trans("Products"); } }