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.
This commit is contained in:
Martin Nordholts 2009-05-18 19:12:23 +02:00
parent a6d8c7c5c4
commit b74bc2c97e

View file

@ -139,13 +139,13 @@ static const GimpEnumActionEntry file_save_actions[] =
GIMP_HELP_FILE_SAVE },
{ "file-export", NULL,
NC_("file-action", "Export..."), "<control>E",
NC_("file-action", "Export..."), "<control><shift>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"), "<control><shift>E",
NC_("file-action", "Export to"), "<control>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 }