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/makesrna/intern/rna_volume.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/makesrna/intern/rna_volume.c')
-rw-r--r--source/blender/makesrna/intern/rna_volume.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/makesrna/intern/rna_volume.c b/source/blender/makesrna/intern/rna_volume.c
index 42d491b734e..d71dcc0700b 100644
--- a/source/blender/makesrna/intern/rna_volume.c
+++ b/source/blender/makesrna/intern/rna_volume.c
@@ -359,7 +359,7 @@ static void rna_def_volume_display(BlenderRNA *brna)
PropertyRNA *prop;
srna = RNA_def_struct(brna, "VolumeDisplay", NULL);
- RNA_def_struct_ui_text(srna, "Volume Display", "Volume object display settings for 3d viewport");
+ RNA_def_struct_ui_text(srna, "Volume Display", "Volume object display settings for 3D viewport");
RNA_def_struct_sdna(srna, "VolumeDisplay");
prop = RNA_def_property(srna, "density", PROP_FLOAT, PROP_NONE);
@@ -604,13 +604,13 @@ static void rna_def_volume(BlenderRNA *brna)
prop = RNA_def_property(srna, "display", PROP_POINTER, PROP_NONE);
RNA_def_property_pointer_sdna(prop, NULL, "display");
RNA_def_property_struct_type(prop, "VolumeDisplay");
- RNA_def_property_ui_text(prop, "Display", "Volume display settings for 3d viewport");
+ RNA_def_property_ui_text(prop, "Display", "Volume display settings for 3D viewport");
/* Render */
prop = RNA_def_property(srna, "render", PROP_POINTER, PROP_NONE);
RNA_def_property_pointer_sdna(prop, NULL, "render");
RNA_def_property_struct_type(prop, "VolumeRender");
- RNA_def_property_ui_text(prop, "Render", "Volume render settings for 3d viewport");
+ RNA_def_property_ui_text(prop, "Render", "Volume render settings for 3D viewport");
/* Common */
rna_def_animdata_common(srna);