]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
Mark translatable strings.
authorJim Meyering <jim@meyering.net>
Tue, 30 Apr 1996 03:20:38 +0000 (03:20 +0000)
committerJim Meyering <jim@meyering.net>
Tue, 30 Apr 1996 03:20:38 +0000 (03:20 +0000)
src/chroot.c

index 96bd732c3818932a8f8af37afa40b8bc21ae20b5..e630a00f5c65c29991dceb624a9597582e498c0d 100644 (file)
@@ -65,7 +65,7 @@ main (int argc, char **argv)
     }
 
   if (chroot (argv[1]))
-    error (1, errno, "cannot change root directory to %s", argv[1]);
+    error (1, errno, _("cannot change root directory to %s"), argv[1]);
 
   if (argc == 2)
     {
@@ -82,7 +82,7 @@ main (int argc, char **argv)
 
   /* Execute the given command.  */
   execvp (argv[0], argv);
-  error (1, errno, "cannot execute %s", argv[0]);
+  error (1, errno, _("cannot execute %s"), argv[0]);
 
   exit (1);
   return 1;