Commit 760ca7b6 760ca7b65d194d26191b951c5f6764790b91730e by Sergey Poznyakoff

Make info text clearer.

1 parent d8cd0598
......@@ -349,8 +349,8 @@ comsat_main (int fd)
}
syslog (LOG_INFO,
ngettext ("%d byte from %s",
"%d bytes from %s", rdlen),
ngettext ("received %d byte from %s",
"received %d bytes from %s", rdlen),
rdlen, inet_ntoa (sin_from.sin_addr));
buffer[rdlen] = 0;
......
......@@ -171,7 +171,7 @@ static struct argp_option options[] = {
{"to", 'l', NULL, 0, N_("Include the To: information"), 0},
{"number", 'n', NULL, 0, N_("Display message numbers"), 0},
{"Quiet", 'Q', NULL, 0, N_("Very quiet"), 0},
{"query", 'q', NULL, 0, N_("Print a message if unread mail"), 0},
{"query", 'q', NULL, 0, N_("Print a message if the mailbox contains some unread mail"), 0},
{"summary",'S', NULL, 0, N_("Print a summary of messages"), 0},
{"status", 's', N_("STATUS"), 0, attr_help, 0},
{"align", 't', NULL, 0, N_("Try to align"), 0},
......
......@@ -65,7 +65,7 @@ Debug flags:\n\
static struct argp_option options[] =
{
{"no-actions", 'n', 0, 0,
N_("No actions executed, just print what would be done"), 0},
N_("Do not execute any actions, just print what would be done"), 0},
{"keep-going", 'k', 0, 0,
N_("Keep on going if execution fails on a message"), 0},
......