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/object/object_constraint.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source/blender/editors/object/object_constraint.c') diff --git a/source/blender/editors/object/object_constraint.c b/source/blender/editors/object/object_constraint.c index dd015f59e8d..8c0884d6b3f 100644 --- a/source/blender/editors/object/object_constraint.c +++ b/source/blender/editors/object/object_constraint.c @@ -1680,7 +1680,7 @@ static int constraint_move_to_index_invoke(bContext *C, wmOperator *op, const wm void CONSTRAINT_OT_move_to_index(wmOperatorType *ot) { /* identifiers */ - ot->name = "Move Constraint To Index"; + ot->name = "Move Constraint to Index"; ot->idname = "CONSTRAINT_OT_move_to_index"; ot->description = "Change the constraint's position in the list so it evaluates after the set number of " @@ -1781,7 +1781,7 @@ void OBJECT_OT_constraints_clear(wmOperatorType *ot) /* identifiers */ ot->name = "Clear Object Constraints"; ot->idname = "OBJECT_OT_constraints_clear"; - ot->description = "Clear all the constraints for the active Object only"; + ot->description = "Clear all the constraints for the active object only"; /* callbacks */ ot->exec = object_constraints_clear_exec; @@ -2267,7 +2267,7 @@ void OBJECT_OT_constraint_add_with_targets(wmOperatorType *ot) ot->name = "Add Constraint (with Targets)"; ot->description = "Add a constraint to the active object, with target (where applicable) set to the " - "selected Objects/Bones"; + "selected objects/bones"; ot->idname = "OBJECT_OT_constraint_add_with_targets"; /* api callbacks */ -- cgit v1.2.3