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

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Montagne <montagne29@wanadoo.fr>2011-11-22 04:10:14 +0400
committerBastien Montagne <montagne29@wanadoo.fr>2011-11-22 04:10:14 +0400
commit12e0f2248f7cb47e928d83dd79670d4d13a26b05 (patch)
tree37b8ce936d4388852d550104e8c20f3c78aa60c5
parentd8cf638312a49a228f2d0392ac9c9a699cdbb1e5 (diff)
More UI messages fixes and tweaks (found while translating in french).
-rw-r--r--mocap/__init__.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/mocap/__init__.py b/mocap/__init__.py
index a9cfbe1d..931f94e9 100644
--- a/mocap/__init__.py
+++ b/mocap/__init__.py
@@ -92,12 +92,12 @@ class MocapConstraint(bpy.types.PropertyGroup):
update=mocap_constraints.setConstraint)
smooth_in = IntProperty(name="In",
default=10,
- description="Amount of frames to smooth in",
+ description="Number of frames to smooth in",
update=mocap_constraints.setConstraint,
min=0)
smooth_out = IntProperty(name="Out",
default=10,
- description="Amount of frames to smooth out",
+ description="Number of frames to smooth out",
update=mocap_constraints.setConstraint,
min=0)
targetMesh = StringProperty(name="Mesh",
@@ -888,7 +888,7 @@ def register():
#frame step - frequency of frames to retarget. Skipping is useful for previewing, faster work etc.
bpy.types.Armature.frameStep = IntProperty(name="Frame Skip",
default=1,
- description="Amount of frames to skip - for previewing retargets quickly (1 is fully sampled)",
+ description="Number of frames to skip - for previewing retargets quickly (1 is fully sampled)",
min=1)
bpy.utils.register_module(__name__)