From a3c143bd822da67ec246da237fa4b4d103007152 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Tue, 30 Apr 1996 03:20:38 +0000 Subject: [PATCH] Mark translatable strings. --- src/chroot.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/chroot.c b/src/chroot.c index 96bd732c38..e630a00f5c 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; -- 2.47.2