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>2014-05-13 01:08:31 +0400
committerBastien Montagne <montagne29@wanadoo.fr>2014-05-13 01:08:31 +0400
commit1c2e6de9696d9300446ee6a856df9ab68b5dac1f (patch)
treea4a5077ed653e6d415468ac31d246c767bd27d59 /source/blender/editors
parent355709432e4a6d2c1888025d46672f5bd16ab815 (diff)
Usual typo and style fixes in UI messages...
Diffstat (limited to 'source/blender/editors')
-rw-r--r--source/blender/editors/object/object_bake_api.c4
-rw-r--r--source/blender/editors/space_nla/nla_channels.c3
2 files changed, 4 insertions, 3 deletions
diff --git a/source/blender/editors/object/object_bake_api.c b/source/blender/editors/object/object_bake_api.c
index 46555f89da9..9cacc0d4d23 100644
--- a/source/blender/editors/object/object_bake_api.c
+++ b/source/blender/editors/object/object_bake_api.c
@@ -798,11 +798,11 @@ static int bake(
margin, &bake->im_format, is_noncolor);
if (!ok) {
- BKE_reportf(reports, RPT_ERROR, "Problem saving baked map in \"%s\".", name);
+ BKE_reportf(reports, RPT_ERROR, "Problem saving baked map in \"%s\"", name);
op_result = OPERATOR_CANCELLED;
}
else {
- BKE_reportf(reports, RPT_INFO, "Baking map written to \"%s\".", name);
+ BKE_reportf(reports, RPT_INFO, "Baking map written to \"%s\"", name);
op_result = OPERATOR_FINISHED;
}
diff --git a/source/blender/editors/space_nla/nla_channels.c b/source/blender/editors/space_nla/nla_channels.c
index 16572f1790b..edd1a1fd6ed 100644
--- a/source/blender/editors/space_nla/nla_channels.c
+++ b/source/blender/editors/space_nla/nla_channels.c
@@ -460,7 +460,8 @@ static int nlachannels_pushdown_exec(bContext *C, wmOperator *op)
return OPERATOR_CANCELLED;
}
else if (nlaedit_is_tweakmode_on(&ac)) {
- BKE_report(op->reports, RPT_WARNING, "Cannot push down actions while tweaking a strip's action. Exit tweakmode first");
+ BKE_report(op->reports, RPT_WARNING,
+ "Cannot push down actions while tweaking a strip's action, exit tweak mode first");
return OPERATOR_CANCELLED;
}
else if (adt->action == NULL) {