summaryrefslogtreecommitdiffstats
path: root/disk-utils/partx.c
diff options
context:
space:
mode:
authorSami Kerola2013-01-23 00:27:02 +0100
committerKarel Zak2013-01-25 16:40:04 +0100
commitb7e785edafd4744ee48934a476c2b0b824dce655 (patch)
treec8e9e872690db91bf1d667686f122f64ac0c9db5 /disk-utils/partx.c
parentnsenter: make usage() translator friendly (diff)
downloadkernel-qcow2-util-linux-b7e785edafd4744ee48934a476c2b0b824dce655.tar.gz
kernel-qcow2-util-linux-b7e785edafd4744ee48934a476c2b0b824dce655.tar.xz
kernel-qcow2-util-linux-b7e785edafd4744ee48934a476c2b0b824dce655.zip
partx: make usage() translator friendly
Signed-off-by: Sami Kerola <kerolasa@iki.fi>
Diffstat (limited to 'disk-utils/partx.c')
-rw-r--r--disk-utils/partx.c26
1 files changed, 13 insertions, 13 deletions
diff --git a/disk-utils/partx.c b/disk-utils/partx.c
index 45bf7739f..9fa9587e8 100644
--- a/disk-utils/partx.c
+++ b/disk-utils/partx.c
@@ -704,19 +704,19 @@ static void __attribute__((__noreturn__)) usage(FILE *out)
program_invocation_short_name);
fputs(USAGE_OPTIONS, out);
- fputs(_(" -a, --add add specified partitions or all of them\n"
- " -d, --delete delete specified partitions or all of them\n"
- " -l, --list list partitions (DEPRECATED)\n"
- " -s, --show list partitions\n\n"
- " -u, --update update specified partitions or all of them\n"
- " -b, --bytes print SIZE in bytes rather than in human readable format\n"
- " -g, --noheadings don't print headings for --show\n"
- " -n, --nr <n:m> specify the range of partitions (e.g. --nr 2:4)\n"
- " -o, --output <type> define which output columns to use\n"
- " -P, --pairs use key=\"value\" output format\n"
- " -r, --raw use raw output format\n"
- " -t, --type <type> specify the partition type (dos, bsd, solaris, etc.)\n"
- " -v, --verbose verbose mode\n"), out);
+ fputs(_(" -a, --add add specified partitions or all of them\n"), out);
+ fputs(_(" -d, --delete delete specified partitions or all of them\n"), out);
+ fputs(_(" -l, --list list partitions (DEPRECATED)\n"), out);
+ fputs(_(" -s, --show list partitions\n\n"), out);
+ fputs(_(" -u, --update update specified partitions or all of them\n"), out);
+ fputs(_(" -b, --bytes print SIZE in bytes rather than in human readable format\n"), out);
+ fputs(_(" -g, --noheadings don't print headings for --show\n"), out);
+ fputs(_(" -n, --nr <n:m> specify the range of partitions (e.g. --nr 2:4)\n"), out);
+ fputs(_(" -o, --output <type> define which output columns to use\n"), out);
+ fputs(_(" -P, --pairs use key=\"value\" output format\n"), out);
+ fputs(_(" -r, --raw use raw output format\n"), out);
+ fputs(_(" -t, --type <type> specify the partition type (dos, bsd, solaris, etc.)\n"), out);
+ fputs(_(" -v, --verbose verbose mode\n"), out);
fputs(USAGE_SEPARATOR, out);
fputs(USAGE_HELP, out);