summaryrefslogtreecommitdiff
path: root/src/echo.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/echo.c')
-rw-r--r--src/echo.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/echo.c b/src/echo.c
index eeafc723c..f0b7cd076 100644
--- a/src/echo.c
+++ b/src/echo.c
@@ -68,12 +68,12 @@ usage (status)
int status;
{
if (status != 0)
- fprintf (stderr, "Try `%s --help' for more information.\n",
+ fprintf (stderr, _("Try `%s --help' for more information.\n"),
program_name);
else
{
- printf ("Usage: %s [OPTION]... [STRING]...\n", program_name);
- printf ("\
+ printf (_("Usage: %s [OPTION]... [STRING]...\n"), program_name);
+ printf (_("\
Echo the STRING(s) to standard output.\n\
\n\
-n do not output the trailing newline\n\
@@ -94,7 +94,7 @@ Without -E, the following sequences are recognized and interpolated:\n\
\\r carriage return\n\
\\t horizontal tab\n\
\\v vertical tab\n\
-");
+"));
}
exit (status);
}