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-cdrom.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-cdrom.cc')
-rw-r--r-- | cmdline/apt-cdrom.cc | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/cmdline/apt-cdrom.cc b/cmdline/apt-cdrom.cc index 8266bdcfb..d8c717407 100644 --- a/cmdline/apt-cdrom.cc +++ b/cmdline/apt-cdrom.cc @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: apt-cdrom.cc,v 1.40 2001/08/18 22:23:38 jgg Exp $ +// $Id: apt-cdrom.cc,v 1.41 2002/01/09 04:59:44 jgg Exp $ /* ###################################################################### APT CDROM - Tool for handling APT's CDROM database. @@ -776,7 +776,11 @@ int main(int argc,const char *argv[]) {"add",&DoAdd}, {"ident",&DoIdent}, {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 || |