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
This commit is contained in:
@@ -2771,13 +2771,13 @@ void IMAGE_OT_invert(wmOperatorType *ot)
|
||||
ot->poll = image_from_context_has_data_poll_no_image_user;
|
||||
|
||||
/* properties */
|
||||
prop = RNA_def_boolean(ot->srna, "invert_r", 0, "Red", "Invert Red Channel");
|
||||
prop = RNA_def_boolean(ot->srna, "invert_r", 0, "Red", "Invert red channel");
|
||||
RNA_def_property_flag(prop, PROP_SKIP_SAVE);
|
||||
prop = RNA_def_boolean(ot->srna, "invert_g", 0, "Green", "Invert Green Channel");
|
||||
prop = RNA_def_boolean(ot->srna, "invert_g", 0, "Green", "Invert green channel");
|
||||
RNA_def_property_flag(prop, PROP_SKIP_SAVE);
|
||||
prop = RNA_def_boolean(ot->srna, "invert_b", 0, "Blue", "Invert Blue Channel");
|
||||
prop = RNA_def_boolean(ot->srna, "invert_b", 0, "Blue", "Invert blue channel");
|
||||
RNA_def_property_flag(prop, PROP_SKIP_SAVE);
|
||||
prop = RNA_def_boolean(ot->srna, "invert_a", 0, "Alpha", "Invert Alpha Channel");
|
||||
prop = RNA_def_boolean(ot->srna, "invert_a", 0, "Alpha", "Invert alpha channel");
|
||||
RNA_def_property_flag(prop, PROP_SKIP_SAVE);
|
||||
|
||||
/* flags */
|
||||
|
||||
Reference in New Issue
Block a user