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>2015-03-04 01:42:17 +0300
committerGaia Clary <gaia.clary@machinimatrix.org>2015-03-04 01:42:33 +0300
commit85c38e73895eb9de211cabc527ca41bb3e3c8e8f (patch)
tree1af6ff66565ac32775be490ff5408049a72f3146 /source/blender/editors/io
parent7f25da650943aa24d7f851552c1a9741b0ba6891 (diff)
Fixed wrong label and hint text in Collada exporter
Diffstat (limited to 'source/blender/editors/io')
-rw-r--r--source/blender/editors/io/io_collada.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/editors/io/io_collada.c b/source/blender/editors/io/io_collada.c
index 491152b02e5..93e9a204704 100644
--- a/source/blender/editors/io/io_collada.c
+++ b/source/blender/editors/io/io_collada.c
@@ -327,11 +327,11 @@ void WM_OT_collada_export(wmOperatorType *ot)
"Only export deforming bones with armatures");
- RNA_def_boolean(ot->srna, "active_uv_only", 0, "Only Active UV layer",
- "Export textures assigned to the object UV maps");
+ RNA_def_boolean(ot->srna, "active_uv_only", 0, "Only Selected UV Map",
+ "Export only the selected UV Map");
RNA_def_boolean(ot->srna, "include_uv_textures", 0, "Include UV Textures",
- "Export textures assigned to the object UV maps");
+ "Export textures assigned to the object UV Maps");
RNA_def_boolean(ot->srna, "include_material_textures", 0, "Include Material Textures",
"Export textures assigned to the object Materials");