diff options
-rw-r--r-- | src/tail.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tail.c b/src/tail.c index a7d449593..43fd6d412 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 |