From 1dae2a560aaca7f2f9f214a5e0bd607cc3e175aa Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Fri, 11 Jul 2003 11:10:53 +0000 Subject: [PATCH] (change_attributes): Enclose diagnostic in _(...). --- src/install.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/install.c b/src/install.c index bcad6b6..c22a9db 100644 --- a/src/install.c +++ b/src/install.c @@ -469,13 +469,13 @@ change_attributes (const char *path) #endif ) { - error (0, errno, "cannot change ownership of %s", quote (path)); + error (0, errno, _("cannot change ownership of %s"), quote (path)); err = 1; } if (!err && chmod (path, mode)) { - error (0, errno, "cannot change permissions of %s", quote (path)); + error (0, errno, _("cannot change permissions of %s"), quote (path)); err = 1; } -- 2.7.4