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:
authorMatt Ebb <matt@mke3.net>2004-06-11 06:12:37 +0400
committerMatt Ebb <matt@mke3.net>2004-06-11 06:12:37 +0400
commitd34f89b755e17a7080d18d620b1900d01fb7482e (patch)
treecbd08cee60166290225b4e3c2cc47a3cee0ee6d4 /release/scripts/radiosity_export.py
parenta23c6a71da4feea2e036928d260630cb26854ab1 (diff)
* Edited and consistent-ified the File->Import menu item labels and fileselect button labels, as discussed on the forums.
* Added items for importing DXF, VRML, etc. in the File->Import menu, that just call the normal Open function. Most people don't even know that you can open these formats through the normal Open fileselect, so this will make it more obvious. * Removed the 'Export Selected' menu, and put poor old lonely STL in the Import and Export menus too. Most of the exporters export only the selected object anyway, so it's not really a necessary distinction to make.
Diffstat (limited to 'release/scripts/radiosity_export.py')
-rw-r--r--release/scripts/radiosity_export.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/release/scripts/radiosity_export.py b/release/scripts/radiosity_export.py
index 85b8ae8e598..48b315eaf63 100644
--- a/release/scripts/radiosity_export.py
+++ b/release/scripts/radiosity_export.py
@@ -1,10 +1,10 @@
#!BPY
"""
-Name: 'Radiosity...'
+Name: 'Radiosity (.radio)...'
Blender: 232
Group: 'Export'
-Tooltip: 'Export selected mesh (with vertex colors) to Radiosity File Format (*.radio)'
+Tooltip: 'Export selected mesh (with vertex colors) to Radiosity File Format (.radio)'
"""
# $Id$
@@ -90,4 +90,4 @@ def fs_callback(filename):
if filename.find('.radio', -6) <= 0: filename += '.radio'
write(filename)
-Blender.Window.FileSelector(fs_callback, "Radio Export")
+Blender.Window.FileSelector(fs_callback, "Export Radio")