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 /malloc | |
parent | 69854bb5e9d734784b08a8ab1391ac8a8f5256c1 (diff) | |
download | glibc-0e2b9cdde7def82bc7c2df5b0fae323825b222a3.tar.gz glibc-0e2b9cdde7def82bc7c2df5b0fae323825b222a3.tar.xz glibc-0e2b9cdde7def82bc7c2df5b0fae323825b222a3.zip |
BZ#14812: Add missing translation marker on some argp option argument names in utilities.
Diffstat (limited to 'malloc')
-rw-r--r-- | malloc/memusagestat.c | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/malloc/memusagestat.c b/malloc/memusagestat.c index 7bbd009967..daeba1dc0a 100644 --- a/malloc/memusagestat.c +++ b/malloc/memusagestat.c @@ -52,12 +52,15 @@ /* Definitions of arguments for argp functions. */ static const struct argp_option options[] = { - { "output", 'o', "FILE", 0, N_("Name output file") }, - { "string", 's', "STRING", 0, N_("Title string used in output graphic") }, - { "time", 't', NULL, 0, N_("Generate output linear to time (default is linear to number of function calls)") }, + { "output", 'o', N_("FILE"), 0, N_("Name output file") }, + { "string", 's', N_("STRING"), 0, N_("Title string used in output graphic") }, + { "time", 't', NULL, 0, N_("\ +Generate output linear to time (default is linear to number of function calls)\ +") }, { "total", 'T', NULL, 0, N_("Also draw graph for total memory consumption") }, - { "x-size", 'x', "VALUE", 0, N_("Make output graphic VALUE pixels wide") }, + { "x-size", 'x', N_("VALUE"), 0, + N_("Make output graphic VALUE pixels wide") }, { "y-size", 'y', "VALUE", 0, N_("Make output graphic VALUE pixels high") }, { NULL, 0, NULL, 0, NULL } }; |