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>2012-04-14 19:44:54 +0400
committerBastien Montagne <montagne29@wanadoo.fr>2012-04-14 19:44:54 +0400
commit02660906ec56fedb8f97a6b30170152134594362 (patch)
treed913ca7afd8c302bfc0975c26ee3d6ebc545ed5f
parent1f7f5bab1d661671edf851880b69ad33ad29852e (diff)
Fixed some UI message typos (spotted by Leon Cheung, thx).
-rw-r--r--io_import_scene_dxf.py2
-rw-r--r--io_scene_3ds/__init__.py4
-rw-r--r--mocap/__init__.py4
3 files changed, 5 insertions, 5 deletions
diff --git a/io_import_scene_dxf.py b/io_import_scene_dxf.py
index 80acbd8a..406063bb 100644
--- a/io_import_scene_dxf.py
+++ b/io_import_scene_dxf.py
@@ -2471,7 +2471,7 @@ class IMPORT_OT_autocad_dxf(bpy.types.Operator):
)
circleResolution = IntProperty(
name="Circle resolution",
- description="Circle/Arc are aproximated with this factor",
+ description="Circle/Arc are approximated with this factor",
default=theCircleRes,
min=4,
soft_min=4,
diff --git a/io_scene_3ds/__init__.py b/io_scene_3ds/__init__.py
index 8c9ee3bc..e0470d36 100644
--- a/io_scene_3ds/__init__.py
+++ b/io_scene_3ds/__init__.py
@@ -60,8 +60,8 @@ class Import3DS(bpy.types.Operator, ImportHelper):
constrain_size = FloatProperty(
name="Size Constraint",
- description="Scale the model by 10 until it reacehs the " \
- "size constraint. Zero Disables",
+ description="Scale the model by 10 until it reaches the " \
+ "size constraint (0 to disable)",
min=0.0, max=1000.0,
soft_min=0.0, soft_max=1000.0,
default=10.0,
diff --git a/mocap/__init__.py b/mocap/__init__.py
index 70fb4c6e..dd82019e 100644
--- a/mocap/__init__.py
+++ b/mocap/__init__.py
@@ -145,7 +145,7 @@ class AnimationStitchSettings(bpy.types.PropertyGroup):
blend_frame = IntProperty(name="Stitch frame",
description="Frame to locate stitch on")
blend_amount = IntProperty(name="Blend amount",
- description="Size of blending transitiion, on both sides of the stitch",
+ description="Size of blending transition, on both sides of the stitch",
default=10)
second_offset = IntProperty(name="Second offset",
description="Frame offset for 2nd animation, where it should start",
@@ -648,7 +648,7 @@ class OBJECT_OT_RotateFixArmature(bpy.types.Operator):
class OBJECT_OT_ScaleFixArmature(bpy.types.Operator):
#Operator to scale down the selected armature to match the active one
- '''Rescale selected armature to match the active animation, for convienence'''
+ '''Rescale selected armature to match the active animation, for convenience'''
bl_idname = "mocap.scale_fix"
bl_label = "Scale performer armature to match target armature"