Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Montagne <montagne29@wanadoo.fr>2013-04-29 18:09:19 +0400
committerBastien Montagne <montagne29@wanadoo.fr>2013-04-29 18:09:19 +0400
commit5c5ecc3465de40246469b667fb8c5eb813da34c7 (patch)
tree425c86a13331998829bbaa7fa3227e76453404da
parent903f9b98f5e5bd93938220e301b7f27d97d103aa (diff)
Usual UI messages fixes...
-rw-r--r--release/scripts/modules/bl_i18n_utils/utils_spell_check.py1
-rw-r--r--release/scripts/startup/bl_operators/view3d.py4
-rw-r--r--source/blender/makesrna/intern/rna_rigidbody.c3
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 {