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 <bastien@blender.org>2021-08-09 15:42:26 +0300
committerBastien Montagne <bastien@blender.org>2021-08-09 15:42:26 +0300
commit78107f78694f47ee6e50a7eb7c16b506af921199 (patch)
tree5e98be9b3f15b180ec7d099647a676c3915277ce
parentd54fb366442e38c9a718ac55be08e0708de9afab (diff)
Cleanup/fixes in UI messages.
-rwxr-xr-xio_scene_gltf2/__init__.py2
-rw-r--r--object_print3d_utils/__init__.py2
-rw-r--r--pose_library/operators.py2
3 files changed, 3 insertions, 3 deletions
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)