From 73d5e9c5dda66c2d1a3a51d7fed1c237cee84373 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Sat, 17 Feb 1996 03:42:26 +0000 Subject: [PATCH] Mark a few error strings for translation. From Franc,ois Pinard. --- src/join.c | 4 ++-- src/md5sum.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/join.c b/src/join.c index 5f5e3a1b54..8e00a7a5d3 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 4895e23768..0329d8dfeb 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; } -- 2.47.3