From 0ef43203626188a1c541a94d435dc311c1c37daa Mon Sep 17 00:00:00 2001 From: Damien Picard Date: Tue, 23 Sep 2025 14:44:24 +0200 Subject: [PATCH] I18n: Translate "Subprocesses" label in System preferences Reported by Ye Gui in #43295. --- scripts/startup/bl_ui/space_userpref.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/startup/bl_ui/space_userpref.py b/scripts/startup/bl_ui/space_userpref.py index 44107b2b892..0d19c0cc28b 100644 --- a/scripts/startup/bl_ui/space_userpref.py +++ b/scripts/startup/bl_ui/space_userpref.py @@ -838,8 +838,8 @@ class USERPREF_PT_system_memory(SystemPanel, CenterAlignMixIn, Panel): col = layout.column(align=True) col.active = system.gpu_backend != 'VULKAN' col.row().prop(system, "shader_compilation_method", expand=True) - label = "Threads" if system.shader_compilation_method == 'THREAD' else "Subprocesses" - col.prop(system, "gpu_shader_workers", text=label) + label = iface_("Threads") if system.shader_compilation_method == 'THREAD' else iface_("Subprocesses") + col.prop(system, "gpu_shader_workers", text=label, translate=False) class USERPREF_PT_system_video_sequencer(SystemPanel, CenterAlignMixIn, Panel):