diff --git a/app/actions/view-actions.c b/app/actions/view-actions.c index 0f3b1b2395..dfa8a504f1 100644 --- a/app/actions/view-actions.c +++ b/app/actions/view-actions.c @@ -146,7 +146,7 @@ static const GimpActionEntry view_actions[] = NC_("view-action", "Reset color management to what's configured in preferences"), view_color_management_reset_cmd_callback, - GIMP_HELP_VIEW_COLOR_MANAGEMENT }, + GIMP_HELP_VIEW_COLOR_MANAGEMENT_RESET }, { "view-shrink-wrap", GIMP_ICON_VIEW_SHRINK_WRAP, NC_("view-action", "Shrink _Wrap"), NULL, { "J", NULL }, @@ -183,21 +183,21 @@ static const GimpToggleActionEntry view_toggle_actions[] = NC_("view-action", "Use color management for this view"), view_color_management_enable_cmd_callback, TRUE, - GIMP_HELP_VIEW_COLOR_MANAGEMENT }, + GIMP_HELP_VIEW_COLOR_MANAGE_VIEW }, { "view-color-management-softproof", NULL, NC_("view-action", "_Proof Colors"), NULL, { NULL }, NC_("view-action", "Use this view for soft-proofing"), view_color_management_softproof_cmd_callback, FALSE, - GIMP_HELP_VIEW_COLOR_MANAGEMENT }, + GIMP_HELP_VIEW_SOFT_PROOF_VIEW }, { "view-display-black-point-compensation", NULL, NC_("view-action", "_Black Point Compensation"), NULL, { NULL }, NC_("view-action", "Use black point compensation for image display"), view_display_bpc_cmd_callback, TRUE, - GIMP_HELP_VIEW_COLOR_MANAGEMENT }, + GIMP_HELP_VIEW_SOFT_PROOF_BLACK_POINT }, { "view-softproof-gamut-check", NULL, NC_("view-action", "_Mark Out Of Gamut Colors"), NULL, { NULL }, @@ -205,7 +205,7 @@ static const GimpToggleActionEntry view_toggle_actions[] = "be represented in the target color space"), view_softproof_gamut_check_cmd_callback, FALSE, - GIMP_HELP_VIEW_COLOR_MANAGEMENT }, + GIMP_HELP_VIEW_MARK_OUT_OF_GAMUT }, { "view-show-selection", NULL, NC_("view-action", "Show _Selection"), NULL, { "T", NULL }, @@ -522,25 +522,25 @@ static const GimpRadioActionEntry view_display_intent_actions[] = NC_("view-action", "_Perceptual"), NULL, { NULL }, NC_("view-action", "Display rendering intent is perceptual"), GIMP_COLOR_RENDERING_INTENT_PERCEPTUAL, - GIMP_HELP_VIEW_COLOR_MANAGEMENT }, + GIMP_HELP_VIEW_SOFT_PROOF_RENDERING_INTENT }, { "view-display-intent-relative-colorimetric", NULL, NC_("view-action", "_Relative Colorimetric"), NULL, { NULL }, NC_("view-action", "Display rendering intent is relative colorimetric"), GIMP_COLOR_RENDERING_INTENT_RELATIVE_COLORIMETRIC, - GIMP_HELP_VIEW_COLOR_MANAGEMENT }, + GIMP_HELP_VIEW_SOFT_PROOF_RENDERING_INTENT }, { "view-display-intent-saturation", NULL, NC_("view-action", "_Saturation"), NULL, { NULL }, NC_("view-action", "Display rendering intent is saturation"), GIMP_COLOR_RENDERING_INTENT_SATURATION, - GIMP_HELP_VIEW_COLOR_MANAGEMENT }, + GIMP_HELP_VIEW_SOFT_PROOF_RENDERING_INTENT }, { "view-display-intent-absolute-colorimetric", NULL, NC_("view-action", "_Absolute Colorimetric"), NULL, { NULL }, NC_("view-action", "Display rendering intent is absolute colorimetric"), GIMP_COLOR_RENDERING_INTENT_ABSOLUTE_COLORIMETRIC, - GIMP_HELP_VIEW_COLOR_MANAGEMENT } + GIMP_HELP_VIEW_SOFT_PROOF_RENDERING_INTENT } }; static const GimpEnumActionEntry view_padding_color_actions[] = diff --git a/app/widgets/gimphelp-ids.h b/app/widgets/gimphelp-ids.h index 6dfaa9274b..7c92a5cce4 100644 --- a/app/widgets/gimphelp-ids.h +++ b/app/widgets/gimphelp-ids.h @@ -106,6 +106,12 @@ #define GIMP_HELP_VIEW_ROTATE_345 "gimp-view-rotate-345" #define GIMP_HELP_VIEW_ROTATE_OTHER "gimp-view-rotate-other" #define GIMP_HELP_VIEW_COLOR_MANAGEMENT "gimp-view-color-management" +#define GIMP_HELP_VIEW_COLOR_MANAGE_VIEW "gimp-view-color-manage-view" +#define GIMP_HELP_VIEW_SOFT_PROOF_VIEW "gimp-view-soft-proof-view" +#define GIMP_HELP_VIEW_SOFT_PROOF_RENDERING_INTENT "gimp-view-soft-proof-rendering-intent" +#define GIMP_HELP_VIEW_SOFT_PROOF_BLACK_POINT "gimp-view-soft-proof-black-point" +#define GIMP_HELP_VIEW_MARK_OUT_OF_GAMUT "gimp-view-soft-mark-out-of-gamut" +#define GIMP_HELP_VIEW_COLOR_MANAGEMENT_RESET "gimp-view-color-management-reset" #define GIMP_HELP_VIEW_SHOW_SELECTION "gimp-view-show-selection" #define GIMP_HELP_VIEW_SHOW_LAYER_BOUNDARY "gimp-view-show-layer-boundary" #define GIMP_HELP_VIEW_SHOW_CANVAS_BOUNDARY "gimp-view-show-canvas-boundary"