summaryrefslogtreecommitdiff
path: root/mail
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2002-12-27 19:29:24 +0000
committerSergey Poznyakoff <gray@gnu.org.ua>2002-12-27 19:29:24 +0000
commitdc63794ae4cc1ae2c99fbc61f5f369da963fc7cf (patch)
tree29b2e0b30706319ac7363bdd60fc5f1fcd31a722 /mail
parent773fe98cfc5a3199caa61d945703bcba4b04cc59 (diff)
downloadmailutils-dc63794ae4cc1ae2c99fbc61f5f369da963fc7cf.tar.gz
mailutils-dc63794ae4cc1ae2c99fbc61f5f369da963fc7cf.tar.bz2
The To: and Cc: needn't be translated
Diffstat (limited to 'mail')
-rw-r--r--mail/reply.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/mail/reply.c b/mail/reply.c
index a83acdae4..a087721c9 100644
--- a/mail/reply.c
+++ b/mail/reply.c
@@ -235,12 +235,12 @@ mail_reply (int argc, char **argv)
else
compose_header_set (&env, MU_HEADER_SUBJECT, "", COMPOSE_REPLACE);
- fprintf (ofile, _("To: %s\n"),
+ fprintf (ofile, "To: %s\n",
compose_header_get (&env, MU_HEADER_TO, ""));
str = compose_header_get (&env, MU_HEADER_CC, NULL);
if (str)
- fprintf (ofile, _("Cc: %s\n"), str);
- fprintf (ofile, _("Subject: %s\n\n"),
+ fprintf (ofile, "Cc: %s\n", str);
+ fprintf (ofile, "Subject: %s\n\n",
compose_header_get (&env, MU_HEADER_SUBJECT, ""));
make_in_reply_to (&env, msg);

Return to:

Send suggestions and report system problems to the System administrator.