Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGaia Clary <gaia.clary@machinimatrix.org>2012-05-20 21:40:57 +0400
committerGaia Clary <gaia.clary@machinimatrix.org>2012-05-20 21:40:57 +0400
commitbaef07c22911934d70d4bcb78b32b769279d8fae (patch)
tree5248d46dad3461aca38fde6d7b6986423068b225 /release/scripts/startup/bl_ui/space_info.py
parentcd1f8200de6f7f68e837439acf20fc43b9c2c4a1 (diff)
Renamed the COLLADA Import/export labels to 'Collada (Default)' to make it better separatable from target specific exporters
Diffstat (limited to 'release/scripts/startup/bl_ui/space_info.py')
-rw-r--r--release/scripts/startup/bl_ui/space_info.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/release/scripts/startup/bl_ui/space_info.py b/release/scripts/startup/bl_ui/space_info.py
index 0c38829b54f..9cf4a337483 100644
--- a/release/scripts/startup/bl_ui/space_info.py
+++ b/release/scripts/startup/bl_ui/space_info.py
@@ -156,7 +156,7 @@ class INFO_MT_file_import(Menu):
def draw(self, context):
if hasattr(bpy.types, "WM_OT_collada_import"):
- self.layout.operator("wm.collada_import", text="COLLADA (.dae)")
+ self.layout.operator("wm.collada_import", text="Collada (Default) (.dae)")
class INFO_MT_file_export(Menu):
@@ -165,7 +165,7 @@ class INFO_MT_file_export(Menu):
def draw(self, context):
if hasattr(bpy.types, "WM_OT_collada_export"):
- self.layout.operator("wm.collada_export", text="COLLADA (.dae)")
+ self.layout.operator("wm.collada_export", text="Collada (Default) (.dae)")
class INFO_MT_file_external_data(Menu):