summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenno Schulenberg <bensberg@justemail.net>2008-08-08 22:58:51 +0200
committerJim Meyering <meyering@redhat.com>2008-08-11 09:47:01 +0200
commit18e2a330b9ca6db0922f87e3c52d1d3c1d8a294c (patch)
tree0654bb6940d84087b1e537dbf31b53021443f0ab
parent4ebf956b4e6e005112b7cdbc917abebfa9f31021 (diff)
downloadcoreutils-18e2a330b9ca6db0922f87e3c52d1d3c1d8a294c.tar.xz
echo: gettextize the alternative option description too
-rw-r--r--src/echo.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/echo.c b/src/echo.c
index 11e648ed4..21213bf1f 100644
--- a/src/echo.c
+++ b/src/echo.c
@@ -67,12 +67,12 @@ Echo the STRING(s) to standard output.\n\
-n do not output the trailing newline\n\
"), stdout);
fputs (_(DEFAULT_ECHO_TO_XPG
- ? "\
+ ? N_("\
-e enable interpretation of backslash escapes (default)\n\
- -E disable interpretation of backslash escapes\n"
- : "\
+ -E disable interpretation of backslash escapes\n")
+ : N_("\
-e enable interpretation of backslash escapes\n\
- -E disable interpretation of backslash escapes (default)\n"),
+ -E disable interpretation of backslash escapes (default)\n")),
stdout);
fputs (HELP_OPTION_DESCRIPTION, stdout);
fputs (VERSION_OPTION_DESCRIPTION, stdout);