diff options
-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; } |