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
path: root/source
diff options
context:
space:
mode:
authorBastien Montagne <montagne29@wanadoo.fr>2017-10-04 13:38:40 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2017-10-04 13:39:06 +0300
commita22af1a84b3f15e300a1099cf4cc958d8abcc3dd (patch)
tree5d951f3976ead34bcc50974b81646ad5509e9b1f /source
parentb22b2c783daa22198b1268b0e4045c76877b5a35 (diff)
Fix i18n messages extraction script, and a few more UI messages...
Diffstat (limited to 'source')
-rw-r--r--source/blender/editors/sculpt_paint/paint_vertex_color_ops.c4
-rw-r--r--source/blender/makesrna/intern/rna_modifier.c4
2 files changed, 4 insertions, 4 deletions
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}
};