From: Benno Schulenberg Date: Sat, 1 Aug 2015 08:23:08 +0000 (+0200) Subject: lslocks: slice up the recently modified usage text X-Git-Tag: v2.27-rc2~67 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=315be52f5078d46877c0b8937a37309706588df4;p=thirdparty%2Futil-linux.git lslocks: slice up the recently modified usage text For ease of translation when it changes. Signed-off-by: Benno Schulenberg --- diff --git a/misc-utils/lslocks.c b/misc-utils/lslocks.c index 01469ce5ff..35ca5c75a2 100644 --- a/misc-utils/lslocks.c +++ b/misc-utils/lslocks.c @@ -518,14 +518,16 @@ static void __attribute__ ((__noreturn__)) usage(FILE * out) fputs(_("List local system locks.\n"), out); fputs(USAGE_OPTIONS, out); - fputs(_(" -J, --json use JSON output format\n" - " -p, --pid process id\n" - " -o, --output define which output columns to use\n" - " -n, --noheadings don't print headings\n" - " -r, --raw use the raw output format\n" - " -u, --notruncate don't truncate text in columns\n" - " -h, --help display this help and exit\n" - " -V, --version output version information and exit\n"), out); + fputs(_(" -J, --json use JSON output format\n"), out); + fputs(_(" -n, --noheadings don't print headings\n"), out); + fputs(_(" -o, --output define which output columns to use\n"), out); + fputs(_(" -p, --pid display only locks held by this process\n"), out); + fputs(_(" -r, --raw use the raw output format\n"), out); + fputs(_(" -u, --notruncate don't truncate text in columns\n"), out); + + fputs(USAGE_SEPARATOR, out); + fputs(USAGE_HELP, out); + fputs(USAGE_VERSION, out); fputs(_("\nAvailable columns (for --output):\n"), out);