From 3a7ecedd60c0c3813aea403894d260d467af8bda Mon Sep 17 00:00:00 2001 From: Ettore Perazzoli Date: Tue, 14 Jan 2003 22:45:32 +0000 Subject: Make dialog Cancel/OK to match HIG. * message-tag-editor.c (message_tag_editor_init): Make dialog Cancel/OK to match HIG. * mail-signature-editor.c (do_exit): Make confirmation dialog Discard/Cancel/Save to match the HIG. * mail-composer-prefs.c (mail_composer_prefs_construct): Make dialog Cancel/OK to match HIG. * mail-account-editor.c (construct): Make the dialog Apply/Close/OK to match HIG. svn path=/trunk/; revision=19469 --- mail/mail-signature-editor.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'mail/mail-signature-editor.c') diff --git a/mail/mail-signature-editor.c b/mail/mail-signature-editor.c index ce97e403fd..4691ff4f4c 100644 --- a/mail/mail-signature-editor.c +++ b/mail/mail-signature-editor.c @@ -174,7 +174,11 @@ do_exit (ESignatureEditor *editor) GTK_BUTTONS_YES_NO, _("This signature has been changed, but hasn't been saved.\n" "\nDo you wish to save your changes?")); - gtk_dialog_add_button((GtkDialog *)dialog, GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL); + gtk_dialog_add_buttons ((GtkDialog *)dialog, + _("_Discard changes"), GTK_RESPONSE_NO, + GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL, + GTK_STOCK_SAVE, GTK_RESPONSE_YES, + NULL); gtk_window_set_title((GtkWindow *)dialog, _("Save signature")); gtk_dialog_set_default_response((GtkDialog *)dialog, GTK_RESPONSE_YES); -- cgit