[Bf-extensions-cvs] [532f07f7] master: Fix several typos in UI messages.

Bastien Montagne noreply at git.blender.org
Mon Feb 17 13:01:01 CET 2020


Commit: 532f07f73213bf977019add824a81ec45bad3fc6
Author: Bastien Montagne
Date:   Mon Feb 17 13:00:47 2020 +0100
Branches: master
https://developer.blender.org/rBA532f07f73213bf977019add824a81ec45bad3fc6

Fix several typos in UI messages.

===================================================================

M	io_scene_fbx/__init__.py
M	io_scene_x3d/__init__.py
M	object_scatter/operator.py
M	render_freestyle_svg.py

===================================================================

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',
             )



More information about the Bf-extensions-cvs mailing list