[Bf-blender-cvs] [42fca2f] master: Usual UI messages fixes...

Bastien Montagne noreply at git.blender.org
Mon Mar 31 21:16:46 CEST 2014


Commit: 42fca2f145b81d8b359164f17341bfc111360f22
Author: Bastien Montagne
Date:   Mon Mar 31 21:15:56 2014 +0200
https://developer.blender.org/rB42fca2f145b81d8b359164f17341bfc111360f22

Usual UI messages fixes...

===================================================================

M	release/scripts/modules/bl_i18n_utils/utils_spell_check.py
M	source/blender/editors/mask/mask_ops.c
M	source/blender/editors/object/object_random.c
M	source/blender/makesrna/intern/rna_curve.c

===================================================================

diff --git a/release/scripts/modules/bl_i18n_utils/utils_spell_check.py b/release/scripts/modules/bl_i18n_utils/utils_spell_check.py
index a87c567..6eb0f02 100644
--- a/release/scripts/modules/bl_i18n_utils/utils_spell_check.py
+++ b/release/scripts/modules/bl_i18n_utils/utils_spell_check.py
@@ -300,6 +300,7 @@ class SpellChecker():
         "numpad",
         "octree",
         "opengl",
+        "openmp",
         "polyline", "polylines",
         "pulldown", "pulldowns",
         "quantized",
diff --git a/source/blender/editors/mask/mask_ops.c b/source/blender/editors/mask/mask_ops.c
index b01bd9c..438853a 100644
--- a/source/blender/editors/mask/mask_ops.c
+++ b/source/blender/editors/mask/mask_ops.c
@@ -1027,7 +1027,7 @@ void MASK_OT_slide_point(wmOperatorType *ot)
 
 	RNA_def_boolean(ot->srna, "slide_feather", 0, "Slide Feather", "First try to slide feather instead of vertex");
 
-	prop = RNA_def_boolean(ot->srna, "is_new_point", 0, "Slide New Point", "Newly created vertex is being slided");
+	prop = RNA_def_boolean(ot->srna, "is_new_point", 0, "Slide New Point", "Newly created vertex is being slid");
 	RNA_def_property_flag(prop, PROP_SKIP_SAVE);
 }
 
diff --git a/source/blender/editors/object/object_random.c b/source/blender/editors/object/object_random.c
index 34ac169..41b26b9 100644
--- a/source/blender/editors/object/object_random.c
+++ b/source/blender/editors/object/object_random.c
@@ -139,8 +139,7 @@ void OBJECT_OT_vertex_random(struct wmOperatorType *ot)
 	ot->flag = OPTYPE_REGISTER | OPTYPE_UNDO;
 
 	/* props */
-	RNA_def_float(ot->srna, "offset",  0.1f, -FLT_MAX, FLT_MAX, "Ammount",
-	              "Distance to offset", -10.0f, 10.0f);
+	RNA_def_float(ot->srna, "offset",  0.1f, -FLT_MAX, FLT_MAX, "Amount", "Distance to offset", -10.0f, 10.0f);
 	RNA_def_float(ot->srna, "uniform",  0.0f, 0.0f, 1.0f, "Uniform",
 	              "Increase for uniform offset distance", 0.0f, 1.0f);
 	RNA_def_float(ot->srna, "normal",  0.0f, 0.0f, 1.0f, "normal",
diff --git a/source/blender/makesrna/intern/rna_curve.c b/source/blender/makesrna/intern/rna_curve.c
index 31709f9..43e50ed 100644
--- a/source/blender/makesrna/intern/rna_curve.c
+++ b/source/blender/makesrna/intern/rna_curve.c
@@ -1479,13 +1479,13 @@ static void rna_def_curve(BlenderRNA *brna)
 	prop = RNA_def_property(srna, "bevel_factor_mapping_start", PROP_ENUM, PROP_NONE);
 	RNA_def_property_enum_sdna(prop, NULL, "bevfac1_mapping");
 	RNA_def_property_enum_items(prop, bevfac_mapping_items);
-	RNA_def_property_ui_text(prop, "Start Mapping Type", "Determines how the start bevel factor is mappend to a spline");
+	RNA_def_property_ui_text(prop, "Start Mapping Type", "Determines how the start bevel factor is mapped to a spline");
 	RNA_def_property_update(prop, 0, "rna_Curve_update_data");
 
 	prop = RNA_def_property(srna, "bevel_factor_mapping_end", PROP_ENUM, PROP_NONE);
 	RNA_def_property_enum_sdna(prop, NULL, "bevfac2_mapping");
 	RNA_def_property_enum_items(prop, bevfac_mapping_items);
-	RNA_def_property_ui_text(prop, "End Mapping Type", "Determines how the end bevel factor is mappend to a spline");
+	RNA_def_property_ui_text(prop, "End Mapping Type", "Determines how the end bevel factor is mapped to a spline");
 	RNA_def_property_update(prop, 0, "rna_Curve_update_data");
 
 	/* XXX - would be nice to have a better way to do this, only add for testing. */




More information about the Bf-blender-cvs mailing list