]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/init.cc
* added gpgv::Options to configure-index
[apt.git] / apt-pkg / init.cc
index 3c702af9b7b6a12e41730383c53fc6be83fe3548..f4b816c0be468c11b7818a2905e4e8b74ff72c3c 100644 (file)
@@ -1,6 +1,6 @@
 // -*- mode: cpp; mode: fold -*-
 // Description                                                         /*{{{*/
-// $Id: init.cc,v 1.17 2001/12/05 07:22:39 tausq Exp $
+// $Id: init.cc,v 1.21 2004/02/27 00:46:44 mdz Exp $
 /* ######################################################################
 
    Init - Initialize the package library
@@ -93,7 +93,15 @@ bool pkgInitConfig(Configuration &Cnf)
    
    if (Cnf.FindB("Debug::pkgInitConfig",false) == true)
       Cnf.Dump();
-      
+   
+#ifdef APT_DOMAIN
+   if (Cnf.Exists("Dir::Locale"))
+   {  
+      bindtextdomain(APT_DOMAIN,Cnf.FindDir("Dir::Locale").c_str());
+      bindtextdomain(textdomain(0),Cnf.FindDir("Dir::Locale").c_str());
+   }
+#endif
+   
    return true;
 }
                                                                        /*}}}*/
@@ -124,7 +132,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);