Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/editors/mesh/editmesh_tools.c')
-rw-r--r--source/blender/editors/mesh/editmesh_tools.c10
1 files changed, 5 insertions, 5 deletions
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;