From 73d76d436018e8f698688f636d0327cdfb91d52e Mon Sep 17 00:00:00 2001 From: Harley Acheson Date: Thu, 14 Mar 2024 16:32:34 +0100 Subject: [PATCH] UI: User Prefs Language Section Change Preferences panel "Translation" to "Language" and replace "Affect" with "Translate". Pull Request: https://projects.blender.org/blender/blender/pulls/119430 --- 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 5419efee39d..d71f859d163 100644 --- a/scripts/startup/bl_ui/space_userpref.py +++ b/scripts/startup/bl_ui/space_userpref.py @@ -247,7 +247,7 @@ class USERPREF_PT_interface_text(InterfacePanel, CenterAlignMixIn, Panel): class USERPREF_PT_interface_translation(InterfacePanel, CenterAlignMixIn, Panel): - bl_label = "Translation" + bl_label = "Language" bl_translation_context = i18n_contexts.id_windowmanager @classmethod @@ -260,7 +260,7 @@ class USERPREF_PT_interface_translation(InterfacePanel, CenterAlignMixIn, Panel) layout.prop(view, "language") - col = layout.column(heading="Affect") + col = layout.column(heading="Translate") col.active = (bpy.app.translations.locale != "en_US") col.prop(view, "use_translate_tooltips", text="Tooltips") col.prop(view, "use_translate_interface", text="Interface")