diff options
author | Jim Meyering <jim@meyering.net> | 2003-07-11 11:10:53 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2003-07-11 11:10:53 +0000 |
commit | 1dae2a560aaca7f2f9f214a5e0bd607cc3e175aa (patch) | |
tree | 4caa5857821dc4d36fe99046f52ee5079ec0566d /src | |
parent | 208b8da666a763b70b4ab3a9fe29ea81bced8d72 (diff) | |
download | coreutils-1dae2a560aaca7f2f9f214a5e0bd607cc3e175aa.tar.xz |
(change_attributes): Enclose diagnostic in _(...).
Diffstat (limited to 'src')
-rw-r--r-- | src/install.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/install.c b/src/install.c index bcad6b662..c22a9dbaa 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; } |