summaryrefslogtreecommitdiff
path: root/frm
diff options
context:
space:
mode:
authorWojciech Polak <polak@gnu.org>2002-12-27 09:21:46 +0000
committerWojciech Polak <polak@gnu.org>2002-12-27 09:21:46 +0000
commitfbae17faded91e5d15bfd495daa5bedd32f340ad (patch)
tree684755b9ffc4878df4c875fda6cdecab5378e499 /frm
parentfa01b9cbb9debb399266d8784b850bdba576b086 (diff)
downloadmailutils-fbae17faded91e5d15bfd495daa5bedd32f340ad.tar.gz
mailutils-fbae17faded91e5d15bfd495daa5bedd32f340ad.tar.bz2
Small NLS improvement
Diffstat (limited to 'frm')
-rw-r--r--frm/frm.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/frm/frm.c b/frm/frm.c
index b3828088a..8f91d5b46 100644
--- a/frm/frm.c
+++ b/frm/frm.c
@@ -403,9 +403,11 @@ cleanup:
cleanup1:
if (show_summary)
- printf (_("You have %d messages\n"), total);
+ printf (total == 1 ? _("You have %d message.\n")
+ : _("You have %d messages.\n"),
+ total);
if (show_query && have_new_mail)
- printf (_("You have new mail\n"));
+ printf (_("You have new mail.\n"));
/* 0 - selected messages discover.
1 - have messages.

Return to:

Send suggestions and report system problems to the System administrator.