From 4f247dba5ea99d9c3a3544c9dd302192cc1dab75 Mon Sep 17 00:00:00 2001 From: Yevgeny Makarov Date: Wed, 24 Feb 2021 13:25:44 -0600 Subject: 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 --- source/blender/editors/animation/anim_channels_edit.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/blender/editors/animation/anim_channels_edit.c') 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; -- cgit v1.2.3