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/space_sequencer/sequencer_edit.c | 2 +- source/blender/editors/space_sequencer/sequencer_select.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'source/blender/editors/space_sequencer') diff --git a/source/blender/editors/space_sequencer/sequencer_edit.c b/source/blender/editors/space_sequencer/sequencer_edit.c index c3553ac88ad..41217deceba 100644 --- a/source/blender/editors/space_sequencer/sequencer_edit.c +++ b/source/blender/editors/space_sequencer/sequencer_edit.c @@ -2220,7 +2220,7 @@ void SEQUENCER_OT_strip_jump(wmOperatorType *ot) /* Properties. */ RNA_def_boolean(ot->srna, "next", true, "Next Strip", ""); - RNA_def_boolean(ot->srna, "center", true, "Use strip center", ""); + RNA_def_boolean(ot->srna, "center", true, "Use Strip Center", ""); } /** \} */ diff --git a/source/blender/editors/space_sequencer/sequencer_select.c b/source/blender/editors/space_sequencer/sequencer_select.c index edbffa8f693..9bb3da0cef9 100644 --- a/source/blender/editors/space_sequencer/sequencer_select.c +++ b/source/blender/editors/space_sequencer/sequencer_select.c @@ -1310,7 +1310,7 @@ static const EnumPropertyItem sequencer_prop_select_grouped_types[] = { "TYPE_BASIC", 0, "Global Type", - "All strips of same basic type (Graphical or Sound)"}, + "All strips of same basic type (graphical or sound)"}, {SEQ_SELECT_GROUP_TYPE_EFFECT, "TYPE_EFFECT", 0, -- cgit v1.2.3