summaryrefslogtreecommitdiff
path: root/mail/summary.c
diff options
context:
space:
mode:
Diffstat (limited to 'mail/summary.c')
-rw-r--r--mail/summary.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/mail/summary.c b/mail/summary.c
index 9030d3a18..ded61700e 100644
--- a/mail/summary.c
+++ b/mail/summary.c
@@ -1,18 +1,18 @@
-/* GNU mailutils - a suite of utilities for electronic mail
- Copyright (C) 1999, 2001 Free Software Foundation, Inc.
+/* GNU Mailutils -- a suite of utilities for electronic mail
+ Copyright (C) 1999, 2001, 2002 Free Software Foundation, Inc.
- This program is free software; you can redistribute it and/or modify
+ GNU Mailutils is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
- This program is distributed in the hope that it will be useful,
+ GNU Mailutils is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
- along with this program; if not, write to the Free Software
+ along with GNU Mailutils; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
#include "mail.h"
@@ -63,13 +63,13 @@ mail_summary (int argc, char **argv)
mailbox_get_url (mbox, &url);
printf("\"%s\": ", url_to_string (url));
}
- printf("%d messages", count);
+ printf (_("%d messages"), count);
if (mnew > 0)
- printf(" %d new", mnew);
+ printf (_(" %d new"), mnew);
if (mseen > 0)
- printf(" %d unread", mseen);
+ printf (_(" %d unread"), mseen);
if (mdelete > 0)
- printf(" %d deleted", mdelete);
+ printf (_(" %d deleted"), mdelete);
printf("\n");
/* Set the cursor. */

Return to:

Send suggestions and report system problems to the System administrator.