From af316d276144b905cf6cf5a1b1d7ae727d545e2f Mon Sep 17 00:00:00 2001 From: Yevgeny Makarov Date: Thu, 24 Dec 2020 13:11:22 -0600 Subject: UI: Cleanup spelling of compound words Approximately 138 changes in the spelling of compound words and proper names like "Light Probe", "Shrink/Fatten", "Face Map". In many cases, hyphens were used where they aren't correct, like "re-fit". Other common changes include: - "Datablock" -> "data-block" - "Floating point" -> "floating-point" - "Ngons" -> "n-gons" These changes help give the language used in the interface a consistent, more professional feel. Differential Revision: https://developer.blender.org/D9923 --- source/blender/editors/mesh/editmesh_tools.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'source/blender/editors/mesh/editmesh_tools.c') diff --git a/source/blender/editors/mesh/editmesh_tools.c b/source/blender/editors/mesh/editmesh_tools.c index 3cef915bb6b..89a4ee05fa4 100644 --- a/source/blender/editors/mesh/editmesh_tools.c +++ b/source/blender/editors/mesh/editmesh_tools.c @@ -187,7 +187,7 @@ void MESH_OT_subdivide(wmOperatorType *ot) prop_mesh_cornervert_types, SUBD_CORNER_STRAIGHT_CUT, "Quad Corner Type", - "How to subdivide quad corners (anything other than Straight Cut will prevent ngons)"); + "How to subdivide quad corners (anything other than Straight Cut will prevent n-gons)"); RNA_def_float(ot->srna, "fractal", @@ -335,7 +335,7 @@ void MESH_OT_subdivide_edgering(wmOperatorType *ot) { /* identifiers */ ot->name = "Subdivide Edge-Ring"; - ot->description = "Subdivide perpendicular edges to the selected edge ring"; + ot->description = "Subdivide perpendicular edges to the selected edge-ring"; ot->idname = "MESH_OT_subdivide_edgering"; /* api callbacks */ @@ -407,7 +407,7 @@ void MESH_OT_unsubdivide(wmOperatorType *ot) /* props */ RNA_def_int( - ot->srna, "iterations", 2, 1, 1000, "Iterations", "Number of times to unsubdivide", 1, 100); + ot->srna, "iterations", 2, 1, 1000, "Iterations", "Number of times to un-subdivide", 1, 100); } /** \} */ @@ -6939,7 +6939,7 @@ void MESH_OT_sort_elements(wmOperatorType *ot) type_items, SRT_VIEW_ZAXIS, "Type", - "Type of re-ordering operation to apply"); + "Type of reordering operation to apply"); RNA_def_enum_flag(ot->srna, "elements", elem_items, @@ -7258,7 +7258,7 @@ void MESH_OT_wireframe(wmOperatorType *ot) /* identifiers */ ot->name = "Wireframe"; ot->idname = "MESH_OT_wireframe"; - ot->description = "Create a solid wire-frame from faces"; + ot->description = "Create a solid wireframe from faces"; /* api callbacks */ ot->exec = edbm_wireframe_exec; -- cgit v1.2.3