Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/animation/anim_channels_defines.c
| Show First 20 Lines • Show All 4,931 Lines • ▼ Show 20 Lines | case ACHANNEL_SETTING_VISIBLE: /* visibility eyes */ | ||||
| if (ELEM(ale->type, ANIMTYPE_FCURVE, ANIMTYPE_NLACURVE)) { | if (ELEM(ale->type, ANIMTYPE_FCURVE, ANIMTYPE_NLACURVE)) { | ||||
| tooltip = TIP_("F-Curve visibility in Graph Editor"); | tooltip = TIP_("F-Curve visibility in Graph Editor"); | ||||
| } | } | ||||
| else if (ale->type == ANIMTYPE_GPLAYER) { | else if (ale->type == ANIMTYPE_GPLAYER) { | ||||
| tooltip = TIP_("Grease Pencil layer is visible in the viewport"); | tooltip = TIP_("Grease Pencil layer is visible in the viewport"); | ||||
| } | } | ||||
| else { | else { | ||||
| tooltip = TIP_("Channels are visible in Graph Editor for editing"); | tooltip = TIP_("Toggle visibility of Channels in Graph Editor for editing"); | ||||
| } | } | ||||
| break; | break; | ||||
| case ACHANNEL_SETTING_ALWAYS_VISIBLE: | case ACHANNEL_SETTING_ALWAYS_VISIBLE: | ||||
| icon = ICON_UNPINNED; | icon = ICON_UNPINNED; | ||||
| tooltip = TIP_("Display channel regardless of object selection"); | tooltip = TIP_("Display channel regardless of object selection"); | ||||
| break; | break; | ||||
| Show All 39 Lines | case ACHANNEL_SETTING_MUTE: /* muted speaker */ | ||||
| tooltip = TIP_("Does F-Curve contribute to result"); | tooltip = TIP_("Does F-Curve contribute to result"); | ||||
| } | } | ||||
| else if ((ac) && (ac->spacetype == SPACE_NLA) && (ale->type != ANIMTYPE_NLATRACK)) { | else if ((ac) && (ac->spacetype == SPACE_NLA) && (ale->type != ANIMTYPE_NLATRACK)) { | ||||
| tooltip = TIP_( | tooltip = TIP_( | ||||
| "Temporarily disable NLA stack evaluation (i.e. only the active action is evaluated)"); | "Temporarily disable NLA stack evaluation (i.e. only the active action is evaluated)"); | ||||
| } | } | ||||
| else if (ale->type == ANIMTYPE_GPLAYER) { | else if (ale->type == ANIMTYPE_GPLAYER) { | ||||
| tooltip = TIP_( | tooltip = TIP_( | ||||
| "Shows all keyframes during animation playback and enabled all frames for editing " | "Shows all keyframes during animation playback and enable all frames for editing " | ||||
sybren: To be consistent, either `Shows` should be `Show`, or `enable` should be `enables`. I think… | |||||
| "(uncheck to use only the current keyframe during animation playback and editing)"); | "(uncheck to use only the current keyframe during animation playback and editing)"); | ||||
| } | } | ||||
| else { | else { | ||||
| tooltip = TIP_("Do channels contribute to result (toggle channel muting)"); | tooltip = TIP_("Do channels contribute to result (toggle channel muting)"); | ||||
| } | } | ||||
| break; | break; | ||||
| case ACHANNEL_SETTING_PINNED: /* pin icon */ | case ACHANNEL_SETTING_PINNED: /* pin icon */ | ||||
| ▲ Show 20 Lines • Show All 548 Lines • Show Last 20 Lines | |||||
To be consistent, either Shows should be Show, or enable should be enables. I think Show would be better here.