1
1
mirror of https://gitlab.gnome.org/GNOME/gimp.git synced 2025-10-06 01:12:40 +02:00

Compare commits

...

1 Commits

Author SHA1 Message Date
Michael Schumacher
3570b6d506 app: use "Save Image As" for the "Save As..." dialog title
Save uses "Save Image", so I opted for "Save Image As" for consistency.

This introduces an inconsistency with the Export and Export As... dialogs where "Export Image" remains in use
for both, but addressing that will require an API change for file_export_dialog_show()

Fixes issue #4021.
2021-02-26 11:52:30 +01:00

View File

@@ -293,7 +293,7 @@ file_save_cmd_callback (GimpAction *action,
case GIMP_SAVE_MODE_SAVE_AS:
file_save_dialog_show (gimp, image, widget,
_("Save Image"), FALSE,
_("Save Image As"), FALSE,
save_mode == GIMP_SAVE_MODE_SAVE_AND_CLOSE, display);
break;