(AUTHORS): Mark string for translation, since it contains the English word `and'.
authorJim Meyering <jim@meyering.net>
Mon, 13 Aug 2001 10:33:28 +0000 (10:33 +0000)
committerJim Meyering <jim@meyering.net>
Mon, 13 Aug 2001 10:33:28 +0000 (10:33 +0000)
14 files changed:
src/cat.c
src/comm.c
src/csplit.c
src/cut.c
src/md5sum.c
src/nl.c
src/paste.c
src/pr.c
src/sort.c
src/split.c
src/sum.c
src/tac.c
src/uniq.c
src/wc.c

index 9587f78..11c6008 100644 (file)
--- a/src/cat.c
+++ b/src/cat.c
@@ -38,7 +38,7 @@
 /* The official name of this program (e.g., no `g' prefix).  */
 #define PROGRAM_NAME "cat"
 
-#define AUTHORS "Torbjorn Granlund and Richard M. Stallman"
+#define AUTHORS N_ ("Torbjorn Granlund and Richard M. Stallman")
 
 /* Undefine, to avoid warning about redefinition on some systems.  */
 #undef max
index 3be8e88..e95dfe4 100644 (file)
@@ -32,7 +32,7 @@
 /* The official name of this program (e.g., no `g' prefix).  */
 #define PROGRAM_NAME "comm"
 
-#define AUTHORS "Richard Stallman and David MacKenzie"
+#define AUTHORS N_ ("Richard Stallman and David MacKenzie")
 
 /* Undefine, to avoid warning about redefinition on some systems.  */
 #undef min
index e7e1f34..77182d8 100644 (file)
@@ -40,7 +40,7 @@
 /* The official name of this program (e.g., no `g' prefix).  */
 #define PROGRAM_NAME "csplit"
 
-#define AUTHORS "Stuart Kemp and David MacKenzie"
+#define AUTHORS N_ ("Stuart Kemp and David MacKenzie")
 
 #ifdef STDC_HEADERS
 # include <stdlib.h>
index c613d38..7346bee 100644 (file)
--- a/src/cut.c
+++ b/src/cut.c
@@ -36,7 +36,7 @@
 /* The official name of this program (e.g., no `g' prefix).  */
 #define PROGRAM_NAME "cut"
 
-#define AUTHORS "David Ihnat, David MacKenzie, and Jim Meyering"
+#define AUTHORS N_ ("David Ihnat, David MacKenzie, and Jim Meyering")
 
 #define FATAL_ERROR(Message)                                           \
   do                                                                   \
index 0b44485..92dde2b 100644 (file)
@@ -35,7 +35,7 @@
 /* The official name of this program (e.g., no `g' prefix).  */
 #define PROGRAM_NAME (algorithm == ALG_MD5 ? "md5sum" : "shasum")
 
-#define AUTHORS "Ulrich Drepper and Scott Miller"
+#define AUTHORS N_ ("Ulrich Drepper and Scott Miller")
 
 /* Most systems do not distinguish between external and internal
    text representations.  */
index 26f2e47..4788dd9 100644 (file)
--- a/src/nl.c
+++ b/src/nl.c
@@ -36,7 +36,7 @@
 /* The official name of this program (e.g., no `g' prefix).  */
 #define PROGRAM_NAME "nl"
 
-#define AUTHORS "Scott Bartram and David MacKenzie"
+#define AUTHORS N_ ("Scott Bartram and David MacKenzie")
 
 #ifndef TRUE
 # define TRUE   1
index 7816137..8bd4443 100644 (file)
@@ -47,7 +47,7 @@
 /* The official name of this program (e.g., no `g' prefix).  */
 #define PROGRAM_NAME "paste"
 
-#define AUTHORS "David M. Ihnat and David MacKenzie"
+#define AUTHORS N_ ("David M. Ihnat and David MacKenzie")
 
 /* Indicates that no delimiter should be added in the current position. */
 #define EMPTY_DELIM '\0'
index 5c5b96a..9eb13f8 100644 (file)
--- a/src/pr.c
+++ b/src/pr.c
 /* The official name of this program (e.g., no `g' prefix).  */
 #define PROGRAM_NAME "pr"
 
-#define AUTHORS "Pete TerMaat and Roland Huebner"
+#define AUTHORS N_ ("Pete TerMaat and Roland Huebner")
 
 #ifndef TRUE
 # define TRUE  1
index 383b038..1f59a9b 100644 (file)
@@ -50,7 +50,7 @@ struct rlimit { size_t rlim_cur; };
 /* The official name of this program (e.g., no `g' prefix).  */
 #define PROGRAM_NAME "sort"
 
-#define AUTHORS "Mike Haertel and Paul Eggert"
+#define AUTHORS N_ ("Mike Haertel and Paul Eggert")
 
 #if defined ENABLE_NLS && HAVE_LANGINFO_H
 # include <langinfo.h>
index c4823cc..7e31b0a 100644 (file)
@@ -36,7 +36,7 @@
 /* The official name of this program (e.g., no `g' prefix).  */
 #define PROGRAM_NAME "split"
 
-#define AUTHORS "Torbjorn Granlund and Richard M. Stallman"
+#define AUTHORS N_ ("Torbjorn Granlund and Richard M. Stallman")
 
 int full_write ();
 
index 7af18a5..4ffadd4 100644 (file)
--- a/src/sum.c
+++ b/src/sum.c
@@ -32,7 +32,7 @@
 /* The official name of this program (e.g., no `g' prefix).  */
 #define PROGRAM_NAME "sum"
 
-#define AUTHORS "Kayvan Aghaiepour and David MacKenzie"
+#define AUTHORS N_ ("Kayvan Aghaiepour and David MacKenzie")
 
 /* The name this program was run with. */
 char *program_name;
index 56ae74d..7b06de7 100644 (file)
--- a/src/tac.c
+++ b/src/tac.c
@@ -51,7 +51,7 @@ tac -r -s '.\|
 /* The official name of this program (e.g., no `g' prefix).  */
 #define PROGRAM_NAME "tac"
 
-#define AUTHORS "Jay Lepreau and David MacKenzie"
+#define AUTHORS N_ ("Jay Lepreau and David MacKenzie")
 
 #if defined __MSDOS__ || defined _WIN32
 /* Define this to non-zero on systems for which the regular mechanism
index e58422b..f46bdaa 100644 (file)
@@ -34,7 +34,7 @@
 /* The official name of this program (e.g., no `g' prefix).  */
 #define PROGRAM_NAME "uniq"
 
-#define AUTHORS "Richard Stallman and David MacKenzie"
+#define AUTHORS N_ ("Richard Stallman and David MacKenzie")
 
 #define SWAP_LINES(A, B)                       \
   do                                           \
index c6e447c..5248acd 100644 (file)
--- a/src/wc.c
+++ b/src/wc.c
@@ -71,7 +71,7 @@ extern int wcwidth ();
 /* The official name of this program (e.g., no `g' prefix).  */
 #define PROGRAM_NAME "wc"
 
-#define AUTHORS "Paul Rubin and David MacKenzie"
+#define AUTHORS N_ ("Paul Rubin and David MacKenzie")
 
 /* Size of atomic reads. */
 #define BUFFER_SIZE (16 * 1024)