summaryrefslogtreecommitdiff
path: root/frm/frm.c
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2002-12-27 15:35:06 +0000
committerSergey Poznyakoff <gray@gnu.org.ua>2002-12-27 15:35:06 +0000
commit60692c0414ecdff092605ca29b93260a5d82db16 (patch)
tree5c175c201eb66a0552fc344b897b88ce7a0a1be0 /frm/frm.c
parent45df8bce7d4f1ed1427d0d4da52f5a0ae9fa2afe (diff)
downloadmailutils-60692c0414ecdff092605ca29b93260a5d82db16.tar.gz
mailutils-60692c0414ecdff092605ca29b93260a5d82db16.tar.bz2
Use ngettext
Diffstat (limited to 'frm/frm.c')
-rw-r--r--frm/frm.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/frm/frm.c b/frm/frm.c
index 8f91d5b46..3ac1a604d 100644
--- a/frm/frm.c
+++ b/frm/frm.c
@@ -403,8 +403,9 @@ cleanup:
cleanup1:
if (show_summary)
- printf (total == 1 ? _("You have %d message.\n")
- : _("You have %d messages.\n"),
+ printf (ngettext ("You have %d message.\n",
+ "You have %d messages.\n",
+ total),
total);
if (show_query && have_new_mail)
printf (_("You have new mail.\n"));

Return to:

Send suggestions and report system problems to the System administrator.