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-02-24 22:04:10 +0400
committerBastien Montagne <montagne29@wanadoo.fr>2013-02-24 22:04:10 +0400
commitb2dcaf1b40c975812094707d6e79ccd238e7b422 (patch)
tree4de2a93f190ffd05887c1763ffa487d2285557bd /release
parentcfabd52d09b28d30148a9bad647c64b6b53c4041 (diff)
Some UI messages fixes...
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_operators/rigidbody.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/release/scripts/startup/bl_operators/rigidbody.py b/release/scripts/startup/bl_operators/rigidbody.py
index 2a19e222796..f327c602fb6 100644
--- a/release/scripts/startup/bl_operators/rigidbody.py
+++ b/release/scripts/startup/bl_operators/rigidbody.py
@@ -216,8 +216,8 @@ class ConnectRigidBodies(Operator):
connection_pattern = EnumProperty(
name="Connection Pattern",
description="Pattern used to connect objects",
- items=(('SELECTED_TO_ACTIVE', "Selected to Active", "Connects selected objects to the active object"),
- ('CHAIN_DISTANCE', "Chain by Distance", "Connects objects as a chain based on distance, starting at the active object")),
+ items=(('SELECTED_TO_ACTIVE', "Selected to Active", "Connect selected objects to the active object"),
+ ('CHAIN_DISTANCE', "Chain by Distance", "Connect objects as a chain based on distance, starting at the active object")),
default='SELECTED_TO_ACTIVE',)
@classmethod