diff options
author | Jim Meyering <jim@meyering.net> | 2002-10-03 09:31:12 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2002-10-03 09:31:12 +0000 |
commit | 4a6814ada7aa7bb34046bd3f57bd46615d8db588 (patch) | |
tree | 6ba532cd55edd0e1751e75451d7037ed254c18eb | |
parent | f91c0597b15fa7e86de666dbe2c9309e75027702 (diff) | |
download | coreutils-4a6814ada7aa7bb34046bd3f57bd46615d8db588.tar.xz |
Mark translatable string with `N_ (...)'.
-rw-r--r-- | src/df.c | 2 | ||||
-rw-r--r-- | src/du.c | 2 | ||||
-rw-r--r-- | src/tail.c | 2 | ||||
-rw-r--r-- | src/touch.c | 2 |
4 files changed, 4 insertions, 4 deletions
@@ -43,7 +43,7 @@ #define PROGRAM_NAME "df" #define AUTHORS \ - "Torbjorn Granlund, David MacKenzie, Larry McVoy, and Paul Eggert" + N_ ("Torbjorn Granlund, David MacKenzie, Larry McVoy, and Paul Eggert") char *xgetcwd (); @@ -63,7 +63,7 @@ #define PROGRAM_NAME "du" #define AUTHORS \ - "Torbjorn Granlund, David MacKenzie, Larry McVoy, and Paul Eggert" + N_ ("Torbjorn Granlund, David MacKenzie, Larry McVoy, and Paul Eggert") /* Initial size of the hash table. */ #define INITIAL_TABLE_SIZE 103 diff --git a/src/tail.c b/src/tail.c index ba9dc8cf0..2488bf7cf 100644 --- a/src/tail.c +++ b/src/tail.c @@ -46,7 +46,7 @@ #define PROGRAM_NAME "tail" #define AUTHORS \ - "Paul Rubin, David MacKenzie, Ian Lance Taylor, and Jim Meyering" + N_ ("Paul Rubin, David MacKenzie, Ian Lance Taylor, and Jim Meyering") #ifndef ENOSYS /* Some systems don't have ENOSYS -- this should be a big enough diff --git a/src/touch.c b/src/touch.c index 0adc6dbdc..645357082 100644 --- a/src/touch.c +++ b/src/touch.c @@ -36,7 +36,7 @@ #define PROGRAM_NAME "touch" #define AUTHORS \ - "Paul Rubin, Arnold Robbins, Jim Kingdon, David MacKenzie, and Randy Smith" +N_ ("Paul Rubin, Arnold Robbins, Jim Kingdon, David MacKenzie, and Randy Smith") #ifndef STDC_HEADERS time_t time (); |