diff options
author | Karsten Bräckelmann <kbrae@src.gnome.org> | 2006-02-06 07:46:27 +0800 |
---|---|---|
committer | Karsten Bräckelmann <kbrae@src.gnome.org> | 2006-02-06 07:46:27 +0800 |
commit | fa8915ed3abfaba88aee0c9a4aa55a971599d99e (patch) | |
tree | 227184f3c374be75b817fcd6cdf114e14c7b3827 /mail | |
parent | 39509b28253bfeb4604f0b9e7411b1d12b5385c7 (diff) | |
download | gsoc2013-evolution-fa8915ed3abfaba88aee0c9a4aa55a971599d99e.tar.gz gsoc2013-evolution-fa8915ed3abfaba88aee0c9a4aa55a971599d99e.tar.zst gsoc2013-evolution-fa8915ed3abfaba88aee0c9a4aa55a971599d99e.zip |
fix a bunch of Address Book strings
svn path=/trunk/; revision=31413
Diffstat (limited to 'mail')
-rw-r--r-- | mail/ChangeLog | 6 | ||||
-rw-r--r-- | mail/importers/pine-importer.c | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 0b6eae3641..82fee62410 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,9 @@ +2006-02-05 Karsten Bräckelmann <guenther@rudersport.de> + + * importers/pine-importer.c (pine_getwidget): + Correcting "Addressbook" to properly read "Address Book". + Fixes bug #326256. + 2006-02-02 Parthasarathi Susarla <sparthasarathi@novell.com> * em-composer-utils.c: (em_utils_handle_receipt): diff --git a/mail/importers/pine-importer.c b/mail/importers/pine-importer.c index 05f893f678..b01caa04b9 100644 --- a/mail/importers/pine-importer.c +++ b/mail/importers/pine-importer.c @@ -389,7 +389,7 @@ pine_getwidget(EImport *ei, EImportTarget *target, EImportImporter *im) g_signal_connect(w, "toggled", G_CALLBACK(checkbox_mail_toggle_cb), target); gtk_box_pack_start((GtkBox *)box, w, FALSE, FALSE, 0); - w = gtk_check_button_new_with_label(_("Addressbook")); + w = gtk_check_button_new_with_label(_("Address Book")); gtk_toggle_button_set_active((GtkToggleButton *)w, !done_addr); g_signal_connect(w, "toggled", G_CALLBACK(checkbox_addr_toggle_cb), target); gtk_box_pack_start((GtkBox *)box, w, FALSE, FALSE, 0); |