summaryrefslogtreecommitdiff
path: root/frm
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 /frm
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 'frm')
-rw-r--r--frm/frm.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/frm/frm.c b/frm/frm.c
index 2828146e4..52dd331de 100644
--- a/frm/frm.c
+++ b/frm/frm.c
@@ -212,7 +212,7 @@ parse_opt (int key, char *arg, struct argp_state *state)
be_quiet += 2;
if (freopen ("/dev/null", "w", stdout) == NULL)
{
- perror (_("Can not be very quiet"));
+ perror (_("Cannot be very quiet"));
exit (3);
}
break;
@@ -303,7 +303,7 @@ rfc2047_decode_wrapper (char *buf, size_t buflen)
if (rc)
{
if (dbug)
- mu_error (_("Can't decode line `%s': %s"),
+ mu_error (_("Cannot decode line `%s': %s"),
buf, mu_strerror (rc));
return strdup (buf);
}
@@ -504,7 +504,7 @@ frm_abort (mailbox_t *mbox)
{
url_t url;
- mu_error (_("Couldn't close <%s>: %s."),
+ mu_error (_("Could not close <%s>: %s."),
url_to_string (url), mu_strerror (status));
exit (3);
}
@@ -531,7 +531,7 @@ frm (char *mailbox_name)
status = mailbox_create_default (&mbox, mailbox_name);
if (status != 0)
{
- mu_error (_("Couldn't create mailbox <%s>: %s."),
+ mu_error (_("Could not create mailbox <%s>: %s."),
mailbox_name ? mailbox_name : _("default"),
mu_strerror (status));
exit (3);
@@ -551,7 +551,7 @@ frm (char *mailbox_name)
/* nothing to do */;
else if (status != 0)
{
- mu_error (_("Couldn't open mailbox <%s>: %s."),
+ mu_error (_("Could not open mailbox <%s>: %s."),
url_to_string (url), mu_strerror (status));
frm_abort (&mbox);
}
@@ -570,7 +570,7 @@ frm (char *mailbox_name)
status = mailbox_scan (mbox, 1, &total);
if (status != 0)
{
- mu_error (_("Couldn't scan mailbox <%s>: %s."),
+ mu_error (_("Could not scan mailbox <%s>: %s."),
url_to_string (url), mu_strerror (status));
frm_abort (&mbox);
}
@@ -580,7 +580,7 @@ frm (char *mailbox_name)
if ((status = mailbox_close (mbox)) != 0)
{
- mu_error (_("Couldn't close <%s>: %s."),
+ mu_error (_("Could not close <%s>: %s."),
url_to_string (url), mu_strerror (status));
exit (3);
}

Return to:

Send suggestions and report system problems to the System administrator.