Commit e32c2d80 e32c2d801b1f05fc423b597e6b44c66d4213bbc2 by Sergey Poznyakoff

Fix docstrings in mu.

1 parent 8f2e2f1f
...@@ -24,7 +24,7 @@ ...@@ -24,7 +24,7 @@
24 #include "mu.h" 24 #include "mu.h"
25 25
26 static char filter_doc[] = N_("mu filter"); 26 static char filter_doc[] = N_("mu filter");
27 static char filter_args_doc[] = N_("[OPTIONS] NAME"); 27 static char filter_args_doc[] = N_("NAME");
28 28
29 static struct argp_option filter_options[] = { 29 static struct argp_option filter_options[] = {
30 { "encode", 'e', NULL, 0, N_("encode the input (default)") }, 30 { "encode", 'e', NULL, 0, N_("encode the input (default)") },
......
...@@ -24,7 +24,7 @@ ...@@ -24,7 +24,7 @@
24 #include "mu.h" 24 #include "mu.h"
25 25
26 static char flt2047_doc[] = N_("mu 2047 - decode/encode message headers"); 26 static char flt2047_doc[] = N_("mu 2047 - decode/encode message headers");
27 static char flt2047_args_doc[] = N_("[OPTIONS] [text]"); 27 static char flt2047_args_doc[] = N_("[text]");
28 28
29 static struct argp_option flt2047_options[] = { 29 static struct argp_option flt2047_options[] = {
30 { "encode", 'e', NULL, 0, N_("encode the input (default)") }, 30 { "encode", 'e', NULL, 0, N_("encode the input (default)") },
......
...@@ -24,9 +24,9 @@ ...@@ -24,9 +24,9 @@
24 #include "mu.h" 24 #include "mu.h"
25 25
26 static char info_doc[] = N_("mu info - print a list of configuration\ 26 static char info_doc[] = N_("mu info - print a list of configuration\
27 options used to build mailutils; optional arguments are interpreted\ 27 options used to build mailutils; optional arguments are interpreted\
28 as a list of configuration options to check for."); 28 as a list of configuration options to check for.");
29 static char info_args_doc[] = N_("[OPTIONS] [capa...]"); 29 static char info_args_doc[] = N_("[capa...]");
30 30
31 static struct argp_option info_options[] = { 31 static struct argp_option info_options[] = {
32 { "verbose", 'v', NULL, 0, 32 { "verbose", 'v', NULL, 0,
......
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
25 #include "mu.h" 25 #include "mu.h"
26 26
27 static char query_doc[] = N_("mu query - query configuration values."); 27 static char query_doc[] = N_("mu query - query configuration values.");
28 static char query_args_doc[] = N_("[OPTIONS]"); 28 static char query_args_doc[] = N_("keyword [keyword...]");
29 29
30 char *file_name; 30 char *file_name;
31 int verbose_option; 31 int verbose_option;
......