aboutsummaryrefslogtreecommitdiffstats
path: root/mail/mail-ops.c
diff options
context:
space:
mode:
authorKjartan Maraas <kmaraas@gnome.org>2001-03-30 04:53:17 +0800
committerKjartan Maraas <kmaraas@src.gnome.org>2001-03-30 04:53:17 +0800
commit57574f0be32f05aeaa19b71b452d690ed3edbdff (patch)
treea3992f76fdab26184ec3bfc5329f82d153437bd1 /mail/mail-ops.c
parentfe962a2055234adf407999f0557ae25441ca5c35 (diff)
downloadgsoc2013-evolution-57574f0be32f05aeaa19b71b452d690ed3edbdff.tar
gsoc2013-evolution-57574f0be32f05aeaa19b71b452d690ed3edbdff.tar.gz
gsoc2013-evolution-57574f0be32f05aeaa19b71b452d690ed3edbdff.tar.bz2
gsoc2013-evolution-57574f0be32f05aeaa19b71b452d690ed3edbdff.tar.lz
gsoc2013-evolution-57574f0be32f05aeaa19b71b452d690ed3edbdff.tar.xz
gsoc2013-evolution-57574f0be32f05aeaa19b71b452d690ed3edbdff.tar.zst
gsoc2013-evolution-57574f0be32f05aeaa19b71b452d690ed3edbdff.zip
Cleaned up #includes. Remove unneccesary includes of <gnome.h>,
2001-03-29 Kjartan Maraas <kmaraas@gnome.org> * *.*: Cleaned up #includes. Remove unneccesary includes of <gnome.h>, <gtk/gtk.h>, <bonobo.h> and replaced with more fine grained headers where needed. Also marked a bunch of strings for translations and added some missing prototypes. svn path=/trunk/; revision=9025
Diffstat (limited to 'mail/mail-ops.c')
-rw-r--r--mail/mail-ops.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/mail/mail-ops.c b/mail/mail-ops.c
index 68b9e0d971..a0bf80ce92 100644
--- a/mail/mail-ops.c
+++ b/mail/mail-ops.c
@@ -25,8 +25,11 @@
* USA
*/
+#ifdef HAVE_CONFIG_H
#include <config.h>
+#endif
+/* #include <ctype.h> */
#include <errno.h>
#include <gal/util/e-util.h>
#include <camel/camel-mime-filter-from.h>
@@ -698,7 +701,7 @@ send_queue_send(struct _mail_msg *mm)
CamelMessageInfo *info;
int pc = (100 * i) / uids->len;
- report_status (m, CAMEL_FILTER_STATUS_START, pc, "Sending message %d of %d", i+1, uids->len);
+ report_status (m, CAMEL_FILTER_STATUS_START, pc, _("Sending message %d of %d"), i+1, uids->len);
info = camel_folder_get_message_info (m->queue, uids->pdata[i]);
if (info && info->flags & CAMEL_MESSAGE_DELETED)
@@ -717,9 +720,9 @@ send_queue_send(struct _mail_msg *mm)
}
if (camel_exception_is_set (&mm->ex))
- report_status (m, CAMEL_FILTER_STATUS_END, 100, "Failed on message %d of %d", i+1, uids->len);
+ report_status (m, CAMEL_FILTER_STATUS_END, 100, _("Failed on message %d of %d"), i+1, uids->len);
else
- report_status (m, CAMEL_FILTER_STATUS_END, 100, "Complete.");
+ report_status (m, CAMEL_FILTER_STATUS_END, 100, _("Complete."));
camel_folder_free_uids (m->queue, uids);