// -*- mode: cpp; mode: fold -*-
// Description /*{{{*/
-// $Id: apt-config.cc,v 1.7 2001/02/20 07:03:17 jgg Exp $
+// $Id: apt-config.cc,v 1.10 2002/11/09 17:11:25 doogie Exp $
/* ######################################################################
APT Config - Program to manipulate APT configuration files
#include <config.h>
#include <apti18n.h>
-
+
+#include <locale.h>
#include <iostream>
#include <string>
/*}}}*/
/* */
bool DoDump(CommandLine &CmdL)
{
- _config->Dump();
+ _config->Dump(cout);
return true;
}
/*}}}*/
CommandLine::Dispatch Cmds[] = {{"shell",&DoShell},
{"dump",&DoDump},
{0,0}};
-
+
+ // Set up gettext support
+ setlocale(LC_ALL,"");
+ textdomain(PACKAGE);
+
// Parse the command line and initialize the package library
CommandLine CmdL(Args,_config);
if (pkgInitConfig(*_config) == false ||