summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1996-04-30 03:20:38 +0000
committerJim Meyering <jim@meyering.net>1996-04-30 03:20:38 +0000
commita3c143bd822da67ec246da237fa4b4d103007152 (patch)
treec541645cc759e163efc79228aefdad8747bd260f
parent07e148c8e712d0ede4b18aab3b8452d441824189 (diff)
downloadcoreutils-a3c143bd822da67ec246da237fa4b4d103007152.tar.xz
Mark translatable strings.
-rw-r--r--src/chroot.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/chroot.c b/src/chroot.c
index 96bd732c3..e630a00f5 100644
--- a/src/chroot.c
+++ b/src/chroot.c
@@ -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;