summaryrefslogtreecommitdiff
path: root/movemail
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2005-01-04 17:16:42 +0000
committerSergey Poznyakoff <gray@gnu.org.ua>2005-01-04 17:16:42 +0000
commitd56fde2d16113fa30b68379d40c4087cf2fd84e5 (patch)
tree1a1d1a4d5c84342ba9dd05026f6e22dc7a869602 /movemail
parentbd178bb676dcbb88aacd25293ebb7c098be98a31 (diff)
downloadmailutils-d56fde2d16113fa30b68379d40c4087cf2fd84e5.tar.gz
mailutils-d56fde2d16113fa30b68379d40c4087cf2fd84e5.tar.bz2
Revise error messages for accordance with GNU standards:
begin messages with a capital letter, unless they are prefixed with `file:line:' or their exact look is important due to compatibility reasons. Do not end messages with a period. Avoid using contracted negations.
Diffstat (limited to 'movemail')
-rw-r--r--movemail/movemail.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/movemail/movemail.c b/movemail/movemail.c
index f0108c8a4..1f82a0c67 100644
--- a/movemail/movemail.c
+++ b/movemail/movemail.c
@@ -184,7 +184,7 @@ open_mailbox (mailbox_t *mbx, char *name, int flags, char *passwd)
if (status)
{
- mu_error (_("could not create mailbox <%s>: %s\n"),
+ mu_error (_("Could not create mailbox <%s>: %s\n"),
name ? name : _("default"),
mu_strerror (status));
exit (1);
@@ -194,7 +194,7 @@ open_mailbox (mailbox_t *mbx, char *name, int flags, char *passwd)
attach_passwd_ticket (*mbx, passwd);
status = mailbox_open (*mbx, flags);
if (status)
- die (*mbx, _("cannot open"), status);
+ die (*mbx, _("Cannot open"), status);
lock_mailbox (*mbx);
}

Return to:

Send suggestions and report system problems to the System administrator.