From aeca473a4177e52c6d258f3307627169ef237170 Mon Sep 17 00:00:00 2001 From: Bastien Montagne Date: Tue, 21 Jan 2014 20:18:07 +0100 Subject: [PATCH] Usual UI messages fixes. --- release/scripts/modules/bl_i18n_utils/utils_spell_check.py | 3 +++ source/blender/editors/object/object_edit.c | 2 +- source/blender/makesrna/intern/rna_modifier.c | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) 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 d0cb97fc236..ec8c4fc81d0 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 3e3aedddb78..bccbb5a23b3 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 89fb24145a6..956df8a3d87 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);