diff options
author | Benno Schulenberg <bensberg@justemail.net> | 2008-08-27 23:47:54 +0200 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2008-09-19 12:27:37 +0200 |
commit | be11df49165f1d6f747dd3ca3a09f1b050bfeb74 (patch) | |
tree | c90515fc2ecbdfb07baf3a968cd8386efd7d9321 /src | |
parent | 2f776f309616a684d2f333f1047e3f42f4e2c05c (diff) | |
download | coreutils-be11df49165f1d6f747dd3ca3a09f1b050bfeb74.tar.xz |
tail: gettextize the string, "standard input"
Diffstat (limited to 'src')
-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 |