From 19cb2369551bcf26da46be44469d24638d71e4ae Mon Sep 17 00:00:00 2001 From: Jehan Date: Tue, 24 Jan 2023 18:54:29 +0100 Subject: [PATCH] Issue #8073: Crop can also be an extend. Rename "Crop to Selection" to "Resize Layers to Selection" since it's not necessarily a crop. The layer dimension can also grow now. Also specifying "Layers" because action titles can also be displayed off-context, such as in the action search, so we must be more detailed with our action titles. Similarly adding a "Layers" to "Crop to Content". --- app/actions/layers-actions.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/actions/layers-actions.c b/app/actions/layers-actions.c index 20cb884df5..9bf13e311b 100644 --- a/app/actions/layers-actions.c +++ b/app/actions/layers-actions.c @@ -247,13 +247,13 @@ static const GimpActionEntry layers_actions[] = GIMP_HELP_LAYER_SCALE }, { "layers-crop-to-selection", GIMP_ICON_TOOL_CROP, - NC_("layers-action", "_Crop to Selection"), NULL, - NC_("layers-action", "Crop the layers to the extents of the selection"), + NC_("layers-action", "_Resize Layers to Selection"), NULL, + NC_("layers-action", "Resize the layers to the extents of the selection"), layers_crop_to_selection_cmd_callback, GIMP_HELP_LAYER_CROP }, { "layers-crop-to-content", GIMP_ICON_TOOL_CROP, - NC_("layers-action", "Crop to C_ontent"), NULL, + NC_("layers-action", "Crop Layers to C_ontent"), NULL, NC_("layers-action", "Crop the layers to the extents of their content (remove empty borders from the layer)"), layers_crop_to_content_cmd_callback, GIMP_HELP_LAYER_CROP },