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 17:07:24 +0400
committerBastien Montagne <montagne29@wanadoo.fr>2014-05-13 17:07:24 +0400
commit2149886033cd2d2e505f28446dad3d8f2bd8d83c (patch)
treec68122f7e54b02019d9808cfefcd9c4a5b47eb4f /source/blender/editors/space_nla
parentb12bf2216f1727250032a44237b3476ffec75e45 (diff)
More UI messages fixes and tweaks.
Diffstat (limited to 'source/blender/editors/space_nla')
-rw-r--r--source/blender/editors/space_nla/nla_channels.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/editors/space_nla/nla_channels.c b/source/blender/editors/space_nla/nla_channels.c
index edd1a1fd6ed..3c8518cdb28 100644
--- a/source/blender/editors/space_nla/nla_channels.c
+++ b/source/blender/editors/space_nla/nla_channels.c
@@ -416,8 +416,8 @@ static int nlachannels_pushdown_exec(bContext *C, wmOperator *op)
/* active animdata block */
if (nla_panel_context(C, &adt_ptr, NULL, NULL) == 0 || (adt_ptr.data == NULL)) {
- BKE_report(op->reports, RPT_ERROR, "No active AnimData block to use. "
- "Select a datablock expander first or set the appropriate flags on an AnimData block");
+ BKE_report(op->reports, RPT_ERROR, "No active AnimData block to use "
+ "(select a datablock expander first or set the appropriate flags on an AnimData block)");
return OPERATOR_CANCELLED;
}
else {
@@ -437,12 +437,12 @@ static int nlachannels_pushdown_exec(bContext *C, wmOperator *op)
/* get channel from index */
ale = BLI_findlink(&anim_data, channel_index);
if (ale == NULL) {
- BKE_reportf(op->reports, RPT_ERROR, "No animation channel found at index = %d", channel_index);
+ BKE_reportf(op->reports, RPT_ERROR, "No animation channel found at index %d", channel_index);
BLI_freelistN(&anim_data);
return OPERATOR_CANCELLED;
}
else if (ale->type != ANIMTYPE_NLAACTION) {
- BKE_reportf(op->reports, RPT_ERROR, "Animation channel at index = %d is not a NLA 'Active Action' channel", channel_index);
+ BKE_reportf(op->reports, RPT_ERROR, "Animation channel at index %d is not a NLA 'Active Action' channel", channel_index);
BLI_freelistN(&anim_data);
return OPERATOR_CANCELLED;
}