From a22af1a84b3f15e300a1099cf4cc958d8abcc3dd Mon Sep 17 00:00:00 2001 From: Bastien Montagne Date: Wed, 4 Oct 2017 12:38:40 +0200 Subject: Fix i18n messages extraction script, and a few more UI messages... --- source/blender/editors/sculpt_paint/paint_vertex_color_ops.c | 4 ++-- source/blender/makesrna/intern/rna_modifier.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'source') diff --git a/source/blender/editors/sculpt_paint/paint_vertex_color_ops.c b/source/blender/editors/sculpt_paint/paint_vertex_color_ops.c index 4acd4ddbd8d..bfe6373d106 100644 --- a/source/blender/editors/sculpt_paint/paint_vertex_color_ops.c +++ b/source/blender/editors/sculpt_paint/paint_vertex_color_ops.c @@ -190,7 +190,7 @@ void PAINT_OT_vertex_color_from_weight(wmOperatorType *ot) /* identifiers */ ot->name = "Vertex Color from Weight"; ot->idname = "PAINT_OT_vertex_color_from_weight"; - ot->description = "Converts active weight into greyscale vertex colors"; + ot->description = "Convert active weight into grey scale vertex colors"; /* api callback */ ot->exec = vertex_paint_from_weight_exec; @@ -571,4 +571,4 @@ void PAINT_OT_vertex_color_levels(wmOperatorType *ot) RNA_def_float(ot->srna, "gain", 1.0f, 0.0f, FLT_MAX, "Gain", "Value to multiply colors by", 0.0f, 10.0f); } -/** \} */ \ No newline at end of file +/** \} */ diff --git a/source/blender/makesrna/intern/rna_modifier.c b/source/blender/makesrna/intern/rna_modifier.c index 74aa3759d2d..a35d518b786 100644 --- a/source/blender/makesrna/intern/rna_modifier.c +++ b/source/blender/makesrna/intern/rna_modifier.c @@ -1997,8 +1997,8 @@ static void rna_def_modifier_boolean(BlenderRNA *brna) /* BMesh intersection options */ static EnumPropertyItem debug_items[] = { {eBooleanModifierBMeshFlag_BMesh_Separate, "SEPARATE", 0, "Separate", ""}, - {eBooleanModifierBMeshFlag_BMesh_NoDissolve, "NO_DISSOLVE", 0, "NoDissolve", ""}, - {eBooleanModifierBMeshFlag_BMesh_NoConnectRegions, "NO_CONNECT_REGIONS", 0, "NoConnectRegions", ""}, + {eBooleanModifierBMeshFlag_BMesh_NoDissolve, "NO_DISSOLVE", 0, "No Dissolve", ""}, + {eBooleanModifierBMeshFlag_BMesh_NoConnectRegions, "NO_CONNECT_REGIONS", 0, "No Connect Regions", ""}, {0, NULL, 0, NULL, NULL} }; -- cgit v1.2.3