diff options
author | Benno Schulenberg <bensberg@justemail.net> | 2008-08-08 22:58:51 +0200 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2008-08-11 09:47:01 +0200 |
commit | 18e2a330b9ca6db0922f87e3c52d1d3c1d8a294c (patch) | |
tree | 0654bb6940d84087b1e537dbf31b53021443f0ab /src | |
parent | 4ebf956b4e6e005112b7cdbc917abebfa9f31021 (diff) | |
download | coreutils-18e2a330b9ca6db0922f87e3c52d1d3c1d8a294c.tar.xz |
echo: gettextize the alternative option description too
Diffstat (limited to 'src')
-rw-r--r-- | src/echo.c | 8 |
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); |