diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2007-09-28 10:30:14 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@src.gnome.org> | 2007-09-28 10:30:14 +0800 |
commit | 7029abc8cd37639e1126219e64d07faa6705e5e9 (patch) | |
tree | fdf900516888082689e1199cbd9e99025e29db4a /plugins/bbdb | |
parent | 7352689ab7e6cfa835d52035f76756879306cfa9 (diff) | |
download | gsoc2013-evolution-7029abc8cd37639e1126219e64d07faa6705e5e9.tar.gz gsoc2013-evolution-7029abc8cd37639e1126219e64d07faa6705e5e9.tar.zst gsoc2013-evolution-7029abc8cd37639e1126219e64d07faa6705e5e9.zip |
Use consistent terminology for mail messages (#480621).
2007-09-27 Matthew Barnes <mbarnes@redhat.com>
* mail/em-account-editor.c:
* mail/evolution-mail.schemas.in:
* mail/mail-config.glade:
* plugins/bbdb/bbdb.c (bbdb_page_factory):
* plugins/bogo-junk-plugin/bf-junk-filter.c:
* plugins/face/org-gnome-face-eplug.xml:
* plugins/new-mail-notify/org-gnome-new-mail-notify.eplug.xml:
* plugins/print-message/org-gnome-print-message.eplug.xml:
Use consistent terminology for mail messages (#480621).
svn path=/trunk/; revision=34326
Diffstat (limited to 'plugins/bbdb')
-rw-r--r-- | plugins/bbdb/ChangeLog | 5 | ||||
-rw-r--r-- | plugins/bbdb/bbdb.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/plugins/bbdb/ChangeLog b/plugins/bbdb/ChangeLog index eec6a27361..d4c93712af 100644 --- a/plugins/bbdb/ChangeLog +++ b/plugins/bbdb/ChangeLog @@ -1,3 +1,8 @@ +2007-09-27 Matthew Barnes <mbarnes@redhat.com> + + * bbdb.c (bbdb_page_factory): + Use consistent terminology for mail messages (#480621). + 2007-08-24 Suman Manjunath <msuman@novell.com> ** Fix for bug #440807 diff --git a/plugins/bbdb/bbdb.c b/plugins/bbdb/bbdb.c index 131e081f36..8a0d2924cb 100644 --- a/plugins/bbdb/bbdb.c +++ b/plugins/bbdb/bbdb.c @@ -472,7 +472,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 mail")); + check = gtk_check_button_new_with_mnemonic (_("_Automatically create entries in the addressbook when responding 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); |