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/space_graph
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/space_graph')
-rw-r--r--source/blender/editors/space_graph/graph_edit.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/source/blender/editors/space_graph/graph_edit.c b/source/blender/editors/space_graph/graph_edit.c
index e56d71913d6..cf8dfb9eadb 100644
--- a/source/blender/editors/space_graph/graph_edit.c
+++ b/source/blender/editors/space_graph/graph_edit.c
@@ -99,12 +99,12 @@ static const EnumPropertyItem prop_graphkeys_insertkey_types[] = {
{GRAPHKEYS_INSERTKEY_ACTIVE | GRAPHKEYS_INSERTKEY_CURSOR,
"CURSOR_ACTIVE",
0,
- "Active Channels At Cursor",
+ "Active Channels at Cursor",
"Insert a keyframe for the active F-Curve at the cursor point"},
{GRAPHKEYS_INSERTKEY_SEL | GRAPHKEYS_INSERTKEY_CURSOR,
"CURSOR_SEL",
0,
- "Selected Channels At Cursor",
+ "Selected Channels at Cursor",
"Insert a keyframe for selected F-Curves at the cursor point"},
{0, NULL, 0, NULL, NULL},
};
@@ -1170,7 +1170,7 @@ void GRAPH_OT_sound_bake(wmOperatorType *ot)
0.0f,
0.0,
100000.0,
- "Lowest frequency",
+ "Lowest Frequency",
"Cutoff frequency of a high-pass filter that is applied to the audio data",
0.1,
1000.00);
@@ -1179,7 +1179,7 @@ void GRAPH_OT_sound_bake(wmOperatorType *ot)
100000.0,
0.0,
100000.0,
- "Highest frequency",
+ "Highest Frequency",
"Cutoff frequency of a low-pass filter that is applied to the audio data",
0.1,
1000.00);
@@ -1188,7 +1188,7 @@ void GRAPH_OT_sound_bake(wmOperatorType *ot)
0.005,
0.0,
2.0,
- "Attack time",
+ "Attack Time",
"Value for the hull curve calculation that tells how fast the hull curve can rise "
"(the lower the value the steeper it can rise)",
0.01,
@@ -1198,7 +1198,7 @@ void GRAPH_OT_sound_bake(wmOperatorType *ot)
0.2,
0.0,
5.0,
- "Release time",
+ "Release Time",
"Value for the hull curve calculation that tells how fast the hull curve can fall "
"(the lower the value the steeper it can fall)",
0.01,