From b74bc2c97e668d819873ef482ad88b1dfc5319f2 Mon Sep 17 00:00:00 2001 From: Martin Nordholts Date: Mon, 18 May 2009 19:12:23 +0200 Subject: [PATCH] app: Swap 'Export' and 'Export to' shortcuts Make Ctrl+E map to 'Export to' and Ctrl+Shift+E map to 'Export'. This is more in line with the our cousin applications. --- app/actions/file-actions.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/actions/file-actions.c b/app/actions/file-actions.c index 7e4d738e72..b5cabe5ec4 100644 --- a/app/actions/file-actions.c +++ b/app/actions/file-actions.c @@ -139,13 +139,13 @@ static const GimpEnumActionEntry file_save_actions[] = GIMP_HELP_FILE_SAVE }, { "file-export", NULL, - NC_("file-action", "Export..."), "E", + NC_("file-action", "Export..."), "E", NC_("file-action", "Export the image to various file formats such as PNG or JPEG"), GIMP_SAVE_MODE_EXPORT, FALSE, GIMP_HELP_FILE_EXPORT }, { "file-export-to", NULL, - NC_("file-action", "Export to"), "E", + NC_("file-action", "Export to"), "E", NC_("file-action", "Export the image back to the import source in the import format"), GIMP_SAVE_MODE_EXPORT_TO, FALSE, GIMP_HELP_FILE_EXPORT_TO }