]> err.no Git - dpkg/commitdiff
Mark strings for translation.
authorGuillem Jover <guillem@debian.org>
Tue, 14 Aug 2007 01:41:48 +0000 (04:41 +0300)
committerGuillem Jover <guillem@debian.org>
Tue, 14 Aug 2007 02:23:23 +0000 (05:23 +0300)
ChangeLog
src/archives.c

index 4282bbff8cb54461acfcc549075f27595d5f3d20..d1f5f4b3a41f76406ea9e2909ddd03c8c405ee21 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2007-08-14  Guillem Jover  <guillem@debian.org>
+
+       * src/archives.c (linktosameexistingdir): Mark strings for translation.
+
 2007-08-11  Ian Jackson  <iwj@ubuntu.com>
 
        * src/archives.c (linktosameexistingdir): New function.
index 796c65a70d8cdf7f691db3608ef34cbb34c2cfa3..9085e6152f0da2be58b37003720208039ded4515 100644 (file)
@@ -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;