diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2001-09-05 02:14:49 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2001-09-05 02:14:49 +0800 |
commit | 50bc54fcaf1f9322c13e5a965bf5f0093cba5f5e (patch) | |
tree | f70d325b6b6d63a99c27002a5fca854bb34b98af | |
parent | 96c014f73478b984dd7ba725ed537d4cfa099544 (diff) | |
download | gsoc2013-evolution-50bc54fcaf1f9322c13e5a965bf5f0093cba5f5e.tar gsoc2013-evolution-50bc54fcaf1f9322c13e5a965bf5f0093cba5f5e.tar.gz gsoc2013-evolution-50bc54fcaf1f9322c13e5a965bf5f0093cba5f5e.tar.bz2 gsoc2013-evolution-50bc54fcaf1f9322c13e5a965bf5f0093cba5f5e.tar.lz gsoc2013-evolution-50bc54fcaf1f9322c13e5a965bf5f0093cba5f5e.tar.xz gsoc2013-evolution-50bc54fcaf1f9322c13e5a965bf5f0093cba5f5e.tar.zst gsoc2013-evolution-50bc54fcaf1f9322c13e5a965bf5f0093cba5f5e.zip |
Fix capitalization. Fixes bug #7486.
2001-09-04 Jeffrey Stedfast <fejj@ximian.com>
* mail-send-recv.c (build_dialogue): Fix capitalization. Fixes bug
#7486.
svn path=/trunk/; revision=12591
-rw-r--r-- | mail/ChangeLog | 37 | ||||
-rw-r--r-- | mail/mail-send-recv.c | 2 |
2 files changed, 22 insertions, 17 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index ccbf947337..9231462e4d 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,36 +1,41 @@ +2001-09-04 Jeffrey Stedfast <fejj@ximian.com> + + * mail-send-recv.c (build_dialogue): Fix capitalization. Fixes bug + #7486. + 2001-08-31 Zbigniew Chyla <cyba@gnome.pl> - * mail-vfolder.c (vfolder_create_storage): - Marked string for translation (with U_). + * mail-vfolder.c (vfolder_create_storage): Marked string for + translation (with U_). 2001-08-28 Zbigniew Chyla <cyba@gnome.pl> - * message-list.c - (e_mail_address_compare): Use g_utf8_collate instead of g_strcasecmp - for comparing names. - (subject_compare): Replaced g_strcasecmp, isspace, var++ with UTF-8 - counterparts. + * message-list.c (e_mail_address_compare): Use g_utf8_collate + instead of g_strcasecmp for comparing names. + (subject_compare): Replaced g_strcasecmp, isspace, var++ with + UTF-8 counterparts. 2001-08-30 Iain Holmes <iain@ximian.com> - * importer/evolution-mbox-importer.c: (load_file_fn): Check if it's a - folder, if so, create a folder. - (process_item_fn): If it was a folder created, just finish up importing + * importer/evolution-mbox-importer.c (load_file_fn): Check if it's + a folder, if so, create a folder. + (process_item_fn): If it was a folder created, just finish up + importing 2001-08-29 Iain Holmes <iain@ximian.com> * importers/evolution-mbox-importer.c: Turn off debugging, remove spewage. - (process_item_fn): Notify the importer if the folder isn't opened or - created yet. - (load_file_fn): Allow the function to continue if the folder is being - created. + (process_item_fn): Notify the importer if the folder isn't opened + or created yet. + (load_file_fn): Allow the function to continue if the folder is + being created. 2001-08-30 Peter Williams <peterw@ximian.com> Due to the introduction of mail_folder_cache_remove(), we can no - longer assume that mail_folder_info's always exist, so we need - to robustify a lot of this. + longer assume that mail_folder_info's always exist, so we need to + robustify a lot of this. * mail-folder-cache.c (folder_browser_destroyed): New function. Called when the folder browser is destroyed -- analogous diff --git a/mail/mail-send-recv.c b/mail/mail-send-recv.c index 6c15460c50..1f2add6467 100644 --- a/mail/mail-send-recv.c +++ b/mail/mail-send-recv.c @@ -255,7 +255,7 @@ build_dialogue (GSList *sources, CamelFolder *outbox, const char *destination) data = setup_send_data (); - gd = (GnomeDialog *)gnome_dialog_new (_("Send & Receive mail"), NULL); + gd = (GnomeDialog *)gnome_dialog_new (_("Send & Receive Mail"), NULL); gnome_dialog_append_button_with_pixmap (gd, "Cancel All", GNOME_STOCK_BUTTON_CANCEL); gtk_window_set_policy (GTK_WINDOW (gd), FALSE, FALSE, FALSE); |