From d549090290a2bbd0b1c1d4c1dc2b41788828961a Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Mon, 16 Apr 2018 11:12:56 +0200 Subject: [PATCH] Fix translation of button action must be a verb --- htdocs/fourn/commande/card.php | 4 ++-- htdocs/langs/en_US/stocks.lang | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/htdocs/fourn/commande/card.php b/htdocs/fourn/commande/card.php index c0842bc253a..b9a1b7b0fa1 100644 --- a/htdocs/fourn/commande/card.php +++ b/htdocs/fourn/commande/card.php @@ -2338,9 +2338,9 @@ elseif (! empty($object->id)) { if (in_array($object->statut, array(3,4))) { if ($conf->fournisseur->enabled && $user->rights->fournisseur->commande->receptionner) { - print '
' . $langs->trans('OrderDispatch') . '
'; + print '
' . $langs->trans('ReceiveProducts') . '
'; } else { - print '
' . $langs->trans('OrderDispatch') . '
'; + print '
' . $langs->trans('ReceiveProducts') . '
'; } } } diff --git a/htdocs/langs/en_US/stocks.lang b/htdocs/langs/en_US/stocks.lang index 31873ad527e..d1b1f85224f 100644 --- a/htdocs/langs/en_US/stocks.lang +++ b/htdocs/langs/en_US/stocks.lang @@ -202,4 +202,5 @@ inventoryDeleteLine=Delete line RegulateStock=Regulate Stock ListInventory=List StockSupportServices=Stock management support services -StockSupportServicesDesc=By default, you can stock only product with type "product". If on, and if module service is on, you can also stock a product with type "service" \ No newline at end of file +StockSupportServicesDesc=By default, you can stock only product with type "product". If on, and if module service is on, you can also stock a product with type "service" +ReceiveProducts=Receive products \ No newline at end of file