From 9ae0dc034b7791c15479649f71ef4cda8caaf34e Mon Sep 17 00:00:00 2001 From: Martin Nordholts Date: Tue, 28 Jun 2011 08:53:45 +0200 Subject: [PATCH] Make 'w' a mnemonic for File -> Overwrite ... See [Gimp-developer] Isn't this behaviour unintuative? http://lists.xcf.berkeley.edu/lists/gimp-developer/2011-June/026885.html --- 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 2a3bbe92e8..834ef049fa 100644 --- a/app/actions/file-actions.c +++ b/app/actions/file-actions.c @@ -149,7 +149,7 @@ static const GimpEnumActionEntry file_save_actions[] = GIMP_HELP_FILE_EXPORT_TO }, { "file-overwrite", NULL, - NC_("file-action", "Overwrite"), "", + NC_("file-action", "Over_write"), "", NC_("file-action", "Export the image back to the imported file in the import format"), GIMP_SAVE_MODE_EXPORT_TO, FALSE, GIMP_HELP_FILE_OVERWRITE }, @@ -295,7 +295,7 @@ file_actions_update (GimpActionGroup *group, } else if (show_overwrite) { - gchar *label = file_actions_create_label (_("Overwrite %s"), source); + gchar *label = file_actions_create_label (_("Over_write %s"), source); gimp_action_group_set_action_label (group, "file-overwrite", label); g_free (label);