From 025df50f61b68a97fcc872cfd5e0e671b81cbeeb Mon Sep 17 00:00:00 2001 From: Bastien Montagne Date: Tue, 12 Feb 2019 21:28:04 +0100 Subject: Fix T51771: UI Messages: Reserve 'Normal' to its geometric meaning. Using 'Regular' instead for the common meaning, this avoids having to add some i18n context disambiguation... --- source/blender/editors/transform/transform_gizmo_extrude_3d.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/editors/transform/transform_gizmo_extrude_3d.c') diff --git a/source/blender/editors/transform/transform_gizmo_extrude_3d.c b/source/blender/editors/transform/transform_gizmo_extrude_3d.c index ea5c02f35e8..e81db9d346e 100644 --- a/source/blender/editors/transform/transform_gizmo_extrude_3d.c +++ b/source/blender/editors/transform/transform_gizmo_extrude_3d.c @@ -457,7 +457,7 @@ void VIEW3D_GGT_xform_extrude(struct wmGizmoGroupType *gzgt) gzgt->message_subscribe = gizmo_mesh_extrude_message_subscribe; static const EnumPropertyItem axis_type_items[] = { - {EXTRUDE_AXIS_NORMAL, "NORMAL", 0, "Normal", "Only show normal axis"}, + {EXTRUDE_AXIS_NORMAL, "NORMAL", 0, "Regular", "Only show normal axis"}, {EXTRUDE_AXIS_XYZ, "XYZ", 0, "XYZ", "Follow scene orientation"}, {0, NULL, 0, NULL, NULL}, }; -- cgit v1.2.3