Commit 760ca7b6 760ca7b65d194d26191b951c5f6764790b91730e by Sergey Poznyakoff

Make info text clearer.

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