diff options
author | Roland McGrath <roland@hack.frob.com> | 2013-03-18 14:18:53 -0700 |
---|---|---|
committer | Roland McGrath <roland@hack.frob.com> | 2013-03-18 14:59:47 -0700 |
commit | 0e2b9cdde7def82bc7c2df5b0fae323825b222a3 (patch) | |
tree | 717f62f17370f68b3ebdfbceb22be52c64bc10a2 /argp/argp-parse.c | |
parent | 69854bb5e9d734784b08a8ab1391ac8a8f5256c1 (diff) | |
download | glibc-0e2b9cdde7def82bc7c2df5b0fae323825b222a3.tar.gz |
BZ#14812: Add missing translation marker on some argp option argument names in utilities.
Diffstat (limited to 'argp/argp-parse.c')
-rw-r--r-- | argp/argp-parse.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/argp/argp-parse.c b/argp/argp-parse.c index e9de396c16..f68ebab0df 100644 --- a/argp/argp-parse.c +++ b/argp/argp-parse.c @@ -100,9 +100,10 @@ static const struct argp_option argp_default_options[] = { {"help", '?', 0, 0, N_("Give this help list"), -1}, {"usage", OPT_USAGE, 0, 0, N_("Give a short usage message")}, - {"program-name",OPT_PROGNAME,"NAME", OPTION_HIDDEN, N_("Set the program name")}, - {"HANG", OPT_HANG, "SECS", OPTION_ARG_OPTIONAL | OPTION_HIDDEN, - N_("Hang for SECS seconds (default 3600)")}, + {"program-name",OPT_PROGNAME, N_("NAME"), OPTION_HIDDEN, + N_("Set the program name")}, + {"HANG", OPT_HANG, N_("SECS"), OPTION_ARG_OPTIONAL | OPTION_HIDDEN, + N_("Hang for SECS seconds (default 3600)")}, {0, 0} }; |