diff --git a/ChangeLog b/ChangeLog index d7dd829f46f67d668c4d544f727d5785ae53e46f..8ab8e3ba01d132db793059ff59ecf399506a85dc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2005-07-15 Federico Mena Quintero + * gtk/gtkfilechooserdefault.c + (confirm_dialog_should_accept_filename): Use header capitalization + for the buttons, per the HIG. + * gtk/gtk.symbols: Add the new functions. * tests/testfilechooser.c (confirm_overwrite_cb): Add a test for diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index d7dd829f46f67d668c4d544f727d5785ae53e46f..8ab8e3ba01d132db793059ff59ecf399506a85dc 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,5 +1,9 @@ 2005-07-15 Federico Mena Quintero + * gtk/gtkfilechooserdefault.c + (confirm_dialog_should_accept_filename): Use header capitalization + for the buttons, per the HIG. + * gtk/gtk.symbols: Add the new functions. * tests/testfilechooser.c (confirm_overwrite_cb): Add a test for diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index d7dd829f46f67d668c4d544f727d5785ae53e46f..8ab8e3ba01d132db793059ff59ecf399506a85dc 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,5 +1,9 @@ 2005-07-15 Federico Mena Quintero + * gtk/gtkfilechooserdefault.c + (confirm_dialog_should_accept_filename): Use header capitalization + for the buttons, per the HIG. + * gtk/gtk.symbols: Add the new functions. * tests/testfilechooser.c (confirm_overwrite_cb): Add a test for diff --git a/gtk/gtkfilechooserdefault.c b/gtk/gtkfilechooserdefault.c index 49b5ab4d5fb6118d28873e320138997f66ccfd81..8b23b2cbb27146ae02ee4a4a377ed3c0d141b5da 100644 --- a/gtk/gtkfilechooserdefault.c +++ b/gtk/gtkfilechooserdefault.c @@ -5958,8 +5958,8 @@ confirm_dialog_should_accept_filename (GtkFileChooserDefault *impl, gtk_message_dialog_format_secondary_text (GTK_MESSAGE_DIALOG (dialog), _("Do you want to replace it with the one you are saving?")); - add_custom_button_to_dialog (GTK_DIALOG (dialog), _("_Select another file"), GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL); - add_custom_button_to_dialog (GTK_DIALOG (dialog), _("_Replace existing file"), GTK_STOCK_REFRESH, GTK_RESPONSE_ACCEPT); + add_custom_button_to_dialog (GTK_DIALOG (dialog), _("_Select Another File"), GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL); + add_custom_button_to_dialog (GTK_DIALOG (dialog), _("_Replace Existing File"), GTK_STOCK_REFRESH, GTK_RESPONSE_ACCEPT); gtk_dialog_set_default_response (GTK_DIALOG (dialog), GTK_RESPONSE_CANCEL); response = gtk_dialog_run (GTK_DIALOG (dialog));