diff options
author | Lucian Langa <lucilanga@gnome.org> | 2008-07-28 13:17:20 +0800 |
---|---|---|
committer | Lucian Langa <lucilanga@src.gnome.org> | 2008-07-28 13:17:20 +0800 |
commit | db69b559f3423717326f984f290f8ed1ae6c1a61 (patch) | |
tree | b7dcf0edf9adc80bb99348af2978f0bbf7985b41 | |
parent | ec73c662862045b2c56cb5b326f06b034eceae8d (diff) | |
download | gsoc2013-evolution-db69b559f3423717326f984f290f8ed1ae6c1a61.tar.gz gsoc2013-evolution-db69b559f3423717326f984f290f8ed1ae6c1a61.tar.zst gsoc2013-evolution-db69b559f3423717326f984f290f8ed1ae6c1a61.zip |
** See bug #504417
2008-07-28 Lucian Langa <lucilanga@gnome.org>
** See bug #504417
* bbdb.c: - Preferences window cut off
svn path=/trunk/; revision=35846
-rw-r--r-- | plugins/bbdb/ChangeLog | 6 | ||||
-rw-r--r-- | plugins/bbdb/bbdb.c | 4 |
2 files changed, 8 insertions, 2 deletions
diff --git a/plugins/bbdb/ChangeLog b/plugins/bbdb/ChangeLog index 18b7b6afbc..6f3e48a8d0 100644 --- a/plugins/bbdb/ChangeLog +++ b/plugins/bbdb/ChangeLog @@ -1,3 +1,9 @@ +2008-07-28 Lucian Langa <lucilanga@gnome.org> + + ** See bug #504417 + + * bbdb.c: - Preferences window cut off + 2008-01-10 Milan Crha <mcrha@redhat.com> ** Fix for bug #496402 diff --git a/plugins/bbdb/bbdb.c b/plugins/bbdb/bbdb.c index feac342232..23595be330 100644 --- a/plugins/bbdb/bbdb.c +++ b/plugins/bbdb/bbdb.c @@ -562,7 +562,7 @@ bbdb_page_factory (EPlugin *ep, EConfigHookItemFactoryData *hook_data) gtk_box_pack_start (GTK_BOX (hbox), inner_vbox, FALSE, FALSE, 0); /* Enable BBDB checkbox */ - check = gtk_check_button_new_with_mnemonic (_("_Automatically create entries in the addressbook when responding to messages")); + check = gtk_check_button_new_with_mnemonic (_("_Auto-create addressbook entries when replying to messages")); gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (check), gconf_client_get_bool (target->gconf, GCONF_KEY_ENABLE, NULL)); g_signal_connect (GTK_TOGGLE_BUTTON (check), "toggled", G_CALLBACK (enable_toggled_cb), stuff); gtk_box_pack_start (GTK_BOX (inner_vbox), check, FALSE, FALSE, 0); @@ -598,7 +598,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 (_("Periodically synchronize contact information 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); |