From 10c5ed8a3c337b152a7ab1b84c4712d94262ebe1 Mon Sep 17 00:00:00 2001 From: Raffael Meyer <14891507+barredterra@users.noreply.github.com> Date: Tue, 9 Apr 2024 01:55:20 +0200 Subject: [PATCH] fix: make help items translatable (#40913) --- erpnext/setup/install.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/erpnext/setup/install.py b/erpnext/setup/install.py index ca065be94f8..9ad6b993633 100644 --- a/erpnext/setup/install.py +++ b/erpnext/setup/install.py @@ -142,6 +142,11 @@ def add_company_to_session_defaults(): def add_standard_navbar_items(): navbar_settings = frappe.get_single("Navbar Settings") + # Translatable strings for below navbar items + __ = _("Documentation") + __ = _("User Forum") + __ = _("Report an Issue") + erpnext_navbar_items = [ { "item_label": "Documentation",