Commit 3769cab9 3769cab966379be9523596a726aeb4e8f7c043c1 by Sergey Poznyakoff

Updated

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