From: Benno Schulenberg Date: Fri, 8 Aug 2008 20:58:51 +0000 (+0200) Subject: echo: gettextize the alternative option description too X-Git-Tag: v7.0~84 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=18e2a330b9ca6db0922f87e3c52d1d3c1d8a294c;p=thirdparty%2Fcoreutils.git echo: gettextize the alternative option description too --- diff --git a/src/echo.c b/src/echo.c index 11e648ed42..21213bf1f3 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);