diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 16:58:51 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 16:58:51 +0000 |
commit | 67111687c005d470d176a2029336e4f2b5dc77de (patch) | |
tree | e4a062ecfec4ec50ad89ee81e5a2669229b4b4b2 /cmdline/apt-get.cc | |
parent | c908c48e2be92df532dbbf1f15557308ee1c555b (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-get.cc')
-rw-r--r-- | cmdline/apt-get.cc | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/cmdline/apt-get.cc b/cmdline/apt-get.cc index a3dc92816..2eb670064 100644 --- a/cmdline/apt-get.cc +++ b/cmdline/apt-get.cc @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: apt-get.cc,v 1.112 2001/12/05 07:22:40 tausq Exp $ +// $Id: apt-get.cc,v 1.113 2002/01/09 04:59:44 jgg Exp $ /* ###################################################################### apt-get - Cover for dpkg @@ -2149,11 +2149,15 @@ int main(int argc,const char *argv[]) {"clean",&DoClean}, {"autoclean",&DoAutoClean}, {"check",&DoCheck}, - {"source",&DoSource}, + {"source",&DoSource}, {"moo",&DoMoo}, - {"help",&ShowHelp}, + {"help",&ShowHelp}, {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 || |