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 elects to translate only tooltips.

Pull Request: https://projects.blender.org/blender/blender/pulls/106507
This commit is contained in:
Harley Acheson
2023-04-03 20:55:22 +02:00
committed by Harley Acheson
parent 3e8f85c743
commit 14b112ef82

View File

@@ -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_,
)