From 7a83b64f7bd39934cf73dcca94598b610e829fb4 Mon Sep 17 00:00:00 2001 From: Yevgeny Makarov Date: Fri, 20 Sep 2019 14:31:24 +0200 Subject: UI: Fix Capitalization Differential Revision: https://developer.blender.org/D5716 --- source/blender/editors/object/object_collection.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'source/blender/editors/object/object_collection.c') diff --git a/source/blender/editors/object/object_collection.c b/source/blender/editors/object/object_collection.c index fcaefaf220d..a00e5e7b198 100644 --- a/source/blender/editors/object/object_collection.c +++ b/source/blender/editors/object/object_collection.c @@ -186,7 +186,7 @@ void COLLECTION_OT_objects_add_active(wmOperatorType *ot) PropertyRNA *prop; /* identifiers */ - ot->name = "Add Selected To Active Collection"; + ot->name = "Add Selected to Active Collection"; ot->description = "Add the object to an object collection that contains the active object"; ot->idname = "COLLECTION_OT_objects_add_active"; @@ -259,7 +259,7 @@ void COLLECTION_OT_objects_remove_active(wmOperatorType *ot) PropertyRNA *prop; /* identifiers */ - ot->name = "Remove Selected From Active Collection"; + ot->name = "Remove Selected from Active Collection"; ot->description = "Remove the object from an object collection that contains the active object"; ot->idname = "COLLECTION_OT_objects_remove_active"; @@ -302,7 +302,7 @@ static int collection_objects_remove_all_exec(bContext *C, wmOperator *UNUSED(op void COLLECTION_OT_objects_remove_all(wmOperatorType *ot) { /* identifiers */ - ot->name = "Remove From All Unlinked Collections"; + ot->name = "Remove from All Unlinked Collections"; ot->description = "Remove selected objects from all collections not used in a scene"; ot->idname = "COLLECTION_OT_objects_remove_all"; @@ -361,7 +361,7 @@ void COLLECTION_OT_objects_remove(wmOperatorType *ot) PropertyRNA *prop; /* identifiers */ - ot->name = "Remove From Collection"; + ot->name = "Remove from Collection"; ot->description = "Remove selected objects from a collection"; ot->idname = "COLLECTION_OT_objects_remove"; -- cgit v1.2.3