[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [56383] trunk/blender: Usual UI messages fixes...

Bastien Montagne montagne29 at wanadoo.fr
Mon Apr 29 16:09:20 CEST 2013


Revision: 56383
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=56383
Author:   mont29
Date:     2013-04-29 14:09:19 +0000 (Mon, 29 Apr 2013)
Log Message:
-----------
Usual UI messages fixes...

Modified Paths:
--------------
    trunk/blender/release/scripts/modules/bl_i18n_utils/utils_spell_check.py
    trunk/blender/release/scripts/startup/bl_operators/view3d.py
    trunk/blender/source/blender/makesrna/intern/rna_rigidbody.c

Modified: trunk/blender/release/scripts/modules/bl_i18n_utils/utils_spell_check.py
===================================================================
--- trunk/blender/release/scripts/modules/bl_i18n_utils/utils_spell_check.py	2013-04-29 13:26:43 UTC (rev 56382)
+++ trunk/blender/release/scripts/modules/bl_i18n_utils/utils_spell_check.py	2013-04-29 14:09:19 UTC (rev 56383)
@@ -135,6 +135,7 @@
         "resize",
         "restpose",
         "retarget", "retargets", "retargeting", "retargeted",
+        "rigidbody",
         "ringnoise",
         "rolloff",
         "runtime",

Modified: trunk/blender/release/scripts/startup/bl_operators/view3d.py
===================================================================
--- trunk/blender/release/scripts/startup/bl_operators/view3d.py	2013-04-29 13:26:43 UTC (rev 56382)
+++ trunk/blender/release/scripts/startup/bl_operators/view3d.py	2013-04-29 14:09:19 UTC (rev 56383)
@@ -93,8 +93,8 @@
 
 
 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(

Modified: trunk/blender/source/blender/makesrna/intern/rna_rigidbody.c
===================================================================
--- trunk/blender/source/blender/makesrna/intern/rna_rigidbody.c	2013-04-29 13:26:43 UTC (rev 56382)
+++ trunk/blender/source/blender/makesrna/intern/rna_rigidbody.c	2013-04-29 14:09:19 UTC (rev 56383)
@@ -603,7 +603,8 @@
 	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 {




More information about the Bf-blender-cvs mailing list