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:
authorSebastian Nell <codemanx@gmx.de>2012-03-29 17:56:08 +0400
committerSebastian Nell <codemanx@gmx.de>2012-03-29 17:56:08 +0400
commiteaf3dbcb2ce8c03b0085fd3cef9a74e4c091f504 (patch)
tree2df7c056d15ad67da84044de11073ab5ab6fe4b7 /io_scene_x3d
parentbdef8d94a1649ade5f7d51ff3f67ee594fbbd517 (diff)
VRML importer: changed VRML to VRML2 in UI 2 more times (bug #30624)
Diffstat (limited to 'io_scene_x3d')
-rw-r--r--io_scene_x3d/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/io_scene_x3d/__init__.py b/io_scene_x3d/__init__.py
index c94d3b7e..03d72842 100644
--- a/io_scene_x3d/__init__.py
+++ b/io_scene_x3d/__init__.py
@@ -19,7 +19,7 @@
# <pep8-80 compliant>
bl_info = {
- "name": "Web3D X3D/VRML format",
+ "name": "Web3D X3D/VRML2 format",
"author": "Campbell Barton, Bart",
"blender": (2, 5, 7),
"location": "File > Import-Export",
@@ -50,7 +50,7 @@ from bpy_extras.io_utils import (ImportHelper,
class ImportX3D(bpy.types.Operator, ImportHelper):
'''Import and X3D or VRML2 file'''
bl_idname = "import_scene.x3d"
- bl_label = "Import X3D/VRML"
+ bl_label = "Import X3D/VRML2"
bl_options = {'PRESET', 'UNDO'}
filename_ext = ".x3d"