[Bf-extensions-cvs] [78107f78] master: Cleanup/fixes in UI messages.

Bastien Montagne noreply at git.blender.org
Mon Aug 9 14:43:03 CEST 2021


Commit: 78107f78694f47ee6e50a7eb7c16b506af921199
Author: Bastien Montagne
Date:   Mon Aug 9 14:42:26 2021 +0200
Branches: master
https://developer.blender.org/rBA78107f78694f47ee6e50a7eb7c16b506af921199

Cleanup/fixes in UI messages.

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

M	io_scene_gltf2/__init__.py
M	object_print3d_utils/__init__.py
M	pose_library/operators.py

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

diff --git a/io_scene_gltf2/__init__.py b/io_scene_gltf2/__init__.py
index 92126ac9..ccb4517d 100755
--- a/io_scene_gltf2/__init__.py
+++ b/io_scene_gltf2/__init__.py
@@ -177,7 +177,7 @@ class ExportGLTF2_Base:
         name='Keep original',
         description=('Keep original textures files if possible. '
                      'WARNING: if you use more than one texture, '
-                     'where pbr standard requires only one, only one texture will be used.'
+                     'where pbr standard requires only one, only one texture will be used. '
                      'This can lead to unexpected results'
         ),
         default=False,
diff --git a/object_print3d_utils/__init__.py b/object_print3d_utils/__init__.py
index 01f8a1fa..80ddb64e 100644
--- a/object_print3d_utils/__init__.py
+++ b/object_print3d_utils/__init__.py
@@ -83,7 +83,7 @@ class SceneProperties(PropertyGroup):
         name="Data Layers",
         description=(
             "Export normals, UVs, vertex colors and materials for formats that support it "
-            "significantly increasing filesize"
+            "significantly increasing file size"
         ),
     )
     export_path: StringProperty(
diff --git a/pose_library/operators.py b/pose_library/operators.py
index 959c9f1a..c8c2c070 100644
--- a/pose_library/operators.py
+++ b/pose_library/operators.py
@@ -218,7 +218,7 @@ class POSELIB_OT_copy_as_asset(PoseAssetCreator, Operator):
 
         functions.asset_clear(context, asset)
         if asset.users > 0:
-            self.report({"ERROR"}, "Whaaaat who is using our brand new asset?")
+            self.report({"ERROR"}, "Unexpected non-null user count for the asset")
             return {"FINISHED"}
 
         bpy.data.actions.remove(asset)



More information about the Bf-extensions-cvs mailing list