(change_attributes): Enclose diagnostic in _(...).
authorJim Meyering <jim@meyering.net>
Fri, 11 Jul 2003 11:10:53 +0000 (11:10 +0000)
committerJim Meyering <jim@meyering.net>
Fri, 11 Jul 2003 11:10:53 +0000 (11:10 +0000)
src/install.c

index bcad6b6..c22a9db 100644 (file)
@@ -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;
     }