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

Bastien Montagne noreply at git.blender.org
Tue Jan 21 20:18:00 CET 2014


Commit: aeca473a4177e52c6d258f3307627169ef237170
Author: Bastien Montagne
Date:   Tue Jan 21 20:18:07 2014 +0100
https://developer.blender.org/rBaeca473a4177e52c6d258f3307627169ef237170

Usual UI messages fixes.

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

M	release/scripts/modules/bl_i18n_utils/utils_spell_check.py
M	source/blender/editors/object/object_edit.c
M	source/blender/makesrna/intern/rna_modifier.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 d0cb97f..ec8c4fc 100644
--- a/release/scripts/modules/bl_i18n_utils/utils_spell_check.py
+++ b/release/scripts/modules/bl_i18n_utils/utils_spell_check.py
@@ -63,6 +63,7 @@ class SpellChecker():
         "autoexec",
         "autoexecution",
         "autoname",
+        "autopack",
         "autosave",
         "autoscale",
         "autosmooth",
@@ -278,6 +279,7 @@ class SpellChecker():
         "xy", "xz", "yx", "yz", "zx", "zy",
 
         # General computer/science terms
+        "bitangent",
         "boid", "boids",
         "equisolid",
         "euler", "eulers",
@@ -438,6 +440,7 @@ class SpellChecker():
         "hosek",
         "kutta",
         "lennard",
+        "mikktspace",
         "minkowski",
         "minnaert",
         "musgrave",
diff --git a/source/blender/editors/object/object_edit.c b/source/blender/editors/object/object_edit.c
index 3e3aedd..bccbb5a 100644
--- a/source/blender/editors/object/object_edit.c
+++ b/source/blender/editors/object/object_edit.c
@@ -1381,7 +1381,7 @@ static int shade_smooth_exec(bContext *C, wmOperator *op)
 	CTX_DATA_END;
 
 	if (linked_data)
-		BKE_report(op->reports, RPT_WARNING, "Can't edit linked mesh or curve data.");
+		BKE_report(op->reports, RPT_WARNING, "Can't edit linked mesh or curve data");
 
 	return (done) ? OPERATOR_FINISHED : OPERATOR_CANCELLED;
 }
diff --git a/source/blender/makesrna/intern/rna_modifier.c b/source/blender/makesrna/intern/rna_modifier.c
index 89fb241..956df8a 100644
--- a/source/blender/makesrna/intern/rna_modifier.c
+++ b/source/blender/makesrna/intern/rna_modifier.c
@@ -3796,7 +3796,7 @@ static void rna_def_modifier_wireframe(BlenderRNA *brna)
 	RNA_def_property_float_sdna(prop, NULL, "crease_weight");
 	RNA_def_property_range(prop, -FLT_MAX, FLT_MAX);
 	RNA_def_property_ui_range(prop, 0.0f, 1.0f, 0.1, 1);
-	RNA_def_property_ui_text(prop, "Weigth", "Crease weight (if active)");
+	RNA_def_property_ui_text(prop, "Weight", "Crease weight (if active)");
 	RNA_def_property_update(prop, 0, "rna_Modifier_update");
 
 	prop = RNA_def_property(srna, "material_offset", PROP_INT, PROP_NONE);




More information about the Bf-blender-cvs mailing list