diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2010-03-05 23:00:30 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2010-03-28 06:48:03 +0800 |
commit | ebf898a9fc2f3b025533b27c9d835d57b089e84b (patch) | |
tree | 312dba1807f61b31d03b7aa3599ed82838be916a | |
parent | 0d44ea680269bc7b6da7eac9e6d4a5c2d6315970 (diff) | |
download | gsoc2013-evolution-ebf898a9fc2f3b025533b27c9d835d57b089e84b.tar.gz gsoc2013-evolution-ebf898a9fc2f3b025533b27c9d835d57b089e84b.tar.zst gsoc2013-evolution-ebf898a9fc2f3b025533b27c9d835d57b089e84b.zip |
BugĀ 611883 - Missing mnemonic in automatic contacts tab
-rw-r--r-- | plugins/bbdb/bbdb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/bbdb/bbdb.c b/plugins/bbdb/bbdb.c index e3666f94de..2c88afd787 100644 --- a/plugins/bbdb/bbdb.c +++ b/plugins/bbdb/bbdb.c @@ -743,7 +743,7 @@ bbdb_page_factory (EPlugin *ep, EConfigHookItemFactoryData *hook_data) gtk_box_pack_start (GTK_BOX (hbox), inner_vbox, FALSE, FALSE, 0); /* Enable Gaim Checkbox */ - check_gaim = gtk_check_button_new_with_mnemonic (_("Synchronize contact info and images from Pidgin buddy list")); + check_gaim = gtk_check_button_new_with_mnemonic (_("_Synchronize contact info and images from Pidgin buddy list")); gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (check_gaim), gconf_client_get_bool (target->gconf, GCONF_KEY_ENABLE_GAIM, NULL)); g_signal_connect (GTK_TOGGLE_BUTTON (check_gaim), "toggled", G_CALLBACK (enable_gaim_toggled_cb), stuff); gtk_box_pack_start (GTK_BOX (inner_vbox), check_gaim, FALSE, FALSE, 0); |