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:
authorYevgeny Makarov <jenkm>2020-12-24 20:07:32 +0300
committerHans Goudey <h.goudey@me.com>2020-12-24 20:07:32 +0300
commit2917f550caa9e7a3724c7597bdeaec989a339138 (patch)
treedb7de0d316ddcfb631f66e2aae147df3ec33441b /source/blender/editors/io/io_collada.c
parentfe440a92e975e8865c281dcbc5326ee73940eb8c (diff)
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
Diffstat (limited to 'source/blender/editors/io/io_collada.c')
-rw-r--r--source/blender/editors/io/io_collada.c10
1 files changed, 5 insertions, 5 deletions
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";