summaryrefslogtreecommitdiff
path: root/cmdline/apt-sortpkgs.cc
diff options
context:
space:
mode:
authorArch Librarian <arch@canonical.com>2004-09-20 16:58:51 +0000
committerArch Librarian <arch@canonical.com>2004-09-20 16:58:51 +0000
commit67111687c005d470d176a2029336e4f2b5dc77de (patch)
treee4a062ecfec4ec50ad89ee81e5a2669229b4b4b2 /cmdline/apt-sortpkgs.cc
parentc908c48e2be92df532dbbf1f15557308ee1c555b (diff)
setup textdomain/etc for i18n stuff
Author: jgg Date: 2002-01-09 04:59:44 GMT setup textdomain/etc for i18n stuff
Diffstat (limited to 'cmdline/apt-sortpkgs.cc')
-rw-r--r--cmdline/apt-sortpkgs.cc8
1 files changed, 6 insertions, 2 deletions
diff --git a/cmdline/apt-sortpkgs.cc b/cmdline/apt-sortpkgs.cc
index bacaf01dd..fe5fe13dd 100644
--- a/cmdline/apt-sortpkgs.cc
+++ b/cmdline/apt-sortpkgs.cc
@@ -1,6 +1,6 @@
// -*- mode: cpp; mode: fold -*-
// Description /*{{{*/
-// $Id: apt-sortpkgs.cc,v 1.2 2001/02/20 07:03:17 jgg Exp $
+// $Id: apt-sortpkgs.cc,v 1.3 2002/01/09 04:59:44 jgg Exp $
/* ######################################################################
APT Sort Packages - Program to sort Package and Source files
@@ -168,7 +168,11 @@ int main(unsigned int argc,const char *argv[])
{'c',"config-file",0,CommandLine::ConfigFile},
{'o',"option",0,CommandLine::ArbItem},
{0,0,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 ||