author | Wojciech Polak <polak@gnu.org> | 2004-01-10 12:47:32 (GMT) |
---|---|---|
committer | Wojciech Polak <polak@gnu.org> | 2004-01-10 12:47:32 (GMT) |
commit | 299e84bfb344f7c7c8a1b7aa95f0ef82e2b9e644 (patch) (side-by-side diff) | |
tree | 53d208cef8e912053f9e9264de159ac4f9651637 /frm | |
parent | 072042929d1b41e9b39956a84613e4453a781b6e (diff) | |
download | mailutils-299e84bfb344f7c7c8a1b7aa95f0ef82e2b9e644.tar.gz mailutils-299e84bfb344f7c7c8a1b7aa95f0ef82e2b9e644.tar.bz2 |
(main): Unified diagnostic messages.
-rw-r--r-- | frm/frm.c | 15 |
1 files changed, 7 insertions, 8 deletions
@@ -1,5 +1,6 @@ /* GNU Mailutils -- a suite of utilities for electronic mail - Copyright (C) 1999, 2000, 2001, 2002 Free Software Foundation, Inc. + Copyright (C) 1999, 2000, 2001, 2002, 2003, + 2004 Free Software Foundation, Inc. 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 @@ -337,7 +338,7 @@ main(int argc, char **argv) if (status != 0) { - fprintf (stderr, _("could not create mailbox <%s>: %s\n"), + fprintf (stderr, _("Couldn't create mailbox <%s>: %s.\n"), mailbox_name ? mailbox_name : _("default"), mu_strerror(status)); exit (3); @@ -361,9 +362,8 @@ main(int argc, char **argv) goto cleanup1; else { - fprintf (stderr, _("could not open mailbox %s: %s\n"), - url_to_string (url), - mu_strerror(status)); + fprintf (stderr, _("Couldn't open mailbox <%s>: %s.\n"), + url_to_string (url), mu_strerror(status)); goto cleanup; } @@ -384,9 +384,8 @@ main(int argc, char **argv) url_t url = NULL; mailbox_get_url (mbox, &url); - fprintf (stderr, _("could not scan mailbox <%s>: %s\n"), - url_to_string (url), - mu_strerror(status)); + fprintf (stderr, _("Couldn't scan mailbox <%s>: %s.\n"), + url_to_string (url), mu_strerror(status)); goto cleanup; } |