From: Jim Meyering Date: Fri, 11 Jul 2003 11:10:53 +0000 (+0000) Subject: (change_attributes): Enclose diagnostic in _(...). X-Git-Tag: COREUTILS-5_0_1~96 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1dae2a560aaca7f2f9f214a5e0bd607cc3e175aa;p=platform%2Fupstream%2Fcoreutils.git (change_attributes): Enclose diagnostic in _(...). --- 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; }