diff options
author | Jim Meyering <jim@meyering.net> | 1996-02-17 03:42:26 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1996-02-17 03:42:26 +0000 |
commit | 73d5e9c5dda66c2d1a3a51d7fed1c237cee84373 (patch) | |
tree | df36c62ebfde084fe8c7ded261ae20b559f69927 | |
parent | daf7870cb011cf6ce6656f7954c1b7b09a4d8535 (diff) | |
download | coreutils-73d5e9c5dda66c2d1a3a51d7fed1c237cee84373.tar.xz |
Mark a few error strings for translation.
From Franc,ois Pinard.
-rw-r--r-- | src/join.c | 4 | ||||
-rw-r--r-- | src/md5sum.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/join.c b/src/join.c index 5f5e3a1b5..8e00a7a5d 100644 --- a/src/join.c +++ b/src/join.c @@ -812,7 +812,7 @@ main (int argc, char **argv) if (nfiles > 1) { - error (0, 0, "too many non-option arguments"); + error (0, 0, _("too many non-option arguments")); usage (1); } names[nfiles++] = optarg; @@ -830,7 +830,7 @@ main (int argc, char **argv) if (nfiles != 2) { - error (0, 0, "too few non-option arguments"); + error (0, 0, _("too few non-option arguments")); usage (1); } diff --git a/src/md5sum.c b/src/md5sum.c index 4895e2376..0329d8dfe 100644 --- a/src/md5sum.c +++ b/src/md5sum.c @@ -337,7 +337,7 @@ md5_check (const char *checkfile_name, int binary) if (ferror (checkfile_stream)) { - error (0, 0, "%s: read error", checkfile_name); + error (0, 0, _("%s: read error"), checkfile_name); return 1; } |