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-11 22:47:06 +0400
committerBastien Montagne <montagne29@wanadoo.fr>2013-02-11 22:47:06 +0400
commitb063bdbb5ff78b484d60f5ac517d126c244f0235 (patch)
treedbb71c4b61d07a67c9d8a6aec616947675940194 /source/blender/editors/io
parent8997e5ae0676382b7f2afb59d04819f4c926a330 (diff)
Please stop adding points in tooltips, unless it is absolutely necessary! Commas, parenthesis, en quads, etc., do exist!
I took time to add basics about our UI messages conventions in blender code style guide (http://wiki.blender.org/index.php/Dev:Doc/CodeStyle#UI_Messages), so I’d like to stop wasting time over such stupid things. Especially when I alredy did it one day ago!
Diffstat (limited to 'source/blender/editors/io')
-rw-r--r--source/blender/editors/io/io_collada.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/io/io_collada.c b/source/blender/editors/io/io_collada.c
index ca74d7aea57..7703a8638c9 100644
--- a/source/blender/editors/io/io_collada.c
+++ b/source/blender/editors/io/io_collada.c
@@ -368,8 +368,8 @@ void WM_OT_collada_import(wmOperatorType *ot)
RNA_def_boolean(ot->srna,
"import_units", 0, "Import Units",
- "If disabled match import to Blender's current Unit settings. "
- "Otherwise use the settings from the Imported scene");
+ "If disabled match import to Blender's current Unit settings, "
+ "otherwise use the settings from the Imported scene");
}
#endif