diff --git a/source/blender/makesrna/intern/rna_linestyle.c b/source/blender/makesrna/intern/rna_linestyle.c index 90040d012f3..6e6f0c3e208 100644 --- a/source/blender/makesrna/intern/rna_linestyle.c +++ b/source/blender/makesrna/intern/rna_linestyle.c @@ -953,7 +953,7 @@ static void rna_def_linestyle(BlenderRNA *brna) prop = RNA_def_property(srna, "alpha", PROP_FLOAT, PROP_FACTOR); RNA_def_property_float_sdna(prop, NULL, "alpha"); RNA_def_property_range(prop, 0.0f, 1.0f); - RNA_def_property_ui_text(prop, "Alpha", + RNA_def_property_ui_text(prop, "Alpha Transparency", "Base alpha transparency, possibly modified by alpha transparency modifiers"); RNA_def_property_update(prop, NC_LINESTYLE, NULL); @@ -1001,7 +1001,7 @@ static void rna_def_linestyle(BlenderRNA *brna) prop = RNA_def_property(srna, "chaining", PROP_ENUM, PROP_NONE); RNA_def_property_enum_sdna(prop, NULL, "chaining"); RNA_def_property_enum_items(prop, chaining_items); - RNA_def_property_ui_text(prop, "Chaining", "Select the way how feature edges are jointed to form chains"); + RNA_def_property_ui_text(prop, "Chaining Method", "Select the way how feature edges are jointed to form chains"); RNA_def_property_update(prop, NC_LINESTYLE, NULL); prop = RNA_def_property(srna, "rounds", PROP_INT, PROP_UNSIGNED); @@ -1154,7 +1154,7 @@ static void rna_def_linestyle(BlenderRNA *brna) prop = RNA_def_property(srna, "caps", PROP_ENUM, PROP_NONE); RNA_def_property_enum_bitflag_sdna(prop, NULL, "caps"); RNA_def_property_enum_items(prop, cap_items); - RNA_def_property_ui_text(prop, "Cap", "Select the shape of both ends of strokes"); + RNA_def_property_ui_text(prop, "Caps", "Select the shape of both ends of strokes"); RNA_def_property_update(prop, NC_LINESTYLE, NULL); prop = RNA_def_property(srna, "dash1", PROP_INT, PROP_UNSIGNED); diff --git a/source/blender/makesrna/intern/rna_scene.c b/source/blender/makesrna/intern/rna_scene.c index d755aa9ca86..c4e56dc0d0f 100644 --- a/source/blender/makesrna/intern/rna_scene.c +++ b/source/blender/makesrna/intern/rna_scene.c @@ -2654,9 +2654,9 @@ static void rna_def_freestyle_settings(BlenderRNA *brna) }; static EnumPropertyItem face_mark_condition_items[] = { - {0, "ONE", 0, "One Face", "Select feature edges if one of faces on the right and left has a face mark"}, + {0, "ONE", 0, "One Face", "Select a feature edge if either of its adjacent faces is marked"}, {FREESTYLE_LINESET_FM_BOTH, "BOTH", 0, "Both Faces", - "Select feature edges if both faces on the right and left faces have a face mark"}, + "Select a feature edge if both of its adjacent faces are marked"}, {0, NULL, 0, NULL, NULL} };