Skip to content

Commit

Permalink
Merge pull request #2062 from PiOverFour/main
Browse files Browse the repository at this point in the history
Fix a few typos
  • Loading branch information
julienduroure authored Nov 21, 2023
2 parents e2efa44 + 0463356 commit 230985d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions addons/io_scene_gltf2/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -365,13 +365,13 @@ def __init__(self):
export_unused_textures: BoolProperty(
name='Prepare Unused textures',
description=(
'Export image texture nodes not assigned to any material.'
'This feature is not standard, need an external extension to be included in the glTF file'
'Export image texture nodes not assigned to any material. '
'This feature is not standard and needs an external extension to be included in the glTF file'
),
default=False)

export_colors: BoolProperty(
name='dummy',
name='Dummy',
description='Keep for compatibility only',
default=True
)
Expand Down Expand Up @@ -535,7 +535,7 @@ def __init__(self):
export_armature_object_remove: BoolProperty(
name='Remove Armature Object',
description=(
'Remove Armature object if possible.'
'Remove Armature object if possible. '
'If Armature has multiple root bones, object will not be removed'
),
default=False
Expand Down Expand Up @@ -759,8 +759,8 @@ def __init__(self):
default=False)

export_hierarchy_full_collections: BoolProperty(
name='Full Collection hierarchy',
description='Export full hierarchy, including inbetween collection',
name='Full Collection Hierarchy',
description='Export full hierarchy, including intermediate collections',
default=False
)

Expand Down
2 changes: 1 addition & 1 deletion addons/io_scene_gltf2/blender/com/gltf2_blender_ui.py
Original file line number Diff line number Diff line change
Expand Up @@ -599,7 +599,7 @@ def draw(self, context):
row = col.column(align=True)
row.operator("scene.gltf2_action_filter_refresh", icon="FILE_REFRESH", text="")
else:
row.label(text="No Actions is .blend file")
row.label(text="No Actions in .blend file")

###############################################################################

Expand Down

0 comments on commit 230985d

Please sign in to comment.