summaryrefslogtreecommitdiffstats
path: root/attach.c
diff options
context:
space:
mode:
authorRocco Rutte <pdmef@gmx.net>2009-05-25 15:25:42 +0200
committerRocco Rutte <pdmef@gmx.net>2009-05-25 15:25:42 +0200
commitc572d3fa400d0caeff9b0559d3209342734a0adc (patch)
treeda38f9128526dfe9da0bd3a680a51b2b3a8b8b6b /attach.c
parent8ba0548c2886de5b0bac8f680f0d66a0019e6bd5 (diff)
Mark strings for translation
Diffstat (limited to 'attach.c')
-rw-r--r--attach.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/attach.c b/attach.c
index 20376bfe..2eb23178 100644
--- a/attach.c
+++ b/attach.c
@@ -551,11 +551,11 @@ int mutt_view_attachment (FILE *fp, BODY *a, int flag, HEADER *hdr,
{
if (a->description)
snprintf (descrip, sizeof (descrip),
- "---Command: %-20.20s Description: %s",
+ _("---Command: %-20.20s Description: %s"),
command, a->description);
else
snprintf (descrip, sizeof (descrip),
- "---Command: %-30.30s Attachment: %s", command, type);
+ _("---Command: %-30.30s Attachment: %s"), command, type);
}
if ((mutt_wait_filter (thepid) || (entry->needsterminal &&
@@ -601,10 +601,10 @@ int mutt_view_attachment (FILE *fp, BODY *a, int flag, HEADER *hdr,
if (a->description)
strfcpy (descrip, a->description, sizeof (descrip));
else if (a->filename)
- snprintf (descrip, sizeof (descrip), "---Attachment: %s : %s",
+ snprintf (descrip, sizeof (descrip), _("---Attachment: %s: %s"),
a->filename, type);
else
- snprintf (descrip, sizeof (descrip), "---Attachment: %s", type);
+ snprintf (descrip, sizeof (descrip), _("---Attachment: %s"), type);
}
/* We only reach this point if there have been no errors */