Commit 3769cab9 3769cab966379be9523596a726aeb4e8f7c043c1 by Sergey Poznyakoff

Updated

1 parent f333a7c9
2003-01-26 Sergey Poznyakoff
* imap4d/auth_gss.c: Removed newline from the syslog diagnostic
message.
* imap4d/bye.c: Cleaned wording in diagnostics.
* imap4d/search.c: Likewise.
* libsieve/require.c: Likewise.
* mailbox/mu_argp.c: Likewise.
* mh/mh_fmtgram.y: Likewise.
* mh/mh_format.c: Likewise.
* pop3d/extra.c: Likewise.
* sieve/sieve.c: Likewise.
* mail/summary.c: Use ngettext
* mh/folder.c: Likewise.
* mh/refile.c: Likewise.
* mh/repl.c: Likewise.
* pop3d/user.c: Likewise.
* mail.remote/mail.remote.c: Use mu_error instead of fprintf
* readmsg/readmsg.c: Likewise.
* mh/comp.c: Fixed use of OPTION_DOC options.
* mh/fmtcheck.c: Likewise.
* mh/inc.c: Likewise.
* mh/mhpath.c: Likewise.
* mh/rmf.c: Likewise.
2003-01-23 Wojciech Polak
* mailbox/mu_argp.c: Added WITH_GNUTLS and WITH_GSASL
......
......@@ -20,14 +20,13 @@
#include <mh.h>
const char *argp_program_version = "rmm (" PACKAGE_STRING ")";
static char doc[] = "GNU MH rmm";
static char doc[] = N_("GNU MH rmm\v"
"Use -help to obtain the list of traditional MH options.");
static char args_doc[] = N_("[+folder] [msgs]");
/* GNU options */
static struct argp_option options[] = {
{"folder", 'f', N_("FOLDER"), 0, N_("Specify folder to operate upon")},
{ N_("\nUse -help switch to obtain the list of traditional MH options. "),
0, 0, OPTION_DOC, "" },
{ 0 }
};
......
......@@ -27,7 +27,8 @@
#include <mailutils/observer.h>
const char *argp_program_version = "scan (" PACKAGE_STRING ")";
static char doc[] = "GNU MH scan";
static char doc[] = N_("GNU MH scan\v"
"Use -help to obtain the list of traditional MH options.");
static char args_doc[] = N_("[+folder] [msgs]");
/* GNU options */
......@@ -44,9 +45,6 @@ static struct argp_option options[] = {
{"license", 'l', 0, 0, N_("Display software license"), -1},
{ N_("\nUse -help switch to obtain the list of traditional MH options. "),
0, 0, OPTION_DOC, "" },
{ 0 }
};
......