From 0e2b9cdde7def82bc7c2df5b0fae323825b222a3 Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Mon, 18 Mar 2013 14:18:53 -0700 Subject: BZ#14812: Add missing translation marker on some argp option argument names in utilities. --- malloc/memusagestat.c | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (limited to 'malloc') 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 } }; -- cgit v1.2.3