diff options
author | Suman Manjunath <msuman@src.gnome.org> | 2007-12-07 02:03:17 +0800 |
---|---|---|
committer | Suman Manjunath <msuman@src.gnome.org> | 2007-12-07 02:03:17 +0800 |
commit | dfc1240fa8b86e620c32c9fc17f46f438521c5bc (patch) | |
tree | acb7f5c5dd8f158b07131ab4e568fae1689e1991 /addressbook/gui | |
parent | af3502a88b4959d85efde48fb2a307a952678bf9 (diff) | |
download | gsoc2013-evolution-dfc1240fa8b86e620c32c9fc17f46f438521c5bc.tar.gz gsoc2013-evolution-dfc1240fa8b86e620c32c9fc17f46f438521c5bc.tar.zst gsoc2013-evolution-dfc1240fa8b86e620c32c9fc17f46f438521c5bc.zip |
Patch from David Turner <cillian64@googlemail.com>: Fix for bug #468277 (missing mnemonic in 'New Address Book' dialog)
svn path=/trunk/; revision=34663
Diffstat (limited to 'addressbook/gui')
-rw-r--r-- | addressbook/gui/component/addressbook-config.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/addressbook/gui/component/addressbook-config.c b/addressbook/gui/component/addressbook-config.c index 2f8b63b76c..ba5877c51d 100644 --- a/addressbook/gui/component/addressbook-config.c +++ b/addressbook/gui/component/addressbook-config.c @@ -629,7 +629,7 @@ eabc_general_offline(EConfig *ec, EConfigItem *item, struct _GtkWidget *parent, if (old) return old; else { - offline_setting = gtk_check_button_new_with_label (N_("Copy book content locally for offline operation")); + offline_setting = gtk_check_button_new_with_mnemonic (N_("Copy _book content locally for offline operation")); gtk_widget_show (offline_setting); gtk_container_add (GTK_CONTAINER (parent), offline_setting); g_signal_connect (offline_setting, "toggled", G_CALLBACK (offline_status_changed_cb), sdialog); |