From: Jim Meyering Date: Tue, 30 Apr 1996 03:20:38 +0000 (+0000) Subject: Mark translatable strings. X-Git-Tag: TEXTUTILS-1_14d~38 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a3c143bd822da67ec246da237fa4b4d103007152;p=thirdparty%2Fcoreutils.git Mark translatable strings. --- 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;