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 <bastien@blender.org>2020-12-07 12:57:08 +0300
committerBastien Montagne <bastien@blender.org>2020-12-07 12:57:27 +0300
commit2072134faadf4fd901c88ed7440e2289d61e0299 (patch)
tree418ebfecf1fa54237454d76bd303db390a65a8b8 /source/blender/editors/space_graph/graph_edit.c
parent7d2745f8b3bf2db6edcf6af388ef4958ebd2f1b8 (diff)
UI: Fix mistakes in UI messages.
Diffstat (limited to 'source/blender/editors/space_graph/graph_edit.c')
-rw-r--r--source/blender/editors/space_graph/graph_edit.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/editors/space_graph/graph_edit.c b/source/blender/editors/space_graph/graph_edit.c
index 1647fd4a6a6..ae34cd6cf6d 100644
--- a/source/blender/editors/space_graph/graph_edit.c
+++ b/source/blender/editors/space_graph/graph_edit.c
@@ -1903,7 +1903,7 @@ static int graphkeys_euler_filter_exec(bContext *C, wmOperator *op)
if (curves_seen < 3) {
/* Showing the entire error message makes no sense when the artist is only trying to filter
* one or two curves. */
- BKE_report(op->reports, RPT_WARNING, "No Euler Rotations could be corrected.");
+ BKE_report(op->reports, RPT_WARNING, "No Euler Rotations could be corrected");
}
else {
BKE_report(op->reports,
@@ -1919,15 +1919,15 @@ static int graphkeys_euler_filter_exec(bContext *C, wmOperator *op)
BLI_assert(curves_filtered < curves_seen);
BKE_reportf(op->reports,
RPT_INFO,
- "%d of %d rotation channels were filtered. See the Info window for details.",
+ "%d of %d rotation channels were filtered (see the Info window for details)",
curves_filtered,
curves_seen);
}
else if (curves_seen == 1) {
- BKE_report(op->reports, RPT_INFO, "The rotation channel was filtered.");
+ BKE_report(op->reports, RPT_INFO, "The rotation channel was filtered");
}
else {
- BKE_reportf(op->reports, RPT_INFO, "All %d rotation channels were filtered.", curves_seen);
+ BKE_reportf(op->reports, RPT_INFO, "All %d rotation channels were filtered", curves_seen);
}
/* Set notifier that keyframes have changed. */