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
This commit is contained in:
Harley Acheson 2024-03-14 16:32:34 +01:00 committed by Harley Acheson
parent 6a320524b9
commit 73d76d4360
1 changed files with 2 additions and 2 deletions

View File

@ -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")