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/io/io_collada.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'source/blender/editors/io') diff --git a/source/blender/editors/io/io_collada.c b/source/blender/editors/io/io_collada.c index af505043e6a..bf22c86ad45 100644 --- a/source/blender/editors/io/io_collada.c +++ b/source/blender/editors/io/io_collada.c @@ -481,11 +481,11 @@ void WM_OT_collada_export(wmOperatorType *ot) {0, NULL, 0, NULL, NULL}}; static const EnumPropertyItem prop_bc_export_ui_section[] = { - {BC_UI_SECTION_MAIN, "main", 0, "Main", "Data Export Section"}, - {BC_UI_SECTION_GEOMETRY, "geometry", 0, "Geom", "Geometry Export Section"}, - {BC_UI_SECTION_ARMATURE, "armature", 0, "Arm", "Armature Export Section"}, - {BC_UI_SECTION_ANIMATION, "animation", 0, "Anim", "Animation Export Section"}, - {BC_UI_SECTION_COLLADA, "collada", 0, "Extra", "Collada Export Section"}, + {BC_UI_SECTION_MAIN, "main", 0, "Main", "Data export section"}, + {BC_UI_SECTION_GEOMETRY, "geometry", 0, "Geom", "Geometry export section"}, + {BC_UI_SECTION_ARMATURE, "armature", 0, "Arm", "Armature export section"}, + {BC_UI_SECTION_ANIMATION, "animation", 0, "Anim", "Animation export section"}, + {BC_UI_SECTION_COLLADA, "collada", 0, "Extra", "Collada export section"}, {0, NULL, 0, NULL, NULL}}; ot->name = "Export COLLADA"; -- cgit v1.2.3