diff options
author | Guillem Jover <guillem@debian.org> | 2007-08-14 04:41:48 +0300 |
---|---|---|
committer | Guillem Jover <guillem@debian.org> | 2007-08-14 05:23:23 +0300 |
commit | 0f30749238d3c4872dfb747f7727db522cb55ab7 (patch) | |
tree | 6fa43b3081bcd1c89d8d38be08a97e8d98f3f394 /src | |
parent | bda692a3d5387cf14cc3c75c7ed9f20fa8e7c085 (diff) | |
download | dpkg-0f30749238d3c4872dfb747f7727db522cb55ab7.tar.gz |
Mark strings for translation.
Diffstat (limited to 'src')
-rw-r--r-- | src/archives.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/archives.c b/src/archives.c index 796c65a70..9085e6152 100644 --- a/src/archives.c +++ b/src/archives.c @@ -336,7 +336,8 @@ static int linktosameexistingdir(const struct TarInfo *ti, statr= stat(fname, &oldstab); if (statr) { if (!(errno == ENOENT || errno == ELOOP || errno == ENOTDIR)) - ohshite("failed to stat (dereference) existing symlink `%.250s'", fname); + ohshite(_("failed to stat (dereference) existing symlink `%.250s'"), + fname); return 0; } if (!S_ISDIR(oldstab.st_mode)) return 0; @@ -356,8 +357,8 @@ static int linktosameexistingdir(const struct TarInfo *ti, statr= stat(symlinkfn->buf, &newstab); if (statr) { if (!(errno == ENOENT || errno == ELOOP || errno == ENOTDIR)) - ohshite("failed to stat (dereference) proposed new symlink target" - " `%.250s' for symlink `%.250s'", symlinkfn->buf, fname); + ohshite(_("failed to stat (dereference) proposed new symlink target" + " `%.250s' for symlink `%.250s'"), symlinkfn->buf, fname); return 0; } if (!S_ISDIR(newstab.st_mode)) return 0; |