From d290273a7016899f0a8114682c4d93b553a542ca Mon Sep 17 00:00:00 2001
From: Julien Duroure <julien.duroure@gmail.com>
Date: Fri, 8 Feb 2019 22:07:21 +0100
Subject: [PATCH] glTF: tweak some ops descriptions

---
 io_scene_gltf2/__init__.py | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/io_scene_gltf2/__init__.py b/io_scene_gltf2/__init__.py
index bcf6a5ebc..d5cde4783 100755
--- a/io_scene_gltf2/__init__.py
+++ b/io_scene_gltf2/__init__.py
@@ -156,7 +156,7 @@ class ExportGLTF2_Base:
 
     export_apply: BoolProperty(
         name='Apply Modifiers',
-        description='Apply modifiers to mesh objects',
+        description='Apply modifiers (excluding Armatures) to mesh objects',
         default=False
     )
 
@@ -424,7 +424,7 @@ class ExportGLTF2_Base:
 class ExportGLTF2(bpy.types.Operator, ExportGLTF2_Base, ExportHelper):
     """Export scene as glTF 2.0 file"""
     bl_idname = 'export_scene.gltf'
-    bl_label = 'Export glTF 2.0 (.glb/.gltf)'
+    bl_label = 'Export glTF 2.0'
 
     filename_ext = ''
 
@@ -437,7 +437,7 @@ def menu_func_export(self, context):
 
 class ImportGLTF2(Operator, ImportHelper):
     bl_idname = 'import_scene.gltf'
-    bl_label = 'Import glTF 2.0 (.glb/.gltf)'
+    bl_label = 'Import glTF 2.0'
 
     filter_glob: StringProperty(default="*.glb;*.gltf", options={'HIDDEN'})
 
-- 
GitLab