summaryrefslogtreecommitdiffstats
path: root/muttlib.c
diff options
context:
space:
mode:
authorKevin McCarthy <kevin@8t8.us>2015-09-13 11:47:09 +0800
committerKevin McCarthy <kevin@8t8.us>2015-09-13 11:47:09 +0800
commit13571c6fc7c42ed91ac34ec1f6d01891501cdd64 (patch)
tree25d628e572b86a50d46ff74407a4476774ab8a31 /muttlib.c
parent75e32eeb76c0a57b3d9a96cd962b73ac64ca0d5a (diff)
Add translation comments and improvements.
These were suggested by TAKAHASHI Tamotsu.
Diffstat (limited to 'muttlib.c')
-rw-r--r--muttlib.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/muttlib.c b/muttlib.c
index 02067cce..0e8aeb0f 100644
--- a/muttlib.c
+++ b/muttlib.c
@@ -968,6 +968,9 @@ int mutt_check_overwrite (const char *attname, const char *path,
if (directory)
{
switch (mutt_multi_choice
+ /* L10N:
+ Means "The path you specified as the destination file is a directory."
+ See the msgid "Save to file: " (alias.c, recvattach.c) */
(_("File is a directory, save under it? [(y)es, (n)o, (a)ll]"), _("yna")))
{
case 3: /* all */
@@ -984,6 +987,9 @@ int mutt_check_overwrite (const char *attname, const char *path,
return 1;
}
}
+ /* L10N:
+ Means "The path you specified as the destination file is a directory."
+ See the msgid "Save to file: " (alias.c, recvattach.c) */
else if ((rc = mutt_yesorno (_("File is a directory, save under it?"), M_YES)) != M_YES)
return (rc == M_NO) ? 1 : -1;