diff options
-rw-r--r-- | addressbook/ChangeLog | 7 | ||||
-rw-r--r-- | addressbook/gui/component/addressbook-config.c | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index 2d1c1785dc..5a746eaaa1 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,3 +1,10 @@ +2007-12-06 David Turner <cillian64@googlemail.com> + + ** Fix for bug #468277 + + * gui/component/addressbook-config.c: (eabc_general_offline): + Added a mnemonic to "Copy book content locally for offline operation" + 2007-12-05 Lucky Wankhede <wlakke@novell.com> ** Fix for bug #409121 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); |