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:
authorBastien Montagne <montagne29@wanadoo.fr>2013-02-09 22:26:40 +0400
committerBastien Montagne <montagne29@wanadoo.fr>2013-02-09 22:26:40 +0400
commit82c86af7f7b37e940748e99efe3b19fd5b92d6ca (patch)
tree76699950d46a3084077ed71f3a95c2169d36d761 /source/blender/editors/io
parent1083a069004490b0ed8679679adb2a7ea881ba62 (diff)
Bunch of fixes for py ui messages (all those using 'formating' were not translated previously, now they use bpy.app.translations.pgettext). Also pleas avoid complex py statements in 'text' values (like 'text="foo" if cond else "bar"'), thes make message extraction script fails!
And another "final point in UI message" removal!
Diffstat (limited to 'source/blender/editors/io')
-rw-r--r--source/blender/editors/io/io_collada.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/source/blender/editors/io/io_collada.c b/source/blender/editors/io/io_collada.c
index 0982b4f034e..2004b18adf6 100644
--- a/source/blender/editors/io/io_collada.c
+++ b/source/blender/editors/io/io_collada.c
@@ -368,9 +368,8 @@ void WM_OT_collada_import(wmOperatorType *ot)
WM_operator_properties_filesel(ot, FOLDERFILE | COLLADAFILE, FILE_BLENDER, FILE_OPENFILE,
WM_FILESEL_FILEPATH, FILE_DEFAULTDISPLAY);
- RNA_def_boolean(ot->srna,
- "import_units", 0, "Import Units",
- "If enabled use Units as defined in Collada Import, else keep Blender's current Units settings. ");
+ RNA_def_boolean(ot->srna, "import_units", 0, "Import Units",
+ "If enabled use Units as defined in Collada Import, else keep Blender's current Units settings");
}
#endif