From 87b4f872f84476fd5c6d8434102c8f661d62c1f1 Mon Sep 17 00:00:00 2001 From: Raffael Meyer <14891507+barredterra@users.noreply.github.com> Date: Mon, 10 Nov 2025 13:09:14 +0100 Subject: [PATCH] fix: ignore translations from frappe (#50438) --- erpnext/hooks.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/erpnext/hooks.py b/erpnext/hooks.py index 3582eb7c30d..9a65062e7c4 100644 --- a/erpnext/hooks.py +++ b/erpnext/hooks.py @@ -663,3 +663,8 @@ default_log_clearing_doctypes = { export_python_type_annotations = True fields_for_group_similar_items = ["qty", "amount"] + +# Translation +# ------------ +# List of apps whose translatable strings should be excluded from this app's translations. +ignore_translatable_strings_from = ["frappe"]