diff options
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; } |