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_import_images_as_planes.py
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_import_images_as_planes.py')
-rw-r--r--io_import_images_as_planes.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/io_import_images_as_planes.py b/io_import_images_as_planes.py
index 7c5c6fd1..28245cc1 100644
--- a/io_import_images_as_planes.py
+++ b/io_import_images_as_planes.py
@@ -228,14 +228,14 @@ class IMPORT_OT_image_to_plane(bpy.types.Operator, ImportHelper, AddObjectHelper
bl_idname = "import.image_to_plane"
bl_label = "Import Images as Planes"
bl_description = "Create mesh plane(s) from image files" \
- " with the appropiate aspect ratio."
+ " with the appropiate aspect ratio"
bl_options = {'REGISTER', 'UNDO'}
## OPTIONS ##
all_in_directory = BoolProperty(
name="All in directory",
description=("Import all image files (of the selected type) "
- "in this directory."),
+ "in this directory"),
default=False,
)
align = BoolProperty(
@@ -271,13 +271,13 @@ class IMPORT_OT_image_to_plane(bpy.types.Operator, ImportHelper, AddObjectHelper
)
extension = EnumProperty(
name="Extension",
- description="Only import files of this type.",
+ description="Only import files of this type",
items=extEnum)
use_dimension = BoolProperty(name="Use image dimensions",
- description="Use the images pixels to derive the size of the plane.",
+ description="Use the images pixels to derive the size of the plane",
default=False)
factor = IntProperty(name="Pixels/BU",
- description="Number of pixels per Blenderunit.",
+ description="Number of pixels per Blenderunit",
min=1,
default=500,
)
@@ -290,7 +290,7 @@ class IMPORT_OT_image_to_plane(bpy.types.Operator, ImportHelper, AddObjectHelper
)
use_transparency = BoolProperty(
name="Use alpha",
- description="Use alphachannel for transparency.",
+ description="Use alphachannel for transparency",
default=False,
)
tEnum = (