diff options
author | Milan Crha <mcrha@src.gnome.org> | 2007-08-24 18:47:40 +0800 |
---|---|---|
committer | Milan Crha <mcrha@src.gnome.org> | 2007-08-24 18:47:40 +0800 |
commit | b815f556a924129f60de97bcdaf588e89244aa9d (patch) | |
tree | 55b0cb1686fa38d4be7145646146d378fd8eb2f7 /plugins/bbdb/bbdb.c | |
parent | 14c7d16f3f8237a67b0f16056300ea538b0f1309 (diff) | |
download | gsoc2013-evolution-b815f556a924129f60de97bcdaf588e89244aa9d.tar.gz gsoc2013-evolution-b815f556a924129f60de97bcdaf588e89244aa9d.tar.zst gsoc2013-evolution-b815f556a924129f60de97bcdaf588e89244aa9d.zip |
2007-08-24 Suman Manjunath Fix for bug #440807
svn path=/trunk/; revision=34096
Diffstat (limited to 'plugins/bbdb/bbdb.c')
-rw-r--r-- | plugins/bbdb/bbdb.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/bbdb/bbdb.c b/plugins/bbdb/bbdb.c index 08b5a78c33..131e081f36 100644 --- a/plugins/bbdb/bbdb.c +++ b/plugins/bbdb/bbdb.c @@ -508,13 +508,13 @@ 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 gaim buddy list")); + check_gaim = gtk_check_button_new_with_mnemonic (_("Periodically synchronize contact information 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); stuff->check_gaim = check_gaim; - gaim_label = gtk_label_new (_("Select Address book for Gaim buddy list")); + gaim_label = gtk_label_new (_("Select Address book for Pidgin buddy list")); gtk_box_pack_start (GTK_BOX (inner_vbox), gaim_label, FALSE, FALSE, 0); /* Gaim Source Selection Option Menu */ |