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-09-19 19:08:06 +0400
committerBastien Montagne <montagne29@wanadoo.fr>2011-09-19 19:08:06 +0400
commit1d1482044b46c98f86c33945a1bd1cf4edc7bb36 (patch)
tree795f6b4344018f9193e6beb954d5c74396c19012 /io_scene_3ds
parent0dd81203a3982e55af012cfcc9a232c78ce631b9 (diff)
/trunk: Removed final points in UI strings and messages.
Plus a few styling enhancements. [[Split portion of a mixed commit.]]
Diffstat (limited to 'io_scene_3ds')
-rw-r--r--io_scene_3ds/__init__.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/io_scene_3ds/__init__.py b/io_scene_3ds/__init__.py
index 52289c37..aacb8ce2 100644
--- a/io_scene_3ds/__init__.py
+++ b/io_scene_3ds/__init__.py
@@ -61,22 +61,22 @@ 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 reacehs the " \
+ "size constraint. Zero Disables",
min=0.0, max=1000.0,
soft_min=0.0, soft_max=1000.0,
default=10.0,
)
use_image_search = BoolProperty(
name="Image Search",
- description=("Search subdirectories for any assosiated images "
- "(Warning, may be slow)"),
+ description="Search subdirectories for any assosiated images " \
+ "(Warning, may be slow)",
default=True,
)
use_apply_transform = BoolProperty(
name="Apply Transform",
- description=("Workaround for object transformations "
- "importing incorrectly"),
+ description="Workaround for object transformations " \
+ "importing incorrectly",
default=True,
)