From: Sami Kerola Date: Tue, 22 Jan 2013 23:27:09 +0000 (+0000) Subject: losetup: make usage() translator friendly X-Git-Tag: v2.23-rc1~282 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=59a4ed117c35054eb84e3be3996147c5362b5d72;p=thirdparty%2Futil-linux.git losetup: make usage() translator friendly Signed-off-by: Sami Kerola --- diff --git a/sys-utils/losetup.c b/sys-utils/losetup.c index 2c81e69ba0..45e46c8c1b 100644 --- a/sys-utils/losetup.c +++ b/sys-utils/losetup.c @@ -360,14 +360,14 @@ static void usage(FILE *out) " -j, --associated list all devices associated with \n"), out); fputs(USAGE_SEPARATOR, out); - fputs(_(" -l, --list list info about all or specified\n" - " -o, --offset start at offset into file\n" - " -O, --output specify columns to output for --list\n" - " --sizelimit device limited to bytes of the file\n" - " -P, --partscan create partitioned loop device\n" - " -r, --read-only setup read-only loop device\n" - " --show print device name after setup (with -f)\n" - " -v, --verbose verbose mode\n"), out); + fputs(_(" -l, --list list info about all or specified\n"), out); + fputs(_(" -o, --offset start at offset into file\n"), out); + fputs(_(" -O, --output specify columns to output for --list\n"), out); + fputs(_(" --sizelimit device limited to bytes of the file\n"), out); + fputs(_(" -P, --partscan create partitioned loop device\n"), out); + fputs(_(" -r, --read-only setup read-only loop device\n"), out); + fputs(_(" --show print device name after setup (with -f)\n"), out); + fputs(_(" -v, --verbose verbose mode\n"), out); fputs(USAGE_SEPARATOR, out); fputs(USAGE_HELP, out);