From 7a1373d0c0efc6e254480bf92b65edbbbdc68e54 Mon Sep 17 00:00:00 2001 From: Harley Acheson Date: Mon, 3 Apr 2023 11:43:10 -0700 Subject: [PATCH] Fix #106422: Mesh Data Attributes Using tip_ for iface_ pgettext_tip incorrectly imported as iface_ instead of importing pgettext_iface. These leads to incorrectly translated attribute text shown when the user select to translate only tooltips. --- scripts/startup/bl_ui/properties_data_mesh.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/startup/bl_ui/properties_data_mesh.py b/scripts/startup/bl_ui/properties_data_mesh.py index f098172db0b..3f31426be23 100644 --- a/scripts/startup/bl_ui/properties_data_mesh.py +++ b/scripts/startup/bl_ui/properties_data_mesh.py @@ -4,7 +4,7 @@ from bpy.types import Menu, Panel, UIList from rna_prop_ui import PropertyPanel from bpy.app.translations import ( - pgettext_tip as iface_, + pgettext_iface as iface_, pgettext_tip as tip_, ) -- 2.30.2