From be11df49165f1d6f747dd3ca3a09f1b050bfeb74 Mon Sep 17 00:00:00 2001 From: Benno Schulenberg Date: Wed, 27 Aug 2008 23:47:54 +0200 Subject: [PATCH] tail: gettextize the string, "standard input" --- src/tail.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tail.c b/src/tail.c index a7d4495..43fd6d4 100644 --- a/src/tail.c +++ b/src/tail.c @@ -297,7 +297,7 @@ valid_file_spec (struct File_spec const *f) static char const * pretty_name (struct File_spec const *f) { - return (STREQ (f->name, "-") ? "standard input" : f->name); + return (STREQ (f->name, "-") ? _("standard input") : f->name); } static void -- 2.7.4