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:
authorYevgeny Makarov <jenkm>2021-02-24 22:25:44 +0300
committerHans Goudey <h.goudey@me.com>2021-02-24 22:25:44 +0300
commit4f247dba5ea99d9c3a3544c9dd302192cc1dab75 (patch)
tree93bd7b29e7769d1daa56a0eeade3f1e0c0320880 /source/blender/editors/animation/anim_channels_edit.c
parent9a1b29e16c216c2827f28214d4f7af4ee072beec (diff)
UI: Cleanup and fix labels and descriptions in various places
Changes include using proper and consistent grammar, simplifying phrasing, using correct terminology, and not including python API identifiers in tooltips. Differential Revision: https://developer.blender.org/D9924
Diffstat (limited to 'source/blender/editors/animation/anim_channels_edit.c')
-rw-r--r--source/blender/editors/animation/anim_channels_edit.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/animation/anim_channels_edit.c b/source/blender/editors/animation/anim_channels_edit.c
index 109cf79c786..38820e05869 100644
--- a/source/blender/editors/animation/anim_channels_edit.c
+++ b/source/blender/editors/animation/anim_channels_edit.c
@@ -2284,7 +2284,7 @@ static void ANIM_OT_channels_expand(wmOperatorType *ot)
/* identifiers */
ot->name = "Expand Channels";
ot->idname = "ANIM_OT_channels_expand";
- ot->description = "Expand (i.e. open) all selected expandable animation channels";
+ ot->description = "Expand (open) all selected expandable animation channels";
/* api callbacks */
ot->exec = animchannels_expand_exec;
@@ -2329,7 +2329,7 @@ static void ANIM_OT_channels_collapse(wmOperatorType *ot)
/* identifiers */
ot->name = "Collapse Channels";
ot->idname = "ANIM_OT_channels_collapse";
- ot->description = "Collapse (i.e. close) all selected expandable animation channels";
+ ot->description = "Collapse (close) all selected expandable animation channels";
/* api callbacks */
ot->exec = animchannels_collapse_exec;