summaryrefslogtreecommitdiff
path: root/src/od.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2001-12-03 16:07:50 +0000
committerJim Meyering <jim@meyering.net>2001-12-03 16:07:50 +0000
commit8f730b8a46d6e29c053da6205ba9db0253be01db (patch)
treeb575fe2c76d73cef7fb01ff61640ce8b2d16bc1b /src/od.c
parent2f8490672b6e7a50f8d0ac3eb3c69df373050081 (diff)
downloadcoreutils-8f730b8a46d6e29c053da6205ba9db0253be01db.tar.xz
(usage): Don't split translatable strings in the middle of a sentence.
Diffstat (limited to 'src/od.c')
-rw-r--r--src/od.c13
1 files changed, 8 insertions, 5 deletions
diff --git a/src/od.c b/src/od.c
index 44c1e31ab..ad73bb252 100644
--- a/src/od.c
+++ b/src/od.c
@@ -334,21 +334,24 @@ TYPE is made up of one or more of these specifications:\n\
o[SIZE] octal, SIZE bytes per integer\n\
u[SIZE] unsigned decimal, SIZE bytes per integer\n\
x[SIZE] hexadecimal, SIZE bytes per integer\n\
+"), stdout);
+ fputs (_("\
\n\
SIZE is a number. For TYPE in doux, SIZE may also be C for\n\
sizeof(char), S for sizeof(short), I for sizeof(int) or L for\n\
-"), stdout);
- fputs (_("\
sizeof(long). If TYPE is f, SIZE may also be F for sizeof(float), D\n\
for sizeof(double) or L for sizeof(long double).\n\
+"), stdout);
+ fputs (_("\
\n\
RADIX is d for decimal, o for octal, x for hexadecimal or n for none.\n\
BYTES is hexadecimal with 0x or 0X prefix, it is multiplied by 512\n\
-"), stdout);
- fputs (_("\
with b suffix, by 1024 with k and by 1048576 with m. Adding a z suffix to\n\
any type adds a display of printable characters to the end of each line\n\
-of output. -s without a number implies 3. -w without a number implies 32.\n\
+of output. \
+"), stdout);
+ fputs (_("\
+-s without a number implies 3. -w without a number implies 32.\n\
By default, od uses -A o -t d2 -w 16.\n\
"), stdout);
puts (_("\nReport bugs to <bug-textutils@gnu.org>."));