]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
Mark a few error strings for translation.
authorJim Meyering <jim@meyering.net>
Sat, 17 Feb 1996 03:42:26 +0000 (03:42 +0000)
committerJim Meyering <jim@meyering.net>
Sat, 17 Feb 1996 03:42:26 +0000 (03:42 +0000)
From Franc,ois Pinard.

src/join.c
src/md5sum.c

index 5f5e3a1b543d83b8dd3a46ce963b640507eab9aa..8e00a7a5d3b3823d973c5095c9d5f05e21cc367d 100644 (file)
@@ -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);
     }
 
index 4895e23768bb552788326e6618dfe26cdd12a991..0329d8dfebc5449269e6e0399b326fa398674615 100644 (file)
@@ -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;
     }