X-Git-Url: https://git.saurik.com/apt.git/blobdiff_plain/8c4bad46d421a38bee98a6979389764bc55d8979..e0c4f06387ade5761e644b5b96e41284c12da23c:/apt-pkg/init.cc diff --git a/apt-pkg/init.cc b/apt-pkg/init.cc index 5a2e6761f..6118845e8 100644 --- a/apt-pkg/init.cc +++ b/apt-pkg/init.cc @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: init.cc,v 1.18 2002/10/16 05:21:33 jgg Exp $ +// $Id: init.cc,v 1.21 2004/02/27 00:46:44 mdz Exp $ /* ###################################################################### Init - Initialize the package library @@ -94,11 +94,16 @@ bool pkgInitConfig(Configuration &Cnf) if (Cnf.FindB("Debug::pkgInitConfig",false) == true) Cnf.Dump(); +#ifdef APT_DOMAIN if (Cnf.Exists("Dir::Locale")) { - bindtextdomain(DOMAIN,Cnf.FindDir("Dir::Locale").c_str()); + bindtextdomain(APT_DOMAIN,Cnf.FindDir("Dir::Locale").c_str()); bindtextdomain(textdomain(0),Cnf.FindDir("Dir::Locale").c_str()); } +#endif + + // Translation + Cnf.Set("APT::Acquire::Translation", "environment"); return true; } @@ -130,7 +135,7 @@ bool pkgInitSystem(Configuration &Cnf,pkgSystem *&Sys) } if (Sys == 0) - return _error->Error(_("Unable to determine a suitable system type")); + return _error->Error(_("Unable to determine a suitable packaging system type")); } return Sys->Initialize(Cnf);