From: Otavio Salvador <otavio@ossystems.com.br>
Date: Thu, 25 Oct 2007 11:25:02 +0000 (-0200)
Subject: * Applied patch from Daniel Leidert <daniel.leidert@wgdd.de> to fix
X-Git-Tag: 0.7.24ubuntu1~120^2~24
X-Git-Url: https://git.saurik.com/apt.git/commitdiff_plain/c5597900026cf124654b808c800c4731a2eb655c

* Applied patch from Daniel Leidert <daniel.leidert@wgdd.de> to fix
  APT::Acquire::Translation "none" support, closes: #437523.
---

diff --git a/apt-pkg/init.cc b/apt-pkg/init.cc
index 2b412e16b..338bef66c 100644
--- a/apt-pkg/init.cc
+++ b/apt-pkg/init.cc
@@ -72,7 +72,10 @@ bool pkgInitConfig(Configuration &Cnf)
    // State   
    Cnf.Set("Dir::Log","var/log/apt");
    Cnf.Set("Dir::Log::Terminal","term.log");
-   
+
+   // Translation
+   Cnf.Set("APT::Acquire::Translation", "environment");
+
    bool Res = true;
    
    // Read an alternate config file
@@ -104,9 +107,6 @@ bool pkgInitConfig(Configuration &Cnf)
    }
 #endif
 
-   // Translation
-   Cnf.Set("APT::Acquire::Translation", "environment");
-   
    return true;
 }
 									/*}}}*/
diff --git a/debian/changelog b/debian/changelog
index 22e966f0f..df7b029d6 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+apt (0.7.8) UNRELEASED; urgency=low
+
+  * Applied patch from Daniel Leidert <daniel.leidert@wgdd.de> to fix
+    APT::Acquire::Translation "none" support, closes: #437523.
+
+ -- Otavio Salvador <otavio@ossystems.com.br>  Thu, 25 Oct 2007 09:24:56 -0200
+
 apt (0.7.7) UNRELEASED; urgency=low
 
   [ Michael Vogt ]