From 4cc154293edf4960dcf5b3242b6cdb7ef6a65bd7 Mon Sep 17 00:00:00 2001 From: Alexandre SPANGARO Date: Fri, 8 Nov 2024 02:48:37 +0100 Subject: [PATCH] Fix language key (#31726) Co-authored-by: Laurent Destailleur --- htdocs/admin/modulehelp.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/admin/modulehelp.php b/htdocs/admin/modulehelp.php index 762bb707a65..c097fa1e843 100644 --- a/htdocs/admin/modulehelp.php +++ b/htdocs/admin/modulehelp.php @@ -529,7 +529,7 @@ if ($mode == 'feature') { if (isset($objMod->module_parts) && isset($objMod->module_parts['triggers']) && $objMod->module_parts['triggers']) { $yesno = 'Yes'; } else { - $yesno = 'No'; + $yesno = ''.$langs->trans("No").''; } require_once DOL_DOCUMENT_ROOT.'/core/class/interfaces.class.php'; $interfaces = new Interfaces($db);