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 <b.mont29@gmail.com>2020-02-17 15:00:47 +0300
committerBastien Montagne <b.mont29@gmail.com>2020-02-17 15:00:47 +0300
commit532f07f73213bf977019add824a81ec45bad3fc6 (patch)
tree23f133fbbbaa98739417003890b6392b3e79af5a
parent670da1eea44d27200c9bd1fb6aacac4cf5daa52f (diff)
Fix several typos in UI messages.
-rw-r--r--io_scene_fbx/__init__.py6
-rw-r--r--io_scene_x3d/__init__.py2
-rw-r--r--object_scatter/operator.py2
-rw-r--r--render_freestyle_svg.py4
4 files changed, 7 insertions, 7 deletions
diff --git a/io_scene_fbx/__init__.py b/io_scene_fbx/__init__.py
index 6678e1eb..f14666ed 100644
--- a/io_scene_fbx/__init__.py
+++ b/io_scene_fbx/__init__.py
@@ -21,7 +21,7 @@
bl_info = {
"name": "FBX format",
"author": "Campbell Barton, Bastien Montagne, Jens Restemeier",
- "version": (4, 20, 2),
+ "version": (4, 20, 3),
"blender": (2, 81, 6),
"location": "File > Import-Export",
"description": "FBX IO meshes, UV's, vertex colors, materials, textures, cameras, lamps and actions",
@@ -470,8 +470,8 @@ class ExportFBX(bpy.types.Operator, ExportHelper):
)
use_subsurf: BoolProperty(
name="Export Subdivision Surface",
- description="Export the last Catmull-Rom subidivion modifier as FBX subdivision "
- "(Does not apply the modifier even if 'Apply Modifiers' is enabled)",
+ description="Export the last Catmull-Rom subdivision modifier as FBX subdivision "
+ "(does not apply the modifier even if 'Apply Modifiers' is enabled)",
default=False,
)
use_mesh_edges: BoolProperty(
diff --git a/io_scene_x3d/__init__.py b/io_scene_x3d/__init__.py
index 16eba50a..9c50cbab 100644
--- a/io_scene_x3d/__init__.py
+++ b/io_scene_x3d/__init__.py
@@ -85,7 +85,7 @@ class ImportX3D(bpy.types.Operator, ImportHelper):
class X3D_PT_export_include(bpy.types.Panel):
bl_space_type = 'FILE_BROWSER'
bl_region_type = 'TOOL_PROPS'
- bl_label = "include"
+ bl_label = "Include"
bl_parent_id = "FILE_PT_operator"
@classmethod
diff --git a/object_scatter/operator.py b/object_scatter/operator.py
index a01ca765..c1cf0e13 100644
--- a/object_scatter/operator.py
+++ b/object_scatter/operator.py
@@ -55,7 +55,7 @@ class ScatterObjects(bpy.types.Operator):
self.objects_to_scatter = get_selected_non_active_objects(context)
if self.target_object is None or len(self.objects_to_scatter) == 0:
- self.report({'ERROR'}, "Select objects to scatter and a target object.")
+ self.report({'ERROR'}, "Select objects to scatter and a target object")
return {'CANCELLED'}
self.base_scale = get_max_object_side_length(self.objects_to_scatter)
diff --git a/render_freestyle_svg.py b/render_freestyle_svg.py
index 0061cc56..d0d6a479 100644
--- a/render_freestyle_svg.py
+++ b/render_freestyle_svg.py
@@ -240,11 +240,11 @@ class SVGExport(bpy.types.PropertyGroup):
default='FRAME',
)
line_join_type: EnumProperty(
- name="Linejoin",
+ name="Line Join",
items=(
('MITER', "Miter", "Corners are sharp", 0),
('ROUND', "Round", "Corners are smoothed", 1),
- ('BEVEL', "Bevel", "Corners are bevelled", 2),
+ ('BEVEL', "Bevel", "Corners are beveled", 2),
),
default='ROUND',
)