From 2917f550caa9e7a3724c7597bdeaec989a339138 Mon Sep 17 00:00:00 2001 From: Yevgeny Makarov Date: Thu, 24 Dec 2020 11:07:32 -0600 Subject: Cleanup: Fix capitalization in various UI strings Approximately 195 changes of capitalization to conform to MLA title style. UI labels and property names should use MLA title case, while descriptions should be capitalized like regular prose, generally with only the start of a sentence capitalized. Differential Revision: https://developer.blender.org/D9922 --- source/blender/editors/mesh/editmesh_intersect.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'source/blender/editors/mesh/editmesh_intersect.c') diff --git a/source/blender/editors/mesh/editmesh_intersect.c b/source/blender/editors/mesh/editmesh_intersect.c index ff4867454d6..b269a4f0514 100644 --- a/source/blender/editors/mesh/editmesh_intersect.c +++ b/source/blender/editors/mesh/editmesh_intersect.c @@ -302,8 +302,8 @@ void MESH_OT_intersect(struct wmOperatorType *ot) }; static const EnumPropertyItem isect_intersect_solver_items[] = { - {ISECT_SOLVER_FAST, "FAST", 0, "Fast", "Faster Solver, some limitations"}, - {ISECT_SOLVER_EXACT, "EXACT", 0, "Exact", "Exact Solver, slower, handles more cases"}, + {ISECT_SOLVER_FAST, "FAST", 0, "Fast", "Faster solver, some limitations"}, + {ISECT_SOLVER_EXACT, "EXACT", 0, "Exact", "Exact solver, slower, handles more cases"}, {0, NULL, 0, NULL, NULL}, }; @@ -322,7 +322,7 @@ void MESH_OT_intersect(struct wmOperatorType *ot) RNA_def_enum( ot->srna, "separate_mode", isect_separate_items, ISECT_SEPARATE_CUT, "Separate Mode", ""); RNA_def_float_distance( - ot->srna, "threshold", 0.000001f, 0.0, 0.01, "Merge threshold", "", 0.0, 0.001); + ot->srna, "threshold", 0.000001f, 0.0, 0.01, "Merge Threshold", "", 0.0, 0.001); RNA_def_enum(ot->srna, "solver", isect_intersect_solver_items, @@ -446,8 +446,8 @@ void MESH_OT_intersect_boolean(struct wmOperatorType *ot) }; static const EnumPropertyItem isect_boolean_solver_items[] = { - {ISECT_SOLVER_FAST, "FAST", 0, "Fast", "Faster Solver, some limitations"}, - {ISECT_SOLVER_EXACT, "EXACT", 0, "Exact", "Exact Solver, slower, handles more cases"}, + {ISECT_SOLVER_FAST, "FAST", 0, "Fast", "Faster solver, some limitations"}, + {ISECT_SOLVER_EXACT, "EXACT", 0, "Exact", "Exact solver, slower, handles more cases"}, {0, NULL, 0, NULL, NULL}, }; @@ -466,7 +466,7 @@ void MESH_OT_intersect_boolean(struct wmOperatorType *ot) "operation", isect_boolean_operation_items, BMESH_ISECT_BOOLEAN_DIFFERENCE, - "Boolean operation", + "Boolean Operation", "Which boolean operation to apply"); RNA_def_boolean(ot->srna, "use_swap", @@ -475,7 +475,7 @@ void MESH_OT_intersect_boolean(struct wmOperatorType *ot) "Use with difference intersection to swap which side is kept"); RNA_def_boolean(ot->srna, "use_self", false, "Self", "Do self-union or self-intersection"); RNA_def_float_distance( - ot->srna, "threshold", 0.000001f, 0.0, 0.01, "Merge threshold", "", 0.0, 0.001); + ot->srna, "threshold", 0.000001f, 0.0, 0.01, "Merge Threshold", "", 0.0, 0.001); RNA_def_enum(ot->srna, "solver", isect_boolean_solver_items, -- cgit v1.2.3