From da6d6f99a88eb2e87ed57b7dd6ccb06e8c28ed7f Mon Sep 17 00:00:00 2001 From: James Date: Tue, 4 Oct 2022 12:18:45 +0200 Subject: Animation: Update tooltips to be more readable Change some wording of tooltips for readability, in animation-related areas (drivers, keying sets, animation channel visibility). Reviewed By: sybren Differential Revision: https://developer.blender.org/D16131 --- source/blender/editors/animation/anim_channels_defines.c | 4 ++-- source/blender/editors/animation/anim_channels_edit.c | 2 +- source/blender/editors/animation/drivers.c | 6 +++--- source/blender/editors/animation/keyingsets.c | 12 ++++++------ 4 files changed, 12 insertions(+), 12 deletions(-) (limited to 'source/blender/editors') diff --git a/source/blender/editors/animation/anim_channels_defines.c b/source/blender/editors/animation/anim_channels_defines.c index 58bcf0efea8..3a82143cfdf 100644 --- a/source/blender/editors/animation/anim_channels_defines.c +++ b/source/blender/editors/animation/anim_channels_defines.c @@ -4937,7 +4937,7 @@ static void draw_setting_widget(bAnimContext *ac, tooltip = TIP_("Grease Pencil layer is visible in the viewport"); } else { - tooltip = TIP_("Channels are visible in Graph Editor for editing"); + tooltip = TIP_("Toggle visibility of Channels in Graph Editor for editing"); } break; @@ -4993,7 +4993,7 @@ static void draw_setting_widget(bAnimContext *ac, } else if (ale->type == ANIMTYPE_GPLAYER) { tooltip = TIP_( - "Shows all keyframes during animation playback and enabled all frames for editing " + "Show all keyframes during animation playback and enable all frames for editing " "(uncheck to use only the current keyframe during animation playback and editing)"); } else { diff --git a/source/blender/editors/animation/anim_channels_edit.c b/source/blender/editors/animation/anim_channels_edit.c index 7402e1efa53..e86e1f16e54 100644 --- a/source/blender/editors/animation/anim_channels_edit.c +++ b/source/blender/editors/animation/anim_channels_edit.c @@ -2534,7 +2534,7 @@ static void ANIM_OT_channels_fcurves_enable(wmOperatorType *ot) /* identifiers */ ot->name = "Revive Disabled F-Curves"; ot->idname = "ANIM_OT_channels_fcurves_enable"; - ot->description = "Clears 'disabled' tag from all F-Curves to get broken F-Curves working again"; + ot->description = "Clear 'disabled' tag from all F-Curves to get broken F-Curves working again"; /* api callbacks */ ot->exec = animchannels_enable_exec; diff --git a/source/blender/editors/animation/drivers.c b/source/blender/editors/animation/drivers.c index 63794caf5a7..db8088f78bb 100644 --- a/source/blender/editors/animation/drivers.c +++ b/source/blender/editors/animation/drivers.c @@ -1126,7 +1126,7 @@ void ANIM_OT_driver_button_remove(wmOperatorType *ot) ot->name = "Remove Driver"; ot->idname = "ANIM_OT_driver_button_remove"; ot->description = - "Remove the driver(s) for the property(s) connected represented by the highlighted button"; + "Remove the driver(s) for the connected property(s) represented by the highlighted button"; /* callbacks */ ot->exec = remove_driver_button_exec; @@ -1163,7 +1163,7 @@ void ANIM_OT_driver_button_edit(wmOperatorType *ot) ot->name = "Edit Driver"; ot->idname = "ANIM_OT_driver_button_edit"; ot->description = - "Edit the drivers for the property connected represented by the highlighted button"; + "Edit the drivers for the connected property represented by the highlighted button"; /* callbacks */ ot->exec = edit_driver_button_exec; @@ -1257,7 +1257,7 @@ void ANIM_OT_paste_driver_button(wmOperatorType *ot) /* identifiers */ ot->name = "Paste Driver"; ot->idname = "ANIM_OT_paste_driver_button"; - ot->description = "Paste the driver in the copy/paste buffer for the highlighted button"; + ot->description = "Paste the driver in the clipboard to the highlighted button"; /* callbacks */ ot->exec = paste_driver_button_exec; diff --git a/source/blender/editors/animation/keyingsets.c b/source/blender/editors/animation/keyingsets.c index 97e90af019b..f9feac9c7f6 100644 --- a/source/blender/editors/animation/keyingsets.c +++ b/source/blender/editors/animation/keyingsets.c @@ -120,7 +120,7 @@ void ANIM_OT_keying_set_add(wmOperatorType *ot) /* identifiers */ ot->name = "Add Empty Keying Set"; ot->idname = "ANIM_OT_keying_set_add"; - ot->description = "Add a new (empty) Keying Set to the active Scene"; + ot->description = "Add a new (empty) keying set to the active Scene"; /* callbacks */ ot->exec = add_default_keyingset_exec; @@ -168,7 +168,7 @@ void ANIM_OT_keying_set_remove(wmOperatorType *ot) /* identifiers */ ot->name = "Remove Active Keying Set"; ot->idname = "ANIM_OT_keying_set_remove"; - ot->description = "Remove the active Keying Set"; + ot->description = "Remove the active keying set"; /* callbacks */ ot->exec = remove_active_keyingset_exec; @@ -211,7 +211,7 @@ void ANIM_OT_keying_set_path_add(wmOperatorType *ot) /* identifiers */ ot->name = "Add Empty Keying Set Path"; ot->idname = "ANIM_OT_keying_set_path_add"; - ot->description = "Add empty path to active Keying Set"; + ot->description = "Add empty path to active keying set"; /* callbacks */ ot->exec = add_empty_ks_path_exec; @@ -254,7 +254,7 @@ void ANIM_OT_keying_set_path_remove(wmOperatorType *ot) /* identifiers */ ot->name = "Remove Active Keying Set Path"; ot->idname = "ANIM_OT_keying_set_path_remove"; - ot->description = "Remove active Path from active Keying Set"; + ot->description = "Remove active Path from active keying set"; /* callbacks */ ot->exec = remove_active_ks_path_exec; @@ -429,7 +429,7 @@ static int remove_keyingset_button_exec(bContext *C, wmOperator *op) WM_event_add_notifier(C, NC_SCENE | ND_KEYINGSET, NULL); /* show warning */ - BKE_report(op->reports, RPT_INFO, "Property removed from Keying Set"); + BKE_report(op->reports, RPT_INFO, "Property removed from keying set"); } return (changed) ? OPERATOR_FINISHED : OPERATOR_CANCELLED; @@ -491,7 +491,7 @@ void ANIM_OT_keying_set_active_set(wmOperatorType *ot) /* identifiers */ ot->name = "Set Active Keying Set"; ot->idname = "ANIM_OT_keying_set_active_set"; - ot->description = "Select a new keying set as the active one"; + ot->description = "Set a new active keying set"; /* callbacks */ ot->invoke = keyingset_active_menu_invoke; -- cgit v1.2.3