From 5c5ecc3465de40246469b667fb8c5eb813da34c7 Mon Sep 17 00:00:00 2001 From: Bastien Montagne Date: Mon, 29 Apr 2013 14:09:19 +0000 Subject: Usual UI messages fixes... --- release/scripts/modules/bl_i18n_utils/utils_spell_check.py | 1 + release/scripts/startup/bl_operators/view3d.py | 4 ++-- source/blender/makesrna/intern/rna_rigidbody.c | 3 ++- 3 files changed, 5 insertions(+), 3 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 a943b352981..99f311bad11 100644 --- a/release/scripts/modules/bl_i18n_utils/utils_spell_check.py +++ b/release/scripts/modules/bl_i18n_utils/utils_spell_check.py @@ -135,6 +135,7 @@ class SpellChecker(): "resize", "restpose", "retarget", "retargets", "retargeting", "retargeted", + "rigidbody", "ringnoise", "rolloff", "runtime", diff --git a/release/scripts/startup/bl_operators/view3d.py b/release/scripts/startup/bl_operators/view3d.py index 7b6a761699e..8d5785cc55b 100644 --- a/release/scripts/startup/bl_operators/view3d.py +++ b/release/scripts/startup/bl_operators/view3d.py @@ -93,8 +93,8 @@ class VIEW3D_OT_edit_mesh_extrude_move(Operator): class VIEW3D_OT_select_or_deselect_all(Operator): - "Select element under the mouse, delect everything is there's nothing under the mouse" - bl_label = "Select or Delect All" + "Select element under the mouse, deselect everything is there's nothing under the mouse" + bl_label = "Select or Deselect All" bl_idname = "view3d.select_or_deselect_all" extend = BoolProperty( diff --git a/source/blender/makesrna/intern/rna_rigidbody.c b/source/blender/makesrna/intern/rna_rigidbody.c index add527efada..a4e02d6e835 100644 --- a/source/blender/makesrna/intern/rna_rigidbody.c +++ b/source/blender/makesrna/intern/rna_rigidbody.c @@ -603,7 +603,8 @@ static void rna_RigidBodyWorld_convex_sweep_test(RigidBodyWorld *rbw, ReportList if (rbw->physics_world != NULL && rob->physics_object != NULL) { RB_world_convex_sweep_test(rbw->physics_world, rob->physics_object, ray_start, ray_end, r_location, r_hitpoint, r_normal, r_hit); if (*r_hit == -2) { - BKE_report(reports, RPT_ERROR, "A non convex collision shape was passed to the function. Use only convex collision shapes."); + BKE_report(reports, RPT_ERROR, + "A non convex collision shape was passed to the function, use only convex collision shapes"); } } else { -- cgit v1.2.3