>From 95ced5a24fad6946fb9183a443a70e7b5a5136cf Mon Sep 17 00:00:00 2001 From: Benno Schulenberg Date: Wed, 27 Aug 2008 23:47:54 +0200 Subject: [PATCH] tail: gettextize a forgotten string --- src/tail.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) 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 -- 1.5.6.4