summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2005-03-13 00:45:57 +0000
committerSergey Poznyakoff <gray@gnu.org.ua>2005-03-13 00:45:57 +0000
commitddfa7207dee35437e68a836e3ab0e63c88cda695 (patch)
treea4242950235ac3e37f8ddc2bf1a0ef445411067f
parent7bf46a83158a06335e89e664a6f749179d186121 (diff)
downloadmailutils-ddfa7207dee35437e68a836e3ab0e63c88cda695.tar.gz
mailutils-ddfa7207dee35437e68a836e3ab0e63c88cda695.tar.bz2
Use gettext markers in verbose diagnostics
-rw-r--r--mh/send.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/mh/send.c b/mh/send.c
index 51a6791e7..f2d51bd92 100644
--- a/mh/send.c
+++ b/mh/send.c
@@ -298,7 +298,7 @@ open_mailer ()
mailer_t mailer;
int status;
- WATCH(("creating mailer %s", url));
+ WATCH ((_("Creating mailer %s"), url));
status = mailer_create (&mailer, url);
if (status)
{
@@ -313,7 +313,7 @@ open_mailer ()
mu_debug_set_level (debug, MU_DEBUG_TRACE | MU_DEBUG_PROT);
}
- WATCH(("opening mailer %s", url));
+ WATCH ((_("Opening mailer %s"), url));
status = mailer_open (mailer, MU_STREAM_RDWR);
if (status)
{
@@ -444,7 +444,7 @@ _action_send (void *item, void *data)
header_t hdr;
size_t n;
- WATCH(("Getting message"));
+ WATCH ((_("Getting message")));
if (message_get_header (msg, &hdr) == 0)
{
@@ -484,7 +484,7 @@ _action_send (void *item, void *data)
if (!mailer)
return 1;
- WATCH(("Sending message"));
+ WATCH ((_("Sending message")));
rc = mailer_send_message (mailer, msg, NULL, NULL);
if (rc)
{
@@ -492,7 +492,7 @@ _action_send (void *item, void *data)
return 1;
}
- WATCH(("Destroying the mailer"));
+ WATCH ((_("Destroying the mailer")));
mailer_close (mailer);
mailer_destroy (&mailer);

Return to:

Send suggestions and report system problems to the System administrator.