diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2003-01-15 06:50:53 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2003-01-15 06:50:53 +0800 |
commit | ef10039e71175c7ac81b9d6fcd2972ae0150d4a0 (patch) | |
tree | a5a57e592b51b56a3371780f0b5197c13bb787dc /addressbook/gui/widgets | |
parent | c0e8918f76c684a96fcde2cfb59e54221b484782 (diff) | |
download | gsoc2013-evolution-ef10039e71175c7ac81b9d6fcd2972ae0150d4a0.tar gsoc2013-evolution-ef10039e71175c7ac81b9d6fcd2972ae0150d4a0.tar.gz gsoc2013-evolution-ef10039e71175c7ac81b9d6fcd2972ae0150d4a0.tar.bz2 gsoc2013-evolution-ef10039e71175c7ac81b9d6fcd2972ae0150d4a0.tar.lz gsoc2013-evolution-ef10039e71175c7ac81b9d6fcd2972ae0150d4a0.tar.xz gsoc2013-evolution-ef10039e71175c7ac81b9d6fcd2972ae0150d4a0.tar.zst gsoc2013-evolution-ef10039e71175c7ac81b9d6fcd2972ae0150d4a0.zip |
Change dialog from Yes/No/Cancel to Discard/Cancel/Save to match the HIG.
* gui/widgets/e-addressbook-util.c
(e_addressbook_prompt_save_dialog): Change dialog from
Yes/No/Cancel to Discard/Cancel/Save to match the HIG.
* gui/search/e-addressbook-search-dialog.c
(e_addressbook_search_dialog_init): Change dialog from OK/Cancel
to Cancel/OK to match the HIG.
* gui/contact-editor/e-contact-save-as.c (file_exists): Change
dialog from Overwrite/Cancel to Cancel/Overwrite to match the HIG.
* gui/contact-editor/e-contact-quick-add.c
(build_quick_add_dialog): Fix typo s/reponse/response/. Also
change the dialog to be Edit/Cancel/OK instead of OK/Edit/Cancel
to match the HIG.
* gui/contact-editor/e-contact-editor.c
(e_contact_editor_confirm_delete): Make alert cancel/delete
instead of delete/cancel to match the HIG.
* gui/contact-editor/e-contact-editor-fullname.c
(e_contact_editor_fullname_init): Make dialog Cancel/OK instead of
OK/Cancel to match the HIG.
* gui/contact-editor/e-contact-editor-address.c
(e_contact_editor_address_init): Make dialog Cancel/OK instead of
OK/Cancel to match the HIG.
* gui/component/select-names/e-select-names.c
(e_select_names_init): Make dialog Cancel/OK instead of OK/Cancel
to match the HIG.
svn path=/trunk/; revision=19472
Diffstat (limited to 'addressbook/gui/widgets')
-rw-r--r-- | addressbook/gui/widgets/e-addressbook-util.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/addressbook/gui/widgets/e-addressbook-util.c b/addressbook/gui/widgets/e-addressbook-util.c index 3d5ad8dc37..fa554b5dd2 100644 --- a/addressbook/gui/widgets/e-addressbook-util.c +++ b/addressbook/gui/widgets/e-addressbook-util.c @@ -73,9 +73,9 @@ e_addressbook_prompt_save_dialog (GtkWindow *parent) GTK_BUTTONS_NONE, _("Do you want to save changes?")); gtk_dialog_add_buttons (GTK_DIALOG (dialog), - GTK_STOCK_YES, GTK_RESPONSE_YES, - GTK_STOCK_NO, GTK_RESPONSE_NO, + _("_Discard"), GTK_RESPONSE_NO, GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL, + GTK_STOCK_SAVE, GTK_RESPONSE_YES, NULL); gtk_dialog_set_default_response (GTK_DIALOG (dialog), GTK_RESPONSE_YES); |