]> git.saurik.com Git - apt.git/commitdiff
merged from lp:~mvo/apt/mvo (that has all the changes from debian-experimental2)...
authorMichael Vogt <michael.vogt@ubuntu.com>
Thu, 10 Nov 2011 15:56:21 +0000 (16:56 +0100)
committerMichael Vogt <michael.vogt@ubuntu.com>
Thu, 10 Nov 2011 15:56:21 +0000 (16:56 +0100)
18 files changed:
1  2 
apt-pkg/deb/dpkgpm.cc
apt-pkg/depcache.cc
cmdline/apt-get.cc
cmdline/apt-key
debian/changelog
debian/control
debian/rules
doc/po/apt-doc.pot
doc/po/de.po
doc/po/es.po
doc/po/fr.po
doc/po/it.po
doc/po/ja.po
doc/po/pl.po
doc/po/pt.po
doc/po/pt_BR.po
po/apt-all.pot
test/integration/test-bug-618288-multiarch-same-lockstep

diff --combined apt-pkg/deb/dpkgpm.cc
index 61927ff6856bbc19310697e713052792bf776713,7c0ed56398ce2f8b149f7919c1f30b0217cf742b..4a1bf42d5d60998449502ff511616904474a8ec9
@@@ -8,6 -8,8 +8,8 @@@
     ##################################################################### */
                                                                        /*}}}*/
  // Includes                                                           /*{{{*/
+ #include <config.h>
  #include <apt-pkg/dpkgpm.h>
  #include <apt-pkg/error.h>
  #include <apt-pkg/configuration.h>
@@@ -16,6 -18,7 +18,7 @@@
  #include <apt-pkg/strutl.h>
  #include <apt-pkg/fileutl.h>
  #include <apt-pkg/cachefile.h>
+ #include <apt-pkg/packagemanager.h>
  
  #include <unistd.h>
  #include <stdlib.h>
@@@ -26,6 -29,7 +29,6 @@@
  #include <sys/wait.h>
  #include <signal.h>
  #include <errno.h>
 -#include <string.h>
  #include <stdio.h>
  #include <string.h>
  #include <algorithm>
@@@ -39,7 -43,6 +42,6 @@@
  #include <sys/ioctl.h>
  #include <pty.h>
  
- #include <config.h>
  #include <apti18n.h>
                                                                        /*}}}*/
  
@@@ -902,6 -905,28 +904,28 @@@ bool pkgDPkgPM::Go(int OutStatusFd
     // create log
     OpenLog();
  
+    // Generate the base argument list for dpkg
+    std::vector<const char *> Args;
+    unsigned long StartSize = 0;
+    string const Tmp = _config->Find("Dir::Bin::dpkg","dpkg");
+    Args.push_back(Tmp.c_str());
+    StartSize += Tmp.length();
+    // Stick in any custom dpkg options
+    Configuration::Item const *Opts = _config->Tree("DPkg::Options");
+    if (Opts != 0)
+    {
+       Opts = Opts->Child;
+       for (; Opts != 0; Opts = Opts->Next)
+       {
+        if (Opts->Value.empty() == true)
+           continue;
+        Args.push_back(Opts->Value.c_str());
+        StartSize += Opts->Value.length();
+       }
+    }
+    size_t const BaseArgs = Args.size();
     // this loop is runs once per operation
     for (vector<Item>::const_iterator I = List.begin(); I != List.end();)
     {
         for (; J != List.end() && J->Op == I->Op; ++J)
            /* nothing */;
  
-       // Generate the argument list
-       const char *Args[MaxArgs + 50];
        // keep track of allocated strings for multiarch package names
-       char *Packages[MaxArgs + 50];
-       unsigned int pkgcount = 0;
+       std::vector<char *> Packages;
+       // start with the baseset of arguments
+       unsigned long Size = StartSize;
+       Args.erase(Args.begin() + BaseArgs, Args.end());
  
        // Now check if we are within the MaxArgs limit
        //
        // the argument list is split in a way that A depends on B
        // and they are in the same "--configure A B" run
        // - with the split they may now be configured in different
-       //   runs 
+       //   runs, using Immediate-Configure-All can help prevent this.
        if (J - I > (signed)MaxArgs)
+       {
         J = I + MaxArgs;
-       
-       unsigned int n = 0;
-       unsigned long Size = 0;
-       string const Tmp = _config->Find("Dir::Bin::dpkg","dpkg");
-       Args[n++] = Tmp.c_str();
-       Size += strlen(Args[n-1]);
-       
-       // Stick in any custom dpkg options
-       Configuration::Item const *Opts = _config->Tree("DPkg::Options");
-       if (Opts != 0)
+        Args.reserve(MaxArgs + 10);
+       }
+       else
        {
-        Opts = Opts->Child;
-        for (; Opts != 0; Opts = Opts->Next)
-        {
-           if (Opts->Value.empty() == true)
-              continue;
-           Args[n++] = Opts->Value.c_str();
-           Size += Opts->Value.length();
-        }       
+        Args.reserve((J - I) + 10);
        }
        
-       char status_fd_buf[20];
        int fd[2];
        pipe(fd);
-       
-       Args[n++] = "--status-fd";
-       Size += strlen(Args[n-1]);
+ #define ADDARG(X) Args.push_back(X); Size += strlen(X)
+ #define ADDARGC(X) Args.push_back(X); Size += sizeof(X) - 1
+       ADDARGC("--status-fd");
+       char status_fd_buf[20];
        snprintf(status_fd_buf,sizeof(status_fd_buf),"%i", fd[1]);
-       Args[n++] = status_fd_buf;
-       Size += strlen(Args[n-1]);
+       ADDARG(status_fd_buf);
+       unsigned long const Op = I->Op;
  
        switch (I->Op)
        {
         case Item::Remove:
-        Args[n++] = "--force-depends";
-        Size += strlen(Args[n-1]);
-        Args[n++] = "--force-remove-essential";
-        Size += strlen(Args[n-1]);
-        Args[n++] = "--remove";
-        Size += strlen(Args[n-1]);
+        ADDARGC("--force-depends");
+        ADDARGC("--force-remove-essential");
+        ADDARGC("--remove");
         break;
         
         case Item::Purge:
-        Args[n++] = "--force-depends";
-        Size += strlen(Args[n-1]);
-        Args[n++] = "--force-remove-essential";
-        Size += strlen(Args[n-1]);
-        Args[n++] = "--purge";
-        Size += strlen(Args[n-1]);
+        ADDARGC("--force-depends");
+        ADDARGC("--force-remove-essential");
+        ADDARGC("--purge");
         break;
         
         case Item::Configure:
-        Args[n++] = "--configure";
-        Size += strlen(Args[n-1]);
+        ADDARGC("--configure");
         break;
  
         case Item::ConfigurePending:
-        Args[n++] = "--configure";
-        Size += strlen(Args[n-1]);
-        Args[n++] = "--pending";
-        Size += strlen(Args[n-1]);
+        ADDARGC("--configure");
+        ADDARGC("--pending");
         break;
  
         case Item::TriggersPending:
-        Args[n++] = "--triggers-only";
-        Size += strlen(Args[n-1]);
-        Args[n++] = "--pending";
-        Size += strlen(Args[n-1]);
+        ADDARGC("--triggers-only");
+        ADDARGC("--pending");
         break;
  
         case Item::Install:
-        Args[n++] = "--unpack";
-        Size += strlen(Args[n-1]);
-        Args[n++] = "--auto-deconfigure";
-        Size += strlen(Args[n-1]);
+        ADDARGC("--unpack");
+        ADDARGC("--auto-deconfigure");
         break;
        }
  
        if (NoTriggers == true && I->Op != Item::TriggersPending &&
          I->Op != Item::ConfigurePending)
        {
-        Args[n++] = "--no-triggers";
-        Size += strlen(Args[n-1]);
+        ADDARGC("--no-triggers");
        }
+ #undef ADDARGC
  
        // Write in the file or package names
        if (I->Op == Item::Install)
         {
            if (I->File[0] != '/')
               return _error->Error("Internal Error, Pathname to install is not absolute '%s'",I->File.c_str());
-           Args[n++] = I->File.c_str();
-           Size += strlen(Args[n-1]);
+           Args.push_back(I->File.c_str());
+           Size += I->File.length();
         }
-       }      
+       }
        else
        {
         string const nativeArch = _config->Find("APT::Architecture");
            if (I->Op == Item::Configure && disappearedPkgs.find(I->Pkg.Name()) != disappearedPkgs.end())
               continue;
            if (I->Pkg.Arch() == nativeArch || !strcmp(I->Pkg.Arch(), "all"))
-              Args[n++] = I->Pkg.Name();
+           {
+              char const * const name = I->Pkg.Name();
+              ADDARG(name);
+           }
            else
            {
-              Packages[pkgcount] = strdup(I->Pkg.FullName(false).c_str());
-              Args[n++] = Packages[pkgcount++];
+              char * const fullname = strdup(I->Pkg.FullName(false).c_str());
+              Packages.push_back(fullname);
+              ADDARG(fullname);
            }
-           Size += strlen(Args[n-1]);
         }
         // skip configure action if all sheduled packages disappeared
         if (oldSize == Size)
            continue;
        }
-       Args[n] = 0;
+ #undef ADDARG
        J = I;
        
        if (_config->FindB("Debug::pkgDPkgPM",false) == true)
        {
-        for (unsigned int k = 0; k != n; k++)
-           clog << Args[k] << ' ';
+        for (std::vector<const char *>::const_iterator a = Args.begin();
+             a != Args.end(); ++a)
+           clog << *a << ' ';
         clog << endl;
         continue;
        }
-       
+       Args.push_back(NULL);
        cout << flush;
        clog << flush;
        cerr << flush;
         it to all processes in the group. Since dpkg ignores the signal 
         it doesn't die but we do! So we must also ignore it */
        sighandler_t old_SIGQUIT = signal(SIGQUIT,SIG_IGN);
-       sighandler_t old_SIGINT = signal(SIGINT,SIG_IGN);
+       sighandler_t old_SIGINT = signal(SIGINT,SigINT);
+       
+       // Check here for any SIGINT
+       if (pkgPackageManager::SigINTStop && (Op == Item::Remove || Op == Item::Purge || Op == Item::Install)) 
+          break;
+       
+       
        // ignore SIGHUP as well (debian #463030)
        sighandler_t old_SIGHUP = signal(SIGHUP,SIG_IGN);
  
            sigprocmask(SIG_SETMASK, &original_sigmask, 0);
         }
        }
         // Fork dpkg
        pid_t Child;
        _config->Set("APT::Keep-Fds::",fd[1]);
         /* No Job Control Stop Env is a magic dpkg var that prevents it
            from using sigstop */
         putenv((char *)"DPKG_NO_TSTP=yes");
-        execvp(Args[0],(char **)Args);
+        execvp(Args[0], (char**) &Args[0]);
         cerr << "Could not exec dpkg!" << endl;
         _exit(100);
        }      
        sigemptyset(&sigmask);
        sigprocmask(SIG_BLOCK,&sigmask,&original_sigmask);
  
-       /* clean up the temporary allocation for multiarch package names in
-          the parent, so we don't leak memory when we return. */
-       for (unsigned int i = 0; i < pkgcount; i++)
-        free(Packages[i]);
+       /* free vectors (and therefore memory) as we don't need the included data anymore */
+       for (std::vector<char *>::const_iterator p = Packages.begin();
+          p != Packages.end(); ++p)
+        free(*p);
+       Packages.clear();
  
        // the result of the waitpid call
        int res;
            // Restore sig int/quit
            signal(SIGQUIT,old_SIGQUIT);
            signal(SIGINT,old_SIGINT);
            signal(SIGHUP,old_SIGHUP);
            return _error->Errno("waitpid","Couldn't wait for subprocess");
         }
        // Restore sig int/quit
        signal(SIGQUIT,old_SIGQUIT);
        signal(SIGINT,old_SIGINT);
+       
        signal(SIGHUP,old_SIGHUP);
  
        if(master >= 0) 
        }      
     }
     CloseLog();
+    
+    if (pkgPackageManager::SigINTStop)
+        _error->Warning(_("Operation was interrupted before it could finish"));
  
     if (RunScripts("DPkg::Post-Invoke") == false)
        return false;
     Cache.writeStateFile(NULL);
     return true;
  }
+ void SigINT(int sig) {
+    if (_config->FindB("APT::Immediate-Configure-All",false)) 
+       pkgPackageManager::SigINTStop = true;
+ } 
                                                                        /*}}}*/
  // pkgDpkgPM::Reset - Dump the contents of the command list           /*{{{*/
  // ---------------------------------------------------------------------
@@@ -1341,7 -1365,7 +1364,7 @@@ void pkgDPkgPM::WriteApportReport(cons
     string::size_type pos;
     FILE *report;
  
 -   if (_config->FindB("Dpkg::ApportFailureReport", false) == false)
 +   if (_config->FindB("Dpkg::ApportFailureReport", true) == false)
     {
        std::clog << "configured to not write apport reports" << std::endl;
        return;
     }
  
     // do not report out-of-memory failures 
 -   if(strstr(errormsg, strerror(ENOMEM)) != NULL) {
 +   if(strstr(errormsg, strerror(ENOMEM)) != NULL ||
 +      strstr(errormsg, "failed to allocate memory") != NULL) {
        std::clog << _("No apport report written because the error message indicates a out of memory error") << std::endl;
        return;
     }
  
 -   // do not report dpkg I/O errors
 -   // XXX - this message is localized, but this only matches the English version.  This is better than nothing.
 -   if(strstr(errormsg, "short read in buffer_copy (")) {
 -      std::clog << _("No apport report written because the error message indicates a dpkg I/O error") << std::endl;
 +   // do not report bugs regarding inaccessible local files
 +   if(strstr(errormsg, strerror(ENOENT)) != NULL ||
 +      strstr(errormsg, "cannot access archive") != NULL) {
 +      std::clog << _("No apport report written because the error message indicates an issue on the local system") << std::endl;
 +      return;
 +   }
 +
 +   // do not report errors encountered when decompressing packages
 +   if(strstr(errormsg, "--fsys-tarfile returned error exit status 2") != NULL) {
 +      std::clog << _("No apport report written because the error message indicates an issue on the local system") << std::endl;
        return;
     }
  
 +   // do not report dpkg I/O errors, this is a format string, so we compare
 +   // the prefix and the suffix of the error with the dpkg error message
 +   vector<string> io_errors;
 +   io_errors.push_back(string("failed to read on buffer copy for %s"));
 +   io_errors.push_back(string("failed in write on buffer copy for %s"));
 +   io_errors.push_back(string("short read on buffer copy for %s"));
 +
 +   for (vector<string>::iterator I = io_errors.begin(); I != io_errors.end(); I++)
 +   {
 +      vector<string> list = VectorizeString(dgettext("dpkg", (*I).c_str()), '%');
 +      if (list.size() > 1) {
 +         // we need to split %s, VectorizeString only allows char so we need
 +         // to kill the "s" manually
 +         if (list[1].size() > 1) {
 +            list[1].erase(0, 1);
 +            if(strstr(errormsg, list[0].c_str()) && 
 +               strstr(errormsg, list[1].c_str())) {
 +               std::clog << _("No apport report written because the error message indicates a dpkg I/O error") << std::endl;
 +               return;
 +            }
 +         }
 +      }
 +   }
 +
     // get the pkgname and reportfile
     pkgname = flNotDir(pkgpath);
     pos = pkgname.find('_');
        fprintf(report, "DpkgTerminalLog:\n");
        log = fopen(logfile_name.c_str(),"r");
        if(log != NULL)
 +      {
 +       while( fgets(buf, sizeof(buf), log) != NULL)
 +          fprintf(report, " %s", buf);
 +         fprintf(report, " \n");
 +       fclose(log);
 +      }
 +   }
 +
 +   // attach history log it if we have it
 +   string histfile_name = _config->FindFile("Dir::Log::History");
 +   if (!histfile_name.empty())
 +   {
 +      FILE *log = NULL;
 +      char buf[1024];
 +
 +      fprintf(report, "DpkgHistoryLog:\n");
 +      log = fopen(histfile_name.c_str(),"r");
 +      if(log != NULL)
        {
         while( fgets(buf, sizeof(buf), log) != NULL)
            fprintf(report, " %s", buf);
diff --combined apt-pkg/depcache.cc
index 9104c5d5631ff5d202aeb0c8ac730f8f2d39be65,529e9240dd5f566f2e741274b6e7ed85d83b12b9..456e4b01241b2a3cc7cdab685d54b7fcf085baae
@@@ -8,28 -8,33 +8,33 @@@
     ##################################################################### */
                                                                        /*}}}*/
  // Include Files                                                      /*{{{*/
+ #include<config.h>
  #include <apt-pkg/depcache.h>
  #include <apt-pkg/version.h>
  #include <apt-pkg/versionmatch.h>
  #include <apt-pkg/error.h>
  #include <apt-pkg/sptr.h>
  #include <apt-pkg/algorithms.h>
  #include <apt-pkg/fileutl.h>
  #include <apt-pkg/strutl.h>
  #include <apt-pkg/configuration.h>
  #include <apt-pkg/aptconfiguration.h>
  #include <apt-pkg/pkgsystem.h>
  #include <apt-pkg/tagfile.h>
+ #include <apt-pkg/progress.h>
  
  #include <iostream>
- #include <sstream>    
+ #include <sstream>
  #include <set>
  
  #include <sys/stat.h>
  
- #include <apti18n.h>    
+ #include <apti18n.h>
                                                                        /*}}}*/
+ using std::string;
  // helper for Install-Recommends-Sections and Never-MarkAuto-Sections /*{{{*/
  static bool 
  ConfigValueInSubTree(const char* SubTree, const char *needle)
@@@ -169,14 -174,14 +174,14 @@@ bool pkgDepCache::readStateFile(OpProgr
     string const state = _config->FindFile("Dir::State::extended_states");
     if(RealFileExists(state)) {
        state_file.Open(state, FileFd::ReadOnly);
-       int const file_size = state_file.Size();
+       off_t const file_size = state_file.Size();
        if(Prog != NULL)
         Prog->OverallProgress(0, file_size, 1, 
                               _("Reading state information"));
  
        pkgTagFile tagfile(&state_file);
        pkgTagSection section;
-       int amt = 0;
+       off_t amt = 0;
        bool const debug_autoremove = _config->FindB("Debug::pkgAutoRemove",false);
        while(tagfile.Step(section)) {
         string const pkgname = section.FindS("Package");
@@@ -867,7 -872,6 +872,7 @@@ bool pkgDepCache::IsDeleteOk(PkgIterato
     if (FromUser == false && Pkg->CurrentVer == 0)
     {
        StateCache &P = PkgState[Pkg->ID];
 +      // Status == 2 means this applies for new installs only
        if (P.InstallVer != 0 && P.Status == 2 && (P.Flags & Flag::Auto) != Flag::Auto)
        {
         if (DebugMarker == true)
diff --combined cmdline/apt-get.cc
index 41d90b71917aa8ffdee8f81204b01a2540f34ccd,1925dea87102aac6082f0a61ac9b1a5a9948377c..d2e44aae083188549af9df1da0715f5224d0cb93
@@@ -25,8 -25,7 +25,7 @@@
     ##################################################################### */
                                                                        /*}}}*/
  // Include Files                                                      /*{{{*/
- #define _LARGEFILE_SOURCE
- #define _LARGEFILE64_SOURCE
+ #include <config.h>
  
  #include <apt-pkg/aptconfiguration.h>
  #include <apt-pkg/error.h>
@@@ -37,6 -36,7 +36,7 @@@
  #include <apt-pkg/algorithms.h>
  #include <apt-pkg/acquire-item.h>
  #include <apt-pkg/strutl.h>
+ #include <apt-pkg/fileutl.h>
  #include <apt-pkg/clean.h>
  #include <apt-pkg/srcrecords.h>
  #include <apt-pkg/version.h>
  #include <apt-pkg/sptr.h>
  #include <apt-pkg/md5.h>
  #include <apt-pkg/versionmatch.h>
- #include <config.h>
- #include <apti18n.h>
+ #include <apt-pkg/progress.h>
+ #include <apt-pkg/pkgsystem.h>
+ #include <apt-pkg/pkgrecords.h>
+ #include <apt-pkg/indexfile.h>
  
  #include "acqprogress.h"
  
@@@ -68,8 -69,7 +69,7 @@@
  #include <sys/wait.h>
  #include <sstream>
  
- #define statfs statfs64
- #define statvfs statvfs64
+ #include <apti18n.h>
                                                                        /*}}}*/
  
  #define RAMFS_MAGIC     0x858458f6
@@@ -1630,7 -1630,8 +1630,8 @@@ bool DoUpdate(CommandLine &CmdL
     if (_config->FindB("APT::Get::Download",true) == true)
         ListUpdate(Stat, *List);
  
-    // Rebuild the cache.   
+    // Rebuild the cache.
+    pkgCacheFile::RemoveCaches();
     if (Cache.BuildCaches() == false)
        return false;
     
@@@ -1688,8 -1689,9 +1689,9 @@@ bool DoAutomaticRemove(CacheFile &Cache
            // install it in the first place, so nuke it instead of show it
            if (Cache[Pkg].Install() == true && Pkg.CurrentVer() == 0)
            {
+              if (Pkg.CandVersion() != 0)
+                 tooMuch.insert(Pkg);
               Cache->MarkDelete(Pkg, false);
-              tooMuch.insert(Pkg);
            }
            // only show stuff in the list that is not yet marked for removal
            else if(hideAutoRemove == false && Cache[Pkg].Delete() == false) 
        bool Changed;
        do {
         Changed = false;
-        for (APT::PackageSet::const_iterator P = tooMuch.begin();
-             P != tooMuch.end() && Changed == false; ++P)
+        for (APT::PackageSet::const_iterator Pkg = tooMuch.begin();
+             Pkg != tooMuch.end() && Changed == false; ++Pkg)
         {
-           for (pkgCache::DepIterator R = P.RevDependsList();
-                R.end() == false; ++R)
-           {
-              if (R.IsNegative() == true ||
-                  Cache->IsImportantDep(R) == false)
-                 continue;
-              pkgCache::PkgIterator N = R.ParentPkg();
-              if (N.end() == true || (N->CurrentVer == 0 && (*Cache)[N].Install() == false))
-                 continue;
-              if (Debug == true)
-                 std::clog << "Save " << P << " as another installed garbage package depends on it" << std::endl;
-              Cache->MarkInstall(P, false);
-              if(hideAutoRemove == false)
+           APT::PackageSet too;
+           too.insert(Pkg);
+           for (pkgCache::PrvIterator Prv = Cache[Pkg].CandidateVerIter(Cache).ProvidesList();
+                Prv.end() == false; ++Prv)
+              too.insert(Prv.ParentPkg());
+           for (APT::PackageSet::const_iterator P = too.begin();
+                P != too.end() && Changed == false; ++P) {
+              for (pkgCache::DepIterator R = P.RevDependsList();
+                   R.end() == false; ++R)
               {
-                 ++autoRemoveCount;
-                 if (smallList == false)
-                 {
-                    autoremovelist += P.FullName(true) + " ";
-                    autoremoveversions += string(Cache[P].CandVersion) + "\n";
-                 }
+                 if (R.IsNegative() == true ||
+                     Cache->IsImportantDep(R) == false)
+                    continue;
+                pkgCache::PkgIterator N = R.ParentPkg();
+                if (N.end() == true || (N->CurrentVer == 0 && (*Cache)[N].Install() == false))
+                   continue;
+                if (Debug == true)
+                   std::clog << "Save " << Pkg << " as another installed garbage package depends on it" << std::endl;
+                Cache->MarkInstall(Pkg, false);
+                if (hideAutoRemove == false)
+                {
+                   ++autoRemoveCount;
+                   if (smallList == false)
+                   {
+                      autoremovelist += Pkg.FullName(true) + " ";
+                      autoremoveversions += string(Cache[Pkg].CandVersion) + "\n";
+                   }
+                }
+                tooMuch.erase(Pkg);
+                Changed = true;
+                break;
               }
-              tooMuch.erase(P);
-              Changed = true;
-              break;
            }
         }
        } while (Changed == true);
@@@ -2210,10 -2220,14 +2220,14 @@@ bool DoDSelectUpgrade(CommandLine &CmdL
  /* */
  bool DoClean(CommandLine &CmdL)
  {
+    std::string const archivedir = _config->FindDir("Dir::Cache::archives");
+    std::string const pkgcache = _config->FindFile("Dir::cache::pkgcache");
+    std::string const srcpkgcache = _config->FindFile("Dir::cache::srcpkgcache");
     if (_config->FindB("APT::Get::Simulate") == true)
     {
-       cout << "Del " << _config->FindDir("Dir::Cache::archives") << "* " <<
-        _config->FindDir("Dir::Cache::archives") << "partial/*" << endl;
+       cout << "Del " << archivedir << "* " << archivedir << "partial/*"<< endl
+          << "Del " << pkgcache << " " << srcpkgcache << endl;
        return true;
     }
     
     FileFd Lock;
     if (_config->FindB("Debug::NoLocking",false) == false)
     {
-       Lock.Fd(GetLock(_config->FindDir("Dir::Cache::Archives") + "lock"));
+       Lock.Fd(GetLock(archivedir + "lock"));
        if (_error->PendingError() == true)
         return _error->Error(_("Unable to lock the download directory"));
     }
     
     pkgAcquire Fetcher;
-    Fetcher.Clean(_config->FindDir("Dir::Cache::archives"));
-    Fetcher.Clean(_config->FindDir("Dir::Cache::archives") + "partial/");
+    Fetcher.Clean(archivedir);
+    Fetcher.Clean(archivedir + "partial/");
+    pkgCacheFile::RemoveCaches();
     return true;
  }
                                                                        /*}}}*/
@@@ -2428,7 -2445,7 +2445,7 @@@ bool DoSource(CommandLine &CmdL
                  Src.c_str(), vcs.c_str(), uri.c_str());
         if(vcs == "Bzr") 
            ioprintf(c1out,_("Please use:\n"
 -                           "bzr get %s\n"
 +                           "bzr branch %s\n"
                             "to retrieve the latest (possibly unreleased) "
                             "updates to the package.\n"),
                     uri.c_str());
@@@ -3120,10 -3137,7 +3137,10 @@@ bool DownloadChangelog(CacheFile &Cache
        return true;
  
     // error
 -   return _error->Error("changelog download failed");
 +   pkgRecords Recs(CacheFile);
 +   pkgRecords::Parser &rec=Recs.Lookup(Ver.FileList());
 +   string srcpkg = rec.SourcePkg().empty() ? Pkg.Name() : rec.SourcePkg();
 +   return _error->Error("changelog for this version is not (yet) available; try https://launchpad.net/ubuntu/+source/%s/+changelog", srcpkg.c_str());
  }
                                                                        /*}}}*/
  // DisplayFileInPager - Display File with pager                               /*{{{*/
diff --combined cmdline/apt-key
index 7bfe47fca3ce03b1d64ef3080fe032340d6396a9,97d6e03235ea6738dd2074d58e27f508fa3c9c91..c3d9d9affde09634085771877b360daaba472984
@@@ -16,13 -16,13 +16,13 @@@ f
  
  GPG="$GPG_CMD"
  
 -MASTER_KEYRING=""
 -ARCHIVE_KEYRING_URI=""
 -#MASTER_KEYRING=/usr/share/keyrings/debian-master-keyring.gpg
 -#ARCHIVE_KEYRING_URI=http://ftp.debian.org/debian/debian-archive-keyring.gpg
  
 -ARCHIVE_KEYRING=/usr/share/keyrings/debian-archive-keyring.gpg
 -REMOVED_KEYS=/usr/share/keyrings/debian-archive-removed-keys.gpg
 +# ubuntu keyrings
 +MASTER_KEYRING=/usr/share/keyrings/ubuntu-master-keyring.gpg
 +ARCHIVE_KEYRING=/usr/share/keyrings/ubuntu-archive-keyring.gpg
 +REMOVED_KEYS=/usr/share/keyrings/ubuntu-archive-removed-keys.gpg
 +ARCHIVE_KEYRING_URI=http://archive.ubuntu.com/ubuntu/project/ubuntu-archive-keyring.gpg
 +TMP_KEYRING=/var/lib/apt/keyrings/maybe-import-keyring.gpg
  
  requires_root() {
        if [ "$(id -u)" -ne 0 ]; then
@@@ -34,7 -34,7 +34,7 @@@
  add_keys_with_verify_against_master_keyring() {
      ADD_KEYRING=$1
      MASTER=$2
 -    
 +
      if [ ! -f "$ADD_KEYRING" ]; then
        echo "ERROR: '$ADD_KEYRING' not found"
        return
      #   from a key in the $distro-master-keyring
      add_keys=`$GPG_CMD --keyring $ADD_KEYRING --with-colons --list-keys | grep ^pub | cut -d: -f5`
      master_keys=`$GPG_CMD --keyring $MASTER --with-colons --list-keys | grep ^pub | cut -d: -f5`
 +    
      for add_key in $add_keys; do
 -      ADDED=0
 +
 +        # ensure there are no colisions LP: #857472
        for master_key in $master_keys; do
 -          if $GPG_CMD --keyring $ADD_KEYRING --list-sigs --with-colons $add_key | grep ^sig | cut -d: -f5 | grep -q $master_key; then
 -              $GPG_CMD --quiet --batch --keyring $ADD_KEYRING --export $add_key | $GPG --import
 +            if [ "$add_key" = "$master_key" ]; then
 +                echo >&2 "Keyid collision for '$add_key' detected, operation aborted"
 +                return 1
 +            fi
 +        done
 +
 +        # export the add keyring one-by-one
 +        rm -f $TMP_KEYRING
 +        $GPG_CMD --keyring $ADD_KEYRING --output $TMP_KEYRING --export $add_key 
 +        # check if signed with the master key and only add in this case
 +        ADDED=0
 +      for master_key in $master_keys; do
 +          if $GPG_CMD --keyring $MASTER --keyring $TMP_KEYRING --check-sigs --with-colons $add_key | grep '^sig:!:' | cut -d: -f5 | grep -q $master_key; then
 +              $GPG --import $TMP_KEYRING
                ADDED=1
            fi
        done
            echo >&2 "Key '$add_key' not added. It is not signed with a master key"
        fi
      done
 +    rm -f $TMP_KEYRING
  }
  
  # update the current archive signing keyring from a network URI
  # the archive-keyring keys needs to be signed with the master key
  # (otherwise it does not make sense from a security POV)
  net_update() {
 +
      if [ -z "$ARCHIVE_KEYRING_URI" ]; then
        echo >&2 "ERROR: Your distribution is not supported in net-update as no uri for the archive-keyring is set"
        exit 1
      if [ -e $keyring ]; then
        old_mtime=$(stat -c %Y $keyring)
      fi
 -    (cd  /var/lib/apt/keyrings; wget -q -N $ARCHIVE_KEYRING_URI)
 +    (cd  /var/lib/apt/keyrings; wget --timeout=90 -q -N $ARCHIVE_KEYRING_URI)
      if [ ! -e $keyring ]; then
        return
      fi
  update() {
      if [ ! -f $ARCHIVE_KEYRING ]; then
        echo >&2 "ERROR: Can't find the archive-keyring"
 -      echo >&2 "Is the debian-archive-keyring package installed?"
 +      echo >&2 "Is the ubuntu-keyring package installed?"
        exit 1
      fi
      requires_root
@@@ -168,7 -152,7 +168,7 @@@ if [ "$1" = "--keyring" ]; the
          #echo "keyfile given"
        shift
        TRUSTEDFILE="$1"
-       if [ -r "$TRUSTEDFILE" ]; then
+       if [ -r "$TRUSTEDFILE" ] || [ "$2" = 'add' ]; then
                GPG="$GPG --keyring $TRUSTEDFILE --primary-keyring $TRUSTEDFILE"
        else
                echo >&2 "Error: The specified keyring »$TRUSTEDFILE« is missing or not readable"
diff --combined debian/changelog
index d5bcaee678819461b3c7cf64cd71365cc2475946,df50eefbd5c8f2f9a776ebd4df6e037b102093e8..d34052343b0cb90a4d218d1b09bda3ad1d33fd3a
++apt (0.8.16~exp8ubuntu1) UNRELEASED; urgency=low
++
++  * merge from debian/experimental:
++    - new ABI
++    - header reshuffling that may cause FTBFS
++  * DO NOT UPLOAD YET; THERE IS ANOTHER ABI BREAK COMMING SOON
++
++ -- Michael Vogt <michael.vogt@ubuntu.com>  Thu, 10 Nov 2011 16:51:36 +0100
++
+ apt (0.8.16~exp8) experimental; urgency=low
+   [ David Kalnischkies ]
+   * apt-pkg/packagemanager.cc:
+     - do not fail on unpacked packages in SmartUnPack, just don't
+       shedule them for unpack, but do all checks and configure them
+     - do not enter an endless loop for (essential) pre-dependency loops
+   * apt-pkg/contrib/sha2_internal.cc:
+     - use a pointer-union to peace gcc strict-aliasing warning
+   * apt-pkg/deb/deblistparser.cc:
+     - M-A: foreign packages provide for other archs, too
+  -- David Kalnischkies <kalnischkies@gmail.com>  Thu, 03 Nov 2011 09:40:29 -0500
+ apt (0.8.16~exp7) experimental; urgency=low
+   [ David Kalnischkies ]
+   * do not pollute namespace in the headers with using (Closes: #500198)
+   * use forward declaration in headers if possible instead of includes
+   * remove old APT_COMPATIBILITY ifdef's
+   * apt-pkg/deb/dpkgpm.cc:
+     - use std::vector instead of fixed size arrays to store args and
+       multiarch-packagename strings
+     - load the dpkg base arguments only one time and reuse them later
+   * cmdline/apt-get.cc:
+     - follow Provides in the evaluation of saving candidates, too, for
+       statisfying garbage package dependencies (Closes: #640590)
+   * apt-pkg/algorithms.cc:
+     - if a package is garbage, don't try to save it with FixByInstall
+   * apt-pkg/deb/debsrcrecords.cc:
+     - remove the limit of 400 Binaries for a source package (Closes: #622110)
+   * apt-pkg/deb/deblistparser.cc:
+     - fix crash when the dynamic mmap needs to be grown in
+       LoadReleaseInfo (LP: #854090)
+   * apt-pkg/deb/debmetaindex.cc:
+     - none is a separator, not a language: no need for Index (Closes: #624218)
+   * apt-pkg/aptconfiguration.cc:
+     - do not builtin languages only if none is forced (Closes: #643787)
+   * apt-pkg/pkgcachegen.cc:
+     - refactor MergeList by creating -Group, -Package and -Version specialist
+     - share description list between "same" versions (LP: #868977)
+       This also means that descriptions are shared across archives now.
+     - add implicit dependencies needed for Multi-Arch at the time a Version
+       struct is created and not at the end of the cache generation
+   * apt-pkg/pkgcache.cc:
+     - always prefer "en" over "" for "en"-language regardless of cache-order
+   [ Michael Vogt ]
+   * apt-pkg/contrib/configuration.cc:
+     - fix double delete (LP: #848907)
+     - ignore only the invalid regexp instead of all options
+   * apt-pkg/acquire-item.h, apt-pkg/deb/debmetaindex.cc:
+     - fix fetching language information by adding OptionalSubIndexTarget
+   * methods/https.cc:
+     - cleanup broken downloads properly
+   [ Colin Watson ]
+   * ftparchive/cachedb.cc:
+     - fix buffersize in bytes2hex
+  -- Michael Vogt <mvo@debian.org>  Fri, 14 Oct 2011 13:51:35 +0200
+ apt (0.8.16~exp6) experimental; urgency=low
+   [ Christopher Baines ]
+   * enable APT in unpack/configure ordering to handle loops as well
+     as tight dependencies between immediate packages better
+     enabling also the possibility to mark all packages as immediate
+     (at least Closes: #353290, #540227, #559733, #621836, #639290)
+   [ David Kalnischkies ]
+   * [abi-break] Support large files in the complete toolset. Indexes of this
+     size are pretty unlikely for now, but we need it for deb
+     packages which could become bigger than 4GB now (LP: #815895)
+   * merged the debian-sid branch
+   
+   [ Michael Vogt ]
+   * bump ABI version
+  -- Michael Vogt <mvo@debian.org>  Wed, 14 Sep 2011 21:06:51 +0200
+ apt (0.8.16~exp5) experimental; urgency=low
+   * merged the latest debian-sid fixes
+   * apt-pkg/makefile:
+     - install sha256.h compat header
+   * apt-pkg/pkgcachegen.{cc,h}:
+     - use ref-to-ptr semantic in NewDepends() to ensure that the   
+       libapt does not segfault if the cache is remapped in between
+       (LP: #812862)
+     - fix crash when P.Arch() was used but the cache got remapped
+   * apt-pkg/acquire-item.{cc,h}:
+     - do not check for a "Package" tag in optional index targets
+       like the translations index
+   * apt-pkg/acquire.cc:
+     - fix potential divide-by-zero
+   * methods/mirror.cc:
+     - include the architecture(s) in the query string as well so 
+       that the server can make better decisions
+  -- Michael Vogt <mvo@debian.org>  Mon, 15 Aug 2011 14:52:54 +0200
+ apt (0.8.16~exp4) experimental; urgency=low
+   [ Julian Andres Klode ]
+   * apt-pkg/pkgcache.h:
+     - [ABI break] Add pkgCache::Header::CacheFileSize, storing the cache size
+   * apt-pkg/pkgcachegen.cc:
+     - Write the file size to the cache
+   * apt-pkg/pkgcache.cc:
+     - Check that cache is at least CacheFileSize bytes large (LP: #16467)
+   
+   [ Michael Vogt ]
+   * merged latest fixes from debian-sid
+   * apt-pkg/cdrom.{cc,h}:
+     - cleanup old ABI break avoidance hacks
+   * [ABI break] apt-pkg/acquire-item.{cc,h}:
+     - cleanup around OptionalIndexTarget and SubIndexTarget
+   * [ABI break] merged patch from Jonathan Thomas to have a new
+     RecordField() function in the pkgRecorder parser. Many thanks
+     Thomas
+   * [ABI break] merge patch from Jonathan Thomas to speed up the
+     depcache by caching the install-recommends and install-suggests
+     values
+   * apt-pkg/contrib/fileutl.{cc,h}:
+     - add GetModificationTime() helper
+   * apt-pkg/pkgcachegen.cc:
+     - regenerate the cache if the sources.list changes to ensure
+       that changes in the ordering there will be honored by apt
+   * apt-pkg/sourcelist.{cc,h}:
+     - add pkgSourceList::GetLastModifiedTime() helper
+  -- Michael Vogt <mvo@debian.org>  Thu, 28 Jul 2011 16:57:08 +0200
+ apt (0.8.16~exp3) experimental; urgency=low
+   [ David Kalnischkies ]
+   * apt-pkg/pkgcache.h:
+     - readd All{Foreign,Allowed} as suggested by Julian to
+       remain strictly API compatible
+   * apt-pkg/acquire*.{cc,h}:
+     - try even harder to support really big files in the fetcher by
+       converting (hopefully) everything to 'long long' (Closes: #632271)
+   * ftparchive/writer.cc:
+     - generate all checksums in one run over the file for Release
+   * cmdline/apt-get.cc:
+     - add an --assume-no option for testing to say 'no' to everything
+   * apt-pkg/deb/debmetaindex.cc:
+     - add trusted=yes option to mark unsigned (local) repository as trusted
+       based on a patch from Ansgar Burchardt, thanks a lot! (Closes: #596498)
+   [ Michael Vogt ]
+   * merge fixes from the debian/unstable upload
+   * merge lp:~mvo/apt/sha512-template to get fixes for the 
+     sha1/md5 verifiation (closes: #632520)
+  -- Michael Vogt <mvo@debian.org>  Fri, 15 Jul 2011 09:56:17 +0200
+ apt (0.8.16~exp2) experimental; urgency=low
+   [ David Kalnischkies ]
+   * [ABI-Break] Implement EDSP in libapt-pkg so that all front-ends which
+     use the internal resolver can now be used also with external
+     ones as the usage is hidden in between the old API
+   * provide two edsp solvers in apt-utils:
+     - 'dump' to quickly output a complete scenario and
+     - 'apt' to use the internal as an external resolver
+   * apt-pkg/pkgcache.h:
+     - clean up mess with the "all" handling in MultiArch to
+       fix LP: #733741 cleanly for everyone now
+   * apt-pkg/depcache.cc:
+     - use a boolean instead of an int for Add/Remove in AddStates
+       similar to how it works with AddSizes
+     - let the Mark methods return if their marking was successful
+     - if a Breaks can't be upgraded, remove it. If it or a Conflict
+       can't be removed the installation of the breaker fails.
+   * cmdline/apt-get.cc:
+     - do not discard the error messages from the resolver and instead
+       only show the general 'Broken packages' message if nothing else
+   [ Stefano Zacchiroli ]
+   * doc/external-dependency-solver-protocol.txt:
+     - describe EDSP and the configuration interface around it
+   
+   [ Michael Vogt ]
+   * [ABI-Break] merge lp:~mvo/apt/sha512-template to add support for sha512
+   * [ABI-Break] merge lp:~mvo/apt/dpointer to support easier extending
+     without breaking the ABI
+   * increase ABI version and update package names
+  -- Michael Vogt <mvo@debian.org>  Wed, 29 Jun 2011 13:57:28 +0200
+ apt (0.8.16~exp1) experimental; urgency=low
+   * merged with the debian/unstable upload
+  -- Michael Vogt <mvo@debian.org>  Wed, 29 Jun 2011 12:40:31 +0200
+ apt (1.8.15.9+nmu1) unstable; urgency=low
+   [ David Kalnischkies ]
+   * algorithms.cc:
+     - show a debug why a package was kept by ResolveByKeep()
+  -- David Kalnischkies <kalnischkies@gmail.com>  Mon, 17 Oct 2011 16:36:22 +0200
 +apt (0.8.16~exp5ubuntu14.2) UNRELEASED; urgency=low
 +
 +  [ Daniel Hahler ]
 +  * doc/apt-key.8.xml: Ubuntu specific documentation changes (LP: #445903)
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Thu, 20 Oct 2011 10:58:20 +0200
 +
 +apt (0.8.16~exp5ubuntu14.1) precise; urgency=low
 +
 +  * apt-pkg/edsp.cc:
 +    - fix FTBFS
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Wed, 19 Oct 2011 17:56:49 +0200
 +
 +apt (0.8.16~exp5ubuntu14) precise; urgency=low
 +  
 +  [ David Kalnischkies ]  
 +  * apt-pkg/pkgcachegen.cc:
 +    - refactor MergeList by creating -Group, -Package and -Version specialist
 +    - share description list between "same" versions (LP: #868977)
 +      This also means that descriptions are shared across archives now.
 +  * apt-pkg/pkgcache.cc:
 +    - always prefer "en" over "" for "en"-language regardless of cache-order
 +      (LP: #868977)
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Wed, 19 Oct 2011 16:22:31 +0200
 +
 +apt (0.8.16~exp5ubuntu13) oneiric; urgency=low
 +
 +  [ Adam Conrad ]
 +  * On armel, call update-apt-xapian-index with '-u' to keep the CPU
 +    and I/O usage low.  We would do this on all arches, but there's a
 +    regression risk here, but that's better than killing slow systems.
 +  
 +  [ Michael Vogt ]
 +  * cmdline/apt-key:
 +    - fix apt-key net-update, thanks to Marc Deslauriers and 
 +      Adam Conrad for the code review (LP: #857472)
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Thu, 06 Oct 2011 16:14:41 +0200
 +
 +apt (0.8.16~exp5ubuntu12) oneiric; urgency=low
 +
 +  [ David Kalnischkies ]  
 +  * apt-pkg/deb/deblistparser.cc:
 +    - fix crash when the dynamic mmap needs to be remapped during
 +      LoadReleaseInfo (LP: #854090)
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Mon, 26 Sep 2011 13:31:11 +0200
 +
 +apt (0.8.16~exp5ubuntu11) oneiric; urgency=low
 +
 +  [ Colin Watson ]
 +  * ftparchive/cachedb.cc:
 +    - fix buffersize in bytes2hex
 +  
 +  [ Marc Deslauriers ]
 +  * SECURITY UPDATE: Disable apt-key net-update for now, as validation
 +    code is insecure.
 +    - cmdline/apt-key: exit immediately out of net_update().
 +    - CVE number pending
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Thu, 22 Sep 2011 17:30:45 +0200
 +
 +apt (0.8.16~exp5ubuntu10) oneiric; urgency=low
 +
 +  * methods/https.cc:
 +    - cleanup broken downloads properly (just like http)
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Tue, 20 Sep 2011 18:26:13 +0200
 +
 +apt (0.8.16~exp5ubuntu9) oneiric; urgency=low
 +
 +  [ Michael Vogt ]
 +  * apt-pkg/acquire-item.h, apt-pkg/deb/debmetaindex.cc:
 +    - fix fetching translated package descriptions (including the newly
 +      stripped out english ones) by adding OptionalSubIndexTarget
 +
 +  [ David Kalnischkies ]
 +  * apt-pkg/acquire-item.cc:
 +    - if no Release.gpg file is found try to verify with hashes,
 +      but do not fail if a hash can't be found
 +  * apt-pkg/indexrecords.cc:
 +    - fix Acquire::Max-ValidTime option by interpreting it really
 +      as seconds as specified in the manpage and not as days
 +    - add an Acquire::Min-ValidTime option (Closes: #640122)
 +  * doc/apt.conf.5.xml:
 +    - reword Acquire::Max-ValidTime documentation to make clear
 +      that it doesn't provide the new Min-ValidTime functionality
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Fri, 16 Sep 2011 09:50:16 +0200
 +
 +apt (0.8.16~exp5ubuntu8) oneiric; urgency=low
 +
 +  * cherry pick r1825 from lp:~mvo/apt/mvo:
 +    * apt-pkg/contrib/configuration.cc:
 +    - fix double delete (LP: #848907)
 +    - ignore only the invalid regexp instead of all options
 +
 +  * cherry pick r2165 from lp:~donkult/apt/sid:
 +    [ David Kalnischkies ]
 +    * cmdline/apt-get.cc:
 +      - output list of virtual package providers to c1out in -q=1
 +        instead of /dev/null to unbreak sbuild (LP: #816155)
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Tue, 13 Sep 2011 18:23:09 +0200
 +
 +apt (0.8.16~exp5ubuntu7) oneiric; urgency=low
 +
 +  [ Michael Vogt ]
 +  * cherry pick revision 2173 from lp:~donkult/apt/sid
 +  
 +  [ David Kalnischkies ]
 +  - M-A:same lockstep unpack should operate on installed
 +    packages first (LP: #835625)
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Tue, 13 Sep 2011 09:03:33 +0200
 +
 +apt (0.8.16~exp5ubuntu6) oneiric; urgency=low
 +
 +  [ Michael Vogt 
 +  * merged lp:~jr/ubuntu/oneiric/apt/bzr-get-rename, thanks to
 +    Jonathan Riddell
 +  
 +  [ David Kalnischkies ]
 +  * lots of cppcheck fixes
 +  * apt-pkg/packagemanager.cc, apt-pkg/pkgcache.cc:
 +    - ignore "self"-conflicts for all architectures of a package
 +      instead of just for the architecture of the package locked at
 +      in the ordering of installations too (Closes: #802901)
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Wed, 17 Aug 2011 11:32:58 +0200
 +
 +apt (0.8.16~exp5ubuntu5) oneiric; urgency=low
 +
 +  * debian/control:
 +    - fix VCS location
 +  * methods/mirror.cc:
 +    - include the architecture(s) in the query string as well so 
 +      that the server can make better decisions
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Thu, 11 Aug 2011 18:03:19 +0200
 +
 +apt (0.8.16~exp5ubuntu4) oneiric; urgency=low
 +
 +  * Merge change from Robert Collins to upgrade ubuntu-keyring recommends
 +    to a hard dependency to match Debian behaviour and fix LP: #816606
 +
 + -- Adam Conrad <adconrad@ubuntu.com>  Tue, 09 Aug 2011 14:48:24 -0600
 +
 +apt (0.8.16~exp5ubuntu3) oneiric; urgency=low
 +
 +  * apt-pkg/acquire.cc:
 +    - fix potential divide-by-zero (LP: #823277)
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Tue, 09 Aug 2011 15:56:44 +0200
 +
 +apt (0.8.16~exp5ubuntu2) oneiric; urgency=low
 +
 +  * test/integration/test-hashsum-verification:
 +    - add regression test for hashsum verification
 +  * apt-pkg/acquire-item.cc:
 +    - if no Release.gpg file is found, still load the hashes for
 +      verification (closes: #636314) and add test
 +  * apt-pkg/pkgcachegen.cc:
 +    - fix incorrect comparision when checking sources.list freshness
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Tue, 09 Aug 2011 09:22:14 +0200
 +
 +apt (0.8.16~exp5ubuntu1) oneiric; urgency=low
 +
 +  * merged new version from debian/experimental, this includes
 +    a ABI break and two new library packages
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Mon, 08 Aug 2011 14:30:07 +0200
 +
 +apt (0.8.16~exp5) UNRELEASED; urgency=low
 +
 +  * apt-pkg/makefile:
 +    - install sha256.h compat header
 +  * apt-pkg/pkgcachegen.{cc,h}:
 +    - use ref-to-ptr semantic in NewDepends() to ensure that the   
 +      libapt does not segfault if the cache is remapped in between
 +      (LP: #812862)
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Fri, 29 Jul 2011 13:44:01 +0200
 +
 +apt (0.8.16~exp4) experimental; urgency=low
 +
 +  [ Julian Andres Klode ]
 +  * apt-pkg/pkgcache.h:
 +    - [ABI break] Add pkgCache::Header::CacheFileSize, storing the cache size
 +  * apt-pkg/pkgcachegen.cc:
 +    - Write the file size to the cache
 +  * apt-pkg/pkgcache.cc:
 +    - Check that cache is at least CacheFileSize bytes large (LP: #16467)
 +  
 +  [ Michael Vogt ]
 +  * merged latest fixes from debian-sid
 +  * apt-pkg/cdrom.{cc,h}:
 +    - cleanup old ABI break avoidance hacks
 +  * [ABI break] apt-pkg/acquire-item.{cc,h}:
 +    - cleanup around OptionalIndexTarget and SubIndexTarget
 +  * [ABI break] merged patch from Jonathan Thomas to have a new
 +    RecordField() function in the pkgRecorder parser. Many thanks
 +    Thomas
 +  * [ABI break] merge patch from Jonathan Thomas to speed up the
 +    depcache by caching the install-recommends and install-suggests
 +    values
 +  * apt-pkg/contrib/fileutl.{cc,h}:
 +    - add GetModificationTime() helper
 +  * apt-pkg/pkgcachegen.cc:
 +    - regenerate the cache if the sources.list changes to ensure
 +      that changes in the ordering there will be honored by apt
 +  * apt-pkg/sourcelist.{cc,h}:
 +    - add pkgSourceList::GetLastModifiedTime() helper
 +
 + -- Michael Vogt <mvo@debian.org>  Thu, 28 Jul 2011 16:57:08 +0200
 +
 +apt (0.8.16~exp3) experimental; urgency=low
 +
 +  [ David Kalnischkies ]
 +  * apt-pkg/pkgcache.h:
 +    - readd All{Foreign,Allowed} as suggested by Julian to
 +      remain strictly API compatible
 +  * apt-pkg/acquire*.{cc,h}:
 +    - try even harder to support really big files in the fetcher by
 +      converting (hopefully) everything to 'long long' (Closes: #632271)
 +  * ftparchive/writer.cc:
 +    - generate all checksums in one run over the file for Release
 +  * cmdline/apt-get.cc:
 +    - add an --assume-no option for testing to say 'no' to everything
 +  * apt-pkg/deb/debmetaindex.cc:
 +    - add trusted=yes option to mark unsigned (local) repository as trusted
 +      based on a patch from Ansgar Burchardt, thanks a lot! (Closes: #596498)
 +
 +  [ Michael Vogt ]
 +  * merge fixes from the debian/unstable upload
 +  * merge lp:~mvo/apt/sha512-template to get fixes for the 
 +    sha1/md5 verifiation (closes: #632520)
 +
 + -- Michael Vogt <mvo@debian.org>  Fri, 15 Jul 2011 09:56:17 +0200
 +
 +apt (0.8.16~exp2) experimental; urgency=low
 +
 +  [ David Kalnischkies ]
 +  * [ABI-Break] Implement EDSP in libapt-pkg so that all front-ends which
 +    use the internal resolver can now be used also with external
 +    ones as the usage is hidden in between the old API
 +  * provide two edsp solvers in apt-utils:
 +    - 'dump' to quickly output a complete scenario and
 +    - 'apt' to use the internal as an external resolver
 +  * apt-pkg/pkgcache.h:
 +    - clean up mess with the "all" handling in MultiArch to
 +      fix LP: #733741 cleanly for everyone now
 +  * apt-pkg/depcache.cc:
 +    - use a boolean instead of an int for Add/Remove in AddStates
 +      similar to how it works with AddSizes
 +    - let the Mark methods return if their marking was successful
 +    - if a Breaks can't be upgraded, remove it. If it or a Conflict
 +      can't be removed the installation of the breaker fails.
 +  * cmdline/apt-get.cc:
 +    - do not discard the error messages from the resolver and instead
 +      only show the general 'Broken packages' message if nothing else
 +
 +  [ Stefano Zacchiroli ]
 +  * doc/external-dependency-solver-protocol.txt:
 +    - describe EDSP and the configuration interface around it
 +  
 +  [ Michael Vogt ]
 +  * [ABI-Break] merge lp:~mvo/apt/sha512-template to add support for sha512
 +  * [ABI-Break] merge lp:~mvo/apt/dpointer to support easier extending
 +    without breaking the ABI
 +  * increase ABI version and update package names
 +
 + -- Michael Vogt <mvo@debian.org>  Wed, 29 Jun 2011 13:57:28 +0200
 +
 +apt (0.8.16~exp1) experimental; urgency=low
 +
 +  * merged with the debian/unstable upload
 +
 + -- Michael Vogt <mvo@debian.org>  Wed, 29 Jun 2011 12:40:31 +0200
 +
+ apt (0.8.15.9) unstable; urgency=low
+   [ David Kalnischkies ]
+   * Symbol file update
+   * doc/apt-get.8.xml:
+     - change wording of autoremove description as suggested
+       by Robert Simmons, thanks! (Closes: #641490)
+   * apt-pkg/deb/dpkgpm.cc:
+     - use std::vector instead of fixed size arrays to store args and
+       multiarch-packagename strings
+     - load the dpkg base arguments only one time and reuse them later
+   * cmdline/apt-get.cc:
+     - follow Provides in the evaluation of saving candidates, too, for
+       statisfying garbage package dependencies (Closes: #640590)
+   * apt-pkg/algorithms.cc:
+     - if a package is garbage, don't try to save it with FixByInstall
+   * apt-pkg/init.cc:
+     - silently ignore *.orig and *.save files by default
+   * apt-pkg/policy.cc:
+     - accept generic release pin expressions again in -t (Closes: #644166)
+   * apt-pkg/deb/debmetaindex.cc:
+     - none is a separator, not a language: no need for Index (Closes: #624218)
+   * apt-pkg/aptconfiguration.cc:
+     - do not builtin languages only if none is forced (Closes: #643787)
+   * doc/apt.conf.5.xml:
+     - apply spelling fix by Kevin Lyda, thanks! (Closes: #644104)
+   [ Christian Perrier ]
+   * Fix spelling error (sensée) in French translation. Thanks
+     to Corentin Le Gall for spotting it.
+   [ Colin Watson ]
+   * ftparchive/cachedb.cc:
+     - fix buffersize in bytes2hex
+   [ Michael Vogt ]
+   * ftparchive/cachedb.cc:
+     - make buffer fully dynamic (thanks to Colin Watson)
+  -- Michael Vogt <mvo@debian.org>  Fri, 14 Oct 2011 12:00:09 +0200
+ apt (0.8.15.8) unstable; urgency=low
+   [ David Kalnischkies ]
+   * cmdline/apt-get.cc:
+     - output list of virtual package providers to c1out in -q=1
+       instead of /dev/null to unbreak sbuild (LP: #816155)
+   [ Michael Vogt ]
+   * apt-pkg/contrib/configuration.cc:
+     - fix double delete (LP: #848907)
+     - ignore only the invalid regexp instead of all options
+  -- Michael Vogt <mvo@debian.org>  Wed, 14 Sep 2011 12:08:25 +0200
+ apt (0.8.15.7) unstable; urgency=low
+   [ David Kalnischkies ]
+   * apt-pkg/packagemanager.cc, apt-pkg/pkgcache.cc:
+     - ignore "self"-conflicts for all architectures of a package
+       instead of just for the architecture of the package look at
+       in the ordering of installations, too (LP: #802901)
+     - M-A:same lockstep unpack should operate on installed
+       packages first (LP: #835625)
+   * test/*
+     - reorganize the various testcases and helper we have and
+       integrate them better into the buildsystem
+     - run the test/libapt testcases at package build-time
+   * debian/apt.symbols:
+     - add the newly added symbols since 0.8.15.3
+   * cmdline/apt-get.cc:
+     - remove the binary caches in 'apt-get clean' as it is the first
+       thing recommend by many supporters in case of APT segfaults
+     - remove the caches in 'apt-get update', too, as they will be
+       invalid in most cases anyway
+   * apt-pkg/acquire-item.cc:
+     - if no Release.gpg file is found try to verify with hashes,
+       but do not fail if a hash can't be found
+   * apt-pkg/acquire.cc:
+     - non-existing directories are by definition clean
+   * cmdline/apt-key:
+     - if command is 'add' do not error out if the specified
+       keyring doesn't exist, it will be created by gpg
+   * apt-pkg/orderlist.cc:
+     - prefer visiting packages marked for deletion in VisitProvides
+       if we are operating on a negative dependency so that we can
+       deal early with the fallout of this remove
+   * apt-pkg/indexrecords.cc:
+     - fix Acquire::Max-ValidTime option by interpreting it really
+       as seconds as specified in the manpage and not as days
+     - add an Acquire::Min-ValidTime option (Closes: #640122)
+   * doc/apt.conf.5.xml:
+     - reword Acquire::Max-ValidTime documentation to make clear
+       that it doesn't provide the new Min-ValidTime functionality
+  -- Michael Vogt <mvo@debian.org>  Mon, 12 Sep 2011 16:38:46 +0200
  apt (0.8.15.6) unstable; urgency=low
  
    [ Michael Vogt ]
  
   -- Michael Vogt <mvo@debian.org>  Mon, 15 Aug 2011 09:20:35 +0200
  
 +apt (0.8.15.5ubuntu1) oneiric; urgency=low
 +
 +  * apt-pkg/pkgcachegen.{cc,h}:
 +    - fix crash when P.Arch() was used but the cache got remapped
 +      (LP: #812862)
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Mon, 01 Aug 2011 15:18:50 +0200
 +
  apt (0.8.15.5) unstable; urgency=low
  
    [ David Kalnischkies ]
  
   -- Michael Vogt <mvo@debian.org>  Thu, 28 Jul 2011 16:49:15 +0200
  
 +apt (0.8.15.4ubuntu2) oneiric; urgency=low
 +
 +  * apt-pkg/contrib/fileutl.{cc,h}:
 +    - add GetModificationTime() helper
 +  * apt-pkg/pkgcachegen.cc:
 +    - regenerate the cache if the sources.list changes to ensure
 +      that changes in the ordering there will be honored by apt
 +  * apt-pkg/sourcelist.{cc,h}:
 +    - add pkgSourceList::GetLastModifiedTime() helper
 +  * apt-pkg/pkgcachegen.{cc,h}:
 +    - use ref-to-ptr semantic in NewDepends() to ensure that the   
 +      libapt does not segfault if the cache is remapped in between
 +      (LP: #812862)
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Fri, 29 Jul 2011 18:25:22 +0200
 +
 +apt (0.8.15.4ubuntu1) oneiric; urgency=low
 +
 +  * merged from debian-sid
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Tue, 26 Jul 2011 13:19:49 +0200
 +
  apt (0.8.15.4) unstable; urgency=low
  
    [ David Miller ]
@@@ -409,78 -399,27 +721,78 @@@ apt (0.8.15.3) unstable; urgency=lo
  
   -- Michael Vogt <mvo@debian.org>  Mon, 25 Jul 2011 15:04:43 +0200
  
 -apt (0.8.15.2) unstable; urgency=high
 +apt (0.8.15.2ubuntu2) oneiric; urgency=low
  
 -  * fix from David Kalnischkies for the InRelease gpg verification 
 -    code (LP: #784473)
 +  * cmdline/apt-get.cc:
 +    - fix missing download progress in apt-get download
  
 - -- Michael Vogt <mvo@debian.org>  Tue, 12 Jul 2011 11:54:47 +0200
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Fri, 22 Jul 2011 13:20:49 +0200
  
 -apt (0.8.15.1) unstable; urgency=low
 +apt (0.8.15.2ubuntu1) oneiric; urgency=low
 +
 +  [ Michael Vogt ]
 +  * apt-pkg/acquire-item.cc:
 +    - improve error message for a expired Release file
 +  * apt-pkg/algorithms.cc:
 +    - Hold back packages that would enter "policy-broken" state on upgrade
 +      when doing a "apt-get upgrade"
  
    [ David Kalnischkies ]
 -  * doc/makefile:
 -    - create doxygen directory to avoid depending on magic (Closes: #628799)
 -  * cmdline/apt-key:
 -    - explicitly state that net-update is not supported if no url is set
 -    - require to be root for add, rm, update and net-update
 -    - clarify update vs. net-update in different distros (Closes: #632043)
 -  * debian/apt.symbols:
 -    - forgot 'mips' in the list for all architecture dependent symbols
 -    - comment out gcc-4.5 specific symbols as gcc-4.6 is now default
 -    - the symbol for PrintStatus() is architecture dependent
 -  * apt-pkg/policy.cc:
 +  * apt-pkg/pkgcachegen.cc:
 +    - fallback to memory if file is not writeable even if access()
 +      told us the opposite before (e.g. in fakeroot 1.16) (Closes: #630591)
 +  * doc/sources.list.5.xml:
 +    - document available [options] for sources.list entries (Closes: 632441)
 +  * doc/apt.conf.5.xml:
 +    - document APT::Architectures list (Closes: #612102)
 +  * cmdline/apt-get.cc:
 +    - restore all important dependencies for garbage packages (LP: #806274)
 +  * apt-pkg/init.cc:
 +    - use CndSet in pkgInitConfig (Closes: #629617)
 +  * apt-pkg/depcache.cc:
 +    - change default of APT::AutoRemove::SuggestsImportant to true
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Fri, 15 Jul 2011 10:16:45 +0200
 +
 +apt (0.8.15.2) unstable; urgency=high
 +
 +  * fix from David Kalnischkies for the InRelease gpg verification 
 +    code (LP: #784473)
 +
 + -- Michael Vogt <mvo@debian.org>  Tue, 12 Jul 2011 11:54:47 +0200
 +
 +apt (0.8.15.1ubuntu2) oneiric; urgency=low
 +
 +  [ Brian Murray ]
 +  * apt-pkg/deb/dpkgpm.cc:
 +   - do not report errors encountered when decompressing packages
 +  
 +  [ Michael Vogt ]
 +  * fix from David Kalnischkies for the InRelease gpg verification 
 +    code (LP: #784473)
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Wed, 13 Jul 2011 14:42:02 +0200
 +
 +apt (0.8.15.1ubuntu1) oneiric; urgency=low
 +
 +  * merge from debian/sid
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Thu, 30 Jun 2011 09:16:12 +0100
 +
 +apt (0.8.15.1) unstable; urgency=low
 +
 +  [ David Kalnischkies ]
 +  * doc/makefile:
 +    - create doxygen directory to avoid depending on magic (Closes: #628799)
 +  * cmdline/apt-key:
 +    - explicitly state that net-update is not supported if no url is set
 +    - require to be root for add, rm, update and net-update
 +    - clarify update vs. net-update in different distros (Closes: #632043)
 +  * debian/apt.symbols:
 +    - forgot 'mips' in the list for all architecture dependent symbols
 +    - comment out gcc-4.5 specific symbols as gcc-4.6 is now default
 +    - the symbol for PrintStatus() is architecture dependent
 +  * apt-pkg/policy.cc:
      - do not segfault in pinning if a package with this name doesn't exist.
        Thanks to Ferdinand Thommes for the report!
      - Defaults is a vector of Pin not of PkgPin
  
   -- Michael Vogt <mvo@debian.org>  Thu, 30 Jun 2011 10:05:36 +0200
  
 +apt (0.8.15ubuntu1) oneiric; urgency=low
 +
 +  * merged from debian-unstable, remainging changes:  
 +    - use ubuntu keyring and ubuntu archive keyring in apt-key
 +    - run update-apt-xapian-index in apt.cron
 +    - support apt-key net-update and verify keys against master-keyring
 +    - run apt-key net-update in cron.daily
 +    - different example sources.list
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Wed, 29 Jun 2011 09:03:39 +0100
 +
  apt (0.8.15) unstable; urgency=low
  
    [ Julian Andres Klode ]
@@@ -789,101 -717,6 +1101,101 @@@ apt (0.8.14.2) UNRELEASED; urgency=lo
  
   -- Michael Vogt <mvo@debian.org>  Mon, 16 May 2011 14:57:52 +0200
  
 +apt (0.8.14.1ubuntu8) UNRELEASED; urgency=low
 +
 +  [ Michael Vogt ]
 +  * debian/apt.conf.changelog:
 +    - add missing ";", thanks to Julian Andres Klode
 +
 +  [ Brian Murray ]
 +  * apt-pkg/deb/dpkgpm.cc:
 +    - updated allocate memory string
 +    - cannot access archive string is lowercase
 +  * apt-pkg/deb/dpkgpm.cc:
 +    - resolve issue where AptOrdering is included in DpkgTerminalLog in apport
 +      attachments
 +
 + -- Brian Murray <brian@ubuntu.com>  Wed, 15 Jun 2011 14:00:43 -0700
 +
 +apt (0.8.14.1ubuntu7) oneiric; urgency=low
 +
 +  [ Michael Vogt ]
 +  * apt-pkg/deb/deblistparser.cc:
 +    - include all known languages when building the apt cache
 +      (LP: #794907)
 +  * apt-pkg/deb/debindexfile.cc:
 +    - remove some no longer valid checks for "TranslationsAvailable()"
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Thu, 09 Jun 2011 13:56:25 +0200
 +
 +apt (0.8.14.1ubuntu6) oneiric; urgency=low
 +
 +  [ Brian Murray ]
 +  * apt-pkg/deb/dpkgpm.cc:
 +    - prevent reporting of package installation failures due to inaccessible
 +      local files (LP: #791102, #790040)
 +    - include /var/log/apt/history.log in apport-package reports so we know
 +      the context for the package management request
 +    
 +  [ Michael Vogt ]
 +  * methods/mirror.cc:
 +    - ignore lines starting with "#" in the mirror file
 +    - ignore non http urls in the mirrors
 +    - append the dist (e.g. sid, wheezy) as a query string when
 +      asking for a suitable mirror 
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Tue, 07 Jun 2011 15:55:07 +0200
 +
 +apt (0.8.14.1ubuntu5) oneiric; urgency=low
 +
 +  * apt-pkg/acquire-item.cc:
 +    - do not reject empty Packages files when checking them for
 +      correctness
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Tue, 31 May 2011 10:41:30 +0200
 +
 +apt (0.8.14.1ubuntu4) oneiric; urgency=low
 +
 +  [ Julian Andres Klode ]
 +  * apt-pkg/acquire-item.cc:
 +    - Reject files known to be invalid (LP: #346386) (Closes: #627642)
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Mon, 30 May 2011 17:12:27 +0200
 +
 +apt (0.8.14.1ubuntu3) oneiric; urgency=low
 +
 +  * Rebuild with recent binutils. LP: #774175.
 +
 + -- Matthias Klose <doko@ubuntu.com>  Mon, 23 May 2011 19:15:34 +0200
 +
 +apt (0.8.14.1ubuntu2) oneiric; urgency=low
 +
 +  * debian/rules:
 +    - build in verbose mode by default (thanks to Matthias Klose)
 +  * debian/control:
 +    - add  temporary build-dependency on gcc-4.6 (>= 4.6.0-6ubuntu2)
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Tue, 03 May 2011 13:58:10 +0200
 +
 +apt (0.8.14.1ubuntu1) oneiric; urgency=low
 +
 +  [ Michael Vogt ]
 +  * merged from the debian-sid bzr branch
 +  
 +  [ Julian Andres Klode ]
 +  * apt-pkg/depcache.cc:
 +    - Really release action groups only once (Closes: #622744)
 +    - Make purge work again for config-files (LP: #244598) (Closes: #150831)
 +  * debian/apt.cron.daily:
 +    - Check power after wait, patch by manuel-soto (LP: #705269)
 +  * debian/control:
 +    - Move ${shlibs:Depends} to Pre-Depends, as we do not want APT
 +      unpacked if a library is too old and thus break upgrades
 +  * doc/apt-key.8.xml:
 +    - Document apt-key net-update (LP: #192810)
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Fri, 29 Apr 2011 17:55:20 +0200
 +
  apt (0.8.14.1) unstable; urgency=low
  
    * apt-pkg/acquire-item.cc:
@@@ -926,42 -759,6 +1238,42 @@@ apt (0.8.14) unstable; urgency=lo
  
   -- Julian Andres Klode <jak@debian.org>  Fri, 15 Apr 2011 14:28:15 +0200
  
 +apt (0.8.13.2ubuntu3) natty-proposed; urgency=low
 +
 +  * apt-pkg/deb/dpkgpm.cc:
 +    - stop reporting of apport-package bug reports regarding
 +      dpkg I/O errors (LP: #767776)
 +
 + -- Brian Murray <brian@ubuntu.com>  Wed, 20 Apr 2011 15:05:12 -0700
 +
 +apt (0.8.13.2ubuntu2) natty; urgency=low
 +
 +  [ Michael Vogt ]
 +  * debian/apt.cron.daily:
 +    - run unattended-upgrades even if there was a error during
 +      the apt-get update (LP: #676295)
 +  
 +  [ Julian Andres Klode ]
 +  * apt-pkg/indexcopy.cc:
 +    - Use RealFileExists() instead of FileExists(), allows amongst other
 +      things a directory named Sources to exist on a CD-ROM (LP: #750694).
 +  
 +  [ David Kalnischkies  ]
 +  * apt-pkg/pkgcache.cc:
 +    - use the native Architecture stored in the cache header instead of
 +      loading it from configuration as suggested by Julian Andres Klode
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Thu, 07 Apr 2011 12:52:21 +0200
 +
 +apt (0.8.13.2ubuntu1) natty; urgency=low
 +
 +  * merge fixes from debian-sid, most notable the handling of
 +    arch=all architectures in python-apt (LP: #733741)
 +  * apt-pkg/aptconfiguration.cc:
 +    - fix comparing for a empty string
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Tue, 05 Apr 2011 13:19:56 +0200
 +
  apt (0.8.13.2) unstable; urgency=low
  
    [ David Kalnischkies ]
  
   -- Michael Vogt <mvo@debian.org>  Tue, 05 Apr 2011 09:40:28 +0200
  
 +apt (0.8.13.1ubuntu1) natty; urgency=low
 +
 +  * merged fixes from the debian-sid (LP: #744832)
 +  
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Mon, 04 Apr 2011 14:40:51 +0200
 +
  apt (0.8.13.1) unstable; urgency=low
  
    * apt-pkg/acquire-item.cc: Use stat buffer if stat was
  
   -- Julian Andres Klode <jak@debian.org>  Sat, 02 Apr 2011 20:55:35 +0200
  
 +apt (0.8.13ubuntu2) natty; urgency=low
 +
 +  * po/makefile:
 +    - add hack to run MSGMERGE again if it segfaults. this is to help
 +      powerpc to bootstrap
 +  * mirror method:
 +    - merge fix from Matt Zimmerman, many thanks (LP: #741098)
 +    - do not crash if the mirror file fails to download
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Thu, 24 Mar 2011 18:01:38 +0100
 +
 +apt (0.8.13ubuntu1) natty; urgency=low
 +
 +  * merged from debian/sid, this adds important fixes in the
 +    apt mirror method
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Wed, 16 Mar 2011 08:23:19 +0100
 +
  apt (0.8.13) unstable; urgency=low
  
    [ Thorsten Spindler ]
  
   -- Michael Vogt <mvo@debian.org>  Wed, 16 Mar 2011 08:04:42 +0100
  
 +apt (0.8.12ubuntu2) unstable; urgency=low
 +
 +  [ Thorsten Spindler ]
 +  * methods/rsh.cc
 +    - fix rsh/ssh option parsing (LP: #678080), thanks to
 +      Ville Mattila 
 +  
 +  [ Michael Vogt ]
 +  * apt-pkg/acquire-item.cc:
 +    - mark pkgAcqIndexTrans as Index-File to avoid asking the
 +      user to insert the CD on each apt-get update
 +  * methods/mirror.cc:
 +    - improve debug output and fix bug in TryNextMirror
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Thu, 10 Mar 2011 15:56:54 +0100
 +
 +apt (0.8.12ubuntu1) natty; urgency=low
 +
 +  * merged from debian/sid, this adds important fixes in the udev based
 +    cdrom handling and multiarch handling
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Thu, 10 Mar 2011 16:12:22 +0100
 +
  apt (0.8.12) unstable; urgency=low
  
    [ Michael Vogt ]
  
   -- Michael Vogt <mvo@debian.org>  Thu, 10 Mar 2011 14:46:48 +0100
  
 +apt (0.8.11.5ubuntu2) natty; urgency=low
 +
 +  [ Michael Vogt ]
 +  * apt-pkg/deb/debindexfile.cc:
 +    - ignore missing deb-src files in /var/lib/apt/lists, thanks
 +      to Thorsten Spindler (LP: #85590)
 +  * apt-pkg/contrib/fileutl.cc, apt-pkg/deb/dpkgpm.cc:
 +    - honor Dpkg::Chroot-Directory in the RunScripts*() methods
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Thu, 03 Mar 2011 17:39:30 +0100
 +
 +apt (0.8.11.5ubuntu1) natty; urgency=low
 +
 +  * Merged from debian/sid
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Fri, 18 Feb 2011 12:01:19 +0100
 +
  apt (0.8.11.5) unstable; urgency=low
  
    [ Christian Perrier ]
@@@ -1374,27 -1107,6 +1686,27 @@@ apt (0.8.10.1) unstable; urgency=lo
  
   -- Michael Vogt <mvo@debian.org>  Mon, 17 Jan 2011 13:41:04 +0100
  
 +apt (0.8.10ubuntu2) UNRELEASED; urgency=low
 +
 +  * apt-pkg/deb/dpkgpm.cc:
 +    - ignore lzma "Cannot allocate memory" errors, thanks to Brian
 +      Murray
 +    - add i18n support for the "short read in buffer_copy %s" handling
 +      from dpkg
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Tue, 11 Jan 2011 18:26:05 +0100
 +
 +apt (0.8.10ubuntu1) natty; urgency=low
 +
 +  [ Julian Andres Klode ]
 +  * cmdline/apt-cache.cc: Create an error for apt-cache depends
 +    if packages could not found (LP: #647045)
 +  
 +  [ Michael Vogt ]
 +  * merged from debian-sid
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Tue, 07 Dec 2010 15:53:49 +0100
 +
  apt (0.8.10) unstable; urgency=low
  
    [ Programs translations ]
  
   -- Michael Vogt <mvo@debian.org>  Tue, 30 Nov 2010 10:42:17 +0100
  
 +apt (0.8.9ubuntu4) natty; urgency=low
 +
 +  [ Michael Vogt ]
 +  * cmdline/apt-key:
 +    - set timeout of wget for net-update to 90 seconds (thanks to \sh)
 +
 +  [ Martin Pitt ]
 +  * Revert r1819 and r1820 to disable compressed indexes by default again.
 +    Testing has brought up a few places where this seriously degrades
 +    performance, mostly in applications which iterate through all available
 +    package records, like update-apt-xapian-index or synaptic. See
 +    https://bugs.launchpad.net/ubuntu/+bugs?field.tag=apt-compressed-indexes
 +
 + -- Martin Pitt <martin.pitt@ubuntu.com>  Thu, 25 Nov 2010 08:50:37 +0100
 +
 +apt (0.8.9ubuntu3) natty; urgency=low
 +
 +  * methods/http.cc:
 +    - do not hang if Acquire::http::ProxyAutoDetect can not be
 +      executed or returns no data (LP: #654393)
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Mon, 22 Nov 2010 10:42:50 +0100
 +
 +apt (0.8.9ubuntu2) natty; urgency=low
 +
 +  * drop apt-changelog, apt-get changelog implements all the 
 +    features it provides
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Thu, 18 Nov 2010 15:22:40 +0100
 +
 +apt (0.8.9ubuntu1) natty; urgency=low
 +
 +  * re-merged from the debian-sid bzr branch
 +  * merged lp:~mvo/apt/mvo, this brings two new commands:
 +    - apt-get download binary-pkgname to download a deb
 +    - apt-get changelog binary-pkgname to display the changelog
 +  * cmdline/apt-get.cc:
 +    - if the changelog download failed, do not show the generic error
 +      but point to launchpad instead
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Thu, 18 Nov 2010 15:02:14 +0100
 +
  apt (0.8.9) unstable; urgency=low
  
    [ Christian Perrier ]
  
   -- Michael Vogt <mvo@debian.org>  Thu, 18 Nov 2010 09:25:04 +0100
  
 +apt (0.8.8ubuntu3) natty; urgency=low
 +
 +  * cmdline/apt-changelog: Filter out multiple results for a source package,
 +    just take the latest one.
 +  * cmdline/apt-changelog: Read server name from configuration
 +    APT::Changelog::Server instead of hardcoding it. This allows local users
 +    to point to a local changelog mirror, or make this script work for Debian.
 +  * Add debian/apt.conf.changelog: Configuration for apt-changelog with the
 +    server for Ubuntu (changelogs.ubuntu.com). Install it in debian/rules.
 +  * doc/apt-changelog.1.xml: Document the new option.
 +  * test/integration/test-compressed-indexes, test/test-indexes.sh:
 +    - Explicitly disable compressed indexes at the start. This ensures that we
 +      will actually test uncompressed indexes regardless of the internal
 +      default value of Acquire::GzipIndexes.
 +  * apt-pkg/acquire-item.cc: Set Acquire::GzipIndexes to "true" by default, to
 +    store compressed indexes. This feature is now mature enough for general
 +    consumption. Update doc/apt.conf.5.xml accordingly.
 +  * apt-pkg/aptconfiguration.cc: Have Acquire::CompressionTypes::Order default
 +    to preferring "gz", so that compressed indexes will actually work.
 +
 + -- Martin Pitt <martin.pitt@ubuntu.com>  Mon, 15 Nov 2010 12:14:15 +0100
 +
 +apt (0.8.8ubuntu2) natty; urgency=low
 +
 +  * Add cmdline/apt-changelog: Script to fetch package changelog from
 +    changelogs.ubuntu.com. Install it in cmdline/makefile and debian/rules.
 +  * Add doc/apt-changelog.1.xml, and install it in debian/rules.
 +
 + -- Martin Pitt <martin.pitt@ubuntu.com>  Tue, 09 Nov 2010 11:32:27 +0100
 +
 +apt (0.8.8ubuntu1) natty; urgency=low
 +
 +  * merged from debian-unstable, remainging changes:
 +    - use ubuntu keyring and ubuntu archive keyring in apt-key
 +    - run update-apt-xapian-index in apt.cron
 +    - support apt-key net-update and verify keys against master-keyring
 +    - run apt-key net-update in cron.daily
 +    - different example sources.list
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Fri, 29 Oct 2010 10:07:09 -0400
 +
  apt (0.8.8) unstable; urgency=low
  
    [ David Kalnischkies ]
  
   -- Michael Vogt <mvo@debian.org>  Thu, 28 Oct 2010 21:22:21 +0200
  
 +apt (0.8.7ubuntu1) natty; urgency=low
 +
 +  * merged from debian-unstable, remainging changes:
 +    - use ubuntu keyring and ubuntu archive keyring in apt-key
 +    - run update-apt-xapian-index in apt.cron
 +    - support apt-key net-update and verify keys against master-keyring
 +    - run apt-key net-update in cron.daily
 +    - different example sources.list
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Fri, 15 Oct 2010 18:31:17 +0200
 +
  apt (0.8.7) unstable; urgency=low
  
    [ Manpages translations ]
@@@ -1676,119 -1294,33 +1988,119 @@@ apt (0.8.4) unstable; urgency=lo
  
   -- Michael Vogt <mvo@debian.org>  Fri, 10 Sep 2010 20:45:15 +0200
  
 -apt (0.8.3) unstable; urgency=low
 +apt (0.8.3ubuntu7) maverick; urgency=low
  
 -  [ Programs translations ]
 -  * German (Holger Wansing). Closes: #596141
 +  [ David Kalnischkies ]
 +  * apt-pkg/depcache.cc:
 +    - do not remove packages which the user requested for installation
 +      explicitly while satisfying other install requests (Closes: #598669)
 +    Test case: debootstrap, install exim4, run "apt-get install postfix"
 +    This will result in exim4-heavy instead of postfix
  
 -  [ Manpages translations ]
 -  * Japanese (KURASAWA Nozomu). Closes: #595862
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Tue, 05 Oct 2010 14:13:38 +0200
 +
 +apt (0.8.3ubuntu6) maverick; urgency=low
  
    [ Michael Vogt ]
 -  * apt-pkg/indexcopy.cc:
 -    - only use trusted.gpg.d directory if it exists
 -    - do not replace /dev/null when running in APT::CDROM::NoAct
 -      mode (LP: #612666), thanks to Colin Watson
 +  * debian/apt.cron.daily:
 +    - source /etc/default/locale (if available) so that the 
 +      apt-get update cron job fetches the right translated package
 +      descriptions (LP: #652951)
  
    [ David Kalnischkies ]
 -  * ftparchive/apt-ftparchive.cc:
 -    - ensure that BinDirectory as well as Tree settings get
 -      the correct default FileMode setting (Closes: #595922)
 +  * apt-pkg/depcache.cc:
 +    - do not check endpointer packages instead of only those which prevented
 +      NeverAutoRemove settings from having an effect (Closes: #598452)
 +  * cmdline/apt-cache.cc:
 +    - use the TranslatedDescription for searching and not the first
 +      available one as it is maybe not an expected language (Closes: #597925)
  
 - -- Michael Vogt <mvo@debian.org>  Tue, 07 Sep 2010 15:28:41 +0200
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Fri, 01 Oct 2010 15:25:00 +0200
  
 -apt (0.8.2) unstable; urgency=low
 +apt (0.8.3ubuntu5) maverick; urgency=low
  
 -  [ Manpages translations ]
 -  * Spanish (Omar Campagne). Closes: #595557
 +  * debian/apt.dirs:
 +    - add missing /usr/share/apt so that the keyring is installed
 +      into the right place (LP: #620576)
  
 -  [ David Kalnischkies ]
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Wed, 22 Sep 2010 18:34:18 +0200
 +
 +apt (0.8.3ubuntu4) maverick; urgency=low
 +
 +  * merged lp:~mvo/apt/conflicts-on-virtuals to better deal
 +    with conflicts/breaks against virtual packages (LP: #614993)
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Wed, 15 Sep 2010 19:48:26 +0200
 +
 +apt (0.8.3ubuntu3) maverick; urgency=low
 +
 +  * merged fixes from debian-sid
 +  
 +  [ Michael Vogt ]
 +  * apt-pkg/contrib/cdromutl.cc:
 +    - if apt-cdrom is used on writable media (like usb-sticks), do
 +      not use the root directory to identify the medium (as all 
 +      changes there change the ident id). Use the .disk directory 
 +      instead 
 +
 +  [ David Kalnischkies ]
 +  * ftparchive/writer.cc:
 +    - null the valid string instead of the date if Valid-Until is not set
 +  * apt-pkg/acquire-item.cc:
 +    - use also unsigned Release files again (Closes: #596189)
 +
 +  [ Christian Perrier ]
 +  * Fix missing space after dot in a message from apt-pkg
 +    Translations unfuzzied. Thanks to Holger Wansing.
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Fri, 10 Sep 2010 21:45:49 +0200
 +
 +apt (0.8.3ubuntu2) maverick; urgency=low
 +
 +  * ftparchive/writer.cc:
 +    - write out {Files,Checksum-Sha1,Checksum-Sha256} only if
 +      available LP: #633967. Thanks to Colin Watson
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Thu, 09 Sep 2010 15:30:19 +0200
 +
 +apt (0.8.3ubuntu1) maverick; urgency=low
 +
 +  * merged fixes from debian-sid
 +  * debian/rules:
 +    - put ubuntu-archive.gpg back into the package (LP: #620576)
 +  * apt-pkg/init.cc:
 +    - ignore ".distUpgrade" and ".save" files in sources.list.d
 +      (LP: #631770)
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Tue, 07 Sep 2010 09:27:24 +0200
 +
 +apt (0.8.3) unstable; urgency=low
 +
 +  [ Programs translations ]
 +  * German (Holger Wansing). Closes: #596141
 +
 +  [ Manpages translations ]
 +  * Japanese (KURASAWA Nozomu). Closes: #595862
 +
 +  [ Michael Vogt ]
 +  * apt-pkg/indexcopy.cc:
 +    - only use trusted.gpg.d directory if it exists
 +    - do not replace /dev/null when running in APT::CDROM::NoAct
 +      mode (LP: #612666), thanks to Colin Watson
 +
 +  [ David Kalnischkies ]
 +  * ftparchive/apt-ftparchive.cc:
 +    - ensure that BinDirectory as well as Tree settings get
 +      the correct default FileMode setting (Closes: #595922)
 +
 + -- Michael Vogt <mvo@debian.org>  Tue, 07 Sep 2010 15:28:41 +0200
 +
 +apt (0.8.2) unstable; urgency=low
 +
 +  [ Manpages translations ]
 +  * Spanish (Omar Campagne). Closes: #595557
 +
 +  [ David Kalnischkies ]
    * apt-pkg/versionmatch.cc:
      - do not accept 'Pin: origin "' (missing closing ") as a valid
        way to pin a local archive: either "" or none…
@@@ -1854,69 -1386,6 +2166,69 @@@ apt (0.8.1) unstable; urgency=lo
  
   -- Michael Vogt <mvo@debian.org>  Fri, 03 Sep 2010 18:36:11 +0200
  
 +apt (0.8.0ubuntu3) maverick; urgency=low
 +
 +  * merged fixes from the debian-sid bzr branch:
 +  
 +  [ Programs translations ]
 +  * Simplified Chinese (Aron Xu). Closes: #594458
 +  * Bulgarian (Damyan Ivanov). Closes: #594627
 +  * Portuguese (Miguel Figueiredo). Closes: #594668
 +  * Korean (Changwoo Ryu). Closes: #594809
 +
 +  [ Manpages translations ]
 +  * Portuguese (Américo Monteiro)
 +
 +  [ David Kalnischkies ]
 +  * cmdline/apt-cache.cc:
 +    - remove useless GetInitialize method
 +  * cmdline/apt-get.cc:
 +    - remove direct calls of ReadMainList and use the wrapper instead
 +      to protect us from useless re-reads and two-times notice display
 +    - remove death code by removing unused GetInitialize
 +  * apt-pkg/depcache.cc:
 +    - now that apt-get purge works on 'rc' packages let the MarkDelete
 +      pass this purge forward to the non-pseudo package for pseudos
 +  * apt-pkg/contrib/fileutl.cc:
 +    - apply SilentlyIgnore also on files without an extension
 +  * apt-pkg/contrib/configuration.cc:
 +    - fix autoremove by using correct config-option name and
 +      don't make faulty assumptions in error handling (Closes: #594689)
 +  * apt-pkg/versionmatch.cc:
 +    - let the pin origin actually work as advertised in the manpage
 +      which means "" are optional and pinning a local archive does
 +      work - even if it is a non-flat archive (Closes: #594435)
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Fri, 03 Sep 2010 17:05:53 +0200
 +
 +apt (0.8.0ubuntu2) maverick; urgency=low
 +
 +  * merged fixes from the debian-sid bzr branch:
 +  
 +  [ Programs translations ]
 +  * Thai (Theppitak Karoonboonyanan). Closes: #592695
 +  * Russian (Yuri Kozlov). Closes: #594232
 +  * Slovak (Ivan Masár). Closes: #594255
 +  * Swedish (Daniel Nylander). Closes: #594241
 +  * Japanese (Kenshi Muto, Osamu Aoki). Closes: #594265
 +  * Italian (Milo Casagrande). Closes: #594238
 +  * Asturian (maacub). Closes: #594303
 +
 +  [ Christian Perrier ]
 +  * Fix spelling error in cmdline/apt-get.cc. Thanks to Osamu Aoki
 +    Closes: #594211
 +
 +  [ David Kalnischkies ]
 +  * show in madison command again also source packages (LP: #614589)
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Thu, 26 Aug 2010 18:56:23 +0200
 +
 +apt (0.8.0ubuntu1) maverick; urgency=low
 +
 +  * merged from debian/unstable
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Tue, 24 Aug 2010 21:39:06 +0200
 +
  apt (0.8.0) unstable; urgency=low
  
    [ Michael Vogt ]
@@@ -1959,20 -1428,6 +2271,20 @@@ apt (0.8.0~pre2) experimental; urgency=
  
   -- Michael Vogt <mvo@debian.org>  Mon, 23 Aug 2010 19:09:08 +0200
  
 +apt (0.8.0~pre1ubuntu2) maverick; urgency=low
 +
 +  * apt-pkg/deb/dpkgpm.cc:
 +    - enable apport reports again (got lost in the previous merge),
 +      thanks to Matt Zimmerman
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Mon, 23 Aug 2010 13:53:09 +0200
 +
 +apt (0.8.0~pre1ubuntu1) maverick; urgency=low
 +
 +  * merged fixes from debian/experimental
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Fri, 13 Aug 2010 17:49:40 +0200
 +
  apt (0.8.0~pre1) experimental; urgency=low
  
    [ Programs translations ]
  
   -- Michael Vogt <mvo@debian.org>  Fri, 13 Aug 2010 17:00:49 +0200
  
 +apt (0.7.26~exp12ubuntu4) maverick; urgency=low
 +
 +  [ Julian Andres Klode ]
 +  * apt-pkg/contrib/fileutl.cc:
 +    - Add WriteAtomic mode.
 +    - Revert WriteEmpty to old behavior (LP: #613211)
 +  * apt-pkg, methods:
 +    - Convert users of WriteEmpty to WriteAtomic.
 +  * apt-pkg/depcache.cc:
 +    - Only try upgrade for Breaks if there is a newer version, otherwise
 +      handle it as Conflicts (by removing it) (helps for #591882).
 +  
 +  [ Michael Vogt ]
 +  * debian/control:
 +    - Add recommends on gnupg to apt, apt-key uses it.
 +      (changed from debian)
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Wed, 11 Aug 2010 12:01:30 +0200
 +
 +apt (0.7.26~exp12ubuntu3) maverick; urgency=low
 +
 +  [ Colin Watson ]
 +  * apt-pkg/cdrom.cc:
 +    - fix off-by-one error in DropBinaryArch
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Mon, 02 Aug 2010 21:04:18 +0200
 +
 +apt (0.7.26~exp12ubuntu2) maverick; urgency=low
 +
 +  * debian/apt.postinst:
 +    - do not fail if ubuntu-keyring is not installed
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Mon, 02 Aug 2010 11:47:59 +0200
 +
 +apt (0.7.26~exp12ubuntu1) maverick; urgency=low
 +
 +  * ABI break upload
 +  * merged from debian/experimental, remaining changes:
 +    - use ubuntu keyring and ubuntu archive keyring in apt-key
 +    - run update-apt-xapian-index in apt.cron
 +    - support apt-key net-update and verify keys against master-keyring
 +    - run apt-key net-update in cron.daily
 +    - different example sources.list
 +  * debian/apt.postinst
 +    - drop set_apt_proxy_from_gconf(), no longer needed in maverick
 +  * apt-pkg/pkgcache.cc:
 +    - re-evaluate the architectures cache when the cache is (re)opened
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Fri, 30 Jul 2010 19:32:15 +0200
 +
  apt (0.7.26~exp12) experimental; urgency=low
  
    [ Michael Vogt ]
@@@ -2679,152 -2084,6 +2991,152 @@@ apt (0.7.26~exp1) experimental; urgency
  
   -- Michael Vogt <mvo@debian.org>  Thu, 18 Feb 2010 16:11:39 +0100
  
 +apt (0.7.25.3ubuntu10) maverick; urgency=low
 +
 +  [ Michael Vogt ]
 +  * debian/apt.conf.ubuntu:
 +    - no longer install (empty) apt.conf.d/01ubuntu
 +  * apt-pkg/deb/dpkgpm.cc:
 +    - make the apt/term.log output unbuffered (thanks to Matt Zimmerman)
 +    - fix FTBFS (LP: #600155)
 +
 +  [ Matthias G. ]
 +  * apt-pkg/deb/dpkgpm.cc: 
 +    - Fix segmentation fault when /var/log/apt ist missing. LP: #535509
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Thu, 08 Jul 2010 09:37:03 +0200
 +
 +apt (0.7.25.3ubuntu9) lucid-proposed; urgency=low
 +
 +  * debian/apt.postinst:
 +    - do not fail if getent returns nothing useful (LP: #579647)
 +      thanks to Jean-Baptiste Lallement
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Fri, 14 May 2010 09:40:50 +0200
 +
 +apt (0.7.25.3ubuntu8) lucid-proposed; urgency=low
 +
 +  [ Loïc Minier ]
 +  * Use https:// in Vcs-Bzr URL.
 +
 +  [ Michael Vogt ]
 +  * apt-pkg/deb/debrecords.cc:
 +    - fix max tag buffer size (LP: #545336, closes: #578959)
 +  * apt-pkg/indexfile.cc:
 +    - If no "_" is found in the language code, try to find a "."
 +      This is required for languages like Esperanto that have no
 +      county associated with them (LP: #560956)
 +      Thanks to "Aisano" for the fix
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Wed, 05 May 2010 10:33:46 +0200
 +
 +apt (0.7.25.3ubuntu7) lucid; urgency=low
 +
 +  Cherry pick fixes from the lp:~mvo/apt/mvo branch:
 +
 +  [ Evan Dandrea ]
 +  * Remember hosts with general failures for
 +    https://wiki.ubuntu.com/NetworklessInstallationFixes (LP: #556831).
 +  
 +  [ Michael Vogt ]
 +  * improve debug output for Debug::pkgPackageManager
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Wed, 14 Apr 2010 20:30:03 +0200
 +
 +apt (0.7.25.3ubuntu6) lucid; urgency=low
 +
 +  * cmdline/apt-get.cc:
 +    - fix crash when pkg.VersionList() is empty (LP: #556056)
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Thu, 08 Apr 2010 21:13:25 +0200
 +
 +apt (0.7.25.3ubuntu5) lucid; urgency=low
 +
 +  [ David Kalnischkies ]
 +  * cmdline/apt-get.cc:
 +    - try version match in FindSrc first exact than fuzzy (LP: #551178)
 +
 +  [ Jean-Baptiste Lallement ]
 +  * apt-pkg/contrib/strutl.cc:
 +    - always escape '%' (LP: #130289) (Closes: #500560)
 +    - unescape '%' sequence only if followed by 2 hex digit
 +    - username/password are urlencoded in proxy string (RFC 3986)
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Wed, 31 Mar 2010 21:59:42 +0200
 +
 +apt (0.7.25.3ubuntu4) lucid; urgency=low
 +
 +  [ David Kalnischkies ]
 +  * apt-pkg/deb/debversion.cc:
 +    - consider absent of debian revision equivalent to 0 (Closes: #573592)
 +      LP: #540228
 +  * cmdline/apt-get.cc, apt-pkg/cdrom.cc:
 +   - fix memory leaks in error conditions in DoSource()
 +  * apt-pkg/deb/dpkgpm.cc:
 +   - fix error message construction in OpenLog()
 +  
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Fri, 26 Mar 2010 16:57:49 +0100
 +
 +apt (0.7.25.3ubuntu3) lucid; urgency=low
 +
 +  * apt-pkg/indexfile.cc:
 +    - remove "cs" from languages that need the full langcode when
 +      downloading translations (thanks to Steve Langasek)
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Mon, 15 Mar 2010 09:42:39 +0100
 +
 +apt (0.7.25.3ubuntu2) lucid; urgency=low
 +
 +  [ Michael Vogt ]
 +  * abicheck/
 +    - add new abitest tester using the ABI Compliance Checker from
 +      http://ispras.linuxfoundation.org/index.php/ABI_compliance_checker
 +  * debian/apt.conf.autoremove:
 +    - add "oldlibs" to the APT::Never-MarkAuto-Sections as its used
 +      for transitional packages
 +  * apt-pkg/deb/dpkgpm.cc:
 +    - fix backgrounding when dpkg runs (closes: #486222)
 +  * cmdline/apt-mark:
 +    - show error on incorrect aguments (LP: #517917), thanks to
 +      Torsten Spindler
 +  * cmdline/apt-get.cc:
 +    - if apt-get source foo=version or foo/distro can not be found,
 +      error out (LP: #502641)
 +  * apt-pkg/indexfile.cc:
 +    - deal correctly with three letter langcodes (LP: #391409)
 +  * debian/apt.cron.daily:
 +    - do not look into admin users gconf anymore for the http proxy
 +      the user now needs to use the "Apply system-wide" UI in the
 +      gnome-control-center to set it
 +  * debian/apt.postinst:
 +    - add set_apt_proxy_from_gconf() and run that once on upgrade if
 +      there is no proxy configured already system-wide (LP: #432631)
 +      From that point on gnome-control-center will have to warn if
 +      the user makes changes to the proxy settings and does not apply
 +      them system wide
 +
 +  [ Robert Collins ]
 +  * Change the package index Info methods to allow apt-cache policy to be
 +    useful when using several different archives on the same host.
 +    (Closes: #329814, LP: #22354)
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Fri, 12 Mar 2010 23:10:52 +0100
 +
 +apt (0.7.25.3ubuntu1) lucid; urgency=low
 +
 +  [ Michael Vogt ]
 +  * merged with the debian-sid branch
 +  * methods/http.cc:
 +    - add Acquire::http::ProxyAutoDetect configuration that 
 +      can be used to call a external helper to figure out the 
 +      proxy configuration and return it to apt via stdout
 +      (this is a step towards WPAD and zeroconf/avahi support)
 +  
 +  [ Ivan Masár ]
 +  * Slovak translation update. Closes: #568294
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Wed, 17 Feb 2010 23:33:32 +0100
 +
  apt (0.7.25.3) unstable; urgency=low
  
    [ Christian Perrier ]
@@@ -2945,57 -2204,24 +3257,57 @@@ apt (0.7.25.1) unstable; urgency=lo
  
   -- Michael Vogt <mvo@debian.org>  Sat, 09 Jan 2010 21:52:36 +0100
  
 -apt (0.7.25) unstable; urgency=low
 +apt (0.7.25ubuntu4) lucid; urgency=low
  
 -  [ Christian Perrier ]
 -  * Fix apt-ftparchive(1) wrt description of the "-o" option.
 -    Thanks to Dann Frazier for the patch. Closes: #273100
 -  * po/LINGUAS. Re-disable Hebrew. Closes: #534992
 -  * po/LINGUAS. Enable Asturian and Lithuanian
 -  * Fix typo in apt-cache.8.xml: nessasarily
 -  * Fix "with with" in apt-get.8.xml
 -  * Fix some of the typos mentioned by the german team
 -    Closes: #479997
 -  * Polish translation update by Wiktor Wandachowicz
 -    Closes: #548571
 -  * German translation update by Holger Wansing
 -    Closes: #551534
 -  * Italian translation update by Milo Casagrande
 -    Closes: #555797
 -  * Simplified Chinese translation update by Aron Xu 
 +  * cmdline/apt-cdrom.cc:
 +    - make Acquire::cdrom::AutoDetect default, this can be
 +      turned off with "--no-auto-detect"
 +  * methods/http.cc:
 +    - add cache-control headers even if no cache is given to allow
 +      adding options for intercepting proxies
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Tue, 02 Feb 2010 16:58:59 -0800
 +
 +apt (0.7.25ubuntu3) lucid; urgency=low
 +
 +  * cmdline/apt-get.cc:
 +    - don't mark as manually if in download only (Closes: #468180)
 +
 + -- Michael Vogt <mvo@debian.org>  Mon, 01 Feb 2010 18:41:15 +0100
 +
 +apt (0.7.25ubuntu2) lucid; urgency=low
 +
 +  * Change history branch so that it does not break the 
 +    apt ABI for the pkgPackageManager interface
 +    (can be reverted on the next ABI break)
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Wed, 23 Dec 2009 10:14:16 +0100
 +
 +apt (0.7.25ubuntu1) lucid; urgency=low
 +
 +  * Merged from the mvo branch
 +  * merged from the lp:~mvo/apt/history branch
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Tue, 22 Dec 2009 09:44:08 +0100
 +
 +apt (0.7.25) unstable; urgency=low
 +
 +  [ Christian Perrier ]
 +  * Fix apt-ftparchive(1) wrt description of the "-o" option.
 +    Thanks to Dann Frazier for the patch. Closes: #273100
 +  * po/LINGUAS. Re-disable Hebrew. Closes: #534992
 +  * po/LINGUAS. Enable Asturian and Lithuanian
 +  * Fix typo in apt-cache.8.xml: nessasarily
 +  * Fix "with with" in apt-get.8.xml
 +  * Fix some of the typos mentioned by the german team
 +    Closes: #479997
 +  * Polish translation update by Wiktor Wandachowicz
 +    Closes: #548571
 +  * German translation update by Holger Wansing
 +    Closes: #551534
 +  * Italian translation update by Milo Casagrande
 +    Closes: #555797
 +  * Simplified Chinese translation update by Aron Xu 
      Closes: #558737
    * Slovak translation update by Ivan Masár
      Closes: #559277
  
   -- Michael Vogt <mvo@debian.org>  Tue, 15 Dec 2009 09:21:55 +0100
  
 +apt (0.7.24ubuntu1) lucid; urgency=low
 +
 +  [ Michael Vogt ]
 +  * apt-pkg/deb/dpkgpm.cc:
 +    - include df -l output in the apport log as well (thanks to
 +      tjaalton)
 +  * apt-pkg/packagemanager.cc:
 +    - add output about pre-depends configuring when debug::pkgPackageManager
 +      is used
 +  * methods/https.cc:
 +    - fix incorrect use of CURLOPT_TIMEOUT, closes: #497983, LP: #354972
 +      thanks to Brian Thomason for the patch
 +  * merge lp:~mvo/apt/netrc branch, this adds support for a
 +    /etc/apt/auth.conf that can be used to store username/passwords
 +    in a "netrc" style file (with the extension that it supports "/"
 +    in a machine definition). Based on the maemo git branch.
 +
 +  [ Brian Murray ]
 +  * apt-pkg/depcache.cc, apt-pkg/indexcopy.cc:
 +    - typo fix (LP: #462328)
 +  
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Mon, 14 Dec 2009 09:27:26 +0100
 +
  apt (0.7.24) unstable; urgency=low
  
    [ Nicolas François ]
  
   -- Michael Vogt <mvo@debian.org>  Fri, 25 Sep 2009 19:57:25 +0200
  
 +apt (0.7.23.1ubuntu2) karmic; urgency=low
 +
 +  [ Michael Vogt ]
 +  * debian/control:
 +    - fix Vcr-Bzr header
 +
 +  [ Kees Cook ]
 +  * debian/apt.cron.daily:
 +    - fix quotes for use with "eval", thanks to Lars Ljung (LP: #449535).
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Thu, 15 Oct 2009 19:05:19 +0200
 +
 +apt (0.7.23.1ubuntu1) karmic; urgency=low
 +
 +  [ Matt Zimmerman ]
 +  * apt-pkg/deb/dpkgpm.cc:
 +    - Suppress apport reports on dpkg short reads (these I/O errors are not 
 +      generally indicative of a bug in the packaging)
 +
 +  [ Loïc Minier ]
 +  * cmdline/apt-key:
 +    - Emit a warning if removed keys keyring is missing and skip associated
 +      checks (LP: #218971)
 +
 +  [ Brian Murray ]
 +  * cmdline/apt-get.cc:
 +    - typo fix (LP: #370094)
 +
 +  [ Michael Vogt ]
 +  * apt-pkg/deb/dpkgpm.cc:
 +    - when tcgetattr() returns non-zero skip all pty magic 
 +      (thanks to Simon Richter, closes: #509866)
 +  * apt-inst/contrib/arfile.cc:
 +    - show propper error message for Invalid archive members
 +  * apt-pkg/acquire-worker.cc:
 +    - show error details of failed methods
 +  * apt-pkg/contrib/fileutl.cc:
 +    - if a process aborts with signal, show signal number
 +  * methods/http.cc:
 +    - ignore SIGPIPE, we deal with EPIPE from write in 
 +      HttpMethod::ServerDie() (LP: #385144)
 +  * debian/apt.cron.daily:
 +    - if the timestamp is too far in the future, delete it 
 +      (LP: #135262)
 +  
 +  [ Merge ]
 +  * merged from debian, reverted the libdlopen-udev branch
 +    because its too late in the release process for this now
 +  * not merged the proxy behaviour change from 0.7.23 (that will
 +    be part of lucid)
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Wed, 23 Sep 2009 18:15:10 +0200
 +
  apt (0.7.23.1) unstable; urgency=low
  
    [ Michael Vogt ]
@@@ -3495,34 -2645,6 +3807,34 @@@ apt (0.7.22) unstable; urgency=lo
  
   -- Michael Vogt <mvo@debian.org>  Wed, 29 Jul 2009 19:16:22 +0200
  
 +apt (0.7.21ubuntu1) karmic; urgency=low
 +
 +  * merged from the debian-sid bzr branch
 +  
 +  [ Christian Perrier ]
 +  * Documentation translations:
 +    - Fix a typo in apt-get(8) French translation. Closes: #525043
 +      Thanks to Guillaume Delacour for spotting it.
 +  * Translations:
 +    - fr.po
 +    - sk.po. Closes: #525857
 +    - ru.po. Closes: #526816
 +    - eu.po. Closes: #528985
 +    - zh_CN.po. Closes: #531390
 +    - fr.po
 +    - it.po. Closes: #531758
 +    - ca.po. Closes: #531921
 +  * Added translations
 +    - ast.po (Asturian by Marcos Alvareez Costales).
 +      Closes: #529007, #529730
 +
 +  [ Michael Vogt ]
 +  * apt-pkg/acquire.cc:
 +    - make the (internal) max pipeline depth of the acquire queue
 +      configurable via Acquire::Max-Pipeline-Depth
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Tue, 09 Jun 2009 15:49:07 +0200
 +
  apt (0.7.21) unstable; urgency=low
  
    [ Christian Perrier ]
  
   -- Michael Vogt <mvo@debian.org>  Tue, 14 Apr 2009 14:12:51 +0200
  
 +apt (0.7.20.2ubuntu7) karmic; urgency=low
 +
 +  * fix problematic use of tolower() when calculating the version 
 +    hash by using locale independant tolower_ascii() function. 
 +    Thanks to M. Vefa Bicakci (LP: #80248)
 +  * build fixes for g++-4.4
 +  * include dmesg output in apport package failures
 +  * include apt ordering into apport package failures
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Fri, 24 Apr 2009 10:14:01 +0200
 +
 +apt (0.7.20.2ubuntu6) jaunty; urgency=low
 +
 +  [ Jamie Strandboge ]
 +  * apt.cron.daily: catch invalid dates due to DST time changes
 +    in the stamp files (LP: #354793)
 +
 +  [ Michael Vogt ]
 +  * methods/gpgv.cc:
 +    - properly check for expired and revoked keys (closes: #433091)
 +      LP: #356012
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Wed, 08 Apr 2009 22:39:50 +0200
 +
 +apt (0.7.20.2ubuntu5) jaunty; urgency=low
 +
 +  [ Colin Watson ]
 +  * cmdline/acqprogress.cc:
 +    - Call pkgAcquireStatus::Pulse even if quiet, so that we still get
 +      dlstatus messages on the status-fd (LP: #290234).
 +  
 +  [ Michael Vogt ]
 +  * debian/apt.cron.daily:
 +    - do not clutter cron mail with bogus gconftool messages 
 +      (LP: #223502)
 +    - merge fix for cache locking from debian (closes: #459344)
 +    - run update-apt-xapian-index (with ionice) to ensure that
 +      the index is up-to-date when synaptic is run (LP: #288797)
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Mon, 30 Mar 2009 13:22:28 +0200
 +
 +apt (0.7.20.2ubuntu4) jaunty; urgency=low
 +
 +  * ftparchive/cachedb.cc:
 +    - when apt-ftparchive clean is used, compact the database
 +      at the end (thanks to cprov)
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Thu, 26 Mar 2009 13:43:59 +0100
 +
 +apt (0.7.20.2ubuntu3) jaunty; urgency=low
 +
 +  * methods/mirror.cc:
 +    - when download the mirror file and the server is down,
 +      return a propper error message (LP: #278635)
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Thu, 19 Mar 2009 15:42:15 +0100
 +
 +apt (0.7.20.2ubuntu2) jaunty; urgency=low
 +
 +  * apt-pkg/deb/dpkgpm.cc:
 +    - revert termios patch (LP: #338514)
 +  * cmdline/apt-get.cc
 +    - fix "apt-get source pkg" if there is a binary package and
 +      a source package of the same name but from different 
 +      packages (LP: #330103)
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Mon, 09 Mar 2009 16:33:28 +0100
 +
 +apt (0.7.20.2ubuntu1) jaunty; urgency=low
 +
 +  [ Christian Perrier ]
 +  * Translations:
 +    - bg.po. Closes: #513211
 +    - zh_TW.po. Closes: #513311
 +    - nb.po. Closes: #513843
 +  
 +  [ Michael Vogt ]
 +  * merged from the debian-sid branch
 +  * [ABI break] merge support for http redirects, thanks to
 +    Jeff Licquia and Anthony Towns
 +  * [ABI break] use int for the package IDs (thanks to Steve Cotton)
 +  * apt-pkg/contrib/strutl.cc:
 +    - fix TimeToStr i18n (LP: #289807)
 +  * debian/apt.conf.autoremove:
 +    - readd "linux-image" (and friends) to the auto-remove
 +     blacklist
 +  * fix some i18n issues (thanks to  Gabor Kelemen)
 +    LP: #263089
 +  * apt-pkg/deb/dpkgpm.cc:
 +    - filter "ENOMEM" errors when creating apport reports 
 +  * cmdline/apt-get.cc:
 +    - fix "apt-get source pkg=ver" if binary name != source name
 +      (LP: #202219)
 +  * apt-pkg/indexrecords.cc:
 +    - fix some i18n issues
 +  * apt-pkg/contrib/strutl.h:
 +    - add new strprintf() function to make i18n strings easier
 +  * apt-pkg/dev/debsystem.cc:
 +    - add missing apti18n.h header
 +  * cmdline/apt-get.cc:
 +    - default to "false" for the "APT::Get::Build-Dep-Automatic"
 +      option (follow debian here)
 +  * apt-pkg/pkgcache.cc:
 +    - do not run "dpkg --configure pkg" if pkg is in trigger-awaited
 +      state (LP: #322955)
 +  * methods/https.cc:
 +    - add Acquire::https::AllowRedirect support
 +    - do not unlink files in partial/ (thanks to robbiew)
 +
 +  [ Dereck Wonnacott ]
 +  * Clarify the --help for 'purge' (LP: #243948)
 +
 +  [ Ian Weisser ]
 +  * /apt-pkg/deb/debsystem.cc:
 +    - add 'sudo' to the error message to "run 'dpkg --configure -a'"
 +      (LP: #52697)
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Mon, 09 Feb 2009 14:21:05 +0100
 +
  apt (0.7.20.2) unstable; urgency=medium
  
    [ Eugene V. Lyubimkin ]
@@@ -3753,12 -2756,6 +4065,12 @@@ apt (0.7.20) unstable; urgency=lo
  
   -- Michael Vogt <mvo@debian.org>  Mon, 05 Jan 2009 08:59:20 +0100
  
 +apt (0.7.19ubuntu1) jaunty; urgency=low
 +
 +  * merge from debian
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Mon, 24 Nov 2008 10:52:20 +0100
 +
  apt (0.7.19) unstable; urgency=low
  
    [ Eugene V. Lyubimkin ]
@@@ -4057,90 -3054,6 +4369,90 @@@ apt (0.7.15~exp1) experimental; urgency
    
   -- Michael Vogt <mvo@debian.org>  Tue, 16 Sep 2008 21:27:03 +0200
  
 +apt (0.7.14ubuntu7) jaunty; urgency=low
 +
 +  * cmdline/apt-cache.cc:
 +    - remove the gettext from a string that consists entirely 
 +      of variables (LP: #56792)
 +  * apt-pkg/deb/dpkgpm.cc:
 +    - fix potential hang when in a backgroud process group
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Tue, 28 Oct 2008 21:09:12 +0100
 +
 +apt (0.7.14ubuntu6) intrepid; urgency=low
 +
 +  * debian/apt.conf.autoremove:
 +    - remove "linux-image" (and friends) from the auto-remove
 +      blacklist. we have the kernel fallback infrastructure now
 +      in intrepid (thanks to BenC)
 +  * apt-pkg/indexcopy.cc:
 +    - support having CDs with no Packages file (just a Packages.gz)
 +      by not forcing a verification on non-existing files
 +     (LP: #255545)
 +  * apt-pkg/deb/dpkgpm.cc:
 +    - improve the filtering for duplicated apport reports (thanks
 +      to seb128 for pointing that problem out)
 +    - do not report disk full errors from dpkg via apport
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Thu, 07 Aug 2008 16:28:05 +0200
 +
 +apt (0.7.14ubuntu5) intrepid; urgency=low
 +
 +  * fix various -Wall warnings
 +  * make "apt-get build-dep" installed packages marked automatic
 +    by default. This can be changed by setting the value of
 +    APT::Get::Build-Dep-Automatic to false (thanks to Aaron 
 +    Haviland, closes: #44874, LP: #248268)
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Wed, 06 Aug 2008 14:00:51 +0200
 +
 +apt (0.7.14ubuntu4) intrepid; urgency=low
 +
 +  [ Michael Vogt ]
 +  * apt-pkg/deb/dpkgpm.cc:
 +    - fix uninitialized variable that caused no apport reports
 +      to be written sometimes (thanks to Matt Zimmerman)
 +  * merge patch that enforces stricter https server certificate
 +    checking (thanks to Arnaud Ebalard, closes: #485960)
 +  * allow per-mirror specific https settings
 +    (thanks to Arnaud Ebalard, closes: #485965)
 +  * add doc/examples/apt-https-method-example.cof
 +    (thanks to Arnaud Ebalard, closes: #485964)
 +  * add DPkg::NoTriggers option so that applications that call
 +    apt/aptitude (like the installer) defer trigger processing
 +    (thanks to Joey Hess) 
 +  * document --install-recommends and --no-install-recommends
 +    (thanks to Dereck Wonnacott, LP: #126180)
 +  
 +  [ Dereck Wonnacott ]
 +  * apt-ftparchive might write corrupt Release files (LP: #46439)
 +  * Apply --important option to apt-cache depends (LP: #16947) 
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Tue, 05 Aug 2008 10:10:49 +0200
 +
 +apt (0.7.14ubuntu3) intrepid; urgency=low
 +
 +  [ Otavio Salvador ]
 +  * Apply patch to avoid truncating of arbitrary files. Thanks to Bryan
 +    Donlan <bdonlan@fushizen.net> for the patch. Closes: #482476
 +  * Avoid using dbus if dbus-daemon isn't running. Closes: #438803
 +
 +  [ Michael Vogt ]
 +  * apt-pkg/deb/dpkgpm.cc:
 +    - improve apt progress reporting, display trigger actions
 +  * apt-pkg/depcache.cc:
 +    - when checking for new important deps, skip critical ones
 +      (LP: #236360)
 +  
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Tue, 03 Jun 2008 17:27:07 +0200
 +
 +apt (0.7.14ubuntu2) intrepid; urgency=low
 +
 +  * debian/control:
 +    - fix FTBFS by adding missing intltool dependency 
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Fri, 09 May 2008 13:50:22 +0200
 +
  apt (0.7.14) unstable; urgency=low
  
    [ Christian Perrier ]
@@@ -4367,285 -3280,23 +4679,285 @@@ apt (0.7.10) unstable; urgency=lo
  
   -- Michael Vogt <mvo@debian.org>  Mon, 07 Jan 2008 21:40:47 +0100
  
 -apt (0.7.9) unstable; urgency=low
 +apt (0.7.9ubuntu17) hardy-proposed; urgency=low
  
 -  [ Christian Perrier ]
 -  * Add several languages to LINGUAS and, therefore, really ship the relevant
 -    translation:
 -    Arabic, Dzongkha, Khmer, Marathi, Nepali, Thai
 -    Thanks to Theppitak Karoonboonyanan for checking this out. Closes: #448321
 +  * apt-pkg/acquire-item.cc:
 +    - fix signaure removal on transient network failures LP: #220627
 +      (thanks to Scott James Remnant)
  
 -  [ Program translations ]
 -    - Korean updated. Closes: #448430
 -    - Galician updated. Closes: #448497
 -    - Swedish updated.
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Tue, 22 Apr 2008 16:32:49 +0200
  
 -  [ Otavio Salvador ]
 -  * Fix configure script to check for CURL library and headers presense.
 -  * Applied patch from Brian M. Carlson <sandals@crustytoothpaste.ath.cx>
 -    to add backward support for arches that lacks pselect support,
 +apt (0.7.9ubuntu16) hardy; urgency=low
 +
 +  * cmdline/apt-key:
 +    - only check against master-keys in net-update to not break
 +      custom CDs (thanks to Colin Watson)
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Tue, 08 Apr 2008 14:17:14 +0200
 +
 +apt (0.7.9ubuntu15) hardy; urgency=low
 +
 +  * cmdline/apt-get.cc:
 +    - do two passes when installing tasks, first ignoring dependencies,
 +      then resolving them and run the problemResolver at the end
 +      so that it can correct any missing dependencies. This should
 +      fix livecd building for kubuntu (thanks to Jonathan Riddell 
 +      for reporting the problem)
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Thu, 13 Mar 2008 23:25:45 +0100
 +
 +apt (0.7.9ubuntu14) hardy; urgency=low
 +
 +  * cmdline/apt-get.cc:
 +    - fix incorrect help output for -f (LP: #57487)
 +    - run the problemResolver after a task was installed
 +      so that it can correct any missing dependencies
 +  * typo fixes (LP: #107960)
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Tue, 11 Mar 2008 21:46:07 +0100
 +
 +apt (0.7.9ubuntu13) hardy; urgency=low
 +
 +  [ Lionel Porcheron ]
 +  * debian/apt.cron.daily:
 +    - only call gconftool if gcontool is installed (LP: #194281)
 +
 +  [ Michael Vogt ]
 +  * doc/apt_preferences.5.xml:
 +    - fix typo (LP: #150900)
 +  * doc/example/sources.list:
 +    - updated for hardy (LP: #195879)
 +  * debian/apt.cron.daily:
 +    - sleep random amount of time (default within 0-30min) before
 +      starting the upate to hit the mirrors less hard
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Tue, 04 Mar 2008 15:35:09 +0100
 +
 +apt (0.7.9ubuntu12) hardy; urgency=low
 +
 +  * debian/apt.cron.daily:
 +    - use admin user proxy settings
 +  * cmdline/apt-get.cc:
 +    - fix task installation (thanks to Colin Watson)
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Thu, 21 Feb 2008 15:07:44 +0100
 +
 +apt (0.7.9ubuntu11) hardy; urgency=low
 +
 +  * apt-pkg/algorithms.cc: 
 +    - add APT::Update::Post-Invoke-Success script slot
 +      (LP: #188127)
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Thu, 10 Jan 2008 12:06:12 +0100
 +
 +apt (0.7.9ubuntu10) hardy; urgency=low
 +
 +  * cmdline/apt-key:
 +    - add "net-update" command that fetches the 
 +      ubuntu-archive-keyring.gpg and add keys from it that are 
 +      signed by the ubuntu-master-keyring.gpg 
 +      (apt-archive-key-signatures spec)
 +  * debian/apt.cron.daily:
 +    - add apt-key net-update to the nightly cron job
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Wed, 13 Feb 2008 15:50:28 +0100
 +
 +apt (0.7.9ubuntu9) hardy; urgency=low
 +
 +  * fix FTBFS due to incorrect intltool build-depends
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Mon, 11 Feb 2008 16:04:37 +0100
 +
 +apt (0.7.9ubuntu8) hardy; urgency=low
 +
 +  * share/apt-auth-failure.note:
 +    - show update-notifier note if the nightly update fails with a
 +      authentication failure (apt-authentication-reliability spec)
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Mon, 11 Feb 2008 14:04:56 +0100
 +
 +apt (0.7.9ubuntu7) hardy; urgency=low
 +
 +  * methods/connect.cc:
 +    - remember hosts with Resolve failures or connect Timeouts
 +      see https://wiki.ubuntu.com/NetworklessInstallationFixes
 +  * cmdlines/apt-key:
 +    - fix bug in the new apt-key update code that imports only
 +      keys signed with the master key (thanks to cjwatson)
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Fri, 08 Feb 2008 11:38:35 +0100
 +
 +apt (0.7.9ubuntu6) hardy; urgency=low
 +
 +  * cmdline/apt-key:
 +    - add support for a master-keyring that contains signing keys
 +      that can be used to sign the archive signing keys. This should
 +      make key-rollover easier.
 +  * apt-pkg/deb/dpkgpm.cc:
 +    - merged patch from Kees Cook to fix anoying upper-case display
 +      on amd64 in sbuild
 +  * apt-pkg/algorithms.cc: 
 +    - add APT::Update::Post-Invoke-Success script slot
 +    - Make the breaks handling use the kill list. This means, that a
 +      Breaks: Pkg (<< version) may put Pkg onto the remove list.
 +  * apt-pkg/deb/dpkgpm.cc:
 +    - add APT::Apport::MaxReports to limit the maximum number
 +      of reports generated in a single run (default to 3)
 +  * apt-pkg/deb/debmetaindex.cc:
 +    - add missing "Release" file uri when apt-get update --print-uris
 +      is run
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Mon, 04 Feb 2008 14:28:02 +0100
 +
 +apt (0.7.9ubuntu5) hardy; urgency=low
 +
 +  * Merged apt-authentication-reliabilty branch. This means
 +    that apt will refuse to update and use the old lists if
 +    the authentication of a repository that used to be 
 +    authenticated fails. See
 +    https://wiki.ubuntu.com/AptAuthenticationReliability
 +    for more details.
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Wed, 16 Jan 2008 10:36:10 +0100
 +
 +apt (0.7.9ubuntu4) hardy; urgency=low
 +
 +  * apt-pkg/algorithms.cc:
 +    - Since APT::Get::List-Cleanup and APT::List-Cleanup both default to
 +      true, the effect of the compatibility code was to require both of them
 +      to be set to false in order to disable list cleanup; this broke the
 +      installer. Instead, disable list cleanup if either of them is set to
 +      false.
 +
 + -- Colin Watson <cjwatson@ubuntu.com>  Wed, 09 Jan 2008 22:34:37 +0000
 +
 +apt (0.7.9ubuntu3) hardy; urgency=low
 +
 +  * merged the apt--DoListUpdate branch, this provides a common interface
 +    for "apt-get update" like operations for the frontends and also provides
 +    hooks to run stuff in APT::Update::{Pre,Post}-Invoke
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Mon, 07 Jan 2008 19:02:11 +0100
 +
 +apt (0.7.9ubuntu2) hardy; urgency=low
 +
 +  [ Otavio Salvador ]
 +  * Applied patch from Aurelien Jarno <aurel32@debian.org> to fix building
 +    with newest dpkg-shlibdeps changing the packaging building order and a
 +    patch from Robert Millan <rmh@aybabtu.com> to fix parallel building,
 +    closes: #452862.
 +  * Applied patch from Alexander Winston <alexander.winston@comcast.net>
 +    to use 'min' as symbol for minute, closes: #219034.
 +  * Applied patch from Amos Waterland <apw@us.ibm.com> to allow apt to
 +    work properly in initramfs, closes: #448316.
 +  * Applied patch from Robert Millan <rmh@aybabtu.com> to make apt-key and
 +    apt-get to ignore time conflicts, closes: #451328.
 +  * Applied patch from Peter Eisentraut <peter_e@gmx.net> to fix a
 +    grammatical error ("manual installed" -> "manually installed"),
 +    closes: #438136.
 +  * Fix cron.daily job to not call fail if apt isn't installed, closes:
 +    #443286.
 +  
 +  [ Daniel Burrows ]
 +  * apt-pkg/contrib/configuration.cc:
 +    - if RootDir is set, then FindFile and FindDir will return paths
 +      relative to the directory stored in RootDir, closes: #456457.
 +
 +  [ Christian Perrier ]
 +  * Fix wording for "After unpacking...". Thans to Michael Gilbert
 +    for the patch. Closes: #260825
 +
 +  [ Program translations ]
 +    - Vietnamese updated. Closes: #453774
 +    - Japanese updated. Closes: #456909
 +    - French updated.
 +
 +  [ Michael Vogt ]
 +  * apt-pkg/packagemanager.{cc,h}:
 +    - propergate the Immediate flag to make hitting the 
 +      "E: Internal Error, Could not perform immediate configuration (2)"
 +      harder. (LP: #179247)
 +  * debian/apt.conf.daily:
 +    - print warning if the cache can not be locked (closes: #454561),
 +      thanks to Bastian Kleineidam
 +  * debian/control:
 +    - build against libdb-dev (instead of libdb4.4-dev)
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Thu, 03 Jan 2008 11:31:45 +0100
 +
 +apt (0.7.9ubuntu1) hardy; urgency=low
 +
 +  * merged from http://bzr.debian.org/apt/apt/debian-sid/, remaining
 +    changes:
 +    - mirror download method (pending merge with debian)
 +    - no pdiff download by default (unsuitable for ubuntu)
 +    - no recommends-by-default yet
 +    - add "Original-Maintainer" field to tagfile
 +    - show warning on apt-get source if the package is maintained
 +      in a VCS (pedinging merge with debian)
 +    - use ubuntu-archive keyring instead of debians one
 +    - support metapackages section for autoremoval
 +    - debian maintainer field change
 +    - send ubuntu string in user-agent
 +  
 +  * Changes from the debian-sid bzr branch (but not uploaded to debian
 +    yet):
 +  
 +  [ Otavio Salvador ]
 +  * Applied patch from Mike O'Connor <stew@vireo.org> to add a manpage to
 +    apt-mark, closes: #430207.
 +  * Applied patch from Andrei Popescu <andreimpopescu@gmail.com> to add a
 +    note about some frontends in apt.8 manpage, closes: #438545.
 +  * Applied patch from Aurelien Jarno <aurel32@debian.org> to avoid CPU
 +    getting crazy when /dev/null is redirected to stdin (which breaks
 +    buildds), closes: #452858.
 +
 +  [ Program translations ]
 +    - Basque updated. Closes: #453088
 +
 +  [ Michael Vogt ]
 +  * debian/rules
 +    - fix https install location
 +  * methods/gpgv.cc:
 +    - remove cruft code that caused timestamp/I-M-S issues
 +  * ftparchive/contents.cc:
 +    - fix error output
 +  * methods/mirror.{cc,h}:
 +    - only update mirror list on IndexFile updates 
 +  * apt-pkg/acquire-item.{cc,h}:
 +    - make the authentication download code more robust against
 +      servers/proxies with broken If-Range implementations
 +  * debian/control:
 +    - build against libdb-dev (instead of libdb4.4-dev)
 +  * merged the apt--DoListUpdate branch, this provides a common interface
 +    for "apt-get update" like operations for the frontends and also provides
 +    hooks to run stuff in APT::Update::{Pre,Post}-Invoke
 +
 +  [ Chris Cheney ]
 +  * ftparchive/contents.cc:
 +    - support lzma data members
 +  * ftparchive/multicompress.cc:
 +    - support lzma output
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Thu, 13 Dec 2007 14:46:27 +0100
 +
 +apt (0.7.9) unstable; urgency=low
 +
 +  [ Christian Perrier ]
 +  * Add several languages to LINGUAS and, therefore, really ship the relevant
 +    translation:
 +    Arabic, Dzongkha, Khmer, Marathi, Nepali, Thai
 +    Thanks to Theppitak Karoonboonyanan for checking this out. Closes: #448321
 +
 +  [ Program translations ]
 +    - Korean updated. Closes: #448430
 +    - Galician updated. Closes: #448497
 +    - Swedish updated.
 +
 +  [ Otavio Salvador ]
 +  * Fix configure script to check for CURL library and headers presense.
 +  * Applied patch from Brian M. Carlson <sandals@crustytoothpaste.ath.cx>
 +    to add backward support for arches that lacks pselect support,
      closes: #448406.
    * Umount CD-ROM when calling apt-cdrom ident, except when called with
      -m, closes: #448521.
@@@ -4754,193 -3405,6 +5066,193 @@@ apt (0.7.7) unstable; urgency=lo
   
   -- Michael Vogt <mvo@debian.org>  Tue, 23 Oct 2007 14:58:03 +0200
  
 +apt (0.7.6ubuntu14.1) gutsy-proposed; urgency=low
 +
 +  [ Michael Vogt ]
 +  * apt-pkg/deb/dpkgpm.{cc,h}:
 +    - give up timeslice on EIO error in read from master terminal
 +  * debian/apt.cron.daily:
 +    - only run the cron job if apt-get check succeeds (LP: #131719)
 +
 +  [ Martin Emrich ]  
 +  * apt-pkg/deb/dpkgpm.{cc,h}:
 +    - rewrite dpkgpm.cc to use pselect() instead of select()
 +      to block signals during select() (LP: #134858)
 + 
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Sat, 20 Oct 2007 07:51:12 +0200
 +
 +apt (0.7.6ubuntu14) gutsy; urgency=low
 +
 +  * apt-pkg/deb/dpkgpm.cc:
 +    - fix resource leak (LP: #148806) 
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Mon, 15 Oct 2007 20:57:44 +0200
 +
 +apt (0.7.6ubuntu13) gutsy; urgency=low
 +
 +  * apt-pkg/deb/dpkgpm.cc:
 +    - fix crash in WriteApportReport (LP: #144537)
 +  * apt-pkg/acquire-item.cc
 +    - fix disappearing local Packages.gz file (LP: #131166)
 +  * methods/https.cc:
 +    - fix off-by-one error I-M-S handling
 +    - cleanup after I-M-S hit
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Tue, 09 Oct 2007 01:48:26 +0200
 +
 +apt (0.7.6ubuntu12) gutsy; urgency=low
 +
 +  [ Michael Vogt ]
 +  * cmdline/apt-mark:
 +    - Fix chmoding after have renamed the extended-states file
 +      (thanks to Laurent Bigonville, LP: #140019)
 +  * apt-pkg/deb/debmetaindex.cc: comparison with string literal results
 +      in unspecified behaviour;
 +  * Reset curl options and timestamp between downloaded files. Thanks to
 +    Ryan Murray <rmurray@debian.org> for the patch
 +
 +  [Paul Sladen]
 +  * Have 'cron.daily/apt' send D-Bus doesn't exist error messages
 +    to the bit bucket.  Thanks to 'dasdda'.  (LP: #115397)
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Wed, 03 Oct 2007 02:17:45 +0200
 +
 +apt (0.7.6ubuntu11) gutsy; urgency=low
 +
 +  * apt-pkg/contrib/mmap.cc:
 +    - don't fail if msync() returns > 0 (LP: #144001)
 +
 + -- Colin Watson <cjwatson@ubuntu.com>  Sat, 22 Sep 2007 21:39:29 +0100
 +
 +apt (0.7.6ubuntu10) gutsy; urgency=low
 +
 +  * apt-pkg/deb/dpkgpm.cc:
 +    - fix parse error when dpkg sends unexpected data
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Tue, 18 Sep 2007 17:25:09 +0100
 +
 +apt (0.7.6ubuntu9) gutsy; urgency=low
 +
 +  * apt-pkg/deb/dpkgpm.cc:
 +    - fix progress reporting precent calculation (LP: #137798)
 +  * make apt build with g++ 4.3
 +  * fix missing SetExecClose() call when the status-fd is used
 +    (LP: #136767)
 +  * debian/apt.cron.daily:
 +    - move unattended-upgrade before apt-get autoclean
 +  * fix "purge" commandline argument, closes LP: #125733
 +    (thanks to Julien Danjou for the patch)
 +  * cmdline/apt-get.cc:
 +    - do not change the auto-installed information if a package
 +      is reinstalled (LP: #139448)
 +  
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Tue, 11 Sep 2007 20:55:00 +0200
 +
 +apt (0.7.6ubuntu8) gutsy; urgency=low
 +
 +  * apt-pkg/deb/dpkgpm.{cc,h}:
 +    - fix bug in dpkg log writing when a signal is caught during
 +      select() (LP: #134858)
 +    - write end marker in the log as well
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Wed, 05 Sep 2007 15:03:46 +0200
 +
 +apt (0.7.6ubuntu7) gutsy; urgency=low
 +
 +  * reupload to fix FTBFS
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Thu, 16 Aug 2007 19:44:20 +0200
 +
 +apt (0.7.6ubuntu6) gutsy; urgency=low
 +
 +  * dpkg-triggers: Deal properly with new package states.
 +
 + -- Ian Jackson <iwj@ubuntu.com>  Wed, 15 Aug 2007 20:44:37 +0100
 +
 +apt (0.7.6ubuntu5) UNRELEASED; urgency=low
 +
 +  * apt-pkg/acquire-item.cc:
 +    - fix file removal on local repo i-m-s hit (LP: #131166)
 +  * tests/local-repo:
 +    - added regression test for this bug
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Thu, 09 Aug 2007 12:34:07 +0200
 +
 +apt (0.7.6ubuntu4) gutsy; urgency=low
 +
 +  * cmdline/apt-get.cc:
 +    - remove YnPrompt when a XS-Vcs- tag is found, improve the
 +      notice (LP: #129575)
 +  * methods/copy.cc:
 +    - take hashes here too
 +  * apt-pkg/acquire-worker.cc:
 +    - only pass on computed hash if we recived one from the method
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Wed, 08 Aug 2007 19:30:29 +0200
 +
 +apt (0.7.6ubuntu3) gutsy; urgency=low
 +
 +  * apt-pkg/deb/dpkgpm.cc:
 +    - fix packagename extraction when writting apport reports
 +  * apt-pkg/pkgcachegen.cc:
 +    - increase default mmap size (LP: #125640)
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Tue, 07 Aug 2007 09:52:00 +0200
 +
 +apt (0.7.6ubuntu2) gutsy; urgency=low
 +
 +  * doc/examples/sources.list:
 +    - change example source to gutsy
 +  * apt-pkg/deb/dpkgpm.cc:
 +    - do not break if no /dev/pts is available
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Mon, 06 Aug 2007 15:17:57 +0200
 +
 +apt (0.7.6ubuntu1) gutsy; urgency=low
 +
 +  [ Michael Vogt ]
 +  * apt-inst/contrib/extracttar.cc:
 +    - fix fd leak for zero size files (thanks to Bill Broadley for
 +      reporting this bug)
 +  * apt-pkg/acquire-item.cc:
 +    - remove zero size files on I-M-S hit
 +  * methods/https.cc:
 +    - only send LastModified if we actually have a file
 +    - send range request with if-range 
 +    - delete failed downloads
 +    (thanks to Thom May for his help here)
 +    - delete zero size I-M-S hits
 +  * apt-pkg/deb/dpkgpm.{cc,h}:
 +    - merged dpkg-log branch, this lets you specify a 
 +      Dir::Log::Terminal file to log dpkg output to
 +    (ABI break)
 +    - when writting apport reports, attach the dpkg
 +      terminal log too
 +  * merged apt--sha256 branch to fully support the new
 +    sha256 checksums in the Packages and Release files
 +    (ABI break)
 +  * apt-pkg/pkgcachegen.cc:
 +    - increase default mmap size
 +  * tests/local-repo:
 +    - added local repository testcase
 +  * make apt build with g++ 4.3
 +  * fix missing SetExecClose() call when the status-fd is used
 +  * debian/apt.cron.daily:
 +    - move unattended-upgrade before apt-get autoclean
 +  * fix "purge" commandline argument, closes: #133421
 +    (thanks to Julien Danjou for the patch)
 +  * cmdline/apt-get.cc:
 +    - do not change the auto-installed information if a package
 +      is reinstalled
 +  * cmdline/apt-mark:
 +    - Fix chmoding after have renamed the extended-states file (LP: #140019)
 +      (thanks to Laurent Bigonville)
 +
 +  [ Ian Jackson ]
 +  * dpkg-triggers: Deal properly with new package states.
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Thu, 02 Aug 2007 11:55:54 +0200
 +
  apt (0.7.6) unstable; urgency=low
  
    * Applied patch from Aurelien Jarno <aurel32@debian.org> to fix wrong
@@@ -4968,14 -3432,6 +5280,14 @@@ apt (0.7.5) unstable; urgency=lo
  
   -- Otavio Salvador <otavio@ossystems.com.br>  Wed, 25 Jul 2007 20:16:46 -0300
  
 +apt (0.7.4ubuntu1) gutsy; urgency=low
 +
 +  * debian/apt.conf.ubuntu, apt.conf.autoremove:
 +    - Change metapackages to {restricted,universe,multiverse}/metapackages 
 +      in Install-Recommends-Sections and Never-MarkAuto-Sections
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Thu, 26 Jul 2007 10:42:29 +0200
 +
  apt (0.7.4) unstable; urgency=low
  
    [ Michael Vogt ]
@@@ -5036,90 -3492,6 +5348,90 @@@ apt (0.7.3) unstable; urgency=lo
  
   -- Michael Vogt <mvo@debian.org>  Sun, 01 Jul 2007 12:31:29 +0200
  
 +apt (0.7.2ubuntu7) gutsy; urgency=low
 +
 +  * fix build-dependencies 
 +  * fixes in the auto-mark code (thanks to Daniel
 +    Burrows)
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Mon,  9 Jul 2007 19:02:54 +0200
 +
 +apt (0.7.2ubuntu6) gutsy; urgency=low
 +
 +  [ Michael Vogt]
 +  * cmdline/apt-get.cc:
 +    - make the XS-Vcs-$foo warning more copy'n'paste
 +      friendly (thanks to Matt Zimmerman)
 +    - ignore the Vcs-Browser tag (Fixes LP: #121770)
 +  * debian/apt.conf.autoremove:
 +    - added "linux-ubuntu-modules" to APT::NeverAutoRemove
 +
 +  [ Sarah Hobbs ]
 +  * Change metapackages to *metapackages in Install-Recommends-Section
 +    and Never-MarkAuto-Section of debian/apt.conf.autoremove, so that
 +    the Recommends of metapackages in universe and multiverse will get
 +    installed.
 +  * Also make this change in doc/examples/configure-index.
 +  * Added a Build Dependancies of automake, docbook-xsl, xsltproc, xmlto,
 +    docbook to fix FTBFS.
 +  * Added in previous changelog entries, as those who uploaded did not
 +    actually commit to Bzr.
 +
 + -- Sarah Hobbs <hobbsee@ubuntu.com>  Mon, 09 Jul 2007 01:15:57 +1000
 +
 +apt (0.7.2ubuntu5) gutsy; urgency=low
 +
 +  * Rerun autoconf to fix the FTBFS.
 +
 + -- Michael Bienia <geser@ubuntu.com>  Fri, 06 Jul 2007 19:17:33 +0200
 +
 +apt (0.7.2ubuntu4) gutsy; urgency=low
 +
 +  * Rebuild for the libcurl4 -> libcurl3 transition mess.
 +
 + -- Steve Kowalik <stevenk@ubuntu.com>  Fri,  6 Jul 2007 12:44:05 +1000
 +
 +apt (0.7.2ubuntu3) gutsy; urgency=low
 +
 +  * cmdline/apt-get.cc:
 +    - fix InstallTask code when a pkgRecord ends 
 +      with a single '\n' (thanks to Soren Hansen for reporting)
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Wed, 27 Jun 2007 13:33:38 +0200
 +
 +apt (0.7.2ubuntu2) gutsy; urgency=low
 +
 +  * fixed compile errors with g++ 4.3 (thanks to 
 +    Daniel Burrows, closes: #429378)
 +  * fix FTFBFS by changing build-depends to
 +    libcurl4-gnutls-dev (closes: #428363)
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Tue, 19 Jun 2007 13:47:03 +0200
 +
 +apt (0.7.2ubuntu1) gutsy; urgency=low
 +
 +  * apt-pkg/deb/dpkgpm.cc:
 +    - apport integration added, this means that a apport
 +      report is written on dpkg failures
 +  * cmdline/apt-get.cc:
 +    - merged http://people.ubuntu.com/~mvo/bzr/apt/xs-vcs-bzr/
 +      this will warn when Vcs- headers are found on apt-get source
 +      (Fixes LP:#115959)
 +  * merged from debian/unstable, remaining changes:
 +    - maintainer field changed
 +    - merged the apt--mirror branch 
 +      http://people.ubuntu.com/~mvo/bzr/apt/apt--mirror/
 +    - apport reporting on package install/upgrade/remove failure
 +    - support for "Originial-Maintainer" field
 +    - merged apt--xs-vcs-bzr branch
 +      (http://people.ubuntu.com/~mvo/bzr/apt/xs-vcs-bzr/)
 +    - use ubuntu archive keyring by default
 +    - debian/apt.conf.autoremove
 +      + install recommands for section "metapackages"
 +      + do not mark direct dependencies of "metapackages" as autoremoved
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Thu, 14 Jun 2007 10:38:36 +0200
 +
  apt (0.7.2-0.1) unstable; urgency=low
  
    * Non-maintainer upload.
@@@ -5213,144 -3585,34 +5525,144 @@@ apt (0.7.1) experimental; urgency=lo
    * apt-pkg/policy.cc:
      - allow multiple packages (thanks to David Foerster)
  
 - -- Michael Vogt <mvo@debian.org>  Wed,  2 May 2007 13:43:44 +0200
 + -- Michael Vogt <mvo@debian.org>  Wed,  2 May 2007 13:43:44 +0200
 +
 +apt (0.7.0) experimental; urgency=low
 +
 +  * Package that contains all the new features
 +  * Removed all #pragma interface/implementation
 +  * Branch that contains all the new features:
 +  * translated package descriptions
 +  * task install support
 +  * automatic dependency removal (thanks to Daniel Burrows)
 +  * merged support for the new dpkg "Breaks" field 
 +    (thanks to Ian Jackson)
 +  * handle network failures more gracefully on "update"
 +  * support for unattended-upgrades (via unattended-upgrades
 +    package)
 +  * added apt-transport-https method
 +  * merged "install-recommends" branch (ABI break): 
 +    - new "--install-recommends"
 +    - install new recommends on "upgrade" if --install-recommends is 
 +      given
 +    - new "--fix-policy" option to install all packages with unmet
 +      important dependencies (usefull with --install-recommends to
 +      see what not-installed recommends are on the system)
 +    - fix of recommended packages display (only show CandidateVersion
 +      fix or-group handling)
 +  * merged "install-task" branch (use with "apt-get install taskname^")
 +
 + -- Michael Vogt <mvo@debian.org>  Fri, 12 Jan 2007 20:48:07 +0100
 +
 +apt (0.6.46.4ubuntu10) feisty; urgency=low
 +
 +  * apt-pkg/depcache.cc:
 +    - added "APT::Never-MarkAuto-Section" and consider dependencies 
 +      of packages in this section manual (LP#59893)
 +    - ensure proper permissions in the extended_state file (LP#67037)
 +  * debian/apt.conf.ubuntu:
 +    - added APT::Never-MarkAuto-Section "metapackages" (LP#59893)
 +  * cmdline/apt-get.cc:
 +    - "apt-get install foo" on a already installed package foo will
 +      clean the automatic installed flag (LP#72007)
 +    - do not show packages already marked for removal as auto-installed
 +      (LP#64493)
 +    - applied patch to (optionally) hide the auto-remove information
 +      (thanks to Frode M. Døving) (LP#69148)
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Wed, 14 Mar 2007 13:32:32 +0100
 +
 +apt (0.6.46.4ubuntu9) feisty; urgency=low
 +
 +  * debian/control:
 +    - set XS-Vcs-Bzr header
 +    - Set Ubuntu maintainer address
 +  * apt-pkg/cdrom.cc:
 +    - only unmount if APT::CDROM::NoMount is false
 +    - only umount if it was mounted by the method before
 +  * cmdline/apt-get.cc:
 +    - fix version output in autoremove list (LP#68941)
 +  * apt-pkg/packagemanager.cc:
 +    - do not spin 100% cpu in FixMissing() (LP#84476)
 +  * apt-pkg/indexfile.cc:
 +    - fix problem overwriting APT::Acquire::Translation
 +  * doc/examples/configure-index:
 +    - document APT::Acquire::Translation
 +  
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Tue, 13 Mar 2007 15:24:39 +0100
 +
 +apt (0.6.46.4ubuntu8) feisty; urgency=low
 +
 +  * fix segfault in the pkgRecords destructor
 +  * Bump ABI version
 +  * debian/control:
 +    - make the libcurl3-gnutls-dev versionized (LP#86614)
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Mon, 26 Feb 2007 14:26:33 +0100
 +
 +apt (0.6.46.4ubuntu7) feisty; urgency=low
 +
 +  * Merged the apt--mirror branch. This means that a new 'mirror' 
 +    method is available that will allow dynamic mirror updates.
 +    The sources.list entry looks something like this:
 +    "deb mirror://mirrors.lp.net/get_mirror feisty main restricted"
 +
 +    It also supports error reporting to a configurable url for mirror
 +    problems/failures.
 +  * Bump ABI version
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Tue,  6 Feb 2007 11:38:06 +0100
 +
 +apt (0.6.46.4ubuntu6) feisty; urgency=low
 +
 +  * methods/http.cc:
 +    - send apt version in User-Agent
 +  * apt-pkg/deb/debrecords.cc:
 +    - fix SHA1Hash() return value
 +  * apt-pkg/algorithms.cc:
 +    - fix resolver bug on removal triggered by weak-dependencies 
 +      with or-groups
 +    - fix segfault (lp: #76530)
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Wed, 20 Dec 2006 11:04:36 +0100
 +
 +apt (0.6.46.4ubuntu5) feisty; urgency=low
 +
 +  * added apt-transport-https package to provide a optional
 +    https transport (apt-https spec)
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Tue, 19 Dec 2006 16:23:43 +0100
  
 -apt (0.7.0) experimental; urgency=low
 +apt (0.6.46.4ubuntu4) feisty; urgency=low
 +  
 +  * apt-pkg/algorithms.cc:
 +    - only increase the score of installed applications if they 
 +      are not obsolete 
  
 -  * Package that contains all the new features
 -  * Removed all #pragma interface/implementation
 -  * Branch that contains all the new features:
 -  * translated package descriptions
 -  * task install support
 -  * automatic dependency removal (thanks to Daniel Burrows)
 -  * merged support for the new dpkg "Breaks" field 
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Mon, 18 Dec 2006 19:39:05 +0100
 +
 +apt (0.6.46.4ubuntu3) feisty; urgency=low
 +
 +  * apt-pkg/algorithm.cc:
 +    - use clog for all debugging
 +  * apt-pkg/depcache.cc:
 +    - never mark Required package for autoremoval (lp: #75882)
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Mon, 18 Dec 2006 11:56:05 +0100
 +
 +apt (0.6.46.4ubuntu2) feisty; urgency=low
 +
 +  * apt-pkg/algorithms.cc: add missing call to MarkKeep
 +    so that dist-upgrade isn't broken by unsatisfiable Breaks.
      (thanks to Ian Jackson)
 -  * handle network failures more gracefully on "update"
 -  * support for unattended-upgrades (via unattended-upgrades
 -    package)
 -  * added apt-transport-https method
 -  * merged "install-recommends" branch (ABI break): 
 -    - new "--install-recommends"
 -    - install new recommends on "upgrade" if --install-recommends is 
 -      given
 -    - new "--fix-policy" option to install all packages with unmet
 -      important dependencies (usefull with --install-recommends to
 -      see what not-installed recommends are on the system)
 -    - fix of recommended packages display (only show CandidateVersion
 -      fix or-group handling)
 -  * merged "install-task" branch (use with "apt-get install taskname^")
  
 - -- Michael Vogt <mvo@debian.org>  Fri, 12 Jan 2007 20:48:07 +0100
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Thu,  7 Dec 2006 23:07:24 +0100
 +
 +apt (0.6.46.4ubuntu1) feisty; urgency=low
 +
 +  * merged with debian
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Thu,  7 Dec 2006 12:13:14 +0100
  
  apt (0.6.46.4-0.1) unstable; urgency=emergency
    
@@@ -5381,26 -3643,6 +5693,26 @@@ apt (0.6.46.4) unstable; urgency=hig
  
   -- Michael Vogt <mvo@debian.org>  Thu,  7 Dec 2006 10:49:50 +0100
  
 +apt (0.6.46.3ubuntu2) feisty; urgency=low
 +
 +  * apt-pkg/algorithms.cc: add missing call to MarkKeep
 +    so that dist-upgrade isn't broken by unsatisfiable Breaks.
 +
 + -- Ian Jackson <iwj@ubuntu.com>  Thu,  7 Dec 2006 15:46:52 +0000
 +
 +apt (0.6.46.3ubuntu1) feisty; urgency=low
 +
 +  * doc/apt-get.8.xml:
 +    - documented autoremove, thanks to Vladimír Lapá\e%GÄ\8d\e%@ek 
 +      (lp: #62919)
 +  * fix broken i18n in the dpkg progress reporting, thanks to 
 +    Frans Pop and Steinar Gunderson. (closes: #389261)
 +  * po/en_GB.po:
 +    - typo (lp: #61270)
 +  * add apt-secure.8 to "See also" section
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Thu, 23 Nov 2006 07:24:12 +0100
 +
  apt (0.6.46.3-0.2) unstable; urgency=high
  
    * Non-maintainer upload with permission of Michael Vogt.
@@@ -5513,173 -3755,6 +5825,173 @@@ apt (0.6.46) unstable; urgency=lo
    
   -- Michael Vogt <mvo@debian.org>  Thu, 21 Sep 2006 10:25:03 +0200
  
 +apt (0.6.45ubuntu14) edgy; urgency=low
 +
 +  * cmdline/apt-get.cc:
 +    - fix in the TryInstallTask() code to make sure that all package
 +      there are marked manual install (lp: #61684)
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Thu, 28 Sep 2006 00:34:20 +0200
 +
 +apt (0.6.45ubuntu13) edgy; urgency=low
 +
 +  * no-changes upload to make apt rebuild against latest g++ and
 +    fix synaptic FTBFS (see bug: #62461 for details)
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Tue, 26 Sep 2006 22:33:10 +0200
 +
 +apt (0.6.45ubuntu12) edgy; urgency=low
 +
 +  * apt-pkg/depcache.cc:
 +    - fix in the sweep() code, set garbage flag for packages scheduled 
 +      for removal too
 +    - do not change the autoFlag in MarkKeep(), this can lead to suprising
 +      side effects
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Thu, 21 Sep 2006 00:58:24 +0200
 +
 +apt (0.6.45ubuntu11) edgy; urgency=low
 +
 +  * removed "installtask" and change it so that tasknames can be given
 +    with "apt-get install taskname^"
 +  * improve the writeStateFile() code
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Wed, 20 Sep 2006 14:14:24 +0200
 +
 +apt (0.6.45ubuntu10) edgy; urgency=low
 +
 +  * methods/http.cc:
 +    - check more careful for incorrect proxy settings (closes: #378868)
 +  * methods/gzip.cc:
 +    - don't hang when /var is full (closes: #341537), thanks to
 +      Luis Rodrigo Gallardo Cruz for the patch
 +  * doc/examples/sources.list:
 +    - removed non-us.debian.org from the example (closes: #380030,#316196)
 +  * Merged from Christian Perrier bzr branch:
 +    * ro.po: Updated to 514t. Closes: #388402
 +    * dz.po: Updated to 514t. Closes: #388184
 +    * it.po: Fixed typos. Closes: #387812
 +    * ku.po: New kurdish translation. Closes: #387766
 +    * sk.po: Updated to 514t. Closes: #386851
 +    * ja.po: Updated to 514t. Closes: #386537
 +    * gl.po: Updated to 514t. Closes: #386397
 +    * fr.po: Updated to 516t.
 +    * fi.po: Updated to 512t. Closes: #382702
 +  * share/archive-archive.gpg:
 +    - removed the outdated amd64 and debian-2004 keys
 +  * apt-pkg/tagfile.cc:
 +    - applied patch from Jeroen van Wolffelaar to make the tags
 +      caseinsensitive (closes: #384182)
 +    - reverted MMap use in the tagfile because it does not work 
 +      across pipes (closes: #383487) 
 +  * added "installtask" command
 +  * added new ubuntu specific rewrite rule for "Original-Maintainer"
 +  
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Tue, 19 Sep 2006 15:07:51 +0200
 +
 +apt (0.6.45ubuntu9) edgy; urgency=low
 +
 +  * cmdline/apt-get.cc:
 +    - if --no-remove is given, do not run the AutoRemove code 
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Wed, 13 Sep 2006 11:54:20 +0200
 +
 +apt (0.6.45ubuntu8) edgy; urgency=low
 +
 +  * apt-pkg/algorithm.cc:
 +    - fix pkgProblemResolver.InstallProtect() to preserve the auto-install
 +      information (lp: #59457)
 +  * cmdline/apt-get.cc:
 +    - fix typo in autoremove information (lp: #59420)
 +  * install apt-mark to modify the automatically install information for
 +    packages
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Fri,  8 Sep 2006 20:07:22 +0200
 +
 +apt (0.6.45ubuntu7) edgy; urgency=low
 +
 +  * apt-pkg/depcache.cc:
 +    - fix a bug in the install-recommends-section code
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Thu,  7 Sep 2006 18:22:38 +0200
 +
 +apt (0.6.45ubuntu6) edgy; urgency=low
 +
 +  [Michael Vogt]
 +  * cmdline/apt-get.cc:
 +    - always show auto-removable packages and give a hint how to remove 
 +      them
 +  * debian/apt.conf.ubuntu:
 +    - exlucde linux-image and linux-restricted-modules from ever being 
 +      auto-removed
 +    - added "metapackages" as the section we want to install recommends
 +      by default
 +  * apt-pkg/depcache.cc:
 +    - added support to turn install-recommends selectively on/off by
 +      section
 +  [Ian Jackson]
 +  * Tests pass without code changes!  Except that we need this:
 +  * Bump cache file major version to force rebuild so that Breaks
 +    dependencies are included.
 +  * Don't depend on or suggest any particular dpkg or dpkg-dev versions;
 +    --auto-deconfigure is very very old and dpkg-dev's Breaks support
 +    is more or less orthogonal.
 +  * Initial draft of `Breaks' implementation.  Appears to compile,
 +    but as yet *completely untested*.
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Thu,  7 Sep 2006 11:50:52 +0200
 +
 +apt (0.6.45ubuntu5) edgy; urgency=low
 +
 +  * apt-pkg/pkgcachegen.cc:
 +    - increase the APT::Cache-Limit to deal with the increased demand due
 +      to the translated descriptions
 +  * apt-pkg/deb/dpkgpm.cc:
 +    - pass "--auto-deconfigure" to dpkg on install to support the
 +      new "breaks" in dpkg
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Tue, 15 Aug 2006 12:06:26 +0200
 +
 +apt (0.6.45ubuntu4) edgy; urgency=low
 +
 +  * cmdline/apt-get.cc:
 +    - fix in the new --fix-polciy code
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Mon, 14 Aug 2006 21:08:11 +0200
 +
 +apt (0.6.45ubuntu3) edgy; urgency=low
 +
 +  * ABI break
 +  * merged latest apt--install-recommends (closes: #559000)
 +  * added "--fix-policy" option to can be used as "--fix-broken" and
 +    will install missing weak depends (recommends, and/or suggests 
 +    depending on the settings)
 +  * merged the apt--ddtp branch
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Fri, 11 Aug 2006 12:53:23 +0200
 +
 +apt (0.6.45ubuntu2) edgy; urgency=low
 +
 +  * debian/control:
 +    - switched to libdb4.4 for building (closes: #381019)
 +  * cmdline/apt-get.cc:
 +    - show only the recommends/suggests for the candidate-version, not for all
 +      versions of the package (closes: #257054)
 +    - properly handle recommends/suggests or-groups when printing the list of
 +      suggested/recommends packages (closes: #311619)
 +  * merged "apt--install-recommends" branch:
 +    - added "{no-}install-recommends" commandline option
 +    - added APT::Install-{Recommends,Suggests} option
 +    - currently Install-Recommends defaults to "False" 
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Wed,  9 Aug 2006 23:38:46 +0200
 +
 +apt (0.6.45ubuntu1) edgy; urgency=low
 +
 +  * merged with debian/unstable
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Tue,  1 Aug 2006 15:43:22 +0200
 +
  apt (0.6.45) unstable; urgency=low
  
    * apt-pkg/contrib/sha256.cc:
  
   -- Michael Vogt <mvo@debian.org>  Thu, 27 Jul 2006 00:52:05 +0200
  
 +apt (0.6.44.2ubuntu4) edgy; urgency=low
 +
 +  * Make apt-get dselect-upgrade happy again
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Fri, 21 Jul 2006 11:03:02 +0200
 +
 +apt (0.6.44.2ubuntu3) edgy; urgency=low
 +
 +  * Close extended_states file after writing it.
 +
 + -- Colin Watson <cjwatson@ubuntu.com>  Tue, 18 Jul 2006 00:12:13 +0100
 +
 +apt (0.6.44.2ubuntu2) edgy; urgency=low
 +
 +  * create a empty extended_states file if none exists already
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Tue,  4 Jul 2006 09:23:03 +0200
 +
 +apt (0.6.44.2ubuntu1) edgy; urgency=low
 +
 +  * merged with debian/unstable
 +  * merged the "auto-mark" branch to support aptitude like
 +    marking of automatically installed dependencies and added
 +    "apt-get remove --auto-remove" to remove unused auto-installed
 +    packages again
 +  * changed library version from 3.11 to 3.50 to make it clearly 
 +    different from the debian version (we are ABI incompatible because
 +    of the auto-mark patch)
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Mon,  3 Jul 2006 18:30:46 +0200
 +
  apt (0.6.44.2exp1) experimental; urgency=low
  
    * added support for i18n of the package descriptions
@@@ -5844,26 -3888,6 +6156,26 @@@ apt (0.6.44) unstable; urgency=lo
    
   -- Michael Vogt <mvo@debian.org>  Mon,  8 May 2006 22:28:53 +0200
  
 +apt (0.6.43.3ubuntu3) dapper; urgency=low
 +
 +  * methods/http.cc:
 +    - fix the user-agent string
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Fri, 26 May 2006 18:09:32 +0200
 +
 +apt (0.6.43.3ubuntu2) dapper; urgency=low
 +
 +  * apt-pkg/deb/dpkgpm.cc: wording fixes (thanks to Matt Zimmerman)
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Tue, 18 Apr 2006 13:24:40 +0200
 +
 +apt (0.6.43.3ubuntu1) dapper; urgency=low
 +
 +  * apt-pkg/acquire.cc: don't show ETA if it is 0 or absurdely large in 
 +    the status-fd (ubuntu #28954)
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Tue, 28 Mar 2006 20:34:46 +0200
 +
  apt (0.6.43.3) unstable; urgency=low
  
    * Merge bubulle@debian.org--2005/apt--main--0 up to patch-186:
  
   -- Michael Vogt <mvo@debian.org>  Wed, 22 Feb 2006 10:13:04 +0100
  
 +apt (0.6.43.2ubuntu1) dapper; urgency=low
 +
 +  * Merge bubulle@debian.org--2005/apt--main--0 up to patch-182:
 +  * ca.po: Completed to 512t. Closes: #351592
 +    * eu.po: Completed to 512t. Closes: #350483
 +    * ja.po: Completed to 512t. Closes: #349806
 +    * pl.po: Completed to 512t. Closes: #349514
 +    * sk.po: Completed to 512t. Closes: #349474
 +    * gl.po: Completed to 512 strings Closes: #349407
 +    * vi.po: Completed to 512 strings
 +    * sv.po: Completed to 512 strings Closes: #349210
 +    * ru.po: Completed to 512 strings Closes: #349154
 +    * da.po: Completed to 512 strings Closes: #349084
 +    * fr.po: Completed to 512 strings
 +    * LINGUAS: Add Welsh
 +    * *.po: Updated from sources (512 strings)
 +    * vi.po: Completed to 511 strings  Closes: #348968
 +  * apt-pkg/deb/deblistparser.cc:
 +    - don't explode on a DepCompareOp in a Provides line, but warn about
 +      it and ignore it otherwise (thanks to James Troup for reporting it)
 +  * cmdline/apt-get.cc:
 +    - don't lock the lists directory in DoInstall, breaks --print-uri 
 +      (thanks to James Troup for reporting it)
 +  * debian/apt.dirs: create /etc/apt/sources.list.d 
 +  * make apt-cache madison work without deb-src entries (#352583)
 +  * cmdline/apt-get.cc: only run the list-cleaner if a update was 
 +    successfull
 +  * apt-get update errors are only warnings nowdays
 +  * be more careful with the signature file on network failures
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Mon, 20 Feb 2006 22:27:48 +0100
 +
  apt (0.6.43.2) unstable; urgency=low
  
    * Merge bubulle@debian.org--2005/apt--main--0 up to patch-166:
  
   -- Michael Vogt <mvo@debian.org>  Thu, 19 Jan 2006 00:06:33 +0100
  
 +apt (0.6.43.1ubuntu1) dapper; urgency=low
 +
 +  * Merge bubulle@debian.org--2005/apt--main--0 up to patch-159:
 +    - en_GB.po, de.po: fix spaces errors in "Ign " translations
 +      Closes: #347258
 +    - makefile: make update-po a pre-requisite of clean target so
 +              that POT and PO files are always up-to-date
 +    - sv.po: Completed to 511t. Closes: #346450
 +    - sk.po: Completed to 511t. Closes: #346369
 +    - fr.po: Completed to 511t
 +    - *.po: Updated from sources (511 strings)
 +  * add patch to fix http download corruption problem (thanks to
 +    Petr Vandrovec, closes: #280844, #290694)
 +  * added APT::Periodic::Unattended-Upgrade (requires the package
 +    "unattended-upgrade")
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Tue, 10 Jan 2006 17:09:31 +0100
 +
  apt (0.6.43.1) unstable; urgency=low
  
    * Merge bubulle@debian.org--2005/apt--main--0 up to patch-148:
  
   -- Michael Vogt <mvo@debian.org>  Fri,  6 Jan 2006 01:17:08 +0100
  
 +apt (0.6.43ubuntu2) dapper; urgency=low
 +
 +  * merged some missing bits that wheren't merged by baz in the previous
 +    upload (*grumble*)
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Thu,  8 Dec 2005 18:35:58 +0100
 +
 +apt (0.6.43ubuntu1) dapper; urgency=low
 +
 +  * merged with debian
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Fri, 25 Nov 2005 11:36:29 +0100
 +
  apt (0.6.43) unstable; urgency=medium
  
    * Merge bubulle@debian.org--2005/apt--main--0 up to patch-132:  
    
   -- Michael Vogt <mvo@debian.org>  Tue, 29 Nov 2005 00:17:07 +0100
  
 +apt (0.6.42.3ubuntu2) dapper; urgency=low
 +
 +  * Merge bubulle@debian.org--2005/apt--main--0 up to patch-131:  
 +    * zh_CN.po: Completed to 507 strings(Closes: #338267)
 +    * gl.po: Completed to 510 strings (Closes: #338356)
 +  * added support for "/etc/apt/sources.list.d" directory 
 +    (closes: #66325)
 +  
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Mon, 14 Nov 2005 15:30:12 +0100
 +
 +apt (0.6.42.3ubuntu1) dapper; urgency=low
 +
 +  * synced with debian
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Thu, 10 Nov 2005 05:05:56 +0100
 +
  apt (0.6.42.3) unstable; urgency=low
  
    * Merge bubulle@debian.org--2005/apt--main--0 up to patch-129:
@@@ -6147,80 -4092,6 +6459,80 @@@ apt (0.6.41) unstable; urgency=lo
    
   -- Michael Vogt <mvo@debian.org>  Mon,  5 Sep 2005 22:59:03 +0200
  
 +apt (0.6.40.1ubuntu8) breezy; urgency=low
 +
 +  * Cherry picked michael.vogt@ubuntu.com--2005/apt--mvo--0--patch-62:
 +    - fix for a bad memory/file leak in the mmap code (ubuntu #15603)
 +  * po/de.po, po/fr.po: 
 +    - updated the translations
 +  * po/makefile:
 +    - create a single pot file in each domain dir to make rosetta happy
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Wed, 28 Sep 2005 10:16:06 +0200
 +
 +apt (0.6.40.1ubuntu7) breezy; urgency=low
 +
 +  * updated the pot/po files , no code changes
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Tue, 27 Sep 2005 18:38:16 +0200
 +
 +apt (0.6.40.1ubuntu6) breezy; urgency=low
 +
 +  * Cherry picked michael.vogt@ubuntu.com--2005/apt--mvo--0--patch-56:
 +    - make it possible for apt to handle a failed MediaChange event and
 +      fall back to other sources (ubuntu #13713)
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Tue, 13 Sep 2005 22:09:50 +0200
 +
 +apt (0.6.40.1ubuntu5) breezy; urgency=low
 +
 +  * Cherry picked michael.vogt@ubuntu.com--2005/apt--mvo--0--patch-{50,51}.
 +    This adds media-change reporting to the apt status-fd (ubuntu #15213)
 +  * Cherry picked michael.vogt@ubuntu.com--2005/apt--mvo--0--patch-55:
 +    apt-pkg/cdrom.cc:
 +    - unmount the cdrom when apt failed to locate any package files
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Mon, 12 Sep 2005 15:44:26 +0200
 +
 +apt (0.6.40.1ubuntu4) breezy; urgency=low
 +
 +  * debian/apt.cron.daily:
 +    - fix a embarrassing typo
 +  
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Wed,  7 Sep 2005 10:10:37 +0200
 +
 +apt (0.6.40.1ubuntu3) breezy; urgency=low
 +
 +  * debian/apt.cron.daily:
 +    - use the ctime as well when figuring what packages need to
 +      be removed. This fixes the problem that packages copied with    
 +      "cp -a" (e.g. from the installer) have old mtimes (ubuntu #14504)
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Tue,  6 Sep 2005 18:30:46 +0200
 +
 +apt (0.6.40.1ubuntu2) breezy; urgency=low
 +
 +  * improved the support for "error" and "conffile" reporting from
 +    dpkg, added the format to README.progress-reporting
 +  * added README.progress-reporting to the apt-doc package
 +  * Do md5sum checking for file and cdrom method (closes: #319142)
 +  * Change pkgPolicy::Pin from private to protected to let subclasses
 +    access it too (closes: #321799)
 +  * methods/connect.cc:
 +    - send failure reason for EAI_AGAIN (TmpResolveFailure) to acuire-item
 +  * apt-pkg/acquire-item.cc:
 +    - fail early if a FailReason is TmpResolveFailure (avoids hangs during
 +      the install when no network is available)
 +  * merged michael.vogt@ubuntu.com--2005/apt--trust-cdrom--0
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Tue, 23 Aug 2005 19:44:55 +0200
 +
 +apt (0.6.40.1ubuntu1) breezy; urgency=low
 +
 +  * Synchronize with Debian
 +
 + -- Michael Vogt <michael.vogt@ubuntu.com>  Fri,  5 Aug 2005 14:20:56 +0200
 +
  apt (0.6.40.1) unstable; urgency=low
  
    * bugfix in the parsing code for the apt<->dpkg communication. apt 
  
   -- Michael Vogt <mvo@debian.org>  Fri,  5 Aug 2005 13:24:58 +0200
  
 +apt (0.6.40ubuntu1) breezy; urgency=low
 +
 +  * Synchronize with Debian
 +
 + -- Matt Zimmerman <mdz@ubuntu.com>  Thu,  4 Aug 2005 15:53:22 -0700
 +
  apt (0.6.40) unstable; urgency=low
  
    * Patch from Jordi Mallach to mark some additional strings for translation
  
   -- Matt Zimmerman <mdz@debian.org>  Thu, 28 Jul 2005 11:57:32 -0700
  
 +apt (0.6.39ubuntu4) breezy; urgency=low
 +
 +  * Fix keyring paths in apt-key, apt.postinst (I swear I remember doing this
 +    before...)
 +
 + -- Matt Zimmerman <mdz@ubuntu.com>  Wed, 29 Jun 2005 08:39:17 -0700
 +
 +apt (0.6.39ubuntu3) breezy; urgency=low
 +
 +  * Fix keyring locations for Ubuntu in apt-key too.
 +
 + -- Colin Watson <cjwatson@ubuntu.com>  Wed, 29 Jun 2005 14:45:36 +0100
 +
 +apt (0.6.39ubuntu2) breezy; urgency=low
 +
 +  * Install ubuntu-archive.gpg rather than debian-archive.gpg as
 +    /etc/apt/trusted.gpg.
 +
 + -- Colin Watson <cjwatson@ubuntu.com>  Wed, 29 Jun 2005 11:53:34 +0100
 +
 +apt (0.6.39ubuntu1) breezy; urgency=low
 +
 +  * Michael Vogt
 +    - Change debian/bugscript to use #!/bin/bash (Closes: #313402)
 +    - Fix a incorrect example in the man-page (closes: #282918)
 +    - Support architecture-specific extra overrides
 +      (closes: #225947). Thanks to  Anthony Towns for idea and
 +      the patch, thanks to Colin Watson for testing it.
 +    - better report network timeouts from the methods to the acuire code,
 +      only timeout once per sources.list line
 +
 + -- Matt Zimmerman <mdz@ubuntu.com>  Tue, 28 Jun 2005 11:52:24 -0700
 +
  apt (0.6.39) unstable; urgency=low
  
    * Welsh translation update: daf@muse.19inch.net--2005/apt--main--0--patch-6
  
   -- Matt Zimmerman <mdz@debian.org>  Tue, 28 Jun 2005 11:51:09 -0700
  
 +apt (0.6.38ubuntu1) breezy; urgency=low
 +
 +  * First release from Ubuntu branch
 +  * Merge with --main--0, switch back to Ubuntu keyring
 +
 + -- Matt Zimmerman <mdz@ubuntu.com>  Sat, 25 Jun 2005 16:52:41 -0700
 +
  apt (0.6.38) unstable; urgency=low
  
    * Merge michael.vogt@ubuntu.com--2005/apt--fixes--0--patch-6, a workaround
diff --combined debian/control
index f78d78bd8e2e52df8633ea659a125d4853f055a1,7efb6ca8ab980ffa982655b5342f071b4657f54c..150c568293edee0d096e85d05184065a3a48bb28
@@@ -1,8 -1,7 +1,8 @@@
  Source: apt
  Section: admin
  Priority: important
 -Maintainer: APT Development Team <deity@lists.debian.org>
 +Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
 +XSBC-Original-Maintainer: APT Development Team <deity@lists.debian.org>
  Uploaders: Michael Vogt <mvo@debian.org>, Otavio Salvador <otavio@debian.org>,
   Christian Perrier <bubulle@debian.org>, Daniel Burrows <dburrows@debian.org>,
   Julian Andres Klode <jak@debian.org>
@@@ -10,15 -9,14 +10,15 @@@ Standards-Version: 3.9.
  Build-Depends: dpkg-dev (>= 1.15.8), debhelper (>= 7.2.3~), libdb-dev,
   gettext (>= 0.12), libcurl4-gnutls-dev (>= 7.19.0), 
   zlib1g-dev | libz-dev, debiandoc-sgml, xsltproc, docbook-xsl, docbook-xml, 
 - po4a (>= 0.34-2), autotools-dev, autoconf, automake, doxygen
 + po4a (>= 0.34-2), autotools-dev, autoconf, automake, doxygen,
 + gcc-4.6 (>= 4.6.0-6ubuntu2)
  Build-Conflicts: autoconf2.13, automake1.4
 -Vcs-Bzr: http://bzr.debian.org/apt/debian-sid/
 -Vcs-Browser: http://bzr.debian.org/loggerhead/apt/debian-sid/
 +Vcs-Bzr: lp:~ubuntu-core-dev/apt/ubuntu
 +Vcs-Browser: http://code.launchpad.net/apt/ubuntu
  
  Package: apt
  Architecture: any
 -Depends: ${shlibs:Depends}, ${misc:Depends}, debian-archive-keyring, gnupg
 +Depends: ubuntu-keyring, ${shlibs:Depends}, ${misc:Depends}, gnupg
  Replaces: manpages-pl (<< 20060617-3~)
  Conflicts: python-apt (<< 0.7.93.2~)
  Suggests: aptitude | synaptic | wajig, dpkg-dev, apt-doc, bzip2, lzma, python-apt
@@@ -37,7 -35,7 +37,7 @@@ Description: APT's commandline package 
    * apt-config as an interface to the configuration settings
    * apt-key as an interface to manage authentication keys
  
- Package: libapt-pkg4.11
+ Package: libapt-pkg4.12
  Architecture: any
  Depends: ${shlibs:Depends}, ${misc:Depends}
  Description: APT's package managment runtime library
@@@ -56,7 -54,7 +56,7 @@@
      http, rsh as well as an interface to add more transports like
      https (apt-transport-https) and debtorrent (apt-transport-debtorrent).
  
- Package: libapt-inst1.3
+ Package: libapt-inst1.4
  Architecture: any
  Depends: ${shlibs:Depends}, ${misc:Depends}
  Description: APT's deb package format runtime library
diff --combined debian/rules
index 2cfd95b31cd9f7b7e949418c82cf56c9485631fc,30474c06b71fb4cd9ac6adbd7a70a45119e97e52..71019a746468d014c38ebc545cd41185bae59035
@@@ -3,9 -3,6 +3,9 @@@
  # Sample debian/rules that uses debhelper. GNU copyright 1997 by Joey Hess.
  # Some lines taken from debmake, by Christoph Lameter.
  
 +# build in verbose mode by default to make it easy to diangose issues
 +export NOISY=1
 +
  export DEB_HOST_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
  export DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
  
@@@ -103,7 -100,12 +103,12 @@@ build/build-stamp: build/configure-stam
        # compat symlink for the locale split
        mkdir -p build/usr/share 
        cd build/usr/share && ln -f -s ../../locale .
-       # done here
+       # compile and run tests
+ ifeq (,$(findstring nocheck, $(DEB_BUILD_OPTIONS)))
+       $(MAKE) test
+ else
+       @echo "Tests DISABLED"
+ endif
        touch $@
  
  build/build-doc-stamp: build/configure-stamp
@@@ -180,8 -182,6 +185,8 @@@ apt: build build-do
  # apt install
  #
        cp debian/apt.conf.autoremove debian/$@/etc/apt/apt.conf.d/01autoremove
 +      cp debian/apt.conf.changelog debian/$@/etc/apt/apt.conf.d/20changelog
 +      cp share/ubuntu-archive.gpg debian/$@/usr/share/$@
  
        # make rosetta happy and remove pot files in po/ (but leave stuff
        # in po/domains/* untouched) and cp *.po into each domain dir
diff --combined doc/po/apt-doc.pot
index edab6f3797ba4cd6d9dda7fbaa013ac1da900f10,364dce12f821361f22df78f81181c9777660254d..fff943e354d1626ffb457bc246352986c0a0eebe
@@@ -7,7 -7,7 +7,7 @@@
  msgid ""
  msgstr ""
  "Project-Id-Version: PACKAGE VERSION\n"
- "POT-Creation-Date: 2011-04-05 10:22+0300\n"
 -"POT-Creation-Date: 2011-06-08 16:54+0300\n"
++"POT-Creation-Date: 2011-11-10 16:42+0100\n"
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
  "Language-Team: LANGUAGE <LL@li.org>\n"
@@@ -566,7 -566,7 +566,7 @@@ msgid "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><title>
- #: apt-cache.8.xml:64 apt-cdrom.8.xml:50 apt-config.8.xml:50 apt-extracttemplates.1.xml:46 apt-ftparchive.1.xml:59 apt-get.8.xml:114 apt-key.8.xml:38 apt-mark.8.xml:55 apt-secure.8.xml:43 apt-sortpkgs.1.xml:47 apt.conf.5.xml:42 apt_preferences.5.xml:36 sources.list.5.xml:36
 -#: apt-cache.8.xml:64 apt-cdrom.8.xml:50 apt-config.8.xml:50 apt-extracttemplates.1.xml:46 apt-ftparchive.1.xml:59 apt-get.8.xml:114 apt-key.8.xml:38 apt-mark.8.xml:56 apt-secure.8.xml:43 apt-sortpkgs.1.xml:47 apt.conf.5.xml:42 apt_preferences.5.xml:36 sources.list.5.xml:36
++#: apt-cache.8.xml:64 apt-cdrom.8.xml:50 apt-config.8.xml:50 apt-extracttemplates.1.xml:46 apt-ftparchive.1.xml:59 apt-get.8.xml:121 apt-key.8.xml:38 apt-mark.8.xml:56 apt-secure.8.xml:43 apt-sortpkgs.1.xml:47 apt.conf.5.xml:42 apt_preferences.5.xml:36 sources.list.5.xml:36
  msgid "Description"
  msgstr ""
  
@@@ -580,7 -580,7 +580,7 @@@ msgid "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt-cache.8.xml:70 apt-get.8.xml:120
++#: apt-cache.8.xml:70 apt-get.8.xml:127
  msgid ""
  "Unless the <option>-h</option>, or <option>--help</option> option is given, "
  "one of the commands below must be present."
@@@ -944,7 -944,7 +944,7 @@@ msgid "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-cache.8.xml:278 apt-config.8.xml:96 apt-extracttemplates.1.xml:59 apt-ftparchive.1.xml:525 apt-get.8.xml:331 apt-mark.8.xml:92 apt-sortpkgs.1.xml:57 apt.conf.5.xml:560 apt.conf.5.xml:582
 -#: apt-cache.8.xml:278 apt-config.8.xml:96 apt-extracttemplates.1.xml:59 apt-ftparchive.1.xml:525 apt-get.8.xml:331 apt-mark.8.xml:126 apt-sortpkgs.1.xml:57 apt.conf.5.xml:560 apt.conf.5.xml:582
++#: apt-cache.8.xml:278 apt-config.8.xml:96 apt-extracttemplates.1.xml:59 apt-ftparchive.1.xml:525 apt-get.8.xml:342 apt-mark.8.xml:126 apt-sortpkgs.1.xml:57 apt.conf.5.xml:577 apt.conf.5.xml:599
  msgid "options"
  msgstr ""
  
@@@ -967,7 -967,7 +967,7 @@@ msgid "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-cache.8.xml:288 apt-ftparchive.1.xml:571 apt-get.8.xml:393 apt-sortpkgs.1.xml:61
++#: apt-cache.8.xml:288 apt-ftparchive.1.xml:572 apt-get.8.xml:404 apt-sortpkgs.1.xml:61
  msgid "<option>-s</option>"
  msgstr ""
  
@@@ -987,12 -987,12 +987,12 @@@ msgid "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-cache.8.xml:296 apt-ftparchive.1.xml:545 apt-get.8.xml:383
++#: apt-cache.8.xml:296 apt-ftparchive.1.xml:546 apt-get.8.xml:394
  msgid "<option>-q</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-cache.8.xml:296 apt-ftparchive.1.xml:545 apt-get.8.xml:383
++#: apt-cache.8.xml:296 apt-ftparchive.1.xml:546 apt-get.8.xml:394
  msgid "<option>--quiet</option>"
  msgstr ""
  
@@@ -1067,14 -1067,14 +1067,14 @@@ msgstr "
  #: apt-cache.8.xml:317
  msgid ""
  "Per default the <literal>depends</literal> and <literal>rdepends</literal> "
--"print all dependencies. This can be twicked with these flags which will omit "
++"print all dependencies. This can be tweaked with these flags which will omit "
  "the specified dependency type.  Configuration Item: "
  "<literal>APT::Cache::Show<replaceable>DependencyType</replaceable></literal> "
  "e.g. <literal>APT::Cache::ShowRecommends</literal>."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-cache.8.xml:323 apt-cdrom.8.xml:124 apt-get.8.xml:350
++#: apt-cache.8.xml:323 apt-cdrom.8.xml:124 apt-get.8.xml:361
  msgid "<option>-f</option>"
  msgstr ""
  
@@@ -1091,7 -1091,7 +1091,7 @@@ msgid "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-cache.8.xml:328 apt-cdrom.8.xml:134 apt-ftparchive.1.xml:583
++#: apt-cache.8.xml:328 apt-cdrom.8.xml:134 apt-ftparchive.1.xml:584 apt-get.8.xml:452
  msgid "<option>-a</option>"
  msgstr ""
  
@@@ -1187,12 -1187,12 +1187,12 @@@ msgid "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist>
- #: apt-cache.8.xml:367 apt-cdrom.8.xml:153 apt-config.8.xml:101 apt-extracttemplates.1.xml:70 apt-ftparchive.1.xml:611 apt-get.8.xml:570 apt-sortpkgs.1.xml:67
 -#: apt-cache.8.xml:367 apt-cdrom.8.xml:153 apt-config.8.xml:101 apt-extracttemplates.1.xml:70 apt-ftparchive.1.xml:611 apt-get.8.xml:570 apt-mark.8.xml:140 apt-sortpkgs.1.xml:67
++#: apt-cache.8.xml:367 apt-cdrom.8.xml:153 apt-config.8.xml:101 apt-extracttemplates.1.xml:70 apt-ftparchive.1.xml:612 apt-get.8.xml:596 apt-mark.8.xml:140 apt-sortpkgs.1.xml:67
  msgid "&apt-commonoptions;"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><title>
- #: apt-cache.8.xml:372 apt-get.8.xml:575 apt-key.8.xml:156 apt-mark.8.xml:125 apt.conf.5.xml:1093 apt_preferences.5.xml:654
 -#: apt-cache.8.xml:372 apt-get.8.xml:575 apt-key.8.xml:172 apt-mark.8.xml:144 apt.conf.5.xml:1093 apt_preferences.5.xml:697
++#: apt-cache.8.xml:372 apt-get.8.xml:601 apt-key.8.xml:175 apt-mark.8.xml:144 apt.conf.5.xml:1110 apt_preferences.5.xml:697
  msgid "Files"
  msgstr ""
  
@@@ -1202,7 -1202,7 +1202,7 @@@ msgid "&file-sourceslist; &file-stateli
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><title>
- #: apt-cache.8.xml:379 apt-cdrom.8.xml:158 apt-config.8.xml:106 apt-extracttemplates.1.xml:77 apt-ftparchive.1.xml:627 apt-get.8.xml:585 apt-key.8.xml:177 apt-mark.8.xml:131 apt-secure.8.xml:185 apt-sortpkgs.1.xml:72 apt.conf.5.xml:1099 apt_preferences.5.xml:661 sources.list.5.xml:234
 -#: apt-cache.8.xml:379 apt-cdrom.8.xml:158 apt-config.8.xml:106 apt-extracttemplates.1.xml:77 apt-ftparchive.1.xml:627 apt-get.8.xml:585 apt-key.8.xml:193 apt-mark.8.xml:150 apt-secure.8.xml:185 apt-sortpkgs.1.xml:72 apt.conf.5.xml:1099 apt_preferences.5.xml:704 sources.list.5.xml:234
++#: apt-cache.8.xml:379 apt-cdrom.8.xml:158 apt-config.8.xml:106 apt-extracttemplates.1.xml:77 apt-ftparchive.1.xml:628 apt-get.8.xml:611 apt-key.8.xml:196 apt-mark.8.xml:150 apt-secure.8.xml:185 apt-sortpkgs.1.xml:72 apt.conf.5.xml:1116 apt_preferences.5.xml:704 sources.list.5.xml:255
  msgid "See Also"
  msgstr ""
  
@@@ -1212,7 -1212,7 +1212,7 @@@ msgid "&apt-conf;, &sources-list;, &apt
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><title>
- #: apt-cache.8.xml:384 apt-cdrom.8.xml:163 apt-config.8.xml:111 apt-extracttemplates.1.xml:81 apt-ftparchive.1.xml:631 apt-get.8.xml:591 apt-mark.8.xml:135 apt-sortpkgs.1.xml:76
 -#: apt-cache.8.xml:384 apt-cdrom.8.xml:163 apt-config.8.xml:111 apt-extracttemplates.1.xml:81 apt-ftparchive.1.xml:631 apt-get.8.xml:591 apt-mark.8.xml:154 apt-sortpkgs.1.xml:76
++#: apt-cache.8.xml:384 apt-cdrom.8.xml:163 apt-config.8.xml:111 apt-extracttemplates.1.xml:81 apt-ftparchive.1.xml:632 apt-get.8.xml:617 apt-mark.8.xml:154 apt-sortpkgs.1.xml:76
  msgid "Diagnostics"
  msgstr ""
  
@@@ -1311,12 -1311,12 +1311,12 @@@ msgid "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><title>
- #: apt-cdrom.8.xml:94 apt-key.8.xml:142
 -#: apt-cdrom.8.xml:94 apt-key.8.xml:158
++#: apt-cdrom.8.xml:94 apt-key.8.xml:161
  msgid "Options"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-cdrom.8.xml:98 apt-ftparchive.1.xml:539 apt-get.8.xml:345
++#: apt-cdrom.8.xml:98 apt-ftparchive.1.xml:540 apt-get.8.xml:356
  msgid "<option>-d</option>"
  msgstr ""
  
@@@ -1352,7 -1352,7 +1352,7 @@@ msgid "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-cdrom.8.xml:116 apt-get.8.xml:364
++#: apt-cdrom.8.xml:116 apt-get.8.xml:375
  msgid "<option>-m</option>"
  msgstr ""
  
@@@ -1397,17 -1397,17 +1397,17 @@@ msgid "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-cdrom.8.xml:143 apt-get.8.xml:395
++#: apt-cdrom.8.xml:143 apt-get.8.xml:406
  msgid "<option>--just-print</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-cdrom.8.xml:144 apt-get.8.xml:397
++#: apt-cdrom.8.xml:144 apt-get.8.xml:408
  msgid "<option>--recon</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-cdrom.8.xml:145 apt-get.8.xml:398
++#: apt-cdrom.8.xml:145 apt-get.8.xml:409
  msgid "<option>--no-act</option>"
  msgstr ""
  
@@@ -1519,7 -1519,7 +1519,7 @@@ msgid "Just show the contents of the co
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt-config.8.xml:107 apt-extracttemplates.1.xml:78 apt-ftparchive.1.xml:628 apt-sortpkgs.1.xml:73
++#: apt-config.8.xml:107 apt-extracttemplates.1.xml:78 apt-ftparchive.1.xml:629 apt-sortpkgs.1.xml:73
  msgid "&apt-conf;"
  msgstr ""
  
@@@ -1580,7 -1580,7 +1580,7 @@@ msgid "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-extracttemplates.1.xml:63 apt-get.8.xml:504
++#: apt-extracttemplates.1.xml:63 apt-get.8.xml:530
  msgid "<option>-t</option>"
  msgstr ""
  
@@@ -1784,7 -1784,7 +1784,7 @@@ msgid "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-ftparchive.1.xml:145 apt-get.8.xml:287
++#: apt-ftparchive.1.xml:145 apt-get.8.xml:298
  msgid "clean"
  msgstr ""
  
@@@ -2242,8 -2242,8 +2242,8 @@@ msgid "
  "non-free</literal>"
  msgstr ""
  
--#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
--#: apt-ftparchive.1.xml:394
++#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
++#: apt-ftparchive.1.xml:394 apt.conf.5.xml:157
  msgid "Architectures"
  msgstr ""
  
@@@ -2443,26 -2443,26 +2443,28 @@@ msgid "
  "Configuration Items: "
  "<literal>APT::FTPArchive::<replaceable>Checksum</replaceable></literal> and "
  "<literal>APT::FTPArchive::<replaceable>Index</replaceable>::<replaceable>Checksum</replaceable></literal> "
--"where <literal>Index</literal> can be <literal>Packages</literal>, "
--"<literal>Sources</literal> or <literal>Release</literal> and "
--"<literal>Checksum</literal> can be <literal>MD5</literal>, "
--"<literal>SHA1</literal> or <literal>SHA256</literal>."
++"where <literal><replaceable>Index</replaceable></literal> can be "
++"<literal>Packages</literal>, <literal>Sources</literal> or "
++"<literal>Release</literal> and "
++"<literal><replaceable>Checksum</replaceable></literal> can be "
++"<literal>MD5</literal>, <literal>SHA1</literal> or "
++"<literal>SHA256</literal>."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-ftparchive.1.xml:539
++#: apt-ftparchive.1.xml:540
  msgid "<option>--db</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-ftparchive.1.xml:541
++#: apt-ftparchive.1.xml:542
  msgid ""
  "Use a binary caching DB. This has no effect on the generate command.  "
  "Configuration Item: <literal>APT::FTPArchive::DB</literal>."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-ftparchive.1.xml:547
++#: apt-ftparchive.1.xml:548
  msgid ""
  "Quiet; produces output suitable for logging, omitting progress indicators.  "
  "More q's will produce more quiet up to a maximum of 2. You can also use "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-ftparchive.1.xml:553
++#: apt-ftparchive.1.xml:554
  msgid "<option>--delink</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-ftparchive.1.xml:555
++#: apt-ftparchive.1.xml:556
  msgid ""
  "Perform Delinking. If the <literal>External-Links</literal> setting is used "
  "then this option actually enables delinking of the files. It defaults to on "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-ftparchive.1.xml:561
++#: apt-ftparchive.1.xml:562
  msgid "<option>--contents</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-ftparchive.1.xml:563
++#: apt-ftparchive.1.xml:564
  msgid ""
  "Perform contents generation. When this option is set and package indexes are "
  "being generated with a cache DB then the file listing will also be extracted "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-ftparchive.1.xml:571
++#: apt-ftparchive.1.xml:572
  msgid "<option>--source-override</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-ftparchive.1.xml:573
++#: apt-ftparchive.1.xml:574
  msgid ""
  "Select the source override file to use with the <literal>sources</literal> "
  "command.  Configuration Item: "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-ftparchive.1.xml:577
++#: apt-ftparchive.1.xml:578
  msgid "<option>--readonly</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-ftparchive.1.xml:579
++#: apt-ftparchive.1.xml:580
  msgid ""
  "Make the caching databases read only.  Configuration Item: "
  "<literal>APT::FTPArchive::ReadOnlyDB</literal>."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-ftparchive.1.xml:583
++#: apt-ftparchive.1.xml:584
  msgid "<option>--arch</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-ftparchive.1.xml:584
++#: apt-ftparchive.1.xml:585
  msgid ""
  "Accept in the <literal>packages</literal> and <literal>contents</literal> "
  "commands only package files matching <literal>*_arch.deb</literal> or "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-ftparchive.1.xml:590
++#: apt-ftparchive.1.xml:591
  msgid "<option>APT::FTPArchive::AlwaysStat</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-ftparchive.1.xml:592
++#: apt-ftparchive.1.xml:593
  msgid ""
  "&apt-ftparchive; caches as much as possible of metadata in a cachedb. If "
  "packages are recompiled and/or republished with the same version again, this "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-ftparchive.1.xml:602
++#: apt-ftparchive.1.xml:603
  msgid "<option>APT::FTPArchive::LongDescription</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-ftparchive.1.xml:604
++#: apt-ftparchive.1.xml:605
  msgid ""
  "This configuration option defaults to \"<literal>true</literal>\" and should "
  "only be set to <literal>\"false\"</literal> if the Archive generated with "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><title>
- #: apt-ftparchive.1.xml:616 apt.conf.5.xml:1087 apt_preferences.5.xml:501 sources.list.5.xml:198
 -#: apt-ftparchive.1.xml:616 apt.conf.5.xml:1087 apt_preferences.5.xml:544 sources.list.5.xml:198
++#: apt-ftparchive.1.xml:617 apt.conf.5.xml:1104 apt_preferences.5.xml:544 sources.list.5.xml:214
  msgid "Examples"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><programlisting>
--#: apt-ftparchive.1.xml:622
++#: apt-ftparchive.1.xml:623
  #, no-wrap
  msgid ""
  "<command>apt-ftparchive</command> packages "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt-ftparchive.1.xml:618
++#: apt-ftparchive.1.xml:619
  msgid ""
  "To create a compressed Packages file for a directory containing binary "
  "packages (.deb): <placeholder type=\"programlisting\" id=\"0\"/>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt-ftparchive.1.xml:632
++#: apt-ftparchive.1.xml:633
  msgid ""
  "<command>apt-ftparchive</command> returns zero on normal operation, decimal "
  "100 on error."
@@@ -2625,7 -2625,7 +2627,9 @@@ msgid "
  "<option>-o= <replaceable>config_string</replaceable> </option> </arg> <arg> "
  "<option>-c= <replaceable>config_file</replaceable> </option> </arg> <arg> "
  "<option>-t=</option> <arg choice='plain'> "
--"<replaceable>target_release</replaceable> </arg> </arg> <group "
++"<replaceable>target_release</replaceable> </arg> </arg> <arg> "
++"<option>-a=</option> <arg choice='plain'> "
++"<replaceable>default_architecture</replaceable> </arg> </arg> <group "
  "choice=\"req\"> <arg choice='plain'>update</arg> <arg "
  "choice='plain'>upgrade</arg> <arg choice='plain'>dselect-upgrade</arg> <arg "
  "choice='plain'>dist-upgrade</arg> <arg choice='plain'>install <arg "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt-get.8.xml:115
++#: apt-get.8.xml:122
  msgid ""
  "<command>apt-get</command> is the command-line tool for handling packages, "
  "and may be considered the user's \"back-end\" to other tools using the APT "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:124 apt-key.8.xml:127
++#: apt-get.8.xml:131 apt-key.8.xml:127
  msgid "update"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:125
++#: apt-get.8.xml:132
  msgid ""
  "<literal>update</literal> is used to resynchronize the package index files "
  "from their sources. The indexes of available packages are fetched from the "
  msgstr ""
  
  #. type: <tag></tag>
--#: apt-get.8.xml:136 guide.sgml:121
++#: apt-get.8.xml:143 guide.sgml:121
  msgid "upgrade"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:137
++#: apt-get.8.xml:144
  msgid ""
  "<literal>upgrade</literal> is used to install the newest versions of all "
  "packages currently installed on the system from the sources enumerated in "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:149
++#: apt-get.8.xml:156
  msgid "dselect-upgrade"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:150
++#: apt-get.8.xml:157
  msgid ""
  "<literal>dselect-upgrade</literal> is used in conjunction with the "
  "traditional Debian packaging front-end, "
  msgstr ""
  
  #. type: <tag></tag>
--#: apt-get.8.xml:159 guide.sgml:140
++#: apt-get.8.xml:166 guide.sgml:140
  msgid "dist-upgrade"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:160
++#: apt-get.8.xml:167
  msgid ""
  "<literal>dist-upgrade</literal> in addition to performing the function of "
  "<literal>upgrade</literal>, also intelligently handles changing dependencies "
  msgstr ""
  
  #. type: <tag></tag>
--#: apt-get.8.xml:172 guide.sgml:131
++#: apt-get.8.xml:179 guide.sgml:131
  msgid "install"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:174
++#: apt-get.8.xml:181
  msgid ""
  "<literal>install</literal> is followed by one or more packages desired for "
  "installation or upgrading.  Each package is a package name, not a fully "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:192
++#: apt-get.8.xml:199
  msgid ""
  "A specific version of a package can be selected for installation by "
  "following the package name with an equals and the version of the package to "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:199
++#: apt-get.8.xml:206
  msgid ""
  "Both of the version selection mechanisms can downgrade packages and must be "
  "used with care."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:202
++#: apt-get.8.xml:209
  msgid ""
  "This is also the target to use if you want to upgrade one or more "
  "already-installed packages without upgrading every package you have on your "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:213
++#: apt-get.8.xml:220
  msgid ""
  "Finally, the &apt-preferences; mechanism allows you to create an alternative "
  "installation policy for individual packages."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:217
++#: apt-get.8.xml:224
  msgid ""
  "If no package matches the given expression and the expression contains one "
  "of '.', '?' or '*' then it is assumed to be a POSIX regular expression, and "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:226
++#: apt-get.8.xml:233
  msgid "remove"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:227
++#: apt-get.8.xml:234
  msgid ""
  "<literal>remove</literal> is identical to <literal>install</literal> except "
  "that packages are removed instead of installed. Note the removing a package "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:234
++#: apt-get.8.xml:241
  msgid "purge"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:235
++#: apt-get.8.xml:242
  msgid ""
  "<literal>purge</literal> is identical to <literal>remove</literal> except "
  "that packages are removed and purged (any configuration files are deleted "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:239
++#: apt-get.8.xml:246
  msgid "source"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:240
++#: apt-get.8.xml:247
  msgid ""
  "<literal>source</literal> causes <command>apt-get</command> to fetch source "
  "packages. APT will examine the available packages to decide which source "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:248
++#: apt-get.8.xml:255
  msgid ""
  "Source packages are tracked separately from binary packages via "
  "<literal>deb-src</literal> type lines in the &sources-list; file. This means "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:255
++#: apt-get.8.xml:262
  msgid ""
  "If the <option>--compile</option> option is specified then the package will "
--"be compiled to a binary .deb using <command>dpkg-buildpackage</command>, if "
--"<option>--download-only</option> is specified then the source package will "
--"not be unpacked."
++"be compiled to a binary .deb using <command>dpkg-buildpackage</command> for "
++"the architecture as defined by the <command>--host-architecture</command> "
++"option.  If <option>--download-only</option> is specified then the source "
++"package will not be unpacked."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:260
++#: apt-get.8.xml:269
  msgid ""
  "A specific source version can be retrieved by postfixing the source name "
  "with an equals and then the version to fetch, similar to the mechanism used "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:266
++#: apt-get.8.xml:275
  msgid ""
  "Note that source packages are not tracked like binary packages, they exist "
  "only in the current directory and are similar to downloading source tar "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:271
++#: apt-get.8.xml:280
  msgid "build-dep"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:272
++#: apt-get.8.xml:281
  msgid ""
  "<literal>build-dep</literal> causes apt-get to install/remove packages in an "
--"attempt to satisfy the build dependencies for a source package."
++"attempt to satisfy the build dependencies for a source package. By default "
++"the dependencies are satisfied to build the package nativly. If desired a "
++"host-architecture can be specified with the "
++"<option>--host-architecture</option> option instead."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:276
++#: apt-get.8.xml:287
  msgid "check"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:277
++#: apt-get.8.xml:288
  msgid ""
  "<literal>check</literal> is a diagnostic tool; it updates the package cache "
  "and checks for broken dependencies."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:281
++#: apt-get.8.xml:292
  msgid "download"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:282
++#: apt-get.8.xml:293
  msgid ""
  "<literal>download</literal> will download the given binary package into the "
--"current directoy."
++"current directory."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:288
++#: apt-get.8.xml:299
  msgid ""
  "<literal>clean</literal> clears out the local repository of retrieved "
  "package files. It removes everything but the lock file from "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:297
++#: apt-get.8.xml:308
  msgid "autoclean"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:298
++#: apt-get.8.xml:309
  msgid ""
  "Like <literal>clean</literal>, <literal>autoclean</literal> clears out the "
  "local repository of retrieved package files. The difference is that it only "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:307
++#: apt-get.8.xml:318
  msgid "autoremove"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:308
++#: apt-get.8.xml:319
  msgid ""
  "<literal>autoremove</literal> is used to remove packages that were "
--"automatically installed to satisfy dependencies for some package and that "
--"are no more needed."
++"automatically installed to satisfy dependencies for other packages and are "
++"now no longer needed."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:312
++#: apt-get.8.xml:323
  msgid "changelog"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:313
++#: apt-get.8.xml:324
  msgid ""
  "<literal>changelog</literal> downloads a package changelog and displays it "
  "through <command>sensible-pager</command>. The server name and base "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:335
++#: apt-get.8.xml:346
  msgid "<option>--no-install-recommends</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:336
++#: apt-get.8.xml:347
  msgid ""
  "Do not consider recommended packages as a dependency for installing.  "
  "Configuration Item: <literal>APT::Install-Recommends</literal>."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:340
++#: apt-get.8.xml:351
  msgid "<option>--install-suggests</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:341
++#: apt-get.8.xml:352
  msgid ""
  "Consider suggested packages as a dependency for installing.  Configuration "
  "Item: <literal>APT::Install-Suggests</literal>."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:345
++#: apt-get.8.xml:356
  msgid "<option>--download-only</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:346
++#: apt-get.8.xml:357
  msgid ""
  "Download only; package files are only retrieved, not unpacked or installed.  "
  "Configuration Item: <literal>APT::Get::Download-Only</literal>."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:350
++#: apt-get.8.xml:361
  msgid "<option>--fix-broken</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:351
++#: apt-get.8.xml:362
  msgid ""
  "Fix; attempt to correct a system with broken dependencies in place. This "
  "option, when used with install/remove, can omit any packages to permit APT "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:364
++#: apt-get.8.xml:375
  msgid "<option>--ignore-missing</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:365
++#: apt-get.8.xml:376
  msgid "<option>--fix-missing</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:366
++#: apt-get.8.xml:377
  msgid ""
  "Ignore missing packages; If packages cannot be retrieved or fail the "
  "integrity check after retrieval (corrupted package files), hold back those "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:376
++#: apt-get.8.xml:387
  msgid "<option>--no-download</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:377
++#: apt-get.8.xml:388
  msgid ""
  "Disables downloading of packages. This is best used with "
  "<option>--ignore-missing</option> to force APT to use only the .debs it has "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:384
++#: apt-get.8.xml:395
  msgid ""
  "Quiet; produces output suitable for logging, omitting progress indicators.  "
  "More q's will produce more quiet up to a maximum of 2. You can also use "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:394
++#: apt-get.8.xml:405
  msgid "<option>--simulate</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:396
++#: apt-get.8.xml:407
  msgid "<option>--dry-run</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:399
++#: apt-get.8.xml:410
  msgid ""
  "No action; perform a simulation of events that would occur but do not "
  "actually change the system.  Configuration Item: "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:403
++#: apt-get.8.xml:414
  msgid ""
  "Simulation run as user will deactivate locking "
  "(<literal>Debug::NoLocking</literal>)  automatic. Also a notice will be "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:409
++#: apt-get.8.xml:420
  msgid ""
  "Simulate prints out a series of lines each one representing a dpkg "
  "operation, Configure (Conf), Remove (Remv), Unpack (Inst). Square brackets "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:416
++#: apt-get.8.xml:427
  msgid "<option>-y</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:416
++#: apt-get.8.xml:427
  msgid "<option>--yes</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:417
++#: apt-get.8.xml:428
  msgid "<option>--assume-yes</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:418
++#: apt-get.8.xml:429
  msgid ""
  "Automatic yes to prompts; assume \"yes\" as answer to all prompts and run "
  "non-interactively. If an undesirable situation, such as changing a held "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:425
++#: apt-get.8.xml:436
++msgid "<option>--assume-no</option>"
++msgstr ""
++
++#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
++#: apt-get.8.xml:437
++msgid ""
++"Automatic \"no\" to all prompts.  Configuration Item: "
++"<literal>APT::Get::Assume-No</literal>."
++msgstr ""
++
++#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
++#: apt-get.8.xml:441
  msgid "<option>-u</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:425
++#: apt-get.8.xml:441
  msgid "<option>--show-upgraded</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:426
++#: apt-get.8.xml:442
  msgid ""
  "Show upgraded packages; Print out a list of all packages that are to be "
  "upgraded.  Configuration Item: <literal>APT::Get::Show-Upgraded</literal>."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:431
++#: apt-get.8.xml:447
  msgid "<option>-V</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:431
++#: apt-get.8.xml:447
  msgid "<option>--verbose-versions</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:432
++#: apt-get.8.xml:448
  msgid ""
  "Show full versions for upgraded and installed packages.  Configuration Item: "
  "<literal>APT::Get::Show-Versions</literal>."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:436
++#: apt-get.8.xml:453
++msgid "<option>--host-architecture</option>"
++msgstr ""
++
++#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
++#: apt-get.8.xml:454
++msgid ""
++"This option controls the architecture packages are built for by "
++"<command>apt-get source --compile</command> and how cross-builddependencies "
++"are satisfied. By default is not set which means that the host architecture "
++"is the same as the build architecture (which is defined by "
++"<literal>APT::Architecture</literal>)  Configuration Item: "
++"<literal>APT::Get::Host-Architecture</literal>"
++msgstr ""
++
++#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
++#: apt-get.8.xml:462
  msgid "<option>-b</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:436
++#: apt-get.8.xml:462
  msgid "<option>--compile</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:437
++#: apt-get.8.xml:463
  msgid "<option>--build</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:438
++#: apt-get.8.xml:464
  msgid ""
  "Compile source packages after downloading them.  Configuration Item: "
  "<literal>APT::Get::Compile</literal>."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:442
++#: apt-get.8.xml:468
  msgid "<option>--ignore-hold</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:443
++#: apt-get.8.xml:469
  msgid ""
  "Ignore package Holds; This causes <command>apt-get</command> to ignore a "
  "hold placed on a package. This may be useful in conjunction with "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:449
++#: apt-get.8.xml:475
  msgid "<option>--no-upgrade</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:450
++#: apt-get.8.xml:476
  msgid ""
  "Do not upgrade packages; When used in conjunction with "
  "<literal>install</literal>, <literal>no-upgrade</literal> will prevent "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:456
++#: apt-get.8.xml:482
  msgid "<option>--only-upgrade</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:457
++#: apt-get.8.xml:483
  msgid ""
  "Do not install new packages; When used in conjunction with "
  "<literal>install</literal>, <literal>only-upgrade</literal> will prevent "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:463
++#: apt-get.8.xml:489
  msgid "<option>--force-yes</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:464
++#: apt-get.8.xml:490
  msgid ""
  "Force yes; This is a dangerous option that will cause apt to continue "
  "without prompting if it is doing something potentially harmful. It should "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:471
++#: apt-get.8.xml:497
  msgid "<option>--print-uris</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:472
++#: apt-get.8.xml:498
  msgid ""
  "Instead of fetching the files to install their URIs are printed. Each URI "
  "will have the path, the destination file name, the size and the expected md5 "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:482
++#: apt-get.8.xml:508
  msgid "<option>--purge</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:483
++#: apt-get.8.xml:509
  msgid ""
  "Use purge instead of remove for anything that would be removed.  An asterisk "
  "(\"*\") will be displayed next to packages which are scheduled to be "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:490
++#: apt-get.8.xml:516
  msgid "<option>--reinstall</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:491
++#: apt-get.8.xml:517
  msgid ""
  "Re-Install packages that are already installed and at the newest version.  "
  "Configuration Item: <literal>APT::Get::ReInstall</literal>."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:495
++#: apt-get.8.xml:521
  msgid "<option>--list-cleanup</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:496
++#: apt-get.8.xml:522
  msgid ""
  "This option defaults to on, use <literal>--no-list-cleanup</literal> to turn "
  "it off. When on <command>apt-get</command> will automatically manage the "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:505
++#: apt-get.8.xml:531
  msgid "<option>--target-release</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:506
++#: apt-get.8.xml:532
  msgid "<option>--default-release</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:507
++#: apt-get.8.xml:533
  msgid ""
  "This option controls the default input to the policy engine, it creates a "
  "default pin at priority 990 using the specified release string.  This "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:520
++#: apt-get.8.xml:546
  msgid "<option>--trivial-only</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:522
++#: apt-get.8.xml:548
  msgid ""
  "Only perform operations that are 'trivial'. Logically this can be considered "
  "related to <option>--assume-yes</option>, where "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:528
++#: apt-get.8.xml:554
  msgid "<option>--no-remove</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:529
++#: apt-get.8.xml:555
  msgid ""
  "If any packages are to be removed apt-get immediately aborts without "
  "prompting.  Configuration Item: <literal>APT::Get::Remove</literal>."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:534
++#: apt-get.8.xml:560
  msgid "<option>--auto-remove</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:535
++#: apt-get.8.xml:561
  msgid ""
  "If the command is either <literal>install</literal> or "
  "<literal>remove</literal>, then this option acts like running "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:541
++#: apt-get.8.xml:567
  msgid "<option>--only-source</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:542
++#: apt-get.8.xml:568
  msgid ""
  "Only has meaning for the <literal>source</literal> and "
  "<literal>build-dep</literal> commands.  Indicates that the given source "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:552
++#: apt-get.8.xml:578
  msgid "<option>--diff-only</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:552
++#: apt-get.8.xml:578
  msgid "<option>--dsc-only</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:552
++#: apt-get.8.xml:578
  msgid "<option>--tar-only</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:553
++#: apt-get.8.xml:579
  msgid ""
  "Download only the diff, dsc, or tar file of a source archive.  Configuration "
  "Item: <literal>APT::Get::Diff-Only</literal>, "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:558
++#: apt-get.8.xml:584
  msgid "<option>--arch-only</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:559
++#: apt-get.8.xml:585
  msgid ""
  "Only process architecture-dependent build-dependencies.  Configuration Item: "
  "<literal>APT::Get::Arch-Only</literal>."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:563
++#: apt-get.8.xml:589
  msgid "<option>--allow-unauthenticated</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:564
++#: apt-get.8.xml:590
  msgid ""
  "Ignore if packages can't be authenticated and don't prompt about it.  This "
  "is useful for tools like pbuilder.  Configuration Item: "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist>
--#: apt-get.8.xml:577
++#: apt-get.8.xml:603
  msgid ""
  "&file-sourceslist; &file-aptconf; &file-preferences; &file-cachearchives; "
  "&file-statelists;"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt-get.8.xml:586
++#: apt-get.8.xml:612
  msgid ""
  "&apt-cache;, &apt-cdrom;, &dpkg;, &dselect;, &sources-list;, &apt-conf;, "
  "&apt-config;, &apt-secure;, The APT User's guide in &guidesdir;, "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt-get.8.xml:592
++#: apt-get.8.xml:618
  msgid ""
  "<command>apt-get</command> returns zero on normal operation, decimal 100 on "
  "error."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><title>
--#: apt-get.8.xml:595
++#: apt-get.8.xml:621
  msgid "ORIGINAL AUTHORS"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt-get.8.xml:596
++#: apt-get.8.xml:622
  msgid "&apt-author.jgunthorpe;"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><title>
--#: apt-get.8.xml:599
++#: apt-get.8.xml:625
  msgid "CURRENT AUTHORS"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt-get.8.xml:601
++#: apt-get.8.xml:627
  msgid "&apt-author.team;"
  msgstr ""
  
@@@ -3612,24 -3612,38 +3648,43 @@@ msgstr "
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #: apt-key.8.xml:131
  msgid ""
--"Update the local keyring with the keyring of Debian archive keys and removes "
--"from the keyring the archive keys which are no longer valid."
++"Update the local keyring with the archive keyring and remove from the local "
++"keyring the archive keys which are no longer valid.  The archive keyring is "
++"shipped in the <literal>archive-keyring</literal> package of your "
++"distribution, e.g. the <literal>ubuntu-archive-keyring</literal> package in "
++"Ubuntu."
+ msgstr ""
+ #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
 -#: apt-key.8.xml:140
++#: apt-key.8.xml:141
+ msgid "net-update"
+ msgstr ""
+ #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
 -#: apt-key.8.xml:144
++#: apt-key.8.xml:145
+ msgid ""
 -"Update the local keyring with the keys of a key server and removes from the "
 -"keyring the archive keys which are no longer valid. This requires an "
 -"installed wget and an APT build configured to have a server to fetch "
 -"from. APT in Debian does not support this command, but Ubuntu's APT does."
++"Work similar to the <command>update</command> command above, but get the "
++"archive keyring from an URI instead and validate it against a master key.  "
++"This requires an installed &wget; and an APT build configured to have a "
++"server to fetch from and a master keyring to validate.  APT in Debian does "
++"not support this command and relies on <command>update</command> instead, "
++"but Ubuntu's APT does."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
- #: apt-key.8.xml:143
 -#: apt-key.8.xml:159
++#: apt-key.8.xml:162
  msgid ""
  "Note that options need to be defined before the commands described in the "
  "previous section."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-key.8.xml:145
 -#: apt-key.8.xml:161
++#: apt-key.8.xml:164
  msgid "--keyring <replaceable>filename</replaceable>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
- #: apt-key.8.xml:146
 -#: apt-key.8.xml:162
++#: apt-key.8.xml:165
  msgid ""
  "With this option it is possible to specify a specific keyring file the "
  "command should operate on. The default is that a command is executed on the "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist>
- #: apt-key.8.xml:159
 -#: apt-key.8.xml:175
++#: apt-key.8.xml:178
  msgid "&file-trustedgpg;"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-key.8.xml:161
 -#: apt-key.8.xml:177
++#: apt-key.8.xml:180
  msgid "<filename>/etc/apt/trustdb.gpg</filename>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
- #: apt-key.8.xml:162
 -#: apt-key.8.xml:178
++#: apt-key.8.xml:181
  msgid "Local trust database of archive keys."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-key.8.xml:165
 -#: apt-key.8.xml:181
--msgid "<filename>/usr/share/keyrings/debian-archive-keyring.gpg</filename>"
++#: apt-key.8.xml:184
++msgid "<filename>/usr/share/keyrings/ubuntu-archive-keyring.gpg</filename>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
- #: apt-key.8.xml:166
 -#: apt-key.8.xml:182
--msgid "Keyring of Debian archive trusted keys."
++#: apt-key.8.xml:185
++msgid "Keyring of Ubuntu archive trusted keys."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-key.8.xml:169
 -#: apt-key.8.xml:185
--msgid "<filename>/usr/share/keyrings/debian-archive-removed-keys.gpg</filename>"
++#: apt-key.8.xml:188
++msgid "<filename>/usr/share/keyrings/ubuntu-archive-removed-keys.gpg</filename>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
- #: apt-key.8.xml:170
 -#: apt-key.8.xml:186
--msgid "Keyring of Debian archive removed trusted keys."
++#: apt-key.8.xml:189
++msgid "Keyring of Ubuntu archive removed trusted keys."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
- #: apt-key.8.xml:179
 -#: apt-key.8.xml:195
++#: apt-key.8.xml:198
  msgid "&apt-get;, &apt-secure;"
  msgstr ""
  
  #. type: Content of: <refentry><refentryinfo>
  #: apt-mark.8.xml:16
  msgid ""
- "&apt-author.moconnor; &apt-author.team; &apt-email; &apt-product; <date>9 "
- "August 2009</date>"
+ "&apt-author.moconnor; &apt-author.team; &apt-email; &apt-product; <date>21 "
+ "April 2011</date>"
  msgstr ""
  
  #. type: Content of: <refentry><refnamediv><refname>
@@@ -3703,21 -3717,21 +3758,21 @@@ msgid "
  "  <command>apt-mark</command> <arg><option>-hv</option></arg> "
  "<arg><option>-f=<replaceable>FILENAME</replaceable></option></arg> <group "
  "choice=\"plain\"> <arg choice=\"plain\"> <group choice=\"req\"> <arg "
- "choice=\"plain\">markauto</arg> <arg choice=\"plain\">unmarkauto</arg> "
+ "choice=\"plain\">auto</arg> <arg choice=\"plain\">manual</arg> <arg "
+ "choice=\"plain\">showauto</arg> <arg choice=\"plain\">showmanual</arg> "
  "</group> <arg choice=\"plain\" "
- "rep=\"repeat\"><replaceable>package</replaceable></arg> </arg> <arg "
- "choice=\"plain\">showauto</arg> </group>"
+ "rep=\"repeat\"><replaceable>package</replaceable></arg> </arg> </group>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
- #: apt-mark.8.xml:56
+ #: apt-mark.8.xml:57
  msgid ""
  "<command>apt-mark</command> will change whether a package has been marked as "
  "being automatically installed."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
- #: apt-mark.8.xml:60
+ #: apt-mark.8.xml:61
  msgid ""
  "When you request that a package is installed, and as a result other packages "
  "are installed to satisfy its dependencies, the dependencies are marked as "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-mark.8.xml:68
- msgid "markauto"
+ #: apt-mark.8.xml:69
+ msgid "auto"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
- #: apt-mark.8.xml:69
+ #: apt-mark.8.xml:70
  msgid ""
- "<literal>markauto</literal> is used to mark a package as being automatically "
+ "<literal>auto</literal> is used to mark a package as being automatically "
  "installed, which will cause the package to be removed when no more manually "
  "installed packages depend on this package."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-mark.8.xml:76
- msgid "unmarkauto"
+ #: apt-mark.8.xml:77
+ msgid "manual"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
- #: apt-mark.8.xml:77
+ #: apt-mark.8.xml:78
  msgid ""
- "<literal>unmarkauto</literal> is used to mark a package as being manually "
+ "<literal>manual</literal> is used to mark a package as being manually "
  "installed, which will prevent the package from being automatically removed "
  "if no other packages depend on it."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-mark.8.xml:84
- msgid "showauto"
+ #: apt-mark.8.xml:85
+ msgid "hold"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
- #: apt-mark.8.xml:85
+ #: apt-mark.8.xml:86
  msgid ""
- "<literal>showauto</literal> is used to print a list of automatically "
- "installed packages with each package on a new line."
+ "<literal>hold</literal> is used to mark a package as hold back, which will "
+ "prevent the package from being automatically installed, upgraded or "
+ "removed.  The command is only a wrapper around <command>dpkg "
+ "--set-selections</command> and the state is therefore maintained by &dpkg; "
+ "and not effected by the <option>--filename</option> option."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
+ #: apt-mark.8.xml:95
+ msgid "unhold"
+ msgstr ""
+ #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #: apt-mark.8.xml:96
- msgid "<option>-f=<filename><replaceable>FILENAME</replaceable></filename></option>"
+ msgid ""
+ "<literal>unhold</literal> is used to cancel a previously set hold on a "
+ "package to allow all actions again."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-mark.8.xml:97
- msgid "<option>--file=<filename><replaceable>FILENAME</replaceable></filename></option>"
+ #: apt-mark.8.xml:101
+ msgid "showauto"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
- #: apt-mark.8.xml:100
+ #: apt-mark.8.xml:102
  msgid ""
- "Read/Write package stats from "
- "<filename><replaceable>FILENAME</replaceable></filename> instead of the "
- "default location, which is <filename>extended_status</filename> in the "
- "directory defined by the Configuration Item: <literal>Dir::State</literal>."
+ "<literal>showauto</literal> is used to print a list of automatically "
+ "installed packages with each package on a new line.  All automatically "
+ "installed packages will be listed if no package is given.  If packages are "
+ "given only those which are automatically installed will be shown."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-mark.8.xml:106
- msgid "<option>-h</option>"
+ #: apt-mark.8.xml:109
+ msgid "showmanual"
+ msgstr ""
+ #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
+ #: apt-mark.8.xml:110
+ msgid ""
+ "<literal>showmanual</literal> can be used in the same way as "
+ "<literal>showauto</literal> except that it will print a list of manually "
+ "installed packages instead."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-mark.8.xml:107
- msgid "<option>--help</option>"
+ #: apt-mark.8.xml:116
+ msgid "showhold"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
- #: apt-mark.8.xml:108
- msgid "Show a short usage summary."
+ #: apt-mark.8.xml:117
+ msgid ""
+ "<literal>showhold</literal> is used to print a list of packages on hold in "
+ "the same way as for the other show commands."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-mark.8.xml:114
- msgid "<option>-v</option>"
+ #: apt-mark.8.xml:130
+ msgid "<option>-f=<filename><replaceable>FILENAME</replaceable></filename></option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-mark.8.xml:115
- msgid "<option>--version</option>"
+ #: apt-mark.8.xml:131
+ msgid "<option>--file=<filename><replaceable>FILENAME</replaceable></filename></option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
- #: apt-mark.8.xml:116
- msgid "Show the program version."
+ #: apt-mark.8.xml:134
+ msgid ""
+ "Read/Write package stats from "
+ "<filename><replaceable>FILENAME</replaceable></filename> instead of the "
+ "default location, which is <filename>extended_status</filename> in the "
+ "directory defined by the Configuration Item: <literal>Dir::State</literal>."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist>
- #: apt-mark.8.xml:127
+ #: apt-mark.8.xml:146
  msgid "  &file-extended_states;"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
- #: apt-mark.8.xml:132
+ #: apt-mark.8.xml:151
  msgid "&apt-get;,&aptitude;,&apt-conf;"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
- #: apt-mark.8.xml:136
+ #: apt-mark.8.xml:155
  msgid ""
  "<command>apt-mark</command> returns zero on normal operation, non-zero on "
  "error."
@@@ -4161,10 -4199,10 +4240,10 @@@ msgstr "
  #: apt.conf.5.xml:52
  msgid ""
  "all files in <literal>Dir::Etc::Parts</literal> in alphanumeric ascending "
--"order which have no or \"<literal>conf</literal>\" as filename extension and "
--"which only contain alphanumeric, hyphen (-), underscore (_) and period (.) "
--"characters.  Otherwise APT will print a notice that it has ignored a file if "
--"the file doesn't match a pattern in the "
++"order which have either no or \"<literal>conf</literal>\" as filename "
++"extension and which only contain alphanumeric, hyphen (-), underscore (_) "
++"and period (.) characters.  Otherwise APT will print a notice that it has "
++"ignored a file if the file doesn't match a pattern in the "
  "<literal>Dir::Ignore-Files-Silently</literal> configuration list - in this "
  "case it will be silently ignored."
  msgstr ""
@@@ -4339,13 -4377,13 +4418,24 @@@ msgid "
  "compiled for."
  msgstr ""
  
++#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
++#: apt.conf.5.xml:158
++msgid ""
++"All Architectures the system supports. Processors implementing the "
++"<literal>amd64</literal> are e.g. also able to execute binaries compiled for "
++"<literal>i386</literal>; This list is use when fetching files and parsing "
++"package lists. The internal default is always the native architecture "
++"(<literal>APT::Architecture</literal>)  and all foreign architectures it can "
++"retrieve by calling <command>dpkg --print-foreign-architectures</command>."
++msgstr ""
++
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:157
++#: apt.conf.5.xml:165
  msgid "Default-Release"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:158
++#: apt.conf.5.xml:166
  msgid ""
  "Default release to install packages from if more than one version "
  "available. Contains release name, codename or release version. Examples: "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:163
++#: apt.conf.5.xml:171
  msgid "Ignore-Hold"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:164
++#: apt.conf.5.xml:172
  msgid ""
  "Ignore Held packages; This global option causes the problem resolver to "
  "ignore held packages in its decision making."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:168
++#: apt.conf.5.xml:176
  msgid "Clean-Installed"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:169
++#: apt.conf.5.xml:177
  msgid ""
  "Defaults to on. When turned on the autoclean feature will remove any "
  "packages which can no longer be downloaded from the cache. If turned off "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:175
++#: apt.conf.5.xml:183
  msgid "Immediate-Configure"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:176
++#: apt.conf.5.xml:184
  msgid ""
  "Defaults to on which will cause APT to install essential and important "
  "packages as fast as possible in the install/upgrade operation. This is done "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:198
++#: apt.conf.5.xml:206
  msgid "Force-LoopBreak"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:199
++#: apt.conf.5.xml:207
  msgid ""
  "Never Enable this option unless you -really- know what you are doing. It "
  "permits APT to temporarily remove an essential package to break a "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:207
++#: apt.conf.5.xml:215
  msgid "Cache-Start, Cache-Grow and Cache-Limit"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:208
++#: apt.conf.5.xml:216
  msgid ""
  "APT uses since version 0.7.26 a resizable memory mapped cache file to store "
  "the 'available' information. <literal>Cache-Start</literal> acts as a hint "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:223
++#: apt.conf.5.xml:231
  msgid "Build-Essential"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:224
++#: apt.conf.5.xml:232
  msgid "Defines which package(s) are considered essential build dependencies."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:227
++#: apt.conf.5.xml:235
  msgid "Get"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:228
++#: apt.conf.5.xml:236
  msgid ""
  "The Get subsection controls the &apt-get; tool, please see its documentation "
  "for more information about the options here."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:232
++#: apt.conf.5.xml:240
  msgid "Cache"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:233
++#: apt.conf.5.xml:241
  msgid ""
  "The Cache subsection controls the &apt-cache; tool, please see its "
  "documentation for more information about the options here."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:237
++#: apt.conf.5.xml:245
  msgid "CDROM"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:238
++#: apt.conf.5.xml:246
  msgid ""
  "The CDROM subsection controls the &apt-cdrom; tool, please see its "
  "documentation for more information about the options here."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><title>
--#: apt.conf.5.xml:244
++#: apt.conf.5.xml:252
  msgid "The Acquire Group"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:249
++#: apt.conf.5.xml:257
  msgid "Check-Valid-Until"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:250
++#: apt.conf.5.xml:258
  msgid ""
  "Security related option defaulting to true as an expiring validation for a "
  "Release file prevents longtime replay attacks and can e.g. also help users "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:260
++#: apt.conf.5.xml:268
  msgid "Max-ValidTime"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:261
++#: apt.conf.5.xml:269
 +msgid ""
- "Seconds the Release file should be considered valid after it was "
- "created. The default is \"for ever\" (0) if the Release file of the archive "
- "doesn't include a <literal>Valid-Until</literal> header.  If it does then "
- "this date is the default. The date from the Release file or the date "
- "specified by the creation time of the Release file (<literal>Date</literal> "
- "header) plus the seconds specified with this options are used to check if "
- "the validation of a file has expired by using the earlier date of the "
- "two. Archive specific settings can be made by appending the label of the "
- "archive to the option name."
++"Seconds the Release file should be considered valid after it was created "
++"(indicated by the <literal>Date</literal> header).  If the Release file "
++"itself includes a <literal>Valid-Until</literal> header the earlier date of "
++"the two is used as the expiration date.  The default value is "
++"<literal>0</literal> which stands for \"for ever\".  Archive specific "
++"settings can be made by appending the label of the archive to the option "
++"name."
 +msgstr ""
 +
 +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
- #: apt.conf.5.xml:273
++#: apt.conf.5.xml:279
++msgid "Min-ValidTime"
++msgstr ""
++
++#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
++#: apt.conf.5.xml:280
+ msgid ""
 -"Seconds the Release file should be considered valid after it was "
 -"created. The default is \"for ever\" (0) if the Release file of the archive "
 -"doesn't include a <literal>Valid-Until</literal> header.  If it does then "
 -"this date is the default. The date from the Release file or the date "
 -"specified by the creation time of the Release file (<literal>Date</literal> "
 -"header) plus the seconds specified with this options are used to check if "
 -"the validation of a file has expired by using the earlier date of the "
 -"two. Archive specific settings can be made by appending the label of the "
 -"archive to the option name."
++"Minimum of seconds the Release file should be considered valid after it was "
++"created (indicated by the <literal>Date</literal> header).  Use this if you "
++"need to use a seldomly updated (local) mirror of a more regular updated "
++"archive with a <literal>Valid-Until</literal> header instead of competely "
++"disabling the expiration date checking.  Archive specific settings can and "
++"should be used by appending the label of the archive to the option name."
+ msgstr ""
+ #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
 -#: apt.conf.5.xml:273
++#: apt.conf.5.xml:290
  msgid "PDiffs"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:274
++#: apt.conf.5.xml:291
  msgid ""
  "Try to download deltas called <literal>PDiffs</literal> for Packages or "
  "Sources files instead of downloading whole ones. True by default."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:277
++#: apt.conf.5.xml:294
  msgid ""
  "Two sub-options to limit the use of PDiffs are also available: With "
  "<literal>FileLimit</literal> can be specified how many PDiff files are "
  "downloaded at most to patch a file. <literal>SizeLimit</literal> on the "
--"other hand is the maximum precentage of the size of all patches compared to "
++"other hand is the maximum percentage of the size of all patches compared to "
  "the size of the targeted file. If one of these limits is exceeded the "
  "complete file is downloaded instead of the patches."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:286
++#: apt.conf.5.xml:303
  msgid "Queue-Mode"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:287
++#: apt.conf.5.xml:304
  msgid ""
  "Queuing mode; <literal>Queue-Mode</literal> can be one of "
  "<literal>host</literal> or <literal>access</literal> which determines how "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:294
++#: apt.conf.5.xml:311
  msgid "Retries"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:295
++#: apt.conf.5.xml:312
  msgid ""
  "Number of retries to perform. If this is non-zero APT will retry failed "
  "files the given number of times."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:299
++#: apt.conf.5.xml:316
  msgid "Source-Symlinks"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:300
++#: apt.conf.5.xml:317
  msgid ""
  "Use symlinks for source archives. If set to true then source archives will "
  "be symlinked when possible instead of copying. True is the default."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:304 sources.list.5.xml:144
++#: apt.conf.5.xml:321 sources.list.5.xml:160
  msgid "http"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:305
++#: apt.conf.5.xml:322
  msgid ""
  "HTTP URIs; http::Proxy is the default http proxy to use. It is in the "
  "standard form of <literal>http://[[user][:pass]@]host[:port]/</literal>. Per "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:313
++#: apt.conf.5.xml:330
  msgid ""
  "Three settings are provided for cache control with HTTP/1.1 compliant proxy "
  "caches. <literal>No-Cache</literal> tells the proxy to not use its cached "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:323 apt.conf.5.xml:387
++#: apt.conf.5.xml:340 apt.conf.5.xml:404
  msgid ""
  "The option <literal>timeout</literal> sets the timeout timer used by the "
  "method, this applies to all things including connection timeout and data "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:326
++#: apt.conf.5.xml:343
  msgid ""
  "One setting is provided to control the pipeline depth in cases where the "
  "remote server is not RFC conforming or buggy (such as Squid 2.0.2).  "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:334
++#: apt.conf.5.xml:351
  msgid ""
  "The used bandwidth can be limited with "
  "<literal>Acquire::http::Dl-Limit</literal> which accepts integer values in "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:339
++#: apt.conf.5.xml:356
  msgid ""
  "<literal>Acquire::http::User-Agent</literal> can be used to set a different "
  "User-Agent for the http download method as some proxies allow access for "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:345
++#: apt.conf.5.xml:362
  msgid "https"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:346
++#: apt.conf.5.xml:363
  msgid ""
  "HTTPS URIs. Cache-control, Timeout, AllowRedirect, Dl-Limit and proxy "
  "options are the same as for <literal>http</literal> method and will also "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:352
++#: apt.conf.5.xml:369
  msgid ""
  "<literal>CaInfo</literal> suboption specifies place of file that holds info "
  "about trusted certificates.  <literal>&lt;host&gt;::CaInfo</literal> is "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:370 sources.list.5.xml:155
++#: apt.conf.5.xml:387 sources.list.5.xml:171
  msgid "ftp"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:371
++#: apt.conf.5.xml:388
  msgid ""
  "FTP URIs; ftp::Proxy is the default ftp proxy to use. It is in the standard "
  "form of <literal>ftp://[[user][:pass]@]host[:port]/</literal>. Per host "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:390
++#: apt.conf.5.xml:407
  msgid ""
  "Several settings are provided to control passive mode. Generally it is safe "
  "to leave passive mode on, it works in nearly every environment.  However "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:397
++#: apt.conf.5.xml:414
  msgid ""
  "It is possible to proxy FTP over HTTP by setting the "
  "<envar>ftp_proxy</envar> environment variable to a http url - see the "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:402
++#: apt.conf.5.xml:419
  msgid ""
  "The setting <literal>ForceExtended</literal> controls the use of RFC2428 "
  "<literal>EPSV</literal> and <literal>EPRT</literal> commands. The default is "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:409 sources.list.5.xml:137
++#: apt.conf.5.xml:426 sources.list.5.xml:153
  msgid "cdrom"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><literallayout>
--#: apt.conf.5.xml:415
++#: apt.conf.5.xml:432
  #, no-wrap
  msgid "/cdrom/::Mount \"foo\";"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:410
++#: apt.conf.5.xml:427
  msgid ""
  "CDROM URIs; the only setting for CDROM URIs is the mount point, "
  "<literal>cdrom::Mount</literal> which must be the mount point for the CDROM "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:420
++#: apt.conf.5.xml:437
  msgid "gpgv"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:421
++#: apt.conf.5.xml:438
  msgid ""
  "GPGV URIs; the only option for GPGV URIs is the option to pass additional "
  "parameters to gpgv.  <literal>gpgv::Options</literal> Additional options "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:426
++#: apt.conf.5.xml:443
  msgid "CompressionTypes"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><synopsis>
--#: apt.conf.5.xml:432
++#: apt.conf.5.xml:449
  #, no-wrap
  msgid ""
  "Acquire::CompressionTypes::<replaceable>FileExtension</replaceable> "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:427
++#: apt.conf.5.xml:444
  msgid ""
  "List of compression types which are understood by the acquire methods.  "
  "Files like <filename>Packages</filename> can be available in various "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><synopsis>
--#: apt.conf.5.xml:437
++#: apt.conf.5.xml:454
  #, no-wrap
  msgid "Acquire::CompressionTypes::Order:: \"gz\";"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><synopsis>
--#: apt.conf.5.xml:440
++#: apt.conf.5.xml:457
  #, no-wrap
  msgid "Acquire::CompressionTypes::Order { \"lzma\"; \"gz\"; };"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:433
++#: apt.conf.5.xml:450
  msgid ""
  "Also the <literal>Order</literal> subgroup can be used to define in which "
  "order the acquire system will try to download the compressed files. The "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><literallayout>
--#: apt.conf.5.xml:444
++#: apt.conf.5.xml:461
  #, no-wrap
  msgid "Dir::Bin::bzip2 \"/bin/bzip2\";"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:442
++#: apt.conf.5.xml:459
  msgid ""
  "Note that at run time the "
  "<literal>Dir::Bin::<replaceable>Methodname</replaceable></literal> will be "
  "checked: If this setting exists the method will only be used if this file "
--"exists, e.g. for the bzip2 method (the inbuilt) setting is <placeholder "
++"exists, e.g. for the bzip2 method (the inbuilt) setting is: <placeholder "
  "type=\"literallayout\" id=\"0\"/> Note also that list entries specified on "
  "the command line will be added at the end of the list specified in the "
  "configuration files, but before the default entries. To prefer a type in "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:449
++#: apt.conf.5.xml:466
  msgid ""
  "The special type <literal>uncompressed</literal> can be used to give "
--"uncompressed files a preference, but note that most archives doesn't provide "
++"uncompressed files a preference, but note that most archives don't provide "
  "uncompressed files so this is mostly only useable for local mirrors."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:454
++#: apt.conf.5.xml:471
  msgid "GzipIndexes"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:456
++#: apt.conf.5.xml:473
  msgid ""
  "When downloading <literal>gzip</literal> compressed indexes (Packages, "
  "Sources, or Translations), keep them gzip compressed locally instead of "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:463
++#: apt.conf.5.xml:480
  msgid "Languages"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:464
++#: apt.conf.5.xml:481
  msgid ""
  "The Languages subsection controls which <filename>Translation</filename> "
  "files are downloaded and in which order APT tries to display the "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><programlisting>
--#: apt.conf.5.xml:480
++#: apt.conf.5.xml:497
  #, no-wrap
  msgid "Acquire::Languages { \"environment\"; \"de\"; \"en\"; \"none\"; \"fr\"; };"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:470
++#: apt.conf.5.xml:487
  msgid ""
  "The default list includes \"environment\" and "
  "\"en\". \"<literal>environment</literal>\" has a special meaning here: It "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:245
++#: apt.conf.5.xml:253
  msgid ""
  "The <literal>Acquire</literal> group of options controls the download of "
  "packages and the URI handlers.  <placeholder type=\"variablelist\" "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><title>
--#: apt.conf.5.xml:487
++#: apt.conf.5.xml:504
  msgid "Directories"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:489
++#: apt.conf.5.xml:506
  msgid ""
  "The <literal>Dir::State</literal> section has directories that pertain to "
  "local state information. <literal>lists</literal> is the directory to place "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:496
++#: apt.conf.5.xml:513
  msgid ""
  "<literal>Dir::Cache</literal> contains locations pertaining to local cache "
  "information, such as the two package caches <literal>srcpkgcache</literal> "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:505
++#: apt.conf.5.xml:522
  msgid ""
  "<literal>Dir::Etc</literal> contains the location of configuration files, "
  "<literal>sourcelist</literal> gives the location of the sourcelist and "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:511
++#: apt.conf.5.xml:528
  msgid ""
  "The <literal>Dir::Parts</literal> setting reads in all the config fragments "
  "in lexical order from the directory specified. After this is done then the "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:515
++#: apt.conf.5.xml:532
  msgid ""
  "Binary programs are pointed to by "
  "<literal>Dir::Bin</literal>. <literal>Dir::Bin::Methods</literal> specifies "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:523
++#: apt.conf.5.xml:540
  msgid ""
  "The configuration item <literal>RootDir</literal> has a special meaning.  If "
  "set, all paths in <literal>Dir::</literal> will be relative to "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:536
++#: apt.conf.5.xml:553
  msgid ""
  "The <literal>Ignore-Files-Silently</literal> list can be used to specify "
  "which files APT should silently ignore while parsing the files in the "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><title>
--#: apt.conf.5.xml:545
++#: apt.conf.5.xml:562
  msgid "APT in DSelect"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:547
++#: apt.conf.5.xml:564
  msgid ""
  "When APT is used as a &dselect; method several configuration directives "
  "control the default behaviour. These are in the <literal>DSelect</literal> "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:551
++#: apt.conf.5.xml:568
  msgid "Clean"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:552
++#: apt.conf.5.xml:569
  msgid ""
  "Cache Clean mode; this value may be one of always, prompt, auto, pre-auto "
  "and never.  always and prompt will remove all packages from the cache after "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:561
++#: apt.conf.5.xml:578
  msgid ""
  "The contents of this variable is passed to &apt-get; as command line options "
  "when it is run for the install phase."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:565
++#: apt.conf.5.xml:582
  msgid "Updateoptions"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:566
++#: apt.conf.5.xml:583
  msgid ""
  "The contents of this variable is passed to &apt-get; as command line options "
  "when it is run for the update phase."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:570
++#: apt.conf.5.xml:587
  msgid "PromptAfterUpdate"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:571
++#: apt.conf.5.xml:588
  msgid ""
  "If true the [U]pdate operation in &dselect; will always prompt to continue.  "
  "The default is to prompt only on error."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><title>
--#: apt.conf.5.xml:577
++#: apt.conf.5.xml:594
  msgid "How APT calls dpkg"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:578
++#: apt.conf.5.xml:595
  msgid ""
  "Several configuration directives control how APT invokes &dpkg;. These are "
  "in the <literal>DPkg</literal> section."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:583
++#: apt.conf.5.xml:600
  msgid ""
  "This is a list of options to pass to dpkg. The options must be specified "
  "using the list notation and each list item is passed as a single argument to "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:588
++#: apt.conf.5.xml:605
  msgid "Pre-Invoke"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:588
++#: apt.conf.5.xml:605
  msgid "Post-Invoke"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:589
++#: apt.conf.5.xml:606
  msgid ""
  "This is a list of shell commands to run before/after invoking &dpkg;.  Like "
  "<literal>options</literal> this must be specified in list notation. The "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:595
++#: apt.conf.5.xml:612
  msgid "Pre-Install-Pkgs"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:596
++#: apt.conf.5.xml:613
  msgid ""
  "This is a list of shell commands to run before invoking dpkg. Like "
  "<literal>options</literal> this must be specified in list notation. The "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:602
++#: apt.conf.5.xml:619
  msgid ""
  "Version 2 of this protocol dumps more information, including the protocol "
  "version, the APT configuration space and the packages, files and versions "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:609
++#: apt.conf.5.xml:626
  msgid "Run-Directory"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:610
++#: apt.conf.5.xml:627
  msgid ""
  "APT chdirs to this directory before invoking dpkg, the default is "
  "<filename>/</filename>."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:614
++#: apt.conf.5.xml:631
  msgid "Build-options"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:615
++#: apt.conf.5.xml:632
  msgid ""
  "These options are passed to &dpkg-buildpackage; when compiling packages, the "
  "default is to disable signing and produce all binaries."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><title>
--#: apt.conf.5.xml:620
++#: apt.conf.5.xml:637
  msgid "dpkg trigger usage (and related options)"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
--#: apt.conf.5.xml:621
++#: apt.conf.5.xml:638
  msgid ""
  "APT can call dpkg in a way so it can make aggressive use of triggers over "
  "multiple calls of dpkg. Without further options dpkg will use triggers only "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><literallayout>
--#: apt.conf.5.xml:636
++#: apt.conf.5.xml:653
  #, no-wrap
  msgid ""
  "DPkg::NoTriggers \"true\";\n"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
--#: apt.conf.5.xml:630
++#: apt.conf.5.xml:647
  msgid ""
  "Note that it is not guaranteed that APT will support these options or that "
  "these options will not cause (big) trouble in the future. If you have "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
--#: apt.conf.5.xml:642
++#: apt.conf.5.xml:659
  msgid "DPkg::NoTriggers"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:643
++#: apt.conf.5.xml:660
  msgid ""
  "Add the no triggers flag to all dpkg calls (except the ConfigurePending "
  "call).  See &dpkg; if you are interested in what this actually means. In "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
--#: apt.conf.5.xml:650
++#: apt.conf.5.xml:667
  msgid "PackageManager::Configure"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:651
++#: apt.conf.5.xml:668
  msgid ""
  "Valid values are \"<literal>all</literal>\", \"<literal>smart</literal>\" "
  "and \"<literal>no</literal>\".  \"<literal>all</literal>\" is the default "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
--#: apt.conf.5.xml:661
++#: apt.conf.5.xml:678
  msgid "DPkg::ConfigurePending"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:662
++#: apt.conf.5.xml:679
  msgid ""
  "If this option is set apt will call <command>dpkg --configure "
  "--pending</command> to let dpkg handle all required configurations and "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
--#: apt.conf.5.xml:668
++#: apt.conf.5.xml:685
  msgid "DPkg::TriggersPending"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:669
++#: apt.conf.5.xml:686
  msgid ""
  "Useful for <literal>smart</literal> configuration as a package which has "
  "pending triggers is not considered as <literal>installed</literal> and dpkg "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
--#: apt.conf.5.xml:674
++#: apt.conf.5.xml:691
  msgid "PackageManager::UnpackAll"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:675
++#: apt.conf.5.xml:692
  msgid ""
  "As the configuration can be deferred to be done at the end by dpkg it can be "
  "tried to order the unpack series only by critical needs, e.g. by "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
--#: apt.conf.5.xml:682
++#: apt.conf.5.xml:699
  msgid "OrderList::Score::Immediate"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para><literallayout>
--#: apt.conf.5.xml:690
++#: apt.conf.5.xml:707
  #, no-wrap
  msgid ""
  "OrderList::Score {\n"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:683
++#: apt.conf.5.xml:700
  msgid ""
  "Essential packages (and there dependencies) should be configured immediately "
  "after unpacking. It will be a good idea to do this quite early in the "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><title>
--#: apt.conf.5.xml:703
++#: apt.conf.5.xml:720
  msgid "Periodic and Archives options"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:704
++#: apt.conf.5.xml:721
  msgid ""
  "<literal>APT::Periodic</literal> and <literal>APT::Archives</literal> groups "
  "of options configure behavior of apt periodic updates, which is done by "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><title>
--#: apt.conf.5.xml:712
++#: apt.conf.5.xml:729
  msgid "Debug options"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:714
++#: apt.conf.5.xml:731
  msgid ""
  "Enabling options in the <literal>Debug::</literal> section will cause "
  "debugging information to be sent to the standard error stream of the program "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
--#: apt.conf.5.xml:725
++#: apt.conf.5.xml:742
  msgid ""
  "<literal>Debug::pkgProblemResolver</literal> enables output about the "
  "decisions made by <literal>dist-upgrade, upgrade, install, remove, "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
--#: apt.conf.5.xml:733
++#: apt.conf.5.xml:750
  msgid ""
  "<literal>Debug::NoLocking</literal> disables all file locking.  This can be "
  "used to run some operations (for instance, <literal>apt-get -s "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
--#: apt.conf.5.xml:742
++#: apt.conf.5.xml:759
  msgid ""
  "<literal>Debug::pkgDPkgPM</literal> prints out the actual command line each "
  "time that <literal>apt</literal> invokes &dpkg;."
@@@ -5411,110 -5449,110 +5515,110 @@@ msgstr "
  #.       motivating example, except I haven't a clue why you'd want
  #.       to do this. 
  #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
--#: apt.conf.5.xml:750
++#: apt.conf.5.xml:767
  msgid ""
  "<literal>Debug::IdentCdrom</literal> disables the inclusion of statfs data "
  "in CDROM IDs."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:760
++#: apt.conf.5.xml:777
  msgid "A full list of debugging options to apt follows."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:765
++#: apt.conf.5.xml:782
  msgid "<literal>Debug::Acquire::cdrom</literal>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:769
++#: apt.conf.5.xml:786
  msgid "Print information related to accessing <literal>cdrom://</literal> sources."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:776
++#: apt.conf.5.xml:793
  msgid "<literal>Debug::Acquire::ftp</literal>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:780
++#: apt.conf.5.xml:797
  msgid "Print information related to downloading packages using FTP."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:787
++#: apt.conf.5.xml:804
  msgid "<literal>Debug::Acquire::http</literal>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:791
++#: apt.conf.5.xml:808
  msgid "Print information related to downloading packages using HTTP."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:798
++#: apt.conf.5.xml:815
  msgid "<literal>Debug::Acquire::https</literal>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:802
++#: apt.conf.5.xml:819
  msgid "Print information related to downloading packages using HTTPS."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:809
++#: apt.conf.5.xml:826
  msgid "<literal>Debug::Acquire::gpgv</literal>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:813
++#: apt.conf.5.xml:830
  msgid ""
  "Print information related to verifying cryptographic signatures using "
  "<literal>gpg</literal>."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:820
++#: apt.conf.5.xml:837
  msgid "<literal>Debug::aptcdrom</literal>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:824
++#: apt.conf.5.xml:841
  msgid ""
  "Output information about the process of accessing collections of packages "
  "stored on CD-ROMs."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:831
++#: apt.conf.5.xml:848
  msgid "<literal>Debug::BuildDeps</literal>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:834
++#: apt.conf.5.xml:851
  msgid "Describes the process of resolving build-dependencies in &apt-get;."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:841
++#: apt.conf.5.xml:858
  msgid "<literal>Debug::Hashes</literal>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:844
++#: apt.conf.5.xml:861
  msgid ""
  "Output each cryptographic hash that is generated by the "
  "<literal>apt</literal> libraries."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:851
++#: apt.conf.5.xml:868
  msgid "<literal>Debug::IdentCDROM</literal>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:854
++#: apt.conf.5.xml:871
  msgid ""
  "Do not include information from <literal>statfs</literal>, namely the number "
  "of used and free blocks on the CD-ROM filesystem, when generating an ID for "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:862
++#: apt.conf.5.xml:879
  msgid "<literal>Debug::NoLocking</literal>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:865
++#: apt.conf.5.xml:882
  msgid ""
  "Disable all file locking.  For instance, this will allow two instances of "
  "<quote><literal>apt-get update</literal></quote> to run at the same time."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:873
++#: apt.conf.5.xml:890
  msgid "<literal>Debug::pkgAcquire</literal>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:877
++#: apt.conf.5.xml:894
  msgid "Log when items are added to or removed from the global download queue."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:884
++#: apt.conf.5.xml:901
  msgid "<literal>Debug::pkgAcquire::Auth</literal>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:887
++#: apt.conf.5.xml:904
  msgid ""
  "Output status messages and errors related to verifying checksums and "
  "cryptographic signatures of downloaded files."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:894
++#: apt.conf.5.xml:911
  msgid "<literal>Debug::pkgAcquire::Diffs</literal>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:897
++#: apt.conf.5.xml:914
  msgid ""
  "Output information about downloading and applying package index list diffs, "
  "and errors relating to package index list diffs."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:905
++#: apt.conf.5.xml:922
  msgid "<literal>Debug::pkgAcquire::RRed</literal>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:909
++#: apt.conf.5.xml:926
  msgid ""
  "Output information related to patching apt package lists when downloading "
  "index diffs instead of full indices."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:916
++#: apt.conf.5.xml:933
  msgid "<literal>Debug::pkgAcquire::Worker</literal>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:920
++#: apt.conf.5.xml:937
  msgid "Log all interactions with the sub-processes that actually perform downloads."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:927
++#: apt.conf.5.xml:944
  msgid "<literal>Debug::pkgAutoRemove</literal>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:931
++#: apt.conf.5.xml:948
  msgid ""
  "Log events related to the automatically-installed status of packages and to "
  "the removal of unused packages."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:938
++#: apt.conf.5.xml:955
  msgid "<literal>Debug::pkgDepCache::AutoInstall</literal>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:941
++#: apt.conf.5.xml:958
  msgid ""
  "Generate debug messages describing which packages are being automatically "
  "installed to resolve dependencies.  This corresponds to the initial "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:952
++#: apt.conf.5.xml:969
  msgid "<literal>Debug::pkgDepCache::Marker</literal>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:955
++#: apt.conf.5.xml:972
  msgid ""
  "Generate debug messages describing which package is marked as "
  "keep/install/remove while the ProblemResolver does his work.  Each addition "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:974
++#: apt.conf.5.xml:991
  msgid "<literal>Debug::pkgInitConfig</literal>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:977
++#: apt.conf.5.xml:994
  msgid "Dump the default configuration to standard error on startup."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:984
++#: apt.conf.5.xml:1001
  msgid "<literal>Debug::pkgDPkgPM</literal>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:987
++#: apt.conf.5.xml:1004
  msgid ""
  "When invoking &dpkg;, output the precise command line with which it is being "
  "invoked, with arguments separated by a single space character."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:995
++#: apt.conf.5.xml:1012
  msgid "<literal>Debug::pkgDPkgProgressReporting</literal>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:998
++#: apt.conf.5.xml:1015
  msgid ""
  "Output all the data received from &dpkg; on the status file descriptor and "
  "any errors encountered while parsing it."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:1005
++#: apt.conf.5.xml:1022
  msgid "<literal>Debug::pkgOrderList</literal>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:1009
++#: apt.conf.5.xml:1026
  msgid ""
  "Generate a trace of the algorithm that decides the order in which "
  "<literal>apt</literal> should pass packages to &dpkg;."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:1017
++#: apt.conf.5.xml:1034
  msgid "<literal>Debug::pkgPackageManager</literal>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:1021
++#: apt.conf.5.xml:1038
  msgid "Output status messages tracing the steps performed when invoking &dpkg;."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:1028
++#: apt.conf.5.xml:1045
  msgid "<literal>Debug::pkgPolicy</literal>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:1032
++#: apt.conf.5.xml:1049
  msgid "Output the priority of each package list on startup."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:1038
++#: apt.conf.5.xml:1055
  msgid "<literal>Debug::pkgProblemResolver</literal>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:1042
++#: apt.conf.5.xml:1059
  msgid ""
  "Trace the execution of the dependency resolver (this applies only to what "
  "happens when a complex dependency problem is encountered)."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:1050
++#: apt.conf.5.xml:1067
  msgid "<literal>Debug::pkgProblemResolver::ShowScores</literal>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:1053
++#: apt.conf.5.xml:1070
  msgid ""
  "Display a list of all installed packages with their calculated score used by "
  "the pkgProblemResolver. The description of the package is the same as "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:1061
++#: apt.conf.5.xml:1078
  msgid "<literal>Debug::sourceList</literal>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:1065
++#: apt.conf.5.xml:1082
  msgid ""
  "Print information about the vendors read from "
  "<filename>/etc/apt/vendors.list</filename>."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:1088
++#: apt.conf.5.xml:1105
  msgid ""
  "&configureindex; is a configuration file showing example values for all "
  "possible options."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist>
--#: apt.conf.5.xml:1095
++#: apt.conf.5.xml:1112
  msgid "&file-aptconf;"
  msgstr ""
  
  #.  ? reading apt.conf 
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:1100
++#: apt.conf.5.xml:1117
  msgid "&apt-cache;, &apt-config;, &apt-preferences;."
  msgstr ""
  
@@@ -5827,8 -5865,8 +5931,8 @@@ msgstr "
  msgid ""
  "Note that the files in the <filename>/etc/apt/preferences.d</filename> "
  "directory are parsed in alphanumeric ascending order and need to obey the "
--"following naming convention: The files have no or "
--"\"<literal>pref</literal>\" as filename extension and which only contain "
++"following naming convention: The files have either no or "
++"\"<literal>pref</literal>\" as filename extension and only contain "
  "alphanumeric, hyphen (-), underscore (_) and period (.) characters.  "
  "Otherwise APT will print a notice that it has ignored a file if the file "
  "doesn't match a pattern in the <literal>Dir::Ignore-Files-Silently</literal> "
@@@ -6150,82 -6188,133 +6254,133 @@@ msgid "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><title>
- #: apt_preferences.5.xml:263
+ #: apt_preferences.5.xml:262
+ msgid "Regular expressions and glob() syntax"
+ msgstr ""
+ #. type: Content of: <refentry><refsect1><refsect2><para>
+ #: apt_preferences.5.xml:264
+ msgid ""
+ "APT also supports pinning by glob() expressions and regular expressions "
+ "surrounded by /. For example, the following example assigns the priority 500 "
+ "to all packages from experimental where the name starts with gnome (as a "
 -"glob()-like expression or contains the word kde (as a POSIX extended regular "
 -"expression surrounded by slashes)."
++"glob()-like expression) or contains the word kde (as a POSIX extended "
++"regular expression surrounded by slashes)."
+ msgstr ""
+ #. type: Content of: <refentry><refsect1><refsect2><programlisting>
+ #: apt_preferences.5.xml:273
+ #, no-wrap
+ msgid ""
+ "Package: gnome* /kde/\n"
+ "Pin: release n=experimental\n"
+ "Pin-Priority: 500\n"
+ msgstr ""
+ #. type: Content of: <refentry><refsect1><refsect2><para>
+ #: apt_preferences.5.xml:279
+ msgid ""
+ "The rule for those expressions is that they can occur anywhere where a "
 -"string can occur. Those, the following pin assigns the priority 990 to all "
++"string can occur. Thus, the following pin assigns the priority 990 to all "
+ "packages from a release starting with karmic."
+ msgstr ""
+ #. type: Content of: <refentry><refsect1><refsect2><programlisting>
+ #: apt_preferences.5.xml:285
+ #, no-wrap
+ msgid ""
+ "Package: *\n"
+ "Pin: release n=karmic*\n"
+ "Pin-Priority: 990\n"
+ msgstr ""
+ #. type: Content of: <refentry><refsect1><refsect2><literal>
+ #: apt_preferences.5.xml:290
+ msgid "Package"
+ msgstr ""
+ #. type: Content of: <refentry><refsect1><refsect2><literal>
+ #: apt_preferences.5.xml:296
+ msgid "*"
+ msgstr ""
+ #. type: Content of: <refentry><refsect1><refsect2><title>
+ #: apt_preferences.5.xml:306
  msgid "How APT Interprets Priorities"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:271
+ #: apt_preferences.5.xml:314
  msgid "P &gt; 1000"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:272
+ #: apt_preferences.5.xml:315
  msgid ""
  "causes a version to be installed even if this constitutes a downgrade of the "
  "package"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:276
+ #: apt_preferences.5.xml:319
  msgid "990 &lt; P &lt;=1000"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:277
+ #: apt_preferences.5.xml:320
  msgid ""
  "causes a version to be installed even if it does not come from the target "
  "release, unless the installed version is more recent"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:282
+ #: apt_preferences.5.xml:325
  msgid "500 &lt; P &lt;=990"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:283
+ #: apt_preferences.5.xml:326
  msgid ""
  "causes a version to be installed unless there is a version available "
  "belonging to the target release or the installed version is more recent"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:288
+ #: apt_preferences.5.xml:331
  msgid "100 &lt; P &lt;=500"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:289
+ #: apt_preferences.5.xml:332
  msgid ""
  "causes a version to be installed unless there is a version available "
  "belonging to some other distribution or the installed version is more recent"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:294
+ #: apt_preferences.5.xml:337
  msgid "0 &lt; P &lt;=100"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:295
+ #: apt_preferences.5.xml:338
  msgid ""
  "causes a version to be installed only if there is no installed version of "
  "the package"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:299
+ #: apt_preferences.5.xml:342
  msgid "P &lt; 0"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:300
+ #: apt_preferences.5.xml:343
  msgid "prevents the version from being installed"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:266
+ #: apt_preferences.5.xml:309
  msgid ""
  "Priorities (P) assigned in the APT preferences file must be positive or "
  "negative integers.  They are interpreted as follows (roughly speaking): "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:305
+ #: apt_preferences.5.xml:348
  msgid ""
  "If any specific-form records match an available package version then the "
  "first such record determines the priority of the package version.  Failing "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:311
+ #: apt_preferences.5.xml:354
  msgid ""
  "For example, suppose the APT preferences file contains the three records "
  "presented earlier:"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><programlisting>
- #: apt_preferences.5.xml:315
+ #: apt_preferences.5.xml:358
  #, no-wrap
  msgid ""
  "Package: perl\n"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:328
+ #: apt_preferences.5.xml:371
  msgid "Then:"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
- #: apt_preferences.5.xml:330
+ #: apt_preferences.5.xml:373
  msgid ""
  "The most recent available version of the <literal>perl</literal> package "
  "will be installed, so long as that version's version number begins with "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
- #: apt_preferences.5.xml:335
+ #: apt_preferences.5.xml:378
  msgid ""
  "A version of any package other than <literal>perl</literal> that is "
  "available from the local system has priority over other versions, even "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
- #: apt_preferences.5.xml:339
+ #: apt_preferences.5.xml:382
  msgid ""
  "A version of a package whose origin is not the local system but some other "
  "site listed in &sources-list; and which belongs to an "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><title>
- #: apt_preferences.5.xml:349
+ #: apt_preferences.5.xml:392
  msgid "Determination of Package Version and Distribution Properties"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:351
+ #: apt_preferences.5.xml:394
  msgid ""
  "The locations listed in the &sources-list; file should provide "
  "<filename>Packages</filename> and <filename>Release</filename> files to "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:363
+ #: apt_preferences.5.xml:406
  msgid "the <literal>Package:</literal> line"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:364
+ #: apt_preferences.5.xml:407
  msgid "gives the package name"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:367 apt_preferences.5.xml:417
+ #: apt_preferences.5.xml:410 apt_preferences.5.xml:460
  msgid "the <literal>Version:</literal> line"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:368
+ #: apt_preferences.5.xml:411
  msgid "gives the version number for the named package"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:355
+ #: apt_preferences.5.xml:398
  msgid ""
  "The <filename>Packages</filename> file is normally found in the directory "
  "<filename>.../dists/<replaceable>dist-name</replaceable>/<replaceable>component</replaceable>/<replaceable>arch</replaceable></filename>: "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:384
+ #: apt_preferences.5.xml:427
  msgid "the <literal>Archive:</literal> or <literal>Suite:</literal> line"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:385
+ #: apt_preferences.5.xml:428
  msgid ""
  "names the archive to which all the packages in the directory tree belong.  "
  "For example, the line \"Archive: stable\" or \"Suite: stable\" specifies "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
- #: apt_preferences.5.xml:395
+ #: apt_preferences.5.xml:438
  #, no-wrap
  msgid "Pin: release a=stable\n"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:401
+ #: apt_preferences.5.xml:444
  msgid "the <literal>Codename:</literal> line"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:402
+ #: apt_preferences.5.xml:445
  msgid ""
  "names the codename to which all the packages in the directory tree belong.  "
  "For example, the line \"Codename: &testing-codename;\" specifies that all of "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
- #: apt_preferences.5.xml:411
+ #: apt_preferences.5.xml:454
  #, no-wrap
  msgid "Pin: release n=&testing-codename;\n"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:418
+ #: apt_preferences.5.xml:461
  msgid ""
  "names the release version.  For example, the packages in the tree might "
  "belong to Debian GNU/Linux release version 3.0.  Note that there is normally "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
- #: apt_preferences.5.xml:427
+ #: apt_preferences.5.xml:470
  #, no-wrap
  msgid ""
  "Pin: release v=3.0\n"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:436
+ #: apt_preferences.5.xml:479
  msgid "the <literal>Component:</literal> line"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:437
+ #: apt_preferences.5.xml:480
  msgid ""
  "names the licensing component associated with the packages in the directory "
  "tree of the <filename>Release</filename> file.  For example, the line "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
- #: apt_preferences.5.xml:446
+ #: apt_preferences.5.xml:489
  #, no-wrap
  msgid "Pin: release c=main\n"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:452
+ #: apt_preferences.5.xml:495
  msgid "the <literal>Origin:</literal> line"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:453
+ #: apt_preferences.5.xml:496
  msgid ""
  "names the originator of the packages in the directory tree of the "
  "<filename>Release</filename> file.  Most commonly, this is "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
- #: apt_preferences.5.xml:459
+ #: apt_preferences.5.xml:502
  #, no-wrap
  msgid "Pin: release o=Debian\n"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:465
+ #: apt_preferences.5.xml:508
  msgid "the <literal>Label:</literal> line"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:466
+ #: apt_preferences.5.xml:509
  msgid ""
  "names the label of the packages in the directory tree of the "
  "<filename>Release</filename> file.  Most commonly, this is "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
- #: apt_preferences.5.xml:472
+ #: apt_preferences.5.xml:515
  #, no-wrap
  msgid "Pin: release l=Debian\n"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:373
+ #: apt_preferences.5.xml:416
  msgid ""
  "The <filename>Release</filename> file is normally found in the directory "
  "<filename>.../dists/<replaceable>dist-name</replaceable></filename>: for "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:479
+ #: apt_preferences.5.xml:522
  msgid ""
  "All of the <filename>Packages</filename> and <filename>Release</filename> "
  "files retrieved from locations listed in the &sources-list; file are stored "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><title>
- #: apt_preferences.5.xml:492
+ #: apt_preferences.5.xml:535
  msgid "Optional Lines in an APT Preferences Record"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:494
+ #: apt_preferences.5.xml:537
  msgid ""
  "Each record in the APT preferences file can optionally begin with one or "
  "more lines beginning with the word <literal>Explanation:</literal>.  This "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><title>
- #: apt_preferences.5.xml:503
+ #: apt_preferences.5.xml:546
  msgid "Tracking Stable"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
- #: apt_preferences.5.xml:511
+ #: apt_preferences.5.xml:554
  #, no-wrap
  msgid ""
  "Explanation: Uninstall or do not install any Debian-originated\n"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:505
+ #: apt_preferences.5.xml:548
  msgid ""
  "The following APT preferences file will cause APT to assign a priority "
  "higher than the default (500) to all package versions belonging to a "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
- #: apt_preferences.5.xml:528 apt_preferences.5.xml:574 apt_preferences.5.xml:632
+ #: apt_preferences.5.xml:571 apt_preferences.5.xml:617 apt_preferences.5.xml:675
  #, no-wrap
  msgid ""
  "apt-get install <replaceable>package-name</replaceable>\n"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:523
+ #: apt_preferences.5.xml:566
  msgid ""
  "With a suitable &sources-list; file and the above preferences file, any of "
  "the following commands will cause APT to upgrade to the latest "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
- #: apt_preferences.5.xml:540
+ #: apt_preferences.5.xml:583
  #, no-wrap
  msgid "apt-get install <replaceable>package</replaceable>/testing\n"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:534
+ #: apt_preferences.5.xml:577
  msgid ""
  "The following command will cause APT to upgrade the specified package to the "
  "latest version from the <literal>testing</literal> distribution; the package "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><title>
- #: apt_preferences.5.xml:546
+ #: apt_preferences.5.xml:589
  msgid "Tracking Testing or Unstable"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
- #: apt_preferences.5.xml:555
+ #: apt_preferences.5.xml:598
  #, no-wrap
  msgid ""
  "Package: *\n"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:548
+ #: apt_preferences.5.xml:591
  msgid ""
  "The following APT preferences file will cause APT to assign a high priority "
  "to package versions from the <literal>testing</literal> distribution, a "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:569
+ #: apt_preferences.5.xml:612
  msgid ""
  "With a suitable &sources-list; file and the above preferences file, any of "
  "the following commands will cause APT to upgrade to the latest "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
- #: apt_preferences.5.xml:589
+ #: apt_preferences.5.xml:632
  #, no-wrap
  msgid "apt-get install <replaceable>package</replaceable>/unstable\n"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:580
+ #: apt_preferences.5.xml:623
  msgid ""
  "The following command will cause APT to upgrade the specified package to the "
  "latest version from the <literal>unstable</literal> distribution.  "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><title>
- #: apt_preferences.5.xml:596
+ #: apt_preferences.5.xml:639
  msgid "Tracking the evolution of a codename release"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
- #: apt_preferences.5.xml:610
+ #: apt_preferences.5.xml:653
  #, no-wrap
  msgid ""
  "Explanation: Uninstall or do not install any Debian-originated package "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:598
+ #: apt_preferences.5.xml:641
  msgid ""
  "The following APT preferences file will cause APT to assign a priority "
  "higher than the default (500) to all package versions belonging to a "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:627
+ #: apt_preferences.5.xml:670
  msgid ""
  "With a suitable &sources-list; file and the above preferences file, any of "
  "the following commands will cause APT to upgrade to the latest version(s) in "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
- #: apt_preferences.5.xml:647
+ #: apt_preferences.5.xml:690
  #, no-wrap
  msgid "apt-get install <replaceable>package</replaceable>/sid\n"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:638
+ #: apt_preferences.5.xml:681
  msgid ""
  "The following command will cause APT to upgrade the specified package to the "
  "latest version from the <literal>sid</literal> distribution.  Thereafter, "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist>
- #: apt_preferences.5.xml:656
+ #: apt_preferences.5.xml:699
  msgid "&file-preferences;"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
- #: apt_preferences.5.xml:662
+ #: apt_preferences.5.xml:705
  msgid "&apt-get; &apt-cache; &apt-conf; &sources-list;"
  msgstr ""
  
@@@ -6794,7 -6883,7 +6949,7 @@@ msgstr "
  #. type: Content of: <refentry><refsect1><literallayout>
  #: sources.list.5.xml:81
  #, no-wrap
--msgid "deb uri distribution [component1] [component2] [...]"
++msgid "deb [ options ] uri distribution [component1] [component2] [...]"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
@@@ -6840,6 -6929,6 +6995,38 @@@ msgstr "
  #. type: Content of: <refentry><refsect1><para>
  #: sources.list.5.xml:112
  msgid ""
++"<literal>options</literal> is always optional and needs to be surounded by "
++"square brackets. It can consist of multiple settings in the form "
++"<literal><replaceable>setting</replaceable>=<replaceable>value</replaceable></literal>.  "
++"Multiple settings are separated by spaces. The following settings are "
++"supported by APT, note through that unsupported settings will be ignored "
++"silently:"
++msgstr ""
++
++#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
++#: sources.list.5.xml:117
++msgid ""
++"<literal>arch=<replaceable>arch1</replaceable>,<replaceable>arch2</replaceable>,…</literal> "
++"can be used to specify for which architectures packages information should "
++"be downloaded. If this option is not set all architectures defined by the "
++"<literal>APT::Architectures</literal> option will be downloaded."
++msgstr ""
++
++#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
++#: sources.list.5.xml:121
++msgid ""
++"<literal>trusted=yes</literal> can be set to indicate that packages from "
++"this source are always authenificated even if the "
++"<filename>Release</filename> file is not signed or the signature can't be "
++"checked. This disables parts of &apt-secure; and should therefore only be "
++"used in a local and trusted context. <literal>trusted=no</literal> is the "
++"opposite which handles even correctly authenificated sources as not "
++"authenificated."
++msgstr ""
++
++#. type: Content of: <refentry><refsect1><para>
++#: sources.list.5.xml:128
++msgid ""
  "It is important to list sources in order of preference, with the most "
  "preferred source listed first. Typically this will result in sorting by "
  "speed from fastest to slowest (CD-ROM followed by hosts on a local network, "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: sources.list.5.xml:117
++#: sources.list.5.xml:133
  msgid "Some examples:"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><literallayout>
--#: sources.list.5.xml:119
++#: sources.list.5.xml:135
  #, no-wrap
  msgid ""
  "deb http://ftp.debian.org/debian &stable-codename; main contrib non-free\n"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><title>
--#: sources.list.5.xml:125
++#: sources.list.5.xml:141
  msgid "URI specification"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: sources.list.5.xml:130
++#: sources.list.5.xml:146
  msgid "file"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: sources.list.5.xml:132
++#: sources.list.5.xml:148
  msgid ""
  "The file scheme allows an arbitrary directory in the file system to be "
  "considered an archive. This is useful for NFS mounts and local mirrors or "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: sources.list.5.xml:139
++#: sources.list.5.xml:155
  msgid ""
  "The cdrom scheme allows APT to use a local CDROM drive with media "
  "swapping. Use the &apt-cdrom; program to create cdrom entries in the source "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: sources.list.5.xml:146
++#: sources.list.5.xml:162
  msgid ""
  "The http scheme specifies an HTTP server for the archive. If an environment "
  "variable <envar>http_proxy</envar> is set with the format "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: sources.list.5.xml:157
++#: sources.list.5.xml:173
  msgid ""
  "The ftp scheme specifies an FTP server for the archive. APT's FTP behavior "
  "is highly configurable; for more information see the &apt-conf; manual "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: sources.list.5.xml:166
++#: sources.list.5.xml:182
  msgid "copy"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: sources.list.5.xml:168
++#: sources.list.5.xml:184
  msgid ""
  "The copy scheme is identical to the file scheme except that packages are "
  "copied into the cache directory instead of used directly at their location.  "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: sources.list.5.xml:173
++#: sources.list.5.xml:189
  msgid "rsh"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: sources.list.5.xml:173
++#: sources.list.5.xml:189
  msgid "ssh"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: sources.list.5.xml:175
++#: sources.list.5.xml:191
  msgid ""
  "The rsh/ssh method invokes rsh/ssh to connect to a remote host as a given "
  "user and access the files. It is a good idea to do prior arrangements with "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: sources.list.5.xml:183
++#: sources.list.5.xml:199
  msgid "more recognizable URI types"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: sources.list.5.xml:185
++#: sources.list.5.xml:201
  msgid ""
  "APT can be extended with more methods shipped in other optional packages "
  "which should follow the nameing scheme "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: sources.list.5.xml:127
++#: sources.list.5.xml:143
  msgid ""
  "The currently recognized URI types are cdrom, file, http, ftp, copy, ssh, "
  "rsh.  <placeholder type=\"variablelist\" id=\"0\"/>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: sources.list.5.xml:199
++#: sources.list.5.xml:215
  msgid ""
  "Uses the archive stored locally (or NFS mounted) at /home/jason/debian for "
  "stable/main, stable/contrib, and stable/non-free."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><literallayout>
--#: sources.list.5.xml:201
++#: sources.list.5.xml:217
  #, no-wrap
  msgid "deb file:/home/jason/debian stable main contrib non-free"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: sources.list.5.xml:203
++#: sources.list.5.xml:219
  msgid "As above, except this uses the unstable (development) distribution."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><literallayout>
--#: sources.list.5.xml:204
++#: sources.list.5.xml:220
  #, no-wrap
  msgid "deb file:/home/jason/debian unstable main contrib non-free"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: sources.list.5.xml:206
++#: sources.list.5.xml:222
  msgid "Source line for the above"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><literallayout>
--#: sources.list.5.xml:207
++#: sources.list.5.xml:223
  #, no-wrap
  msgid "deb-src file:/home/jason/debian unstable main contrib non-free"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: sources.list.5.xml:209
++#: sources.list.5.xml:225
++msgid ""
++"The first line gets package information for the architectures in "
++"<literal>APT::Architectures</literal> while the second always retrieves "
++"<literal>amd64</literal> and <literal>armel</literal>."
++msgstr ""
++
++#. type: Content of: <refentry><refsect1><literallayout>
++#: sources.list.5.xml:227
++#, no-wrap
++msgid ""
++"deb http://ftp.debian.org/debian &stable-codename; main\n"
++"deb [ arch=amd64,armel ] http://ftp.debian.org/debian &stable-codename; main"
++msgstr ""
++
++#. type: Content of: <refentry><refsect1><para>
++#: sources.list.5.xml:230
  msgid ""
  "Uses HTTP to access the archive at archive.debian.org, and uses only the "
  "hamm/main area."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><literallayout>
--#: sources.list.5.xml:211
++#: sources.list.5.xml:232
  #, no-wrap
  msgid "deb http://archive.debian.org/debian-archive hamm main"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: sources.list.5.xml:213
++#: sources.list.5.xml:234
  msgid ""
  "Uses FTP to access the archive at ftp.debian.org, under the debian "
  "directory, and uses only the &stable-codename;/contrib area."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><literallayout>
--#: sources.list.5.xml:215
++#: sources.list.5.xml:236
  #, no-wrap
  msgid "deb ftp://ftp.debian.org/debian &stable-codename; contrib"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: sources.list.5.xml:217
++#: sources.list.5.xml:238
  msgid ""
  "Uses FTP to access the archive at ftp.debian.org, under the debian "
  "directory, and uses only the unstable/contrib area. If this line appears as "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><literallayout>
--#: sources.list.5.xml:221
++#: sources.list.5.xml:242
  #, no-wrap
  msgid "deb ftp://ftp.debian.org/debian unstable contrib"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><literallayout>
--#: sources.list.5.xml:230
++#: sources.list.5.xml:251
  #, no-wrap
  msgid "deb http://ftp.tlh.debian.org/universe unstable/binary-$(ARCH)/"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: sources.list.5.xml:223
++#: sources.list.5.xml:244
  msgid ""
  "Uses HTTP to access the archive at ftp.tlh.debian.org, under the universe "
  "directory, and uses only files found under "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: sources.list.5.xml:235
++#: sources.list.5.xml:256
  msgid "&apt-cache; &apt-conf;"
  msgstr ""
  
diff --combined doc/po/de.po
index dd3cdf8f49876815f86021f3d540b22f56f07cea,1c3ab0e9042a4d174cbb9d45379ca90f81dd5fb2..4ab74e4c470f212e397f7b7c4870825b33496589
@@@ -1,14 -1,14 +1,14 @@@
  # Translation of apt-doc to German
  # Copyright (C) 1997, 1998, 1999 Jason Gunthorpe and others.
  # This file is distributed under the same license as the apt-doc package.
- # Chris Leick <c.leick@vollbio.de>, 2009, 2010.
+ # Chris Leick <c.leick@vollbio.de>, 2009-2011.
  #
  msgid ""
  msgstr ""
- "Project-Id-Version: apt-doc 0.7.25.3\n"
+ "Project-Id-Version: apt-doc 0.8.14-1\n"
  "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
- "POT-Creation-Date: 2011-04-05 10:22+0300\n"
- "PO-Revision-Date: 2010-09-16 19:04+0100\n"
 -"POT-Creation-Date: 2011-06-08 16:54+0300\n"
++"POT-Creation-Date: 2011-11-10 16:42+0100\n"
+ "PO-Revision-Date: 2011-05-31 21:00+0100\n"
  "Last-Translator: Chris Leick <c.leick@vollbio.de>\n"
  "Language-Team: German <debian-l10n-german@lists.debian.org>\n"
  "Language: de\n"
@@@ -656,16 -656,12 +656,12 @@@ msgstr "
  #.  The last update date 
  #. type: Content of: <refentry><refentryinfo>
  #: apt-cache.8.xml:16
- #, fuzzy
- #| msgid ""
- #| "&apt-author.jgunthorpe; &apt-author.team; &apt-email; &apt-product; "
- #| "<date>14 February 2004</date>"
  msgid ""
  "&apt-author.jgunthorpe; &apt-author.team; &apt-email; &apt-product; <date>04 "
  "February 2011</date>"
  msgstr ""
  "&apt-author.jgunthorpe; &apt-author.team; &apt-email; &apt-product; "
- "<date>14. Februar 2004</date>"
+ "<date>04. Februar 2011</date>"
  
  #. type: Content of: <refentry><refnamediv><refname>
  #: apt-cache.8.xml:25 apt-cache.8.xml:32
@@@ -690,33 -686,10 +686,10 @@@ msgstr "APT
  #. type: Content of: <refentry><refnamediv><refpurpose>
  #: apt-cache.8.xml:33
  msgid "query the APT cache"
- msgstr ""
+ msgstr "den APT-Zwischenspeicher abfragen"
  
  #. type: Content of: <refentry><refsynopsisdiv><cmdsynopsis>
  #: apt-cache.8.xml:39
- #, fuzzy
- #| msgid ""
- #| "<command>apt-cache</command> <arg><option>-hvsn</option></arg> "
- #| "<arg><option>-o=<replaceable>config string</replaceable></option></arg> "
- #| "<arg><option>-c=<replaceable>file</replaceable></option></arg> <group "
- #| "choice=\"req\"> <arg>add <arg choice=\"plain\" rep=\"repeat"
- #| "\"><replaceable>file</replaceable></arg></arg> <arg>gencaches</arg> "
- #| "<arg>showpkg <arg choice=\"plain\" rep=\"repeat\"><replaceable>pkg</"
- #| "replaceable></arg></arg> <arg>showsrc <arg choice=\"plain\" rep=\"repeat"
- #| "\"><replaceable>pkg</replaceable></arg></arg> <arg>stats</arg> <arg>dump</"
- #| "arg> <arg>dumpavail</arg> <arg>unmet</arg> <arg>search <arg choice=\"plain"
- #| "\"><replaceable>regex</replaceable></arg></arg> <arg>show <arg choice="
- #| "\"plain\" rep=\"repeat\"><replaceable>pkg</replaceable></arg></arg> "
- #| "<arg>depends <arg choice=\"plain\" rep=\"repeat\"><replaceable>pkg</"
- #| "replaceable></arg></arg> <arg>rdepends <arg choice=\"plain\" rep=\"repeat"
- #| "\"><replaceable>pkg</replaceable></arg></arg> <arg>pkgnames <arg choice="
- #| "\"plain\"><replaceable>prefix</replaceable></arg></arg> <arg>dotty <arg "
- #| "choice=\"plain\" rep=\"repeat\"><replaceable>pkg</replaceable></arg></"
- #| "arg> <arg>xvcg <arg choice=\"plain\" rep=\"repeat\"><replaceable>pkg</"
- #| "replaceable></arg></arg> <arg>policy <arg choice=\"plain\" rep=\"repeat"
- #| "\"><replaceable>pkgs</replaceable></arg></arg> <arg>madison <arg choice="
- #| "\"plain\" rep=\"repeat\"><replaceable>pkgs</replaceable></arg></arg> </"
- #| "group>"
  msgid ""
  "<command>apt-cache</command> <arg><option>-hvsn</option></arg> <arg><option>-"
  "o=<replaceable>config string</replaceable></option></arg> <arg><option>-"
@@@ -741,16 -714,15 +714,15 @@@ msgstr "
  "<command>apt-cache</command> <arg><option>-hvsn</option></arg> <arg><option>-"
  "o=<replaceable>Konfigurationszeichenkette</replaceable></option></arg> "
  "<arg><option>-c=<replaceable>Datei</replaceable></option></arg> <group "
- "choice=\"req\"> <arg>add <arg choice=\"plain\" rep=\"repeat"
- "\"><replaceable>Datei</replaceable></arg></arg> <arg>gencaches</arg> "
- "<arg>showpkg <arg choice=\"plain\" rep=\"repeat\"><replaceable>pkg</"
- "replaceable></arg></arg> <arg>showsrc <arg choice=\"plain\" rep=\"repeat"
- "\"><replaceable>pkg</replaceable></arg></arg> <arg>stats</arg> <arg>dump</"
- "arg> <arg>dumpavail</arg> <arg>unmet</arg> <arg>search <arg choice=\"plain"
- "\"><replaceable>regex</replaceable></arg></arg> <arg>show <arg choice=\"plain"
- "\" rep=\"repeat\"><replaceable>pkg</replaceable></arg></arg> <arg>depends "
- "<arg choice=\"plain\" rep=\"repeat\"><replaceable>pkg</replaceable></arg></"
- "arg> <arg>rdepends <arg choice=\"plain\" rep=\"repeat\"><replaceable>Paket</"
+ "choice=\"req\"> <arg>gencaches</arg> <arg>showpkg <arg choice=\"plain\" rep="
+ "\"repeat\"><replaceable>Paket</replaceable></arg></arg> <arg>showsrc <arg "
+ "choice=\"plain\" rep=\"repeat\"><replaceable>Paket</replaceable></arg></arg> "
+ "<arg>stats</arg> <arg>dump</arg> <arg>dumpavail</arg> <arg>unmet</arg> "
+ "<arg>search <arg choice=\"plain\"><replaceable>regulärer_Ausdruck</"
+ "replaceable></arg></arg> <arg>show <arg choice=\"plain\" rep=\"repeat"
+ "\"><replaceable>Paket</replaceable></arg></arg> <arg>depends <arg choice="
+ "\"plain\" rep=\"repeat\"><replaceable>Paket</replaceable></arg></arg> "
+ "<arg>rdepends <arg choice=\"plain\" rep=\"repeat\"><replaceable>Paket</"
  "replaceable></arg></arg> <arg>pkgnames <arg choice=\"plain"
  "\"><replaceable>Präfix</replaceable></arg></arg> <arg>dotty <arg choice="
  "\"plain\" rep=\"repeat\"><replaceable>Paket</replaceable></arg></arg> "
  
  #. type: Content of: <refentry><refsect1><title>
  #: apt-cache.8.xml:64 apt-cdrom.8.xml:50 apt-config.8.xml:50
--#: apt-extracttemplates.1.xml:46 apt-ftparchive.1.xml:59 apt-get.8.xml:114
- #: apt-key.8.xml:38 apt-mark.8.xml:55 apt-secure.8.xml:43
++#: apt-extracttemplates.1.xml:46 apt-ftparchive.1.xml:59 apt-get.8.xml:121
+ #: apt-key.8.xml:38 apt-mark.8.xml:56 apt-secure.8.xml:43
  #: apt-sortpkgs.1.xml:47 apt.conf.5.xml:42 apt_preferences.5.xml:36
  #: sources.list.5.xml:36
  msgid "Description"
@@@ -783,7 -755,7 +755,7 @@@ msgstr "
  "und Generieren von interessanten Ausgaben der Paket-Metadaten bereit."
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt-cache.8.xml:70 apt-get.8.xml:120
++#: apt-cache.8.xml:70 apt-get.8.xml:127
  msgid ""
  "Unless the <option>-h</option>, or <option>--help</option> option is given, "
  "one of the commands below must be present."
@@@ -1282,8 -1254,8 +1254,8 @@@ msgstr "
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
  #: apt-cache.8.xml:278 apt-config.8.xml:96 apt-extracttemplates.1.xml:59
- #: apt-ftparchive.1.xml:525 apt-get.8.xml:331 apt-mark.8.xml:92
 -#: apt-ftparchive.1.xml:525 apt-get.8.xml:331 apt-mark.8.xml:126
--#: apt-sortpkgs.1.xml:57 apt.conf.5.xml:560 apt.conf.5.xml:582
++#: apt-ftparchive.1.xml:525 apt-get.8.xml:342 apt-mark.8.xml:126
++#: apt-sortpkgs.1.xml:57 apt.conf.5.xml:577 apt.conf.5.xml:599
  msgid "options"
  msgstr "Optionen"
  
@@@ -1310,7 -1282,7 +1282,7 @@@ msgstr "
  "pkgcache</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-cache.8.xml:288 apt-ftparchive.1.xml:571 apt-get.8.xml:393
++#: apt-cache.8.xml:288 apt-ftparchive.1.xml:572 apt-get.8.xml:404
  #: apt-sortpkgs.1.xml:61
  msgid "<option>-s</option>"
  msgstr "<option>-s</option>"
@@@ -1338,12 -1310,12 +1310,12 @@@ msgstr "
  "srcpkgcache</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-cache.8.xml:296 apt-ftparchive.1.xml:545 apt-get.8.xml:383
++#: apt-cache.8.xml:296 apt-ftparchive.1.xml:546 apt-get.8.xml:394
  msgid "<option>-q</option>"
  msgstr "<option>-q</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-cache.8.xml:296 apt-ftparchive.1.xml:545 apt-get.8.xml:383
++#: apt-cache.8.xml:296 apt-ftparchive.1.xml:546 apt-get.8.xml:394
  msgid "<option>--quiet</option>"
  msgstr "<option>--quiet</option>"
  
@@@ -1422,12 -1394,18 +1394,18 @@@ msgstr "<option>--no-replaces</option>
  msgid "<option>--no-enhances</option>"
  msgstr "<option>--no-enhances</option>"
  
- # FIXME s/twicked/tricked/
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #: apt-cache.8.xml:317
+ #, fuzzy
+ #| msgid ""
+ #| "Per default the <literal>depends</literal> and <literal>rdepends</"
+ #| "literal> print all dependencies. This can be twicked with these flags "
+ #| "which will omit the specified dependency type.  Configuration Item: "
+ #| "<literal>APT::Cache::Show<replaceable>DependencyType</replaceable></"
+ #| "literal> e.g. <literal>APT::Cache::ShowRecommends</literal>."
  msgid ""
  "Per default the <literal>depends</literal> and <literal>rdepends</literal> "
--"print all dependencies. This can be twicked with these flags which will omit "
++"print all dependencies. This can be tweaked with these flags which will omit "
  "the specified dependency type.  Configuration Item: <literal>APT::Cache::"
  "Show<replaceable>DependencyType</replaceable></literal> e.g. <literal>APT::"
  "Cache::ShowRecommends</literal>."
@@@ -1439,7 -1417,7 +1417,7 @@@ msgstr "
  "replaceable></literal> z.B. <literal>APT::Cache::ShowRecommends</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-cache.8.xml:323 apt-cdrom.8.xml:124 apt-get.8.xml:350
++#: apt-cache.8.xml:323 apt-cdrom.8.xml:124 apt-get.8.xml:361
  msgid "<option>-f</option>"
  msgstr "<option>-f</option>"
  
@@@ -1458,7 -1436,7 +1436,8 @@@ msgstr "
  "Konfigurationselement: <literal>APT::Cache::ShowFull</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-cache.8.xml:328 apt-cdrom.8.xml:134 apt-ftparchive.1.xml:583
++#: apt-cache.8.xml:328 apt-cdrom.8.xml:134 apt-ftparchive.1.xml:584
++#: apt-get.8.xml:452
  msgid "<option>-a</option>"
  msgstr "<option>-a</option>"
  
@@@ -1575,14 -1553,14 +1554,14 @@@ msgstr "
  
  #. type: Content of: <refentry><refsect1><variablelist>
  #: apt-cache.8.xml:367 apt-cdrom.8.xml:153 apt-config.8.xml:101
--#: apt-extracttemplates.1.xml:70 apt-ftparchive.1.xml:611 apt-get.8.xml:570
- #: apt-sortpkgs.1.xml:67
++#: apt-extracttemplates.1.xml:70 apt-ftparchive.1.xml:612 apt-get.8.xml:596
+ #: apt-mark.8.xml:140 apt-sortpkgs.1.xml:67
  msgid "&apt-commonoptions;"
  msgstr "&apt-commonoptions;"
  
  #. type: Content of: <refentry><refsect1><title>
- #: apt-cache.8.xml:372 apt-get.8.xml:575 apt-key.8.xml:156 apt-mark.8.xml:125
- #: apt.conf.5.xml:1093 apt_preferences.5.xml:654
 -#: apt-cache.8.xml:372 apt-get.8.xml:575 apt-key.8.xml:172 apt-mark.8.xml:144
 -#: apt.conf.5.xml:1093 apt_preferences.5.xml:697
++#: apt-cache.8.xml:372 apt-get.8.xml:601 apt-key.8.xml:175 apt-mark.8.xml:144
++#: apt.conf.5.xml:1110 apt_preferences.5.xml:697
  msgid "Files"
  msgstr "Dateien"
  
@@@ -1593,10 -1571,10 +1572,10 @@@ msgstr "&file-sourceslist; &file-statel
  
  #. type: Content of: <refentry><refsect1><title>
  #: apt-cache.8.xml:379 apt-cdrom.8.xml:158 apt-config.8.xml:106
--#: apt-extracttemplates.1.xml:77 apt-ftparchive.1.xml:627 apt-get.8.xml:585
- #: apt-key.8.xml:177 apt-mark.8.xml:131 apt-secure.8.xml:185
- #: apt-sortpkgs.1.xml:72 apt.conf.5.xml:1099 apt_preferences.5.xml:661
 -#: apt-key.8.xml:193 apt-mark.8.xml:150 apt-secure.8.xml:185
 -#: apt-sortpkgs.1.xml:72 apt.conf.5.xml:1099 apt_preferences.5.xml:704
--#: sources.list.5.xml:234
++#: apt-extracttemplates.1.xml:77 apt-ftparchive.1.xml:628 apt-get.8.xml:611
++#: apt-key.8.xml:196 apt-mark.8.xml:150 apt-secure.8.xml:185
++#: apt-sortpkgs.1.xml:72 apt.conf.5.xml:1116 apt_preferences.5.xml:704
++#: sources.list.5.xml:255
  msgid "See Also"
  msgstr "Siehe auch"
  
@@@ -1607,8 -1585,8 +1586,8 @@@ msgstr "&apt-conf;, &sources-list;, &ap
  
  #. type: Content of: <refentry><refsect1><title>
  #: apt-cache.8.xml:384 apt-cdrom.8.xml:163 apt-config.8.xml:111
--#: apt-extracttemplates.1.xml:81 apt-ftparchive.1.xml:631 apt-get.8.xml:591
- #: apt-mark.8.xml:135 apt-sortpkgs.1.xml:76
++#: apt-extracttemplates.1.xml:81 apt-ftparchive.1.xml:632 apt-get.8.xml:617
+ #: apt-mark.8.xml:154 apt-sortpkgs.1.xml:76
  msgid "Diagnostics"
  msgstr "Diagnose"
  
@@@ -1737,12 -1715,12 +1716,12 @@@ msgstr "
  "<placeholder type=\"variablelist\" id=\"0\"/>"
  
  #. type: Content of: <refentry><refsect1><title>
- #: apt-cdrom.8.xml:94 apt-key.8.xml:142
 -#: apt-cdrom.8.xml:94 apt-key.8.xml:158
++#: apt-cdrom.8.xml:94 apt-key.8.xml:161
  msgid "Options"
  msgstr "Optionen"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-cdrom.8.xml:98 apt-ftparchive.1.xml:539 apt-get.8.xml:345
++#: apt-cdrom.8.xml:98 apt-ftparchive.1.xml:540 apt-get.8.xml:356
  msgid "<option>-d</option>"
  msgstr "<option>-d</option>"
  
@@@ -1786,7 -1764,7 +1765,7 @@@ msgstr "
  "Konfigurationselement: <literal>APT::CDROM::Rename</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-cdrom.8.xml:116 apt-get.8.xml:364
++#: apt-cdrom.8.xml:116 apt-get.8.xml:375
  msgid "<option>-m</option>"
  msgstr "<option>-m</option>"
  
@@@ -1841,17 -1819,17 +1820,17 @@@ msgstr "
  "Dies verlängert das Durchsuchen des Mediums deutlich, nimmt aber alle auf."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-cdrom.8.xml:143 apt-get.8.xml:395
++#: apt-cdrom.8.xml:143 apt-get.8.xml:406
  msgid "<option>--just-print</option>"
  msgstr "<option>--just-print</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-cdrom.8.xml:144 apt-get.8.xml:397
++#: apt-cdrom.8.xml:144 apt-get.8.xml:408
  msgid "<option>--recon</option>"
  msgstr "<option>--recon</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-cdrom.8.xml:145 apt-get.8.xml:398
++#: apt-cdrom.8.xml:145 apt-get.8.xml:409
  msgid "<option>--no-act</option>"
  msgstr "<option>--no-act</option>"
  
@@@ -1996,7 -1974,7 +1975,7 @@@ msgid "Just show the contents of the co
  msgstr "Nur der Inhalt des Konfigurationsbereichs wird angezeigt."
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt-config.8.xml:107 apt-extracttemplates.1.xml:78 apt-ftparchive.1.xml:628
++#: apt-config.8.xml:107 apt-extracttemplates.1.xml:78 apt-ftparchive.1.xml:629
  #: apt-sortpkgs.1.xml:73
  msgid "&apt-conf;"
  msgstr "&apt-conf;"
@@@ -2076,7 -2054,7 +2055,7 @@@ msgstr "
  "XXXX</filename> angegeben wurde"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-extracttemplates.1.xml:63 apt-get.8.xml:504
++#: apt-extracttemplates.1.xml:63 apt-get.8.xml:530
  msgid "<option>-t</option>"
  msgstr "<option>-t</option>"
  
@@@ -2309,6 -2287,18 +2288,18 @@@ msgid "
  "literal>.  It then writes to stdout a Release file containing a MD5, SHA1 "
  "and SHA256 digest for each file."
  msgstr ""
+ "Der Befehl <literal>release</literal> erzeugt eine Release-Datei aus einem "
+ "Verzeichnisbaum. Standardmäßig durchsucht er rekursiv das angegebene "
+ "Verzeichnis nach nicht komprimierten <filename>Packages</filename>- und "
+ "<filename>Sources</filename>-Dateien und denen, die mit <command>gzip</"
+ "command>, <command>bzip2</command> oder <command>lzma</command> komprimiert "
+ "wurden, ebenso wie <filename>Release</filename>- und <filename>md5sum.txt</"
+ "filename>-Dateien (<literal>APT::FTPArchive::Release::Default-Patterns</"
+ "literal>). Zusätzliche Muster für Dateinamen können hinzugefügt werden, "
+ "indem sie in <literal>APT::FTPArchive::Release::Patterns</literal> "
+ "aufgeführt werden. Dann schreibt er eine Release-Datei auf die "
+ "Standardausgabe, die für jede Datei eine MD5-, SHA1- und SHA256-Prüfsumme "
+ "enthält."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #: apt-ftparchive.1.xml:125
@@@ -2353,7 -2343,7 +2344,7 @@@ msgstr "
  "Verwaltung der erforderlichen Einstellungen bereitstellt."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-ftparchive.1.xml:145 apt-get.8.xml:287
++#: apt-ftparchive.1.xml:145 apt-get.8.xml:298
  msgid "clean"
  msgstr "clean"
  
@@@ -2922,8 -2912,8 +2913,8 @@@ msgstr "
  "der Distribution erscheint, typischerweise etwas wie <literal>main contrib "
  "non-free</literal>"
  
--#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
--#: apt-ftparchive.1.xml:394
++#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
++#: apt-ftparchive.1.xml:394 apt.conf.5.xml:157
  msgid "Architectures"
  msgstr "Architekturen"
  
@@@ -3147,46 -3137,52 +3138,52 @@@ msgstr "
  msgid ""
  "<option>--md5</option>, <option>--sha1</option>, <option>--sha256</option>"
  msgstr ""
+ "<option>--md5</option>, <option>--sha1</option>, <option>--sha256</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #: apt-ftparchive.1.xml:531
  #, fuzzy
  #| msgid ""
- #| "Values for the additional metadata fields in the Release file are taken "
- #| "from the corresponding variables under <literal>APT::FTPArchive::Release</"
- #| "literal>, e.g. <literal>APT::FTPArchive::Release::Origin</literal>.  The "
- #| "supported fields are: <literal>Origin</literal>, <literal>Label</"
- #| "literal>, <literal>Suite</literal>, <literal>Version</literal>, "
- #| "<literal>Codename</literal>, <literal>Date</literal>, <literal>Valid-"
- #| "Until</literal>, <literal>Architectures</literal>, <literal>Components</"
- #| "literal>, <literal>Description</literal>."
+ #| "Generate the given checksum. These options default to on, when turned off "
+ #| "the generated index files will not have the checksum fields where "
+ #| "possible.  Configuration Items: <literal>APT::FTPArchive::"
+ #| "<replaceable>Checksum</replaceable></literal> and <literal>APT::"
+ #| "FTPArchive::<replaceable>Index</replaceable>::<replaceable>Checksum</"
+ #| "replaceable></literal> where <literal><replaceable>Index</replaceable></"
+ #| "literal> can be <literal>Packages</literal>, <literal>Sources</literal> "
+ #| "or <literal>Release</literal> and <literal><replaceable>Checksum</"
+ #| "replaceable></literal> can be <literal>MD5</literal>, <literal>SHA1</"
+ #| "literal> or <literal>SHA256</literal>."
  msgid ""
  "Generate the given checksum. These options default to on, when turned off "
  "the generated index files will not have the checksum fields where possible.  "
  "Configuration Items: <literal>APT::FTPArchive::<replaceable>Checksum</"
  "replaceable></literal> and <literal>APT::FTPArchive::<replaceable>Index</"
  "replaceable>::<replaceable>Checksum</replaceable></literal> where "
--"<literal>Index</literal> can be <literal>Packages</literal>, "
--"<literal>Sources</literal> or <literal>Release</literal> and "
--"<literal>Checksum</literal> can be <literal>MD5</literal>, <literal>SHA1</"
--"literal> or <literal>SHA256</literal>."
- msgstr ""
- "Werte für zusätzliche Metadatenfelder in der Release-Datei werden den "
- "entsprechenden Variablen unter <literal>APT::FTPArchive::Release</literal> "
- "entnommen, z.B. <literal>APT::FTPArchive::Release::Origin</literal>. Die "
- "unterstützten Felder sind: <literal>Origin</literal>, <literal>Label</"
- "literal>, <literal>Suite</literal>, <literal>Version</literal>, "
- "<literal>Codename</literal>, <literal>Date</literal>, <literal>Valid-Until</"
- "literal>, <literal>Architectures</literal>, <literal>Components</literal>, "
- "<literal>Description</literal>."
- #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-ftparchive.1.xml:539
++"<literal><replaceable>Index</replaceable></literal> can be "
++"<literal>Packages</literal>, <literal>Sources</literal> or <literal>Release</"
++"literal> and <literal><replaceable>Checksum</replaceable></literal> can be "
++"<literal>MD5</literal>, <literal>SHA1</literal> or <literal>SHA256</literal>."
+ msgstr ""
+ "erzeugt die vorgegebene Prüfsumme. Diese Optionen sind standardmäßig "
+ "aktiviert. Wenn sie deaktiviert sind, werden die erzeugten Indexdateien nach "
+ "Möglichkeit keine Prüfsummenfelder erhalten. Konfigurationselemente: "
+ "<literal>APT::FTPArchive::<replaceable>Prüfsumme</replaceable></literal> und "
+ "<literal>APT::FTPArchive::<replaceable>Index</replaceable>::"
+ "<replaceable>Prüfsumme</replaceable></literal>, wobei "
+ "<literal><replaceable>Index</replaceable></literal> <literal>Packages</"
+ "literal>, <literal>Sources</literal> oder <literal>Release</literal> sein "
+ "kann und <literal><replaceable>Prüfsumme</replaceable></literal> "
+ "<literal>MD5</literal>, <literal>SHA1</literal> oder <literal>SHA256</"
+ "literal> sein kann."
+ #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
 -#: apt-ftparchive.1.xml:539
++#: apt-ftparchive.1.xml:540
  msgid "<option>--db</option>"
  msgstr "<option>--db</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-ftparchive.1.xml:541
++#: apt-ftparchive.1.xml:542
  msgid ""
  "Use a binary caching DB. This has no effect on the generate command.  "
  "Configuration Item: <literal>APT::FTPArchive::DB</literal>."
@@@ -3196,7 -3192,7 +3193,7 @@@ msgstr "
  "DB</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-ftparchive.1.xml:547
++#: apt-ftparchive.1.xml:548
  msgid ""
  "Quiet; produces output suitable for logging, omitting progress indicators.  "
  "More q's will produce more quiet up to a maximum of 2. You can also use "
@@@ -3210,12 -3206,12 +3207,12 @@@ msgstr "
  "Konfigurationselement: <literal>quiet</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-ftparchive.1.xml:553
++#: apt-ftparchive.1.xml:554
  msgid "<option>--delink</option>"
  msgstr "<option>--delink</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-ftparchive.1.xml:555
++#: apt-ftparchive.1.xml:556
  msgid ""
  "Perform Delinking. If the <literal>External-Links</literal> setting is used "
  "then this option actually enables delinking of the files. It defaults to on "
@@@ -3229,12 -3225,12 +3226,12 @@@ msgstr "
  "DeLinkAct</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-ftparchive.1.xml:561
++#: apt-ftparchive.1.xml:562
  msgid "<option>--contents</option>"
  msgstr "<option>--contents</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-ftparchive.1.xml:563
++#: apt-ftparchive.1.xml:564
  msgid ""
  "Perform contents generation. When this option is set and package indexes are "
  "being generated with a cache DB then the file listing will also be extracted "
@@@ -3250,12 -3246,12 +3247,12 @@@ msgstr "
  "Konfigurationselement: <literal>APT::FTPArchive::Contents</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-ftparchive.1.xml:571
++#: apt-ftparchive.1.xml:572
  msgid "<option>--source-override</option>"
  msgstr "<option>--source-override</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-ftparchive.1.xml:573
++#: apt-ftparchive.1.xml:574
  msgid ""
  "Select the source override file to use with the <literal>sources</literal> "
  "command.  Configuration Item: <literal>APT::FTPArchive::SourceOverride</"
@@@ -3266,12 -3262,12 +3263,12 @@@ msgstr "
  "SourceOverride</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-ftparchive.1.xml:577
++#: apt-ftparchive.1.xml:578
  msgid "<option>--readonly</option>"
  msgstr "<option>--readonly</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-ftparchive.1.xml:579
++#: apt-ftparchive.1.xml:580
  msgid ""
  "Make the caching databases read only.  Configuration Item: <literal>APT::"
  "FTPArchive::ReadOnlyDB</literal>."
@@@ -3280,12 -3276,12 +3277,12 @@@ msgstr "
  "<literal>APT::FTPArchive::ReadOnlyDB</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-ftparchive.1.xml:583
++#: apt-ftparchive.1.xml:584
  msgid "<option>--arch</option>"
  msgstr "<option>--arch</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-ftparchive.1.xml:584
++#: apt-ftparchive.1.xml:585
  msgid ""
  "Accept in the <literal>packages</literal> and <literal>contents</literal> "
  "commands only package files matching <literal>*_arch.deb</literal> or "
@@@ -3299,12 -3295,12 +3296,12 @@@ msgstr "
  "Architecture</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-ftparchive.1.xml:590
++#: apt-ftparchive.1.xml:591
  msgid "<option>APT::FTPArchive::AlwaysStat</option>"
  msgstr "<option>APT::FTPArchive::AlwaysStat</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-ftparchive.1.xml:592
++#: apt-ftparchive.1.xml:593
  msgid ""
  "&apt-ftparchive; caches as much as possible of metadata in a cachedb. If "
  "packages are recompiled and/or republished with the same version again, this "
@@@ -3328,12 -3324,12 +3325,12 @@@ msgstr "
  "haben sollte und all diese zusätzlichen Prüfungen daher nutzlos sind."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-ftparchive.1.xml:602
++#: apt-ftparchive.1.xml:603
  msgid "<option>APT::FTPArchive::LongDescription</option>"
  msgstr "<option>APT::FTPArchive::LongDescription</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-ftparchive.1.xml:604
++#: apt-ftparchive.1.xml:605
  msgid ""
  "This configuration option defaults to \"<literal>true</literal>\" and should "
  "only be set to <literal>\"false\"</literal> if the Archive generated with "
@@@ -3349,19 -3345,19 +3346,19 @@@ msgstr "
  "werden kann."
  
  #. type: Content of: <refentry><refsect1><title>
- #: apt-ftparchive.1.xml:616 apt.conf.5.xml:1087 apt_preferences.5.xml:501
 -#: apt-ftparchive.1.xml:616 apt.conf.5.xml:1087 apt_preferences.5.xml:544
--#: sources.list.5.xml:198
++#: apt-ftparchive.1.xml:617 apt.conf.5.xml:1104 apt_preferences.5.xml:544
++#: sources.list.5.xml:214
  msgid "Examples"
  msgstr "Beispiele"
  
  #. type: Content of: <refentry><refsect1><para><programlisting>
--#: apt-ftparchive.1.xml:622
++#: apt-ftparchive.1.xml:623
  #, no-wrap
  msgid "<command>apt-ftparchive</command> packages <replaceable>directory</replaceable> | <command>gzip</command> > <filename>Packages.gz</filename>\n"
  msgstr "<command>apt-ftparchive</command> Pakete <replaceable>Verzeichnis</replaceable> | <command>gzip</command> > <filename>Pakete.gz</filename>\n"
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt-ftparchive.1.xml:618
++#: apt-ftparchive.1.xml:619
  msgid ""
  "To create a compressed Packages file for a directory containing binary "
  "packages (.deb): <placeholder type=\"programlisting\" id=\"0\"/>"
@@@ -3371,7 -3367,7 +3368,7 @@@ msgstr "
  ">"
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt-ftparchive.1.xml:632
++#: apt-ftparchive.1.xml:633
  msgid ""
  "<command>apt-ftparchive</command> returns zero on normal operation, decimal "
  "100 on error."
@@@ -3401,15 -3397,44 +3398,45 @@@ msgstr "APT-Werkzeug für den Umgang mi
  
  #. type: Content of: <refentry><refsynopsisdiv><cmdsynopsis>
  #: apt-get.8.xml:39
+ #, fuzzy
+ #| msgid ""
+ #| "<command>apt-get</command> <arg><option>-sqdyfmubV</option></arg> <arg> "
+ #| "<option>-o= <replaceable>config_string</replaceable> </option> </arg> "
+ #| "<arg> <option>-c= <replaceable>config_file</replaceable> </option> </arg> "
+ #| "<arg> <option>-t=</option> <arg choice='plain'> "
+ #| "<replaceable>target_release</replaceable> </arg> </arg> <group choice="
+ #| "\"req\"> <arg choice='plain'>update</arg> <arg choice='plain'>upgrade</"
+ #| "arg> <arg choice='plain'>dselect-upgrade</arg> <arg choice='plain'>dist-"
+ #| "upgrade</arg> <arg choice='plain'>install <arg choice=\"plain\" rep="
+ #| "\"repeat\"><replaceable>pkg</replaceable> <arg> <group choice='req'> <arg "
+ #| "choice='plain'> =<replaceable>pkg_version_number</replaceable> </arg> "
+ #| "<arg choice='plain'> /<replaceable>target_release</replaceable> </arg> </"
+ #| "group> </arg> </arg> </arg> <arg choice='plain'>remove <arg choice=\"plain"
+ #| "\" rep=\"repeat\"><replaceable>pkg</replaceable></arg></arg> <arg "
+ #| "choice='plain'>purge <arg choice=\"plain\" rep=\"repeat"
+ #| "\"><replaceable>pkg</replaceable></arg></arg> <arg choice='plain'>source "
+ #| "<arg choice=\"plain\" rep=\"repeat\"><replaceable>pkg</replaceable> <arg> "
+ #| "<group choice='req'> <arg choice='plain'> "
+ #| "=<replaceable>pkg_version_number</replaceable> </arg> <arg "
+ #| "choice='plain'> /<replaceable>target_release</replaceable> </arg> </"
+ #| "group> </arg> </arg> </arg> <arg choice='plain'>build-dep <arg choice="
+ #| "\"plain\" rep=\"repeat\"><replaceable>pkg</replaceable></arg></arg> <arg "
+ #| "choice='plain'>check</arg> <arg choice='plain'>clean</arg> <arg "
+ #| "choice='plain'>autoclean</arg> <arg choice='plain'>autoremove</arg> <arg "
+ #| "choice='plain'> <group choice='req'> <arg choice='plain'>-v</arg> <arg "
+ #| "choice='plain'>--version</arg> </group> </arg> <arg choice='plain'> "
+ #| "<group choice='req'> <arg choice='plain'>-h</arg> <arg choice='plain'>--"
+ #| "help</arg> </group> </arg> </group>"
  msgid ""
  "<command>apt-get</command> <arg><option>-sqdyfmubV</option></arg> <arg> "
  "<option>-o= <replaceable>config_string</replaceable> </option> </arg> <arg> "
  "<option>-c= <replaceable>config_file</replaceable> </option> </arg> <arg> "
  "<option>-t=</option> <arg choice='plain'> <replaceable>target_release</"
--"replaceable> </arg> </arg> <group choice=\"req\"> <arg "
--"choice='plain'>update</arg> <arg choice='plain'>upgrade</arg> <arg "
--"choice='plain'>dselect-upgrade</arg> <arg choice='plain'>dist-upgrade</arg> "
--"<arg choice='plain'>install <arg choice=\"plain\" rep=\"repeat"
++"replaceable> </arg> </arg> <arg> <option>-a=</option> <arg choice='plain'> "
++"<replaceable>default_architecture</replaceable> </arg> </arg> <group choice="
++"\"req\"> <arg choice='plain'>update</arg> <arg choice='plain'>upgrade</arg> "
++"<arg choice='plain'>dselect-upgrade</arg> <arg choice='plain'>dist-upgrade</"
++"arg> <arg choice='plain'>install <arg choice=\"plain\" rep=\"repeat"
  "\"><replaceable>pkg</replaceable> <arg> <group choice='req'> <arg "
  "choice='plain'> =<replaceable>pkg_version_number</replaceable> </arg> <arg "
  "choice='plain'> /<replaceable>target_release</replaceable> </arg> </group> </"
@@@ -3458,7 -3483,7 +3485,7 @@@ msgstr "
  "group>"
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt-get.8.xml:115
++#: apt-get.8.xml:122
  msgid ""
  "<command>apt-get</command> is the command-line tool for handling packages, "
  "and may be considered the user's \"back-end\" to other tools using the APT "
@@@ -3471,12 -3496,12 +3498,12 @@@ msgstr "
  "Oberflächenschnittstellen, wie &dselect;, &aptitude;, &synaptic; und &wajig;."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:124 apt-key.8.xml:127
++#: apt-get.8.xml:131 apt-key.8.xml:127
  msgid "update"
  msgstr "update"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:125
++#: apt-get.8.xml:132
  msgid ""
  "<literal>update</literal> is used to resynchronize the package index files "
  "from their sources. The indexes of available packages are fetched from the "
@@@ -3500,12 -3525,12 +3527,12 @@@ msgstr "
  "Größe der Pakete nicht im voraus bekannt ist."
  
  #. type: <tag></tag>
--#: apt-get.8.xml:136 guide.sgml:121
++#: apt-get.8.xml:143 guide.sgml:121
  msgid "upgrade"
  msgstr "upgrade"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:137
++#: apt-get.8.xml:144
  msgid ""
  "<literal>upgrade</literal> is used to install the newest versions of all "
  "packages currently installed on the system from the sources enumerated in "
@@@ -3531,12 -3556,12 +3558,12 @@@ msgstr "
  "get</command> die neuen Versionen der verfügbaren Pakete kennt."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:149
++#: apt-get.8.xml:156
  msgid "dselect-upgrade"
  msgstr "dselect-upgrade"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:150
++#: apt-get.8.xml:157
  msgid ""
  "<literal>dselect-upgrade</literal> is used in conjunction with the "
  "traditional Debian packaging front-end, &dselect;. <literal>dselect-upgrade</"
@@@ -3553,12 -3578,12 +3580,12 @@@ msgstr "
  "Installieren von neuen Paketen)."
  
  #. type: <tag></tag>
--#: apt-get.8.xml:159 guide.sgml:140
++#: apt-get.8.xml:166 guide.sgml:140
  msgid "dist-upgrade"
  msgstr "dist-upgrade"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:160
++#: apt-get.8.xml:167
  msgid ""
  "<literal>dist-upgrade</literal> in addition to performing the function of "
  "<literal>upgrade</literal>, also intelligently handles changing dependencies "
@@@ -3582,12 -3607,12 +3609,12 @@@ msgstr "
  "überschreiben der allgemeinen Einstellungen für einzelne Pakete."
  
  #. type: <tag></tag>
--#: apt-get.8.xml:172 guide.sgml:131
++#: apt-get.8.xml:179 guide.sgml:131
  msgid "install"
  msgstr "install"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:174
++#: apt-get.8.xml:181
  msgid ""
  "<literal>install</literal> is followed by one or more packages desired for "
  "installation or upgrading.  Each package is a package name, not a fully "
@@@ -3616,7 -3641,7 +3643,7 @@@ msgstr "
  "vom Konfliktauflösungssystem von apt-get getroffen wurden."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:192
++#: apt-get.8.xml:199
  msgid ""
  "A specific version of a package can be selected for installation by "
  "following the package name with an equals and the version of the package to "
@@@ -3634,7 -3659,7 +3661,7 @@@ msgstr "
  "ausgewählt werden."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:199
++#: apt-get.8.xml:206
  msgid ""
  "Both of the version selection mechanisms can downgrade packages and must be "
  "used with care."
@@@ -3643,7 -3668,7 +3670,7 @@@ msgstr "
  "durchführen und müssen mit Vorsicht gehandhabt werden."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:202
++#: apt-get.8.xml:209
  msgid ""
  "This is also the target to use if you want to upgrade one or more already-"
  "installed packages without upgrading every package you have on your system. "
@@@ -3664,7 -3689,7 +3691,7 @@@ msgstr "
  "heruntergeladen und installiert."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:213
++#: apt-get.8.xml:220
  msgid ""
  "Finally, the &apt-preferences; mechanism allows you to create an alternative "
  "installation policy for individual packages."
@@@ -3673,7 -3698,7 +3700,7 @@@ msgstr "
  "alternative Installationsrichtlinie für eigene Pakete zu erzeugen."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:217
++#: apt-get.8.xml:224
  msgid ""
  "If no package matches the given expression and the expression contains one "
  "of '.', '?' or '*' then it is assumed to be a POSIX regular expression, and "
@@@ -3693,12 -3718,12 +3720,12 @@@ msgstr "
  "Zeichen, um genauere reguläre Ausdruck zu erstellen."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:226
++#: apt-get.8.xml:233
  msgid "remove"
  msgstr "remove"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:227
++#: apt-get.8.xml:234
  msgid ""
  "<literal>remove</literal> is identical to <literal>install</literal> except "
  "that packages are removed instead of installed. Note the removing a package "
@@@ -3713,12 -3738,12 +3740,12 @@@ msgstr "
  "Leerzeichen dazwischen) wird das erkannte Paket installiert anstatt entfernt."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:234
++#: apt-get.8.xml:241
  msgid "purge"
  msgstr "purge"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:235
++#: apt-get.8.xml:242
  msgid ""
  "<literal>purge</literal> is identical to <literal>remove</literal> except "
  "that packages are removed and purged (any configuration files are deleted "
@@@ -3729,12 -3754,12 +3756,12 @@@ msgstr "
  "Konfigurationsdateien werden mitgelöscht)."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:239
++#: apt-get.8.xml:246
  msgid "source"
  msgstr "source"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:240
++#: apt-get.8.xml:247
  msgid ""
  "<literal>source</literal> causes <command>apt-get</command> to fetch source "
  "packages. APT will examine the available packages to decide which source "
@@@ -3754,7 -3779,7 +3781,7 @@@ msgstr "
  "wurde, wenn möglich."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:248
++#: apt-get.8.xml:255
  msgid ""
  "Source packages are tracked separately from binary packages via <literal>deb-"
  "src</literal> type lines in the &sources-list; file. This means that you "
@@@ -3770,12 -3795,18 +3797,19 @@@ msgstr "
  "installiert haben oder installieren könnten."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:255
++#: apt-get.8.xml:262
+ #, fuzzy
+ #| msgid ""
+ #| "If the <option>--compile</option> option is specified then the package "
+ #| "will be compiled to a binary .deb using <command>dpkg-buildpackage</"
+ #| "command>, if <option>--download-only</option> is specified then the "
+ #| "source package will not be unpacked."
  msgid ""
  "If the <option>--compile</option> option is specified then the package will "
--"be compiled to a binary .deb using <command>dpkg-buildpackage</command>, if "
--"<option>--download-only</option> is specified then the source package will "
--"not be unpacked."
++"be compiled to a binary .deb using <command>dpkg-buildpackage</command> for "
++"the architecture as defined by the <command>--host-architecture</command> "
++"option.  If <option>--download-only</option> is specified then the source "
++"package will not be unpacked."
  msgstr ""
  "Wenn die <option>--compile</option>-Option angegeben ist, dann wird das "
  "Paket unter Benutzung von <command>dpkg-buildpackage</command> zu einem "
  "ist, wird das Quellpaket nicht entpackt."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:260
++#: apt-get.8.xml:269
  msgid ""
  "A specific source version can be retrieved by postfixing the source name "
  "with an equals and then the version to fetch, similar to the mechanism used "
@@@ -3799,7 -3830,7 +3833,7 @@@ msgstr "
  "literal>-Option."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:266
++#: apt-get.8.xml:275
  msgid ""
  "Note that source packages are not tracked like binary packages, they exist "
  "only in the current directory and are similar to downloading source tar "
@@@ -3810,27 -3841,31 +3844,34 @@@ msgstr "
  "heruntergeladenen Tarballs ähnlich."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:271
++#: apt-get.8.xml:280
  msgid "build-dep"
  msgstr "build-dep"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:272
++#: apt-get.8.xml:281
+ #, fuzzy
+ #| msgid ""
+ #| "<literal>build-dep</literal> causes apt-get to install/remove packages in "
+ #| "an attempt to satisfy the build dependencies for a source package."
  msgid ""
  "<literal>build-dep</literal> causes apt-get to install/remove packages in an "
--"attempt to satisfy the build dependencies for a source package."
++"attempt to satisfy the build dependencies for a source package. By default "
++"the dependencies are satisfied to build the package nativly. If desired a "
++"host-architecture can be specified with the <option>--host-architecture</"
++"option> option instead."
  msgstr ""
  "<literal>build-dep</literal> veranlasst apt-get, Pakete zu installieren/"
  "entfernen, um zu versuchen, die Bauabhängigkeiten eines Quellpakets zu "
  "erfüllen."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:276
++#: apt-get.8.xml:287
  msgid "check"
  msgstr "check"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:277
++#: apt-get.8.xml:288
  msgid ""
  "<literal>check</literal> is a diagnostic tool; it updates the package cache "
  "and checks for broken dependencies."
@@@ -3839,19 -3874,25 +3880,25 @@@ msgstr "
  "Paketzwischenspeicher und prüft, ob beschädigte Abhängigkeiten vorliegen."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:281
++#: apt-get.8.xml:292
  msgid "download"
- msgstr ""
+ msgstr "download"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:282
++#: apt-get.8.xml:293
+ #, fuzzy
+ #| msgid ""
+ #| "<literal>download</literal> will download the given binary package into "
+ #| "the current directory."
  msgid ""
  "<literal>download</literal> will download the given binary package into the "
--"current directoy."
++"current directory."
  msgstr ""
+ "<literal>download</literal> wird das angegebene Binärpaket in das aktuelle "
+ "Verzeichnis herunterladen."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:288
++#: apt-get.8.xml:299
  msgid ""
  "<literal>clean</literal> clears out the local repository of retrieved "
  "package files. It removes everything but the lock file from "
@@@ -3870,12 -3911,12 +3917,12 @@@ msgstr "
  "Zeit zu Zeit ausführen, um Plattenplatz freizugeben."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:297
++#: apt-get.8.xml:308
  msgid "autoclean"
  msgstr "autoclean"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:298
++#: apt-get.8.xml:309
  msgid ""
  "Like <literal>clean</literal>, <literal>autoclean</literal> clears out the "
  "local repository of retrieved package files. The difference is that it only "
@@@ -3895,28 -3936,33 +3942,33 @@@ msgstr "
  "sie auf »off« gesetzt ist."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:307
++#: apt-get.8.xml:318
  msgid "autoremove"
  msgstr "autoremove"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:308
++#: apt-get.8.xml:319
+ #, fuzzy
+ #| msgid ""
+ #| "<literal>autoremove</literal> is used to remove packages that were "
+ #| "automatically installed to satisfy dependencies for some package and that "
+ #| "are no more needed."
  msgid ""
  "<literal>autoremove</literal> is used to remove packages that were "
--"automatically installed to satisfy dependencies for some package and that "
--"are no more needed."
++"automatically installed to satisfy dependencies for other packages and are "
++"now no longer needed."
  msgstr ""
  "<literal>autoremove</literal> wird benutzt, um Pakete, die automatisch "
  "installiert wurden, um Abhängigkeiten für einige Pakete zu erfüllen und die "
  "nicht mehr benötigt werden, zu entfernen."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:312
++#: apt-get.8.xml:323
  msgid "changelog"
- msgstr ""
+ msgstr "changelog"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:313
++#: apt-get.8.xml:324
  msgid ""
  "<literal>changelog</literal> downloads a package changelog and displays it "
  "through <command>sensible-pager</command>. The server name and base "
  "installed.  However, you can specify the same options as for the "
  "<option>install</option> command."
  msgstr ""
+ "<literal>changelog</literal> lädt ein Changelog eines Pakets herunter und "
+ "zeigt es mit <command>sensible-pager</command> an. Der Servername und das "
+ "Basisverzeichnis sind in der Variable <literal>APT::Changelogs::Server</"
+ "literal> definiert (z.B. <ulink>http://packages.debian.org/changelogs</"
+ "ulink> für Debian oder <ulink>http://changelogs.ubuntu.com/changelogs</"
+ "ulink> für Ubuntu). Standardmäßig zeigt es das Changelog für die "
+ "installierte Version. Sie können jedoch die gleichen Optionen wie für den "
+ "Befehl <option>install</option> angeben."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:335
++#: apt-get.8.xml:346
  msgid "<option>--no-install-recommends</option>"
  msgstr "<option>--no-install-recommends</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:336
++#: apt-get.8.xml:347
  msgid ""
  "Do not consider recommended packages as a dependency for installing.  "
  "Configuration Item: <literal>APT::Install-Recommends</literal>."
@@@ -3943,32 -3997,26 +4003,26 @@@ msgstr "
  "Konfigurationselement: <literal>APT::Install-Recommends</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:340
- #, fuzzy
- #| msgid "<option>--no-suggests</option>"
++#: apt-get.8.xml:351
  msgid "<option>--install-suggests</option>"
- msgstr "<option>--no-suggests</option>"
+ msgstr "<option>--install-suggests</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:341
- #, fuzzy
- #| msgid ""
- #| "Do not consider recommended packages as a dependency for installing.  "
- #| "Configuration Item: <literal>APT::Install-Recommends</literal>."
++#: apt-get.8.xml:352
  msgid ""
  "Consider suggested packages as a dependency for installing.  Configuration "
  "Item: <literal>APT::Install-Suggests</literal>."
  msgstr ""
- "Empfohlene Pakete nicht als Abhängigkeit für die Installation betrachten. "
- "Konfigurationselement: <literal>APT::Install-Recommends</literal>."
+ "Empfohlene Pakete als Abhängigkeit für die Installation betrachten. "
+ "Konfigurationselement: <literal>APT::Install-Suggests</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:345
++#: apt-get.8.xml:356
  msgid "<option>--download-only</option>"
  msgstr "<option>--download-only</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:346
++#: apt-get.8.xml:357
  msgid ""
  "Download only; package files are only retrieved, not unpacked or installed.  "
  "Configuration Item: <literal>APT::Get::Download-Only</literal>."
@@@ -3978,12 -4026,12 +4032,12 @@@ msgstr "
  "literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:350
++#: apt-get.8.xml:361
  msgid "<option>--fix-broken</option>"
  msgstr "<option>--fix-broken</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:351
++#: apt-get.8.xml:362
  msgid ""
  "Fix; attempt to correct a system with broken dependencies in place. This "
  "option, when used with install/remove, can omit any packages to permit APT "
@@@ -4012,17 -4060,17 +4066,17 @@@ msgstr "
  "Konfigurationselement: <literal>APT::Get::Fix-Broken</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:364
++#: apt-get.8.xml:375
  msgid "<option>--ignore-missing</option>"
  msgstr "<option>--ignore-missing</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:365
++#: apt-get.8.xml:376
  msgid "<option>--fix-missing</option>"
  msgstr "<option>--fix-missing</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:366
++#: apt-get.8.xml:377
  msgid ""
  "Ignore missing packages; If packages cannot be retrieved or fail the "
  "integrity check after retrieval (corrupted package files), hold back those "
@@@ -4043,12 -4091,12 +4097,12 @@@ msgstr "
  "literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:376
++#: apt-get.8.xml:387
  msgid "<option>--no-download</option>"
  msgstr "<option>--no-download</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:377
++#: apt-get.8.xml:388
  msgid ""
  "Disables downloading of packages. This is best used with <option>--ignore-"
  "missing</option> to force APT to use only the .debs it has already "
@@@ -4060,7 -4108,7 +4114,7 @@@ msgstr "
  "<literal>APT::Get::Download</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:384
++#: apt-get.8.xml:395
  msgid ""
  "Quiet; produces output suitable for logging, omitting progress indicators.  "
  "More q's will produce more quiet up to a maximum of 2. You can also use "
@@@ -4080,17 -4128,17 +4134,17 @@@ msgstr "
  "Konfigurationselement: <literal>quiet</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:394
++#: apt-get.8.xml:405
  msgid "<option>--simulate</option>"
  msgstr "<option>--simulate</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:396
++#: apt-get.8.xml:407
  msgid "<option>--dry-run</option>"
  msgstr "<option>--dry-run</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:399
++#: apt-get.8.xml:410
  msgid ""
  "No action; perform a simulation of events that would occur but do not "
  "actually change the system.  Configuration Item: <literal>APT::Get::"
@@@ -4101,7 -4149,7 +4155,7 @@@ msgstr "
  "<literal>APT::Get::Simulate</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:403
++#: apt-get.8.xml:414
  msgid ""
  "Simulation run as user will deactivate locking (<literal>Debug::NoLocking</"
  "literal>)  automatic. Also a notice will be displayed indicating that this "
@@@ -4119,7 -4167,7 +4173,7 @@@ msgstr "
  "Warnungen von <literal>apt-get</literal> wissen, was er tut)."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:409
++#: apt-get.8.xml:420
  msgid ""
  "Simulate prints out a series of lines each one representing a dpkg "
  "operation, Configure (Conf), Remove (Remv), Unpack (Inst). Square brackets "
@@@ -4132,22 -4180,22 +4186,22 @@@ msgstr "
  "eckiger Klammern bedeutet Unterbrechungen, die keine Folgen haben (selten)."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:416
++#: apt-get.8.xml:427
  msgid "<option>-y</option>"
  msgstr "<option>-y</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:416
++#: apt-get.8.xml:427
  msgid "<option>--yes</option>"
  msgstr "<option>--yes</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:417
++#: apt-get.8.xml:428
  msgid "<option>--assume-yes</option>"
  msgstr "<option>--assume-yes</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:418
++#: apt-get.8.xml:429
  msgid ""
  "Automatic yes to prompts; assume \"yes\" as answer to all prompts and run "
  "non-interactively. If an undesirable situation, such as changing a held "
@@@ -4163,17 -4211,17 +4217,37 @@@ msgstr "
  "Get::Assume-Yes</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:425
++#: apt-get.8.xml:436
++#, fuzzy
++#| msgid "<option>--assume-yes</option>"
++msgid "<option>--assume-no</option>"
++msgstr "<option>--assume-yes</option>"
++
++#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
++#: apt-get.8.xml:437
++#, fuzzy
++#| msgid ""
++#| "Compile source packages after downloading them.  Configuration Item: "
++#| "<literal>APT::Get::Compile</literal>."
++msgid ""
++"Automatic \"no\" to all prompts.  Configuration Item: <literal>APT::Get::"
++"Assume-No</literal>."
++msgstr ""
++"Kompiliert Quellpakete, nachdem sie heruntergeladen wurden. "
++"Konfigurationselement: <literal>APT::Get::Compile</literal>."
++
++#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
++#: apt-get.8.xml:441
  msgid "<option>-u</option>"
  msgstr "<option>-u</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:425
++#: apt-get.8.xml:441
  msgid "<option>--show-upgraded</option>"
  msgstr "<option>--show-upgraded</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:426
++#: apt-get.8.xml:442
  msgid ""
  "Show upgraded packages; Print out a list of all packages that are to be "
  "upgraded.  Configuration Item: <literal>APT::Get::Show-Upgraded</literal>."
@@@ -4183,17 -4231,17 +4257,17 @@@ msgstr "
  "Konfigurationselement: <literal>APT::Get::Show-Upgraded</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:431
++#: apt-get.8.xml:447
  msgid "<option>-V</option>"
  msgstr "<option>-V</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:431
++#: apt-get.8.xml:447
  msgid "<option>--verbose-versions</option>"
  msgstr "<option>--verbose-versions</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:432
++#: apt-get.8.xml:448
  msgid ""
  "Show full versions for upgraded and installed packages.  Configuration Item: "
  "<literal>APT::Get::Show-Versions</literal>."
@@@ -4203,22 -4251,22 +4277,40 @@@ msgstr "
  "Versions</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:436
++#: apt-get.8.xml:453
++#, fuzzy
++#| msgid "<option>--recurse</option>"
++msgid "<option>--host-architecture</option>"
++msgstr "<option>--recurse</option>"
++
++#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
++#: apt-get.8.xml:454
++msgid ""
++"This option controls the architecture packages are built for by <command>apt-"
++"get source --compile</command> and how cross-builddependencies are "
++"satisfied. By default is not set which means that the host architecture is "
++"the same as the build architecture (which is defined by <literal>APT::"
++"Architecture</literal>)  Configuration Item: <literal>APT::Get::Host-"
++"Architecture</literal>"
++msgstr ""
++
++#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
++#: apt-get.8.xml:462
  msgid "<option>-b</option>"
  msgstr "<option>-b</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:436
++#: apt-get.8.xml:462
  msgid "<option>--compile</option>"
  msgstr "<option>--compile</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:437
++#: apt-get.8.xml:463
  msgid "<option>--build</option>"
  msgstr "<option>--build</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:438
++#: apt-get.8.xml:464
  msgid ""
  "Compile source packages after downloading them.  Configuration Item: "
  "<literal>APT::Get::Compile</literal>."
@@@ -4227,12 -4275,12 +4319,12 @@@ msgstr "
  "Konfigurationselement: <literal>APT::Get::Compile</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:442
++#: apt-get.8.xml:468
  msgid "<option>--ignore-hold</option>"
  msgstr "<option>--ignore-hold</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:443
++#: apt-get.8.xml:469
  msgid ""
  "Ignore package Holds; This causes <command>apt-get</command> to ignore a "
  "hold placed on a package. This may be useful in conjunction with "
@@@ -4246,12 -4294,12 +4338,12 @@@ msgstr "
  "<literal>APT::Ignore-Hold</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:449
++#: apt-get.8.xml:475
  msgid "<option>--no-upgrade</option>"
  msgstr "<option>--no-upgrade</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:450
++#: apt-get.8.xml:476
  msgid ""
  "Do not upgrade packages; When used in conjunction with <literal>install</"
  "literal>, <literal>no-upgrade</literal> will prevent packages on the command "
@@@ -4265,12 -4313,12 +4357,12 @@@ msgstr "
  "literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:456
++#: apt-get.8.xml:482
  msgid "<option>--only-upgrade</option>"
  msgstr "<option>--only-upgrade</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:457
++#: apt-get.8.xml:483
  msgid ""
  "Do not install new packages; When used in conjunction with <literal>install</"
  "literal>, <literal>only-upgrade</literal> will prevent packages on the "
@@@ -4284,12 -4332,12 +4376,12 @@@ msgstr "
  "literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:463
++#: apt-get.8.xml:489
  msgid "<option>--force-yes</option>"
  msgstr "<option>--force-yes</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:464
++#: apt-get.8.xml:490
  msgid ""
  "Force yes; This is a dangerous option that will cause apt to continue "
  "without prompting if it is doing something potentially harmful. It should "
@@@ -4304,12 -4352,12 +4396,12 @@@ msgstr "
  "zerstören! Konfigurationselement: <literal>APT::Get::force-yes</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:471
++#: apt-get.8.xml:497
  msgid "<option>--print-uris</option>"
  msgstr "<option>--print-uris</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:472
++#: apt-get.8.xml:498
  msgid ""
  "Instead of fetching the files to install their URIs are printed. Each URI "
  "will have the path, the destination file name, the size and the expected md5 "
@@@ -4331,12 -4379,12 +4423,12 @@@ msgstr "
  "Get::Print-URIs</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:482
++#: apt-get.8.xml:508
  msgid "<option>--purge</option>"
  msgstr "<option>--purge</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:483
++#: apt-get.8.xml:509
  msgid ""
  "Use purge instead of remove for anything that would be removed.  An asterisk "
  "(\"*\") will be displayed next to packages which are scheduled to be purged. "
@@@ -4349,12 -4397,12 +4441,12 @@@ msgstr "
  "option>. Konfigurationselement: <literal>APT::Get::Purge</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:490
++#: apt-get.8.xml:516
  msgid "<option>--reinstall</option>"
  msgstr "<option>--reinstall</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:491
++#: apt-get.8.xml:517
  msgid ""
  "Re-Install packages that are already installed and at the newest version.  "
  "Configuration Item: <literal>APT::Get::ReInstall</literal>."
@@@ -4363,12 -4411,12 +4455,12 @@@ msgstr "
  "Version sind. Konfigurationselement: <literal>APT::Get::ReInstall</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:495
++#: apt-get.8.xml:521
  msgid "<option>--list-cleanup</option>"
  msgstr "<option>--list-cleanup</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:496
++#: apt-get.8.xml:522
  msgid ""
  "This option defaults to on, use <literal>--no-list-cleanup</literal> to turn "
  "it off. When on <command>apt-get</command> will automatically manage the "
@@@ -4386,17 -4434,17 +4478,17 @@@ msgstr "
  "Get::List-Cleanup</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:505
++#: apt-get.8.xml:531
  msgid "<option>--target-release</option>"
  msgstr "<option>--target-release</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:506
++#: apt-get.8.xml:532
  msgid "<option>--default-release</option>"
  msgstr "<option>--default-release</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:507
++#: apt-get.8.xml:533
  msgid ""
  "This option controls the default input to the policy engine, it creates a "
  "default pin at priority 990 using the specified release string.  This "
@@@ -4421,12 -4469,12 +4513,12 @@@ msgstr "
  "auch die &apt-preferences;-Handbuchseite."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:520
++#: apt-get.8.xml:546
  msgid "<option>--trivial-only</option>"
  msgstr "<option>--trivial-only</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:522
++#: apt-get.8.xml:548
  msgid ""
  "Only perform operations that are 'trivial'. Logically this can be considered "
  "related to <option>--assume-yes</option>, where <option>--assume-yes</"
@@@ -4440,12 -4488,12 +4532,12 @@@ msgstr "
  "Trivial-Only</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:528
++#: apt-get.8.xml:554
  msgid "<option>--no-remove</option>"
  msgstr "<option>--no-remove</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:529
++#: apt-get.8.xml:555
  msgid ""
  "If any packages are to be removed apt-get immediately aborts without "
  "prompting.  Configuration Item: <literal>APT::Get::Remove</literal>."
@@@ -4454,12 -4502,12 +4546,12 @@@ msgstr "
  "Nachfrage ab. Konfigurationselement: <literal>APT::Get::Remove</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:534
++#: apt-get.8.xml:560
  msgid "<option>--auto-remove</option>"
  msgstr "<option>--auto-remove</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:535
++#: apt-get.8.xml:561
  msgid ""
  "If the command is either <literal>install</literal> or <literal>remove</"
  "literal>, then this option acts like running <literal>autoremove</literal> "
@@@ -4473,12 -4521,12 +4565,12 @@@ msgstr "
  "AutomaticRemove</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:541
++#: apt-get.8.xml:567
  msgid "<option>--only-source</option>"
  msgstr "<option>--only-source</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:542
++#: apt-get.8.xml:568
  msgid ""
  "Only has meaning for the <literal>source</literal> and <literal>build-dep</"
  "literal> commands.  Indicates that the given source names are not to be "
@@@ -4497,22 -4545,22 +4589,22 @@@ msgstr "
  "Get::Only-Source</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:552
++#: apt-get.8.xml:578
  msgid "<option>--diff-only</option>"
  msgstr "<option>--diff-only</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:552
++#: apt-get.8.xml:578
  msgid "<option>--dsc-only</option>"
  msgstr "<option>--dsc-only</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:552
++#: apt-get.8.xml:578
  msgid "<option>--tar-only</option>"
  msgstr "<option>--tar-only</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:553
++#: apt-get.8.xml:579
  msgid ""
  "Download only the diff, dsc, or tar file of a source archive.  Configuration "
  "Item: <literal>APT::Get::Diff-Only</literal>, <literal>APT::Get::Dsc-Only</"
@@@ -4524,12 -4572,12 +4616,12 @@@ msgstr "
  "literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:558
++#: apt-get.8.xml:584
  msgid "<option>--arch-only</option>"
  msgstr "<option>--arch-only</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:559
++#: apt-get.8.xml:585
  msgid ""
  "Only process architecture-dependent build-dependencies.  Configuration Item: "
  "<literal>APT::Get::Arch-Only</literal>."
@@@ -4538,12 -4586,12 +4630,12 @@@ msgstr "
  "Konfigurationselement: <literal>APT::Get::Arch-Only</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:563
++#: apt-get.8.xml:589
  msgid "<option>--allow-unauthenticated</option>"
  msgstr "<option>--allow-unauthenticated</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:564
++#: apt-get.8.xml:590
  msgid ""
  "Ignore if packages can't be authenticated and don't prompt about it.  This "
  "is useful for tools like pbuilder.  Configuration Item: <literal>APT::Get::"
@@@ -4554,7 -4602,7 +4646,7 @@@ msgstr "
  "<literal>APT::Get::AllowUnauthenticated</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist>
--#: apt-get.8.xml:577
++#: apt-get.8.xml:603
  msgid ""
  "&file-sourceslist; &file-aptconf; &file-preferences; &file-cachearchives; "
  "&file-statelists;"
@@@ -4563,7 -4611,7 +4655,7 @@@ msgstr "
  "&file-statelists;"
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt-get.8.xml:586
++#: apt-get.8.xml:612
  msgid ""
  "&apt-cache;, &apt-cdrom;, &dpkg;, &dselect;, &sources-list;, &apt-conf;, "
  "&apt-config;, &apt-secure;, The APT User's guide in &guidesdir;, &apt-"
@@@ -4574,7 -4622,7 +4666,7 @@@ msgstr "
  "preferences;, das APT-Howto."
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt-get.8.xml:592
++#: apt-get.8.xml:618
  msgid ""
  "<command>apt-get</command> returns zero on normal operation, decimal 100 on "
  "error."
@@@ -4583,22 -4631,22 +4675,22 @@@ msgstr "
  "100 bei Fehlern."
  
  #. type: Content of: <refentry><refsect1><title>
--#: apt-get.8.xml:595
++#: apt-get.8.xml:621
  msgid "ORIGINAL AUTHORS"
  msgstr "ORIGINALAUTOREN"
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt-get.8.xml:596
++#: apt-get.8.xml:622
  msgid "&apt-author.jgunthorpe;"
  msgstr "&apt-author.jgunthorpe;"
  
  #. type: Content of: <refentry><refsect1><title>
--#: apt-get.8.xml:599
++#: apt-get.8.xml:625
  msgid "CURRENT AUTHORS"
  msgstr "AKTUELLE AUTOREN"
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt-get.8.xml:601
++#: apt-get.8.xml:627
  msgid "&apt-author.team;"
  msgstr "&apt-author.team;"
  
@@@ -4729,15 -4777,31 +4821,33 @@@ msgstr "
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #: apt-key.8.xml:131
  msgid ""
--"Update the local keyring with the keyring of Debian archive keys and removes "
--"from the keyring the archive keys which are no longer valid."
++"Update the local keyring with the archive keyring and remove from the local "
++"keyring the archive keys which are no longer valid.  The archive keyring is "
++"shipped in the <literal>archive-keyring</literal> package of your "
++"distribution, e.g. the <literal>ubuntu-archive-keyring</literal> package in "
++"Ubuntu."
+ msgstr ""
 -"Den lokalen Schlüsselbund mit dem Schlüsselbund der Debian-Archivschlüssel "
 -"aktualisieren und aus dem Schlüsselbund die Archivschlüssel entfernen, die "
 -"nicht länger gültig sind."
+ #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
 -#: apt-key.8.xml:140
++#: apt-key.8.xml:141
+ #, fuzzy
+ #| msgid "update"
+ msgid "net-update"
+ msgstr "update"
+ #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
 -#: apt-key.8.xml:144
++#: apt-key.8.xml:145
+ msgid ""
 -"Update the local keyring with the keys of a key server and removes from the "
 -"keyring the archive keys which are no longer valid. This requires an "
 -"installed wget and an APT build configured to have a server to fetch from. "
 -"APT in Debian does not support this command, but Ubuntu's APT does."
++"Work similar to the <command>update</command> command above, but get the "
++"archive keyring from an URI instead and validate it against a master key.  "
++"This requires an installed &wget; and an APT build configured to have a "
++"server to fetch from and a master keyring to validate.  APT in Debian does "
++"not support this command and relies on <command>update</command> instead, "
++"but Ubuntu's APT does."
  msgstr ""
- "Den lokalen Schlüsselbund mit dem Schlüsselbund der Debian-Archivschlüssel "
- "aktualisieren und aus dem Schlüsselbund die Archivschlüssel entfernen, die "
- "nicht länger gültig sind."
  
  #. type: Content of: <refentry><refsect1><para>
- #: apt-key.8.xml:143
 -#: apt-key.8.xml:159
++#: apt-key.8.xml:162
  msgid ""
  "Note that options need to be defined before the commands described in the "
  "previous section."
@@@ -4746,12 -4810,12 +4856,12 @@@ msgstr "
  "Befehlen definiert sein müssen."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-key.8.xml:145
 -#: apt-key.8.xml:161
++#: apt-key.8.xml:164
  msgid "--keyring <replaceable>filename</replaceable>"
  msgstr "--keyring <replaceable>Dateiname</replaceable>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
- #: apt-key.8.xml:146
 -#: apt-key.8.xml:162
++#: apt-key.8.xml:165
  msgid ""
  "With this option it is possible to specify a specific keyring file the "
  "command should operate on. The default is that a command is executed on the "
@@@ -4768,54 -4832,58 +4878,67 @@@ msgstr "
  "Schlüssel werden zu diesem hinzugefügt."
  
  #. type: Content of: <refentry><refsect1><variablelist>
- #: apt-key.8.xml:159
 -#: apt-key.8.xml:175
++#: apt-key.8.xml:178
  msgid "&file-trustedgpg;"
  msgstr "&file-trustedgpg;"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-key.8.xml:161
 -#: apt-key.8.xml:177
++#: apt-key.8.xml:180
  msgid "<filename>/etc/apt/trustdb.gpg</filename>"
  msgstr "<filename>/etc/apt/trustdb.gpg</filename>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
- #: apt-key.8.xml:162
 -#: apt-key.8.xml:178
++#: apt-key.8.xml:181
  msgid "Local trust database of archive keys."
  msgstr "Lokale Datenbank vertrauenswürdiger Archivschlüssel."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-key.8.xml:165
 -#: apt-key.8.xml:181
--msgid "<filename>/usr/share/keyrings/debian-archive-keyring.gpg</filename>"
++#: apt-key.8.xml:184
++#, fuzzy
++#| msgid "<filename>/usr/share/keyrings/debian-archive-keyring.gpg</filename>"
++msgid "<filename>/usr/share/keyrings/ubuntu-archive-keyring.gpg</filename>"
  msgstr "<filename>/usr/share/keyrings/debian-archive-keyring.gpg</filename>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
- #: apt-key.8.xml:166
 -#: apt-key.8.xml:182
--msgid "Keyring of Debian archive trusted keys."
++#: apt-key.8.xml:185
++#, fuzzy
++#| msgid "Keyring of Debian archive trusted keys."
++msgid "Keyring of Ubuntu archive trusted keys."
  msgstr "Schlüsselbund vertrauenswürdiger Schlüssel des Debian-Archivs."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-key.8.xml:169
 -#: apt-key.8.xml:185
++#: apt-key.8.xml:188
++#, fuzzy
++#| msgid ""
++#| "<filename>/usr/share/keyrings/debian-archive-removed-keys.gpg</filename>"
  msgid ""
--"<filename>/usr/share/keyrings/debian-archive-removed-keys.gpg</filename>"
++"<filename>/usr/share/keyrings/ubuntu-archive-removed-keys.gpg</filename>"
  msgstr ""
  "<filename>/usr/share/keyrings/debian-archive-removed-keys.gpg</filename>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
- #: apt-key.8.xml:170
 -#: apt-key.8.xml:186
--msgid "Keyring of Debian archive removed trusted keys."
++#: apt-key.8.xml:189
++#, fuzzy
++#| msgid "Keyring of Debian archive removed trusted keys."
++msgid "Keyring of Ubuntu archive removed trusted keys."
  msgstr ""
  "Schlüsselbund entfernter vertrauenswürdiger Schlüssel des Debian-Archivs."
  
  #. type: Content of: <refentry><refsect1><para>
- #: apt-key.8.xml:179
 -#: apt-key.8.xml:195
++#: apt-key.8.xml:198
  msgid "&apt-get;, &apt-secure;"
  msgstr "&apt-get;, &apt-secure;"
  
  #.  The last update date 
  #. type: Content of: <refentry><refentryinfo>
  #: apt-mark.8.xml:16
+ #, fuzzy
+ #| msgid ""
+ #| "&apt-author.moconnor; &apt-author.team; &apt-email; &apt-product; <date>9 "
+ #| "August 2009</date>"
  msgid ""
- "&apt-author.moconnor; &apt-author.team; &apt-email; &apt-product; <date>9 "
- "August 2009</date>"
+ "&apt-author.moconnor; &apt-author.team; &apt-email; &apt-product; <date>21 "
+ "April 2011</date>"
  msgstr ""
  "&apt-author.moconnor; &apt-author.team; &apt-email; &apt-product; <date>9. "
  "August 2009</date>"
@@@ -4834,13 -4902,22 +4957,22 @@@ msgstr "
  
  #. type: Content of: <refentry><refsynopsisdiv><cmdsynopsis>
  #: apt-mark.8.xml:39
+ #, fuzzy
+ #| msgid ""
+ #| "  <command>apt-mark</command> <arg><option>-hv</option></arg> "
+ #| "<arg><option>-f=<replaceable>FILENAME</replaceable></option></arg> <group "
+ #| "choice=\"plain\"> <arg choice=\"plain\"> <group choice=\"req\"> <arg "
+ #| "choice=\"plain\">markauto</arg> <arg choice=\"plain\">unmarkauto</arg> </"
+ #| "group> <arg choice=\"plain\" rep=\"repeat\"><replaceable>package</"
+ #| "replaceable></arg> </arg> <arg choice=\"plain\">showauto</arg> </group>"
  msgid ""
  "  <command>apt-mark</command> <arg><option>-hv</option></arg> <arg><option>-"
  "f=<replaceable>FILENAME</replaceable></option></arg> <group choice=\"plain"
  "\"> <arg choice=\"plain\"> <group choice=\"req\"> <arg choice=\"plain"
- "\">markauto</arg> <arg choice=\"plain\">unmarkauto</arg> </group> <arg "
+ "\">auto</arg> <arg choice=\"plain\">manual</arg> <arg choice=\"plain"
+ "\">showauto</arg> <arg choice=\"plain\">showmanual</arg> </group> <arg "
  "choice=\"plain\" rep=\"repeat\"><replaceable>package</replaceable></arg> </"
- "arg> <arg choice=\"plain\">showauto</arg> </group>"
+ "arg> </group>"
  msgstr ""
  "  <command>apt-mark</command> <arg><option>-hv</option></arg> <arg><option>-"
  "f=<replaceable>DATEINAME</replaceable></option></arg> <group choice=\"plain"
  "arg> <arg choice=\"plain\">showauto</arg> </group>"
  
  #. type: Content of: <refentry><refsect1><para>
- #: apt-mark.8.xml:56
+ #: apt-mark.8.xml:57
  msgid ""
  "<command>apt-mark</command> will change whether a package has been marked as "
  "being automatically installed."
@@@ -4859,7 -4936,7 +4991,7 @@@ msgstr "
  "installiert markiert ist."
  
  #. type: Content of: <refentry><refsect1><para>
- #: apt-mark.8.xml:60
+ #: apt-mark.8.xml:61
  msgid ""
  "When you request that a package is installed, and as a result other packages "
  "are installed to satisfy its dependencies, the dependencies are marked as "
@@@ -4875,14 -4952,21 +5007,21 @@@ msgstr "
  "<command>aptitude</command> entfernt."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-mark.8.xml:68
- msgid "markauto"
+ #: apt-mark.8.xml:69
+ #, fuzzy
+ #| msgid "markauto"
+ msgid "auto"
  msgstr "markauto"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
- #: apt-mark.8.xml:69
+ #: apt-mark.8.xml:70
+ #, fuzzy
+ #| msgid ""
+ #| "<literal>markauto</literal> is used to mark a package as being "
+ #| "automatically installed, which will cause the package to be removed when "
+ #| "no more manually installed packages depend on this package."
  msgid ""
- "<literal>markauto</literal> is used to mark a package as being automatically "
+ "<literal>auto</literal> is used to mark a package as being automatically "
  "installed, which will cause the package to be removed when no more manually "
  "installed packages depend on this package."
  msgstr ""
  "keine manuell installierten Pakete von ihm abhängen."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-mark.8.xml:76
- msgid "unmarkauto"
- msgstr "unmarkauto"
+ #: apt-mark.8.xml:77
+ msgid "manual"
+ msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
- #: apt-mark.8.xml:77
+ #: apt-mark.8.xml:78
+ #, fuzzy
+ #| msgid ""
+ #| "<literal>unmarkauto</literal> is used to mark a package as being manually "
+ #| "installed, which will prevent the package from being automatically "
+ #| "removed if no other packages depend on it."
  msgid ""
- "<literal>unmarkauto</literal> is used to mark a package as being manually "
+ "<literal>manual</literal> is used to mark a package as being manually "
  "installed, which will prevent the package from being automatically removed "
  "if no other packages depend on it."
  msgstr ""
  "entfernt wird, wenn kein anderes Paket von ihm abhängt."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-mark.8.xml:84
+ #: apt-mark.8.xml:85
+ msgid "hold"
+ msgstr ""
+ #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
+ #: apt-mark.8.xml:86
+ msgid ""
+ "<literal>hold</literal> is used to mark a package as hold back, which will "
+ "prevent the package from being automatically installed, upgraded or "
+ "removed.  The command is only a wrapper around <command>dpkg --set-"
+ "selections</command> and the state is therefore maintained by &dpkg; and not "
+ "effected by the <option>--filename</option> option."
+ msgstr ""
+ #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
+ #: apt-mark.8.xml:95
+ msgid "unhold"
+ msgstr ""
+ #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
+ #: apt-mark.8.xml:96
+ #, fuzzy
+ #| msgid ""
+ #| "<literal>showauto</literal> is used to print a list of automatically "
+ #| "installed packages with each package on a new line."
+ msgid ""
+ "<literal>unhold</literal> is used to cancel a previously set hold on a "
+ "package to allow all actions again."
+ msgstr ""
+ "<literal>showauto</literal> wird benutzt, um eine Liste automatisch "
+ "installierter Pakete mit einem Paket in jeder neuen Zeile, auszugeben."
+ #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
+ #: apt-mark.8.xml:101
  msgid "showauto"
  msgstr "showauto"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
- #: apt-mark.8.xml:85
+ #: apt-mark.8.xml:102
+ #, fuzzy
+ #| msgid ""
+ #| "<literal>showauto</literal> is used to print a list of automatically "
+ #| "installed packages with each package on a new line."
  msgid ""
  "<literal>showauto</literal> is used to print a list of automatically "
- "installed packages with each package on a new line."
+ "installed packages with each package on a new line.  All automatically "
+ "installed packages will be listed if no package is given.  If packages are "
+ "given only those which are automatically installed will be shown."
  msgstr ""
  "<literal>showauto</literal> wird benutzt, um eine Liste automatisch "
  "installierter Pakete mit einem Paket in jeder neuen Zeile, auszugeben."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-mark.8.xml:96
+ #: apt-mark.8.xml:109
+ #, fuzzy
+ #| msgid "showauto"
+ msgid "showmanual"
+ msgstr "showauto"
+ #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
+ #: apt-mark.8.xml:110
+ msgid ""
+ "<literal>showmanual</literal> can be used in the same way as "
+ "<literal>showauto</literal> except that it will print a list of manually "
+ "installed packages instead."
+ msgstr ""
+ #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
+ #: apt-mark.8.xml:116
+ #, fuzzy
+ #| msgid "showauto"
+ msgid "showhold"
+ msgstr "showauto"
+ #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
+ #: apt-mark.8.xml:117
+ #, fuzzy
+ #| msgid ""
+ #| "<literal>showauto</literal> is used to print a list of automatically "
+ #| "installed packages with each package on a new line."
+ msgid ""
+ "<literal>showhold</literal> is used to print a list of packages on hold in "
+ "the same way as for the other show commands."
+ msgstr ""
+ "<literal>showauto</literal> wird benutzt, um eine Liste automatisch "
+ "installierter Pakete mit einem Paket in jeder neuen Zeile, auszugeben."
+ #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
+ #: apt-mark.8.xml:130
  msgid ""
  "<option>-f=<filename><replaceable>FILENAME</replaceable></filename></option>"
  msgstr ""
  "<option>-f=<filename><replaceable>DATEINAME</replaceable></filename></option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-mark.8.xml:97
+ #: apt-mark.8.xml:131
  msgid ""
  "<option>--file=<filename><replaceable>FILENAME</replaceable></filename></"
  "option>"
@@@ -4937,7 -5100,7 +5155,7 @@@ msgstr "
  "option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
- #: apt-mark.8.xml:100
+ #: apt-mark.8.xml:134
  msgid ""
  "Read/Write package stats from <filename><replaceable>FILENAME</replaceable></"
  "filename> instead of the default location, which is "
@@@ -4949,48 -5112,18 +5167,18 @@@ msgstr "
  "filename> im von Konfigurationselement <literal>Dir::State</literal> "
  "definierten Verzeichnis, ist."
  
- #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-mark.8.xml:106
- msgid "<option>-h</option>"
- msgstr "<option>-h</option>"
- #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-mark.8.xml:107
- msgid "<option>--help</option>"
- msgstr "<option>--help</option>"
- #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
- #: apt-mark.8.xml:108
- msgid "Show a short usage summary."
- msgstr "Eine kurze Zusammenfassung anzeigen."
- #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-mark.8.xml:114
- msgid "<option>-v</option>"
- msgstr "<option>-v</option>"
- #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-mark.8.xml:115
- msgid "<option>--version</option>"
- msgstr "<option>--version</option>"
- #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
- #: apt-mark.8.xml:116
- msgid "Show the program version."
- msgstr "Die Programmversion anzeigen."
  #. type: Content of: <refentry><refsect1><variablelist>
- #: apt-mark.8.xml:127
+ #: apt-mark.8.xml:146
  msgid "  &file-extended_states;"
  msgstr "  &file-extended_states;"
  
  #. type: Content of: <refentry><refsect1><para>
- #: apt-mark.8.xml:132
+ #: apt-mark.8.xml:151
  msgid "&apt-get;,&aptitude;,&apt-conf;"
  msgstr "&apt-get;,&aptitude;,&apt-conf;"
  
  #. type: Content of: <refentry><refsect1><para>
- #: apt-mark.8.xml:136
+ #: apt-mark.8.xml:155
  msgid ""
  "<command>apt-mark</command> returns zero on normal operation, non-zero on "
  "error."
@@@ -5205,14 -5338,6 +5393,6 @@@ msgstr "
  
  #. type: Content of: <refentry><refsect1><para>
  #: apt-secure.8.xml:147
- #, fuzzy
- #| msgid ""
- #| "In order to add a new key you need to first download it (you should make "
- #| "sure you are using a trusted communication channel when retrieving it), "
- #| "add it with <command>apt-key</command> and then run <command>apt-get "
- #| "update</command> so that apt can download and verify the "
- #| "<filename>Release.gpg</filename> files from the archives you have "
- #| "configured."
  msgid ""
  "In order to add a new key you need to first download it (you should make "
  "sure you are using a trusted communication channel when retrieving it), add "
@@@ -5225,8 -5350,9 +5405,9 @@@ msgstr "
  "(Sie sollten sicherstellen, dass Sie einen vertrauenswürdigen "
  "Kommunikationskanal benutzen, wenn Sie ihn herunterladen), ihn mit "
  "<command>apt-key</command> hinzufügen und dann <command>apt-get update</"
- "command> ausführen, so dass APT die <filename>Release.gpg</filename>-Dateien "
- "der von Ihnen konfigurierten Archive herunterladen und prüfen kann."
+ "command> ausführen, so dass APT die Dateien <filename>InRelease</filename> "
+ "oder <filename>Release.gpg</filename> der von Ihnen konfigurierten Archive "
+ "herunterladen und prüfen kann."
  
  #. type: Content of: <refentry><refsect1><title>
  #: apt-secure.8.xml:156
@@@ -5255,17 -5381,14 +5436,14 @@@ msgstr "
  
  #. type: Content of: <refentry><refsect1><itemizedlist><listitem><para>
  #: apt-secure.8.xml:168
- #, fuzzy
- #| msgid ""
- #| "<emphasis>Sign it</emphasis>. You can do this by running <command>gpg -"
- #| "abs -o Release.gpg Release</command>."
  msgid ""
  "<emphasis>Sign it</emphasis>. You can do this by running <command>gpg --"
  "clearsign -o InRelease Release</command> and <command>gpg -abs -o Release."
  "gpg Release</command>."
  msgstr ""
  "<emphasis>Es signieren</emphasis>. Sie können dies tun, indem Sie "
- "<command>gpg -abs -o Release.gpg Release</command> ausführen."
+ "<command>gpg --clearsign -o InRelease Release</command> und <command>gpg -"
+ "abs -o Release.gpg Release</command> ausführen."
  
  #. type: Content of: <refentry><refsect1><itemizedlist><listitem><para>
  #: apt-secure.8.xml:172
@@@ -5463,20 -5586,26 +5641,27 @@@ msgstr "
  #| "all files in <literal>Dir::Etc::Parts</literal> in alphanumeric ascending "
  #| "order which have no or \"<literal>conf</literal>\" as filename extension "
  #| "and which only contain alphanumeric, hyphen (-), underscore (_) and "
- #| "period (.) characters - otherwise they will be silently ignored."
+ #| "period (.) characters.  Otherwise APT will print a notice that it has "
+ #| "ignored a file if the file doesn't match a pattern in the <literal>Dir::"
+ #| "Ignore-Files-Silently</literal> configuration list - in this case it will "
+ #| "be silently ignored."
  msgid ""
  "all files in <literal>Dir::Etc::Parts</literal> in alphanumeric ascending "
--"order which have no or \"<literal>conf</literal>\" as filename extension and "
--"which only contain alphanumeric, hyphen (-), underscore (_) and period (.) "
--"characters.  Otherwise APT will print a notice that it has ignored a file if "
--"the file doesn't match a pattern in the <literal>Dir::Ignore-Files-Silently</"
--"literal> configuration list - in this case it will be silently ignored."
++"order which have either no or \"<literal>conf</literal>\" as filename "
++"extension and which only contain alphanumeric, hyphen (-), underscore (_) "
++"and period (.) characters.  Otherwise APT will print a notice that it has "
++"ignored a file if the file doesn't match a pattern in the <literal>Dir::"
++"Ignore-Files-Silently</literal> configuration list - in this case it will be "
++"silently ignored."
  msgstr ""
  "alle Dateien in <literal>Dir::Etc::Parts</literal> in aufsteigender "
  "alphanumerischer Reihenfolge, die kein »<literal>conf</literal>« als "
- "Dateinamenserweiterung haben und die alphanumerische Zeichen, Bindestriche "
- "(-), Unterstriche (_) und Punkte (.) enthalten – andernfalls werden sie "
- "stillschweigend ignoriert."
+ "Dateinamenserweiterung haben und die nur alphanumerische Zeichen, "
+ "Bindestriche (-), Unterstriche (_) und Punkte (.) enthalten. Andernfalls "
+ "wird APT einen Hinweis ausgeben, dass es eine Datei ignoriert hat, falls die "
+ "Datei nicht auf ein Muster in der Konfigurationsliste <literal>Dir::Ignore-"
+ "Files-Silently</literal> passt – in diesem Fall wird sie stillschweigend "
+ "ignoriert."
  
  #. type: Content of: <refentry><refsect1><orderedlist><listitem><para>
  #: apt.conf.5.xml:59
@@@ -5733,13 -5862,13 +5918,24 @@@ msgstr "
  "heruntergeladen und Paketlisten ausgewertet werden. Die interne Vorgabe ist "
  "die Architektur für die APT kompiliert wurde."
  
++#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
++#: apt.conf.5.xml:158
++msgid ""
++"All Architectures the system supports. Processors implementing the "
++"<literal>amd64</literal> are e.g. also able to execute binaries compiled for "
++"<literal>i386</literal>; This list is use when fetching files and parsing "
++"package lists. The internal default is always the native architecture "
++"(<literal>APT::Architecture</literal>)  and all foreign architectures it can "
++"retrieve by calling <command>dpkg --print-foreign-architectures</command>."
++msgstr ""
++
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:157
++#: apt.conf.5.xml:165
  msgid "Default-Release"
  msgstr "Default-Release"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:158
++#: apt.conf.5.xml:166
  msgid ""
  "Default release to install packages from if more than one version available. "
  "Contains release name, codename or release version. Examples: 'stable', "
@@@ -5752,12 -5881,12 +5948,12 @@@ msgstr "
  "codename;«, »4.0«, »5.0*«. Siehe auch &apt-preferences;."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:163
++#: apt.conf.5.xml:171
  msgid "Ignore-Hold"
  msgstr "Ignore-Hold"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:164
++#: apt.conf.5.xml:172
  msgid ""
  "Ignore Held packages; This global option causes the problem resolver to "
  "ignore held packages in its decision making."
@@@ -5766,12 -5895,12 +5962,12 @@@ msgstr "
  "Problemlöser, gehaltene Pakete beim Treffen von Entscheidungen zu ignorieren."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:168
++#: apt.conf.5.xml:176
  msgid "Clean-Installed"
  msgstr "Clean-Installed"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:169
++#: apt.conf.5.xml:177
  msgid ""
  "Defaults to on. When turned on the autoclean feature will remove any "
  "packages which can no longer be downloaded from the cache. If turned off "
@@@ -5786,12 -5915,12 +5982,12 @@@ msgstr "
  "Möglichkeiten bereitstellt, um sie erneut zu installieren."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:175
++#: apt.conf.5.xml:183
  msgid "Immediate-Configure"
  msgstr "Immediate-Configure"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:176
++#: apt.conf.5.xml:184
  msgid ""
  "Defaults to on which will cause APT to install essential and important "
  "packages as fast as possible in the install/upgrade operation. This is done "
@@@ -5859,12 -5988,12 +6055,12 @@@ msgstr "
  "Upgrade-Prozesses arbeiten kann."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:198
++#: apt.conf.5.xml:206
  msgid "Force-LoopBreak"
  msgstr "Force-LoopBreak"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:199
++#: apt.conf.5.xml:207
  msgid ""
  "Never Enable this option unless you -really- know what you are doing. It "
  "permits APT to temporarily remove an essential package to break a Conflicts/"
@@@ -5882,12 -6011,12 +6078,12 @@@ msgstr "
  "bash oder etwas, was davon abhängt, sind."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:207
++#: apt.conf.5.xml:215
  msgid "Cache-Start, Cache-Grow and Cache-Limit"
  msgstr "Cache-Start, Cache-Grow und Cache-Limit"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:208
++#: apt.conf.5.xml:216
  msgid ""
  "APT uses since version 0.7.26 a resizable memory mapped cache file to store "
  "the 'available' information. <literal>Cache-Start</literal> acts as a hint "
@@@ -5924,24 -6053,24 +6120,24 @@@ msgstr "
  "auf 0 gesetzt ist, kann der Zwischenspeicher nicht automatisch wachsen."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:223
++#: apt.conf.5.xml:231
  msgid "Build-Essential"
  msgstr "Build-Essential"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:224
++#: apt.conf.5.xml:232
  msgid "Defines which package(s) are considered essential build dependencies."
  msgstr ""
  "Definiert, welche(s) Paket(e) als essentielle Bauabhängigkeiten betrachtet "
  "werde."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:227
++#: apt.conf.5.xml:235
  msgid "Get"
  msgstr "Get"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:228
++#: apt.conf.5.xml:236
  msgid ""
  "The Get subsection controls the &apt-get; tool, please see its documentation "
  "for more information about the options here."
@@@ -5951,12 -6080,12 +6147,12 @@@ msgstr "
  "erhalten."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:232
++#: apt.conf.5.xml:240
  msgid "Cache"
  msgstr "Cache"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:233
++#: apt.conf.5.xml:241
  msgid ""
  "The Cache subsection controls the &apt-cache; tool, please see its "
  "documentation for more information about the options here."
@@@ -5966,12 -6095,12 +6162,12 @@@ msgstr "
  "erhalten."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:237
++#: apt.conf.5.xml:245
  msgid "CDROM"
  msgstr "CD-ROM"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:238
++#: apt.conf.5.xml:246
  msgid ""
  "The CDROM subsection controls the &apt-cdrom; tool, please see its "
  "documentation for more information about the options here."
@@@ -5981,17 -6110,17 +6177,17 @@@ msgstr "
  "erhalten."
  
  #. type: Content of: <refentry><refsect1><title>
--#: apt.conf.5.xml:244
++#: apt.conf.5.xml:252
  msgid "The Acquire Group"
  msgstr "Die Erwerbgruppe"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:249
++#: apt.conf.5.xml:257
  msgid "Check-Valid-Until"
  msgstr "Check-Valid-Until"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:250
++#: apt.conf.5.xml:258
  msgid ""
  "Security related option defaulting to true as an expiring validation for a "
  "Release file prevents longtime replay attacks and can e.g. also help users "
@@@ -6011,41 -6140,52 +6207,88 @@@ msgstr "
  "gewollt ist, kann die Option <literal>Max-ValidTime</literal> benutzt werden."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:260
++#: apt.conf.5.xml:268
  msgid "Max-ValidTime"
  msgstr "Max-ValidTime"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:261
- msgid ""
- "Seconds the Release file should be considered valid after it was created. "
- "The default is \"for ever\" (0) if the Release file of the archive doesn't "
- "include a <literal>Valid-Until</literal> header.  If it does then this date "
- "is the default. The date from the Release file or the date specified by the "
- "creation time of the Release file (<literal>Date</literal> header) plus the "
- "seconds specified with this options are used to check if the validation of a "
- "file has expired by using the earlier date of the two. Archive specific "
- "settings can be made by appending the label of the archive to the option "
- "name."
++#: apt.conf.5.xml:269
+ #, fuzzy
+ #| msgid ""
+ #| "Seconds the Release file should be considered valid after it was created. "
+ #| "The default is \"for ever\" (0) if the Release file of the archive "
+ #| "doesn't include a <literal>Valid-Until</literal> header.  If it does then "
+ #| "this date is the default. The date from the Release file or the date "
+ #| "specified by the creation time of the Release file (<literal>Date</"
+ #| "literal> header) plus the seconds specified with this options are used to "
+ #| "check if the validation of a file has expired by using the earlier date "
+ #| "of the two. Archive specific settings can be made by appending the label "
+ #| "of the archive to the option name."
+ msgid ""
 -"Seconds the Release file should be considered valid after it was created. "
 -"The default is \"for ever\" (0) if the Release file of the archive doesn't "
 -"include a <literal>Valid-Until</literal> header.  If it does then this date "
 -"is the default. The date from the Release file or the date specified by the "
 -"creation time of the Release file (<literal>Date</literal> header) plus the "
 -"seconds specified with this options are used to check if the validation of a "
 -"file has expired by using the earlier date of the two. Archive specific "
 -"settings can be made by appending the label of the archive to the option "
 -"name."
++"Seconds the Release file should be considered valid after it was created "
++"(indicated by the <literal>Date</literal> header).  If the Release file "
++"itself includes a <literal>Valid-Until</literal> header the earlier date of "
++"the two is used as the expiration date.  The default value is <literal>0</"
++"literal> which stands for \"for ever\".  Archive specific settings can be "
++"made by appending the label of the archive to the option name."
+ msgstr ""
+ "Sekunden, die die Release-Datei als gültig betrachtet werden sollte, nachdem "
+ "sie erzeugt wurde. Vorgabe ist »für immer« (0), falls die Release-Datei des "
+ "Archivs keine <literal>Valid-Until</literal>-Kopfzeile enthält. Falls dies "
+ "so ist, ist dieses Datum vorgegeben. Das Datum aus der Release-Datei oder "
+ "das Datum, das durch die Erstellungszeit der Release-Datei angegeben wurde "
+ "(<literal>Date</literal>-Kopfzeile) plus die mit diesen Optionen angegebenen "
+ "Sekunden werden benutzt, um zu prüfen, ob die Bestätigung einer Datei "
+ "abgelaufen ist indem das neuere Datum der beiden benutzt wird. "
+ "Archivspezifische Einstellungen können durch Anhängen des Archivetiketts an "
+ "die Option »name« vorgenommen werden."
+ #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
 -#: apt.conf.5.xml:273
++#: apt.conf.5.xml:279
++#, fuzzy
++#| msgid "Max-ValidTime"
++msgid "Min-ValidTime"
++msgstr "Max-ValidTime"
++
++#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
++#: apt.conf.5.xml:280
++#, fuzzy
++#| msgid ""
++#| "Seconds the Release file should be considered valid after it was created. "
++#| "The default is \"for ever\" (0) if the Release file of the archive "
++#| "doesn't include a <literal>Valid-Until</literal> header.  If it does then "
++#| "this date is the default. The date from the Release file or the date "
++#| "specified by the creation time of the Release file (<literal>Date</"
++#| "literal> header) plus the seconds specified with this options are used to "
++#| "check if the validation of a file has expired by using the earlier date "
++#| "of the two. Archive specific settings can be made by appending the label "
++#| "of the archive to the option name."
++msgid ""
++"Minimum of seconds the Release file should be considered valid after it was "
++"created (indicated by the <literal>Date</literal> header).  Use this if you "
++"need to use a seldomly updated (local) mirror of a more regular updated "
++"archive with a <literal>Valid-Until</literal> header instead of competely "
++"disabling the expiration date checking.  Archive specific settings can and "
++"should be used by appending the label of the archive to the option name."
 +msgstr ""
 +"Sekunden, die die Release-Datei als gültig betrachtet werden sollte, nachdem "
 +"sie erzeugt wurde. Vorgabe ist »für immer« (0), falls die Release-Datei des "
 +"Archivs keine <literal>Valid-Until</literal>-Kopfzeile enthält. Falls dies "
 +"so ist, ist dieses Datum vorgegeben. Das Datum aus der Release-Datei oder "
 +"das Datum, das durch die Erstellungszeit der Release-Datei angegeben wurde "
 +"(<literal>Date</literal>-Kopfzeile) plus die mit diesen Optionen angegebenen "
 +"Sekunden werden benutzt, um zu prüfen, ob die Bestätigung einer Datei "
 +"abgelaufen ist indem das neuere Datum der beiden benutzt wird. "
 +"Archivspezifische Einstellungen können durch Anhängen des Archivetiketts an "
 +"die Option »name« vorgenommen werden."
 +
 +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
- #: apt.conf.5.xml:273
++#: apt.conf.5.xml:290
  msgid "PDiffs"
  msgstr "PDiffs"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:274
++#: apt.conf.5.xml:291
  msgid ""
  "Try to download deltas called <literal>PDiffs</literal> for Packages or "
  "Sources files instead of downloading whole ones. True by default."
@@@ -6055,12 -6195,20 +6298,20 @@@ msgstr "
  "True."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:277
++#: apt.conf.5.xml:294
+ #, fuzzy
+ #| msgid ""
+ #| "Two sub-options to limit the use of PDiffs are also available: With "
+ #| "<literal>FileLimit</literal> can be specified how many PDiff files are "
+ #| "downloaded at most to patch a file. <literal>SizeLimit</literal> on the "
+ #| "other hand is the maximum percentage of the size of all patches compared "
+ #| "to the size of the targeted file. If one of these limits is exceeded the "
+ #| "complete file is downloaded instead of the patches."
  msgid ""
  "Two sub-options to limit the use of PDiffs are also available: With "
  "<literal>FileLimit</literal> can be specified how many PDiff files are "
  "downloaded at most to patch a file. <literal>SizeLimit</literal> on the "
--"other hand is the maximum precentage of the size of all patches compared to "
++"other hand is the maximum percentage of the size of all patches compared to "
  "the size of the targeted file. If one of these limits is exceeded the "
  "complete file is downloaded instead of the patches."
  msgstr ""
  "der Patche heruntergeladen."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:286
++#: apt.conf.5.xml:303
  msgid "Queue-Mode"
  msgstr "Queue-Mode"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:287
++#: apt.conf.5.xml:304
  msgid ""
  "Queuing mode; <literal>Queue-Mode</literal> can be one of <literal>host</"
  "literal> or <literal>access</literal> which determines how APT parallelizes "
@@@ -6094,12 -6242,12 +6345,12 @@@ msgstr "
  "URI-Art geöffnet wird."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:294
++#: apt.conf.5.xml:311
  msgid "Retries"
  msgstr "Retries"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:295
++#: apt.conf.5.xml:312
  msgid ""
  "Number of retries to perform. If this is non-zero APT will retry failed "
  "files the given number of times."
@@@ -6108,12 -6256,12 +6359,12 @@@ msgstr "
  "APT fehlgeschlagene Dateien in der angegebenen Zahl erneut versuchen."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:299
++#: apt.conf.5.xml:316
  msgid "Source-Symlinks"
  msgstr "Source-Symlinks"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:300
++#: apt.conf.5.xml:317
  msgid ""
  "Use symlinks for source archives. If set to true then source archives will "
  "be symlinked when possible instead of copying. True is the default."
@@@ -6123,12 -6271,12 +6374,12 @@@ msgstr "
  "kopiert zu werden. True ist die Vorgabe."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:304 sources.list.5.xml:144
++#: apt.conf.5.xml:321 sources.list.5.xml:160
  msgid "http"
  msgstr "http"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:305
++#: apt.conf.5.xml:322
  msgid ""
  "HTTP URIs; http::Proxy is the default http proxy to use. It is in the "
  "standard form of <literal>http://[[user][:pass]@]host[:port]/</literal>. Per "
@@@ -6146,7 -6294,7 +6397,7 @@@ msgstr "
  "die Umgebungsvariable <envar>http_proxy</envar> benutzt."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:313
++#: apt.conf.5.xml:330
  msgid ""
  "Three settings are provided for cache control with HTTP/1.1 compliant proxy "
  "caches. <literal>No-Cache</literal> tells the proxy to not use its cached "
@@@ -6172,7 -6320,7 +6423,7 @@@ msgstr "
  "unterstützt keine dieser Optionen."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:323 apt.conf.5.xml:387
++#: apt.conf.5.xml:340 apt.conf.5.xml:404
  msgid ""
  "The option <literal>timeout</literal> sets the timeout timer used by the "
  "method, this applies to all things including connection timeout and data "
@@@ -6183,7 -6331,7 +6434,7 @@@ msgstr "
  "Dinge, einschließlich Verbindungs- und Datenzeitüberschreitungen, angewandt."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:326
++#: apt.conf.5.xml:343
  msgid ""
  "One setting is provided to control the pipeline depth in cases where the "
  "remote server is not RFC conforming or buggy (such as Squid 2.0.2).  "
@@@ -6203,7 -6351,7 +6454,7 @@@ msgstr "
  "gegen RFC 2068."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:334
++#: apt.conf.5.xml:351
  msgid ""
  "The used bandwidth can be limited with <literal>Acquire::http::Dl-Limit</"
  "literal> which accepts integer values in kilobyte. The default value is 0 "
@@@ -6219,7 -6367,7 +6470,7 @@@ msgstr "
  "deaktiviert.)"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:339
++#: apt.conf.5.xml:356
  msgid ""
  "<literal>Acquire::http::User-Agent</literal> can be used to set a different "
  "User-Agent for the http download method as some proxies allow access for "
@@@ -6231,12 -6379,12 +6482,12 @@@ msgstr "
  "bekannten Bezeichner verwendet."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:345
++#: apt.conf.5.xml:362
  msgid "https"
  msgstr "https"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:346
++#: apt.conf.5.xml:363
  msgid ""
  "HTTPS URIs. Cache-control, Timeout, AllowRedirect, Dl-Limit and proxy "
  "options are the same as for <literal>http</literal> method and will also "
@@@ -6251,7 -6399,7 +6502,7 @@@ msgstr "
  "<literal>Pipeline-Depth</literal> wird noch nicht unterstützt."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:352
++#: apt.conf.5.xml:369
  msgid ""
  "<literal>CaInfo</literal> suboption specifies place of file that holds info "
  "about trusted certificates.  <literal>&lt;host&gt;::CaInfo</literal> is "
@@@ -6290,12 -6438,12 +6541,12 @@@ msgstr "
  "SslForceVersion</literal> ist die entsprechende per-Host-Option."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:370 sources.list.5.xml:155
++#: apt.conf.5.xml:387 sources.list.5.xml:171
  msgid "ftp"
  msgstr "ftp"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:371
++#: apt.conf.5.xml:388
  msgid ""
  "FTP URIs; ftp::Proxy is the default ftp proxy to use. It is in the standard "
  "form of <literal>ftp://[[user][:pass]@]host[:port]/</literal>. Per host "
@@@ -6330,7 -6478,7 +6581,7 @@@ msgstr "
  "entsprechenden URI-Bestandteil genommen."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:390
++#: apt.conf.5.xml:407
  msgid ""
  "Several settings are provided to control passive mode. Generally it is safe "
  "to leave passive mode on, it works in nearly every environment.  However "
@@@ -6347,7 -6495,7 +6598,7 @@@ msgstr "
  "Beispielskonfiguration, um Beispiele zu erhalten)."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:397
++#: apt.conf.5.xml:414
  msgid ""
  "It is possible to proxy FTP over HTTP by setting the <envar>ftp_proxy</"
  "envar> environment variable to a http url - see the discussion of the http "
@@@ -6361,7 -6509,7 +6612,7 @@@ msgstr "
  "Effizienz nicht empfohlen FTP über HTTP zu benutzen."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:402
++#: apt.conf.5.xml:419
  msgid ""
  "The setting <literal>ForceExtended</literal> controls the use of RFC2428 "
  "<literal>EPSV</literal> and <literal>EPRT</literal> commands. The default is "
@@@ -6377,18 -6525,18 +6628,18 @@@ msgstr "
  "Server RFC2428 unterstützen."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:409 sources.list.5.xml:137
++#: apt.conf.5.xml:426 sources.list.5.xml:153
  msgid "cdrom"
  msgstr "cdrom"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><literallayout>
--#: apt.conf.5.xml:415
++#: apt.conf.5.xml:432
  #, no-wrap
  msgid "/cdrom/::Mount \"foo\";"
  msgstr "/cdrom/::Mount \"foo\";"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:410
++#: apt.conf.5.xml:427
  msgid ""
  "CDROM URIs; the only setting for CDROM URIs is the mount point, "
  "<literal>cdrom::Mount</literal> which must be the mount point for the CDROM "
@@@ -6410,12 -6558,12 +6661,12 @@@ msgstr "
  "können per UMount angegeben werden."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:420
++#: apt.conf.5.xml:437
  msgid "gpgv"
  msgstr "gpgv"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:421
++#: apt.conf.5.xml:438
  msgid ""
  "GPGV URIs; the only option for GPGV URIs is the option to pass additional "
  "parameters to gpgv.  <literal>gpgv::Options</literal> Additional options "
@@@ -6426,18 -6574,18 +6677,18 @@@ msgstr "
  "Zusätzliche Parameter werden an gpgv weitergeleitet."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:426
++#: apt.conf.5.xml:443
  msgid "CompressionTypes"
  msgstr "CompressionTypes"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><synopsis>
--#: apt.conf.5.xml:432
++#: apt.conf.5.xml:449
  #, no-wrap
  msgid "Acquire::CompressionTypes::<replaceable>FileExtension</replaceable> \"<replaceable>Methodname</replaceable>\";"
  msgstr "Acquire::CompressionTypes::<replaceable>Dateierweiterung</replaceable> \"<replaceable>Methodenname</replaceable>\";"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:427
++#: apt.conf.5.xml:444
  msgid ""
  "List of compression types which are understood by the acquire methods.  "
  "Files like <filename>Packages</filename> can be available in various "
@@@ -6457,19 -6605,19 +6708,19 @@@ msgstr "
  "\"synopsis\" id=\"0\"/>"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><synopsis>
--#: apt.conf.5.xml:437
++#: apt.conf.5.xml:454
  #, no-wrap
  msgid "Acquire::CompressionTypes::Order:: \"gz\";"
  msgstr "Acquire::CompressionTypes::Order:: \"gz\";"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><synopsis>
--#: apt.conf.5.xml:440
++#: apt.conf.5.xml:457
  #, no-wrap
  msgid "Acquire::CompressionTypes::Order { \"lzma\"; \"gz\"; };"
  msgstr "Acquire::CompressionTypes::Order { \"lzma\"; \"gz\"; };"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:433
++#: apt.conf.5.xml:450
  msgid ""
  "Also the <literal>Order</literal> subgroup can be used to define in which "
  "order the acquire system will try to download the compressed files. The "
@@@ -6500,13 -6648,13 +6751,13 @@@ msgstr "
  "explizit zur Liste hinzuzufügen, da es automatisch hinzufügt wird."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><literallayout>
--#: apt.conf.5.xml:444
++#: apt.conf.5.xml:461
  #, no-wrap
  msgid "Dir::Bin::bzip2 \"/bin/bzip2\";"
  msgstr "Dir::Bin::bzip2 \"/bin/bzip2\";"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:442
++#: apt.conf.5.xml:459
  #, fuzzy
  #| msgid ""
  #| "Note that at run time the <literal>Dir::Bin::<replaceable>Methodname</"
  #| "also that list entries specified on the command line will be added at the "
  #| "end of the list specified in the configuration files, but before the "
  #| "default entries. To prefer a type in this case over the ones specified in "
- #| "in the configuration files you can set the option direct - not in list "
+ #| "the configuration files you can set the option direct - not in list "
  #| "style.  This will not override the defined list, it will only prefix the "
  #| "list with this type."
  msgid ""
  "Note that at run time the <literal>Dir::Bin::<replaceable>Methodname</"
  "replaceable></literal> will be checked: If this setting exists the method "
  "will only be used if this file exists, e.g. for the bzip2 method (the "
--"inbuilt) setting is <placeholder type=\"literallayout\" id=\"0\"/> Note also "
--"that list entries specified on the command line will be added at the end of "
--"the list specified in the configuration files, but before the default "
++"inbuilt) setting is: <placeholder type=\"literallayout\" id=\"0\"/> Note "
++"also that list entries specified on the command line will be added at the "
++"end of the list specified in the configuration files, but before the default "
  "entries. To prefer a type in this case over the ones specified in the "
  "configuration files you can set the option direct - not in list style.  This "
  "will not override the defined list, it will only prefix the list with this "
@@@ -6535,29 -6683,39 +6786,39 @@@ msgstr "
  "replaceable></literal> zur Laufzeit geprüft wird: Falls diese Einstellung "
  "existiert, wird die Methode nur benutzt, wenn die Datei existiert, z.B. für "
  "die (integrierte) bzip2-Methode ist die Einstellung <placeholder type="
- "\"literallayout\" id=\"0\"/>. Beachten Sie, dass diese auf der Befehlszeile "
+ "\"literallayout\" id=\"0\"/>. Beachten Sie auch, dass auf der Befehlszeile "
  "eingegebenen Einträge an das Ende der Liste angehängt werden, die in den "
  "Konfigurationsdateien angegeben wurde, aber vor den Vorgabeeinträgen. Um "
- "einen Eintrag in diesem Fall vor einem, über die in der Konfigurationsdatei "
- "angegebenen, zu bevorzugen, können Sie diese Option direkt setzen – nicht im "
- "Listenstil. Dies wird die definierte Liste nicht überschreiben, es wird "
- "diesen Typ nur vor die Liste setzen."
+ "einen Typ in diesem Fall gegenüber einem, der über die Konfigurationsdatei "
+ "angegebenen wurde, zu bevorzugen, können Sie diese Option direkt setzen – "
+ "nicht im Listenstil. Dies wird die definierte Liste nicht überschreiben, es "
+ "wird diesen Typ nur vor die Liste setzen."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:449
++#: apt.conf.5.xml:466
+ #, fuzzy
+ #| msgid ""
+ #| "The special type <literal>uncompressed</literal> can be used to give "
+ #| "uncompressed files a preference, but note that most archives don't "
+ #| "provide uncompressed files so this is mostly only useable for local "
+ #| "mirrors."
  msgid ""
  "The special type <literal>uncompressed</literal> can be used to give "
--"uncompressed files a preference, but note that most archives doesn't provide "
++"uncompressed files a preference, but note that most archives don't provide "
  "uncompressed files so this is mostly only useable for local mirrors."
  msgstr ""
+ "Der besondere Typ <literal>uncompressed</literal> kann benutzt werden, um "
+ "unkomprimierten Dateien einen Vorrang zu geben, beachten Sie jedoch, dass "
+ "die meisten Archive keine unkomprimierten Dateien bereitstellen, so dass "
+ "dies meist nur für lokale Spiegel benutzt werden kann."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:454
++#: apt.conf.5.xml:471
  msgid "GzipIndexes"
  msgstr "GzipIndexes"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:456
++#: apt.conf.5.xml:473
  msgid ""
  "When downloading <literal>gzip</literal> compressed indexes (Packages, "
  "Sources, or Translations), keep them gzip compressed locally instead of "
@@@ -6571,12 -6729,12 +6832,12 @@@ msgstr "
  "False."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:463
++#: apt.conf.5.xml:480
  msgid "Languages"
  msgstr "Sprachen"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:464
++#: apt.conf.5.xml:481
  msgid ""
  "The Languages subsection controls which <filename>Translation</filename> "
  "files are downloaded and in which order APT tries to display the Description-"
@@@ -6598,13 -6756,13 +6859,13 @@@ msgstr "
  "hier unmögliche Werte einsetzen."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><programlisting>
--#: apt.conf.5.xml:480
++#: apt.conf.5.xml:497
  #, no-wrap
  msgid "Acquire::Languages { \"environment\"; \"de\"; \"en\"; \"none\"; \"fr\"; };"
  msgstr "Acquire::Languages { \"environment\"; \"de\"; \"en\"; \"none\"; \"fr\"; };"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:470
++#: apt.conf.5.xml:487
  msgid ""
  "The default list includes \"environment\" and \"en\". "
  "\"<literal>environment</literal>\" has a special meaning here: It will be "
@@@ -6646,7 -6804,7 +6907,7 @@@ msgstr "
  "Reihenfolge »fr, de, en«. <placeholder type=\"programlisting\" id=\"0\"/>"
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:245
++#: apt.conf.5.xml:253
  msgid ""
  "The <literal>Acquire</literal> group of options controls the download of "
  "packages and the URI handlers.  <placeholder type=\"variablelist\" id=\"0\"/>"
@@@ -6656,12 -6814,12 +6917,12 @@@ msgstr "
  "id=\"0\"/>"
  
  #. type: Content of: <refentry><refsect1><title>
--#: apt.conf.5.xml:487
++#: apt.conf.5.xml:504
  msgid "Directories"
  msgstr "Verzeichnisse"
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:489
++#: apt.conf.5.xml:506
  msgid ""
  "The <literal>Dir::State</literal> section has directories that pertain to "
  "local state information. <literal>lists</literal> is the directory to place "
@@@ -6681,7 -6839,7 +6942,7 @@@ msgstr "
  "filename> oder <filename>./</filename> beginnen."
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:496
++#: apt.conf.5.xml:513
  msgid ""
  "<literal>Dir::Cache</literal> contains locations pertaining to local cache "
  "information, such as the two package caches <literal>srcpkgcache</literal> "
@@@ -6704,7 -6862,7 +6965,7 @@@ msgstr "
  "in <literal>Dir::Cache</literal> enthalten."
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:505
++#: apt.conf.5.xml:522
  msgid ""
  "<literal>Dir::Etc</literal> contains the location of configuration files, "
  "<literal>sourcelist</literal> gives the location of the sourcelist and "
@@@ -6719,7 -6877,7 +6980,7 @@@ msgstr "
  "Konfigurationsdatei erfolgt)."
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:511
++#: apt.conf.5.xml:528
  msgid ""
  "The <literal>Dir::Parts</literal> setting reads in all the config fragments "
  "in lexical order from the directory specified. After this is done then the "
@@@ -6731,7 -6889,7 +6992,7 @@@ msgstr "
  "geladen."
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:515
++#: apt.conf.5.xml:532
  msgid ""
  "Binary programs are pointed to by <literal>Dir::Bin</literal>. <literal>Dir::"
  "Bin::Methods</literal> specifies the location of the method handlers and "
@@@ -6749,7 -6907,7 +7010,7 @@@ msgstr "
  "Programms an."
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:523
++#: apt.conf.5.xml:540
  msgid ""
  "The configuration item <literal>RootDir</literal> has a special meaning.  If "
  "set, all paths in <literal>Dir::</literal> will be relative to "
@@@ -6769,7 -6927,7 +7030,7 @@@ msgstr "
  "<filename>/tmp/staging/var/lib/dpkg/status</filename> nachgesehen."
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:536
++#: apt.conf.5.xml:553
  msgid ""
  "The <literal>Ignore-Files-Silently</literal> list can be used to specify "
  "which files APT should silently ignore while parsing the files in the "
@@@ -6787,12 -6945,12 +7048,12 @@@ msgstr "
  "verwandt werden."
  
  #. type: Content of: <refentry><refsect1><title>
--#: apt.conf.5.xml:545
++#: apt.conf.5.xml:562
  msgid "APT in DSelect"
  msgstr "APT in DSelect"
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:547
++#: apt.conf.5.xml:564
  msgid ""
  "When APT is used as a &dselect; method several configuration directives "
  "control the default behaviour. These are in the <literal>DSelect</literal> "
@@@ -6803,12 -6961,12 +7064,12 @@@ msgstr "
  "<literal>DSelect</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:551
++#: apt.conf.5.xml:568
  msgid "Clean"
  msgstr "Clean"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:552
++#: apt.conf.5.xml:569
  msgid ""
  "Cache Clean mode; this value may be one of always, prompt, auto, pre-auto "
  "and never.  always and prompt will remove all packages from the cache after "
@@@ -6826,7 -6984,7 +7087,7 @@@ msgstr "
  "führt diese Aktion vor dem Herunterladen neuer Pakete durch."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:561
++#: apt.conf.5.xml:578
  msgid ""
  "The contents of this variable is passed to &apt-get; as command line options "
  "when it is run for the install phase."
@@@ -6835,12 -6993,12 +7096,12 @@@ msgstr "
  "übermittelt, wenn es für die Installationsphase durchlaufen wird."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:565
++#: apt.conf.5.xml:582
  msgid "Updateoptions"
  msgstr "Updateoptions"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:566
++#: apt.conf.5.xml:583
  msgid ""
  "The contents of this variable is passed to &apt-get; as command line options "
  "when it is run for the update phase."
@@@ -6849,12 -7007,12 +7110,12 @@@ msgstr "
  "übermittelt, wenn es für die Aktualisierungsphase durchlaufen wird."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:570
++#: apt.conf.5.xml:587
  msgid "PromptAfterUpdate"
  msgstr "PromptAfterUpdate"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:571
++#: apt.conf.5.xml:588
  msgid ""
  "If true the [U]pdate operation in &dselect; will always prompt to continue.  "
  "The default is to prompt only on error."
@@@ -6863,12 -7021,12 +7124,12 @@@ msgstr "
  "nachfragen, um fortzufahren. Vorgabe ist es, nur bei Fehlern nachzufragen."
  
  #. type: Content of: <refentry><refsect1><title>
--#: apt.conf.5.xml:577
++#: apt.conf.5.xml:594
  msgid "How APT calls dpkg"
  msgstr "Wie APT Dpkg aufruft"
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:578
++#: apt.conf.5.xml:595
  msgid ""
  "Several configuration directives control how APT invokes &dpkg;. These are "
  "in the <literal>DPkg</literal> section."
@@@ -6877,7 -7035,7 +7138,7 @@@ msgstr "
  "stehen im Abschnitt <literal>DPkg</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:583
++#: apt.conf.5.xml:600
  msgid ""
  "This is a list of options to pass to dpkg. The options must be specified "
  "using the list notation and each list item is passed as a single argument to "
@@@ -6888,17 -7046,17 +7149,17 @@@ msgstr "
  "jedes Listenelement wird als einzelnes Argument an &dpkg; übermittelt."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:588
++#: apt.conf.5.xml:605
  msgid "Pre-Invoke"
  msgstr "Pre-Invoke"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:588
++#: apt.conf.5.xml:605
  msgid "Post-Invoke"
  msgstr "Post-Invoke"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:589
++#: apt.conf.5.xml:606
  msgid ""
  "This is a list of shell commands to run before/after invoking &dpkg;.  Like "
  "<literal>options</literal> this must be specified in list notation. The "
@@@ -6912,12 -7070,12 +7173,12 @@@ msgstr "
  "APT abgebrochen."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:595
++#: apt.conf.5.xml:612
  msgid "Pre-Install-Pkgs"
  msgstr "Pre-Install-Pkgs"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:596
++#: apt.conf.5.xml:613
  msgid ""
  "This is a list of shell commands to run before invoking dpkg. Like "
  "<literal>options</literal> this must be specified in list notation. The "
@@@ -6934,7 -7092,7 +7195,7 @@@ msgstr "
  "pro Zeile."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:602
++#: apt.conf.5.xml:619
  msgid ""
  "Version 2 of this protocol dumps more information, including the protocol "
  "version, the APT configuration space and the packages, files and versions "
@@@ -6950,12 -7108,12 +7211,12 @@@ msgstr "
  "literal> gegeben wird."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:609
++#: apt.conf.5.xml:626
  msgid "Run-Directory"
  msgstr "Run-Directory"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:610
++#: apt.conf.5.xml:627
  msgid ""
  "APT chdirs to this directory before invoking dpkg, the default is <filename>/"
  "</filename>."
@@@ -6964,12 -7122,12 +7225,12 @@@ msgstr "
  "die Vorgabe ist <filename>/</filename>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:614
++#: apt.conf.5.xml:631
  msgid "Build-options"
  msgstr "Build-options"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:615
++#: apt.conf.5.xml:632
  msgid ""
  "These options are passed to &dpkg-buildpackage; when compiling packages, the "
  "default is to disable signing and produce all binaries."
@@@ -6979,25 -7137,12 +7240,12 @@@ msgstr "
  "Programme werden erstellt."
  
  #. type: Content of: <refentry><refsect1><refsect2><title>
--#: apt.conf.5.xml:620
++#: apt.conf.5.xml:637
  msgid "dpkg trigger usage (and related options)"
  msgstr "Dpkd-Trigger-Benutzung (und zugehöriger Optionen)"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
--#: apt.conf.5.xml:621
- #, fuzzy
- #| msgid ""
- #| "APT can call dpkg in a way so it can make aggressive use of triggers over "
- #| "multiply calls of dpkg. Without further options dpkg will use triggers "
- #| "only in between his own run. Activating these options can therefore "
- #| "decrease the time needed to perform the install / upgrade. Note that it "
- #| "is intended to activate these options per default in the future, but as "
- #| "it changes the way APT calling dpkg drastically it needs a lot more "
- #| "testing.  <emphasis>These options are therefore currently experimental "
- #| "and should not be used in productive environments.</emphasis> Also it "
- #| "breaks the progress reporting so all frontends will currently stay around "
- #| "half (or more) of the time in the 100% state while it actually configures "
- #| "all packages."
++#: apt.conf.5.xml:638
  msgid ""
  "APT can call dpkg in a way so it can make aggressive use of triggers over "
  "multiple calls of dpkg. Without further options dpkg will use triggers only "
  "all frontends will currently stay around half (or more) of the time in the "
  "100% state while it actually configures all packages."
  msgstr ""
- "APT kann Dpkg auf eine Art aufrufen, auf die aggressiv Gebrauch von Triggern "
- "über mehrere Dpkg-Aufrufe gemacht wird. Ohne weitere Optionen wird Dpkg "
- "Trigger nur während seiner eigenen Ausführung benutzen. Diese Optionen zu "
- "benutzen, kann daher die zum Installieren/Upgrade benötigte Zeit verkürzen. "
- "Beachten Sie, dass geplant ist, diese Optionen in Zukunft standardmäßig zu "
- "aktivieren, aber da es die Art, wie APT Dpkg aufruft, drastisch ändert, "
- "benötigt es noch viele weitere Tests. <emphasis>Diese Optionen sind daher "
- "aktuell noch experimentell und sollten nicht in produktiven Umgebungen "
- "benutzt werden.</emphasis> Außerdem unterbricht es die Fortschrittsanzeige, "
- "so dass alle Oberflächen aktuell in der halben (oder mehr) Zeit auf dem "
- "Status 100% stehen, während es aktuell alle Pakete konfiguriert."
+ "APT kann Dpkg auf eine Art aufrufen, in der aggressiv Gebrauch von Triggern "
+ "über mehrere Dpkg-Aufrufe hinweg gemacht wird. Ohne weitere Optionen wird "
+ "Dpkg Trigger nur während seiner eigenen Ausführung benutzen. Diese Optionen "
+ "zu benutzen, kann daher die zum Installieren/Upgrade benötigte Zeit "
+ "verkürzen. Beachten Sie, dass geplant ist, diese Optionen in Zukunft "
+ "standardmäßig zu aktivieren, aber da es die Art, wie APT Dpkg aufruft, "
+ "drastisch ändert, benötigt es noch viele weitere Tests. <emphasis>Diese "
+ "Optionen sind daher aktuell noch experimentell und sollten nicht in "
+ "produktiven Umgebungen benutzt werden.</emphasis> Außerdem unterbricht es "
+ "die Fortschrittsanzeige, so dass alle Oberflächen derzeit die halbe (oder "
+ "mehr) Zeit auf dem Status 100% stehen, während tatsächlich alle Pakete "
+ "konfiguriert werden."
  
  #. type: Content of: <refentry><refsect1><refsect2><para><literallayout>
--#: apt.conf.5.xml:636
++#: apt.conf.5.xml:653
  #, no-wrap
  msgid ""
  "DPkg::NoTriggers \"true\";\n"
@@@ -7037,7 -7183,7 +7286,7 @@@ msgstr "
  "DPkg::TriggersPending \"true\";"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
--#: apt.conf.5.xml:630
++#: apt.conf.5.xml:647
  msgid ""
  "Note that it is not guaranteed that APT will support these options or that "
  "these options will not cause (big) trouble in the future. If you have "
@@@ -7062,12 -7208,12 +7311,12 @@@ msgstr "
  "wäre <placeholder type=\"literallayout\" id=\"0\"/>"
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
--#: apt.conf.5.xml:642
++#: apt.conf.5.xml:659
  msgid "DPkg::NoTriggers"
  msgstr "DPkg::NoTriggers"
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:643
++#: apt.conf.5.xml:660
  msgid ""
  "Add the no triggers flag to all dpkg calls (except the ConfigurePending "
  "call).  See &dpkg; if you are interested in what this actually means. In "
@@@ -7088,12 -7234,12 +7337,12 @@@ msgstr "
  "außerdem an die »unpack«- und »remove«-Aufrufe anhängen."
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
--#: apt.conf.5.xml:650
++#: apt.conf.5.xml:667
  msgid "PackageManager::Configure"
  msgstr "PackageManager::Configure"
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:651
++#: apt.conf.5.xml:668
  msgid ""
  "Valid values are \"<literal>all</literal>\", \"<literal>smart</literal>\" "
  "and \"<literal>no</literal>\".  \"<literal>all</literal>\" is the default "
@@@ -7122,12 -7268,12 +7371,12 @@@ msgstr "
  "mehr startbar sein könnte."
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
--#: apt.conf.5.xml:661
++#: apt.conf.5.xml:678
  msgid "DPkg::ConfigurePending"
  msgstr "DPkg::ConfigurePending"
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:662
++#: apt.conf.5.xml:679
  msgid ""
  "If this option is set apt will call <command>dpkg --configure --pending</"
  "command> to let dpkg handle all required configurations and triggers. This "
@@@ -7146,12 -7292,12 +7395,12 @@@ msgstr "
  "deaktivieren."
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
--#: apt.conf.5.xml:668
++#: apt.conf.5.xml:685
  msgid "DPkg::TriggersPending"
  msgstr "DPkg::TriggersPending"
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:669
++#: apt.conf.5.xml:686
  msgid ""
  "Useful for <literal>smart</literal> configuration as a package which has "
  "pending triggers is not considered as <literal>installed</literal> and dpkg "
@@@ -7167,12 -7313,12 +7416,12 @@@ msgstr "
  "benötigt werden."
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
--#: apt.conf.5.xml:674
++#: apt.conf.5.xml:691
  msgid "PackageManager::UnpackAll"
  msgstr "PackageManager::UnpackAll"
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:675
++#: apt.conf.5.xml:692
  msgid ""
  "As the configuration can be deferred to be done at the end by dpkg it can be "
  "tried to order the unpack series only by critical needs, e.g. by Pre-"
@@@ -7191,12 -7337,12 +7440,12 @@@ msgstr "
  "und weitere Verbesserungen benötigt, bevor sie wirklich nützlich wird."
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
--#: apt.conf.5.xml:682
++#: apt.conf.5.xml:699
  msgid "OrderList::Score::Immediate"
  msgstr "OrderList::Score::Immediate"
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para><literallayout>
--#: apt.conf.5.xml:690
++#: apt.conf.5.xml:707
  #, no-wrap
  msgid ""
  "OrderList::Score {\n"
@@@ -7214,7 -7360,7 +7463,7 @@@ msgstr "
  "};"
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:683
++#: apt.conf.5.xml:700
  msgid ""
  "Essential packages (and there dependencies) should be configured immediately "
  "after unpacking. It will be a good idea to do this quite early in the "
@@@ -7238,12 -7384,12 +7487,12 @@@ msgstr "
  "mit ihren Vorgabewerten. <placeholder type=\"literallayout\" id=\"0\"/>"
  
  #. type: Content of: <refentry><refsect1><title>
--#: apt.conf.5.xml:703
++#: apt.conf.5.xml:720
  msgid "Periodic and Archives options"
  msgstr "Periodische- und Archivoptionen"
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:704
++#: apt.conf.5.xml:721
  msgid ""
  "<literal>APT::Periodic</literal> and <literal>APT::Archives</literal> groups "
  "of options configure behavior of apt periodic updates, which is done by "
@@@ -7257,12 -7403,12 +7506,12 @@@ msgstr "
  "Dokumentation dieser Optionen zu erhalten."
  
  #. type: Content of: <refentry><refsect1><title>
--#: apt.conf.5.xml:712
++#: apt.conf.5.xml:729
  msgid "Debug options"
  msgstr "Fehlersuchoptionen"
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:714
++#: apt.conf.5.xml:731
  msgid ""
  "Enabling options in the <literal>Debug::</literal> section will cause "
  "debugging information to be sent to the standard error stream of the program "
@@@ -7280,7 -7426,7 +7529,7 @@@ msgstr "
  "könnten es sein:"
  
  #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
--#: apt.conf.5.xml:725
++#: apt.conf.5.xml:742
  msgid ""
  "<literal>Debug::pkgProblemResolver</literal> enables output about the "
  "decisions made by <literal>dist-upgrade, upgrade, install, remove, purge</"
@@@ -7291,7 -7437,7 +7540,7 @@@ msgstr "
  "getroffenen Entscheidungen ein."
  
  #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
--#: apt.conf.5.xml:733
++#: apt.conf.5.xml:750
  msgid ""
  "<literal>Debug::NoLocking</literal> disables all file locking.  This can be "
  "used to run some operations (for instance, <literal>apt-get -s install</"
@@@ -7302,7 -7448,7 +7551,7 @@@ msgstr "
  "<literal>apt-get -s install</literal>) als nicht root-Anwender auszuführen."
  
  #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
--#: apt.conf.5.xml:742
++#: apt.conf.5.xml:759
  msgid ""
  "<literal>Debug::pkgDPkgPM</literal> prints out the actual command line each "
  "time that <literal>apt</literal> invokes &dpkg;."
@@@ -7314,7 -7460,7 +7563,7 @@@ msgstr "
  #.       motivating example, except I haven't a clue why you'd want
  #.       to do this. 
  #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
--#: apt.conf.5.xml:750
++#: apt.conf.5.xml:767
  msgid ""
  "<literal>Debug::IdentCdrom</literal> disables the inclusion of statfs data "
  "in CDROM IDs."
@@@ -7323,17 -7469,17 +7572,17 @@@ msgstr "
  "Daten in CD-ROM-IDs aus."
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:760
++#: apt.conf.5.xml:777
  msgid "A full list of debugging options to apt follows."
  msgstr "Eine vollständige Liste der Fehlersuchoptionen von APT folgt."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:765
++#: apt.conf.5.xml:782
  msgid "<literal>Debug::Acquire::cdrom</literal>"
  msgstr "<literal>Debug::Acquire::cdrom</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:769
++#: apt.conf.5.xml:786
  msgid ""
  "Print information related to accessing <literal>cdrom://</literal> sources."
  msgstr ""
  "literal>-Quellen beziehen."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:776
++#: apt.conf.5.xml:793
  msgid "<literal>Debug::Acquire::ftp</literal>"
  msgstr "<literal>Debug::Acquire::ftp</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:780
++#: apt.conf.5.xml:797
  msgid "Print information related to downloading packages using FTP."
  msgstr ""
  "Gibt Informationen aus, die sich auf das Herunterladen von Paketen per FTP "
  "beziehen."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:787
++#: apt.conf.5.xml:804
  msgid "<literal>Debug::Acquire::http</literal>"
  msgstr "<literal>Debug::Acquire::http</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:791
++#: apt.conf.5.xml:808
  msgid "Print information related to downloading packages using HTTP."
  msgstr ""
  "Gibt Informationen aus, die sich auf das Herunterladen von Paketen per HTTP "
  "beziehen."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:798
++#: apt.conf.5.xml:815
  msgid "<literal>Debug::Acquire::https</literal>"
  msgstr "<literal>Debug::Acquire::https</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:802
++#: apt.conf.5.xml:819
  msgid "Print information related to downloading packages using HTTPS."
  msgstr ""
  "Gibt Informationen aus, die sich auf das Herunterladen von Paketen per HTTPS "
  "beziehen."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:809
++#: apt.conf.5.xml:826
  msgid "<literal>Debug::Acquire::gpgv</literal>"
  msgstr "<literal>Debug::Acquire::gpgv</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:813
++#: apt.conf.5.xml:830
  msgid ""
  "Print information related to verifying cryptographic signatures using "
  "<literal>gpg</literal>."
@@@ -7391,12 -7537,12 +7640,12 @@@ msgstr "
  "mittels <literal>gpg</literal> beziehen."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:820
++#: apt.conf.5.xml:837
  msgid "<literal>Debug::aptcdrom</literal>"
  msgstr "<literal>Debug::aptcdrom</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:824
++#: apt.conf.5.xml:841
  msgid ""
  "Output information about the process of accessing collections of packages "
  "stored on CD-ROMs."
@@@ -7405,23 -7551,23 +7654,23 @@@ msgstr "
  "CD-ROMs gespeichert sind."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:831
++#: apt.conf.5.xml:848
  msgid "<literal>Debug::BuildDeps</literal>"
  msgstr "<literal>Debug::BuildDeps</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:834
++#: apt.conf.5.xml:851
  msgid "Describes the process of resolving build-dependencies in &apt-get;."
  msgstr ""
  "Beschreibt den Prozess der Auflösung von Bauabhängigkeiten in &apt-get;."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:841
++#: apt.conf.5.xml:858
  msgid "<literal>Debug::Hashes</literal>"
  msgstr "<literal>Debug::Hashes</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:844
++#: apt.conf.5.xml:861
  msgid ""
  "Output each cryptographic hash that is generated by the <literal>apt</"
  "literal> libraries."
@@@ -7430,12 -7576,12 +7679,12 @@@ msgstr "
  "Bibliotheken generiert wurde."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:851
++#: apt.conf.5.xml:868
  msgid "<literal>Debug::IdentCDROM</literal>"
  msgstr "<literal>Debug::IdentCDROM</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:854
++#: apt.conf.5.xml:871
  msgid ""
  "Do not include information from <literal>statfs</literal>, namely the number "
  "of used and free blocks on the CD-ROM filesystem, when generating an ID for "
@@@ -7446,12 -7592,12 +7695,12 @@@ msgstr "
  "ID für eine CD-ROM generiert wird."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:862
++#: apt.conf.5.xml:879
  msgid "<literal>Debug::NoLocking</literal>"
  msgstr "<literal>Debug::NoLocking</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:865
++#: apt.conf.5.xml:882
  msgid ""
  "Disable all file locking.  For instance, this will allow two instances of "
  "<quote><literal>apt-get update</literal></quote> to run at the same time."
@@@ -7461,24 -7607,24 +7710,24 @@@ msgstr "
  "gleichen Zeit laufen."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:873
++#: apt.conf.5.xml:890
  msgid "<literal>Debug::pkgAcquire</literal>"
  msgstr "<literal>Debug::pkgAcquire</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:877
++#: apt.conf.5.xml:894
  msgid "Log when items are added to or removed from the global download queue."
  msgstr ""
  "Protokollieren, wenn Elemente aus der globalen Warteschlange zum "
  "Herunterladen hinzugefügt oder entfernt werden."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:884
++#: apt.conf.5.xml:901
  msgid "<literal>Debug::pkgAcquire::Auth</literal>"
  msgstr "<literal>Debug::pkgAcquire::Auth</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:887
++#: apt.conf.5.xml:904
  msgid ""
  "Output status messages and errors related to verifying checksums and "
  "cryptographic signatures of downloaded files."
@@@ -7487,12 -7633,12 +7736,12 @@@ msgstr "
  "und kryptografischen Signaturen von heruntergeladenen Dateien beziehen."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:894
++#: apt.conf.5.xml:911
  msgid "<literal>Debug::pkgAcquire::Diffs</literal>"
  msgstr "<literal>Debug::pkgAcquire::Diffs</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:897
++#: apt.conf.5.xml:914
  msgid ""
  "Output information about downloading and applying package index list diffs, "
  "and errors relating to package index list diffs."
@@@ -7501,12 -7647,12 +7750,12 @@@ msgstr "
  "und Fehler, die die Paketindexlisten-Diffs betreffen, ausgeben."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:905
++#: apt.conf.5.xml:922
  msgid "<literal>Debug::pkgAcquire::RRed</literal>"
  msgstr "<literal>Debug::pkgAcquire::RRed</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:909
++#: apt.conf.5.xml:926
  msgid ""
  "Output information related to patching apt package lists when downloading "
  "index diffs instead of full indices."
@@@ -7516,12 -7662,12 +7765,12 @@@ msgstr "
  "werden."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:916
++#: apt.conf.5.xml:933
  msgid "<literal>Debug::pkgAcquire::Worker</literal>"
  msgstr "<literal>Debug::pkgAcquire::Worker</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:920
++#: apt.conf.5.xml:937
  msgid ""
  "Log all interactions with the sub-processes that actually perform downloads."
  msgstr ""
  "durchführen."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:927
++#: apt.conf.5.xml:944
  msgid "<literal>Debug::pkgAutoRemove</literal>"
  msgstr "<literal>Debug::pkgAutoRemove</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:931
++#: apt.conf.5.xml:948
  msgid ""
  "Log events related to the automatically-installed status of packages and to "
  "the removal of unused packages."
@@@ -7544,12 -7690,12 +7793,12 @@@ msgstr "
  "beziehen."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:938
++#: apt.conf.5.xml:955
  msgid "<literal>Debug::pkgDepCache::AutoInstall</literal>"
  msgstr "<literal>Debug::pkgDepCache::AutoInstall</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:941
++#: apt.conf.5.xml:958
  msgid ""
  "Generate debug messages describing which packages are being automatically "
  "installed to resolve dependencies.  This corresponds to the initial auto-"
@@@ -7565,12 -7711,12 +7814,12 @@@ msgstr "
  "literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:952
++#: apt.conf.5.xml:969
  msgid "<literal>Debug::pkgDepCache::Marker</literal>"
  msgstr "<literal>Debug::pkgDepCache::Marker</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:955
++#: apt.conf.5.xml:972
  msgid ""
  "Generate debug messages describing which package is marked as keep/install/"
  "remove while the ProblemResolver does his work.  Each addition or deletion "
@@@ -7602,23 -7748,23 +7851,23 @@@ msgstr "
  "erscheint."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:974
++#: apt.conf.5.xml:991
  msgid "<literal>Debug::pkgInitConfig</literal>"
  msgstr "<literal>Debug::pkgInitConfig</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:977
++#: apt.conf.5.xml:994
  msgid "Dump the default configuration to standard error on startup."
  msgstr ""
  "Die Vorgabekonfiguration beim Start auf der Standardfehlerausgabe ausgeben."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:984
++#: apt.conf.5.xml:1001
  msgid "<literal>Debug::pkgDPkgPM</literal>"
  msgstr "<literal>Debug::pkgDPkgPM</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:987
++#: apt.conf.5.xml:1004
  msgid ""
  "When invoking &dpkg;, output the precise command line with which it is being "
  "invoked, with arguments separated by a single space character."
@@@ -7628,12 -7774,12 +7877,12 @@@ msgstr "
  "sind."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:995
++#: apt.conf.5.xml:1012
  msgid "<literal>Debug::pkgDPkgProgressReporting</literal>"
  msgstr "<literal>Debug::pkgDPkgProgressReporting</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:998
++#: apt.conf.5.xml:1015
  msgid ""
  "Output all the data received from &dpkg; on the status file descriptor and "
  "any errors encountered while parsing it."
@@@ -7642,12 -7788,12 +7891,12 @@@ msgstr "
  "alle während deren Auswertung gefundenen Fehler ausgeben."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:1005
++#: apt.conf.5.xml:1022
  msgid "<literal>Debug::pkgOrderList</literal>"
  msgstr "<literal>Debug::pkgOrderList</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:1009
++#: apt.conf.5.xml:1026
  msgid ""
  "Generate a trace of the algorithm that decides the order in which "
  "<literal>apt</literal> should pass packages to &dpkg;."
@@@ -7657,12 -7803,12 +7906,12 @@@ msgstr "
  "soll."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:1017
++#: apt.conf.5.xml:1034
  msgid "<literal>Debug::pkgPackageManager</literal>"
  msgstr "<literal>Debug::pkgPackageManager</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:1021
++#: apt.conf.5.xml:1038
  msgid ""
  "Output status messages tracing the steps performed when invoking &dpkg;."
  msgstr ""
  "von &dpkg; ausgeführt werden."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:1028
++#: apt.conf.5.xml:1045
  msgid "<literal>Debug::pkgPolicy</literal>"
  msgstr "<literal>Debug::pkgPolicy</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:1032
++#: apt.conf.5.xml:1049
  msgid "Output the priority of each package list on startup."
  msgstr "Die Priorität jeder Paketliste beim Start ausgeben."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:1038
++#: apt.conf.5.xml:1055
  msgid "<literal>Debug::pkgProblemResolver</literal>"
  msgstr "<literal>Debug::pkgProblemResolver</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:1042
++#: apt.conf.5.xml:1059
  msgid ""
  "Trace the execution of the dependency resolver (this applies only to what "
  "happens when a complex dependency problem is encountered)."
@@@ -7695,12 -7841,12 +7944,12 @@@ msgstr "
  "aufgetreten ist)."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:1050
++#: apt.conf.5.xml:1067
  msgid "<literal>Debug::pkgProblemResolver::ShowScores</literal>"
  msgstr "<literal>Debug::pkgProblemResolver::ShowScores</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:1053
++#: apt.conf.5.xml:1070
  msgid ""
  "Display a list of all installed packages with their calculated score used by "
  "the pkgProblemResolver. The description of the package is the same as "
@@@ -7712,12 -7858,12 +7961,12 @@@ msgstr "
  "beschrieben."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:1061
++#: apt.conf.5.xml:1078
  msgid "<literal>Debug::sourceList</literal>"
  msgstr "<literal>Debug::sourceList</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:1065
++#: apt.conf.5.xml:1082
  msgid ""
  "Print information about the vendors read from <filename>/etc/apt/vendors."
  "list</filename>."
@@@ -7726,7 -7872,7 +7975,7 @@@ msgstr "
  "gelesenen Anbieter ausgeben."
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:1088
++#: apt.conf.5.xml:1105
  msgid ""
  "&configureindex; is a configuration file showing example values for all "
  "possible options."
@@@ -7735,13 -7881,13 +7984,13 @@@ msgstr "
  "möglichen Optionen zeigen."
  
  #. type: Content of: <refentry><refsect1><variablelist>
--#: apt.conf.5.xml:1095
++#: apt.conf.5.xml:1112
  msgid "&file-aptconf;"
  msgstr "&file-aptconf;"
  
  #.  ? reading apt.conf 
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:1100
++#: apt.conf.5.xml:1117
  msgid "&apt-cache;, &apt-config;, &apt-preferences;."
  msgstr "&apt-cache;, &apt-config;, &apt-preferences;."
  
@@@ -7846,23 -7992,28 +8095,28 @@@ msgstr "
  #| "directory are parsed in alphanumeric ascending order and need to obey the "
  #| "following naming convention: The files have no or \"<literal>pref</"
  #| "literal>\" as filename extension and which only contain alphanumeric, "
- #| "hyphen (-), underscore (_) and period (.) characters - otherwise they "
- #| "will be silently ignored."
+ #| "hyphen (-), underscore (_) and period (.) characters.  Otherwise APT will "
+ #| "print a notice that it has ignored a file if the file doesn't match a "
+ #| "pattern in the <literal>Dir::Ignore-Files-Silently</literal> "
+ #| "configuration list - in this case it will be silently ignored."
  msgid ""
  "Note that the files in the <filename>/etc/apt/preferences.d</filename> "
  "directory are parsed in alphanumeric ascending order and need to obey the "
--"following naming convention: The files have no or \"<literal>pref</literal>"
--"\" as filename extension and which only contain alphanumeric, hyphen (-), "
++"following naming convention: The files have either no or \"<literal>pref</"
++"literal>\" as filename extension and only contain alphanumeric, hyphen (-), "
  "underscore (_) and period (.) characters.  Otherwise APT will print a notice "
  "that it has ignored a file if the file doesn't match a pattern in the "
  "<literal>Dir::Ignore-Files-Silently</literal> configuration list - in this "
  "case it will be silently ignored."
  msgstr ""
- "Beachten Sie, dass die Dateien im Verzeichnis /etc/apt/preferences.d in "
- "alphanumerisch aufsteigender Richtung ausgewertet werden und der folgenden "
- "Namenskonvention unterliegen: Die Dateien haben keine oder »pref« als "
- "Dateierweiterung und sie enthalten nur alphanumerische Zeichen, Bindestriche "
- "(-), Unterstriche (_) oder Punkte (.). Wenn dies nicht der Fall ist, werden "
+ "Beachten Sie, dass die Dateien im Verzeichnis <filename>/etc/apt/preferences."
+ "d</filename> in alphanumerisch aufsteigender Reihenfolge ausgewertet werden "
+ "und der folgenden Namenskonvention unterliegen: Die Dateien haben keine oder "
+ "<literal>»pref«</literal> als Dateierweiterung und sie enthalten nur "
+ "alphanumerische Zeichen, Bindestriche (-), Unterstriche (_) oder Punkte (.). "
+ "Andernfalls wird APT einen Hinweis ausgeben, dass es eine Datei ignoriert "
+ "hat, falls die Datei nicht auf ein Muster in der Konfigurationsliste "
+ "<literal>Dir::Ignore-Files-Silently</literal> passt – in diesem Fall wird "
  "sie stillschweigend ignoriert."
  
  #. type: Content of: <refentry><refsect1><refsect2><title>
@@@ -7920,17 -8071,19 +8174,19 @@@ msgstr "Priorität 1
  #, fuzzy
  #| msgid ""
  #| "to the versions coming from archives which in their <filename>Release</"
- #| "filename> files are marked as \"NotAutomatic: yes\" like the debian "
- #| "experimental archive."
+ #| "filename> files are marked as \"NotAutomatic: yes\" but <emphasis>not</"
+ #| "emphasis> as \"ButAutomaticUpgrades: yes\" like the debian "
+ #| "<literal>experimental</literal> archive."
  msgid ""
  "to the versions coming from archives which in their <filename>Release</"
  "filename> files are marked as \"NotAutomatic: yes\" but <emphasis>not</"
  "emphasis> as \"ButAutomaticUpgrades: yes\" like the debian "
  "<literal>experimental</literal> archive."
  msgstr ""
- "zu den Versionen, die von Archiven kommen, deren <filename>Release</"
- "filename>-Dateien als »NotAutomatic: yes« markiert sind, wie das Debian-"
- "Experimental-Archiv."
+ "zu den Versionen, die von Archiven kommen, die in deren <filename>Release</"
+ "filename>-Dateien als »NotAutomatic: yes« markiert sind, aber "
+ "<emphasis>nicht</emphasis> als »ButAutomaticUpgrades: yes« wie das Archiv "
+ "<literal>experimental</literal> von Debian."
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
  #: apt_preferences.5.xml:113
@@@ -7939,20 -8092,17 +8195,17 @@@ msgstr "Priorität 100
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
  #: apt_preferences.5.xml:114
- #, fuzzy
- #| msgid ""
- #| "to the versions coming from archives which in their <filename>Release</"
- #| "filename> files are marked as \"NotAutomatic: yes\" like the debian "
- #| "experimental archive."
  msgid ""
  "to the version that is already installed (if any) and to the versions coming "
  "from archives which in their <filename>Release</filename> files are marked "
  "as \"NotAutomatic: yes\" and \"ButAutomaticUpgrades: yes\" like the debian "
  "backports archive since <literal>squeeze-backports</literal>."
  msgstr ""
- "zu den Versionen, die von Archiven kommen, deren <filename>Release</"
- "filename>-Dateien als »NotAutomatic: yes« markiert sind, wie das Debian-"
- "Experimental-Archiv."
+ "zu der Version, die bereits installiert ist (wenn dies der Fall ist) und zu "
+ "Versionen, die von Archiven kommen, die in deren <filename>Release</"
+ "filename>-Dateien als »NotAutomatic: yes« und »ButAutomaticUpgrades: yes« "
+ "markiert sind, wie das Debian-Backports-Archiv seit <literal>squeeze-"
+ "backports</literal>."
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
  #: apt_preferences.5.xml:121
@@@ -7997,9 -8147,10 +8250,10 @@@ msgstr "
  #| msgid ""
  #| "If the target release has not been specified then APT simply assigns "
  #| "priority 100 to all installed package versions and priority 500 to all "
- #| "uninstalled package versions, expect versions coming from archives which "
+ #| "uninstalled package versions, except versions coming from archives which "
  #| "in their <filename>Release</filename> files are marked as \"NotAutomatic: "
- #| "yes\" - these versions get the priority 1."
+ #| "yes\" - these versions get the priority 1 or priority 100 if it is "
+ #| "additionally marked as \"ButAutomaticUpgrades: yes\"."
  msgid ""
  "If the target release has not been specified then APT simply assigns "
  "priority 100 to all installed package versions and priority 500 to all "
@@@ -8011,8 -8162,10 +8265,10 @@@ msgstr "
  "Wenn das Ziel-Release nicht angegeben wurde, dann weist APT einfach allen "
  "installierten Paketversionen eine Priorität von 100 und allen nicht "
  "installierten Paketversionen eine Priorität von 500 zu, außer wenn Versionen "
- "aus Archiven kommen, in deren Release-Dateien »NotAutomatic: yes« markiert "
- "ist – diese Versionen erhalten die Prirität 1."
+ "aus Archiven kommen, die in deren <filename>Release<filename>-Dateien "
+ "»NotAutomatic: yes« markiert sind – diese Versionen erhalten die Priorität 1 "
+ "oder die Priorität 100, falls sie zusätzlich als »ButAutomaticUpgrades: yes« "
+ "markiert sind."
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
  #: apt_preferences.5.xml:139
@@@ -8312,17 -8465,95 +8568,95 @@@ msgstr "
  "Pin-Priority: 500\n"
  
  #. type: Content of: <refentry><refsect1><refsect2><title>
- #: apt_preferences.5.xml:263
+ #: apt_preferences.5.xml:262
+ msgid "Regular expressions and glob() syntax"
+ msgstr "Reguläre Ausdrücke und glob()-Syntax"
+ #. type: Content of: <refentry><refsect1><refsect2><para>
+ #: apt_preferences.5.xml:264
+ #, fuzzy
+ #| msgid ""
+ #| "APT also supports pinning by glob() expressions and regular expressions "
+ #| "surrounded by /. For example, the following example assigns the priority "
+ #| "500 to all packages from experimental where the name starts with gnome "
+ #| "(as a glob()-like expression) or contains the word kde (as a POSIX "
+ #| "extended regular expression surrounded by slashes)."
+ msgid ""
+ "APT also supports pinning by glob() expressions and regular expressions "
+ "surrounded by /. For example, the following example assigns the priority 500 "
+ "to all packages from experimental where the name starts with gnome (as a glob"
 -"()-like expression or contains the word kde (as a POSIX extended regular "
++"()-like expression) or contains the word kde (as a POSIX extended regular "
+ "expression surrounded by slashes)."
+ msgstr ""
+ "APT unterstützt außerdem Pinning mittels glob()-Ausdrücken und regulären "
+ "Ausdrücken, die von »/« umschlossen sind. Das folgende Beispiel weist "
+ "beispielsweise allen Paketen aus Experimental die Priorität 500 zu, bei "
+ "denen der Name mit »gnome« beginnt (wie ein glob()-artiger Ausdruck) oder "
+ "das Wort »kde« enthält (wie ein erweiterter regulärer POSIX-Ausdruck, der "
+ "von Schrägstrichen umschlossen wird)."
+ #. type: Content of: <refentry><refsect1><refsect2><programlisting>
+ #: apt_preferences.5.xml:273
+ #, no-wrap
+ msgid ""
+ "Package: gnome* /kde/\n"
+ "Pin: release n=experimental\n"
+ "Pin-Priority: 500\n"
+ msgstr ""
+ "Package: gnome* /kde/\n"
+ "Pin: release n=experimental\n"
+ "Pin-Priority: 500\n"
+ #. type: Content of: <refentry><refsect1><refsect2><para>
+ #: apt_preferences.5.xml:279
+ #, fuzzy
+ #| msgid ""
+ #| "The rule for those expressions is that they can occur anywhere where a "
+ #| "string can occur. Thus, the following pin assigns the priority 990 to all "
+ #| "packages from a release starting with karmic."
+ msgid ""
+ "The rule for those expressions is that they can occur anywhere where a "
 -"string can occur. Those, the following pin assigns the priority 990 to all "
++"string can occur. Thus, the following pin assigns the priority 990 to all "
+ "packages from a release starting with karmic."
+ msgstr ""
+ "Die Regel für diese Ausdrücke ist, dass sie überall dort auftreten können, "
+ "wo eine Zeichenkette auftreten kann. Somit weist die folgende Pin allen "
+ "Paketen von einem Release seit Karmic die Priorität 900 zu."
+ #. type: Content of: <refentry><refsect1><refsect2><programlisting>
+ #: apt_preferences.5.xml:285
+ #, no-wrap
+ msgid ""
+ "Package: *\n"
+ "Pin: release n=karmic*\n"
+ "Pin-Priority: 990\n"
+ msgstr ""
+ "Package: *\n"
+ "Pin: release n=karmic*\n"
+ "Pin-Priority: 990\n"
+ #. type: Content of: <refentry><refsect1><refsect2><literal>
+ #: apt_preferences.5.xml:290
+ msgid "Package"
+ msgstr "Package"
+ #. type: Content of: <refentry><refsect1><refsect2><literal>
+ #: apt_preferences.5.xml:296
+ msgid "*"
+ msgstr "*"
+ #. type: Content of: <refentry><refsect1><refsect2><title>
+ #: apt_preferences.5.xml:306
  msgid "How APT Interprets Priorities"
  msgstr "Wie APT Prioritäten interpretiert"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:271
+ #: apt_preferences.5.xml:314
  msgid "P &gt; 1000"
  msgstr "P &gt; 1000"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:272
+ #: apt_preferences.5.xml:315
  msgid ""
  "causes a version to be installed even if this constitutes a downgrade of the "
  "package"
@@@ -8331,12 -8562,12 +8665,12 @@@ msgstr "
  "des Pakets durchführt"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:276
+ #: apt_preferences.5.xml:319
  msgid "990 &lt; P &lt;=1000"
  msgstr "990 &lt; P &lt;=1000"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:277
+ #: apt_preferences.5.xml:320
  msgid ""
  "causes a version to be installed even if it does not come from the target "
  "release, unless the installed version is more recent"
@@@ -8345,12 -8576,12 +8679,12 @@@ msgstr "
  "Ziel-Release kommt, außer wenn die installierte Version aktueller ist"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:282
+ #: apt_preferences.5.xml:325
  msgid "500 &lt; P &lt;=990"
  msgstr "500 &lt; P &lt;=990"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:283
+ #: apt_preferences.5.xml:326
  msgid ""
  "causes a version to be installed unless there is a version available "
  "belonging to the target release or the installed version is more recent"
@@@ -8360,12 -8591,12 +8694,12 @@@ msgstr "
  "neuer ist"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:288
+ #: apt_preferences.5.xml:331
  msgid "100 &lt; P &lt;=500"
  msgstr "100 &lt; P &lt;=500"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:289
+ #: apt_preferences.5.xml:332
  msgid ""
  "causes a version to be installed unless there is a version available "
  "belonging to some other distribution or the installed version is more recent"
@@@ -8375,12 -8606,12 +8709,12 @@@ msgstr "
  "installierte Version neuer ist"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:294
+ #: apt_preferences.5.xml:337
  msgid "0 &lt; P &lt;=100"
  msgstr "0 &lt; P &lt;=100"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:295
+ #: apt_preferences.5.xml:338
  msgid ""
  "causes a version to be installed only if there is no installed version of "
  "the package"
@@@ -8389,17 -8620,17 +8723,17 @@@ msgstr "
  "installierte Version des Pakets gibt"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:299
+ #: apt_preferences.5.xml:342
  msgid "P &lt; 0"
  msgstr "P &lt; 0"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:300
+ #: apt_preferences.5.xml:343
  msgid "prevents the version from being installed"
  msgstr "verhindert das Installieren der Version"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:266
+ #: apt_preferences.5.xml:309
  msgid ""
  "Priorities (P) assigned in the APT preferences file must be positive or "
  "negative integers.  They are interpreted as follows (roughly speaking): "
@@@ -8410,7 -8641,7 +8744,7 @@@ msgstr "
  "(grob gesagt): <placeholder type=\"variablelist\" id=\"0\"/>"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:305
+ #: apt_preferences.5.xml:348
  msgid ""
  "If any specific-form records match an available package version then the "
  "first such record determines the priority of the package version.  Failing "
@@@ -8424,7 -8655,7 +8758,7 @@@ msgstr "
  "erste dieser Datensätze die Priorität der Paketversion fest."
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:311
+ #: apt_preferences.5.xml:354
  msgid ""
  "For example, suppose the APT preferences file contains the three records "
  "presented earlier:"
@@@ -8433,7 -8664,7 +8767,7 @@@ msgstr "
  "bereits gezeigten Datensätze:"
  
  #. type: Content of: <refentry><refsect1><refsect2><programlisting>
- #: apt_preferences.5.xml:315
+ #: apt_preferences.5.xml:358
  #, no-wrap
  msgid ""
  "Package: perl\n"
@@@ -8461,12 -8692,12 +8795,12 @@@ msgstr "
  "Pin-Priority: 50\n"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:328
+ #: apt_preferences.5.xml:371
  msgid "Then:"
  msgstr "Dann:"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
- #: apt_preferences.5.xml:330
+ #: apt_preferences.5.xml:373
  msgid ""
  "The most recent available version of the <literal>perl</literal> package "
  "will be installed, so long as that version's version number begins with "
@@@ -8481,7 -8712,7 +8815,7 @@@ msgstr "
  "dann wird von <literal>perl</literal> ein Downgrade durchgeführt."
  
  #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
- #: apt_preferences.5.xml:335
+ #: apt_preferences.5.xml:378
  msgid ""
  "A version of any package other than <literal>perl</literal> that is "
  "available from the local system has priority over other versions, even "
@@@ -8492,7 -8723,7 +8826,7 @@@ msgstr "
  "sogar wenn diese Versionen zum Ziel-Release gehören."
  
  #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
- #: apt_preferences.5.xml:339
+ #: apt_preferences.5.xml:382
  msgid ""
  "A version of a package whose origin is not the local system but some other "
  "site listed in &sources-list; and which belongs to an <literal>unstable</"
@@@ -8506,12 -8737,12 +8840,12 @@@ msgstr "
  "Pakets installiert ist."
  
  #. type: Content of: <refentry><refsect1><refsect2><title>
- #: apt_preferences.5.xml:349
+ #: apt_preferences.5.xml:392
  msgid "Determination of Package Version and Distribution Properties"
  msgstr "Festlegung von Paketversion und Distributions-Eigenschaften"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:351
+ #: apt_preferences.5.xml:394
  msgid ""
  "The locations listed in the &sources-list; file should provide "
  "<filename>Packages</filename> and <filename>Release</filename> files to "
@@@ -8522,27 -8753,27 +8856,27 @@@ msgstr "
  "bereitstellen, um die an diesem Ort verfügbaren Pakete zu beschreiben."
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:363
+ #: apt_preferences.5.xml:406
  msgid "the <literal>Package:</literal> line"
  msgstr "die <literal>Package:</literal>-Zeile"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:364
+ #: apt_preferences.5.xml:407
  msgid "gives the package name"
  msgstr "gibt den Paketnamen an"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:367 apt_preferences.5.xml:417
+ #: apt_preferences.5.xml:410 apt_preferences.5.xml:460
  msgid "the <literal>Version:</literal> line"
  msgstr "die <literal>Version:</literal>-Zeile"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:368
+ #: apt_preferences.5.xml:411
  msgid "gives the version number for the named package"
  msgstr "gibt die Versionsnummer für das genannte Paket an"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:355
+ #: apt_preferences.5.xml:398
  msgid ""
  "The <filename>Packages</filename> file is normally found in the directory "
  "<filename>.../dists/<replaceable>dist-name</replaceable>/"
@@@ -8563,12 -8794,12 +8897,12 @@@ msgstr "
  "Prioritäten relevant: <placeholder type=\"variablelist\" id=\"0\"/>"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:384
+ #: apt_preferences.5.xml:427
  msgid "the <literal>Archive:</literal> or <literal>Suite:</literal> line"
  msgstr "die <literal>Archive:</literal>- oder <literal>Suite:</literal>-Zeile"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:385
+ #: apt_preferences.5.xml:428
  msgid ""
  "names the archive to which all the packages in the directory tree belong.  "
  "For example, the line \"Archive: stable\" or \"Suite: stable\" specifies "
@@@ -8585,18 -8816,18 +8919,18 @@@ msgstr "
  "die folgende Zeile benötigen:"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
- #: apt_preferences.5.xml:395
+ #: apt_preferences.5.xml:438
  #, no-wrap
  msgid "Pin: release a=stable\n"
  msgstr "Pin: release a=stable\n"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:401
+ #: apt_preferences.5.xml:444
  msgid "the <literal>Codename:</literal> line"
  msgstr "die <literal>Codename:</literal>-Zeile"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:402
+ #: apt_preferences.5.xml:445
  msgid ""
  "names the codename to which all the packages in the directory tree belong.  "
  "For example, the line \"Codename: &testing-codename;\" specifies that all of "
@@@ -8613,13 -8844,13 +8947,13 @@@ msgstr "
  "anzugeben würde die folgende Zeile benötigen:"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
- #: apt_preferences.5.xml:411
+ #: apt_preferences.5.xml:454
  #, no-wrap
  msgid "Pin: release n=&testing-codename;\n"
  msgstr "Pin: release n=&testing-codename;\n"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:418
+ #: apt_preferences.5.xml:461
  msgid ""
  "names the release version.  For example, the packages in the tree might "
  "belong to Debian GNU/Linux release version 3.0.  Note that there is normally "
@@@ -8635,7 -8866,7 +8969,7 @@@ msgstr "
  "eine der folgenden Zeilen benötigen:"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
- #: apt_preferences.5.xml:427
+ #: apt_preferences.5.xml:470
  #, no-wrap
  msgid ""
  "Pin: release v=3.0\n"
@@@ -8647,12 -8878,12 +8981,12 @@@ msgstr "
  "Pin: release 3.0\n"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:436
+ #: apt_preferences.5.xml:479
  msgid "the <literal>Component:</literal> line"
  msgstr "die <literal>Component:</literal>-Zeile"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:437
+ #: apt_preferences.5.xml:480
  msgid ""
  "names the licensing component associated with the packages in the directory "
  "tree of the <filename>Release</filename> file.  For example, the line "
@@@ -8670,18 -8901,18 +9004,18 @@@ msgstr "
  "Zeilen benötigen:"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
- #: apt_preferences.5.xml:446
+ #: apt_preferences.5.xml:489
  #, no-wrap
  msgid "Pin: release c=main\n"
  msgstr "Pin: release c=main\n"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:452
+ #: apt_preferences.5.xml:495
  msgid "the <literal>Origin:</literal> line"
  msgstr "die <literal>Origin:</literal>-Zeile"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:453
+ #: apt_preferences.5.xml:496
  msgid ""
  "names the originator of the packages in the directory tree of the "
  "<filename>Release</filename> file.  Most commonly, this is <literal>Debian</"
@@@ -8693,18 -8924,18 +9027,18 @@@ msgstr "
  "in der APT-Einstellungsdatei anzugeben würde die folgende Zeile benötigen:"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
- #: apt_preferences.5.xml:459
+ #: apt_preferences.5.xml:502
  #, no-wrap
  msgid "Pin: release o=Debian\n"
  msgstr "Pin: release o=Debian\n"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:465
+ #: apt_preferences.5.xml:508
  msgid "the <literal>Label:</literal> line"
  msgstr "die <literal>Label:</literal>-Zeile"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:466
+ #: apt_preferences.5.xml:509
  msgid ""
  "names the label of the packages in the directory tree of the "
  "<filename>Release</filename> file.  Most commonly, this is <literal>Debian</"
@@@ -8717,13 -8948,13 +9051,13 @@@ msgstr "
  "die folgende Zeile benötigen:"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
- #: apt_preferences.5.xml:472
+ #: apt_preferences.5.xml:515
  #, no-wrap
  msgid "Pin: release l=Debian\n"
  msgstr "Pin: release l=Debian\n"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:373
+ #: apt_preferences.5.xml:416
  msgid ""
  "The <filename>Release</filename> file is normally found in the directory "
  "<filename>.../dists/<replaceable>dist-name</replaceable></filename>: for "
@@@ -8746,7 -8977,7 +9080,7 @@@ msgstr "
  "APT-Prioritäten relevant: <placeholder type=\"variablelist\" id=\"0\"/>"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:479
+ #: apt_preferences.5.xml:522
  msgid ""
  "All of the <filename>Packages</filename> and <filename>Release</filename> "
  "files retrieved from locations listed in the &sources-list; file are stored "
@@@ -8772,12 -9003,12 +9106,12 @@@ msgstr "
  "Distribution heruntergeladen wurde."
  
  #. type: Content of: <refentry><refsect1><refsect2><title>
- #: apt_preferences.5.xml:492
+ #: apt_preferences.5.xml:535
  msgid "Optional Lines in an APT Preferences Record"
  msgstr "Optionale Zeilen in einem APT-Einstellungsdatensatz"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:494
+ #: apt_preferences.5.xml:537
  msgid ""
  "Each record in the APT preferences file can optionally begin with one or "
  "more lines beginning with the word <literal>Explanation:</literal>.  This "
@@@ -8788,12 -9019,12 +9122,12 @@@ msgstr "
  "anfangen. Dieses stellt einen Platz für Kommentare bereit."
  
  #. type: Content of: <refentry><refsect1><refsect2><title>
- #: apt_preferences.5.xml:503
+ #: apt_preferences.5.xml:546
  msgid "Tracking Stable"
  msgstr "Stable verfolgen"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
- #: apt_preferences.5.xml:511
+ #: apt_preferences.5.xml:554
  #, no-wrap
  msgid ""
  "Explanation: Uninstall or do not install any Debian-originated\n"
@@@ -8817,7 -9048,7 +9151,7 @@@ msgstr "
  "Pin-Priority: -10\n"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:505
+ #: apt_preferences.5.xml:548
  msgid ""
  "The following APT preferences file will cause APT to assign a priority "
  "higher than the default (500) to all package versions belonging to a "
@@@ -8832,8 -9063,8 +9166,8 @@@ msgstr "
  "Distributionen gehören. <placeholder type=\"programlisting\" id=\"0\"/>"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
- #: apt_preferences.5.xml:528 apt_preferences.5.xml:574
- #: apt_preferences.5.xml:632
+ #: apt_preferences.5.xml:571 apt_preferences.5.xml:617
+ #: apt_preferences.5.xml:675
  #, no-wrap
  msgid ""
  "apt-get install <replaceable>package-name</replaceable>\n"
@@@ -8845,7 -9076,7 +9179,7 @@@ msgstr "
  "apt-get dist-upgrade\n"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:523
+ #: apt_preferences.5.xml:566
  msgid ""
  "With a suitable &sources-list; file and the above preferences file, any of "
  "the following commands will cause APT to upgrade to the latest "
@@@ -8858,13 -9089,13 +9192,13 @@@ msgstr "
  "\"programlisting\" id=\"0\"/>"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
- #: apt_preferences.5.xml:540
+ #: apt_preferences.5.xml:583
  #, no-wrap
  msgid "apt-get install <replaceable>package</replaceable>/testing\n"
  msgstr "apt-get install <replaceable>Paket</replaceable>/testing\n"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:534
+ #: apt_preferences.5.xml:577
  msgid ""
  "The following command will cause APT to upgrade the specified package to the "
  "latest version from the <literal>testing</literal> distribution; the package "
@@@ -8878,12 -9109,12 +9212,12 @@@ msgstr "
  "\" id=\"0\"/>"
  
  #. type: Content of: <refentry><refsect1><refsect2><title>
- #: apt_preferences.5.xml:546
+ #: apt_preferences.5.xml:589
  msgid "Tracking Testing or Unstable"
  msgstr "Testing oder Unstable verfolgen"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
- #: apt_preferences.5.xml:555
+ #: apt_preferences.5.xml:598
  #, no-wrap
  msgid ""
  "Package: *\n"
@@@ -8911,7 -9142,7 +9245,7 @@@ msgstr "
  "Pin-Priority: -10\n"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:548
+ #: apt_preferences.5.xml:591
  msgid ""
  "The following APT preferences file will cause APT to assign a high priority "
  "to package versions from the <literal>testing</literal> distribution, a "
@@@ -8928,7 -9159,7 +9262,7 @@@ msgstr "
  "\"programlisting\" id=\"0\"/>"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:569
+ #: apt_preferences.5.xml:612
  msgid ""
  "With a suitable &sources-list; file and the above preferences file, any of "
  "the following commands will cause APT to upgrade to the latest "
@@@ -8941,13 -9172,13 +9275,13 @@@ msgstr "
  "\"programlisting\" id=\"0\"/>"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
- #: apt_preferences.5.xml:589
+ #: apt_preferences.5.xml:632
  #, no-wrap
  msgid "apt-get install <replaceable>package</replaceable>/unstable\n"
  msgstr "apt-get install <replaceable>Paket</replaceable>/unstable\n"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:580
+ #: apt_preferences.5.xml:623
  msgid ""
  "The following command will cause APT to upgrade the specified package to the "
  "latest version from the <literal>unstable</literal> distribution.  "
@@@ -8967,12 -9198,12 +9301,12 @@@ msgstr "
  "\"programlisting\" id=\"0\"/>"
  
  #. type: Content of: <refentry><refsect1><refsect2><title>
- #: apt_preferences.5.xml:596
+ #: apt_preferences.5.xml:639
  msgid "Tracking the evolution of a codename release"
  msgstr "Die Entwicklung eines Codename-Releases verfolgen"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
- #: apt_preferences.5.xml:610
+ #: apt_preferences.5.xml:653
  #, no-wrap
  msgid ""
  "Explanation: Uninstall or do not install any Debian-originated package versions\n"
@@@ -9007,7 -9238,7 +9341,7 @@@ msgstr "
  "Pin-Priority: -10\n"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:598
+ #: apt_preferences.5.xml:641
  msgid ""
  "The following APT preferences file will cause APT to assign a priority "
  "higher than the default (500) to all package versions belonging to a "
@@@ -9033,7 -9264,7 +9367,7 @@@ msgstr "
  "benutzen. <placeholder type=\"programlisting\" id=\"0\"/>"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:627
+ #: apt_preferences.5.xml:670
  msgid ""
  "With a suitable &sources-list; file and the above preferences file, any of "
  "the following commands will cause APT to upgrade to the latest version(s) in "
@@@ -9046,13 -9277,13 +9380,13 @@@ msgstr "
  "literal> durchzuführen. <placeholder type=\"programlisting\" id=\"0\"/>"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
- #: apt_preferences.5.xml:647
+ #: apt_preferences.5.xml:690
  #, no-wrap
  msgid "apt-get install <replaceable>package</replaceable>/sid\n"
  msgstr "apt-get install <replaceable>Paket</replaceable>/sid\n"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:638
+ #: apt_preferences.5.xml:681
  msgid ""
  "The following command will cause APT to upgrade the specified package to the "
  "latest version from the <literal>sid</literal> distribution.  Thereafter, "
@@@ -9072,12 -9303,12 +9406,12 @@@ msgstr "
  "\"programlisting\" id=\"0\"/>"
  
  #. type: Content of: <refentry><refsect1><variablelist>
- #: apt_preferences.5.xml:656
+ #: apt_preferences.5.xml:699
  msgid "&file-preferences;"
  msgstr "&file-preferences;"
  
  #. type: Content of: <refentry><refsect1><para>
- #: apt_preferences.5.xml:662
+ #: apt_preferences.5.xml:705
  msgid "&apt-get; &apt-cache; &apt-conf; &sources-list;"
  msgstr "&apt-get; &apt-cache; &apt-conf; &sources-list;"
  
@@@ -9135,14 -9366,6 +9469,6 @@@ msgstr "sources.list.d
  
  #. type: Content of: <refentry><refsect1><para>
  #: sources.list.5.xml:54
- #, fuzzy
- #| msgid ""
- #| "The <filename>/etc/apt/sources.list.d</filename> directory provides a way "
- #| "to add sources.list entries in separate files.  The format is the same as "
- #| "for the regular <filename>sources.list</filename> file.  File names need "
- #| "to end with <filename>.list</filename> and may only contain letters (a-z "
- #| "and A-Z), digits (0-9), underscore (_), hyphen (-) and period (.) "
- #| "characters.  Otherwise they will be silently ignored."
  msgid ""
  "The <filename>/etc/apt/sources.list.d</filename> directory provides a way to "
  "add sources.list entries in separate files.  The format is the same as for "
@@@ -9158,8 -9381,10 +9484,10 @@@ msgstr "
  "Das Format ist das gleiche wie für die normale <filename>sources.list</"
  "filename>-Datei. Dateinamen müssen mit <filename>.list</filename> enden und "
  "können nur Buchstaben (a-z und A-Z), Ziffern (0-9), Unterstriche (_), "
- "Bindestriche (-) und Punkte (.) enthalten. Ansonsten werden sie "
- "stillschweigend ignoriert."
+ "Bindestriche (-) und Punkte (.) enthalten. Andernfalls wird APT einen "
+ "Hinweis ausgeben, dass es eine Datei ignoriert hat, falls die Datei nicht "
+ "auf ein Muster in der Konfigurationsliste <literal>Dir::Ignore-Files-"
+ "Silently</literal> passt – in diesem Fall wird sie stillschweigend ignoriert."
  
  #. type: Content of: <refentry><refsect1><title>
  #: sources.list.5.xml:65
@@@ -9168,17 -9393,6 +9496,6 @@@ msgstr "Die Typen deb und deb-src
  
  #. type: Content of: <refentry><refsect1><para>
  #: sources.list.5.xml:66
- #, fuzzy
- #| msgid ""
- #| "The <literal>deb</literal> type describes a typical two-level Debian "
- #| "archive, <filename>distribution/component</filename>. Typically, "
- #| "<literal>distribution</literal> is generally one of <literal>stable</"
- #| "literal> <literal>unstable</literal> or <literal>testing</literal> while "
- #| "component is one of <literal>main</literal> <literal>contrib</literal> "
- #| "<literal>non-free</literal> or <literal>non-us</literal>. The "
- #| "<literal>deb-src</literal> type describes a debian distribution's source "
- #| "code in the same form as the <literal>deb</literal> type.  A <literal>deb-"
- #| "src</literal> line is required to fetch source indexes."
  msgid ""
  "The <literal>deb</literal> type describes a typical two-level Debian "
  "archive, <filename>distribution/component</filename>. Typically, "
  msgstr ""
  "Der <literal>deb</literal>-Typ beschreibt ein typisches zweistufiges Debian-"
  "Archiv, <filename>Distribution/Komponente</filename>. <literal>Distribution</"
- "literal> ist typischerweise entweder <literal>stable</literal>, "
- "<literal>unstable</literal> oder <literal>testing</literal>, während "
- "Komponente entweder <literal>main</literal>, <literal>contrib</literal>, "
- "<literal>non-free</literal> oder <literal>non-us</literal> ist. Der "
- "<literal>deb-src</literal>-Typ beschreibt einen Quellcode einer Debian-"
- "Distribution in der gleichen Form wie den <literal>deb</literal>-Typ. Eine "
- "<literal>deb-src</literal>-Zeile wird benötigt, um Quellindizes "
- "herunterzuladen."
+ "literal> ist typischerweise ein Archivname wie <literal>stable</literal> "
+ "oder <literal>testing</literal> oder ein Kodename wie <literal>&stable-"
+ "codename;</literal> oder <literal>&testing-codename;</literal> während "
+ "Komponente entweder <literal>main</literal>, <literal>contrib</literal> oder "
+ "<literal>non-free</literal> ist. Der <literal>deb-src</literal>-Typ "
+ "beschreibt den Quellcode einer Debian-Distribution in der gleichen Form wie "
+ "den <literal>deb</literal>-Typ. Eine <literal>deb-src</literal>-Zeile wird "
+ "benötigt, um Quellindizes herunterzuladen."
  
  #. type: Content of: <refentry><refsect1><para>
  #: sources.list.5.xml:78
@@@ -9213,8 -9427,9 +9530,9 @@@ msgstr "
  
  #. type: Content of: <refentry><refsect1><literallayout>
  #: sources.list.5.xml:81
- #, no-wrap
- msgid "deb uri distribution [component1] [component2] [...]"
+ #, fuzzy, no-wrap
#| msgid "deb uri distribution [component1] [component2] [...]"
 -msgid "deb uri distribution [component1] [component2] [...]"
++msgid "deb [ options ] uri distribution [component1] [component2] [...]"
  msgstr "deb URI Distribution [Komponente1] [Komponente2] [...]"
  
  #. type: Content of: <refentry><refsect1><para>
@@@ -9286,6 -9501,6 +9604,38 @@@ msgstr "
  #. type: Content of: <refentry><refsect1><para>
  #: sources.list.5.xml:112
  msgid ""
++"<literal>options</literal> is always optional and needs to be surounded by "
++"square brackets. It can consist of multiple settings in the form "
++"<literal><replaceable>setting</replaceable>=<replaceable>value</"
++"replaceable></literal>.  Multiple settings are separated by spaces. The "
++"following settings are supported by APT, note through that unsupported "
++"settings will be ignored silently:"
++msgstr ""
++
++#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
++#: sources.list.5.xml:117
++msgid ""
++"<literal>arch=<replaceable>arch1</replaceable>,<replaceable>arch2</"
++"replaceable>,…</literal> can be used to specify for which architectures "
++"packages information should be downloaded. If this option is not set all "
++"architectures defined by the <literal>APT::Architectures</literal> option "
++"will be downloaded."
++msgstr ""
++
++#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
++#: sources.list.5.xml:121
++msgid ""
++"<literal>trusted=yes</literal> can be set to indicate that packages from "
++"this source are always authenificated even if the <filename>Release</"
++"filename> file is not signed or the signature can't be checked. This "
++"disables parts of &apt-secure; and should therefore only be used in a local "
++"and trusted context. <literal>trusted=no</literal> is the opposite which "
++"handles even correctly authenificated sources as not authenificated."
++msgstr ""
++
++#. type: Content of: <refentry><refsect1><para>
++#: sources.list.5.xml:128
++msgid ""
  "It is important to list sources in order of preference, with the most "
  "preferred source listed first. Typically this will result in sorting by "
  "speed from fastest to slowest (CD-ROM followed by hosts on a local network, "
@@@ -9298,12 -9513,12 +9648,12 @@@ msgstr "
  "Rechnern, zum Beispiel)."
  
  #. type: Content of: <refentry><refsect1><para>
--#: sources.list.5.xml:117
++#: sources.list.5.xml:133
  msgid "Some examples:"
  msgstr "Einige Beispiele:"
  
  #. type: Content of: <refentry><refsect1><literallayout>
--#: sources.list.5.xml:119
++#: sources.list.5.xml:135
  #, no-wrap
  msgid ""
  "deb http://ftp.debian.org/debian &stable-codename; main contrib non-free\n"
@@@ -9315,17 -9530,17 +9665,17 @@@ msgstr "
  "   "
  
  #. type: Content of: <refentry><refsect1><title>
--#: sources.list.5.xml:125
++#: sources.list.5.xml:141
  msgid "URI specification"
  msgstr "URI-Beschreibung"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: sources.list.5.xml:130
++#: sources.list.5.xml:146
  msgid "file"
  msgstr "file"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: sources.list.5.xml:132
++#: sources.list.5.xml:148
  msgid ""
  "The file scheme allows an arbitrary directory in the file system to be "
  "considered an archive. This is useful for NFS mounts and local mirrors or "
@@@ -9336,7 -9551,7 +9686,7 @@@ msgstr "
  "lokale Spiegel oder Archive."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: sources.list.5.xml:139
++#: sources.list.5.xml:155
  msgid ""
  "The cdrom scheme allows APT to use a local CDROM drive with media swapping. "
  "Use the &apt-cdrom; program to create cdrom entries in the source list."
@@@ -9346,7 -9561,7 +9696,7 @@@ msgstr "
  "der Quellenliste zu erstellen."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: sources.list.5.xml:146
++#: sources.list.5.xml:162
  msgid ""
  "The http scheme specifies an HTTP server for the archive. If an environment "
  "variable <envar>http_proxy</envar> is set with the format http://server:"
@@@ -9363,7 -9578,7 +9713,7 @@@ msgstr "
  "Beachten Sie, dass dies eine unsichere Authentifizierungsmethode ist."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: sources.list.5.xml:157
++#: sources.list.5.xml:173
  msgid ""
  "The ftp scheme specifies an FTP server for the archive. APT's FTP behavior "
  "is highly configurable; for more information see the &apt-conf; manual page. "
@@@ -9383,12 -9598,12 +9733,12 @@@ msgstr "
  "Konfigurationsdatei HTTP benutzen, werden ignoriert."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: sources.list.5.xml:166
++#: sources.list.5.xml:182
  msgid "copy"
  msgstr "copy"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: sources.list.5.xml:168
++#: sources.list.5.xml:184
  msgid ""
  "The copy scheme is identical to the file scheme except that packages are "
  "copied into the cache directory instead of used directly at their location.  "
@@@ -9400,17 -9615,17 +9750,17 @@@ msgstr "
  "Platte benutzen, um Dateien mit APT umherzukopieren."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: sources.list.5.xml:173
++#: sources.list.5.xml:189
  msgid "rsh"
  msgstr "rsh"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: sources.list.5.xml:173
++#: sources.list.5.xml:189
  msgid "ssh"
  msgstr "ssh"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: sources.list.5.xml:175
++#: sources.list.5.xml:191
  msgid ""
  "The rsh/ssh method invokes rsh/ssh to connect to a remote host as a given "
  "user and access the files. It is a good idea to do prior arrangements with "
@@@ -9426,12 -9641,12 +9776,12 @@@ msgstr "
  "aus der Ferne durchzuführen."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: sources.list.5.xml:183
++#: sources.list.5.xml:199
  msgid "more recognizable URI types"
  msgstr "weitere erkennbare URI-Typen"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: sources.list.5.xml:185
++#: sources.list.5.xml:201
  msgid ""
  "APT can be extended with more methods shipped in other optional packages "
  "which should follow the nameing scheme <literal>apt-transport-"
@@@ -9453,7 -9668,7 +9803,7 @@@ msgstr "
  "citerefentry>."
  
  #. type: Content of: <refentry><refsect1><para>
--#: sources.list.5.xml:127
++#: sources.list.5.xml:143
  msgid ""
  "The currently recognized URI types are cdrom, file, http, ftp, copy, ssh, "
  "rsh.  <placeholder type=\"variablelist\" id=\"0\"/>"
@@@ -9462,7 -9677,7 +9812,7 @@@ msgstr "
  "»ssh«, »rsh«. <placeholder type=\"variablelist\" id=\"0\"/>"
  
  #. type: Content of: <refentry><refsect1><para>
--#: sources.list.5.xml:199
++#: sources.list.5.xml:215
  msgid ""
  "Uses the archive stored locally (or NFS mounted) at /home/jason/debian for "
  "stable/main, stable/contrib, and stable/non-free."
@@@ -9471,37 -9686,37 +9821,60 @@@ msgstr "
  "jason/debian für stable/main, stable/contrib und stable/non-free."
  
  #. type: Content of: <refentry><refsect1><literallayout>
--#: sources.list.5.xml:201
++#: sources.list.5.xml:217
  #, no-wrap
  msgid "deb file:/home/jason/debian stable main contrib non-free"
  msgstr "deb file:/home/jason/debian stable main contrib non-free"
  
  #. type: Content of: <refentry><refsect1><para>
--#: sources.list.5.xml:203
++#: sources.list.5.xml:219
  msgid "As above, except this uses the unstable (development) distribution."
  msgstr ""
  "Wie oben, außer das dies die »unstable«- (Entwicklungs-) Distribution "
  "benutzt."
  
  #. type: Content of: <refentry><refsect1><literallayout>
--#: sources.list.5.xml:204
++#: sources.list.5.xml:220
  #, no-wrap
  msgid "deb file:/home/jason/debian unstable main contrib non-free"
  msgstr "deb file:/home/jason/debian unstable main contrib non-free"
  
  #. type: Content of: <refentry><refsect1><para>
--#: sources.list.5.xml:206
++#: sources.list.5.xml:222
  msgid "Source line for the above"
  msgstr "Quellzeile für obiges"
  
  #. type: Content of: <refentry><refsect1><literallayout>
--#: sources.list.5.xml:207
++#: sources.list.5.xml:223
  #, no-wrap
  msgid "deb-src file:/home/jason/debian unstable main contrib non-free"
  msgstr "deb-src file:/home/jason/debian unstable main contrib non-free"
  
  #. type: Content of: <refentry><refsect1><para>
--#: sources.list.5.xml:209
++#: sources.list.5.xml:225
++msgid ""
++"The first line gets package information for the architectures in "
++"<literal>APT::Architectures</literal> while the second always retrieves "
++"<literal>amd64</literal> and <literal>armel</literal>."
++msgstr ""
++
++#. type: Content of: <refentry><refsect1><literallayout>
++#: sources.list.5.xml:227
++#, fuzzy, no-wrap
++#| msgid ""
++#| "deb http://ftp.debian.org/debian &stable-codename; main contrib non-free\n"
++#| "deb http://security.debian.org/ &stable-codename;/updates main contrib non-free\n"
++#| "   "
++msgid ""
++"deb http://ftp.debian.org/debian &stable-codename; main\n"
++"deb [ arch=amd64,armel ] http://ftp.debian.org/debian &stable-codename; main"
++msgstr ""
++"deb http://ftp.debian.org/debian &stable-codename; main contrib non-free\n"
++"deb http://security.debian.org/ &stable-codename;/updates main contrib non-free\n"
++"   "
++
++#. type: Content of: <refentry><refsect1><para>
++#: sources.list.5.xml:230
  msgid ""
  "Uses HTTP to access the archive at archive.debian.org, and uses only the "
  "hamm/main area."
@@@ -9510,13 -9725,13 +9883,13 @@@ msgstr "
  "den hamm/main-Bereich zu benutzen."
  
  #. type: Content of: <refentry><refsect1><literallayout>
--#: sources.list.5.xml:211
++#: sources.list.5.xml:232
  #, no-wrap
  msgid "deb http://archive.debian.org/debian-archive hamm main"
  msgstr "deb http://archive.debian.org/debian-archive hamm main"
  
  #. type: Content of: <refentry><refsect1><para>
--#: sources.list.5.xml:213
++#: sources.list.5.xml:234
  msgid ""
  "Uses FTP to access the archive at ftp.debian.org, under the debian "
  "directory, and uses only the &stable-codename;/contrib area."
@@@ -9526,13 -9741,13 +9899,13 @@@ msgstr "
  "benutzen."
  
  #. type: Content of: <refentry><refsect1><literallayout>
--#: sources.list.5.xml:215
++#: sources.list.5.xml:236
  #, no-wrap
  msgid "deb ftp://ftp.debian.org/debian &stable-codename; contrib"
  msgstr "deb ftp://ftp.debian.org/debian &stable-codename; contrib"
  
  #. type: Content of: <refentry><refsect1><para>
--#: sources.list.5.xml:217
++#: sources.list.5.xml:238
  msgid ""
  "Uses FTP to access the archive at ftp.debian.org, under the debian "
  "directory, and uses only the unstable/contrib area. If this line appears as "
@@@ -9546,29 -9761,19 +9919,19 @@@ msgstr "
  "für beide Quellzeilen benutzt."
  
  #. type: Content of: <refentry><refsect1><literallayout>
--#: sources.list.5.xml:221
++#: sources.list.5.xml:242
  #, no-wrap
  msgid "deb ftp://ftp.debian.org/debian unstable contrib"
  msgstr "deb ftp://ftp.debian.org/debian unstable contrib"
  
  #. type: Content of: <refentry><refsect1><para><literallayout>
--#: sources.list.5.xml:230
- #, fuzzy, no-wrap
- #| msgid "deb http://ftp.de.debian.org/debian-non-US unstable/binary-$(ARCH)/"
++#: sources.list.5.xml:251
+ #, no-wrap
  msgid "deb http://ftp.tlh.debian.org/universe unstable/binary-$(ARCH)/"
- msgstr "deb http://ftp.de.debian.org/debian-non-US unstable/binary-$(ARCH)/"
+ msgstr "deb http://ftp.tlh.debian.org/universe unstable/binary-$(ARCH)/"
  
  #. type: Content of: <refentry><refsect1><para>
--#: sources.list.5.xml:223
- #, fuzzy
- #| msgid ""
- #| "Uses HTTP to access the archive at nonus.debian.org, under the debian-non-"
- #| "US directory, and uses only files found under <filename>unstable/binary-"
- #| "i386</filename> on i386 machines, <filename>unstable/binary-m68k</"
- #| "filename> on m68k, and so forth for other supported architectures. [Note "
- #| "this example only illustrates how to use the substitution variable; non-"
- #| "us is no longer structured like this] <placeholder type=\"literallayout\" "
- #| "id=\"0\"/>"
++#: sources.list.5.xml:244
  msgid ""
  "Uses HTTP to access the archive at ftp.tlh.debian.org, under the universe "
  "directory, and uses only files found under <filename>unstable/binary-i386</"
  "archives are not structured like this] <placeholder type=\"literallayout\" "
  "id=\"0\"/>"
  msgstr ""
- "Benutzt HTTP, um auf das Archiv auf nonus.debian.org unter dem debian-non-US-"
+ "Benutzt HTTP, um auf das Archiv auf ftp.tlh.debian.org unter dem universe-"
  "Verzeichnis zuzugreifen und benutzt nur Dateien, die unter "
  "<filename>unstable/binary-i386</filename> auf i386-Maschinen, "
- "<filename>unstable/binary-m68k</filename> auf m68k und so weiter für andere "
- "unterstützte Architekturen, gefunden werden. [Beachten Sie, dass dieses "
- "Beispiel nur anschaulich macht, wie die Platzhaltervariable benutzt wird. "
- "»non-us« ist nicht länger so strukturiert] <placeholder type=\"literallayout"
- "\" id=\"0\"/>"
+ "<filename>unstable/binary-amd64</filename> auf amd64 und so weiter für "
+ "andere unterstützte Architekturen, gefunden werden. [Beachten Sie, dass "
+ "dieses Beispiel nur anschaulich macht, wie die Platzhaltervariable benutzt "
+ "wird. Offizielle Debian-Archive sind nicht so strukturiert.] <placeholder "
+ "type=\"literallayout\" id=\"0\"/>"
  
  #. type: Content of: <refentry><refsect1><para>
--#: sources.list.5.xml:235
++#: sources.list.5.xml:256
  msgid "&apt-cache; &apt-conf;"
  msgstr "&apt-cache; &apt-conf;"
  
@@@ -11145,6 -11350,60 +11508,47 @@@ msgstr "  # apt-get -o dir::cache::arch
  msgid "Which will use the already fetched archives on the disc."
  msgstr "Es wird die bereits auf die Platte heruntergeladenen Archive benutzen."
  
 -#, fuzzy
 -#~| msgid "<option>--recurse</option>"
 -#~ msgid "<option>--host-architecture</option>"
 -#~ msgstr "<option>--recurse</option>"
 -
 -#, fuzzy
 -#~| msgid "Max-ValidTime"
 -#~ msgid "Min-ValidTime"
 -#~ msgstr "Max-ValidTime"
++#~ msgid ""
++#~ "Update the local keyring with the keyring of Debian archive keys and "
++#~ "removes from the keyring the archive keys which are no longer valid."
++#~ msgstr ""
++#~ "Den lokalen Schlüsselbund mit dem Schlüsselbund der Debian-"
++#~ "Archivschlüssel aktualisieren und aus dem Schlüsselbund die "
++#~ "Archivschlüssel entfernen, die nicht länger gültig sind."
+ #, fuzzy
+ #~| msgid ""
+ #~| "Seconds the Release file should be considered valid after it was "
+ #~| "created. The default is \"for ever\" (0) if the Release file of the "
+ #~| "archive doesn't include a <literal>Valid-Until</literal> header.  If it "
+ #~| "does then this date is the default. The date from the Release file or "
+ #~| "the date specified by the creation time of the Release file "
+ #~| "(<literal>Date</literal> header) plus the seconds specified with this "
+ #~| "options are used to check if the validation of a file has expired by "
+ #~| "using the earlier date of the two. Archive specific settings can be made "
+ #~| "by appending the label of the archive to the option name."
+ #~ msgid ""
 -#~ "Minimum of seconds the Release file should be considered valid after it "
 -#~ "was created (indicated by the <literal>Date</literal> header).  Use this "
 -#~ "if you need to use a seldomly updated (local) mirror of a more regular "
 -#~ "updated archive with a <literal>Valid-Until</literal> header instead of "
 -#~ "competely disabling the expiration date checking.  Archive specific "
 -#~ "settings can and should be used by appending the label of the archive to "
 -#~ "the option name."
++#~ "Seconds the Release file should be considered valid after it was created. "
++#~ "The default is \"for ever\" (0) if the Release file of the archive "
++#~ "doesn't include a <literal>Valid-Until</literal> header.  If it does then "
++#~ "this date is the default. The date from the Release file or the date "
++#~ "specified by the creation time of the Release file (<literal>Date</"
++#~ "literal> header) plus the seconds specified with this options are used to "
++#~ "check if the validation of a file has expired by using the earlier date "
++#~ "of the two. Archive specific settings can be made by appending the label "
++#~ "of the archive to the option name."
+ #~ msgstr ""
+ #~ "Sekunden, die die Release-Datei als gültig betrachtet werden sollte, "
+ #~ "nachdem sie erzeugt wurde. Vorgabe ist »für immer« (0), falls die Release-"
+ #~ "Datei des Archivs keine <literal>Valid-Until</literal>-Kopfzeile enthält. "
+ #~ "Falls dies so ist, ist dieses Datum vorgegeben. Das Datum aus der Release-"
+ #~ "Datei oder das Datum, das durch die Erstellungszeit der Release-Datei "
+ #~ "angegeben wurde (<literal>Date</literal>-Kopfzeile) plus die mit diesen "
+ #~ "Optionen angegebenen Sekunden werden benutzt, um zu prüfen, ob die "
+ #~ "Bestätigung einer Datei abgelaufen ist indem das neuere Datum der beiden "
+ #~ "benutzt wird. Archivspezifische Einstellungen können durch Anhängen des "
+ #~ "Archivetiketts an die Option »name« vorgenommen werden."
 -#, fuzzy
 -#~| msgid ""
 -#~| "deb http://ftp.debian.org/debian &stable-codename; main contrib non-free\n"
 -#~| "deb http://security.debian.org/ &stable-codename;/updates main contrib non-free\n"
 -#~| "   "
 -#~ msgid ""
 -#~ "deb http://ftp.debian.org/debian &stable-codename; main\n"
 -#~ "deb [ arch=amd64,armel ] http://ftp.debian.org/debian &stable-codename; main"
 -#~ msgstr ""
 -#~ "deb http://ftp.debian.org/debian &stable-codename; main contrib non-free\n"
 -#~ "deb http://security.debian.org/ &stable-codename;/updates main contrib non-free\n"
 -#~ "   "
 -
  #~ msgid "<option>--md5</option>"
  #~ msgstr "<option>--md5</option>"
  
  #~ "möglich ist. Konfigurationselement: <literal>APT::FTPArchive::MD5</"
  #~ "literal>"
  
+ #~ msgid "unmarkauto"
+ #~ msgstr "unmarkauto"
+ #~ msgid "<option>-h</option>"
+ #~ msgstr "<option>-h</option>"
+ #~ msgid "<option>--help</option>"
+ #~ msgstr "<option>--help</option>"
+ #~ msgid "Show a short usage summary."
+ #~ msgstr "Eine kurze Zusammenfassung anzeigen."
+ #~ msgid "<option>-v</option>"
+ #~ msgstr "<option>-v</option>"
+ #~ msgid "<option>--version</option>"
+ #~ msgstr "<option>--version</option>"
+ #~ msgid "Show the program version."
+ #~ msgstr "Die Programmversion anzeigen."
  #~ msgid "to the version that is already installed (if any)."
  #~ msgstr "zu der Version, die bereits installiert ist (wenn vorhanden)."
  
diff --combined doc/po/es.po
index 6b9b667e2330a745777b36a475f3d61a97e2cc09,db8b9a8481488c9586fe8034f194203ba275f436..652d7d025004beea83b63a14d71ee3a98efc87ba
@@@ -36,7 -36,7 +36,7 @@@
  msgid ""
  msgstr ""
  "Project-Id-Version: apt 0.7.25\n"
- "POT-Creation-Date: 2011-04-05 10:22+0300\n"
 -"POT-Creation-Date: 2011-06-08 16:54+0300\n"
++"POT-Creation-Date: 2011-11-10 16:42+0100\n"
  "PO-Revision-Date: 2010-08-25 03:25+0200\n"
  "Last-Translator: Omar Campagne <ocampagne@gmail.com>\n"
  "Language-Team: Debian l10n Spanish <debian-l10n-spanish@lists.debian.org>\n"
@@@ -809,8 -809,8 +809,8 @@@ msgstr "
  
  #. type: Content of: <refentry><refsect1><title>
  #: apt-cache.8.xml:64 apt-cdrom.8.xml:50 apt-config.8.xml:50
--#: apt-extracttemplates.1.xml:46 apt-ftparchive.1.xml:59 apt-get.8.xml:114
- #: apt-key.8.xml:38 apt-mark.8.xml:55 apt-secure.8.xml:43
++#: apt-extracttemplates.1.xml:46 apt-ftparchive.1.xml:59 apt-get.8.xml:121
+ #: apt-key.8.xml:38 apt-mark.8.xml:56 apt-secure.8.xml:43
  #: apt-sortpkgs.1.xml:47 apt.conf.5.xml:42 apt_preferences.5.xml:36
  #: sources.list.5.xml:36
  msgid "Description"
@@@ -830,7 -830,7 +830,7 @@@ msgstr "
  "genera información interesante a partir de los metadatos del paquete."
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt-cache.8.xml:70 apt-get.8.xml:120
++#: apt-cache.8.xml:70 apt-get.8.xml:127
  msgid ""
  "Unless the <option>-h</option>, or <option>--help</option> option is given, "
  "one of the commands below must be present."
@@@ -1327,8 -1327,8 +1327,8 @@@ msgstr "
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
  #: apt-cache.8.xml:278 apt-config.8.xml:96 apt-extracttemplates.1.xml:59
- #: apt-ftparchive.1.xml:525 apt-get.8.xml:331 apt-mark.8.xml:92
 -#: apt-ftparchive.1.xml:525 apt-get.8.xml:331 apt-mark.8.xml:126
--#: apt-sortpkgs.1.xml:57 apt.conf.5.xml:560 apt.conf.5.xml:582
++#: apt-ftparchive.1.xml:525 apt-get.8.xml:342 apt-mark.8.xml:126
++#: apt-sortpkgs.1.xml:57 apt.conf.5.xml:577 apt.conf.5.xml:599
  msgid "options"
  msgstr "Opciones"
  
@@@ -1354,7 -1354,7 +1354,7 @@@ msgstr "
  "configuración: <literal>Dir::Cache::pkgcache</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-cache.8.xml:288 apt-ftparchive.1.xml:571 apt-get.8.xml:393
++#: apt-cache.8.xml:288 apt-ftparchive.1.xml:572 apt-get.8.xml:404
  #: apt-sortpkgs.1.xml:61
  msgid "<option>-s</option>"
  msgstr "<option>-s</option>"
@@@ -1380,12 -1380,12 +1380,12 @@@ msgstr "
  "Opción de configuración: <literal>Dir::Cache::srcpkgcache</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-cache.8.xml:296 apt-ftparchive.1.xml:545 apt-get.8.xml:383
++#: apt-cache.8.xml:296 apt-ftparchive.1.xml:546 apt-get.8.xml:394
  msgid "<option>-q</option>"
  msgstr "<option>-q</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-cache.8.xml:296 apt-ftparchive.1.xml:545 apt-get.8.xml:383
++#: apt-cache.8.xml:296 apt-ftparchive.1.xml:546 apt-get.8.xml:394
  msgid "<option>--quiet</option>"
  msgstr "<option>--quiet</option>"
  
@@@ -1466,9 -1466,9 +1466,16 @@@ msgstr "<option>--no-enhances</option>
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #: apt-cache.8.xml:317
++#, fuzzy
++#| msgid ""
++#| "Per default the <literal>depends</literal> and <literal>rdepends</"
++#| "literal> print all dependencies. This can be twicked with these flags "
++#| "which will omit the specified dependency type.  Configuration Item: "
++#| "<literal>APT::Cache::Show<replaceable>DependencyType</replaceable></"
++#| "literal> e.g. <literal>APT::Cache::ShowRecommends</literal>."
  msgid ""
  "Per default the <literal>depends</literal> and <literal>rdepends</literal> "
--"print all dependencies. This can be twicked with these flags which will omit "
++"print all dependencies. This can be tweaked with these flags which will omit "
  "the specified dependency type.  Configuration Item: <literal>APT::Cache::"
  "Show<replaceable>DependencyType</replaceable></literal> e.g. <literal>APT::"
  "Cache::ShowRecommends</literal>."
@@@ -1481,7 -1481,7 +1488,7 @@@ msgstr "
  "<literal>APT::Cache::ShowRecommends</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-cache.8.xml:323 apt-cdrom.8.xml:124 apt-get.8.xml:350
++#: apt-cache.8.xml:323 apt-cdrom.8.xml:124 apt-get.8.xml:361
  msgid "<option>-f</option>"
  msgstr "<option>-f</option>"
  
@@@ -1500,7 -1500,7 +1507,8 @@@ msgstr "
  "Opción de configuración: <literal>APT::Cache::ShowFull</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-cache.8.xml:328 apt-cdrom.8.xml:134 apt-ftparchive.1.xml:583
++#: apt-cache.8.xml:328 apt-cdrom.8.xml:134 apt-ftparchive.1.xml:584
++#: apt-get.8.xml:452
  msgid "<option>-a</option>"
  msgstr "<option>-a</option>"
  
@@@ -1617,14 -1617,14 +1625,14 @@@ msgstr "
  
  #. type: Content of: <refentry><refsect1><variablelist>
  #: apt-cache.8.xml:367 apt-cdrom.8.xml:153 apt-config.8.xml:101
--#: apt-extracttemplates.1.xml:70 apt-ftparchive.1.xml:611 apt-get.8.xml:570
- #: apt-sortpkgs.1.xml:67
++#: apt-extracttemplates.1.xml:70 apt-ftparchive.1.xml:612 apt-get.8.xml:596
+ #: apt-mark.8.xml:140 apt-sortpkgs.1.xml:67
  msgid "&apt-commonoptions;"
  msgstr "&apt-commonoptions;"
  
  #. type: Content of: <refentry><refsect1><title>
- #: apt-cache.8.xml:372 apt-get.8.xml:575 apt-key.8.xml:156 apt-mark.8.xml:125
- #: apt.conf.5.xml:1093 apt_preferences.5.xml:654
 -#: apt-cache.8.xml:372 apt-get.8.xml:575 apt-key.8.xml:172 apt-mark.8.xml:144
 -#: apt.conf.5.xml:1093 apt_preferences.5.xml:697
++#: apt-cache.8.xml:372 apt-get.8.xml:601 apt-key.8.xml:175 apt-mark.8.xml:144
++#: apt.conf.5.xml:1110 apt_preferences.5.xml:697
  msgid "Files"
  msgstr "Ficheros"
  
@@@ -1635,10 -1635,10 +1643,10 @@@ msgstr "&file-sourceslist; &file-statel
  
  #. type: Content of: <refentry><refsect1><title>
  #: apt-cache.8.xml:379 apt-cdrom.8.xml:158 apt-config.8.xml:106
--#: apt-extracttemplates.1.xml:77 apt-ftparchive.1.xml:627 apt-get.8.xml:585
- #: apt-key.8.xml:177 apt-mark.8.xml:131 apt-secure.8.xml:185
- #: apt-sortpkgs.1.xml:72 apt.conf.5.xml:1099 apt_preferences.5.xml:661
 -#: apt-key.8.xml:193 apt-mark.8.xml:150 apt-secure.8.xml:185
 -#: apt-sortpkgs.1.xml:72 apt.conf.5.xml:1099 apt_preferences.5.xml:704
--#: sources.list.5.xml:234
++#: apt-extracttemplates.1.xml:77 apt-ftparchive.1.xml:628 apt-get.8.xml:611
++#: apt-key.8.xml:196 apt-mark.8.xml:150 apt-secure.8.xml:185
++#: apt-sortpkgs.1.xml:72 apt.conf.5.xml:1116 apt_preferences.5.xml:704
++#: sources.list.5.xml:255
  msgid "See Also"
  msgstr "Véase también"
  
@@@ -1649,8 -1649,8 +1657,8 @@@ msgstr "&apt-conf;, &sources-list;, &ap
  
  #. type: Content of: <refentry><refsect1><title>
  #: apt-cache.8.xml:384 apt-cdrom.8.xml:163 apt-config.8.xml:111
--#: apt-extracttemplates.1.xml:81 apt-ftparchive.1.xml:631 apt-get.8.xml:591
- #: apt-mark.8.xml:135 apt-sortpkgs.1.xml:76
++#: apt-extracttemplates.1.xml:81 apt-ftparchive.1.xml:632 apt-get.8.xml:617
+ #: apt-mark.8.xml:154 apt-sortpkgs.1.xml:76
  msgid "Diagnostics"
  msgstr "Diagnósticos"
  
@@@ -1779,12 -1779,12 +1787,12 @@@ msgstr "
  "option>. <placeholder type=\"variablelist\" id=\"0\"/>"
  
  #. type: Content of: <refentry><refsect1><title>
- #: apt-cdrom.8.xml:94 apt-key.8.xml:142
 -#: apt-cdrom.8.xml:94 apt-key.8.xml:158
++#: apt-cdrom.8.xml:94 apt-key.8.xml:161
  msgid "Options"
  msgstr "Opciones"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-cdrom.8.xml:98 apt-ftparchive.1.xml:539 apt-get.8.xml:345
++#: apt-cdrom.8.xml:98 apt-ftparchive.1.xml:540 apt-get.8.xml:356
  msgid "<option>-d</option>"
  msgstr "<option>-d</option>"
  
@@@ -1828,7 -1828,7 +1836,7 @@@ msgstr "
  "literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-cdrom.8.xml:116 apt-get.8.xml:364
++#: apt-cdrom.8.xml:116 apt-get.8.xml:375
  msgid "<option>-m</option>"
  msgstr "<option>-m</option>"
  
@@@ -1883,17 -1883,17 +1891,17 @@@ msgstr "
  "pero encontrará todo el contenido."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-cdrom.8.xml:143 apt-get.8.xml:395
++#: apt-cdrom.8.xml:143 apt-get.8.xml:406
  msgid "<option>--just-print</option>"
  msgstr "<option>--just-print</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-cdrom.8.xml:144 apt-get.8.xml:397
++#: apt-cdrom.8.xml:144 apt-get.8.xml:408
  msgid "<option>--recon</option>"
  msgstr "<option>--recon</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-cdrom.8.xml:145 apt-get.8.xml:398
++#: apt-cdrom.8.xml:145 apt-get.8.xml:409
  msgid "<option>--no-act</option>"
  msgstr "<option>--no-act</option>"
  
@@@ -2041,7 -2041,7 +2049,7 @@@ msgid "Just show the contents of the co
  msgstr "Sólo muestra el contenido del espacio de configuración."
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt-config.8.xml:107 apt-extracttemplates.1.xml:78 apt-ftparchive.1.xml:628
++#: apt-config.8.xml:107 apt-extracttemplates.1.xml:78 apt-ftparchive.1.xml:629
  #: apt-sortpkgs.1.xml:73
  msgid "&apt-conf;"
  msgstr "&apt-conf;"
@@@ -2120,7 -2120,7 +2128,7 @@@ msgstr "
  "<filename>paquete.config.XXXX</filename>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-extracttemplates.1.xml:63 apt-get.8.xml:504
++#: apt-extracttemplates.1.xml:63 apt-get.8.xml:530
  msgid "<option>-t</option>"
  msgstr "<option>-t</option>"
  
@@@ -2397,7 -2397,7 +2405,7 @@@ msgstr "
  "configuración necesaria."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-ftparchive.1.xml:145 apt-get.8.xml:287
++#: apt-ftparchive.1.xml:145 apt-get.8.xml:298
  msgid "clean"
  msgstr "clean"
  
@@@ -2971,8 -2971,8 +2979,8 @@@ msgstr "
  "distribución, generalmente es similar a <literal>main contrib non-free</"
  "literal>."
  
--#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
--#: apt-ftparchive.1.xml:394
++#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
++#: apt-ftparchive.1.xml:394 apt.conf.5.xml:157
  msgid "Architectures"
  msgstr "Arquitecturas"
  
@@@ -3214,10 -3214,10 +3222,10 @@@ msgid "
  "Configuration Items: <literal>APT::FTPArchive::<replaceable>Checksum</"
  "replaceable></literal> and <literal>APT::FTPArchive::<replaceable>Index</"
  "replaceable>::<replaceable>Checksum</replaceable></literal> where "
--"<literal>Index</literal> can be <literal>Packages</literal>, "
--"<literal>Sources</literal> or <literal>Release</literal> and "
--"<literal>Checksum</literal> can be <literal>MD5</literal>, <literal>SHA1</"
--"literal> or <literal>SHA256</literal>."
++"<literal><replaceable>Index</replaceable></literal> can be "
++"<literal>Packages</literal>, <literal>Sources</literal> or <literal>Release</"
++"literal> and <literal><replaceable>Checksum</replaceable></literal> can be "
++"<literal>MD5</literal>, <literal>SHA1</literal> or <literal>SHA256</literal>."
  msgstr ""
  "Los valores para los campos de metadatos adicionales en el fichero «Release» "
  "se toman de las variables correspondientes en <literal>APT::FTPArchive::"
  "<literal>Components</literal> y <literal>Description</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-ftparchive.1.xml:539
++#: apt-ftparchive.1.xml:540
  msgid "<option>--db</option>"
  msgstr "<option>--db</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-ftparchive.1.xml:541
++#: apt-ftparchive.1.xml:542
  msgid ""
  "Use a binary caching DB. This has no effect on the generate command.  "
  "Configuration Item: <literal>APT::FTPArchive::DB</literal>."
@@@ -3243,7 -3243,7 +3251,7 @@@ msgstr "
  "«generate». Opción de configuración: <literal>APT::FTPArchive::DB</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-ftparchive.1.xml:547
++#: apt-ftparchive.1.xml:548
  msgid ""
  "Quiet; produces output suitable for logging, omitting progress indicators.  "
  "More q's will produce more quiet up to a maximum of 2. You can also use "
@@@ -3257,12 -3257,12 +3265,12 @@@ msgstr "
  "configuración. Opción de configuración: <literal>quiet</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-ftparchive.1.xml:553
++#: apt-ftparchive.1.xml:554
  msgid "<option>--delink</option>"
  msgstr "<option>--delink</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-ftparchive.1.xml:555
++#: apt-ftparchive.1.xml:556
  msgid ""
  "Perform Delinking. If the <literal>External-Links</literal> setting is used "
  "then this option actually enables delinking of the files. It defaults to on "
@@@ -3275,12 -3275,12 +3283,12 @@@ msgstr "
  "Opción de configuración: <literal>APT::FTPArchive::DeLinkAct</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-ftparchive.1.xml:561
++#: apt-ftparchive.1.xml:562
  msgid "<option>--contents</option>"
  msgstr "<option>--contents</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-ftparchive.1.xml:563
++#: apt-ftparchive.1.xml:564
  msgid ""
  "Perform contents generation. When this option is set and package indexes are "
  "being generated with a cache DB then the file listing will also be extracted "
@@@ -3297,12 -3297,12 +3305,12 @@@ msgstr "
  "Contents</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-ftparchive.1.xml:571
++#: apt-ftparchive.1.xml:572
  msgid "<option>--source-override</option>"
  msgstr "<option>--source-override</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-ftparchive.1.xml:573
++#: apt-ftparchive.1.xml:574
  msgid ""
  "Select the source override file to use with the <literal>sources</literal> "
  "command.  Configuration Item: <literal>APT::FTPArchive::SourceOverride</"
@@@ -3313,12 -3313,12 +3321,12 @@@ msgstr "
  "FTPArchive::SourceOverride</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-ftparchive.1.xml:577
++#: apt-ftparchive.1.xml:578
  msgid "<option>--readonly</option>"
  msgstr "<option>--readonly</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-ftparchive.1.xml:579
++#: apt-ftparchive.1.xml:580
  msgid ""
  "Make the caching databases read only.  Configuration Item: <literal>APT::"
  "FTPArchive::ReadOnlyDB</literal>."
@@@ -3327,12 -3327,12 +3335,12 @@@ msgstr "
  "Opción de configuración: <literal>APT::FTPArchive::ReadOnlyDB</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-ftparchive.1.xml:583
++#: apt-ftparchive.1.xml:584
  msgid "<option>--arch</option>"
  msgstr "<option>--arch</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-ftparchive.1.xml:584
++#: apt-ftparchive.1.xml:585
  msgid ""
  "Accept in the <literal>packages</literal> and <literal>contents</literal> "
  "commands only package files matching <literal>*_arch.deb</literal> or "
@@@ -3346,12 -3346,12 +3354,12 @@@ msgstr "
  "FTPArchive::Architecture</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-ftparchive.1.xml:590
++#: apt-ftparchive.1.xml:591
  msgid "<option>APT::FTPArchive::AlwaysStat</option>"
  msgstr "<option>APT::FTPArchive::AlwaysStat</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-ftparchive.1.xml:592
++#: apt-ftparchive.1.xml:593
  msgid ""
  "&apt-ftparchive; caches as much as possible of metadata in a cachedb. If "
  "packages are recompiled and/or republished with the same version again, this "
@@@ -3375,12 -3375,12 +3383,12 @@@ msgstr "
  "comprobaciones adicionales son innecesarias."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-ftparchive.1.xml:602
++#: apt-ftparchive.1.xml:603
  msgid "<option>APT::FTPArchive::LongDescription</option>"
  msgstr "<option>APT::FTPArchive::LongDescription</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-ftparchive.1.xml:604
++#: apt-ftparchive.1.xml:605
  msgid ""
  "This configuration option defaults to \"<literal>true</literal>\" and should "
  "only be set to <literal>\"false\"</literal> if the Archive generated with "
@@@ -3396,19 -3396,19 +3404,19 @@@ msgstr "
  "con la orden «generate»."
  
  #. type: Content of: <refentry><refsect1><title>
- #: apt-ftparchive.1.xml:616 apt.conf.5.xml:1087 apt_preferences.5.xml:501
 -#: apt-ftparchive.1.xml:616 apt.conf.5.xml:1087 apt_preferences.5.xml:544
--#: sources.list.5.xml:198
++#: apt-ftparchive.1.xml:617 apt.conf.5.xml:1104 apt_preferences.5.xml:544
++#: sources.list.5.xml:214
  msgid "Examples"
  msgstr "Ejemplos"
  
  #. type: Content of: <refentry><refsect1><para><programlisting>
--#: apt-ftparchive.1.xml:622
++#: apt-ftparchive.1.xml:623
  #, no-wrap
  msgid "<command>apt-ftparchive</command> packages <replaceable>directory</replaceable> | <command>gzip</command> > <filename>Packages.gz</filename>\n"
  msgstr "<command>apt-ftparchive</command> packages <replaceable>directorio</replaceable> | <command>gzip</command> > <filename>Packages.gz</filename>\n"
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt-ftparchive.1.xml:618
++#: apt-ftparchive.1.xml:619
  msgid ""
  "To create a compressed Packages file for a directory containing binary "
  "packages (.deb): <placeholder type=\"programlisting\" id=\"0\"/>"
@@@ -3417,7 -3417,7 +3425,7 @@@ msgstr "
  "paquetes binarios («.deb»): <placeholder type=\"programlisting\" id=\"0\"/>"
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt-ftparchive.1.xml:632
++#: apt-ftparchive.1.xml:633
  msgid ""
  "<command>apt-ftparchive</command> returns zero on normal operation, decimal "
  "100 on error."
@@@ -3448,15 -3448,15 +3456,45 @@@ msgstr "
  
  #. type: Content of: <refentry><refsynopsisdiv><cmdsynopsis>
  #: apt-get.8.xml:39
++#, fuzzy
++#| msgid ""
++#| "<command>apt-get</command> <arg><option>-sqdyfmubV</option></arg> <arg> "
++#| "<option>-o= <replaceable>config_string</replaceable> </option> </arg> "
++#| "<arg> <option>-c= <replaceable>config_file</replaceable> </option> </arg> "
++#| "<arg> <option>-t=</option> <arg choice='plain'> "
++#| "<replaceable>target_release</replaceable> </arg> </arg> <group choice="
++#| "\"req\"> <arg choice='plain'>update</arg> <arg choice='plain'>upgrade</"
++#| "arg> <arg choice='plain'>dselect-upgrade</arg> <arg choice='plain'>dist-"
++#| "upgrade</arg> <arg choice='plain'>install <arg choice=\"plain\" rep="
++#| "\"repeat\"><replaceable>pkg</replaceable> <arg> <group choice='req'> <arg "
++#| "choice='plain'> =<replaceable>pkg_version_number</replaceable> </arg> "
++#| "<arg choice='plain'> /<replaceable>target_release</replaceable> </arg> </"
++#| "group> </arg> </arg> </arg> <arg choice='plain'>remove <arg choice=\"plain"
++#| "\" rep=\"repeat\"><replaceable>pkg</replaceable></arg></arg> <arg "
++#| "choice='plain'>purge <arg choice=\"plain\" rep=\"repeat"
++#| "\"><replaceable>pkg</replaceable></arg></arg> <arg choice='plain'>source "
++#| "<arg choice=\"plain\" rep=\"repeat\"><replaceable>pkg</replaceable> <arg> "
++#| "<group choice='req'> <arg choice='plain'> "
++#| "=<replaceable>pkg_version_number</replaceable> </arg> <arg "
++#| "choice='plain'> /<replaceable>target_release</replaceable> </arg> </"
++#| "group> </arg> </arg> </arg> <arg choice='plain'>build-dep <arg choice="
++#| "\"plain\" rep=\"repeat\"><replaceable>pkg</replaceable></arg></arg> <arg "
++#| "choice='plain'>check</arg> <arg choice='plain'>clean</arg> <arg "
++#| "choice='plain'>autoclean</arg> <arg choice='plain'>autoremove</arg> <arg "
++#| "choice='plain'> <group choice='req'> <arg choice='plain'>-v</arg> <arg "
++#| "choice='plain'>--version</arg> </group> </arg> <arg choice='plain'> "
++#| "<group choice='req'> <arg choice='plain'>-h</arg> <arg choice='plain'>--"
++#| "help</arg> </group> </arg> </group>"
  msgid ""
  "<command>apt-get</command> <arg><option>-sqdyfmubV</option></arg> <arg> "
  "<option>-o= <replaceable>config_string</replaceable> </option> </arg> <arg> "
  "<option>-c= <replaceable>config_file</replaceable> </option> </arg> <arg> "
  "<option>-t=</option> <arg choice='plain'> <replaceable>target_release</"
--"replaceable> </arg> </arg> <group choice=\"req\"> <arg "
--"choice='plain'>update</arg> <arg choice='plain'>upgrade</arg> <arg "
--"choice='plain'>dselect-upgrade</arg> <arg choice='plain'>dist-upgrade</arg> "
--"<arg choice='plain'>install <arg choice=\"plain\" rep=\"repeat"
++"replaceable> </arg> </arg> <arg> <option>-a=</option> <arg choice='plain'> "
++"<replaceable>default_architecture</replaceable> </arg> </arg> <group choice="
++"\"req\"> <arg choice='plain'>update</arg> <arg choice='plain'>upgrade</arg> "
++"<arg choice='plain'>dselect-upgrade</arg> <arg choice='plain'>dist-upgrade</"
++"arg> <arg choice='plain'>install <arg choice=\"plain\" rep=\"repeat"
  "\"><replaceable>pkg</replaceable> <arg> <group choice='req'> <arg "
  "choice='plain'> =<replaceable>pkg_version_number</replaceable> </arg> <arg "
  "choice='plain'> /<replaceable>target_release</replaceable> </arg> </group> </"
@@@ -3505,7 -3505,7 +3543,7 @@@ msgstr "
  "</group> </arg> </group>"
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt-get.8.xml:115
++#: apt-get.8.xml:122
  msgid ""
  "<command>apt-get</command> is the command-line tool for handling packages, "
  "and may be considered the user's \"back-end\" to other tools using the APT "
@@@ -3519,12 -3519,12 +3557,12 @@@ msgstr "
  "&synaptic; y &wajig;."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:124 apt-key.8.xml:127
++#: apt-get.8.xml:131 apt-key.8.xml:127
  msgid "update"
  msgstr "update"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:125
++#: apt-get.8.xml:132
  msgid ""
  "<literal>update</literal> is used to resynchronize the package index files "
  "from their sources. The indexes of available packages are fetched from the "
@@@ -3548,12 -3548,12 +3586,12 @@@ msgstr "
  "tamaño de los archivos de paquete."
  
  #. type: <tag></tag>
--#: apt-get.8.xml:136 guide.sgml:121
++#: apt-get.8.xml:143 guide.sgml:121
  msgid "upgrade"
  msgstr "upgrade"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:137
++#: apt-get.8.xml:144
  msgid ""
  "<literal>upgrade</literal> is used to install the newest versions of all "
  "packages currently installed on the system from the sources enumerated in "
@@@ -3578,12 -3578,12 +3616,12 @@@ msgstr "
  "hay nuevas versiones disponibles."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:149
++#: apt-get.8.xml:156
  msgid "dselect-upgrade"
  msgstr "dselect-upgrade"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:150
++#: apt-get.8.xml:157
  msgid ""
  "<literal>dselect-upgrade</literal> is used in conjunction with the "
  "traditional Debian packaging front-end, &dselect;. <literal>dselect-upgrade</"
@@@ -3600,12 -3600,12 +3638,12 @@@ msgstr "
  "paquetes antiguos e instalar las nuevas versiones)."
  
  #. type: <tag></tag>
--#: apt-get.8.xml:159 guide.sgml:140
++#: apt-get.8.xml:166 guide.sgml:140
  msgid "dist-upgrade"
  msgstr "dist-upgrade"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:160
++#: apt-get.8.xml:167
  msgid ""
  "<literal>dist-upgrade</literal> in addition to performing the function of "
  "<literal>upgrade</literal>, also intelligently handles changing dependencies "
@@@ -3628,12 -3628,12 +3666,12 @@@ msgstr "
  "comportamiento para paquetes individuales."
  
  #. type: <tag></tag>
--#: apt-get.8.xml:172 guide.sgml:131
++#: apt-get.8.xml:179 guide.sgml:131
  msgid "install"
  msgstr "install"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:174
++#: apt-get.8.xml:181
  msgid ""
  "<literal>install</literal> is followed by one or more packages desired for "
  "installation or upgrading.  Each package is a package name, not a fully "
@@@ -3661,7 -3661,7 +3699,7 @@@ msgstr "
  "conflictos de apt-get."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:192
++#: apt-get.8.xml:199
  msgid ""
  "A specific version of a package can be selected for installation by "
  "following the package name with an equals and the version of the package to "
@@@ -3679,7 -3679,7 +3717,7 @@@ msgstr "
  "(stable, testing, unstable)."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:199
++#: apt-get.8.xml:206
  msgid ""
  "Both of the version selection mechanisms can downgrade packages and must be "
  "used with care."
@@@ -3688,7 -3688,7 +3726,7 @@@ msgstr "
  "anterior de los paquetes y se debe usar con cuidado."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:202
++#: apt-get.8.xml:209
  msgid ""
  "This is also the target to use if you want to upgrade one or more already-"
  "installed packages without upgrading every package you have on your system. "
@@@ -3708,7 -3708,7 +3746,7 @@@ msgstr "
  "instalarán."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:213
++#: apt-get.8.xml:220
  msgid ""
  "Finally, the &apt-preferences; mechanism allows you to create an alternative "
  "installation policy for individual packages."
@@@ -3717,7 -3717,7 +3755,7 @@@ msgstr "
  "paquetes individuales."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:217
++#: apt-get.8.xml:224
  msgid ""
  "If no package matches the given expression and the expression contains one "
  "of '.', '?' or '*' then it is assumed to be a POSIX regular expression, and "
@@@ -3737,12 -3737,12 +3775,12 @@@ msgstr "
  "«$», o bien crear una expresión regular más específica."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:226
++#: apt-get.8.xml:233
  msgid "remove"
  msgstr "remove"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:227
++#: apt-get.8.xml:234
  msgid ""
  "<literal>remove</literal> is identical to <literal>install</literal> except "
  "that packages are removed instead of installed. Note the removing a package "
@@@ -3758,12 -3758,12 +3796,12 @@@ msgstr "
  "cuestión será instalado en vez de eliminado."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:234
++#: apt-get.8.xml:241
  msgid "purge"
  msgstr "purge"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:235
++#: apt-get.8.xml:242
  msgid ""
  "<literal>purge</literal> is identical to <literal>remove</literal> except "
  "that packages are removed and purged (any configuration files are deleted "
@@@ -3774,12 -3774,12 +3812,12 @@@ msgstr "
  "también cualquier fichero de configuración)."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:239
++#: apt-get.8.xml:246
  msgid "source"
  msgstr "source"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:240
++#: apt-get.8.xml:247
  msgid ""
  "<literal>source</literal> causes <command>apt-get</command> to fetch source "
  "packages. APT will examine the available packages to decide which source "
@@@ -3798,7 -3798,7 +3836,7 @@@ msgstr "
  "release</literal>, si es posible."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:248
++#: apt-get.8.xml:255
  msgid ""
  "Source packages are tracked separately from binary packages via <literal>deb-"
  "src</literal> type lines in the &sources-list; file. This means that you "
@@@ -3814,12 -3814,12 +3852,19 @@@ msgstr "
  "instalada o de la que podría instalar."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:255
++#: apt-get.8.xml:262
++#, fuzzy
++#| msgid ""
++#| "If the <option>--compile</option> option is specified then the package "
++#| "will be compiled to a binary .deb using <command>dpkg-buildpackage</"
++#| "command>, if <option>--download-only</option> is specified then the "
++#| "source package will not be unpacked."
  msgid ""
  "If the <option>--compile</option> option is specified then the package will "
--"be compiled to a binary .deb using <command>dpkg-buildpackage</command>, if "
--"<option>--download-only</option> is specified then the source package will "
--"not be unpacked."
++"be compiled to a binary .deb using <command>dpkg-buildpackage</command> for "
++"the architecture as defined by the <command>--host-architecture</command> "
++"option.  If <option>--download-only</option> is specified then the source "
++"package will not be unpacked."
  msgstr ""
  "Si se especifica la opción <option>--compile</option> el paquete se "
  "compilará en un binario «.deb» usando <command>dpkg-buildpackage</command>, "
  "desempaquetará."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:260
++#: apt-get.8.xml:269
  msgid ""
  "A specific source version can be retrieved by postfixing the source name "
  "with an equals and then the version to fetch, similar to the mechanism used "
@@@ -3842,7 -3842,7 +3887,7 @@@ msgstr "
  "activando implícitamente la opción <literal>APT::Get::Only-Source</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:266
++#: apt-get.8.xml:275
  msgid ""
  "Note that source packages are not tracked like binary packages, they exist "
  "only in the current directory and are similar to downloading source tar "
@@@ -3853,27 -3853,27 +3898,34 @@@ msgstr "
  "tar comprimidos con las fuentes."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:271
++#: apt-get.8.xml:280
  msgid "build-dep"
  msgstr "build-dep"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:272
++#: apt-get.8.xml:281
++#, fuzzy
++#| msgid ""
++#| "<literal>build-dep</literal> causes apt-get to install/remove packages in "
++#| "an attempt to satisfy the build dependencies for a source package."
  msgid ""
  "<literal>build-dep</literal> causes apt-get to install/remove packages in an "
--"attempt to satisfy the build dependencies for a source package."
++"attempt to satisfy the build dependencies for a source package. By default "
++"the dependencies are satisfied to build the package nativly. If desired a "
++"host-architecture can be specified with the <option>--host-architecture</"
++"option> option instead."
  msgstr ""
  "<literal>build-dep</literal> hace que apt-get instale/desinstale paquetes en "
  "un intento de satisfacer las dependencias de compilación de un paquete "
  "fuente."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:276
++#: apt-get.8.xml:287
  msgid "check"
  msgstr "check"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:277
++#: apt-get.8.xml:288
  msgid ""
  "<literal>check</literal> is a diagnostic tool; it updates the package cache "
  "and checks for broken dependencies."
@@@ -3882,19 -3882,19 +3934,19 @@@ msgstr "
  "caché de paquetes y revisa la existencia de dependencias rotas."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:281
++#: apt-get.8.xml:292
  msgid "download"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:282
++#: apt-get.8.xml:293
  msgid ""
  "<literal>download</literal> will download the given binary package into the "
--"current directoy."
++"current directory."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:288
++#: apt-get.8.xml:299
  msgid ""
  "<literal>clean</literal> clears out the local repository of retrieved "
  "package files. It removes everything but the lock file from "
@@@ -3913,12 -3913,12 +3965,12 @@@ msgstr "
  "literal> de vez en cuando para liberar algo de espacio en disco."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:297
++#: apt-get.8.xml:308
  msgid "autoclean"
  msgstr "autoclean"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:298
++#: apt-get.8.xml:309
  msgid ""
  "Like <literal>clean</literal>, <literal>autoclean</literal> clears out the "
  "local repository of retrieved package files. The difference is that it only "
@@@ -3937,28 -3937,28 +3989,33 @@@ msgstr "
  "desactivada impedirá que se borren los paquetes instalados."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:307
++#: apt-get.8.xml:318
  msgid "autoremove"
  msgstr "autoremove"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:308
++#: apt-get.8.xml:319
++#, fuzzy
++#| msgid ""
++#| "<literal>autoremove</literal> is used to remove packages that were "
++#| "automatically installed to satisfy dependencies for some package and that "
++#| "are no more needed."
  msgid ""
  "<literal>autoremove</literal> is used to remove packages that were "
--"automatically installed to satisfy dependencies for some package and that "
--"are no more needed."
++"automatically installed to satisfy dependencies for other packages and are "
++"now no longer needed."
  msgstr ""
  "<literal>autoremove</literal> se usa para desinstalar paquetes que se "
  "instalaron automáticamente para satisfacer las dependencias de algún "
  "paquete, pero que ya no son necesarios."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:312
++#: apt-get.8.xml:323
  msgid "changelog"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:313
++#: apt-get.8.xml:324
  msgid ""
  "<literal>changelog</literal> downloads a package changelog and displays it "
  "through <command>sensible-pager</command>. The server name and base "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:335
++#: apt-get.8.xml:346
  msgid "<option>--no-install-recommends</option>"
  msgstr "<option>--no-install-recommends</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:336
++#: apt-get.8.xml:347
  msgid ""
  "Do not consider recommended packages as a dependency for installing.  "
  "Configuration Item: <literal>APT::Install-Recommends</literal>."
@@@ -3985,14 -3985,14 +4042,14 @@@ msgstr "
  "de configuración: <literal>APT::Install-Recommends</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:340
++#: apt-get.8.xml:351
  #, fuzzy
  #| msgid "<option>--no-suggests</option>"
  msgid "<option>--install-suggests</option>"
  msgstr "<option>--no-suggests</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:341
++#: apt-get.8.xml:352
  #, fuzzy
  #| msgid ""
  #| "Do not consider recommended packages as a dependency for installing.  "
@@@ -4005,12 -4005,12 +4062,12 @@@ msgstr "
  "de configuración: <literal>APT::Install-Recommends</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:345
++#: apt-get.8.xml:356
  msgid "<option>--download-only</option>"
  msgstr "<option>--download-only</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:346
++#: apt-get.8.xml:357
  msgid ""
  "Download only; package files are only retrieved, not unpacked or installed.  "
  "Configuration Item: <literal>APT::Get::Download-Only</literal>."
@@@ -4019,12 -4019,12 +4076,12 @@@ msgstr "
  "instala. Opción de configuración: <literal>APT::Get::Download-Only</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:350
++#: apt-get.8.xml:361
  msgid "<option>--fix-broken</option>"
  msgstr "<option>--fix-broken</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:351
++#: apt-get.8.xml:362
  msgid ""
  "Fix; attempt to correct a system with broken dependencies in place. This "
  "option, when used with install/remove, can omit any packages to permit APT "
@@@ -4052,17 -4052,17 +4109,17 @@@ msgstr "
  "<literal>APT::Get::Fix-Broken</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:364
++#: apt-get.8.xml:375
  msgid "<option>--ignore-missing</option>"
  msgstr "<option>--ignore-missing</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:365
++#: apt-get.8.xml:376
  msgid "<option>--fix-missing</option>"
  msgstr "<option>--fix-missing</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:366
++#: apt-get.8.xml:377
  msgid ""
  "Ignore missing packages; If packages cannot be retrieved or fail the "
  "integrity check after retrieval (corrupted package files), hold back those "
@@@ -4082,12 -4082,12 +4139,12 @@@ msgstr "
  "<literal>APT::Get::Fix-Missing</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:376
++#: apt-get.8.xml:387
  msgid "<option>--no-download</option>"
  msgstr "<option>--no-download</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:377
++#: apt-get.8.xml:388
  msgid ""
  "Disables downloading of packages. This is best used with <option>--ignore-"
  "missing</option> to force APT to use only the .debs it has already "
@@@ -4099,7 -4099,7 +4156,7 @@@ msgstr "
  "<literal>APT::Get::Download</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:384
++#: apt-get.8.xml:395
  msgid ""
  "Quiet; produces output suitable for logging, omitting progress indicators.  "
  "More q's will produce more quiet up to a maximum of 2. You can also use "
@@@ -4120,17 -4120,17 +4177,17 @@@ msgstr "
  "<literal>quiet</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:394
++#: apt-get.8.xml:405
  msgid "<option>--simulate</option>"
  msgstr "<option>--simulate</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:396
++#: apt-get.8.xml:407
  msgid "<option>--dry-run</option>"
  msgstr "<option>--dry-run</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:399
++#: apt-get.8.xml:410
  msgid ""
  "No action; perform a simulation of events that would occur but do not "
  "actually change the system.  Configuration Item: <literal>APT::Get::"
@@@ -4141,7 -4141,7 +4198,7 @@@ msgstr "
  "Simulate</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:403
++#: apt-get.8.xml:414
  msgid ""
  "Simulation run as user will deactivate locking (<literal>Debug::NoLocking</"
  "literal>)  automatic. Also a notice will be displayed indicating that this "
@@@ -4159,7 -4159,7 +4216,7 @@@ msgstr "
  "avisos de <literal>apt-get</literal>)."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:409
++#: apt-get.8.xml:420
  msgid ""
  "Simulate prints out a series of lines each one representing a dpkg "
  "operation, Configure (Conf), Remove (Remv), Unpack (Inst). Square brackets "
@@@ -4173,22 -4173,22 +4230,22 @@@ msgstr "
  "problema (poco probable)."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:416
++#: apt-get.8.xml:427
  msgid "<option>-y</option>"
  msgstr "<option>-y</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:416
++#: apt-get.8.xml:427
  msgid "<option>--yes</option>"
  msgstr "<option>--yes</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:417
++#: apt-get.8.xml:428
  msgid "<option>--assume-yes</option>"
  msgstr "<option>--assume-yes</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:418
++#: apt-get.8.xml:429
  msgid ""
  "Automatic yes to prompts; assume \"yes\" as answer to all prompts and run "
  "non-interactively. If an undesirable situation, such as changing a held "
@@@ -4204,17 -4204,17 +4261,37 @@@ msgstr "
  "<literal>APT::Get::Assume-Yes</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:425
++#: apt-get.8.xml:436
++#, fuzzy
++#| msgid "<option>--assume-yes</option>"
++msgid "<option>--assume-no</option>"
++msgstr "<option>--assume-yes</option>"
++
++#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
++#: apt-get.8.xml:437
++#, fuzzy
++#| msgid ""
++#| "Compile source packages after downloading them.  Configuration Item: "
++#| "<literal>APT::Get::Compile</literal>."
++msgid ""
++"Automatic \"no\" to all prompts.  Configuration Item: <literal>APT::Get::"
++"Assume-No</literal>."
++msgstr ""
++"Descarga los paquetes fuente y luego los compila. Opción de configuración: "
++"<literal>APT::Get::Compile</literal>."
++
++#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
++#: apt-get.8.xml:441
  msgid "<option>-u</option>"
  msgstr "<option>-u</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:425
++#: apt-get.8.xml:441
  msgid "<option>--show-upgraded</option>"
  msgstr "<option>--show-upgraded</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:426
++#: apt-get.8.xml:442
  msgid ""
  "Show upgraded packages; Print out a list of all packages that are to be "
  "upgraded.  Configuration Item: <literal>APT::Get::Show-Upgraded</literal>."
@@@ -4223,17 -4223,17 +4300,17 @@@ msgstr "
  "<literal>APT::Get::Show-Upgraded</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:431
++#: apt-get.8.xml:447
  msgid "<option>-V</option>"
  msgstr "<option>-V</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:431
++#: apt-get.8.xml:447
  msgid "<option>--verbose-versions</option>"
  msgstr "<option>--verbose-versions</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:432
++#: apt-get.8.xml:448
  msgid ""
  "Show full versions for upgraded and installed packages.  Configuration Item: "
  "<literal>APT::Get::Show-Versions</literal>."
@@@ -4242,22 -4242,22 +4319,40 @@@ msgstr "
  "Opción de configuración: <literal>APT::Get::Show-Versions</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:436
++#: apt-get.8.xml:453
++#, fuzzy
++#| msgid "<option>--recurse</option>"
++msgid "<option>--host-architecture</option>"
++msgstr "<option>--recurse</option>"
++
++#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
++#: apt-get.8.xml:454
++msgid ""
++"This option controls the architecture packages are built for by <command>apt-"
++"get source --compile</command> and how cross-builddependencies are "
++"satisfied. By default is not set which means that the host architecture is "
++"the same as the build architecture (which is defined by <literal>APT::"
++"Architecture</literal>)  Configuration Item: <literal>APT::Get::Host-"
++"Architecture</literal>"
++msgstr ""
++
++#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
++#: apt-get.8.xml:462
  msgid "<option>-b</option>"
  msgstr "<option>-b</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:436
++#: apt-get.8.xml:462
  msgid "<option>--compile</option>"
  msgstr "<option>--compile</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:437
++#: apt-get.8.xml:463
  msgid "<option>--build</option>"
  msgstr "<option>--build</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:438
++#: apt-get.8.xml:464
  msgid ""
  "Compile source packages after downloading them.  Configuration Item: "
  "<literal>APT::Get::Compile</literal>."
@@@ -4266,12 -4266,12 +4361,12 @@@ msgstr "
  "<literal>APT::Get::Compile</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:442
++#: apt-get.8.xml:468
  msgid "<option>--ignore-hold</option>"
  msgstr "<option>--ignore-hold</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:443
++#: apt-get.8.xml:469
  msgid ""
  "Ignore package Holds; This causes <command>apt-get</command> to ignore a "
  "hold placed on a package. This may be useful in conjunction with "
@@@ -4285,12 -4285,12 +4380,12 @@@ msgstr "
  "Ignore-Hold</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:449
++#: apt-get.8.xml:475
  msgid "<option>--no-upgrade</option>"
  msgstr "<option>--no-upgrade</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:450
++#: apt-get.8.xml:476
  msgid ""
  "Do not upgrade packages; When used in conjunction with <literal>install</"
  "literal>, <literal>no-upgrade</literal> will prevent packages on the command "
@@@ -4303,12 -4303,12 +4398,12 @@@ msgstr "
  "<literal>APT::Get::Upgrade</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:456
++#: apt-get.8.xml:482
  msgid "<option>--only-upgrade</option>"
  msgstr "<option>--only-upgrade</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:457
++#: apt-get.8.xml:483
  msgid ""
  "Do not install new packages; When used in conjunction with <literal>install</"
  "literal>, <literal>only-upgrade</literal> will prevent packages on the "
@@@ -4321,12 -4321,12 +4416,12 @@@ msgstr "
  "de configuración: <literal>APT::Get::Only-Upgrade</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:463
++#: apt-get.8.xml:489
  msgid "<option>--force-yes</option>"
  msgstr "<option>--force-yes</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:464
++#: apt-get.8.xml:490
  msgid ""
  "Force yes; This is a dangerous option that will cause apt to continue "
  "without prompting if it is doing something potentially harmful. It should "
@@@ -4342,12 -4342,12 +4437,12 @@@ msgstr "
  "literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:471
++#: apt-get.8.xml:497
  msgid "<option>--print-uris</option>"
  msgstr "<option>--print-uris</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:472
++#: apt-get.8.xml:498
  msgid ""
  "Instead of fetching the files to install their URIs are printed. Each URI "
  "will have the path, the destination file name, the size and the expected md5 "
@@@ -4369,12 -4369,12 +4464,12 @@@ msgstr "
  "<literal>APT::Get::Print-URIs</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:482
++#: apt-get.8.xml:508
  msgid "<option>--purge</option>"
  msgstr "<option>--purge</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:483
++#: apt-get.8.xml:509
  msgid ""
  "Use purge instead of remove for anything that would be removed.  An asterisk "
  "(\"*\") will be displayed next to packages which are scheduled to be purged. "
@@@ -4388,12 -4388,12 +4483,12 @@@ msgstr "
  "literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:490
++#: apt-get.8.xml:516
  msgid "<option>--reinstall</option>"
  msgstr "<option>--reinstall</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:491
++#: apt-get.8.xml:517
  msgid ""
  "Re-Install packages that are already installed and at the newest version.  "
  "Configuration Item: <literal>APT::Get::ReInstall</literal>."
@@@ -4403,12 -4403,12 +4498,12 @@@ msgstr "
  "ReInstall</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:495
++#: apt-get.8.xml:521
  msgid "<option>--list-cleanup</option>"
  msgstr "<option>--list-cleanup</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:496
++#: apt-get.8.xml:522
  msgid ""
  "This option defaults to on, use <literal>--no-list-cleanup</literal> to turn "
  "it off. When on <command>apt-get</command> will automatically manage the "
@@@ -4426,17 -4426,17 +4521,17 @@@ msgstr "
  "<literal>APT::Get::List-Cleanup</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:505
++#: apt-get.8.xml:531
  msgid "<option>--target-release</option>"
  msgstr "<option>--target-release</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:506
++#: apt-get.8.xml:532
  msgid "<option>--default-release</option>"
  msgstr "<option>--default-release</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:507
++#: apt-get.8.xml:533
  msgid ""
  "This option controls the default input to the policy engine, it creates a "
  "default pin at priority 990 using the specified release string.  This "
@@@ -4460,12 -4460,12 +4555,12 @@@ msgstr "
  "también la página del manual de &apt-preferences;."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:520
++#: apt-get.8.xml:546
  msgid "<option>--trivial-only</option>"
  msgstr "<option>--trivial-only</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:522
++#: apt-get.8.xml:548
  msgid ""
  "Only perform operations that are 'trivial'. Logically this can be considered "
  "related to <option>--assume-yes</option>, where <option>--assume-yes</"
@@@ -4479,12 -4479,12 +4574,12 @@@ msgstr "
  "<literal>APT::Get::Trivial-Only</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:528
++#: apt-get.8.xml:554
  msgid "<option>--no-remove</option>"
  msgstr "<option>--no-remove</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:529
++#: apt-get.8.xml:555
  msgid ""
  "If any packages are to be removed apt-get immediately aborts without "
  "prompting.  Configuration Item: <literal>APT::Get::Remove</literal>."
@@@ -4493,12 -4493,12 +4588,12 @@@ msgstr "
  "preguntar. Opción de configuración: <literal>APT::Get::Remove</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:534
++#: apt-get.8.xml:560
  msgid "<option>--auto-remove</option>"
  msgstr "<option>--auto-remove</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:535
++#: apt-get.8.xml:561
  msgid ""
  "If the command is either <literal>install</literal> or <literal>remove</"
  "literal>, then this option acts like running <literal>autoremove</literal> "
@@@ -4511,12 -4511,12 +4606,12 @@@ msgstr "
  "configuración: <literal>APT::Get::AutomaticRemove</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:541
++#: apt-get.8.xml:567
  msgid "<option>--only-source</option>"
  msgstr "<option>--only-source</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:542
++#: apt-get.8.xml:568
  msgid ""
  "Only has meaning for the <literal>source</literal> and <literal>build-dep</"
  "literal> commands.  Indicates that the given source names are not to be "
@@@ -4536,22 -4536,22 +4631,22 @@@ msgstr "
  "literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:552
++#: apt-get.8.xml:578
  msgid "<option>--diff-only</option>"
  msgstr "<option>--diff-only</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:552
++#: apt-get.8.xml:578
  msgid "<option>--dsc-only</option>"
  msgstr "<option>--dsc-only</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:552
++#: apt-get.8.xml:578
  msgid "<option>--tar-only</option>"
  msgstr "<option>--tar-only</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:553
++#: apt-get.8.xml:579
  msgid ""
  "Download only the diff, dsc, or tar file of a source archive.  Configuration "
  "Item: <literal>APT::Get::Diff-Only</literal>, <literal>APT::Get::Dsc-Only</"
@@@ -4562,12 -4562,12 +4657,12 @@@ msgstr "
  "Dsc-Only</literal> y <literal>APT::Get::Tar-Only</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:558
++#: apt-get.8.xml:584
  msgid "<option>--arch-only</option>"
  msgstr "<option>--arch-only</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:559
++#: apt-get.8.xml:585
  msgid ""
  "Only process architecture-dependent build-dependencies.  Configuration Item: "
  "<literal>APT::Get::Arch-Only</literal>."
@@@ -4576,12 -4576,12 +4671,12 @@@ msgstr "
  "arquitectura. Opción de configuración: <literal>APT::Get::Arch-Only</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:563
++#: apt-get.8.xml:589
  msgid "<option>--allow-unauthenticated</option>"
  msgstr "<option>--allow-unauthenticated</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:564
++#: apt-get.8.xml:590
  msgid ""
  "Ignore if packages can't be authenticated and don't prompt about it.  This "
  "is useful for tools like pbuilder.  Configuration Item: <literal>APT::Get::"
@@@ -4592,7 -4592,7 +4687,7 @@@ msgstr "
  "configuración: <literal>APT::Get::AllowUnauthenticated</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist>
--#: apt-get.8.xml:577
++#: apt-get.8.xml:603
  msgid ""
  "&file-sourceslist; &file-aptconf; &file-preferences; &file-cachearchives; "
  "&file-statelists;"
@@@ -4601,7 -4601,7 +4696,7 @@@ msgstr "
  "&file-statelists;"
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt-get.8.xml:586
++#: apt-get.8.xml:612
  msgid ""
  "&apt-cache;, &apt-cdrom;, &dpkg;, &dselect;, &sources-list;, &apt-conf;, "
  "&apt-config;, &apt-secure;, The APT User's guide in &guidesdir;, &apt-"
@@@ -4612,7 -4612,7 +4707,7 @@@ msgstr "
  "preferences;, el Cómo de APT."
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt-get.8.xml:592
++#: apt-get.8.xml:618
  msgid ""
  "<command>apt-get</command> returns zero on normal operation, decimal 100 on "
  "error."
@@@ -4621,22 -4621,22 +4716,22 @@@ msgstr "
  "100 en caso de error."
  
  #. type: Content of: <refentry><refsect1><title>
--#: apt-get.8.xml:595
++#: apt-get.8.xml:621
  msgid "ORIGINAL AUTHORS"
  msgstr "AUTORES ORIGINALES"
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt-get.8.xml:596
++#: apt-get.8.xml:622
  msgid "&apt-author.jgunthorpe;"
  msgstr "&apt-author.jgunthorpe;"
  
  #. type: Content of: <refentry><refsect1><title>
--#: apt-get.8.xml:599
++#: apt-get.8.xml:625
  msgid "CURRENT AUTHORS"
  msgstr "AUTORES ACTUALES"
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt-get.8.xml:601
++#: apt-get.8.xml:627
  msgid "&apt-author.team;"
  msgstr "&apt-author.team;"
  
@@@ -4765,14 -4765,30 +4860,33 @@@ msgstr "
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #: apt-key.8.xml:131
  msgid ""
--"Update the local keyring with the keyring of Debian archive keys and removes "
--"from the keyring the archive keys which are no longer valid."
++"Update the local keyring with the archive keyring and remove from the local "
++"keyring the archive keys which are no longer valid.  The archive keyring is "
++"shipped in the <literal>archive-keyring</literal> package of your "
++"distribution, e.g. the <literal>ubuntu-archive-keyring</literal> package in "
++"Ubuntu."
+ msgstr ""
 -"Actualiza el registro de claves local con el registro de claves del archivo "
 -"Debian, y elimina del registro las claves del archivo que ya no son válidas."
+ #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
 -#: apt-key.8.xml:140
++#: apt-key.8.xml:141
+ #, fuzzy
+ #| msgid "update"
+ msgid "net-update"
+ msgstr "update"
+ #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
 -#: apt-key.8.xml:144
++#: apt-key.8.xml:145
+ msgid ""
 -"Update the local keyring with the keys of a key server and removes from the "
 -"keyring the archive keys which are no longer valid. This requires an "
 -"installed wget and an APT build configured to have a server to fetch from. "
 -"APT in Debian does not support this command, but Ubuntu's APT does."
++"Work similar to the <command>update</command> command above, but get the "
++"archive keyring from an URI instead and validate it against a master key.  "
++"This requires an installed &wget; and an APT build configured to have a "
++"server to fetch from and a master keyring to validate.  APT in Debian does "
++"not support this command and relies on <command>update</command> instead, "
++"but Ubuntu's APT does."
  msgstr ""
- "Actualiza el registro de claves local con el registro de claves del archivo "
- "Debian, y elimina del registro las claves del archivo que ya no son válidas."
  
  #. type: Content of: <refentry><refsect1><para>
- #: apt-key.8.xml:143
 -#: apt-key.8.xml:159
++#: apt-key.8.xml:162
  msgid ""
  "Note that options need to be defined before the commands described in the "
  "previous section."
@@@ -4781,12 -4797,12 +4895,12 @@@ msgstr "
  "descritas en el sección anterior."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-key.8.xml:145
 -#: apt-key.8.xml:161
++#: apt-key.8.xml:164
  msgid "--keyring <replaceable>filename</replaceable>"
  msgstr "--keyring <replaceable>nombre-de-fichero</replaceable>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
- #: apt-key.8.xml:146
 -#: apt-key.8.xml:162
++#: apt-key.8.xml:165
  msgid ""
  "With this option it is possible to specify a specific keyring file the "
  "command should operate on. The default is that a command is executed on the "
@@@ -4803,53 -4819,57 +4917,66 @@@ msgstr "
  "esto es, por ejemplo, que las claves nuevas se añaden a este fichero."
  
  #. type: Content of: <refentry><refsect1><variablelist>
- #: apt-key.8.xml:159
 -#: apt-key.8.xml:175
++#: apt-key.8.xml:178
  msgid "&file-trustedgpg;"
  msgstr "&file-trustedgpg;"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-key.8.xml:161
 -#: apt-key.8.xml:177
++#: apt-key.8.xml:180
  msgid "<filename>/etc/apt/trustdb.gpg</filename>"
  msgstr "<filename>/etc/apt/trustdb.gpg</filename>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
- #: apt-key.8.xml:162
 -#: apt-key.8.xml:178
++#: apt-key.8.xml:181
  msgid "Local trust database of archive keys."
  msgstr "Base de datos local de las claves de confianza de archivos Debian"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-key.8.xml:165
 -#: apt-key.8.xml:181
--msgid "<filename>/usr/share/keyrings/debian-archive-keyring.gpg</filename>"
++#: apt-key.8.xml:184
++#, fuzzy
++#| msgid "<filename>/usr/share/keyrings/debian-archive-keyring.gpg</filename>"
++msgid "<filename>/usr/share/keyrings/ubuntu-archive-keyring.gpg</filename>"
  msgstr "<filename>/usr/share/keyrings/debian-archive-keyring.gpg</filename>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
- #: apt-key.8.xml:166
 -#: apt-key.8.xml:182
--msgid "Keyring of Debian archive trusted keys."
++#: apt-key.8.xml:185
++#, fuzzy
++#| msgid "Keyring of Debian archive trusted keys."
++msgid "Keyring of Ubuntu archive trusted keys."
  msgstr "Registro de las claves de confianza del archivo de Debian."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-key.8.xml:169
 -#: apt-key.8.xml:185
++#: apt-key.8.xml:188
++#, fuzzy
++#| msgid ""
++#| "<filename>/usr/share/keyrings/debian-archive-removed-keys.gpg</filename>"
  msgid ""
--"<filename>/usr/share/keyrings/debian-archive-removed-keys.gpg</filename>"
++"<filename>/usr/share/keyrings/ubuntu-archive-removed-keys.gpg</filename>"
  msgstr ""
  "<filename>/usr/share/keyrings/debian-archive-removed-keys.gpg</filename>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
- #: apt-key.8.xml:170
 -#: apt-key.8.xml:186
--msgid "Keyring of Debian archive removed trusted keys."
++#: apt-key.8.xml:189
++#, fuzzy
++#| msgid "Keyring of Debian archive removed trusted keys."
++msgid "Keyring of Ubuntu archive removed trusted keys."
  msgstr "Registro de las claves de confianza eliminadas del archivo de Debian."
  
  #. type: Content of: <refentry><refsect1><para>
- #: apt-key.8.xml:179
 -#: apt-key.8.xml:195
++#: apt-key.8.xml:198
  msgid "&apt-get;, &apt-secure;"
  msgstr "&apt-get;, &apt-secure;"
  
  #.  The last update date 
  #. type: Content of: <refentry><refentryinfo>
  #: apt-mark.8.xml:16
+ #, fuzzy
+ #| msgid ""
+ #| "&apt-author.moconnor; &apt-author.team; &apt-email; &apt-product; <date>9 "
+ #| "August 2009</date>"
  msgid ""
- "&apt-author.moconnor; &apt-author.team; &apt-email; &apt-product; <date>9 "
- "August 2009</date>"
+ "&apt-author.moconnor; &apt-author.team; &apt-email; &apt-product; <date>21 "
+ "April 2011</date>"
  msgstr ""
  "&apt-author.moconnor; &apt-author.team; &apt-email; &apt-product; <date>9 de "
  "Agosto de 2009</date>"
@@@ -4866,13 -4886,22 +4993,22 @@@ msgstr "Marca o desmarca un paquete com
  
  #. type: Content of: <refentry><refsynopsisdiv><cmdsynopsis>
  #: apt-mark.8.xml:39
+ #, fuzzy
+ #| msgid ""
+ #| "  <command>apt-mark</command> <arg><option>-hv</option></arg> "
+ #| "<arg><option>-f=<replaceable>FILENAME</replaceable></option></arg> <group "
+ #| "choice=\"plain\"> <arg choice=\"plain\"> <group choice=\"req\"> <arg "
+ #| "choice=\"plain\">markauto</arg> <arg choice=\"plain\">unmarkauto</arg> </"
+ #| "group> <arg choice=\"plain\" rep=\"repeat\"><replaceable>package</"
+ #| "replaceable></arg> </arg> <arg choice=\"plain\">showauto</arg> </group>"
  msgid ""
  "  <command>apt-mark</command> <arg><option>-hv</option></arg> <arg><option>-"
  "f=<replaceable>FILENAME</replaceable></option></arg> <group choice=\"plain"
  "\"> <arg choice=\"plain\"> <group choice=\"req\"> <arg choice=\"plain"
- "\">markauto</arg> <arg choice=\"plain\">unmarkauto</arg> </group> <arg "
+ "\">auto</arg> <arg choice=\"plain\">manual</arg> <arg choice=\"plain"
+ "\">showauto</arg> <arg choice=\"plain\">showmanual</arg> </group> <arg "
  "choice=\"plain\" rep=\"repeat\"><replaceable>package</replaceable></arg> </"
- "arg> <arg choice=\"plain\">showauto</arg> </group>"
+ "arg> </group>"
  msgstr ""
  " <command>apt-mark</command> <arg><option>-hv</option></arg> <arg><option>-"
  "f=<replaceable>nombre-de-fichero</replaceable></option></arg> <group choice="
  "arg> <arg choice=\"plain\">showauto</arg> </group>"
  
  #. type: Content of: <refentry><refsect1><para>
- #: apt-mark.8.xml:56
+ #: apt-mark.8.xml:57
  msgid ""
  "<command>apt-mark</command> will change whether a package has been marked as "
  "being automatically installed."
@@@ -4891,7 -4920,7 +5027,7 @@@ msgstr "
  "o no."
  
  #. type: Content of: <refentry><refsect1><para>
- #: apt-mark.8.xml:60
+ #: apt-mark.8.xml:61
  msgid ""
  "When you request that a package is installed, and as a result other packages "
  "are installed to satisfy its dependencies, the dependencies are marked as "
@@@ -4907,14 -4936,21 +5043,21 @@@ msgstr "
  "eliminará."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-mark.8.xml:68
- msgid "markauto"
+ #: apt-mark.8.xml:69
+ #, fuzzy
+ #| msgid "markauto"
+ msgid "auto"
  msgstr "markauto"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
- #: apt-mark.8.xml:69
+ #: apt-mark.8.xml:70
+ #, fuzzy
+ #| msgid ""
+ #| "<literal>markauto</literal> is used to mark a package as being "
+ #| "automatically installed, which will cause the package to be removed when "
+ #| "no more manually installed packages depend on this package."
  msgid ""
- "<literal>markauto</literal> is used to mark a package as being automatically "
+ "<literal>auto</literal> is used to mark a package as being automatically "
  "installed, which will cause the package to be removed when no more manually "
  "installed packages depend on this package."
  msgstr ""
  "paquete instalado manualmente dependa de este paquete."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-mark.8.xml:76
- msgid "unmarkauto"
- msgstr "unmarkauto"
+ #: apt-mark.8.xml:77
+ msgid "manual"
+ msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
- #: apt-mark.8.xml:77
+ #: apt-mark.8.xml:78
+ #, fuzzy
+ #| msgid ""
+ #| "<literal>unmarkauto</literal> is used to mark a package as being manually "
+ #| "installed, which will prevent the package from being automatically "
+ #| "removed if no other packages depend on it."
  msgid ""
- "<literal>unmarkauto</literal> is used to mark a package as being manually "
+ "<literal>manual</literal> is used to mark a package as being manually "
  "installed, which will prevent the package from being automatically removed "
  "if no other packages depend on it."
  msgstr ""
  "ningún otro depende de él."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-mark.8.xml:84
+ #: apt-mark.8.xml:85
+ msgid "hold"
+ msgstr ""
+ #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
+ #: apt-mark.8.xml:86
+ msgid ""
+ "<literal>hold</literal> is used to mark a package as hold back, which will "
+ "prevent the package from being automatically installed, upgraded or "
+ "removed.  The command is only a wrapper around <command>dpkg --set-"
+ "selections</command> and the state is therefore maintained by &dpkg; and not "
+ "effected by the <option>--filename</option> option."
+ msgstr ""
+ #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
+ #: apt-mark.8.xml:95
+ msgid "unhold"
+ msgstr ""
+ #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
+ #: apt-mark.8.xml:96
+ #, fuzzy
+ #| msgid ""
+ #| "<literal>showauto</literal> is used to print a list of automatically "
+ #| "installed packages with each package on a new line."
+ msgid ""
+ "<literal>unhold</literal> is used to cancel a previously set hold on a "
+ "package to allow all actions again."
+ msgstr ""
+ "<literal>showauto</literal> se usa para mostrar una lista de paquetes "
+ "instalados automáticamente, un paquete por línea."
+ #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
+ #: apt-mark.8.xml:101
  msgid "showauto"
  msgstr "showauto"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
- #: apt-mark.8.xml:85
+ #: apt-mark.8.xml:102
+ #, fuzzy
+ #| msgid ""
+ #| "<literal>showauto</literal> is used to print a list of automatically "
+ #| "installed packages with each package on a new line."
  msgid ""
  "<literal>showauto</literal> is used to print a list of automatically "
- "installed packages with each package on a new line."
+ "installed packages with each package on a new line.  All automatically "
+ "installed packages will be listed if no package is given.  If packages are "
+ "given only those which are automatically installed will be shown."
  msgstr ""
  "<literal>showauto</literal> se usa para mostrar una lista de paquetes "
  "instalados automáticamente, un paquete por línea."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-mark.8.xml:96
+ #: apt-mark.8.xml:109
+ #, fuzzy
+ #| msgid "showauto"
+ msgid "showmanual"
+ msgstr "showauto"
+ #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
+ #: apt-mark.8.xml:110
+ msgid ""
+ "<literal>showmanual</literal> can be used in the same way as "
+ "<literal>showauto</literal> except that it will print a list of manually "
+ "installed packages instead."
+ msgstr ""
+ #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
+ #: apt-mark.8.xml:116
+ #, fuzzy
+ #| msgid "showauto"
+ msgid "showhold"
+ msgstr "showauto"
+ #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
+ #: apt-mark.8.xml:117
+ #, fuzzy
+ #| msgid ""
+ #| "<literal>showauto</literal> is used to print a list of automatically "
+ #| "installed packages with each package on a new line."
+ msgid ""
+ "<literal>showhold</literal> is used to print a list of packages on hold in "
+ "the same way as for the other show commands."
+ msgstr ""
+ "<literal>showauto</literal> se usa para mostrar una lista de paquetes "
+ "instalados automáticamente, un paquete por línea."
+ #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
+ #: apt-mark.8.xml:130
  msgid ""
  "<option>-f=<filename><replaceable>FILENAME</replaceable></filename></option>"
  msgstr ""
  "filename></option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-mark.8.xml:97
+ #: apt-mark.8.xml:131
  msgid ""
  "<option>--file=<filename><replaceable>FILENAME</replaceable></filename></"
  "option>"
@@@ -4970,7 -5085,7 +5192,7 @@@ msgstr "
  "filename></option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
- #: apt-mark.8.xml:100
+ #: apt-mark.8.xml:134
  msgid ""
  "Read/Write package stats from <filename><replaceable>FILENAME</replaceable></"
  "filename> instead of the default location, which is "
@@@ -4983,48 -5098,18 +5205,18 @@@ msgstr "
  "en el directorio definido en la opción de configuración: <literal>Dir::"
  "State</literal>."
  
- #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-mark.8.xml:106
- msgid "<option>-h</option>"
- msgstr "<option>-h</option>"
- #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-mark.8.xml:107
- msgid "<option>--help</option>"
- msgstr "<option>--help</option>"
- #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
- #: apt-mark.8.xml:108
- msgid "Show a short usage summary."
- msgstr "Muestra un breve resumen de uso."
- #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-mark.8.xml:114
- msgid "<option>-v</option>"
- msgstr "<option>-v</option>"
- #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-mark.8.xml:115
- msgid "<option>--version</option>"
- msgstr "<option>--version</option>"
- #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
- #: apt-mark.8.xml:116
- msgid "Show the program version."
- msgstr "Muestra la versión del programa."
  #. type: Content of: <refentry><refsect1><variablelist>
- #: apt-mark.8.xml:127
+ #: apt-mark.8.xml:146
  msgid "  &file-extended_states;"
  msgstr "  &file-extended_states;"
  
  #. type: Content of: <refentry><refsect1><para>
- #: apt-mark.8.xml:132
+ #: apt-mark.8.xml:151
  msgid "&apt-get;,&aptitude;,&apt-conf;"
  msgstr "&apt-get;,&aptitude;,&apt-conf;"
  
  #. type: Content of: <refentry><refsect1><para>
- #: apt-mark.8.xml:136
+ #: apt-mark.8.xml:155
  msgid ""
  "<command>apt-mark</command> returns zero on normal operation, non-zero on "
  "error."
@@@ -5497,11 -5582,11 +5689,12 @@@ msgstr "
  #| "period (.) characters - otherwise they will be silently ignored."
  msgid ""
  "all files in <literal>Dir::Etc::Parts</literal> in alphanumeric ascending "
--"order which have no or \"<literal>conf</literal>\" as filename extension and "
--"which only contain alphanumeric, hyphen (-), underscore (_) and period (.) "
--"characters.  Otherwise APT will print a notice that it has ignored a file if "
--"the file doesn't match a pattern in the <literal>Dir::Ignore-Files-Silently</"
--"literal> configuration list - in this case it will be silently ignored."
++"order which have either no or \"<literal>conf</literal>\" as filename "
++"extension and which only contain alphanumeric, hyphen (-), underscore (_) "
++"and period (.) characters.  Otherwise APT will print a notice that it has "
++"ignored a file if the file doesn't match a pattern in the <literal>Dir::"
++"Ignore-Files-Silently</literal> configuration list - in this case it will be "
++"silently ignored."
  msgstr ""
  "Todos los ficheros en <literal>Dir::Etc::Parts</literal> en orden "
  "alfanumérico ascendente que no tienen extensión o la extensión "
@@@ -5758,13 -5843,13 +5951,24 @@@ msgstr "
  "ficheros y analizar las listas de paquetes. El valor predeterminado es la "
  "arquitectura para la que apt se compiló."
  
++#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
++#: apt.conf.5.xml:158
++msgid ""
++"All Architectures the system supports. Processors implementing the "
++"<literal>amd64</literal> are e.g. also able to execute binaries compiled for "
++"<literal>i386</literal>; This list is use when fetching files and parsing "
++"package lists. The internal default is always the native architecture "
++"(<literal>APT::Architecture</literal>)  and all foreign architectures it can "
++"retrieve by calling <command>dpkg --print-foreign-architectures</command>."
++msgstr ""
++
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:157
++#: apt.conf.5.xml:165
  msgid "Default-Release"
  msgstr "Default-Release"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:158
++#: apt.conf.5.xml:166
  msgid ""
  "Default release to install packages from if more than one version available. "
  "Contains release name, codename or release version. Examples: 'stable', "
@@@ -5778,12 -5863,12 +5982,12 @@@ msgstr "
  "«5.0*». Vea también &apt-preferences;."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:163
++#: apt.conf.5.xml:171
  msgid "Ignore-Hold"
  msgstr "Ignore-Hold"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:164
++#: apt.conf.5.xml:172
  msgid ""
  "Ignore Held packages; This global option causes the problem resolver to "
  "ignore held packages in its decision making."
@@@ -5792,12 -5877,12 +5996,12 @@@ msgstr "
  "problemas ignore los paquetes retenidos en la toma de decisiones."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:168
++#: apt.conf.5.xml:176
  msgid "Clean-Installed"
  msgstr "Clean-Installed"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:169
++#: apt.conf.5.xml:177
  msgid ""
  "Defaults to on. When turned on the autoclean feature will remove any "
  "packages which can no longer be downloaded from the cache. If turned off "
@@@ -5811,12 -5896,12 +6015,12 @@@ msgstr "
  "mecanismo directo para reinstalarlos."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:175
++#: apt.conf.5.xml:183
  msgid "Immediate-Configure"
  msgstr "Immediate-Configure"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:176
++#: apt.conf.5.xml:184
  msgid ""
  "Defaults to on which will cause APT to install essential and important "
  "packages as fast as possible in the install/upgrade operation. This is done "
@@@ -5880,12 -5965,12 +6084,12 @@@ msgstr "
  "actualización."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:198
++#: apt.conf.5.xml:206
  msgid "Force-LoopBreak"
  msgstr "Force-LoopBreak"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:199
++#: apt.conf.5.xml:207
  msgid ""
  "Never Enable this option unless you -really- know what you are doing. It "
  "permits APT to temporarily remove an essential package to break a Conflicts/"
@@@ -5902,12 -5987,12 +6106,12 @@@ msgstr "
  "libc, ni dpkg, ni bash, ni cualquier otro del que dependan estos paquetes."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:207
++#: apt.conf.5.xml:215
  msgid "Cache-Start, Cache-Grow and Cache-Limit"
  msgstr "Cache-Start, Cache-Grow y Cache-Limit"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:208
++#: apt.conf.5.xml:216
  msgid ""
  "APT uses since version 0.7.26 a resizable memory mapped cache file to store "
  "the 'available' information. <literal>Cache-Start</literal> acts as a hint "
@@@ -5944,23 -6029,23 +6148,23 @@@ msgstr "
  "crecimiento automático del cache."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:223
++#: apt.conf.5.xml:231
  msgid "Build-Essential"
  msgstr "Build-Essential"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:224
++#: apt.conf.5.xml:232
  msgid "Defines which package(s) are considered essential build dependencies."
  msgstr ""
  "Define qué paquete(s) se consideran dependencias de creación esenciales."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:227
++#: apt.conf.5.xml:235
  msgid "Get"
  msgstr "Get"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:228
++#: apt.conf.5.xml:236
  msgid ""
  "The Get subsection controls the &apt-get; tool, please see its documentation "
  "for more information about the options here."
@@@ -5969,12 -6054,12 +6173,12 @@@ msgstr "
  "documentación para más información sobre esta opción."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:232
++#: apt.conf.5.xml:240
  msgid "Cache"
  msgstr "Cache"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:233
++#: apt.conf.5.xml:241
  msgid ""
  "The Cache subsection controls the &apt-cache; tool, please see its "
  "documentation for more information about the options here."
@@@ -5983,12 -6068,12 +6187,12 @@@ msgstr "
  "la documentación para más información sobre esta opción."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:237
++#: apt.conf.5.xml:245
  msgid "CDROM"
  msgstr "CDROM"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:238
++#: apt.conf.5.xml:246
  msgid ""
  "The CDROM subsection controls the &apt-cdrom; tool, please see its "
  "documentation for more information about the options here."
@@@ -5997,17 -6082,17 +6201,17 @@@ msgstr "
  "la documentación para más información sobre esta opción."
  
  #. type: Content of: <refentry><refsect1><title>
--#: apt.conf.5.xml:244
++#: apt.conf.5.xml:252
  msgid "The Acquire Group"
  msgstr "El grupo Acquire"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:249
++#: apt.conf.5.xml:257
  msgid "Check-Valid-Until"
  msgstr "Check-Valid-Until"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:250
++#: apt.conf.5.xml:258
  msgid ""
  "Security related option defaulting to true as an expiring validation for a "
  "Release file prevents longtime replay attacks and can e.g. also help users "
@@@ -6027,42 -6112,42 +6231,90 @@@ msgstr "
  "<literal>Max-ValidTime</literal>."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:260
++#: apt.conf.5.xml:268
  msgid "Max-ValidTime"
  msgstr "Max-ValidTime"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:261
--msgid ""
--"Seconds the Release file should be considered valid after it was created. "
--"The default is \"for ever\" (0) if the Release file of the archive doesn't "
--"include a <literal>Valid-Until</literal> header.  If it does then this date "
--"is the default. The date from the Release file or the date specified by the "
--"creation time of the Release file (<literal>Date</literal> header) plus the "
--"seconds specified with this options are used to check if the validation of a "
--"file has expired by using the earlier date of the two. Archive specific "
--"settings can be made by appending the label of the archive to the option "
--"name."
++#: apt.conf.5.xml:269
++#, fuzzy
++#| msgid ""
++#| "Seconds the Release file should be considered valid after it was created. "
++#| "The default is \"for ever\" (0) if the Release file of the archive "
++#| "doesn't include a <literal>Valid-Until</literal> header.  If it does then "
++#| "this date is the default. The date from the Release file or the date "
++#| "specified by the creation time of the Release file (<literal>Date</"
++#| "literal> header) plus the seconds specified with this options are used to "
++#| "check if the validation of a file has expired by using the earlier date "
++#| "of the two. Archive specific settings can be made by appending the label "
++#| "of the archive to the option name."
++msgid ""
++"Seconds the Release file should be considered valid after it was created "
++"(indicated by the <literal>Date</literal> header).  If the Release file "
++"itself includes a <literal>Valid-Until</literal> header the earlier date of "
++"the two is used as the expiration date.  The default value is <literal>0</"
++"literal> which stands for \"for ever\".  Archive specific settings can be "
++"made by appending the label of the archive to the option name."
+ msgstr ""
+ "Los segundos que el fichero «Release» se considerará válido después de su "
+ "creación. El valor predeterminado es «para siempre» (cero) si el fichero "
+ "«Release» del archivo no incluye una cabecera <literal>Valid-Until</"
+ "literal>. Si lo incluye, el valor predeterminado es esta fecha. La fecha del "
+ "fichero «Release» o la fecha definida por la hora de creación del fichero "
+ "«Release» (cabecera <literal>Date</literal>), a lo que se añaden los "
+ "segundos definidos con estas opciones, se usan para comprobar si la validez "
+ "de un fichero a expirado, usando la fecha más antigua de las dos "
+ "anteriormente mencionadas. Se pueden definir opciones de configuración "
+ "específicas al archivo añadiendo la etiqueta del archivo al nombre de la "
+ "opción."
+ #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
 -#: apt.conf.5.xml:273
++#: apt.conf.5.xml:279
++#, fuzzy
++#| msgid "Max-ValidTime"
++msgid "Min-ValidTime"
++msgstr "Max-ValidTime"
++
++#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
++#: apt.conf.5.xml:280
++#, fuzzy
++#| msgid ""
++#| "Seconds the Release file should be considered valid after it was created. "
++#| "The default is \"for ever\" (0) if the Release file of the archive "
++#| "doesn't include a <literal>Valid-Until</literal> header.  If it does then "
++#| "this date is the default. The date from the Release file or the date "
++#| "specified by the creation time of the Release file (<literal>Date</"
++#| "literal> header) plus the seconds specified with this options are used to "
++#| "check if the validation of a file has expired by using the earlier date "
++#| "of the two. Archive specific settings can be made by appending the label "
++#| "of the archive to the option name."
++msgid ""
++"Minimum of seconds the Release file should be considered valid after it was "
++"created (indicated by the <literal>Date</literal> header).  Use this if you "
++"need to use a seldomly updated (local) mirror of a more regular updated "
++"archive with a <literal>Valid-Until</literal> header instead of competely "
++"disabling the expiration date checking.  Archive specific settings can and "
++"should be used by appending the label of the archive to the option name."
 +msgstr ""
 +"Los segundos que el fichero «Release» se considerará válido después de su "
 +"creación. El valor predeterminado es «para siempre» (cero) si el fichero "
 +"«Release» del archivo no incluye una cabecera <literal>Valid-Until</"
 +"literal>. Si lo incluye, el valor predeterminado es esta fecha. La fecha del "
 +"fichero «Release» o la fecha definida por la hora de creación del fichero "
 +"«Release» (cabecera <literal>Date</literal>), a lo que se añaden los "
 +"segundos definidos con estas opciones, se usan para comprobar si la validez "
 +"de un fichero a expirado, usando la fecha más antigua de las dos "
 +"anteriormente mencionadas. Se pueden definir opciones de configuración "
 +"específicas al archivo añadiendo la etiqueta del archivo al nombre de la "
 +"opción."
 +
 +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
- #: apt.conf.5.xml:273
++#: apt.conf.5.xml:290
  msgid "PDiffs"
  msgstr "PDiffs"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:274
++#: apt.conf.5.xml:291
  msgid ""
  "Try to download deltas called <literal>PDiffs</literal> for Packages or "
  "Sources files instead of downloading whole ones. True by default."
@@@ -6072,12 -6157,20 +6324,20 @@@ msgstr "
  "predeterminada"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:277
++#: apt.conf.5.xml:294
+ #, fuzzy
+ #| msgid ""
+ #| "Two sub-options to limit the use of PDiffs are also available: With "
+ #| "<literal>FileLimit</literal> can be specified how many PDiff files are "
+ #| "downloaded at most to patch a file. <literal>SizeLimit</literal> on the "
+ #| "other hand is the maximum percentage of the size of all patches compared "
+ #| "to the size of the targeted file. If one of these limits is exceeded the "
+ #| "complete file is downloaded instead of the patches."
  msgid ""
  "Two sub-options to limit the use of PDiffs are also available: With "
  "<literal>FileLimit</literal> can be specified how many PDiff files are "
  "downloaded at most to patch a file. <literal>SizeLimit</literal> on the "
--"other hand is the maximum precentage of the size of all patches compared to "
++"other hand is the maximum percentage of the size of all patches compared to "
  "the size of the targeted file. If one of these limits is exceeded the "
  "complete file is downloaded instead of the patches."
  msgstr ""
  "estos límites, se descargará el fichero completo en lugar de los parches."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:286
++#: apt.conf.5.xml:303
  msgid "Queue-Mode"
  msgstr "Queue-Mode"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:287
++#: apt.conf.5.xml:304
  msgid ""
  "Queuing mode; <literal>Queue-Mode</literal> can be one of <literal>host</"
  "literal> or <literal>access</literal> which determines how APT parallelizes "
@@@ -6109,12 -6202,12 +6369,12 @@@ msgstr "
  "se abrirá una conexión por cada tipo de URI."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:294
++#: apt.conf.5.xml:311
  msgid "Retries"
  msgstr "Retries"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:295
++#: apt.conf.5.xml:312
  msgid ""
  "Number of retries to perform. If this is non-zero APT will retry failed "
  "files the given number of times."
@@@ -6123,12 -6216,12 +6383,12 @@@ msgstr "
  "intentar obtener los ficheros fallidos el número de veces proporcionado."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:299
++#: apt.conf.5.xml:316
  msgid "Source-Symlinks"
  msgstr "Source-Symlinks"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:300
++#: apt.conf.5.xml:317
  msgid ""
  "Use symlinks for source archives. If set to true then source archives will "
  "be symlinked when possible instead of copying. True is the default."
@@@ -6138,12 -6231,12 +6398,12 @@@ msgstr "
  "forma predeterminada."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:304 sources.list.5.xml:144
++#: apt.conf.5.xml:321 sources.list.5.xml:160
  msgid "http"
  msgstr "http"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:305
++#: apt.conf.5.xml:322
  msgid ""
  "HTTP URIs; http::Proxy is the default http proxy to use. It is in the "
  "standard form of <literal>http://[[user][:pass]@]host[:port]/</literal>. Per "
@@@ -6161,7 -6254,7 +6421,7 @@@ msgstr "
  "definir ninguna de las opciones anteriores."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:313
++#: apt.conf.5.xml:330
  msgid ""
  "Three settings are provided for cache control with HTTP/1.1 compliant proxy "
  "caches. <literal>No-Cache</literal> tells the proxy to not use its cached "
@@@ -6186,7 -6279,7 +6446,7 @@@ msgstr "
  "grandes. Aviso: Squid 2.0.2 no permite usar ninguna de estas opciones."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:323 apt.conf.5.xml:387
++#: apt.conf.5.xml:340 apt.conf.5.xml:404
  msgid ""
  "The option <literal>timeout</literal> sets the timeout timer used by the "
  "method, this applies to all things including connection timeout and data "
@@@ -6197,7 -6290,7 +6457,7 @@@ msgstr "
  "realizar la conexión y para recibir datos."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:326
++#: apt.conf.5.xml:343
  msgid ""
  "One setting is provided to control the pipeline depth in cases where the "
  "remote server is not RFC conforming or buggy (such as Squid 2.0.2).  "
@@@ -6216,7 -6309,7 +6476,7 @@@ msgstr "
  "necesitan esto violan la RFC 2068."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:334
++#: apt.conf.5.xml:351
  msgid ""
  "The used bandwidth can be limited with <literal>Acquire::http::Dl-Limit</"
  "literal> which accepts integer values in kilobyte. The default value is 0 "
@@@ -6231,7 -6324,7 +6491,7 @@@ msgstr "
  "implícitamente la descarga simultánea desde varios servidores)."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:339
++#: apt.conf.5.xml:356
  msgid ""
  "<literal>Acquire::http::User-Agent</literal> can be used to set a different "
  "User-Agent for the http download method as some proxies allow access for "
@@@ -6242,12 -6335,12 +6502,12 @@@ msgstr "
  "permiten el acceso para clientes que usan un identificador conocido."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:345
++#: apt.conf.5.xml:362
  msgid "https"
  msgstr "https"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:346
++#: apt.conf.5.xml:363
  msgid ""
  "HTTPS URIs. Cache-control, Timeout, AllowRedirect, Dl-Limit and proxy "
  "options are the same as for <literal>http</literal> method and will also "
@@@ -6262,7 -6355,7 +6522,7 @@@ msgstr "
  "opción <literal>Pipeline-Depth</literal> no se puede usar por ahora."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:352
++#: apt.conf.5.xml:369
  msgid ""
  "<literal>CaInfo</literal> suboption specifies place of file that holds info "
  "about trusted certificates.  <literal>&lt;host&gt;::CaInfo</literal> is "
@@@ -6299,12 -6392,12 +6559,12 @@@ msgstr "
  "corresponde a la opción por máquina."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:370 sources.list.5.xml:155
++#: apt.conf.5.xml:387 sources.list.5.xml:171
  msgid "ftp"
  msgstr "ftp"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:371
++#: apt.conf.5.xml:388
  msgid ""
  "FTP URIs; ftp::Proxy is the default ftp proxy to use. It is in the standard "
  "form of <literal>ftp://[[user][:pass]@]host[:port]/</literal>. Per host "
@@@ -6338,7 -6431,7 +6598,7 @@@ msgstr "
  "URI."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:390
++#: apt.conf.5.xml:407
  msgid ""
  "Several settings are provided to control passive mode. Generally it is safe "
  "to leave passive mode on, it works in nearly every environment.  However "
@@@ -6354,7 -6447,7 +6614,7 @@@ msgstr "
  "fichero de configuración de muestra para ver algunos ejemplos)."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:397
++#: apt.conf.5.xml:414
  msgid ""
  "It is possible to proxy FTP over HTTP by setting the <envar>ftp_proxy</"
  "envar> environment variable to a http url - see the discussion of the http "
@@@ -6368,7 -6461,7 +6628,7 @@@ msgstr "
  "de http debido a su poca eficiencia."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:402
++#: apt.conf.5.xml:419
  msgid ""
  "The setting <literal>ForceExtended</literal> controls the use of RFC2428 "
  "<literal>EPSV</literal> and <literal>EPRT</literal> commands. The default is "
@@@ -6384,18 -6477,18 +6644,18 @@@ msgstr "
  "compatibles con la RFC 2428."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:409 sources.list.5.xml:137
++#: apt.conf.5.xml:426 sources.list.5.xml:153
  msgid "cdrom"
  msgstr "cdrom"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><literallayout>
--#: apt.conf.5.xml:415
++#: apt.conf.5.xml:432
  #, no-wrap
  msgid "/cdrom/::Mount \"foo\";"
  msgstr "/cdrom/::Mount \"algo\";"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:410
++#: apt.conf.5.xml:427
  msgid ""
  "CDROM URIs; the only setting for CDROM URIs is the mount point, "
  "<literal>cdrom::Mount</literal> which must be the mount point for the CDROM "
@@@ -6417,12 -6510,12 +6677,12 @@@ msgstr "
  "para desmontar usando UMount."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:420
++#: apt.conf.5.xml:437
  msgid "gpgv"
  msgstr "gpgv"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:421
++#: apt.conf.5.xml:438
  msgid ""
  "GPGV URIs; the only option for GPGV URIs is the option to pass additional "
  "parameters to gpgv.  <literal>gpgv::Options</literal> Additional options "
@@@ -6433,18 -6526,18 +6693,18 @@@ msgstr "
  "introducidos a gpgv."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:426
++#: apt.conf.5.xml:443
  msgid "CompressionTypes"
  msgstr "CompressionTypes"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><synopsis>
--#: apt.conf.5.xml:432
++#: apt.conf.5.xml:449
  #, no-wrap
  msgid "Acquire::CompressionTypes::<replaceable>FileExtension</replaceable> \"<replaceable>Methodname</replaceable>\";"
  msgstr "Acquire::CompressionTypes::<replaceable>extensión-del-fichero</replaceable> \"<replaceable>nombre-del-método</replaceable>\";"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:427
++#: apt.conf.5.xml:444
  msgid ""
  "List of compression types which are understood by the acquire methods.  "
  "Files like <filename>Packages</filename> can be available in various "
@@@ -6464,19 -6557,19 +6724,19 @@@ msgstr "
  "\"0\"/>"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><synopsis>
--#: apt.conf.5.xml:437
++#: apt.conf.5.xml:454
  #, no-wrap
  msgid "Acquire::CompressionTypes::Order:: \"gz\";"
  msgstr "Acquire::CompressionTypes::Order:: \"gz\";"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><synopsis>
--#: apt.conf.5.xml:440
++#: apt.conf.5.xml:457
  #, no-wrap
  msgid "Acquire::CompressionTypes::Order { \"lzma\"; \"gz\"; };"
  msgstr "Acquire::CompressionTypes::Order { \"lzma\"; \"gz\"; };"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:433
++#: apt.conf.5.xml:450
  msgid ""
  "Also the <literal>Order</literal> subgroup can be used to define in which "
  "order the acquire system will try to download the compressed files. The "
@@@ -6507,13 -6600,13 +6767,13 @@@ msgstr "
  "lista ya que se añadirá de forma automática."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><literallayout>
--#: apt.conf.5.xml:444
++#: apt.conf.5.xml:461
  #, no-wrap
  msgid "Dir::Bin::bzip2 \"/bin/bzip2\";"
  msgstr "Dir::Bin::bzip2 \"/bin/bzip2\";"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:442
++#: apt.conf.5.xml:459
  #, fuzzy
  #| msgid ""
  #| "Note that at run time the <literal>Dir::Bin::<replaceable>Methodname</"
@@@ -6530,9 -6623,9 +6790,9 @@@ msgid "
  "Note that at run time the <literal>Dir::Bin::<replaceable>Methodname</"
  "replaceable></literal> will be checked: If this setting exists the method "
  "will only be used if this file exists, e.g. for the bzip2 method (the "
--"inbuilt) setting is <placeholder type=\"literallayout\" id=\"0\"/> Note also "
--"that list entries specified on the command line will be added at the end of "
--"the list specified in the configuration files, but before the default "
++"inbuilt) setting is: <placeholder type=\"literallayout\" id=\"0\"/> Note "
++"also that list entries specified on the command line will be added at the "
++"end of the list specified in the configuration files, but before the default "
  "entries. To prefer a type in this case over the ones specified in the "
  "configuration files you can set the option direct - not in list style.  This "
  "will not override the defined list, it will only prefix the list with this "
@@@ -6551,20 -6644,20 +6811,20 @@@ msgstr "
  "lista definida, sólo añadirá este tipo  al principio de la lista."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:449
++#: apt.conf.5.xml:466
  msgid ""
  "The special type <literal>uncompressed</literal> can be used to give "
--"uncompressed files a preference, but note that most archives doesn't provide "
++"uncompressed files a preference, but note that most archives don't provide "
  "uncompressed files so this is mostly only useable for local mirrors."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:454
++#: apt.conf.5.xml:471
  msgid "GzipIndexes"
  msgstr "GzipIndexes"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:456
++#: apt.conf.5.xml:473
  msgid ""
  "When downloading <literal>gzip</literal> compressed indexes (Packages, "
  "Sources, or Translations), keep them gzip compressed locally instead of "
@@@ -6578,12 -6671,12 +6838,12 @@@ msgstr "
  "paquetes locales. El valor predeterminado es «false»."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:463
++#: apt.conf.5.xml:480
  msgid "Languages"
  msgstr "Languages"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:464
++#: apt.conf.5.xml:481
  msgid ""
  "The Languages subsection controls which <filename>Translation</filename> "
  "files are downloaded and in which order APT tries to display the Description-"
@@@ -6604,13 -6697,13 +6864,13 @@@ msgstr "
  "informarse de cuales están disponibles antes de definir valores imposibles."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><programlisting>
--#: apt.conf.5.xml:480
++#: apt.conf.5.xml:497
  #, no-wrap
  msgid "Acquire::Languages { \"environment\"; \"de\"; \"en\"; \"none\"; \"fr\"; };"
  msgstr "Acquire::Languages { \"environment\"; \"de\"; \"en\"; \"none\"; \"fr\"; }"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:470
++#: apt.conf.5.xml:487
  msgid ""
  "The default list includes \"environment\" and \"en\". "
  "\"<literal>environment</literal>\" has a special meaning here: It will be "
@@@ -6652,7 -6745,7 +6912,7 @@@ msgstr "
  "\"0\"/>"
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:245
++#: apt.conf.5.xml:253
  msgid ""
  "The <literal>Acquire</literal> group of options controls the download of "
  "packages and the URI handlers.  <placeholder type=\"variablelist\" id=\"0\"/>"
@@@ -6661,12 -6754,12 +6921,12 @@@ msgstr "
  "paquetes y los gestores de URI. <placeholder type=\"variablelist\" id=\"0\"/>"
  
  #. type: Content of: <refentry><refsect1><title>
--#: apt.conf.5.xml:487
++#: apt.conf.5.xml:504
  msgid "Directories"
  msgstr "Directorios"
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:489
++#: apt.conf.5.xml:506
  msgid ""
  "The <literal>Dir::State</literal> section has directories that pertain to "
  "local state information. <literal>lists</literal> is the directory to place "
@@@ -6686,7 -6779,7 +6946,7 @@@ msgstr "
  "empiecen con <filename>/</filename> ó <filename>./</filename>."
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:496
++#: apt.conf.5.xml:513
  msgid ""
  "<literal>Dir::Cache</literal> contains locations pertaining to local cache "
  "information, such as the two package caches <literal>srcpkgcache</literal> "
@@@ -6708,7 -6801,7 +6968,7 @@@ msgstr "
  "predeterminado está en <literal>Dir::Cache</literal>"
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:505
++#: apt.conf.5.xml:522
  msgid ""
  "<literal>Dir::Etc</literal> contains the location of configuration files, "
  "<literal>sourcelist</literal> gives the location of the sourcelist and "
@@@ -6724,7 -6817,7 +6984,7 @@@ msgstr "
  "<envar>APT_CONFIG</envar>)."
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:511
++#: apt.conf.5.xml:528
  msgid ""
  "The <literal>Dir::Parts</literal> setting reads in all the config fragments "
  "in lexical order from the directory specified. After this is done then the "
@@@ -6735,7 -6828,7 +6995,7 @@@ msgstr "
  "Al finalizar este proceso carga el fichero de configuración principal."
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:515
++#: apt.conf.5.xml:532
  msgid ""
  "Binary programs are pointed to by <literal>Dir::Bin</literal>. <literal>Dir::"
  "Bin::Methods</literal> specifies the location of the method handlers and "
@@@ -6752,7 -6845,7 +7012,7 @@@ msgstr "
  "literal> especifican la ubicación de sus respectivos programas."
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:523
++#: apt.conf.5.xml:540
  msgid ""
  "The configuration item <literal>RootDir</literal> has a special meaning.  If "
  "set, all paths in <literal>Dir::</literal> will be relative to "
@@@ -6773,7 -6866,7 +7033,7 @@@ msgstr "
  "staging/var/lib/dpkg/status</filename>."
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:536
++#: apt.conf.5.xml:553
  msgid ""
  "The <literal>Ignore-Files-Silently</literal> list can be used to specify "
  "which files APT should silently ignore while parsing the files in the "
@@@ -6791,12 -6884,12 +7051,12 @@@ msgstr "
  "de expresiones regulares."
  
  #. type: Content of: <refentry><refsect1><title>
--#: apt.conf.5.xml:545
++#: apt.conf.5.xml:562
  msgid "APT in DSelect"
  msgstr "APT con DSelect"
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:547
++#: apt.conf.5.xml:564
  msgid ""
  "When APT is used as a &dselect; method several configuration directives "
  "control the default behaviour. These are in the <literal>DSelect</literal> "
@@@ -6807,12 -6900,12 +7067,12 @@@ msgstr "
  "encuentran en la sección <literal>DSelect</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:551
++#: apt.conf.5.xml:568
  msgid "Clean"
  msgstr "Clean"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:552
++#: apt.conf.5.xml:569
  msgid ""
  "Cache Clean mode; this value may be one of always, prompt, auto, pre-auto "
  "and never.  always and prompt will remove all packages from the cache after "
@@@ -6830,7 -6923,7 +7090,7 @@@ msgstr "
  "descargar los paquetes nuevos."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:561
++#: apt.conf.5.xml:578
  msgid ""
  "The contents of this variable is passed to &apt-get; as command line options "
  "when it is run for the install phase."
@@@ -6839,12 -6932,12 +7099,12 @@@ msgstr "
  "la línea de ordenes al ejecutar la fase de instalación."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:565
++#: apt.conf.5.xml:582
  msgid "Updateoptions"
  msgstr "Updateoptions"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:566
++#: apt.conf.5.xml:583
  msgid ""
  "The contents of this variable is passed to &apt-get; as command line options "
  "when it is run for the update phase."
@@@ -6853,12 -6946,12 +7113,12 @@@ msgstr "
  "la línea de ordenes al ejecutar la fase de actualización."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:570
++#: apt.conf.5.xml:587
  msgid "PromptAfterUpdate"
  msgstr "PromptAfterUpdate"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:571
++#: apt.conf.5.xml:588
  msgid ""
  "If true the [U]pdate operation in &dselect; will always prompt to continue.  "
  "The default is to prompt only on error."
@@@ -6868,12 -6961,12 +7128,12 @@@ msgstr "
  "preguntará en caso de error."
  
  #. type: Content of: <refentry><refsect1><title>
--#: apt.conf.5.xml:577
++#: apt.conf.5.xml:594
  msgid "How APT calls dpkg"
  msgstr "Cómo invoca APT a dpkg"
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:578
++#: apt.conf.5.xml:595
  msgid ""
  "Several configuration directives control how APT invokes &dpkg;. These are "
  "in the <literal>DPkg</literal> section."
@@@ -6882,7 -6975,7 +7142,7 @@@ msgstr "
  "se encuentran en la sección <literal>DPkg</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:583
++#: apt.conf.5.xml:600
  msgid ""
  "This is a list of options to pass to dpkg. The options must be specified "
  "using the list notation and each list item is passed as a single argument to "
@@@ -6893,17 -6986,17 +7153,17 @@@ msgstr "
  "introduce a &dpkg; como un sólo argumento."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:588
++#: apt.conf.5.xml:605
  msgid "Pre-Invoke"
  msgstr "Pre-Invoke"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:588
++#: apt.conf.5.xml:605
  msgid "Post-Invoke"
  msgstr "Post-Invoke"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:589
++#: apt.conf.5.xml:606
  msgid ""
  "This is a list of shell commands to run before/after invoking &dpkg;.  Like "
  "<literal>options</literal> this must be specified in list notation. The "
@@@ -6916,12 -7009,12 +7176,12 @@@ msgstr "
  "sh</filename>, y APT finalizará en caso de fallo."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:595
++#: apt.conf.5.xml:612
  msgid "Pre-Install-Pkgs"
  msgstr "Pre-Install-Pkgs"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:596
++#: apt.conf.5.xml:613
  msgid ""
  "This is a list of shell commands to run before invoking dpkg. Like "
  "<literal>options</literal> this must be specified in list notation. The "
@@@ -6937,7 -7030,7 +7197,7 @@@ msgstr "
  "instalar, uno por línea."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:602
++#: apt.conf.5.xml:619
  msgid ""
  "Version 2 of this protocol dumps more information, including the protocol "
  "version, the APT configuration space and the packages, files and versions "
@@@ -6953,12 -7046,12 +7213,12 @@@ msgstr "
  "literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:609
++#: apt.conf.5.xml:626
  msgid "Run-Directory"
  msgstr "Run-Directory"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:610
++#: apt.conf.5.xml:627
  msgid ""
  "APT chdirs to this directory before invoking dpkg, the default is <filename>/"
  "</filename>."
@@@ -6967,12 -7060,12 +7227,12 @@@ msgstr "
  "predeterminado es <filename>/</filename>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:614
++#: apt.conf.5.xml:631
  msgid "Build-options"
  msgstr "Build-options"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:615
++#: apt.conf.5.xml:632
  msgid ""
  "These options are passed to &dpkg-buildpackage; when compiling packages, the "
  "default is to disable signing and produce all binaries."
@@@ -6982,12 -7075,12 +7242,12 @@@ msgstr "
  "paquetes y a producir todos los binarios."
  
  #. type: Content of: <refentry><refsect1><refsect2><title>
--#: apt.conf.5.xml:620
++#: apt.conf.5.xml:637
  msgid "dpkg trigger usage (and related options)"
  msgstr "Uso del disparador de dpkg (y de las opciones relacionadas)"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
--#: apt.conf.5.xml:621
++#: apt.conf.5.xml:638
  #, fuzzy
  #| msgid ""
  #| "APT can call dpkg in a way so it can make aggressive use of triggers over "
@@@ -7026,7 -7119,7 +7286,7 @@@ msgstr "
  "mientras se están configurando todos los paquetes."
  
  #. type: Content of: <refentry><refsect1><refsect2><para><literallayout>
--#: apt.conf.5.xml:636
++#: apt.conf.5.xml:653
  #, no-wrap
  msgid ""
  "DPkg::NoTriggers \"true\";\n"
@@@ -7040,7 -7133,7 +7300,7 @@@ msgstr "
  "DPkg::TriggersPending \"true\";"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
--#: apt.conf.5.xml:630
++#: apt.conf.5.xml:647
  msgid ""
  "Note that it is not guaranteed that APT will support these options or that "
  "these options will not cause (big) trouble in the future. If you have "
@@@ -7064,12 -7157,12 +7324,12 @@@ msgstr "
  "\"literallayout\" id=\"0\"/>"
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
--#: apt.conf.5.xml:642
++#: apt.conf.5.xml:659
  msgid "DPkg::NoTriggers"
  msgstr "DPkg::NoTriggers"
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:643
++#: apt.conf.5.xml:660
  msgid ""
  "Add the no triggers flag to all dpkg calls (except the ConfigurePending "
  "call).  See &dpkg; if you are interested in what this actually means. In "
@@@ -7090,12 -7183,12 +7350,12 @@@ msgstr "
  "añadirá esta opción a las llamadas de desempaquetado y borrado."
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
--#: apt.conf.5.xml:650
++#: apt.conf.5.xml:667
  msgid "PackageManager::Configure"
  msgstr "PackageManager::Configure"
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:651
++#: apt.conf.5.xml:668
  msgid ""
  "Valid values are \"<literal>all</literal>\", \"<literal>smart</literal>\" "
  "and \"<literal>no</literal>\".  \"<literal>all</literal>\" is the default "
@@@ -7124,12 -7217,12 +7384,12 @@@ msgstr "
  "sistema. "
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
--#: apt.conf.5.xml:661
++#: apt.conf.5.xml:678
  msgid "DPkg::ConfigurePending"
  msgstr "DPkg::ConfigurePending"
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:662
++#: apt.conf.5.xml:679
  msgid ""
  "If this option is set apt will call <command>dpkg --configure --pending</"
  "command> to let dpkg handle all required configurations and triggers. This "
@@@ -7147,12 -7240,12 +7407,12 @@@ msgstr "
  "desactivar esta opción en todas las ejecuciones menos la última."
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
--#: apt.conf.5.xml:668
++#: apt.conf.5.xml:685
  msgid "DPkg::TriggersPending"
  msgstr "DPkg::TriggersPending"
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:669
++#: apt.conf.5.xml:686
  msgid ""
  "Useful for <literal>smart</literal> configuration as a package which has "
  "pending triggers is not considered as <literal>installed</literal> and dpkg "
@@@ -7168,12 -7261,12 +7428,12 @@@ msgstr "
  "necesarios para configurar este paquete."
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
--#: apt.conf.5.xml:674
++#: apt.conf.5.xml:691
  msgid "PackageManager::UnpackAll"
  msgstr "PackageManager::UnpackAll"
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:675
++#: apt.conf.5.xml:692
  msgid ""
  "As the configuration can be deferred to be done at the end by dpkg it can be "
  "tried to order the unpack series only by critical needs, e.g. by Pre-"
@@@ -7193,12 -7286,12 +7453,12 @@@ msgstr "
  "ser realmente útil."
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
--#: apt.conf.5.xml:682
++#: apt.conf.5.xml:699
  msgid "OrderList::Score::Immediate"
  msgstr "OrderList::Score::Immediate"
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para><literallayout>
--#: apt.conf.5.xml:690
++#: apt.conf.5.xml:707
  #, no-wrap
  msgid ""
  "OrderList::Score {\n"
@@@ -7216,7 -7309,7 +7476,7 @@@ msgstr "
  "};"
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:683
++#: apt.conf.5.xml:700
  msgid ""
  "Essential packages (and there dependencies) should be configured immediately "
  "after unpacking. It will be a good idea to do this quite early in the "
@@@ -7241,12 -7334,12 +7501,12 @@@ msgstr "
  "\"literallayout\" id=\"0\"/>"
  
  #. type: Content of: <refentry><refsect1><title>
--#: apt.conf.5.xml:703
++#: apt.conf.5.xml:720
  msgid "Periodic and Archives options"
  msgstr "Las opciones «Periodic» y «Archives»"
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:704
++#: apt.conf.5.xml:721
  msgid ""
  "<literal>APT::Periodic</literal> and <literal>APT::Archives</literal> groups "
  "of options configure behavior of apt periodic updates, which is done by "
@@@ -7260,12 -7353,12 +7520,12 @@@ msgstr "
  "documentación de estas opciones."
  
  #. type: Content of: <refentry><refsect1><title>
--#: apt.conf.5.xml:712
++#: apt.conf.5.xml:729
  msgid "Debug options"
  msgstr "Opciones de depuración"
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:714
++#: apt.conf.5.xml:731
  msgid ""
  "Enabling options in the <literal>Debug::</literal> section will cause "
  "debugging information to be sent to the standard error stream of the program "
@@@ -7282,7 -7375,7 +7542,7 @@@ msgstr "
  "para un usuario normal, aunque unas cuantas sí son:"
  
  #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
--#: apt.conf.5.xml:725
++#: apt.conf.5.xml:742
  msgid ""
  "<literal>Debug::pkgProblemResolver</literal> enables output about the "
  "decisions made by <literal>dist-upgrade, upgrade, install, remove, purge</"
@@@ -7293,7 -7386,7 +7553,7 @@@ msgstr "
  "purge</literal>."
  
  #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
--#: apt.conf.5.xml:733
++#: apt.conf.5.xml:750
  msgid ""
  "<literal>Debug::NoLocking</literal> disables all file locking.  This can be "
  "used to run some operations (for instance, <literal>apt-get -s install</"
@@@ -7304,7 -7397,7 +7564,7 @@@ msgstr "
  "<literal>apt-get -s install</literal>) como un usuario normal."
  
  #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
--#: apt.conf.5.xml:742
++#: apt.conf.5.xml:759
  msgid ""
  "<literal>Debug::pkgDPkgPM</literal> prints out the actual command line each "
  "time that <literal>apt</literal> invokes &dpkg;."
@@@ -7316,7 -7409,7 +7576,7 @@@ msgstr "
  #.       motivating example, except I haven't a clue why you'd want
  #.       to do this. 
  #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
--#: apt.conf.5.xml:750
++#: apt.conf.5.xml:767
  msgid ""
  "<literal>Debug::IdentCdrom</literal> disables the inclusion of statfs data "
  "in CDROM IDs."
@@@ -7325,19 -7418,19 +7585,19 @@@ msgstr "
  "statfs en los identificadores de los CDROM."
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:760
++#: apt.conf.5.xml:777
  msgid "A full list of debugging options to apt follows."
  msgstr ""
  "A continuación, se muestra la lista completa de las opciones de depuración "
  "de apt."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:765
++#: apt.conf.5.xml:782
  msgid "<literal>Debug::Acquire::cdrom</literal>"
  msgstr "<literal>Debug::Acquire::cdrom</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:769
++#: apt.conf.5.xml:786
  msgid ""
  "Print information related to accessing <literal>cdrom://</literal> sources."
  msgstr ""
  "<literal>cdrom://</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:776
++#: apt.conf.5.xml:793
  msgid "<literal>Debug::Acquire::ftp</literal>"
  msgstr "<literal>Debug::Acquire::ftp</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:780
++#: apt.conf.5.xml:797
  msgid "Print information related to downloading packages using FTP."
  msgstr ""
  "Muestra la información relacionada con la descarga de paquetes mediante FTP."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:787
++#: apt.conf.5.xml:804
  msgid "<literal>Debug::Acquire::http</literal>"
  msgstr "<literal>Debug::Acquire::http</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:791
++#: apt.conf.5.xml:808
  msgid "Print information related to downloading packages using HTTP."
  msgstr ""
  "Muestra la información relacionada con la descarga de paquetes mediante HTTP."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:798
++#: apt.conf.5.xml:815
  msgid "<literal>Debug::Acquire::https</literal>"
  msgstr "<literal>Debug::Acquire::https</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:802
++#: apt.conf.5.xml:819
  msgid "Print information related to downloading packages using HTTPS."
  msgstr ""
  "Muestra la información relacionada con la descarga de paquetes mediante "
  "HTTPS."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:809
++#: apt.conf.5.xml:826
  msgid "<literal>Debug::Acquire::gpgv</literal>"
  msgstr "<literal>Debug::Acquire::gpgv</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:813
++#: apt.conf.5.xml:830
  msgid ""
  "Print information related to verifying cryptographic signatures using "
  "<literal>gpg</literal>."
@@@ -7393,12 -7486,12 +7653,12 @@@ msgstr "
  "criptográficas mediante <literal>gpg</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:820
++#: apt.conf.5.xml:837
  msgid "<literal>Debug::aptcdrom</literal>"
  msgstr "<literal>Debug::aptcdrom</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:824
++#: apt.conf.5.xml:841
  msgid ""
  "Output information about the process of accessing collections of packages "
  "stored on CD-ROMs."
@@@ -7407,24 -7500,24 +7667,24 @@@ msgstr "
  "paquetes almacenadas en CD-ROM."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:831
++#: apt.conf.5.xml:848
  msgid "<literal>Debug::BuildDeps</literal>"
  msgstr "<literal>Debug::BuildDeps</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:834
++#: apt.conf.5.xml:851
  msgid "Describes the process of resolving build-dependencies in &apt-get;."
  msgstr ""
  "Describe el proceso de resolución de dependencias de compilación en &apt-"
  "get;."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:841
++#: apt.conf.5.xml:858
  msgid "<literal>Debug::Hashes</literal>"
  msgstr "<literal>Debug::Hashes</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:844
++#: apt.conf.5.xml:861
  msgid ""
  "Output each cryptographic hash that is generated by the <literal>apt</"
  "literal> libraries."
@@@ -7433,12 -7526,12 +7693,12 @@@ msgstr "
  "<literal>apt</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:851
++#: apt.conf.5.xml:868
  msgid "<literal>Debug::IdentCDROM</literal>"
  msgstr "<literal>Debug::IdentCDROM</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:854
++#: apt.conf.5.xml:871
  msgid ""
  "Do not include information from <literal>statfs</literal>, namely the number "
  "of used and free blocks on the CD-ROM filesystem, when generating an ID for "
@@@ -7449,12 -7542,12 +7709,12 @@@ msgstr "
  "identificador de un CD-ROM."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:862
++#: apt.conf.5.xml:879
  msgid "<literal>Debug::NoLocking</literal>"
  msgstr "<literal>Debug::NoLocking</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:865
++#: apt.conf.5.xml:882
  msgid ""
  "Disable all file locking.  For instance, this will allow two instances of "
  "<quote><literal>apt-get update</literal></quote> to run at the same time."
@@@ -7464,24 -7557,24 +7724,24 @@@ msgstr "
  "a la vez."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:873
++#: apt.conf.5.xml:890
  msgid "<literal>Debug::pkgAcquire</literal>"
  msgstr "<literal>Debug::pkgAcquire</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:877
++#: apt.conf.5.xml:894
  msgid "Log when items are added to or removed from the global download queue."
  msgstr ""
  "Registra los elementos que se añaden o se borran de la cola de descarga "
  "global."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:884
++#: apt.conf.5.xml:901
  msgid "<literal>Debug::pkgAcquire::Auth</literal>"
  msgstr "<literal>Debug::pkgAcquire::Auth</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:887
++#: apt.conf.5.xml:904
  msgid ""
  "Output status messages and errors related to verifying checksums and "
  "cryptographic signatures of downloaded files."
@@@ -7491,12 -7584,12 +7751,12 @@@ msgstr "
  "ficheros descargados."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:894
++#: apt.conf.5.xml:911
  msgid "<literal>Debug::pkgAcquire::Diffs</literal>"
  msgstr "<literal>Debug::pkgAcquire::Diffs</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:897
++#: apt.conf.5.xml:914
  msgid ""
  "Output information about downloading and applying package index list diffs, "
  "and errors relating to package index list diffs."
@@@ -7505,12 -7598,12 +7765,12 @@@ msgstr "
  "lista de índices de paquetes, y los errores relacionados con éstos."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:905
++#: apt.conf.5.xml:922
  msgid "<literal>Debug::pkgAcquire::RRed</literal>"
  msgstr "<literal>Debug::pkgAcquire::RRed</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:909
++#: apt.conf.5.xml:926
  msgid ""
  "Output information related to patching apt package lists when downloading "
  "index diffs instead of full indices."
@@@ -7520,12 -7613,12 +7780,12 @@@ msgstr "
  "índices completos."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:916
++#: apt.conf.5.xml:933
  msgid "<literal>Debug::pkgAcquire::Worker</literal>"
  msgstr "<literal>Debug::pkgAcquire::Worker</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:920
++#: apt.conf.5.xml:937
  msgid ""
  "Log all interactions with the sub-processes that actually perform downloads."
  msgstr ""
  "descargas."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:927
++#: apt.conf.5.xml:944
  msgid "<literal>Debug::pkgAutoRemove</literal>"
  msgstr "<literal>Debug::pkgAutoRemove</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:931
++#: apt.conf.5.xml:948
  msgid ""
  "Log events related to the automatically-installed status of packages and to "
  "the removal of unused packages."
@@@ -7547,12 -7640,12 +7807,12 @@@ msgstr "
  "de los paquetes y con la eliminación de los paquetes sin usar."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:938
++#: apt.conf.5.xml:955
  msgid "<literal>Debug::pkgDepCache::AutoInstall</literal>"
  msgstr "<literal>Debug::pkgDepCache::AutoInstall</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:941
++#: apt.conf.5.xml:958
  msgid ""
  "Generate debug messages describing which packages are being automatically "
  "installed to resolve dependencies.  This corresponds to the initial auto-"
@@@ -7567,12 -7660,12 +7827,12 @@@ msgstr "
  "<literal>apt</literal>. Véase <literal>Debug::pkgProblemResolver</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:952
++#: apt.conf.5.xml:969
  msgid "<literal>Debug::pkgDepCache::Marker</literal>"
  msgstr "<literal>Debug::pkgDepCache::Marker</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:955
++#: apt.conf.5.xml:972
  msgid ""
  "Generate debug messages describing which package is marked as keep/install/"
  "remove while the ProblemResolver does his work.  Each addition or deletion "
@@@ -7602,24 -7695,24 +7862,24 @@@ msgstr "
  "la sección en la que aparece el paquete."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:974
++#: apt.conf.5.xml:991
  msgid "<literal>Debug::pkgInitConfig</literal>"
  msgstr "<literal>Debug::pkgInitConfig</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:977
++#: apt.conf.5.xml:994
  msgid "Dump the default configuration to standard error on startup."
  msgstr ""
  "Vuelca la configuración predeterminada a la salida estándar durante al "
  "iniciarse."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:984
++#: apt.conf.5.xml:1001
  msgid "<literal>Debug::pkgDPkgPM</literal>"
  msgstr "<literal>Debug::pkgDPkgPM</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:987
++#: apt.conf.5.xml:1004
  msgid ""
  "When invoking &dpkg;, output the precise command line with which it is being "
  "invoked, with arguments separated by a single space character."
@@@ -7628,12 -7721,12 +7888,12 @@@ msgstr "
  "invocó, con los argumentos separados por un espacio."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:995
++#: apt.conf.5.xml:1012
  msgid "<literal>Debug::pkgDPkgProgressReporting</literal>"
  msgstr "<literal>Debug::pkgDPkgProgressReporting</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:998
++#: apt.conf.5.xml:1015
  msgid ""
  "Output all the data received from &dpkg; on the status file descriptor and "
  "any errors encountered while parsing it."
@@@ -7642,12 -7735,12 +7902,12 @@@ msgstr "
  "estado y cualquier error encontrado durante el análisis."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:1005
++#: apt.conf.5.xml:1022
  msgid "<literal>Debug::pkgOrderList</literal>"
  msgstr "<literal>Debug::pkgOrderList</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:1009
++#: apt.conf.5.xml:1026
  msgid ""
  "Generate a trace of the algorithm that decides the order in which "
  "<literal>apt</literal> should pass packages to &dpkg;."
@@@ -7656,12 -7749,12 +7916,12 @@@ msgstr "
  "literal> debería entregar los paquetes a &dpkg;."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:1017
++#: apt.conf.5.xml:1034
  msgid "<literal>Debug::pkgPackageManager</literal>"
  msgstr "<literal>Debug::pkgPackageManager</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:1021
++#: apt.conf.5.xml:1038
  msgid ""
  "Output status messages tracing the steps performed when invoking &dpkg;."
  msgstr ""
  "&dpkg;."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:1028
++#: apt.conf.5.xml:1045
  msgid "<literal>Debug::pkgPolicy</literal>"
  msgstr "<literal>Debug::pkgPolicy</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:1032
++#: apt.conf.5.xml:1049
  msgid "Output the priority of each package list on startup."
  msgstr "Muestra la prioridad de cada lista de paquetes al iniciarse."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:1038
++#: apt.conf.5.xml:1055
  msgid "<literal>Debug::pkgProblemResolver</literal>"
  msgstr "<literal>Debug::pkgProblemResolver</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:1042
++#: apt.conf.5.xml:1059
  msgid ""
  "Trace the execution of the dependency resolver (this applies only to what "
  "happens when a complex dependency problem is encountered)."
@@@ -7693,12 -7786,12 +7953,12 @@@ msgstr "
  "lo que ocurre cuando se encuentra un problema de dependencias complejo)."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:1050
++#: apt.conf.5.xml:1067
  msgid "<literal>Debug::pkgProblemResolver::ShowScores</literal>"
  msgstr "<literal>Debug::pkgProblemResolver::ShowScores</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:1053
++#: apt.conf.5.xml:1070
  msgid ""
  "Display a list of all installed packages with their calculated score used by "
  "the pkgProblemResolver. The description of the package is the same as "
@@@ -7709,12 -7802,12 +7969,12 @@@ msgstr "
  "misma que la descrita en <literal>Debug::pkgDepCache::Marker</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:1061
++#: apt.conf.5.xml:1078
  msgid "<literal>Debug::sourceList</literal>"
  msgstr "<literal>Debug::sourceList</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:1065
++#: apt.conf.5.xml:1082
  msgid ""
  "Print information about the vendors read from <filename>/etc/apt/vendors."
  "list</filename>."
@@@ -7723,7 -7816,7 +7983,7 @@@ msgstr "
  "vendors.list</filename>."
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:1088
++#: apt.conf.5.xml:1105
  msgid ""
  "&configureindex; is a configuration file showing example values for all "
  "possible options."
@@@ -7732,13 -7825,13 +7992,13 @@@ msgstr "
  "valores de ejemplo para todas las opciones posibles."
  
  #. type: Content of: <refentry><refsect1><variablelist>
--#: apt.conf.5.xml:1095
++#: apt.conf.5.xml:1112
  msgid "&file-aptconf;"
  msgstr "&file-aptconf;"
  
  #.  ? reading apt.conf 
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:1100
++#: apt.conf.5.xml:1117
  msgid "&apt-cache;, &apt-config;, &apt-preferences;."
  msgstr "&apt-cache;, &apt-config;, &apt-preferences;."
  
@@@ -7847,8 -7940,8 +8107,8 @@@ msgstr "
  msgid ""
  "Note that the files in the <filename>/etc/apt/preferences.d</filename> "
  "directory are parsed in alphanumeric ascending order and need to obey the "
--"following naming convention: The files have no or \"<literal>pref</literal>"
--"\" as filename extension and which only contain alphanumeric, hyphen (-), "
++"following naming convention: The files have either no or \"<literal>pref</"
++"literal>\" as filename extension and only contain alphanumeric, hyphen (-), "
  "underscore (_) and period (.) characters.  Otherwise APT will print a notice "
  "that it has ignored a file if the file doesn't match a pattern in the "
  "<literal>Dir::Ignore-Files-Silently</literal> configuration list - in this "
@@@ -8306,17 -8399,84 +8566,84 @@@ msgstr "
  "Pin-Priority: 500\n"
  
  #. type: Content of: <refentry><refsect1><refsect2><title>
- #: apt_preferences.5.xml:263
+ #: apt_preferences.5.xml:262
+ msgid "Regular expressions and glob() syntax"
+ msgstr ""
+ #. type: Content of: <refentry><refsect1><refsect2><para>
+ #: apt_preferences.5.xml:264
+ msgid ""
+ "APT also supports pinning by glob() expressions and regular expressions "
+ "surrounded by /. For example, the following example assigns the priority 500 "
+ "to all packages from experimental where the name starts with gnome (as a glob"
 -"()-like expression or contains the word kde (as a POSIX extended regular "
++"()-like expression) or contains the word kde (as a POSIX extended regular "
+ "expression surrounded by slashes)."
+ msgstr ""
+ #. type: Content of: <refentry><refsect1><refsect2><programlisting>
+ #: apt_preferences.5.xml:273
+ #, fuzzy, no-wrap
+ #| msgid ""
+ #| "Package: *\n"
+ #| "Pin: release a=unstable\n"
+ #| "Pin-Priority: 50\n"
+ msgid ""
+ "Package: gnome* /kde/\n"
+ "Pin: release n=experimental\n"
+ "Pin-Priority: 500\n"
+ msgstr ""
+ "Package: *\n"
+ "Pin: release a=unstable\n"
+ "Pin-Priority: 50\n"
+ #. type: Content of: <refentry><refsect1><refsect2><para>
+ #: apt_preferences.5.xml:279
+ msgid ""
+ "The rule for those expressions is that they can occur anywhere where a "
 -"string can occur. Those, the following pin assigns the priority 990 to all "
++"string can occur. Thus, the following pin assigns the priority 990 to all "
+ "packages from a release starting with karmic."
+ msgstr ""
+ #. type: Content of: <refentry><refsect1><refsect2><programlisting>
+ #: apt_preferences.5.xml:285
+ #, fuzzy, no-wrap
+ #| msgid ""
+ #| "Package: *\n"
+ #| "Pin: release a=unstable\n"
+ #| "Pin-Priority: 50\n"
+ msgid ""
+ "Package: *\n"
+ "Pin: release n=karmic*\n"
+ "Pin-Priority: 990\n"
+ msgstr ""
+ "Package: *\n"
+ "Pin: release a=unstable\n"
+ "Pin-Priority: 50\n"
+ #. type: Content of: <refentry><refsect1><refsect2><literal>
+ #: apt_preferences.5.xml:290
+ #, fuzzy
+ #| msgid "Packages"
+ msgid "Package"
+ msgstr "Packages"
+ #. type: Content of: <refentry><refsect1><refsect2><literal>
+ #: apt_preferences.5.xml:296
+ msgid "*"
+ msgstr ""
+ #. type: Content of: <refentry><refsect1><refsect2><title>
+ #: apt_preferences.5.xml:306
  msgid "How APT Interprets Priorities"
  msgstr "¿Cómo interpreta APT las prioridades?"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:271
+ #: apt_preferences.5.xml:314
  msgid "P &gt; 1000"
  msgstr "P &gt; 1000"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:272
+ #: apt_preferences.5.xml:315
  msgid ""
  "causes a version to be installed even if this constitutes a downgrade of the "
  "package"
@@@ -8325,12 -8485,12 +8652,12 @@@ msgstr "
  "el sistema."
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:276
+ #: apt_preferences.5.xml:319
  msgid "990 &lt; P &lt;=1000"
  msgstr "990 &lt; P &lt;=1000"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:277
+ #: apt_preferences.5.xml:320
  msgid ""
  "causes a version to be installed even if it does not come from the target "
  "release, unless the installed version is more recent"
@@@ -8339,12 -8499,12 +8666,12 @@@ msgstr "
  "que la versión instalada sea más reciente."
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:282
+ #: apt_preferences.5.xml:325
  msgid "500 &lt; P &lt;=990"
  msgstr "500 &lt; P &lt;=990"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:283
+ #: apt_preferences.5.xml:326
  msgid ""
  "causes a version to be installed unless there is a version available "
  "belonging to the target release or the installed version is more recent"
@@@ -8354,12 -8514,12 +8681,12 @@@ msgstr "
  "más reciente."
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:288
+ #: apt_preferences.5.xml:331
  msgid "100 &lt; P &lt;=500"
  msgstr "100 &lt; P &lt;=500"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:289
+ #: apt_preferences.5.xml:332
  msgid ""
  "causes a version to be installed unless there is a version available "
  "belonging to some other distribution or the installed version is more recent"
@@@ -8368,12 -8528,12 +8695,12 @@@ msgstr "
  "perteneciente a otra distribución, o si la versión instalada es más reciente."
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:294
+ #: apt_preferences.5.xml:337
  msgid "0 &lt; P &lt;=100"
  msgstr "0 &lt; P &lt;=100"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:295
+ #: apt_preferences.5.xml:338
  msgid ""
  "causes a version to be installed only if there is no installed version of "
  "the package"
@@@ -8381,17 -8541,17 +8708,17 @@@ msgstr "
  "La versión sólo se instala si no hay ninguna versión del paquete instalada."
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:299
+ #: apt_preferences.5.xml:342
  msgid "P &lt; 0"
  msgstr "P &lt; 0"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:300
+ #: apt_preferences.5.xml:343
  msgid "prevents the version from being installed"
  msgstr "Evita la instalación de la versión."
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:266
+ #: apt_preferences.5.xml:309
  msgid ""
  "Priorities (P) assigned in the APT preferences file must be positive or "
  "negative integers.  They are interpreted as follows (roughly speaking): "
@@@ -8402,7 -8562,7 +8729,7 @@@ msgstr "
  "siguiente modo: <placeholder type=\"variablelist\" id=\"0\"/>"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:305
+ #: apt_preferences.5.xml:348
  msgid ""
  "If any specific-form records match an available package version then the "
  "first such record determines the priority of the package version.  Failing "
@@@ -8416,7 -8576,7 +8743,7 @@@ msgstr "
  "versión del paquete."
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:311
+ #: apt_preferences.5.xml:354
  msgid ""
  "For example, suppose the APT preferences file contains the three records "
  "presented earlier:"
@@@ -8425,7 -8585,7 +8752,7 @@@ msgstr "
  "registros antes mencionados:"
  
  #. type: Content of: <refentry><refsect1><refsect2><programlisting>
- #: apt_preferences.5.xml:315
+ #: apt_preferences.5.xml:358
  #, no-wrap
  msgid ""
  "Package: perl\n"
@@@ -8453,12 -8613,12 +8780,12 @@@ msgstr "
  "Pin-Priority: 50\n"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:328
+ #: apt_preferences.5.xml:371
  msgid "Then:"
  msgstr "Por ello:"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
- #: apt_preferences.5.xml:330
+ #: apt_preferences.5.xml:373
  msgid ""
  "The most recent available version of the <literal>perl</literal> package "
  "will be installed, so long as that version's version number begins with "
@@@ -8473,7 -8633,7 +8800,7 @@@ msgstr "
  "la versión 5.8*, desactualizando el paquete."
  
  #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
- #: apt_preferences.5.xml:335
+ #: apt_preferences.5.xml:378
  msgid ""
  "A version of any package other than <literal>perl</literal> that is "
  "available from the local system has priority over other versions, even "
@@@ -8484,7 -8644,7 +8811,7 @@@ msgstr "
  "versiones, incluso sobre los pertenecientes a la distribución objetivo."
  
  #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
- #: apt_preferences.5.xml:339
+ #: apt_preferences.5.xml:382
  msgid ""
  "A version of a package whose origin is not the local system but some other "
  "site listed in &sources-list; and which belongs to an <literal>unstable</"
@@@ -8497,12 -8657,12 +8824,12 @@@ msgstr "
  "hay ninguna versión del paquete ya instalado."
  
  #. type: Content of: <refentry><refsect1><refsect2><title>
- #: apt_preferences.5.xml:349
+ #: apt_preferences.5.xml:392
  msgid "Determination of Package Version and Distribution Properties"
  msgstr "Determinar la versión del paquete y las propiedades de la distribución"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:351
+ #: apt_preferences.5.xml:394
  msgid ""
  "The locations listed in the &sources-list; file should provide "
  "<filename>Packages</filename> and <filename>Release</filename> files to "
@@@ -8513,27 -8673,27 +8840,27 @@@ msgstr "
  "describen los paquetes disponibles en cada uno de los sitios."
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:363
+ #: apt_preferences.5.xml:406
  msgid "the <literal>Package:</literal> line"
  msgstr "La línea <literal>Package:</literal>"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:364
+ #: apt_preferences.5.xml:407
  msgid "gives the package name"
  msgstr "indica el nombre del paquete."
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:367 apt_preferences.5.xml:417
+ #: apt_preferences.5.xml:410 apt_preferences.5.xml:460
  msgid "the <literal>Version:</literal> line"
  msgstr "La línea <literal>Version:</literal>"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:368
+ #: apt_preferences.5.xml:411
  msgid "gives the version number for the named package"
  msgstr "indica el número de versión del paquete."
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:355
+ #: apt_preferences.5.xml:398
  msgid ""
  "The <filename>Packages</filename> file is normally found in the directory "
  "<filename>.../dists/<replaceable>dist-name</replaceable>/"
@@@ -8554,12 -8714,12 +8881,12 @@@ msgstr "
  "de APT: <placeholder type=\"variablelist\" id=\"0\"/>"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:384
+ #: apt_preferences.5.xml:427
  msgid "the <literal>Archive:</literal> or <literal>Suite:</literal> line"
  msgstr "Las líneas <literal>Archive:</literal> o <literal>Suite:</literal>"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:385
+ #: apt_preferences.5.xml:428
  msgid ""
  "names the archive to which all the packages in the directory tree belong.  "
  "For example, the line \"Archive: stable\" or \"Suite: stable\" specifies "
@@@ -8577,18 -8737,18 +8904,18 @@@ msgstr "
  "línea en el fichero de preferencias de APT:"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
- #: apt_preferences.5.xml:395
+ #: apt_preferences.5.xml:438
  #, no-wrap
  msgid "Pin: release a=stable\n"
  msgstr "Pin: release a=stable\n"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:401
+ #: apt_preferences.5.xml:444
  msgid "the <literal>Codename:</literal> line"
  msgstr "La línea <literal>Codename:</literal>"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:402
+ #: apt_preferences.5.xml:445
  msgid ""
  "names the codename to which all the packages in the directory tree belong.  "
  "For example, the line \"Codename: &testing-codename;\" specifies that all of "
@@@ -8607,13 -8767,13 +8934,13 @@@ msgstr "
  "de APT:"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
- #: apt_preferences.5.xml:411
+ #: apt_preferences.5.xml:454
  #, no-wrap
  msgid "Pin: release n=&testing-codename;\n"
  msgstr "Pin: release n=&testing-codename;\n"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:418
+ #: apt_preferences.5.xml:461
  msgid ""
  "names the release version.  For example, the packages in the tree might "
  "belong to Debian GNU/Linux release version 3.0.  Note that there is normally "
@@@ -8629,7 -8789,7 +8956,7 @@@ msgstr "
  "siguientes línea en el fichero de preferencias de APT:"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
- #: apt_preferences.5.xml:427
+ #: apt_preferences.5.xml:470
  #, no-wrap
  msgid ""
  "Pin: release v=3.0\n"
@@@ -8641,12 -8801,12 +8968,12 @@@ msgstr "
  "Pin: release 3.0\n"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:436
+ #: apt_preferences.5.xml:479
  msgid "the <literal>Component:</literal> line"
  msgstr "La línea <literal>Component:</literal>"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:437
+ #: apt_preferences.5.xml:480
  msgid ""
  "names the licensing component associated with the packages in the directory "
  "tree of the <filename>Release</filename> file.  For example, the line "
@@@ -8665,18 -8825,18 +8992,18 @@@ msgstr "
  "de APT:"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
- #: apt_preferences.5.xml:446
+ #: apt_preferences.5.xml:489
  #, no-wrap
  msgid "Pin: release c=main\n"
  msgstr "Pin: release c=main\n"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:452
+ #: apt_preferences.5.xml:495
  msgid "the <literal>Origin:</literal> line"
  msgstr "La línea <literal>Origin:</literal>"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:453
+ #: apt_preferences.5.xml:496
  msgid ""
  "names the originator of the packages in the directory tree of the "
  "<filename>Release</filename> file.  Most commonly, this is <literal>Debian</"
@@@ -8689,18 -8849,18 +9016,18 @@@ msgstr "
  "mediante la siguiente línea:"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
- #: apt_preferences.5.xml:459
+ #: apt_preferences.5.xml:502
  #, no-wrap
  msgid "Pin: release o=Debian\n"
  msgstr "Pin: release o=Debian\n"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:465
+ #: apt_preferences.5.xml:508
  msgid "the <literal>Label:</literal> line"
  msgstr "La línea <literal>Label:</literal>"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:466
+ #: apt_preferences.5.xml:509
  msgid ""
  "names the label of the packages in the directory tree of the "
  "<filename>Release</filename> file.  Most commonly, this is <literal>Debian</"
@@@ -8713,13 -8873,13 +9040,13 @@@ msgstr "
  "siguiente línea:"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
- #: apt_preferences.5.xml:472
+ #: apt_preferences.5.xml:515
  #, no-wrap
  msgid "Pin: release l=Debian\n"
  msgstr "Pin: release l=Debian\n"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:373
+ #: apt_preferences.5.xml:416
  msgid ""
  "The <filename>Release</filename> file is normally found in the directory "
  "<filename>.../dists/<replaceable>dist-name</replaceable></filename>: for "
@@@ -8742,7 -8902,7 +9069,7 @@@ msgstr "
  "\" id=\"0\"/>"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:479
+ #: apt_preferences.5.xml:522
  msgid ""
  "All of the <filename>Packages</filename> and <filename>Release</filename> "
  "files retrieved from locations listed in the &sources-list; file are stored "
@@@ -8767,12 -8927,12 +9094,12 @@@ msgstr "
  "la distribución «<literal>unstable</literal>» (inestable)."
  
  #. type: Content of: <refentry><refsect1><refsect2><title>
- #: apt_preferences.5.xml:492
+ #: apt_preferences.5.xml:535
  msgid "Optional Lines in an APT Preferences Record"
  msgstr "Líneas opcionales en el registro de preferencias de APT"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:494
+ #: apt_preferences.5.xml:537
  msgid ""
  "Each record in the APT preferences file can optionally begin with one or "
  "more lines beginning with the word <literal>Explanation:</literal>.  This "
@@@ -8783,12 -8943,12 +9110,12 @@@ msgstr "
  "Útil para comentarios."
  
  #. type: Content of: <refentry><refsect1><refsect2><title>
- #: apt_preferences.5.xml:503
+ #: apt_preferences.5.xml:546
  msgid "Tracking Stable"
  msgstr "Seguir la distribución «stable» (estable)"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
- #: apt_preferences.5.xml:511
+ #: apt_preferences.5.xml:554
  #, no-wrap
  msgid ""
  "Explanation: Uninstall or do not install any Debian-originated\n"
@@@ -8812,7 -8972,7 +9139,7 @@@ msgstr "
  "Pin-Priority: -10\n"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:505
+ #: apt_preferences.5.xml:548
  msgid ""
  "The following APT preferences file will cause APT to assign a priority "
  "higher than the default (500) to all package versions belonging to a "
@@@ -8827,8 -8987,8 +9154,8 @@@ msgstr "
  "<literal>Debian</literal>.  <placeholder type=\"programlisting\" id=\"0\"/>"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
- #: apt_preferences.5.xml:528 apt_preferences.5.xml:574
- #: apt_preferences.5.xml:632
+ #: apt_preferences.5.xml:571 apt_preferences.5.xml:617
+ #: apt_preferences.5.xml:675
  #, no-wrap
  msgid ""
  "apt-get install <replaceable>package-name</replaceable>\n"
@@@ -8840,7 -9000,7 +9167,7 @@@ msgstr "
  "apt-get dist-upgrade\n"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:523
+ #: apt_preferences.5.xml:566
  msgid ""
  "With a suitable &sources-list; file and the above preferences file, any of "
  "the following commands will cause APT to upgrade to the latest "
@@@ -8854,13 -9014,13 +9181,13 @@@ msgstr "
  "\"programlisting\" id=\"0\"/>"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
- #: apt_preferences.5.xml:540
+ #: apt_preferences.5.xml:583
  #, no-wrap
  msgid "apt-get install <replaceable>package</replaceable>/testing\n"
  msgstr "apt-get install <replaceable>paquete</replaceable>/testing\n"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:534
+ #: apt_preferences.5.xml:577
  msgid ""
  "The following command will cause APT to upgrade the specified package to the "
  "latest version from the <literal>testing</literal> distribution; the package "
@@@ -8873,12 -9033,12 +9200,12 @@@ msgstr "
  "\"programlisting\" id=\"0\"/>"
  
  #. type: Content of: <refentry><refsect1><refsect2><title>
- #: apt_preferences.5.xml:546
+ #: apt_preferences.5.xml:589
  msgid "Tracking Testing or Unstable"
  msgstr "Seguir la distribución «testing» (en pruebas) o «unstable» (inestable)"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
- #: apt_preferences.5.xml:555
+ #: apt_preferences.5.xml:598
  #, no-wrap
  msgid ""
  "Package: *\n"
@@@ -8906,7 -9066,7 +9233,7 @@@ msgstr "
  "Pin-Priority: -10\n"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:548
+ #: apt_preferences.5.xml:591
  msgid ""
  "The following APT preferences file will cause APT to assign a high priority "
  "to package versions from the <literal>testing</literal> distribution, a "
@@@ -8923,7 -9083,7 +9250,7 @@@ msgstr "
  ">"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:569
+ #: apt_preferences.5.xml:612
  msgid ""
  "With a suitable &sources-list; file and the above preferences file, any of "
  "the following commands will cause APT to upgrade to the latest "
@@@ -8936,13 -9096,13 +9263,13 @@@ msgstr "
  "<placeholder type=\"programlisting\" id=\"0\"/>"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
- #: apt_preferences.5.xml:589
+ #: apt_preferences.5.xml:632
  #, no-wrap
  msgid "apt-get install <replaceable>package</replaceable>/unstable\n"
  msgstr "apt-get install <replaceable>paquete</replaceable>/unstable\n"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:580
+ #: apt_preferences.5.xml:623
  msgid ""
  "The following command will cause APT to upgrade the specified package to the "
  "latest version from the <literal>unstable</literal> distribution.  "
@@@ -8961,12 -9121,12 +9288,12 @@@ msgstr "
  "instalada.  <placeholder type=\"programlisting\" id=\"0\"/>"
  
  #. type: Content of: <refentry><refsect1><refsect2><title>
- #: apt_preferences.5.xml:596
+ #: apt_preferences.5.xml:639
  msgid "Tracking the evolution of a codename release"
  msgstr "Seguir la evolución de una publicación por el nombre"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
- #: apt_preferences.5.xml:610
+ #: apt_preferences.5.xml:653
  #, no-wrap
  msgid ""
  "Explanation: Uninstall or do not install any Debian-originated package versions\n"
@@@ -9000,7 -9160,7 +9327,7 @@@ msgstr "
  "Pin-Priority: -10\n"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:598
+ #: apt_preferences.5.xml:641
  msgid ""
  "The following APT preferences file will cause APT to assign a priority "
  "higher than the default (500) to all package versions belonging to a "
@@@ -9027,7 -9187,7 +9354,7 @@@ msgstr "
  "\" id=\"0\"/>"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:627
+ #: apt_preferences.5.xml:670
  msgid ""
  "With a suitable &sources-list; file and the above preferences file, any of "
  "the following commands will cause APT to upgrade to the latest version(s) in "
@@@ -9041,13 -9201,13 +9368,13 @@@ msgstr "
  "id=\"0\"/>"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
- #: apt_preferences.5.xml:647
+ #: apt_preferences.5.xml:690
  #, no-wrap
  msgid "apt-get install <replaceable>package</replaceable>/sid\n"
  msgstr "apt-get install <replaceable>paquete</replaceable>/sid\n"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:638
+ #: apt_preferences.5.xml:681
  msgid ""
  "The following command will cause APT to upgrade the specified package to the "
  "latest version from the <literal>sid</literal> distribution.  Thereafter, "
@@@ -9066,12 -9226,12 +9393,12 @@@ msgstr "
  "instalada.  <placeholder type=\"programlisting\" id=\"0\"/>"
  
  #. type: Content of: <refentry><refsect1><variablelist>
- #: apt_preferences.5.xml:656
+ #: apt_preferences.5.xml:699
  msgid "&file-preferences;"
  msgstr "&file-preferences;"
  
  #. type: Content of: <refentry><refsect1><para>
- #: apt_preferences.5.xml:662
+ #: apt_preferences.5.xml:705
  msgid "&apt-get; &apt-cache; &apt-conf; &sources-list;"
  msgstr "&apt-get; &apt-cache; &apt-conf; &sources-list;"
  
@@@ -9205,8 -9365,8 +9532,9 @@@ msgstr "
  
  #. type: Content of: <refentry><refsect1><literallayout>
  #: sources.list.5.xml:81
--#, no-wrap
--msgid "deb uri distribution [component1] [component2] [...]"
++#, fuzzy, no-wrap
++#| msgid "deb uri distribution [component1] [component2] [...]"
++msgid "deb [ options ] uri distribution [component1] [component2] [...]"
  msgstr "deb uri distribución [componente1] [componente2] [...]"
  
  #. type: Content of: <refentry><refsect1><para>
@@@ -9277,6 -9437,6 +9605,38 @@@ msgstr "
  #. type: Content of: <refentry><refsect1><para>
  #: sources.list.5.xml:112
  msgid ""
++"<literal>options</literal> is always optional and needs to be surounded by "
++"square brackets. It can consist of multiple settings in the form "
++"<literal><replaceable>setting</replaceable>=<replaceable>value</"
++"replaceable></literal>.  Multiple settings are separated by spaces. The "
++"following settings are supported by APT, note through that unsupported "
++"settings will be ignored silently:"
++msgstr ""
++
++#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
++#: sources.list.5.xml:117
++msgid ""
++"<literal>arch=<replaceable>arch1</replaceable>,<replaceable>arch2</"
++"replaceable>,…</literal> can be used to specify for which architectures "
++"packages information should be downloaded. If this option is not set all "
++"architectures defined by the <literal>APT::Architectures</literal> option "
++"will be downloaded."
++msgstr ""
++
++#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
++#: sources.list.5.xml:121
++msgid ""
++"<literal>trusted=yes</literal> can be set to indicate that packages from "
++"this source are always authenificated even if the <filename>Release</"
++"filename> file is not signed or the signature can't be checked. This "
++"disables parts of &apt-secure; and should therefore only be used in a local "
++"and trusted context. <literal>trusted=no</literal> is the opposite which "
++"handles even correctly authenificated sources as not authenificated."
++msgstr ""
++
++#. type: Content of: <refentry><refsect1><para>
++#: sources.list.5.xml:128
++msgid ""
  "It is important to list sources in order of preference, with the most "
  "preferred source listed first. Typically this will result in sorting by "
  "speed from fastest to slowest (CD-ROM followed by hosts on a local network, "
@@@ -9288,12 -9448,12 +9648,12 @@@ msgstr "
  "seguidos por servidores de Internet distantes, por ejemplo)."
  
  #. type: Content of: <refentry><refsect1><para>
--#: sources.list.5.xml:117
++#: sources.list.5.xml:133
  msgid "Some examples:"
  msgstr "Algunos ejemplos:"
  
  #. type: Content of: <refentry><refsect1><literallayout>
--#: sources.list.5.xml:119
++#: sources.list.5.xml:135
  #, no-wrap
  msgid ""
  "deb http://ftp.debian.org/debian &stable-codename; main contrib non-free\n"
@@@ -9305,17 -9465,17 +9665,17 @@@ msgstr "
  "   "
  
  #. type: Content of: <refentry><refsect1><title>
--#: sources.list.5.xml:125
++#: sources.list.5.xml:141
  msgid "URI specification"
  msgstr "Especificación de la URI"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: sources.list.5.xml:130
++#: sources.list.5.xml:146
  msgid "file"
  msgstr "file"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: sources.list.5.xml:132
++#: sources.list.5.xml:148
  msgid ""
  "The file scheme allows an arbitrary directory in the file system to be "
  "considered an archive. This is useful for NFS mounts and local mirrors or "
@@@ -9326,7 -9486,7 +9686,7 @@@ msgstr "
  "particiones montadas mediante NFS y réplicas o archivos de paquetes locales."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: sources.list.5.xml:139
++#: sources.list.5.xml:155
  msgid ""
  "The cdrom scheme allows APT to use a local CDROM drive with media swapping. "
  "Use the &apt-cdrom; program to create cdrom entries in the source list."
@@@ -9336,7 -9496,7 +9696,7 @@@ msgstr "
  "list»."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: sources.list.5.xml:146
++#: sources.list.5.xml:162
  msgid ""
  "The http scheme specifies an HTTP server for the archive. If an environment "
  "variable <envar>http_proxy</envar> is set with the format http://server:"
@@@ -9353,7 -9513,7 +9713,7 @@@ msgstr "
  "Tenga en cuenta que este método de autenticación no es seguro."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: sources.list.5.xml:157
++#: sources.list.5.xml:173
  msgid ""
  "The ftp scheme specifies an FTP server for the archive. APT's FTP behavior "
  "is highly configurable; for more information see the &apt-conf; manual page. "
@@@ -9372,12 -9532,12 +9732,12 @@@ msgstr "
  "ignorarán proxies ftp definidos en el fichero de configuración que usen http."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: sources.list.5.xml:166
++#: sources.list.5.xml:182
  msgid "copy"
  msgstr "copy"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: sources.list.5.xml:168
++#: sources.list.5.xml:184
  msgid ""
  "The copy scheme is identical to the file scheme except that packages are "
  "copied into the cache directory instead of used directly at their location.  "
@@@ -9388,17 -9548,17 +9748,17 @@@ msgstr "
  "Esto es útil para gente que use discos zip con APT."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: sources.list.5.xml:173
++#: sources.list.5.xml:189
  msgid "rsh"
  msgstr "rsh"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: sources.list.5.xml:173
++#: sources.list.5.xml:189
  msgid "ssh"
  msgstr "ssh"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: sources.list.5.xml:175
++#: sources.list.5.xml:191
  msgid ""
  "The rsh/ssh method invokes rsh/ssh to connect to a remote host as a given "
  "user and access the files. It is a good idea to do prior arrangements with "
@@@ -9413,12 -9573,12 +9773,12 @@@ msgstr "
  "command> y <command>dd</command> para realizar la transferencia de ficheros."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: sources.list.5.xml:183
++#: sources.list.5.xml:199
  msgid "more recognizable URI types"
  msgstr "Otros tipos de URI reconocidos."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: sources.list.5.xml:185
++#: sources.list.5.xml:201
  msgid ""
  "APT can be extended with more methods shipped in other optional packages "
  "which should follow the nameing scheme <literal>apt-transport-"
@@@ -9439,7 -9599,7 +9799,7 @@@ msgstr "
  "filename></refentrytitle> <manvolnum>1</manvolnum></citerefentry>."
  
  #. type: Content of: <refentry><refsect1><para>
--#: sources.list.5.xml:127
++#: sources.list.5.xml:143
  msgid ""
  "The currently recognized URI types are cdrom, file, http, ftp, copy, ssh, "
  "rsh.  <placeholder type=\"variablelist\" id=\"0\"/>"
@@@ -9448,7 -9608,7 +9808,7 @@@ msgstr "
  "<placeholder type=\"variablelist\" id=\"0\"/>"
  
  #. type: Content of: <refentry><refsect1><para>
--#: sources.list.5.xml:199
++#: sources.list.5.xml:215
  msgid ""
  "Uses the archive stored locally (or NFS mounted) at /home/jason/debian for "
  "stable/main, stable/contrib, and stable/non-free."
@@@ -9457,36 -9617,36 +9817,59 @@@ msgstr "
  "«stable/main», «stable/contrib», y «stable/non-free»."
  
  #. type: Content of: <refentry><refsect1><literallayout>
--#: sources.list.5.xml:201
++#: sources.list.5.xml:217
  #, no-wrap
  msgid "deb file:/home/jason/debian stable main contrib non-free"
  msgstr "deb file:/home/jason/debian stable main contrib non-free"
  
  #. type: Content of: <refentry><refsect1><para>
--#: sources.list.5.xml:203
++#: sources.list.5.xml:219
  msgid "As above, except this uses the unstable (development) distribution."
  msgstr ""
  "Como arriba, excepto que usa la distribución «unstable» (en desarrollo)."
  
  #. type: Content of: <refentry><refsect1><literallayout>
--#: sources.list.5.xml:204
++#: sources.list.5.xml:220
  #, no-wrap
  msgid "deb file:/home/jason/debian unstable main contrib non-free"
  msgstr "deb file:/home/jason/debian unstable main contrib non-free"
  
  #. type: Content of: <refentry><refsect1><para>
--#: sources.list.5.xml:206
++#: sources.list.5.xml:222
  msgid "Source line for the above"
  msgstr "Línea para obtener el código fuente desde la ubicación anterior."
  
  #. type: Content of: <refentry><refsect1><literallayout>
--#: sources.list.5.xml:207
++#: sources.list.5.xml:223
  #, no-wrap
  msgid "deb-src file:/home/jason/debian unstable main contrib non-free"
  msgstr "deb-src file:/home/jason/debian unstable main contrib non-free"
  
  #. type: Content of: <refentry><refsect1><para>
--#: sources.list.5.xml:209
++#: sources.list.5.xml:225
++msgid ""
++"The first line gets package information for the architectures in "
++"<literal>APT::Architectures</literal> while the second always retrieves "
++"<literal>amd64</literal> and <literal>armel</literal>."
++msgstr ""
++
++#. type: Content of: <refentry><refsect1><literallayout>
++#: sources.list.5.xml:227
++#, fuzzy, no-wrap
++#| msgid ""
++#| "deb http://ftp.debian.org/debian &stable-codename; main contrib non-free\n"
++#| "deb http://security.debian.org/ &stable-codename;/updates main contrib non-free\n"
++#| "   "
++msgid ""
++"deb http://ftp.debian.org/debian &stable-codename; main\n"
++"deb [ arch=amd64,armel ] http://ftp.debian.org/debian &stable-codename; main"
++msgstr ""
++"deb http://ftp.debian.org/debian &stable-codename; main contrib non-free\n"
++"deb http://security.debian.org/ &stable-codename;/updates main contrib non-free\n"
++"   "
++
++#. type: Content of: <refentry><refsect1><para>
++#: sources.list.5.xml:230
  msgid ""
  "Uses HTTP to access the archive at archive.debian.org, and uses only the "
  "hamm/main area."
@@@ -9495,13 -9655,13 +9878,13 @@@ msgstr "
  "sólo la sección «hamm/main»."
  
  #. type: Content of: <refentry><refsect1><literallayout>
--#: sources.list.5.xml:211
++#: sources.list.5.xml:232
  #, no-wrap
  msgid "deb http://archive.debian.org/debian-archive hamm main"
  msgstr "deb http://archive.debian.org/debian-archive hamm main"
  
  #. type: Content of: <refentry><refsect1><para>
--#: sources.list.5.xml:213
++#: sources.list.5.xml:234
  msgid ""
  "Uses FTP to access the archive at ftp.debian.org, under the debian "
  "directory, and uses only the &stable-codename;/contrib area."
@@@ -9510,13 -9670,13 +9893,13 @@@ msgstr "
  "directorio «debian», y usa sólo la sección «&stable-codename;/contrib»."
  
  #. type: Content of: <refentry><refsect1><literallayout>
--#: sources.list.5.xml:215
++#: sources.list.5.xml:236
  #, no-wrap
  msgid "deb ftp://ftp.debian.org/debian &stable-codename; contrib"
  msgstr "deb ftp://ftp.debian.org/debian &stable-codename; contrib"
  
  #. type: Content of: <refentry><refsect1><para>
--#: sources.list.5.xml:217
++#: sources.list.5.xml:238
  msgid ""
  "Uses FTP to access the archive at ftp.debian.org, under the debian "
  "directory, and uses only the unstable/contrib area. If this line appears as "
@@@ -9529,20 -9689,20 +9912,20 @@@ msgstr "
  "filename>, se usará sólo una sesión FTP para ambas."
  
  #. type: Content of: <refentry><refsect1><literallayout>
--#: sources.list.5.xml:221
++#: sources.list.5.xml:242
  #, no-wrap
  msgid "deb ftp://ftp.debian.org/debian unstable contrib"
  msgstr "deb ftp://ftp.debian.org/debian unstable contrib"
  
  #. type: Content of: <refentry><refsect1><para><literallayout>
--#: sources.list.5.xml:230
++#: sources.list.5.xml:251
  #, fuzzy, no-wrap
  #| msgid "deb http://ftp.de.debian.org/debian-non-US unstable/binary-$(ARCH)/"
  msgid "deb http://ftp.tlh.debian.org/universe unstable/binary-$(ARCH)/"
  msgstr "deb http://ftp.de.debian.org/debian-non-US unstable/binary-$(ARCH)/"
  
  #. type: Content of: <refentry><refsect1><para>
--#: sources.list.5.xml:223
++#: sources.list.5.xml:244
  #, fuzzy
  #| msgid ""
  #| "Uses HTTP to access the archive at nonus.debian.org, under the debian-non-"
@@@ -9570,7 -9730,7 +9953,7 @@@ msgstr "
  "estructura.) <placeholder type=\"literallayout\" id=\"0\"/>"
  
  #. type: Content of: <refentry><refsect1><para>
--#: sources.list.5.xml:235
++#: sources.list.5.xml:256
  msgid "&apt-cache; &apt-conf;"
  msgstr "&apt-cache; &apt-conf;"
  
@@@ -11095,19 -11255,40 +11478,48 @@@ msgstr "  # apt-get -o dir::cache::arch
  msgid "Which will use the already fetched archives on the disc."
  msgstr "Ésto usará los archivos del disco previamente obtenidos."
  
 -#~ msgid "<option>--md5</option>"
 -#~ msgstr "<option>--md5</option>"
 -
+ #~ msgid ""
 -#~ "Generate MD5 sums. This defaults to on, when turned off the generated "
 -#~ "index files will not have MD5Sum fields where possible.  Configuration "
 -#~ "Item: <literal>APT::FTPArchive::MD5</literal>"
++#~ "Update the local keyring with the keyring of Debian archive keys and "
++#~ "removes from the keyring the archive keys which are no longer valid."
+ #~ msgstr ""
 -#~ "Genera una suma de control MD5. Está activado de forma predeterminada, "
 -#~ "cuando se desactiva los ficheros de índices generados no tendrán los "
 -#~ "campos MD5Sum cuando sea posible. Opción de configuración: <literal>APT::"
 -#~ "FTPArchive::MD5</literal>"
++#~ "Actualiza el registro de claves local con el registro de claves del "
++#~ "archivo Debian, y elimina del registro las claves del archivo que ya no "
++#~ "son válidas."
+ #~ msgid "unmarkauto"
+ #~ msgstr "unmarkauto"
+ #~ msgid "<option>-h</option>"
+ #~ msgstr "<option>-h</option>"
+ #~ msgid "<option>--help</option>"
+ #~ msgstr "<option>--help</option>"
+ #~ msgid "Show a short usage summary."
+ #~ msgstr "Muestra un breve resumen de uso."
+ #~ msgid "<option>-v</option>"
+ #~ msgstr "<option>-v</option>"
+ #~ msgid "<option>--version</option>"
+ #~ msgstr "<option>--version</option>"
+ #~ msgid "Show the program version."
+ #~ msgstr "Muestra la versión del programa."
 +#~ msgid "<option>--md5</option>"
 +#~ msgstr "<option>--md5</option>"
 +
 +#~ msgid ""
 +#~ "Generate MD5 sums. This defaults to on, when turned off the generated "
 +#~ "index files will not have MD5Sum fields where possible.  Configuration "
 +#~ "Item: <literal>APT::FTPArchive::MD5</literal>"
 +#~ msgstr ""
 +#~ "Genera una suma de control MD5. Está activado de forma predeterminada, "
 +#~ "cuando se desactiva los ficheros de índices generados no tendrán los "
 +#~ "campos MD5Sum cuando sea posible. Opción de configuración: <literal>APT::"
 +#~ "FTPArchive::MD5</literal>"
 +
  #~ msgid "to the version that is already installed (if any)."
  #~ msgstr "a la versión instalada (de existir)."
  
diff --combined doc/po/fr.po
index c3648fc88e10adc2d4c2373036834a15d63279d6,037c50de54c41f6472451b28dda2fbb7e816af3a..b41869a7f25a23b5265a0612ed8eca7c35cfe9de
@@@ -9,7 -9,7 +9,7 @@@
  msgid ""
  msgstr ""
  "Project-Id-Version: \n"
- "POT-Creation-Date: 2011-04-05 10:22+0300\n"
 -"POT-Creation-Date: 2011-06-08 16:54+0300\n"
++"POT-Creation-Date: 2011-11-10 16:42+0100\n"
  "PO-Revision-Date: 2011-02-17 07:50+0100\n"
  "Last-Translator: Christian Perrier <bubulle@debian.org>\n"
  "Language-Team: French <debian-l10n-french@lists.debian.org>\n"
@@@ -730,8 -730,8 +730,8 @@@ msgstr "
  
  #. type: Content of: <refentry><refsect1><title>
  #: apt-cache.8.xml:64 apt-cdrom.8.xml:50 apt-config.8.xml:50
--#: apt-extracttemplates.1.xml:46 apt-ftparchive.1.xml:59 apt-get.8.xml:114
- #: apt-key.8.xml:38 apt-mark.8.xml:55 apt-secure.8.xml:43
++#: apt-extracttemplates.1.xml:46 apt-ftparchive.1.xml:59 apt-get.8.xml:121
+ #: apt-key.8.xml:38 apt-mark.8.xml:56 apt-secure.8.xml:43
  #: apt-sortpkgs.1.xml:47 apt.conf.5.xml:42 apt_preferences.5.xml:36
  #: sources.list.5.xml:36
  msgid "Description"
@@@ -751,7 -751,7 +751,7 @@@ msgstr "
  "desquelles il extrait les informations intéressantes."
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt-cache.8.xml:70 apt-get.8.xml:120
++#: apt-cache.8.xml:70 apt-get.8.xml:127
  msgid ""
  "Unless the <option>-h</option>, or <option>--help</option> option is given, "
  "one of the commands below must be present."
@@@ -1250,8 -1250,8 +1250,8 @@@ msgstr "
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
  #: apt-cache.8.xml:278 apt-config.8.xml:96 apt-extracttemplates.1.xml:59
- #: apt-ftparchive.1.xml:525 apt-get.8.xml:331 apt-mark.8.xml:92
 -#: apt-ftparchive.1.xml:525 apt-get.8.xml:331 apt-mark.8.xml:126
--#: apt-sortpkgs.1.xml:57 apt.conf.5.xml:560 apt.conf.5.xml:582
++#: apt-ftparchive.1.xml:525 apt-get.8.xml:342 apt-mark.8.xml:126
++#: apt-sortpkgs.1.xml:57 apt.conf.5.xml:577 apt.conf.5.xml:599
  msgid "options"
  msgstr "options"
  
@@@ -1277,7 -1277,7 +1277,7 @@@ msgstr "
  "<literal>Dir::Cache::pkgcache</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-cache.8.xml:288 apt-ftparchive.1.xml:571 apt-get.8.xml:393
++#: apt-cache.8.xml:288 apt-ftparchive.1.xml:572 apt-get.8.xml:404
  #: apt-sortpkgs.1.xml:61
  msgid "<option>-s</option>"
  msgstr "<option>-s</option>"
@@@ -1304,12 -1304,12 +1304,12 @@@ msgstr "
  "<literal>Dir::Cache::srcpkgcache</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-cache.8.xml:296 apt-ftparchive.1.xml:545 apt-get.8.xml:383
++#: apt-cache.8.xml:296 apt-ftparchive.1.xml:546 apt-get.8.xml:394
  msgid "<option>-q</option>"
  msgstr "<option>-q</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-cache.8.xml:296 apt-ftparchive.1.xml:545 apt-get.8.xml:383
++#: apt-cache.8.xml:296 apt-ftparchive.1.xml:546 apt-get.8.xml:394
  msgid "<option>--quiet</option>"
  msgstr "<option>--quiet</option>"
  
@@@ -1391,9 -1391,9 +1391,16 @@@ msgstr "<option>--no-enhances</option>
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #: apt-cache.8.xml:317
++#, fuzzy
++#| msgid ""
++#| "Per default the <literal>depends</literal> and <literal>rdepends</"
++#| "literal> print all dependencies. This can be twicked with these flags "
++#| "which will omit the specified dependency type.  Configuration Item: "
++#| "<literal>APT::Cache::Show<replaceable>DependencyType</replaceable></"
++#| "literal> e.g. <literal>APT::Cache::ShowRecommends</literal>."
  msgid ""
  "Per default the <literal>depends</literal> and <literal>rdepends</literal> "
--"print all dependencies. This can be twicked with these flags which will omit "
++"print all dependencies. This can be tweaked with these flags which will omit "
  "the specified dependency type.  Configuration Item: <literal>APT::Cache::"
  "Show<replaceable>DependencyType</replaceable></literal> e.g. <literal>APT::"
  "Cache::ShowRecommends</literal>."
@@@ -1405,7 -1405,7 +1412,7 @@@ msgstr "
  "replaceable></literal>, p. ex. <literal>APT::Cache::ShowRecommends</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-cache.8.xml:323 apt-cdrom.8.xml:124 apt-get.8.xml:350
++#: apt-cache.8.xml:323 apt-cdrom.8.xml:124 apt-get.8.xml:361
  msgid "<option>-f</option>"
  msgstr "<option>-f</option>"
  
@@@ -1425,7 -1425,7 +1432,8 @@@ msgstr "
  "literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-cache.8.xml:328 apt-cdrom.8.xml:134 apt-ftparchive.1.xml:583
++#: apt-cache.8.xml:328 apt-cdrom.8.xml:134 apt-ftparchive.1.xml:584
++#: apt-get.8.xml:452
  msgid "<option>-a</option>"
  msgstr "<option>-a</option>"
  
@@@ -1545,14 -1545,14 +1553,14 @@@ msgstr "
  
  #. type: Content of: <refentry><refsect1><variablelist>
  #: apt-cache.8.xml:367 apt-cdrom.8.xml:153 apt-config.8.xml:101
--#: apt-extracttemplates.1.xml:70 apt-ftparchive.1.xml:611 apt-get.8.xml:570
- #: apt-sortpkgs.1.xml:67
++#: apt-extracttemplates.1.xml:70 apt-ftparchive.1.xml:612 apt-get.8.xml:596
+ #: apt-mark.8.xml:140 apt-sortpkgs.1.xml:67
  msgid "&apt-commonoptions;"
  msgstr "&apt-commonoptions;"
  
  #. type: Content of: <refentry><refsect1><title>
- #: apt-cache.8.xml:372 apt-get.8.xml:575 apt-key.8.xml:156 apt-mark.8.xml:125
- #: apt.conf.5.xml:1093 apt_preferences.5.xml:654
 -#: apt-cache.8.xml:372 apt-get.8.xml:575 apt-key.8.xml:172 apt-mark.8.xml:144
 -#: apt.conf.5.xml:1093 apt_preferences.5.xml:697
++#: apt-cache.8.xml:372 apt-get.8.xml:601 apt-key.8.xml:175 apt-mark.8.xml:144
++#: apt.conf.5.xml:1110 apt_preferences.5.xml:697
  msgid "Files"
  msgstr "Fichiers"
  
@@@ -1563,10 -1563,10 +1571,10 @@@ msgstr "&file-sourceslist; &file-statel
  
  #. type: Content of: <refentry><refsect1><title>
  #: apt-cache.8.xml:379 apt-cdrom.8.xml:158 apt-config.8.xml:106
--#: apt-extracttemplates.1.xml:77 apt-ftparchive.1.xml:627 apt-get.8.xml:585
- #: apt-key.8.xml:177 apt-mark.8.xml:131 apt-secure.8.xml:185
- #: apt-sortpkgs.1.xml:72 apt.conf.5.xml:1099 apt_preferences.5.xml:661
 -#: apt-key.8.xml:193 apt-mark.8.xml:150 apt-secure.8.xml:185
 -#: apt-sortpkgs.1.xml:72 apt.conf.5.xml:1099 apt_preferences.5.xml:704
--#: sources.list.5.xml:234
++#: apt-extracttemplates.1.xml:77 apt-ftparchive.1.xml:628 apt-get.8.xml:611
++#: apt-key.8.xml:196 apt-mark.8.xml:150 apt-secure.8.xml:185
++#: apt-sortpkgs.1.xml:72 apt.conf.5.xml:1116 apt_preferences.5.xml:704
++#: sources.list.5.xml:255
  msgid "See Also"
  msgstr "Voir aussi"
  
@@@ -1577,8 -1577,8 +1585,8 @@@ msgstr "&apt-conf;, &sources-list;, &ap
  
  #. type: Content of: <refentry><refsect1><title>
  #: apt-cache.8.xml:384 apt-cdrom.8.xml:163 apt-config.8.xml:111
--#: apt-extracttemplates.1.xml:81 apt-ftparchive.1.xml:631 apt-get.8.xml:591
- #: apt-mark.8.xml:135 apt-sortpkgs.1.xml:76
++#: apt-extracttemplates.1.xml:81 apt-ftparchive.1.xml:632 apt-get.8.xml:617
+ #: apt-mark.8.xml:154 apt-sortpkgs.1.xml:76
  msgid "Diagnostics"
  msgstr "Diagnostics"
  
@@@ -1707,12 -1707,12 +1715,12 @@@ msgstr "
  "\"variablelist\" id=\"0\"/>"
  
  #. type: Content of: <refentry><refsect1><title>
- #: apt-cdrom.8.xml:94 apt-key.8.xml:142
 -#: apt-cdrom.8.xml:94 apt-key.8.xml:158
++#: apt-cdrom.8.xml:94 apt-key.8.xml:161
  msgid "Options"
  msgstr "Options"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-cdrom.8.xml:98 apt-ftparchive.1.xml:539 apt-get.8.xml:345
++#: apt-cdrom.8.xml:98 apt-ftparchive.1.xml:540 apt-get.8.xml:356
  msgid "<option>-d</option>"
  msgstr "<option>-d</option>"
  
@@@ -1756,7 -1756,7 +1764,7 @@@ msgstr "
  "<literal>APT::CDROM::Rename</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-cdrom.8.xml:116 apt-get.8.xml:364
++#: apt-cdrom.8.xml:116 apt-get.8.xml:375
  msgid "<option>-m</option>"
  msgstr "<option>-m</option>"
  
@@@ -1813,17 -1813,17 +1821,17 @@@ msgstr "
  "le CD mais tous les paquets seront repérés."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-cdrom.8.xml:143 apt-get.8.xml:395
++#: apt-cdrom.8.xml:143 apt-get.8.xml:406
  msgid "<option>--just-print</option>"
  msgstr "<option>--just-print</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-cdrom.8.xml:144 apt-get.8.xml:397
++#: apt-cdrom.8.xml:144 apt-get.8.xml:408
  msgid "<option>--recon</option>"
  msgstr "<option>--recon</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-cdrom.8.xml:145 apt-get.8.xml:398
++#: apt-cdrom.8.xml:145 apt-get.8.xml:409
  msgid "<option>--no-act</option>"
  msgstr "<option>--no-act</option>"
  
@@@ -1969,7 -1969,7 +1977,7 @@@ msgid "Just show the contents of the co
  msgstr "Affiche seulement le contenu de l'espace de configuration."
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt-config.8.xml:107 apt-extracttemplates.1.xml:78 apt-ftparchive.1.xml:628
++#: apt-config.8.xml:107 apt-extracttemplates.1.xml:78 apt-ftparchive.1.xml:629
  #: apt-sortpkgs.1.xml:73
  msgid "&apt-conf;"
  msgstr "&apt-conf;"
@@@ -2048,7 -2048,7 +2056,7 @@@ msgstr "
  "<filename>package.config.XXXX</filename>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-extracttemplates.1.xml:63 apt-get.8.xml:504
++#: apt-extracttemplates.1.xml:63 apt-get.8.xml:530
  msgid "<option>-t</option>"
  msgstr "<option>-t</option>"
  
@@@ -2334,7 -2334,7 +2342,7 @@@ msgstr "
  "préciser index et répertoires aussi bien que les paramètres requis."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-ftparchive.1.xml:145 apt-get.8.xml:287
++#: apt-ftparchive.1.xml:145 apt-get.8.xml:298
  msgid "clean"
  msgstr "clean"
  
@@@ -2898,8 -2898,8 +2906,8 @@@ msgstr "
  "distribution ; classiquement, on trouve <literal>main contrib non-free</"
  "literal>."
  
--#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
--#: apt-ftparchive.1.xml:394
++#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
++#: apt-ftparchive.1.xml:394 apt.conf.5.xml:157
  msgid "Architectures"
  msgstr "Architectures"
  
@@@ -3142,10 -3142,10 +3150,10 @@@ msgid "
  "Configuration Items: <literal>APT::FTPArchive::<replaceable>Checksum</"
  "replaceable></literal> and <literal>APT::FTPArchive::<replaceable>Index</"
  "replaceable>::<replaceable>Checksum</replaceable></literal> where "
--"<literal>Index</literal> can be <literal>Packages</literal>, "
--"<literal>Sources</literal> or <literal>Release</literal> and "
--"<literal>Checksum</literal> can be <literal>MD5</literal>, <literal>SHA1</"
--"literal> or <literal>SHA256</literal>."
++"<literal><replaceable>Index</replaceable></literal> can be "
++"<literal>Packages</literal>, <literal>Sources</literal> or <literal>Release</"
++"literal> and <literal><replaceable>Checksum</replaceable></literal> can be "
++"<literal>MD5</literal>, <literal>SHA1</literal> or <literal>SHA256</literal>."
  msgstr ""
  "La valeur des autres champs de métadonnées du fichier Release sont tirées de "
  "la valeur correspondante dans <literal>APT::FTPArchive::Release</literal>, "
  "<literal>Description</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-ftparchive.1.xml:539
++#: apt-ftparchive.1.xml:540
  msgid "<option>--db</option>"
  msgstr "<option>--db</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-ftparchive.1.xml:541
++#: apt-ftparchive.1.xml:542
  msgid ""
  "Use a binary caching DB. This has no effect on the generate command.  "
  "Configuration Item: <literal>APT::FTPArchive::DB</literal>."
@@@ -3172,7 -3172,7 +3180,7 @@@ msgstr "
  "literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-ftparchive.1.xml:547
++#: apt-ftparchive.1.xml:548
  msgid ""
  "Quiet; produces output suitable for logging, omitting progress indicators.  "
  "More q's will produce more quiet up to a maximum of 2. You can also use "
@@@ -3187,12 -3187,12 +3195,12 @@@ msgstr "
  "configuration : <literal>quiet</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-ftparchive.1.xml:553
++#: apt-ftparchive.1.xml:554
  msgid "<option>--delink</option>"
  msgstr "<option>--delink</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-ftparchive.1.xml:555
++#: apt-ftparchive.1.xml:556
  msgid ""
  "Perform Delinking. If the <literal>External-Links</literal> setting is used "
  "then this option actually enables delinking of the files. It defaults to on "
@@@ -3206,12 -3206,12 +3214,12 @@@ msgstr "
  "literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-ftparchive.1.xml:561
++#: apt-ftparchive.1.xml:562
  msgid "<option>--contents</option>"
  msgstr "<option>--contents</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-ftparchive.1.xml:563
++#: apt-ftparchive.1.xml:564
  msgid ""
  "Perform contents generation. When this option is set and package indexes are "
  "being generated with a cache DB then the file listing will also be extracted "
@@@ -3227,12 -3227,12 +3235,12 @@@ msgstr "
  "de configuration : <literal>APT::FTPArchive::Contents</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-ftparchive.1.xml:571
++#: apt-ftparchive.1.xml:572
  msgid "<option>--source-override</option>"
  msgstr "<option>--source-override</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-ftparchive.1.xml:573
++#: apt-ftparchive.1.xml:574
  msgid ""
  "Select the source override file to use with the <literal>sources</literal> "
  "command.  Configuration Item: <literal>APT::FTPArchive::SourceOverride</"
@@@ -3243,12 -3243,12 +3251,12 @@@ msgstr "
  "FTPArchive::SourceOverride</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-ftparchive.1.xml:577
++#: apt-ftparchive.1.xml:578
  msgid "<option>--readonly</option>"
  msgstr "<option>--readonly</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-ftparchive.1.xml:579
++#: apt-ftparchive.1.xml:580
  msgid ""
  "Make the caching databases read only.  Configuration Item: <literal>APT::"
  "FTPArchive::ReadOnlyDB</literal>."
@@@ -3257,12 -3257,12 +3265,12 @@@ msgstr "
  "configuration : <literal>APT::FTPArchive::ReadOnlyDB</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-ftparchive.1.xml:583
++#: apt-ftparchive.1.xml:584
  msgid "<option>--arch</option>"
  msgstr "<option>--arch</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-ftparchive.1.xml:584
++#: apt-ftparchive.1.xml:585
  msgid ""
  "Accept in the <literal>packages</literal> and <literal>contents</literal> "
  "commands only package files matching <literal>*_arch.deb</literal> or "
@@@ -3276,12 -3276,12 +3284,12 @@@ msgstr "
  "<literal>APT::FTPArchive::Architecture</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-ftparchive.1.xml:590
++#: apt-ftparchive.1.xml:591
  msgid "<option>APT::FTPArchive::AlwaysStat</option>"
  msgstr "<option>APT::FTPArchive::AlwaysStat</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-ftparchive.1.xml:592
++#: apt-ftparchive.1.xml:593
  msgid ""
  "&apt-ftparchive; caches as much as possible of metadata in a cachedb. If "
  "packages are recompiled and/or republished with the same version again, this "
@@@ -3304,12 -3304,12 +3312,12 @@@ msgstr "
  "survenir et l'ensemble de ces contrôles devient inutile."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-ftparchive.1.xml:602
++#: apt-ftparchive.1.xml:603
  msgid "<option>APT::FTPArchive::LongDescription</option>"
  msgstr "<option>APT::FTPArchive::LongDescription</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-ftparchive.1.xml:604
++#: apt-ftparchive.1.xml:605
  msgid ""
  "This configuration option defaults to \"<literal>true</literal>\" and should "
  "only be set to <literal>\"false\"</literal> if the Archive generated with "
@@@ -3325,19 -3325,19 +3333,19 @@@ msgstr "
  "generate."
  
  #. type: Content of: <refentry><refsect1><title>
- #: apt-ftparchive.1.xml:616 apt.conf.5.xml:1087 apt_preferences.5.xml:501
 -#: apt-ftparchive.1.xml:616 apt.conf.5.xml:1087 apt_preferences.5.xml:544
--#: sources.list.5.xml:198
++#: apt-ftparchive.1.xml:617 apt.conf.5.xml:1104 apt_preferences.5.xml:544
++#: sources.list.5.xml:214
  msgid "Examples"
  msgstr "Exemples"
  
  #. type: Content of: <refentry><refsect1><para><programlisting>
--#: apt-ftparchive.1.xml:622
++#: apt-ftparchive.1.xml:623
  #, no-wrap
  msgid "<command>apt-ftparchive</command> packages <replaceable>directory</replaceable> | <command>gzip</command> > <filename>Packages.gz</filename>\n"
  msgstr "<command>apt-ftparchive</command> packages <replaceable>répertoire</replaceable> | <command>gzip</command> > <filename>Packages.gz</filename>\n"
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt-ftparchive.1.xml:618
++#: apt-ftparchive.1.xml:619
  msgid ""
  "To create a compressed Packages file for a directory containing binary "
  "packages (.deb): <placeholder type=\"programlisting\" id=\"0\"/>"
@@@ -3346,7 -3346,7 +3354,7 @@@ msgstr "
  "des paquets binaires (.deb): <placeholder type=\"programlisting\" id=\"0\"/>"
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt-ftparchive.1.xml:632
++#: apt-ftparchive.1.xml:633
  msgid ""
  "<command>apt-ftparchive</command> returns zero on normal operation, decimal "
  "100 on error."
@@@ -3377,15 -3377,15 +3385,45 @@@ msgstr "
  
  #. type: Content of: <refentry><refsynopsisdiv><cmdsynopsis>
  #: apt-get.8.xml:39
++#, fuzzy
++#| msgid ""
++#| "<command>apt-get</command> <arg><option>-sqdyfmubV</option></arg> <arg> "
++#| "<option>-o= <replaceable>config_string</replaceable> </option> </arg> "
++#| "<arg> <option>-c= <replaceable>config_file</replaceable> </option> </arg> "
++#| "<arg> <option>-t=</option> <arg choice='plain'> "
++#| "<replaceable>target_release</replaceable> </arg> </arg> <group choice="
++#| "\"req\"> <arg choice='plain'>update</arg> <arg choice='plain'>upgrade</"
++#| "arg> <arg choice='plain'>dselect-upgrade</arg> <arg choice='plain'>dist-"
++#| "upgrade</arg> <arg choice='plain'>install <arg choice=\"plain\" rep="
++#| "\"repeat\"><replaceable>pkg</replaceable> <arg> <group choice='req'> <arg "
++#| "choice='plain'> =<replaceable>pkg_version_number</replaceable> </arg> "
++#| "<arg choice='plain'> /<replaceable>target_release</replaceable> </arg> </"
++#| "group> </arg> </arg> </arg> <arg choice='plain'>remove <arg choice=\"plain"
++#| "\" rep=\"repeat\"><replaceable>pkg</replaceable></arg></arg> <arg "
++#| "choice='plain'>purge <arg choice=\"plain\" rep=\"repeat"
++#| "\"><replaceable>pkg</replaceable></arg></arg> <arg choice='plain'>source "
++#| "<arg choice=\"plain\" rep=\"repeat\"><replaceable>pkg</replaceable> <arg> "
++#| "<group choice='req'> <arg choice='plain'> "
++#| "=<replaceable>pkg_version_number</replaceable> </arg> <arg "
++#| "choice='plain'> /<replaceable>target_release</replaceable> </arg> </"
++#| "group> </arg> </arg> </arg> <arg choice='plain'>build-dep <arg choice="
++#| "\"plain\" rep=\"repeat\"><replaceable>pkg</replaceable></arg></arg> <arg "
++#| "choice='plain'>check</arg> <arg choice='plain'>clean</arg> <arg "
++#| "choice='plain'>autoclean</arg> <arg choice='plain'>autoremove</arg> <arg "
++#| "choice='plain'> <group choice='req'> <arg choice='plain'>-v</arg> <arg "
++#| "choice='plain'>--version</arg> </group> </arg> <arg choice='plain'> "
++#| "<group choice='req'> <arg choice='plain'>-h</arg> <arg choice='plain'>--"
++#| "help</arg> </group> </arg> </group>"
  msgid ""
  "<command>apt-get</command> <arg><option>-sqdyfmubV</option></arg> <arg> "
  "<option>-o= <replaceable>config_string</replaceable> </option> </arg> <arg> "
  "<option>-c= <replaceable>config_file</replaceable> </option> </arg> <arg> "
  "<option>-t=</option> <arg choice='plain'> <replaceable>target_release</"
--"replaceable> </arg> </arg> <group choice=\"req\"> <arg "
--"choice='plain'>update</arg> <arg choice='plain'>upgrade</arg> <arg "
--"choice='plain'>dselect-upgrade</arg> <arg choice='plain'>dist-upgrade</arg> "
--"<arg choice='plain'>install <arg choice=\"plain\" rep=\"repeat"
++"replaceable> </arg> </arg> <arg> <option>-a=</option> <arg choice='plain'> "
++"<replaceable>default_architecture</replaceable> </arg> </arg> <group choice="
++"\"req\"> <arg choice='plain'>update</arg> <arg choice='plain'>upgrade</arg> "
++"<arg choice='plain'>dselect-upgrade</arg> <arg choice='plain'>dist-upgrade</"
++"arg> <arg choice='plain'>install <arg choice=\"plain\" rep=\"repeat"
  "\"><replaceable>pkg</replaceable> <arg> <group choice='req'> <arg "
  "choice='plain'> =<replaceable>pkg_version_number</replaceable> </arg> <arg "
  "choice='plain'> /<replaceable>target_release</replaceable> </arg> </group> </"
@@@ -3434,7 -3434,7 +3472,7 @@@ msgstr "
  "</group> </arg> </group>"
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt-get.8.xml:115
++#: apt-get.8.xml:122
  msgid ""
  "<command>apt-get</command> is the command-line tool for handling packages, "
  "and may be considered the user's \"back-end\" to other tools using the APT "
@@@ -3447,12 -3447,12 +3485,12 @@@ msgstr "
  "existent, comme &dselect;, &aptitude;, &synaptic; and &wajig;."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:124 apt-key.8.xml:127
++#: apt-get.8.xml:131 apt-key.8.xml:127
  msgid "update"
  msgstr "update"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:125
++#: apt-get.8.xml:132
  msgid ""
  "<literal>update</literal> is used to resynchronize the package index files "
  "from their sources. The indexes of available packages are fetched from the "
@@@ -3477,12 -3477,12 +3515,12 @@@ msgstr "
  "ne peut être connue à l'avance."
  
  #. type: <tag></tag>
--#: apt-get.8.xml:136 guide.sgml:121
++#: apt-get.8.xml:143 guide.sgml:121
  msgid "upgrade"
  msgstr "upgrade"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:137
++#: apt-get.8.xml:144
  msgid ""
  "<literal>upgrade</literal> is used to install the newest versions of all "
  "packages currently installed on the system from the sources enumerated in "
@@@ -3508,12 -3508,12 +3546,12 @@@ msgstr "
  "l'existence de nouvelles versions des paquets."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:149
++#: apt-get.8.xml:156
  msgid "dselect-upgrade"
  msgstr "dselect-upgrade"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:150
++#: apt-get.8.xml:157
  msgid ""
  "<literal>dselect-upgrade</literal> is used in conjunction with the "
  "traditional Debian packaging front-end, &dselect;. <literal>dselect-upgrade</"
@@@ -3531,12 -3531,12 +3569,12 @@@ msgstr "
  "installation de nouveaux paquets)."
  
  #. type: <tag></tag>
--#: apt-get.8.xml:159 guide.sgml:140
++#: apt-get.8.xml:166 guide.sgml:140
  msgid "dist-upgrade"
  msgstr "dist-upgrade"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:160
++#: apt-get.8.xml:167
  msgid ""
  "<literal>dist-upgrade</literal> in addition to performing the function of "
  "<literal>upgrade</literal>, also intelligently handles changing dependencies "
@@@ -3559,12 -3559,12 +3597,12 @@@ msgstr "
  "un mécanisme de remplacement des paramètres généraux pour certains paquets."
  
  #. type: <tag></tag>
--#: apt-get.8.xml:172 guide.sgml:131
++#: apt-get.8.xml:179 guide.sgml:131
  msgid "install"
  msgstr "install"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:174
++#: apt-get.8.xml:181
  msgid ""
  "<literal>install</literal> is followed by one or more packages desired for "
  "installation or upgrading.  Each package is a package name, not a fully "
@@@ -3592,7 -3592,7 +3630,7 @@@ msgstr "
  "des conflits d'apt-get."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:192
++#: apt-get.8.xml:199
  msgid ""
  "A specific version of a package can be selected for installation by "
  "following the package name with an equals and the version of the package to "
@@@ -3609,7 -3609,7 +3647,7 @@@ msgstr "
  "unstable)."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:199
++#: apt-get.8.xml:206
  msgid ""
  "Both of the version selection mechanisms can downgrade packages and must be "
  "used with care."
@@@ -3619,7 -3619,7 +3657,7 @@@ msgstr "
  "avec précaution."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:202
++#: apt-get.8.xml:209
  msgid ""
  "This is also the target to use if you want to upgrade one or more already-"
  "installed packages without upgrading every package you have on your system. "
@@@ -3639,7 -3639,7 +3677,7 @@@ msgstr "
  "décrit plus haut) sera récupérée et installée."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:213
++#: apt-get.8.xml:220
  msgid ""
  "Finally, the &apt-preferences; mechanism allows you to create an alternative "
  "installation policy for individual packages."
@@@ -3648,7 -3648,7 +3686,7 @@@ msgstr "
  "l'installation des paquets."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:217
++#: apt-get.8.xml:224
  msgid ""
  "If no package matches the given expression and the expression contains one "
  "of '.', '?' or '*' then it is assumed to be a POSIX regular expression, and "
@@@ -3669,12 -3669,12 +3707,12 @@@ msgstr "
  "d'utiliser une expression plus précise."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:226
++#: apt-get.8.xml:233
  msgid "remove"
  msgstr "remove"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:227
++#: apt-get.8.xml:234
  msgid ""
  "<literal>remove</literal> is identical to <literal>install</literal> except "
  "that packages are removed instead of installed. Note the removing a package "
@@@ -3690,12 -3690,12 +3728,12 @@@ msgstr "
  "d'être supprimé."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:234
++#: apt-get.8.xml:241
  msgid "purge"
  msgstr "purge"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:235
++#: apt-get.8.xml:242
  msgid ""
  "<literal>purge</literal> is identical to <literal>remove</literal> except "
  "that packages are removed and purged (any configuration files are deleted "
@@@ -3706,12 -3706,12 +3744,12 @@@ msgstr "
  "de configuration sont également effacés)."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:239
++#: apt-get.8.xml:246
  msgid "source"
  msgstr "source"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:240
++#: apt-get.8.xml:247
  msgid ""
  "<literal>source</literal> causes <command>apt-get</command> to fetch source "
  "packages. APT will examine the available packages to decide which source "
@@@ -3731,7 -3731,7 +3769,7 @@@ msgstr "
  "respect the default release\"\"\" me paraît douteux."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:248
++#: apt-get.8.xml:255
  msgid ""
  "Source packages are tracked separately from binary packages via <literal>deb-"
  "src</literal> type lines in the &sources-list; file. This means that you "
@@@ -3747,19 -3747,19 +3785,26 @@@ msgstr "
  "installé ou que vous voulez installer."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:255
++#: apt-get.8.xml:262
++#, fuzzy
++#| msgid ""
++#| "If the <option>--compile</option> option is specified then the package "
++#| "will be compiled to a binary .deb using <command>dpkg-buildpackage</"
++#| "command>, if <option>--download-only</option> is specified then the "
++#| "source package will not be unpacked."
  msgid ""
  "If the <option>--compile</option> option is specified then the package will "
--"be compiled to a binary .deb using <command>dpkg-buildpackage</command>, if "
--"<option>--download-only</option> is specified then the source package will "
--"not be unpacked."
++"be compiled to a binary .deb using <command>dpkg-buildpackage</command> for "
++"the architecture as defined by the <command>--host-architecture</command> "
++"option.  If <option>--download-only</option> is specified then the source "
++"package will not be unpacked."
  msgstr ""
  "Si l'option <option>--compile</option> est spécifiée, le paquet est compilé "
  "en un binaire .deb avec <command>dpkg-buildpackage</command>. Si <option>--"
  "download-only</option> est spécifié, le source n'est pas décompacté."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:260
++#: apt-get.8.xml:269
  msgid ""
  "A specific source version can be retrieved by postfixing the source name "
  "with an equals and then the version to fetch, similar to the mechanism used "
@@@ -3774,7 -3774,7 +3819,7 @@@ msgstr "
  "Source</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:266
++#: apt-get.8.xml:275
  msgid ""
  "Note that source packages are not tracked like binary packages, they exist "
  "only in the current directory and are similar to downloading source tar "
@@@ -3785,27 -3785,27 +3830,34 @@@ msgstr "
  "sont semblables à des sources téléchargées sous forme d'archives tar."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:271
++#: apt-get.8.xml:280
  msgid "build-dep"
  msgstr "build-dep"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:272
++#: apt-get.8.xml:281
++#, fuzzy
++#| msgid ""
++#| "<literal>build-dep</literal> causes apt-get to install/remove packages in "
++#| "an attempt to satisfy the build dependencies for a source package."
  msgid ""
  "<literal>build-dep</literal> causes apt-get to install/remove packages in an "
--"attempt to satisfy the build dependencies for a source package."
++"attempt to satisfy the build dependencies for a source package. By default "
++"the dependencies are satisfied to build the package nativly. If desired a "
++"host-architecture can be specified with the <option>--host-architecture</"
++"option> option instead."
  msgstr ""
  "Avec la commande <literal>build-dep</literal>, apt-get installe ou supprime "
  "des paquets dans le but de satisfaire les dépendances de construction d'un "
  "paquet source."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:276
++#: apt-get.8.xml:287
  msgid "check"
  msgstr "check"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:277
++#: apt-get.8.xml:288
  msgid ""
  "<literal>check</literal> is a diagnostic tool; it updates the package cache "
  "and checks for broken dependencies."
@@@ -3814,21 -3814,21 +3866,25 @@@ msgstr "
  "jour le cache des paquets et cherche les dépendances défectueuses."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:281
++#: apt-get.8.xml:292
  msgid "download"
  msgstr "download"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:282
++#: apt-get.8.xml:293
++#, fuzzy
++#| msgid ""
++#| "<literal>download</literal> will download the given binary package into "
++#| "the current directoy."
  msgid ""
  "<literal>download</literal> will download the given binary package into the "
--"current directoy."
++"current directory."
  msgstr ""
  "<literal>download</literal> télécharge le fichier binaire indiqué dans le "
  "répertoire courant."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:288
++#: apt-get.8.xml:299
  msgid ""
  "<literal>clean</literal> clears out the local repository of retrieved "
  "package files. It removes everything but the lock file from "
@@@ -3847,12 -3847,12 +3903,12 @@@ msgstr "
  "temps en temps si l'on veut libérer de l'espace disque."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:297
++#: apt-get.8.xml:308
  msgid "autoclean"
  msgstr "autoclean"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:298
++#: apt-get.8.xml:309
  msgid ""
  "Like <literal>clean</literal>, <literal>autoclean</literal> clears out the "
  "local repository of retrieved package files. The difference is that it only "
@@@ -3871,28 -3871,28 +3927,33 @@@ msgstr "
  "installés."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:307
++#: apt-get.8.xml:318
  msgid "autoremove"
  msgstr "autoremove"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:308
++#: apt-get.8.xml:319
++#, fuzzy
++#| msgid ""
++#| "<literal>autoremove</literal> is used to remove packages that were "
++#| "automatically installed to satisfy dependencies for some package and that "
++#| "are no more needed."
  msgid ""
  "<literal>autoremove</literal> is used to remove packages that were "
--"automatically installed to satisfy dependencies for some package and that "
--"are no more needed."
++"automatically installed to satisfy dependencies for other packages and are "
++"now no longer needed."
  msgstr ""
  "Avec la commande <literal>autoremove</literal>, apt-get supprime les paquets "
  "installés dans le but de satisfaire les dépendances d'un paquet donné et qui "
  "ne sont plus nécessaires."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:312
++#: apt-get.8.xml:323
  msgid "changelog"
  msgstr "changelog"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:313
++#: apt-get.8.xml:324
  msgid ""
  "<literal>changelog</literal> downloads a package changelog and displays it "
  "through <command>sensible-pager</command>. The server name and base "
@@@ -3914,12 -3914,12 +3975,12 @@@ msgstr "
  "<option>install</option>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:335
++#: apt-get.8.xml:346
  msgid "<option>--no-install-recommends</option>"
  msgstr "<option>--no-install-recommends</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:336
++#: apt-get.8.xml:347
  msgid ""
  "Do not consider recommended packages as a dependency for installing.  "
  "Configuration Item: <literal>APT::Install-Recommends</literal>."
@@@ -3928,12 -3928,12 +3989,12 @@@ msgstr "
  "Élément de configuration : <literal>APT::Install-Recommends</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:340
++#: apt-get.8.xml:351
  msgid "<option>--install-suggests</option>"
  msgstr "<option>--install-suggests</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:341
++#: apt-get.8.xml:352
  msgid ""
  "Consider suggested packages as a dependency for installing.  Configuration "
  "Item: <literal>APT::Install-Suggests</literal>."
@@@ -3942,12 -3942,12 +4003,12 @@@ msgstr "
  "de configuration : <literal>APT::Install-Suggests</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:345
++#: apt-get.8.xml:356
  msgid "<option>--download-only</option>"
  msgstr "<option>--download-only</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:346
++#: apt-get.8.xml:357
  msgid ""
  "Download only; package files are only retrieved, not unpacked or installed.  "
  "Configuration Item: <literal>APT::Get::Download-Only</literal>."
@@@ -3957,12 -3957,12 +4018,12 @@@ msgstr "
  "literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:350
++#: apt-get.8.xml:361
  msgid "<option>--fix-broken</option>"
  msgstr "<option>--fix-broken</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:351
++#: apt-get.8.xml:362
  msgid ""
  "Fix; attempt to correct a system with broken dependencies in place. This "
  "option, when used with install/remove, can omit any packages to permit APT "
@@@ -3990,17 -3990,17 +4051,17 @@@ msgstr "
  "configuration : <literal>APT::Get::Fix-Broken</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:364
++#: apt-get.8.xml:375
  msgid "<option>--ignore-missing</option>"
  msgstr "<option>--ignore-missing</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:365
++#: apt-get.8.xml:376
  msgid "<option>--fix-missing</option>"
  msgstr "<option>--fix-missing</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:366
++#: apt-get.8.xml:377
  msgid ""
  "Ignore missing packages; If packages cannot be retrieved or fail the "
  "integrity check after retrieval (corrupted package files), hold back those "
@@@ -4020,12 -4020,12 +4081,12 @@@ msgstr "
  "<literal>APT::Get::Fix-Missing</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:376
++#: apt-get.8.xml:387
  msgid "<option>--no-download</option>"
  msgstr "<option>--no-download</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:377
++#: apt-get.8.xml:388
  msgid ""
  "Disables downloading of packages. This is best used with <option>--ignore-"
  "missing</option> to force APT to use only the .debs it has already "
@@@ -4037,7 -4037,7 +4098,7 @@@ msgstr "
  "literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:384
++#: apt-get.8.xml:395
  msgid ""
  "Quiet; produces output suitable for logging, omitting progress indicators.  "
  "More q's will produce more quiet up to a maximum of 2. You can also use "
@@@ -4059,17 -4059,17 +4120,17 @@@ msgstr "
  "configuration : <literal>quiet</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:394
++#: apt-get.8.xml:405
  msgid "<option>--simulate</option>"
  msgstr "<option>--simulate</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:396
++#: apt-get.8.xml:407
  msgid "<option>--dry-run</option>"
  msgstr "<option>--dry-run</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:399
++#: apt-get.8.xml:410
  msgid ""
  "No action; perform a simulation of events that would occur but do not "
  "actually change the system.  Configuration Item: <literal>APT::Get::"
@@@ -4080,7 -4080,7 +4141,7 @@@ msgstr "
  "<literal>APT::Get::Simulate</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:403
++#: apt-get.8.xml:414
  msgid ""
  "Simulation run as user will deactivate locking (<literal>Debug::NoLocking</"
  "literal>)  automatic. Also a notice will be displayed indicating that this "
@@@ -4099,7 -4099,7 +4160,7 @@@ msgstr "
  "utile qu'<literal>apt-get</literal> envoie de telles notifications)."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:409
++#: apt-get.8.xml:420
  msgid ""
  "Simulate prints out a series of lines each one representing a dpkg "
  "operation, Configure (Conf), Remove (Remv), Unpack (Inst). Square brackets "
@@@ -4112,22 -4112,22 +4173,22 @@@ msgstr "
  "que les dommages n'ont aucune conséquence (rare)."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:416
++#: apt-get.8.xml:427
  msgid "<option>-y</option>"
  msgstr "<option>-y</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:416
++#: apt-get.8.xml:427
  msgid "<option>--yes</option>"
  msgstr "<option>--yes</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:417
++#: apt-get.8.xml:428
  msgid "<option>--assume-yes</option>"
  msgstr "<option>--assume-yes</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:418
++#: apt-get.8.xml:429
  msgid ""
  "Automatic yes to prompts; assume \"yes\" as answer to all prompts and run "
  "non-interactively. If an undesirable situation, such as changing a held "
@@@ -4143,17 -4143,17 +4204,37 @@@ msgstr "
  "configuration : <literal>APT::Get::Assume-Yes</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:425
++#: apt-get.8.xml:436
++#, fuzzy
++#| msgid "<option>--assume-yes</option>"
++msgid "<option>--assume-no</option>"
++msgstr "<option>--assume-yes</option>"
++
++#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
++#: apt-get.8.xml:437
++#, fuzzy
++#| msgid ""
++#| "Locations to fetch packages from.  Configuration Item: <literal>Dir::Etc::"
++#| "SourceList</literal>."
++msgid ""
++"Automatic \"no\" to all prompts.  Configuration Item: <literal>APT::Get::"
++"Assume-No</literal>."
++msgstr ""
++"Emplacements où aller chercher les paquets. Élément de configuration : "
++"<literal>Dir::Etc::SourceList</literal>."
++
++#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
++#: apt-get.8.xml:441
  msgid "<option>-u</option>"
  msgstr "<option>-u</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:425
++#: apt-get.8.xml:441
  msgid "<option>--show-upgraded</option>"
  msgstr "<option>--show-upgraded</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:426
++#: apt-get.8.xml:442
  msgid ""
  "Show upgraded packages; Print out a list of all packages that are to be "
  "upgraded.  Configuration Item: <literal>APT::Get::Show-Upgraded</literal>."
@@@ -4163,17 -4163,17 +4244,17 @@@ msgstr "
  "Upgraded</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:431
++#: apt-get.8.xml:447
  msgid "<option>-V</option>"
  msgstr "<option>-V</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:431
++#: apt-get.8.xml:447
  msgid "<option>--verbose-versions</option>"
  msgstr "<option>--verbose-versions</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:432
++#: apt-get.8.xml:448
  msgid ""
  "Show full versions for upgraded and installed packages.  Configuration Item: "
  "<literal>APT::Get::Show-Versions</literal>."
@@@ -4182,22 -4182,22 +4263,40 @@@ msgstr "
  "Élément de configuration : <literal>APT::Get::Show-Versions</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:436
++#: apt-get.8.xml:453
++#, fuzzy
++#| msgid "<option>--recurse</option>"
++msgid "<option>--host-architecture</option>"
++msgstr "<option>--recurse</option>"
++
++#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
++#: apt-get.8.xml:454
++msgid ""
++"This option controls the architecture packages are built for by <command>apt-"
++"get source --compile</command> and how cross-builddependencies are "
++"satisfied. By default is not set which means that the host architecture is "
++"the same as the build architecture (which is defined by <literal>APT::"
++"Architecture</literal>)  Configuration Item: <literal>APT::Get::Host-"
++"Architecture</literal>"
++msgstr ""
++
++#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
++#: apt-get.8.xml:462
  msgid "<option>-b</option>"
  msgstr "<option>-b</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:436
++#: apt-get.8.xml:462
  msgid "<option>--compile</option>"
  msgstr "<option>--compile</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:437
++#: apt-get.8.xml:463
  msgid "<option>--build</option>"
  msgstr "<option>--build</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:438
++#: apt-get.8.xml:464
  msgid ""
  "Compile source packages after downloading them.  Configuration Item: "
  "<literal>APT::Get::Compile</literal>."
@@@ -4206,12 -4206,12 +4305,12 @@@ msgstr "
  "configuration : <literal>APT::Get::Compile</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:442
++#: apt-get.8.xml:468
  msgid "<option>--ignore-hold</option>"
  msgstr "<option>--ignore-hold</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:443
++#: apt-get.8.xml:469
  msgid ""
  "Ignore package Holds; This causes <command>apt-get</command> to ignore a "
  "hold placed on a package. This may be useful in conjunction with "
@@@ -4225,12 -4225,12 +4324,12 @@@ msgstr "
  "<literal>APT::Ignore-Hold</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:449
++#: apt-get.8.xml:475
  msgid "<option>--no-upgrade</option>"
  msgstr "<option>--no-upgrade</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:450
++#: apt-get.8.xml:476
  msgid ""
  "Do not upgrade packages; When used in conjunction with <literal>install</"
  "literal>, <literal>no-upgrade</literal> will prevent packages on the command "
@@@ -4243,12 -4243,12 +4342,12 @@@ msgstr "
  "Upgrade</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:456
++#: apt-get.8.xml:482
  msgid "<option>--only-upgrade</option>"
  msgstr "<option>--only-upgrade</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:457
++#: apt-get.8.xml:483
  msgid ""
  "Do not install new packages; When used in conjunction with <literal>install</"
  "literal>, <literal>only-upgrade</literal> will prevent packages on the "
@@@ -4262,12 -4262,12 +4361,12 @@@ msgstr "
  "Upgrade</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:463
++#: apt-get.8.xml:489
  msgid "<option>--force-yes</option>"
  msgstr "<option>--force-yes</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:464
++#: apt-get.8.xml:490
  msgid ""
  "Force yes; This is a dangerous option that will cause apt to continue "
  "without prompting if it is doing something potentially harmful. It should "
@@@ -4283,12 -4283,12 +4382,12 @@@ msgstr "
  "yes</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:471
++#: apt-get.8.xml:497
  msgid "<option>--print-uris</option>"
  msgstr "<option>--print-uris</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:472
++#: apt-get.8.xml:498
  msgid ""
  "Instead of fetching the files to install their URIs are printed. Each URI "
  "will have the path, the destination file name, the size and the expected md5 "
@@@ -4310,12 -4310,12 +4409,12 @@@ msgstr "
  "<literal>APT::Get::Print-URIs</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:482
++#: apt-get.8.xml:508
  msgid "<option>--purge</option>"
  msgstr "<option>--purge</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:483
++#: apt-get.8.xml:509
  msgid ""
  "Use purge instead of remove for anything that would be removed.  An asterisk "
  "(\"*\") will be displayed next to packages which are scheduled to be purged. "
@@@ -4329,12 -4329,12 +4428,12 @@@ msgstr "
  "literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:490
++#: apt-get.8.xml:516
  msgid "<option>--reinstall</option>"
  msgstr "<option>--reinstall</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:491
++#: apt-get.8.xml:517
  msgid ""
  "Re-Install packages that are already installed and at the newest version.  "
  "Configuration Item: <literal>APT::Get::ReInstall</literal>."
@@@ -4343,12 -4343,12 +4442,12 @@@ msgstr "
  "Élément de configuration : <literal>APT::Get::ReInstall</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:495
++#: apt-get.8.xml:521
  msgid "<option>--list-cleanup</option>"
  msgstr "<option>--list-cleanup</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:496
++#: apt-get.8.xml:522
  msgid ""
  "This option defaults to on, use <literal>--no-list-cleanup</literal> to turn "
  "it off. When on <command>apt-get</command> will automatically manage the "
@@@ -4366,17 -4366,17 +4465,17 @@@ msgstr "
  "literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:505
++#: apt-get.8.xml:531
  msgid "<option>--target-release</option>"
  msgstr "<option>--target-release</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:506
++#: apt-get.8.xml:532
  msgid "<option>--default-release</option>"
  msgstr "<option>--default-release</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:507
++#: apt-get.8.xml:533
  msgid ""
  "This option controls the default input to the policy engine, it creates a "
  "default pin at priority 990 using the specified release string.  This "
@@@ -4398,12 -4398,12 +4497,12 @@@ msgstr "
  "Release</literal>.  Voyez aussi la page de manuel d'&apt-preferences;."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:520
++#: apt-get.8.xml:546
  msgid "<option>--trivial-only</option>"
  msgstr "<option>--trivial-only</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:522
++#: apt-get.8.xml:548
  msgid ""
  "Only perform operations that are 'trivial'. Logically this can be considered "
  "related to <option>--assume-yes</option>, where <option>--assume-yes</"
@@@ -4417,12 -4417,12 +4516,12 @@@ msgstr "
  "Get::Trivial-Only</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:528
++#: apt-get.8.xml:554
  msgid "<option>--no-remove</option>"
  msgstr "<option>--no-remove</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:529
++#: apt-get.8.xml:555
  msgid ""
  "If any packages are to be removed apt-get immediately aborts without "
  "prompting.  Configuration Item: <literal>APT::Get::Remove</literal>."
@@@ -4432,12 -4432,12 +4531,12 @@@ msgstr "
  "Remove</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:534
++#: apt-get.8.xml:560
  msgid "<option>--auto-remove</option>"
  msgstr "<option>--auto-remove</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:535
++#: apt-get.8.xml:561
  msgid ""
  "If the command is either <literal>install</literal> or <literal>remove</"
  "literal>, then this option acts like running <literal>autoremove</literal> "
@@@ -4450,12 -4450,12 +4549,12 @@@ msgstr "
  "inutilisés. Élément de configuration : <literal>APT::Get::Upgrade</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:541
++#: apt-get.8.xml:567
  msgid "<option>--only-source</option>"
  msgstr "<option>--only-source</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:542
++#: apt-get.8.xml:568
  msgid ""
  "Only has meaning for the <literal>source</literal> and <literal>build-dep</"
  "literal> commands.  Indicates that the given source names are not to be "
@@@ -4475,22 -4475,22 +4574,22 @@@ msgstr "
  "literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:552
++#: apt-get.8.xml:578
  msgid "<option>--diff-only</option>"
  msgstr "<option>--diff-only</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:552
++#: apt-get.8.xml:578
  msgid "<option>--dsc-only</option>"
  msgstr "<option>--dsc-only</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:552
++#: apt-get.8.xml:578
  msgid "<option>--tar-only</option>"
  msgstr "<option>--tar-only</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:553
++#: apt-get.8.xml:579
  msgid ""
  "Download only the diff, dsc, or tar file of a source archive.  Configuration "
  "Item: <literal>APT::Get::Diff-Only</literal>, <literal>APT::Get::Dsc-Only</"
@@@ -4502,12 -4502,12 +4601,12 @@@ msgstr "
  "literal>, "
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:558
++#: apt-get.8.xml:584
  msgid "<option>--arch-only</option>"
  msgstr "<option>--arch-only</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:559
++#: apt-get.8.xml:585
  msgid ""
  "Only process architecture-dependent build-dependencies.  Configuration Item: "
  "<literal>APT::Get::Arch-Only</literal>."
@@@ -4517,12 -4517,12 +4616,12 @@@ msgstr "
  "literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:563
++#: apt-get.8.xml:589
  msgid "<option>--allow-unauthenticated</option>"
  msgstr "<option>--allow-unauthenticated</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:564
++#: apt-get.8.xml:590
  msgid ""
  "Ignore if packages can't be authenticated and don't prompt about it.  This "
  "is useful for tools like pbuilder.  Configuration Item: <literal>APT::Get::"
@@@ -4534,7 -4534,7 +4633,7 @@@ msgstr "
  "AllowUnauthenticated</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist>
--#: apt-get.8.xml:577
++#: apt-get.8.xml:603
  msgid ""
  "&file-sourceslist; &file-aptconf; &file-preferences; &file-cachearchives; "
  "&file-statelists;"
@@@ -4543,7 -4543,7 +4642,7 @@@ msgstr "
  "&file-statelists;"
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt-get.8.xml:586
++#: apt-get.8.xml:612
  msgid ""
  "&apt-cache;, &apt-cdrom;, &dpkg;, &dselect;, &sources-list;, &apt-conf;, "
  "&apt-config;, &apt-secure;, The APT User's guide in &guidesdir;, &apt-"
@@@ -4554,7 -4554,7 +4653,7 @@@ msgstr "
  "« HOWTO » d'APT."
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt-get.8.xml:592
++#: apt-get.8.xml:618
  msgid ""
  "<command>apt-get</command> returns zero on normal operation, decimal 100 on "
  "error."
@@@ -4563,22 -4563,22 +4662,22 @@@ msgstr "
  "décimal 100 en cas d'erreur."
  
  #. type: Content of: <refentry><refsect1><title>
--#: apt-get.8.xml:595
++#: apt-get.8.xml:621
  msgid "ORIGINAL AUTHORS"
  msgstr "AUTEURS D'ORIGINE"
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt-get.8.xml:596
++#: apt-get.8.xml:622
  msgid "&apt-author.jgunthorpe;"
  msgstr "&apt-author.jgunthorpe;"
  
  #. type: Content of: <refentry><refsect1><title>
--#: apt-get.8.xml:599
++#: apt-get.8.xml:625
  msgid "CURRENT AUTHORS"
  msgstr "AUTEURS ACTUELS"
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt-get.8.xml:601
++#: apt-get.8.xml:627
  msgid "&apt-author.team;"
  msgstr "&apt-author.team;"
  
@@@ -4703,14 -4703,30 +4802,33 @@@ msgstr "
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #: apt-key.8.xml:131
  msgid ""
--"Update the local keyring with the keyring of Debian archive keys and removes "
--"from the keyring the archive keys which are no longer valid."
++"Update the local keyring with the archive keyring and remove from the local "
++"keyring the archive keys which are no longer valid.  The archive keyring is "
++"shipped in the <literal>archive-keyring</literal> package of your "
++"distribution, e.g. the <literal>ubuntu-archive-keyring</literal> package in "
++"Ubuntu."
+ msgstr ""
 -"Mettre à jour le trousseau de clés local avec le trousseau de clés de "
 -"l'archive Debian et supprimer les clés qui y sont périmées."
+ #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
 -#: apt-key.8.xml:140
++#: apt-key.8.xml:141
+ #, fuzzy
+ #| msgid "update"
+ msgid "net-update"
+ msgstr "update"
+ #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
 -#: apt-key.8.xml:144
++#: apt-key.8.xml:145
+ msgid ""
 -"Update the local keyring with the keys of a key server and removes from the "
 -"keyring the archive keys which are no longer valid. This requires an "
 -"installed wget and an APT build configured to have a server to fetch from. "
 -"APT in Debian does not support this command, but Ubuntu's APT does."
++"Work similar to the <command>update</command> command above, but get the "
++"archive keyring from an URI instead and validate it against a master key.  "
++"This requires an installed &wget; and an APT build configured to have a "
++"server to fetch from and a master keyring to validate.  APT in Debian does "
++"not support this command and relies on <command>update</command> instead, "
++"but Ubuntu's APT does."
  msgstr ""
- "Mettre à jour le trousseau de clés local avec le trousseau de clés de "
- "l'archive Debian et supprimer les clés qui y sont périmées."
  
  #. type: Content of: <refentry><refsect1><para>
- #: apt-key.8.xml:143
 -#: apt-key.8.xml:159
++#: apt-key.8.xml:162
  msgid ""
  "Note that options need to be defined before the commands described in the "
  "previous section."
@@@ -4719,12 -4735,12 +4837,12 @@@ msgstr "
  "décrites dans la section suivante."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-key.8.xml:145
 -#: apt-key.8.xml:161
++#: apt-key.8.xml:164
  msgid "--keyring <replaceable>filename</replaceable>"
  msgstr "--keyring <replaceable>fichier</replaceable>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
- #: apt-key.8.xml:146
 -#: apt-key.8.xml:162
++#: apt-key.8.xml:165
  msgid ""
  "With this option it is possible to specify a specific keyring file the "
  "command should operate on. The default is that a command is executed on the "
@@@ -4741,53 -4757,57 +4859,66 @@@ msgstr "
  "les nouvelles clés y seront ajoutées."
  
  #. type: Content of: <refentry><refsect1><variablelist>
- #: apt-key.8.xml:159
 -#: apt-key.8.xml:175
++#: apt-key.8.xml:178
  msgid "&file-trustedgpg;"
  msgstr "&file-trustedgpg;"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-key.8.xml:161
 -#: apt-key.8.xml:177
++#: apt-key.8.xml:180
  msgid "<filename>/etc/apt/trustdb.gpg</filename>"
  msgstr "<filename>/etc/apt/trustdb.gpg</filename>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
- #: apt-key.8.xml:162
 -#: apt-key.8.xml:178
++#: apt-key.8.xml:181
  msgid "Local trust database of archive keys."
  msgstr "Base de données locale de fiabilité des clés de l'archive."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-key.8.xml:165
 -#: apt-key.8.xml:181
--msgid "<filename>/usr/share/keyrings/debian-archive-keyring.gpg</filename>"
++#: apt-key.8.xml:184
++#, fuzzy
++#| msgid "<filename>/usr/share/keyrings/debian-archive-keyring.gpg</filename>"
++msgid "<filename>/usr/share/keyrings/ubuntu-archive-keyring.gpg</filename>"
  msgstr "<filename>/usr/share/keyrings/debian-archive-keyring.gpg</filename>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
- #: apt-key.8.xml:166
 -#: apt-key.8.xml:182
--msgid "Keyring of Debian archive trusted keys."
++#: apt-key.8.xml:185
++#, fuzzy
++#| msgid "Keyring of Debian archive trusted keys."
++msgid "Keyring of Ubuntu archive trusted keys."
  msgstr "Trousseau des clés fiables de l'archive Debian."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-key.8.xml:169
 -#: apt-key.8.xml:185
++#: apt-key.8.xml:188
++#, fuzzy
++#| msgid ""
++#| "<filename>/usr/share/keyrings/debian-archive-removed-keys.gpg</filename>"
  msgid ""
--"<filename>/usr/share/keyrings/debian-archive-removed-keys.gpg</filename>"
++"<filename>/usr/share/keyrings/ubuntu-archive-removed-keys.gpg</filename>"
  msgstr ""
  "<filename>/usr/share/keyrings/debian-archive-removed-keys.gpg</filename>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
- #: apt-key.8.xml:170
 -#: apt-key.8.xml:186
--msgid "Keyring of Debian archive removed trusted keys."
++#: apt-key.8.xml:189
++#, fuzzy
++#| msgid "Keyring of Debian archive removed trusted keys."
++msgid "Keyring of Ubuntu archive removed trusted keys."
  msgstr "Trousseau des clés fiables supprimées de l'archive Debian."
  
  #. type: Content of: <refentry><refsect1><para>
- #: apt-key.8.xml:179
 -#: apt-key.8.xml:195
++#: apt-key.8.xml:198
  msgid "&apt-get;, &apt-secure;"
  msgstr "&apt-get;, &apt-secure;"
  
  #.  The last update date 
  #. type: Content of: <refentry><refentryinfo>
  #: apt-mark.8.xml:16
+ #, fuzzy
+ #| msgid ""
+ #| "&apt-author.moconnor; &apt-author.team; &apt-email; &apt-product; <date>9 "
+ #| "August 2009</date>"
  msgid ""
- "&apt-author.moconnor; &apt-author.team; &apt-email; &apt-product; <date>9 "
- "August 2009</date>"
+ "&apt-author.moconnor; &apt-author.team; &apt-email; &apt-product; <date>21 "
+ "April 2011</date>"
  msgstr ""
  "&apt-author.moconnor; &apt-author.team; &apt-email; &apt-product; <date>9 "
  "août 2009</date>"
@@@ -4804,13 -4824,22 +4935,22 @@@ msgstr "Indiquer si un paquet a été i
  
  #. type: Content of: <refentry><refsynopsisdiv><cmdsynopsis>
  #: apt-mark.8.xml:39
+ #, fuzzy
+ #| msgid ""
+ #| "  <command>apt-mark</command> <arg><option>-hv</option></arg> "
+ #| "<arg><option>-f=<replaceable>FILENAME</replaceable></option></arg> <group "
+ #| "choice=\"plain\"> <arg choice=\"plain\"> <group choice=\"req\"> <arg "
+ #| "choice=\"plain\">markauto</arg> <arg choice=\"plain\">unmarkauto</arg> </"
+ #| "group> <arg choice=\"plain\" rep=\"repeat\"><replaceable>package</"
+ #| "replaceable></arg> </arg> <arg choice=\"plain\">showauto</arg> </group>"
  msgid ""
  "  <command>apt-mark</command> <arg><option>-hv</option></arg> <arg><option>-"
  "f=<replaceable>FILENAME</replaceable></option></arg> <group choice=\"plain"
  "\"> <arg choice=\"plain\"> <group choice=\"req\"> <arg choice=\"plain"
- "\">markauto</arg> <arg choice=\"plain\">unmarkauto</arg> </group> <arg "
+ "\">auto</arg> <arg choice=\"plain\">manual</arg> <arg choice=\"plain"
+ "\">showauto</arg> <arg choice=\"plain\">showmanual</arg> </group> <arg "
  "choice=\"plain\" rep=\"repeat\"><replaceable>package</replaceable></arg> </"
- "arg> <arg choice=\"plain\">showauto</arg> </group>"
+ "arg> </group>"
  msgstr ""
  "  <command>apt-mark</command> <arg><option>-hv</option></arg> <arg><option>-"
  "f=<replaceable>FICHIER</replaceable></option></arg> <group choice=\"plain\"> "
  "arg> <arg choice=\"plain\">showauto</arg> </group>"
  
  #. type: Content of: <refentry><refsect1><para>
- #: apt-mark.8.xml:56
+ #: apt-mark.8.xml:57
  msgid ""
  "<command>apt-mark</command> will change whether a package has been marked as "
  "being automatically installed."
@@@ -4829,7 -4858,7 +4969,7 @@@ msgstr "
  "a été automatiquement installé ou pas."
  
  #. type: Content of: <refentry><refsect1><para>
- #: apt-mark.8.xml:60
+ #: apt-mark.8.xml:61
  msgid ""
  "When you request that a package is installed, and as a result other packages "
  "are installed to satisfy its dependencies, the dependencies are marked as "
@@@ -4845,14 -4874,21 +4985,21 @@@ msgstr "
  "command>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-mark.8.xml:68
- msgid "markauto"
+ #: apt-mark.8.xml:69
+ #, fuzzy
+ #| msgid "markauto"
+ msgid "auto"
  msgstr "markauto"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
- #: apt-mark.8.xml:69
+ #: apt-mark.8.xml:70
+ #, fuzzy
+ #| msgid ""
+ #| "<literal>markauto</literal> is used to mark a package as being "
+ #| "automatically installed, which will cause the package to be removed when "
+ #| "no more manually installed packages depend on this package."
  msgid ""
- "<literal>markauto</literal> is used to mark a package as being automatically "
+ "<literal>auto</literal> is used to mark a package as being automatically "
  "installed, which will cause the package to be removed when no more manually "
  "installed packages depend on this package."
  msgstr ""
  "que plus aucun paquet installé manuellement ne dépend de lui."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-mark.8.xml:76
- msgid "unmarkauto"
- msgstr "unmarkauto"
+ #: apt-mark.8.xml:77
+ msgid "manual"
+ msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
- #: apt-mark.8.xml:77
+ #: apt-mark.8.xml:78
+ #, fuzzy
+ #| msgid ""
+ #| "<literal>unmarkauto</literal> is used to mark a package as being manually "
+ #| "installed, which will prevent the package from being automatically "
+ #| "removed if no other packages depend on it."
  msgid ""
- "<literal>unmarkauto</literal> is used to mark a package as being manually "
+ "<literal>manual</literal> is used to mark a package as being manually "
  "installed, which will prevent the package from being automatically removed "
  "if no other packages depend on it."
  msgstr ""
  "aucun autre paquet n'en dépend."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-mark.8.xml:84
+ #: apt-mark.8.xml:85
+ msgid "hold"
+ msgstr ""
+ #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
+ #: apt-mark.8.xml:86
+ msgid ""
+ "<literal>hold</literal> is used to mark a package as hold back, which will "
+ "prevent the package from being automatically installed, upgraded or "
+ "removed.  The command is only a wrapper around <command>dpkg --set-"
+ "selections</command> and the state is therefore maintained by &dpkg; and not "
+ "effected by the <option>--filename</option> option."
+ msgstr ""
+ #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
+ #: apt-mark.8.xml:95
+ msgid "unhold"
+ msgstr ""
+ #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
+ #: apt-mark.8.xml:96
+ #, fuzzy
+ #| msgid ""
+ #| "<literal>showauto</literal> is used to print a list of automatically "
+ #| "installed packages with each package on a new line."
+ msgid ""
+ "<literal>unhold</literal> is used to cancel a previously set hold on a "
+ "package to allow all actions again."
+ msgstr ""
+ "<literal>showauto</literal>, affiche les paquets installés automatiquement, "
+ "un paquet par ligne."
+ #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
+ #: apt-mark.8.xml:101
  msgid "showauto"
  msgstr "showauto"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
- #: apt-mark.8.xml:85
+ #: apt-mark.8.xml:102
+ #, fuzzy
+ #| msgid ""
+ #| "<literal>showauto</literal> is used to print a list of automatically "
+ #| "installed packages with each package on a new line."
  msgid ""
  "<literal>showauto</literal> is used to print a list of automatically "
- "installed packages with each package on a new line."
+ "installed packages with each package on a new line.  All automatically "
+ "installed packages will be listed if no package is given.  If packages are "
+ "given only those which are automatically installed will be shown."
  msgstr ""
  "<literal>showauto</literal>, affiche les paquets installés automatiquement, "
  "un paquet par ligne."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-mark.8.xml:96
+ #: apt-mark.8.xml:109
+ #, fuzzy
+ #| msgid "showauto"
+ msgid "showmanual"
+ msgstr "showauto"
+ #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
+ #: apt-mark.8.xml:110
+ msgid ""
+ "<literal>showmanual</literal> can be used in the same way as "
+ "<literal>showauto</literal> except that it will print a list of manually "
+ "installed packages instead."
+ msgstr ""
+ #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
+ #: apt-mark.8.xml:116
+ #, fuzzy
+ #| msgid "showauto"
+ msgid "showhold"
+ msgstr "showauto"
+ #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
+ #: apt-mark.8.xml:117
+ #, fuzzy
+ #| msgid ""
+ #| "<literal>showauto</literal> is used to print a list of automatically "
+ #| "installed packages with each package on a new line."
+ msgid ""
+ "<literal>showhold</literal> is used to print a list of packages on hold in "
+ "the same way as for the other show commands."
+ msgstr ""
+ "<literal>showauto</literal>, affiche les paquets installés automatiquement, "
+ "un paquet par ligne."
+ #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
+ #: apt-mark.8.xml:130
  msgid ""
  "<option>-f=<filename><replaceable>FILENAME</replaceable></filename></option>"
  msgstr ""
  "<option>-f=<filename><replaceable>FICHIER</replaceable></filename></option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-mark.8.xml:97
+ #: apt-mark.8.xml:131
  msgid ""
  "<option>--file=<filename><replaceable>FILENAME</replaceable></filename></"
  "option>"
@@@ -4907,7 -5022,7 +5133,7 @@@ msgstr "
  "option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
- #: apt-mark.8.xml:100
+ #: apt-mark.8.xml:134
  msgid ""
  "Read/Write package stats from <filename><replaceable>FILENAME</replaceable></"
  "filename> instead of the default location, which is "
@@@ -4919,48 -5034,18 +5145,18 @@@ msgstr "
  "par défaut (<filename>extended_status</filename> dans le répertoire défini "
  "par l'élément de configuration <literal>Dir::State</literal>)."
  
- #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-mark.8.xml:106
- msgid "<option>-h</option>"
- msgstr "<option>-h</option>"
- #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-mark.8.xml:107
- msgid "<option>--help</option>"
- msgstr "<option>--help</option>"
- #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
- #: apt-mark.8.xml:108
- msgid "Show a short usage summary."
- msgstr "Affiche un résumé de l'aide"
- #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-mark.8.xml:114
- msgid "<option>-v</option>"
- msgstr "<option>-v</option>"
- #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-mark.8.xml:115
- msgid "<option>--version</option>"
- msgstr "<option>--version</option>"
- #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
- #: apt-mark.8.xml:116
- msgid "Show the program version."
- msgstr "Affiche la version du programme."
  #. type: Content of: <refentry><refsect1><variablelist>
- #: apt-mark.8.xml:127
+ #: apt-mark.8.xml:146
  msgid "  &file-extended_states;"
  msgstr "  &file-extended_states;"
  
  #. type: Content of: <refentry><refsect1><para>
- #: apt-mark.8.xml:132
+ #: apt-mark.8.xml:151
  msgid "&apt-get;,&aptitude;,&apt-conf;"
  msgstr "&apt-get;,&aptitude;,&apt-conf;"
  
  #. type: Content of: <refentry><refsect1><para>
- #: apt-mark.8.xml:136
+ #: apt-mark.8.xml:155
  msgid ""
  "<command>apt-mark</command> returns zero on normal operation, non-zero on "
  "error."
@@@ -5412,13 -5497,13 +5608,23 @@@ msgstr "
  
  #. type: Content of: <refentry><refsect1><orderedlist><listitem><para>
  #: apt.conf.5.xml:52
++#, fuzzy
++#| msgid ""
++#| "all files in <literal>Dir::Etc::Parts</literal> in alphanumeric ascending "
++#| "order which have no or \"<literal>conf</literal>\" as filename extension "
++#| "and which only contain alphanumeric, hyphen (-), underscore (_) and "
++#| "period (.) characters.  Otherwise APT will print a notice that it has "
++#| "ignored a file if the file doesn't match a pattern in the <literal>Dir::"
++#| "Ignore-Files-Silently</literal> configuration list - in this case it will "
++#| "be silently ignored."
  msgid ""
  "all files in <literal>Dir::Etc::Parts</literal> in alphanumeric ascending "
--"order which have no or \"<literal>conf</literal>\" as filename extension and "
--"which only contain alphanumeric, hyphen (-), underscore (_) and period (.) "
--"characters.  Otherwise APT will print a notice that it has ignored a file if "
--"the file doesn't match a pattern in the <literal>Dir::Ignore-Files-Silently</"
--"literal> configuration list - in this case it will be silently ignored."
++"order which have either no or \"<literal>conf</literal>\" as filename "
++"extension and which only contain alphanumeric, hyphen (-), underscore (_) "
++"and period (.) characters.  Otherwise APT will print a notice that it has "
++"ignored a file if the file doesn't match a pattern in the <literal>Dir::"
++"Ignore-Files-Silently</literal> configuration list - in this case it will be "
++"silently ignored."
  msgstr ""
  "tous les fichiers de <literal>Dir::Etc::Parts</literal> dans l'ordre "
  "alphanumérique ascendant qui ont soit l'extension \"<literal>conf</literal>"
@@@ -5683,13 -5768,13 +5889,24 @@@ msgstr "
  "utiliser pour récupérer des fichiers et analyser des listes de paquets. La "
  "valeur interne par défaut est l'architecture pour laquelle APT a été compilé."
  
++#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
++#: apt.conf.5.xml:158
++msgid ""
++"All Architectures the system supports. Processors implementing the "
++"<literal>amd64</literal> are e.g. also able to execute binaries compiled for "
++"<literal>i386</literal>; This list is use when fetching files and parsing "
++"package lists. The internal default is always the native architecture "
++"(<literal>APT::Architecture</literal>)  and all foreign architectures it can "
++"retrieve by calling <command>dpkg --print-foreign-architectures</command>."
++msgstr ""
++
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:157
++#: apt.conf.5.xml:165
  msgid "Default-Release"
  msgstr "Default-Release"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:158
++#: apt.conf.5.xml:166
  msgid ""
  "Default release to install packages from if more than one version available. "
  "Contains release name, codename or release version. Examples: 'stable', "
@@@ -5703,12 -5788,12 +5920,12 @@@ msgstr "
  "&apt-preferences;."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:163
++#: apt.conf.5.xml:171
  msgid "Ignore-Hold"
  msgstr "Ignore-Hold"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:164
++#: apt.conf.5.xml:172
  msgid ""
  "Ignore Held packages; This global option causes the problem resolver to "
  "ignore held packages in its decision making."
@@@ -5718,12 -5803,12 +5935,12 @@@ msgstr "
  "décision."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:168
++#: apt.conf.5.xml:176
  msgid "Clean-Installed"
  msgstr "Clean-Installed"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:169
++#: apt.conf.5.xml:177
  msgid ""
  "Defaults to on. When turned on the autoclean feature will remove any "
  "packages which can no longer be downloaded from the cache. If turned off "
@@@ -5737,12 -5822,12 +5954,12 @@@ msgstr "
  "direct pour les réinstaller."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:175
++#: apt.conf.5.xml:183
  msgid "Immediate-Configure"
  msgstr "Immediate-Configure"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:176
++#: apt.conf.5.xml:184
  msgid ""
  "Defaults to on which will cause APT to install essential and important "
  "packages as fast as possible in the install/upgrade operation. This is done "
@@@ -5806,12 -5891,12 +6023,12 @@@ msgstr "
  "utilisée afin qu'il soit étudié et corrigé."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:198
++#: apt.conf.5.xml:206
  msgid "Force-LoopBreak"
  msgstr "Force-LoopBreak"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:199
++#: apt.conf.5.xml:207
  msgid ""
  "Never Enable this option unless you -really- know what you are doing. It "
  "permits APT to temporarily remove an essential package to break a Conflicts/"
@@@ -5829,12 -5914,12 +6046,12 @@@ msgstr "
  "les paquets dont ces paquets dépendent."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:207
++#: apt.conf.5.xml:215
  msgid "Cache-Start, Cache-Grow and Cache-Limit"
  msgstr "Cache-Start, Cache-Grow et Cache-Limit"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:208
++#: apt.conf.5.xml:216
  msgid ""
  "APT uses since version 0.7.26 a resizable memory mapped cache file to store "
  "the 'available' information. <literal>Cache-Start</literal> acts as a hint "
@@@ -5874,24 -5959,24 +6091,24 @@@ msgstr "
  "l'augmentation automatique de la taille du cache est désactivée."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:223
++#: apt.conf.5.xml:231
  msgid "Build-Essential"
  msgstr "Build-Essential"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:224
++#: apt.conf.5.xml:232
  msgid "Defines which package(s) are considered essential build dependencies."
  msgstr ""
  "Cette option définit les paquets qui sont considérés comme faisant partie "
  "des dépendances essentielles pour la construction de paquets."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:227
++#: apt.conf.5.xml:235
  msgid "Get"
  msgstr "Get"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:228
++#: apt.conf.5.xml:236
  msgid ""
  "The Get subsection controls the &apt-get; tool, please see its documentation "
  "for more information about the options here."
@@@ -5901,12 -5986,12 +6118,12 @@@ msgstr "
  "question."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:232
++#: apt.conf.5.xml:240
  msgid "Cache"
  msgstr "Cache"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:233
++#: apt.conf.5.xml:241
  msgid ""
  "The Cache subsection controls the &apt-cache; tool, please see its "
  "documentation for more information about the options here."
@@@ -5916,12 -6001,12 +6133,12 @@@ msgstr "
  "options en question."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:237
++#: apt.conf.5.xml:245
  msgid "CDROM"
  msgstr "CDROM"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:238
++#: apt.conf.5.xml:246
  msgid ""
  "The CDROM subsection controls the &apt-cdrom; tool, please see its "
  "documentation for more information about the options here."
@@@ -5931,17 -6016,17 +6148,17 @@@ msgstr "
  "options en question."
  
  #. type: Content of: <refentry><refsect1><title>
--#: apt.conf.5.xml:244
++#: apt.conf.5.xml:252
  msgid "The Acquire Group"
  msgstr "Le groupe Acquire"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:249
++#: apt.conf.5.xml:257
  msgid "Check-Valid-Until"
  msgstr "Check-Valid-Until"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:250
++#: apt.conf.5.xml:258
  msgid ""
  "Security related option defaulting to true as an expiring validation for a "
  "Release file prevents longtime replay attacks and can e.g. also help users "
@@@ -5961,22 -6046,22 +6178,69 @@@ msgstr "
  "ValidTime</literal> est alors utilisée."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:260
++#: apt.conf.5.xml:268
  msgid "Max-ValidTime"
  msgstr "Max-ValidTime"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:261
--msgid ""
--"Seconds the Release file should be considered valid after it was created. "
--"The default is \"for ever\" (0) if the Release file of the archive doesn't "
--"include a <literal>Valid-Until</literal> header.  If it does then this date "
--"is the default. The date from the Release file or the date specified by the "
--"creation time of the Release file (<literal>Date</literal> header) plus the "
--"seconds specified with this options are used to check if the validation of a "
--"file has expired by using the earlier date of the two. Archive specific "
--"settings can be made by appending the label of the archive to the option "
--"name."
++#: apt.conf.5.xml:269
++#, fuzzy
++#| msgid ""
++#| "Seconds the Release file should be considered valid after it was created. "
++#| "The default is \"for ever\" (0) if the Release file of the archive "
++#| "doesn't include a <literal>Valid-Until</literal> header.  If it does then "
++#| "this date is the default. The date from the Release file or the date "
++#| "specified by the creation time of the Release file (<literal>Date</"
++#| "literal> header) plus the seconds specified with this options are used to "
++#| "check if the validation of a file has expired by using the earlier date "
++#| "of the two. Archive specific settings can be made by appending the label "
++#| "of the archive to the option name."
++msgid ""
++"Seconds the Release file should be considered valid after it was created "
++"(indicated by the <literal>Date</literal> header).  If the Release file "
++"itself includes a <literal>Valid-Until</literal> header the earlier date of "
++"the two is used as the expiration date.  The default value is <literal>0</"
++"literal> which stands for \"for ever\".  Archive specific settings can be "
++"made by appending the label of the archive to the option name."
++msgstr ""
++"Durée (en secondes) pendant laquelle un fichier Release est considéré comme "
++"valable, à partir du moment de sa création. La valeur par défaut est 0 "
++"(fichier valable indéfiniment) si le fichier Release de l'archive ne "
++"comporte pas d'en-tête <literal>Valid-Until</literal>. Dans le cas "
++"contraire, c'est la valeur de cet en-tête qui est la valeur par défaut du "
++"paramètre. La date du fichier Release ou la date indiquée dans l'en-tête "
++"<literal>Date</literal>, augmentées du nombre de secondes indiquées sont "
++"comparées à la date courante pour déterminer si un fichier Release donné est "
++"obsolète ou pas. Un réglage spécifique pour une archive donnée peut être "
++"défini en ajoutant l'étiquette de l'archive au nom de l'option."
++
++#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
++#: apt.conf.5.xml:279
++#, fuzzy
++#| msgid "Max-ValidTime"
++msgid "Min-ValidTime"
++msgstr "Max-ValidTime"
++
++#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
++#: apt.conf.5.xml:280
++#, fuzzy
++#| msgid ""
++#| "Seconds the Release file should be considered valid after it was created. "
++#| "The default is \"for ever\" (0) if the Release file of the archive "
++#| "doesn't include a <literal>Valid-Until</literal> header.  If it does then "
++#| "this date is the default. The date from the Release file or the date "
++#| "specified by the creation time of the Release file (<literal>Date</"
++#| "literal> header) plus the seconds specified with this options are used to "
++#| "check if the validation of a file has expired by using the earlier date "
++#| "of the two. Archive specific settings can be made by appending the label "
++#| "of the archive to the option name."
++msgid ""
++"Minimum of seconds the Release file should be considered valid after it was "
++"created (indicated by the <literal>Date</literal> header).  Use this if you "
++"need to use a seldomly updated (local) mirror of a more regular updated "
++"archive with a <literal>Valid-Until</literal> header instead of competely "
++"disabling the expiration date checking.  Archive specific settings can and "
++"should be used by appending the label of the archive to the option name."
  msgstr ""
  "Durée (en secondes) pendant laquelle un fichier Release est considéré comme "
  "valable, à partir du moment de sa création. La valeur par défaut est 0 "
  "défini en ajoutant l'étiquette de l'archive au nom de l'option."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:273
++#: apt.conf.5.xml:290
  msgid "PDiffs"
  msgstr "PDiffs"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:274
++#: apt.conf.5.xml:291
  msgid ""
  "Try to download deltas called <literal>PDiffs</literal> for Packages or "
  "Sources files instead of downloading whole ones. True by default."
@@@ -6005,12 -6090,20 +6269,20 @@@ msgstr "
  "télécharger entièrement. Par défaut à « true »."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:277
++#: apt.conf.5.xml:294
+ #, fuzzy
+ #| msgid ""
+ #| "Two sub-options to limit the use of PDiffs are also available: With "
+ #| "<literal>FileLimit</literal> can be specified how many PDiff files are "
+ #| "downloaded at most to patch a file. <literal>SizeLimit</literal> on the "
+ #| "other hand is the maximum percentage of the size of all patches compared "
+ #| "to the size of the targeted file. If one of these limits is exceeded the "
+ #| "complete file is downloaded instead of the patches."
  msgid ""
  "Two sub-options to limit the use of PDiffs are also available: With "
  "<literal>FileLimit</literal> can be specified how many PDiff files are "
  "downloaded at most to patch a file. <literal>SizeLimit</literal> on the "
--"other hand is the maximum precentage of the size of all patches compared to "
++"other hand is the maximum percentage of the size of all patches compared to "
  "the size of the targeted file. If one of these limits is exceeded the "
  "complete file is downloaded instead of the patches."
  msgstr ""
  "fichiers de différences."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:286
++#: apt.conf.5.xml:303
  msgid "Queue-Mode"
  msgstr "Queue-Mode"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:287
++#: apt.conf.5.xml:304
  msgid ""
  "Queuing mode; <literal>Queue-Mode</literal> can be one of <literal>host</"
  "literal> or <literal>access</literal> which determines how APT parallelizes "
@@@ -6045,12 -6138,12 +6317,12 @@@ msgstr "
  "initiée."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:294
++#: apt.conf.5.xml:311
  msgid "Retries"
  msgstr "Retries"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:295
++#: apt.conf.5.xml:312
  msgid ""
  "Number of retries to perform. If this is non-zero APT will retry failed "
  "files the given number of times."
@@@ -6060,12 -6153,12 +6332,12 @@@ msgstr "
  "échoué."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:299
++#: apt.conf.5.xml:316
  msgid "Source-Symlinks"
  msgstr "Source-Symlinks"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:300
++#: apt.conf.5.xml:317
  msgid ""
  "Use symlinks for source archives. If set to true then source archives will "
  "be symlinked when possible instead of copying. True is the default."
@@@ -6075,12 -6168,12 +6347,12 @@@ msgstr "
  "archives de sources au lieu de les copier.  Par défaut à « true »."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:304 sources.list.5.xml:144
++#: apt.conf.5.xml:321 sources.list.5.xml:160
  msgid "http"
  msgstr "http"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:305
++#: apt.conf.5.xml:322
  msgid ""
  "HTTP URIs; http::Proxy is the default http proxy to use. It is in the "
  "standard form of <literal>http://[[user][:pass]@]host[:port]/</literal>. Per "
@@@ -6100,7 -6193,7 +6372,7 @@@ msgstr "
  "options de mandataire HTTP."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:313
++#: apt.conf.5.xml:330
  msgid ""
  "Three settings are provided for cache control with HTTP/1.1 compliant proxy "
  "caches. <literal>No-Cache</literal> tells the proxy to not use its cached "
@@@ -6125,7 -6218,7 +6397,7 @@@ msgstr "
  "en compte aucune de ces options."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:323 apt.conf.5.xml:387
++#: apt.conf.5.xml:340 apt.conf.5.xml:404
  msgid ""
  "The option <literal>timeout</literal> sets the timeout timer used by the "
  "method, this applies to all things including connection timeout and data "
@@@ -6136,7 -6229,7 +6408,7 @@@ msgstr "
  "données."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:326
++#: apt.conf.5.xml:343
  msgid ""
  "One setting is provided to control the pipeline depth in cases where the "
  "remote server is not RFC conforming or buggy (such as Squid 2.0.2).  "
@@@ -6156,7 -6249,7 +6428,7 @@@ msgstr "
  "cette option ne respectent pas la RFC 2068."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:334
++#: apt.conf.5.xml:351
  msgid ""
  "The used bandwidth can be limited with <literal>Acquire::http::Dl-Limit</"
  "literal> which accepts integer values in kilobyte. The default value is 0 "
@@@ -6171,7 -6264,7 +6443,7 @@@ msgstr "
  "implicitement le téléchargement simultané depuis plusieurs serveurs."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:339
++#: apt.conf.5.xml:356
  msgid ""
  "<literal>Acquire::http::User-Agent</literal> can be used to set a different "
  "User-Agent for the http download method as some proxies allow access for "
@@@ -6183,12 -6276,12 +6455,12 @@@ msgstr "
  "n'autorisent l'accès qu'aux client s'identifiant de manière spécifique.."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:345
++#: apt.conf.5.xml:362
  msgid "https"
  msgstr "https"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:346
++#: apt.conf.5.xml:363
  msgid ""
  "HTTPS URIs. Cache-control, Timeout, AllowRedirect, Dl-Limit and proxy "
  "options are the same as for <literal>http</literal> method and will also "
@@@ -6204,7 -6297,7 +6476,7 @@@ msgstr "
  "encore gérée."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:352
++#: apt.conf.5.xml:369
  msgid ""
  "<literal>CaInfo</literal> suboption specifies place of file that holds info "
  "about trusted certificates.  <literal>&lt;host&gt;::CaInfo</literal> is "
@@@ -6236,12 -6329,12 +6508,12 @@@ msgstr "
  "ou 'SSLv3'."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:370 sources.list.5.xml:155
++#: apt.conf.5.xml:387 sources.list.5.xml:171
  msgid "ftp"
  msgstr "ftp"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:371
++#: apt.conf.5.xml:388
  msgid ""
  "FTP URIs; ftp::Proxy is the default ftp proxy to use. It is in the standard "
  "form of <literal>ftp://[[user][:pass]@]host[:port]/</literal>. Per host "
@@@ -6276,7 -6369,7 +6548,7 @@@ msgstr "
  "correspond à l'élément respectif de l'URI."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:390
++#: apt.conf.5.xml:407
  msgid ""
  "Several settings are provided to control passive mode. Generally it is safe "
  "to leave passive mode on, it works in nearly every environment.  However "
@@@ -6293,7 -6386,7 +6565,7 @@@ msgstr "
  "modèle de fichier de configuration)."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:397
++#: apt.conf.5.xml:414
  msgid ""
  "It is possible to proxy FTP over HTTP by setting the <envar>ftp_proxy</"
  "envar> environment variable to a http url - see the discussion of the http "
@@@ -6308,7 -6401,7 +6580,7 @@@ msgstr "
  "efficacité de cette méthode."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:402
++#: apt.conf.5.xml:419
  msgid ""
  "The setting <literal>ForceExtended</literal> controls the use of RFC2428 "
  "<literal>EPSV</literal> and <literal>EPRT</literal> commands. The default is "
@@@ -6324,18 -6417,18 +6596,18 @@@ msgstr "
  "des serveurs FTP ne suivent pas la RFC 2428."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:409 sources.list.5.xml:137
++#: apt.conf.5.xml:426 sources.list.5.xml:153
  msgid "cdrom"
  msgstr "cdrom"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><literallayout>
--#: apt.conf.5.xml:415
++#: apt.conf.5.xml:432
  #, no-wrap
  msgid "/cdrom/::Mount \"foo\";"
  msgstr "/cdrom/::Mount \"foo\";"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:410
++#: apt.conf.5.xml:427
  msgid ""
  "CDROM URIs; the only setting for CDROM URIs is the mount point, "
  "<literal>cdrom::Mount</literal> which must be the mount point for the CDROM "
@@@ -6357,12 -6450,12 +6629,12 @@@ msgstr "
  "spécifiées en utilisant <literal>UMount</literal>."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:420
++#: apt.conf.5.xml:437
  msgid "gpgv"
  msgstr "gpgv"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:421
++#: apt.conf.5.xml:438
  msgid ""
  "GPGV URIs; the only option for GPGV URIs is the option to pass additional "
  "parameters to gpgv.  <literal>gpgv::Options</literal> Additional options "
@@@ -6373,18 -6466,18 +6645,18 @@@ msgstr "
  "supplémentaires passées à gpgv."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:426
++#: apt.conf.5.xml:443
  msgid "CompressionTypes"
  msgstr "CompressionTypes"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><synopsis>
--#: apt.conf.5.xml:432
++#: apt.conf.5.xml:449
  #, no-wrap
  msgid "Acquire::CompressionTypes::<replaceable>FileExtension</replaceable> \"<replaceable>Methodname</replaceable>\";"
  msgstr "Acquire::CompressionTypes::<replaceable>ExtensionFichier</replaceable> \"<replaceable>NomMethode</replaceable>\";"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:427
++#: apt.conf.5.xml:444
  msgid ""
  "List of compression types which are understood by the acquire methods.  "
  "Files like <filename>Packages</filename> can be available in various "
@@@ -6404,19 -6497,19 +6676,19 @@@ msgstr "
  "type=\"synopsis\" id=\"0\"/>"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><synopsis>
--#: apt.conf.5.xml:437
++#: apt.conf.5.xml:454
  #, no-wrap
  msgid "Acquire::CompressionTypes::Order:: \"gz\";"
  msgstr "Acquire::CompressionTypes::Order:: \"gz\";"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><synopsis>
--#: apt.conf.5.xml:440
++#: apt.conf.5.xml:457
  #, no-wrap
  msgid "Acquire::CompressionTypes::Order { \"lzma\"; \"gz\"; };"
  msgstr "Acquire::CompressionTypes::Order { \"lzma\"; \"gz\"; };"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:433
++#: apt.conf.5.xml:450
  msgid ""
  "Also the <literal>Order</literal> subgroup can be used to define in which "
  "order the acquire system will try to download the compressed files. The "
@@@ -6447,20 -6540,20 +6719,32 @@@ msgstr "
  "<literal>bz2</literal> à liste car il sera ajouté automatiquement."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><literallayout>
--#: apt.conf.5.xml:444
++#: apt.conf.5.xml:461
  #, no-wrap
  msgid "Dir::Bin::bzip2 \"/bin/bzip2\";"
  msgstr "Dir::Bin::bzip2 \"/bin/bzip2\";"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:442
++#: apt.conf.5.xml:459
++#, fuzzy
++#| msgid ""
++#| "Note that at run time the <literal>Dir::Bin::<replaceable>Methodname</"
++#| "replaceable></literal> will be checked: If this setting exists the method "
++#| "will only be used if this file exists, e.g. for the bzip2 method (the "
++#| "inbuilt) setting is <placeholder type=\"literallayout\" id=\"0\"/> Note "
++#| "also that list entries specified on the command line will be added at the "
++#| "end of the list specified in the configuration files, but before the "
++#| "default entries. To prefer a type in this case over the ones specified in "
++#| "the configuration files you can set the option direct - not in list "
++#| "style.  This will not override the defined list, it will only prefix the "
++#| "list with this type."
  msgid ""
  "Note that at run time the <literal>Dir::Bin::<replaceable>Methodname</"
  "replaceable></literal> will be checked: If this setting exists the method "
  "will only be used if this file exists, e.g. for the bzip2 method (the "
--"inbuilt) setting is <placeholder type=\"literallayout\" id=\"0\"/> Note also "
--"that list entries specified on the command line will be added at the end of "
--"the list specified in the configuration files, but before the default "
++"inbuilt) setting is: <placeholder type=\"literallayout\" id=\"0\"/> Note "
++"also that list entries specified on the command line will be added at the "
++"end of the list specified in the configuration files, but before the default "
  "entries. To prefer a type in this case over the ones specified in the "
  "configuration files you can set the option direct - not in list style.  This "
  "will not override the defined list, it will only prefix the list with this "
@@@ -6479,10 -6572,10 +6763,16 @@@ msgstr "
  "elle sera simplement préfixée avec l'option en question."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:449
++#: apt.conf.5.xml:466
++#, fuzzy
++#| msgid ""
++#| "The special type <literal>uncompressed</literal> can be used to give "
++#| "uncompressed files a preference, but note that most archives doesn't "
++#| "provide uncompressed files so this is mostly only useable for local "
++#| "mirrors."
  msgid ""
  "The special type <literal>uncompressed</literal> can be used to give "
--"uncompressed files a preference, but note that most archives doesn't provide "
++"uncompressed files a preference, but note that most archives don't provide "
  "uncompressed files so this is mostly only useable for local mirrors."
  msgstr ""
  "Le type spécial <literal>uncompressed</literal> peut servir à donner la "
  "surtout destiné aux miroirs locaux."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:454
++#: apt.conf.5.xml:471
  msgid "GzipIndexes"
  msgstr "GzipIndexes"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:456
++#: apt.conf.5.xml:473
  msgid ""
  "When downloading <literal>gzip</literal> compressed indexes (Packages, "
  "Sources, or Translations), keep them gzip compressed locally instead of "
@@@ -6511,12 -6604,12 +6801,12 @@@ msgstr "
  "(« False »)."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:463
++#: apt.conf.5.xml:480
  msgid "Languages"
  msgstr "Langues"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:464
++#: apt.conf.5.xml:481
  msgid ""
  "The Languages subsection controls which <filename>Translation</filename> "
  "files are downloaded and in which order APT tries to display the Description-"
@@@ -6538,13 -6631,13 +6828,13 @@@ msgstr "
  "sur ce qui est disponible avant d'établir des réglages impossibles."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><programlisting>
--#: apt.conf.5.xml:480
++#: apt.conf.5.xml:497
  #, no-wrap
  msgid "Acquire::Languages { \"environment\"; \"de\"; \"en\"; \"none\"; \"fr\"; };"
  msgstr "Acquire::Languages { \"environment\"; \"fr\"; \"en\"; \"none\"; \"de\"; };"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:470
++#: apt.conf.5.xml:487
  msgid ""
  "The default list includes \"environment\" and \"en\". "
  "\"<literal>environment</literal>\" has a special meaning here: It will be "
@@@ -6586,7 -6679,7 +6876,7 @@@ msgstr "
  "\"programlisting\" id=\"0\"/>"
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:245
++#: apt.conf.5.xml:253
  msgid ""
  "The <literal>Acquire</literal> group of options controls the download of "
  "packages and the URI handlers.  <placeholder type=\"variablelist\" id=\"0\"/>"
@@@ -6596,12 -6689,12 +6886,12 @@@ msgstr "
  "id=\"0\"/>"
  
  #. type: Content of: <refentry><refsect1><title>
--#: apt.conf.5.xml:487
++#: apt.conf.5.xml:504
  msgid "Directories"
  msgstr "Les répertoires"
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:489
++#: apt.conf.5.xml:506
  msgid ""
  "The <literal>Dir::State</literal> section has directories that pertain to "
  "local state information. <literal>lists</literal> is the directory to place "
@@@ -6621,7 -6714,7 +6911,7 @@@ msgstr "
  "filename>."
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:496
++#: apt.conf.5.xml:513
  msgid ""
  "<literal>Dir::Cache</literal> contains locations pertaining to local cache "
  "information, such as the two package caches <literal>srcpkgcache</literal> "
@@@ -6644,7 -6737,7 +6934,7 @@@ msgstr "
  "Cache</literal>."
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:505
++#: apt.conf.5.xml:522
  msgid ""
  "<literal>Dir::Etc</literal> contains the location of configuration files, "
  "<literal>sourcelist</literal> gives the location of the sourcelist and "
@@@ -6659,7 -6752,7 +6949,7 @@@ msgstr "
  "fichier de configuration indiqué par la variable <envar>APT_CONFIG</envar>)."
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:511
++#: apt.conf.5.xml:528
  msgid ""
  "The <literal>Dir::Parts</literal> setting reads in all the config fragments "
  "in lexical order from the directory specified. After this is done then the "
@@@ -6670,7 -6763,7 +6960,7 @@@ msgstr "
  "configuration est chargé."
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:515
++#: apt.conf.5.xml:532
  msgid ""
  "Binary programs are pointed to by <literal>Dir::Bin</literal>. <literal>Dir::"
  "Bin::Methods</literal> specifies the location of the method handlers and "
@@@ -6688,7 -6781,7 +6978,7 @@@ msgstr "
  "programmes correspondants."
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:523
++#: apt.conf.5.xml:540
  msgid ""
  "The configuration item <literal>RootDir</literal> has a special meaning.  If "
  "set, all paths in <literal>Dir::</literal> will be relative to "
@@@ -6710,7 -6803,7 +7000,7 @@@ msgstr "
  "staging/var/lib/dpkg/status</filename>."
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:536
++#: apt.conf.5.xml:553
  msgid ""
  "The <literal>Ignore-Files-Silently</literal> list can be used to specify "
  "which files APT should silently ignore while parsing the files in the "
@@@ -6728,12 -6821,12 +7018,12 @@@ msgstr "
  "est possible d'utiliser la syntaxe des expressions rationnelles."
  
  #. type: Content of: <refentry><refsect1><title>
--#: apt.conf.5.xml:545
++#: apt.conf.5.xml:562
  msgid "APT in DSelect"
  msgstr "APT et DSelect"
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:547
++#: apt.conf.5.xml:564
  msgid ""
  "When APT is used as a &dselect; method several configuration directives "
  "control the default behaviour. These are in the <literal>DSelect</literal> "
@@@ -6744,12 -6837,12 +7034,12 @@@ msgstr "
  "<literal>DSelect</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:551
++#: apt.conf.5.xml:568
  msgid "Clean"
  msgstr "Clean"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:552
++#: apt.conf.5.xml:569
  msgid ""
  "Cache Clean mode; this value may be one of always, prompt, auto, pre-auto "
  "and never.  always and prompt will remove all packages from the cache after "
@@@ -6767,7 -6860,7 +7057,7 @@@ msgstr "
  "supprime avant de récupérer de nouveaux paquets."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:561
++#: apt.conf.5.xml:578
  msgid ""
  "The contents of this variable is passed to &apt-get; as command line options "
  "when it is run for the install phase."
@@@ -6776,12 -6869,12 +7066,12 @@@ msgstr "
  "&apt-get; lors de la phase d'installation."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:565
++#: apt.conf.5.xml:582
  msgid "Updateoptions"
  msgstr "UpdateOptions"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:566
++#: apt.conf.5.xml:583
  msgid ""
  "The contents of this variable is passed to &apt-get; as command line options "
  "when it is run for the update phase."
@@@ -6790,12 -6883,12 +7080,12 @@@ msgstr "
  "&apt-get; lors de la phase de mise à jour."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:570
++#: apt.conf.5.xml:587
  msgid "PromptAfterUpdate"
  msgstr "PromptAfterUpdate"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:571
++#: apt.conf.5.xml:588
  msgid ""
  "If true the [U]pdate operation in &dselect; will always prompt to continue.  "
  "The default is to prompt only on error."
@@@ -6805,12 -6898,12 +7095,12 @@@ msgstr "
  "d'erreur que l'on propose à l'utilisateur d'intervenir."
  
  #. type: Content of: <refentry><refsect1><title>
--#: apt.conf.5.xml:577
++#: apt.conf.5.xml:594
  msgid "How APT calls dpkg"
  msgstr "Méthode d'appel de &dpkg; par APT"
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:578
++#: apt.conf.5.xml:595
  msgid ""
  "Several configuration directives control how APT invokes &dpkg;. These are "
  "in the <literal>DPkg</literal> section."
@@@ -6819,7 -6912,7 +7109,7 @@@ msgstr "
  "&dpkg; : elles figurent dans la section <literal>DPkg</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:583
++#: apt.conf.5.xml:600
  msgid ""
  "This is a list of options to pass to dpkg. The options must be specified "
  "using the list notation and each list item is passed as a single argument to "
@@@ -6830,17 -6923,17 +7120,17 @@@ msgstr "
  "est passé comme un seul paramètre à &dpkg;."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:588
++#: apt.conf.5.xml:605
  msgid "Pre-Invoke"
  msgstr "Pre-Invoke"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:588
++#: apt.conf.5.xml:605
  msgid "Post-Invoke"
  msgstr "Post-Invoke"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:589
++#: apt.conf.5.xml:606
  msgid ""
  "This is a list of shell commands to run before/after invoking &dpkg;.  Like "
  "<literal>options</literal> this must be specified in list notation. The "
@@@ -6853,12 -6946,12 +7143,12 @@@ msgstr "
  "<filename>/bin/sh</filename> : APT s'arrête dès que l'une d'elles échoue."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:595
++#: apt.conf.5.xml:612
  msgid "Pre-Install-Pkgs"
  msgstr "Pre-Install-Pkgs"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:596
++#: apt.conf.5.xml:613
  msgid ""
  "This is a list of shell commands to run before invoking dpkg. Like "
  "<literal>options</literal> this must be specified in list notation. The "
@@@ -6874,7 -6967,7 +7164,7 @@@ msgstr "
  "qu'il va installer, à raison d'un par ligne."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:602
++#: apt.conf.5.xml:619
  msgid ""
  "Version 2 of this protocol dumps more information, including the protocol "
  "version, the APT configuration space and the packages, files and versions "
@@@ -6890,12 -6983,12 +7180,12 @@@ msgstr "
  "literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:609
++#: apt.conf.5.xml:626
  msgid "Run-Directory"
  msgstr "Run-Directory"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:610
++#: apt.conf.5.xml:627
  msgid ""
  "APT chdirs to this directory before invoking dpkg, the default is <filename>/"
  "</filename>."
@@@ -6904,12 -6997,12 +7194,12 @@@ msgstr "
  "le répertoire <filename>/</filename>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:614
++#: apt.conf.5.xml:631
  msgid "Build-options"
  msgstr "Build-options"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:615
++#: apt.conf.5.xml:632
  msgid ""
  "These options are passed to &dpkg-buildpackage; when compiling packages, the "
  "default is to disable signing and produce all binaries."
@@@ -6919,14 -7012,14 +7209,14 @@@ msgstr "
  "créés."
  
  #. type: Content of: <refentry><refsect1><refsect2><title>
--#: apt.conf.5.xml:620
++#: apt.conf.5.xml:637
  msgid "dpkg trigger usage (and related options)"
  msgstr ""
  "utilisation des actions différées (« triggers ») de dpkg (et options "
  "associées)"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
--#: apt.conf.5.xml:621
++#: apt.conf.5.xml:638
  msgid ""
  "APT can call dpkg in a way so it can make aggressive use of triggers over "
  "multiple calls of dpkg. Without further options dpkg will use triggers only "
@@@ -6953,7 -7046,7 +7243,7 @@@ msgstr "
  "configuration des paquets."
  
  #. type: Content of: <refentry><refsect1><refsect2><para><literallayout>
--#: apt.conf.5.xml:636
++#: apt.conf.5.xml:653
  #, no-wrap
  msgid ""
  "DPkg::NoTriggers \"true\";\n"
@@@ -6967,7 -7060,7 +7257,7 @@@ msgstr "
  "DPkg::TriggersPending \"true\";"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
--#: apt.conf.5.xml:630
++#: apt.conf.5.xml:647
  msgid ""
  "Note that it is not guaranteed that APT will support these options or that "
  "these options will not cause (big) trouble in the future. If you have "
@@@ -6991,12 -7084,12 +7281,12 @@@ msgstr "
  "type=\"literallayout\" id=\"0\"/>."
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
--#: apt.conf.5.xml:642
++#: apt.conf.5.xml:659
  msgid "DPkg::NoTriggers"
  msgstr "DPkg::NoTriggers"
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:643
++#: apt.conf.5.xml:660
  msgid ""
  "Add the no triggers flag to all dpkg calls (except the ConfigurePending "
  "call).  See &dpkg; if you are interested in what this actually means. In "
@@@ -7018,12 -7111,12 +7308,12 @@@ msgstr "
  "options « unpack » et « remove »."
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
--#: apt.conf.5.xml:650
++#: apt.conf.5.xml:667
  msgid "PackageManager::Configure"
  msgstr "PackageManager::Configure"
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:651
++#: apt.conf.5.xml:668
  msgid ""
  "Valid values are \"<literal>all</literal>\", \"<literal>smart</literal>\" "
  "and \"<literal>no</literal>\".  \"<literal>all</literal>\" is the default "
@@@ -7051,12 -7144,12 +7341,12 @@@ msgstr "
  "configuré et donc éventuellement non amorçable."
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
--#: apt.conf.5.xml:661
++#: apt.conf.5.xml:678
  msgid "DPkg::ConfigurePending"
  msgstr "DPkg::ConfigurePending"
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:662
++#: apt.conf.5.xml:679
  msgid ""
  "If this option is set apt will call <command>dpkg --configure --pending</"
  "command> to let dpkg handle all required configurations and triggers. This "
@@@ -7075,12 -7168,12 +7365,12 @@@ msgstr "
  "peut conserver l'option active."
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
--#: apt.conf.5.xml:668
++#: apt.conf.5.xml:685
  msgid "DPkg::TriggersPending"
  msgstr "DPkg::TriggersPending"
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:669
++#: apt.conf.5.xml:686
  msgid ""
  "Useful for <literal>smart</literal> configuration as a package which has "
  "pending triggers is not considered as <literal>installed</literal> and dpkg "
@@@ -7098,12 -7191,12 +7388,12 @@@ msgstr "
  "celles concernant le paquet en cours de traitement."
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
--#: apt.conf.5.xml:674
++#: apt.conf.5.xml:691
  msgid "PackageManager::UnpackAll"
  msgstr "PackageManager::UnpackAll"
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:675
++#: apt.conf.5.xml:692
  msgid ""
  "As the configuration can be deferred to be done at the end by dpkg it can be "
  "tried to order the unpack series only by critical needs, e.g. by Pre-"
@@@ -7128,12 -7221,12 +7418,12 @@@ msgstr "
  "traduction n'est pas exclu...)."
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
--#: apt.conf.5.xml:682
++#: apt.conf.5.xml:699
  msgid "OrderList::Score::Immediate"
  msgstr "OrderList::Score::Immediate"
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para><literallayout>
--#: apt.conf.5.xml:690
++#: apt.conf.5.xml:707
  #, no-wrap
  msgid ""
  "OrderList::Score {\n"
@@@ -7151,7 -7244,7 +7441,7 @@@ msgstr "
  "};"
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:683
++#: apt.conf.5.xml:700
  msgid ""
  "Essential packages (and there dependencies) should be configured immediately "
  "after unpacking. It will be a good idea to do this quite early in the "
@@@ -7177,12 -7270,12 +7467,12 @@@ msgstr "
  "id=\"0\"/>"
  
  #. type: Content of: <refentry><refsect1><title>
--#: apt.conf.5.xml:703
++#: apt.conf.5.xml:720
  msgid "Periodic and Archives options"
  msgstr "Options « Periodic » et « Archive »"
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:704
++#: apt.conf.5.xml:721
  msgid ""
  "<literal>APT::Periodic</literal> and <literal>APT::Archives</literal> groups "
  "of options configure behavior of apt periodic updates, which is done by "
@@@ -7194,12 -7287,12 +7484,12 @@@ msgstr "
  "script <literal>/etc/cron.daily/apt</literal>, lancé quotidiennement."
  
  #. type: Content of: <refentry><refsect1><title>
--#: apt.conf.5.xml:712
++#: apt.conf.5.xml:729
  msgid "Debug options"
  msgstr "Les options de débogage"
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:714
++#: apt.conf.5.xml:731
  msgid ""
  "Enabling options in the <literal>Debug::</literal> section will cause "
  "debugging information to be sent to the standard error stream of the program "
@@@ -7217,7 -7310,7 +7507,7 @@@ msgstr "
  "peuvent tout de même être utiles :"
  
  #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
--#: apt.conf.5.xml:725
++#: apt.conf.5.xml:742
  msgid ""
  "<literal>Debug::pkgProblemResolver</literal> enables output about the "
  "decisions made by <literal>dist-upgrade, upgrade, install, remove, purge</"
@@@ -7228,7 -7321,7 +7518,7 @@@ msgstr "
  "upgrade, upgrade, install, remove et purge</literal>."
  
  #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
--#: apt.conf.5.xml:733
++#: apt.conf.5.xml:750
  msgid ""
  "<literal>Debug::NoLocking</literal> disables all file locking.  This can be "
  "used to run some operations (for instance, <literal>apt-get -s install</"
@@@ -7240,7 -7333,7 +7530,7 @@@ msgstr "
  "superutilisateur."
  
  #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
--#: apt.conf.5.xml:742
++#: apt.conf.5.xml:759
  msgid ""
  "<literal>Debug::pkgDPkgPM</literal> prints out the actual command line each "
  "time that <literal>apt</literal> invokes &dpkg;."
@@@ -7252,7 -7345,7 +7542,7 @@@ msgstr "
  #.       motivating example, except I haven't a clue why you'd want
  #.       to do this. 
  #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
--#: apt.conf.5.xml:750
++#: apt.conf.5.xml:767
  msgid ""
  "<literal>Debug::IdentCdrom</literal> disables the inclusion of statfs data "
  "in CDROM IDs."
@@@ -7261,17 -7354,17 +7551,17 @@@ msgstr "
  "type statfs dans les identifiants de CD."
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:760
++#: apt.conf.5.xml:777
  msgid "A full list of debugging options to apt follows."
  msgstr "Liste complète des options de débogage de APT :"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:765
++#: apt.conf.5.xml:782
  msgid "<literal>Debug::Acquire::cdrom</literal>"
  msgstr "<literal>Debug::Acquire::cdrom</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:769
++#: apt.conf.5.xml:786
  msgid ""
  "Print information related to accessing <literal>cdrom://</literal> sources."
  msgstr ""
  "literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:776
++#: apt.conf.5.xml:793
  msgid "<literal>Debug::Acquire::ftp</literal>"
  msgstr "<literal>Debug::Acquire::ftp</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:780
++#: apt.conf.5.xml:797
  msgid "Print information related to downloading packages using FTP."
  msgstr ""
  "Affiche les informations concernant le téléchargement de paquets par FTP."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:787
++#: apt.conf.5.xml:804
  msgid "<literal>Debug::Acquire::http</literal>"
  msgstr "<literal>Debug::Acquire::http</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:791
++#: apt.conf.5.xml:808
  msgid "Print information related to downloading packages using HTTP."
  msgstr ""
  "Affiche les informations concernant le téléchargement de paquets par HTTP."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:798
++#: apt.conf.5.xml:815
  msgid "<literal>Debug::Acquire::https</literal>"
  msgstr "<literal>Debug::Acquire::https</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:802
++#: apt.conf.5.xml:819
  msgid "Print information related to downloading packages using HTTPS."
  msgstr "Print information related to downloading packages using HTTPS."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:809
++#: apt.conf.5.xml:826
  msgid "<literal>Debug::Acquire::gpgv</literal>"
  msgstr "<literal>Debug::Acquire::gpgv</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:813
++#: apt.conf.5.xml:830
  msgid ""
  "Print information related to verifying cryptographic signatures using "
  "<literal>gpg</literal>."
@@@ -7325,12 -7418,12 +7615,12 @@@ msgstr "
  "cryptographiques avec <literal>gpg</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:820
++#: apt.conf.5.xml:837
  msgid "<literal>Debug::aptcdrom</literal>"
  msgstr "<literal>Debug::aptcdrom</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:824
++#: apt.conf.5.xml:841
  msgid ""
  "Output information about the process of accessing collections of packages "
  "stored on CD-ROMs."
@@@ -7339,24 -7432,24 +7629,24 @@@ msgstr "
  "stockées sur CD."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:831
++#: apt.conf.5.xml:848
  msgid "<literal>Debug::BuildDeps</literal>"
  msgstr "<literal>Debug::BuildDeps</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:834
++#: apt.conf.5.xml:851
  msgid "Describes the process of resolving build-dependencies in &apt-get;."
  msgstr ""
  "Décrit le processus de résolution des dépendances pour la construction de "
  "paquets source ( « build-dependencies » ) par &apt-get;."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:841
++#: apt.conf.5.xml:858
  msgid "<literal>Debug::Hashes</literal>"
  msgstr "<literal>Debug::Hashes</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:844
++#: apt.conf.5.xml:861
  msgid ""
  "Output each cryptographic hash that is generated by the <literal>apt</"
  "literal> libraries."
@@@ -7365,12 -7458,12 +7655,12 @@@ msgstr "
  "librairies d'<literal>apt</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:851
++#: apt.conf.5.xml:868
  msgid "<literal>Debug::IdentCDROM</literal>"
  msgstr "<literal>Debug::IdentCDROM</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:854
++#: apt.conf.5.xml:871
  msgid ""
  "Do not include information from <literal>statfs</literal>, namely the number "
  "of used and free blocks on the CD-ROM filesystem, when generating an ID for "
@@@ -7381,12 -7474,12 +7671,12 @@@ msgstr "
  "utilisés sur le système de fichier du CD."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:862
++#: apt.conf.5.xml:879
  msgid "<literal>Debug::NoLocking</literal>"
  msgstr "<literal>Debug::NoLocking</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:865
++#: apt.conf.5.xml:882
  msgid ""
  "Disable all file locking.  For instance, this will allow two instances of "
  "<quote><literal>apt-get update</literal></quote> to run at the same time."
@@@ -7396,24 -7489,24 +7686,24 @@@ msgstr "
  "temps."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:873
++#: apt.conf.5.xml:890
  msgid "<literal>Debug::pkgAcquire</literal>"
  msgstr "<literal>Debug::pkgAcquire</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:877
++#: apt.conf.5.xml:894
  msgid "Log when items are added to or removed from the global download queue."
  msgstr ""
  "Trace les ajouts et suppressions d'éléments de la queue globale de "
  "téléchargement."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:884
++#: apt.conf.5.xml:901
  msgid "<literal>Debug::pkgAcquire::Auth</literal>"
  msgstr "<literal>Debug::pkgAcquire::Auth</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:887
++#: apt.conf.5.xml:904
  msgid ""
  "Output status messages and errors related to verifying checksums and "
  "cryptographic signatures of downloaded files."
@@@ -7423,12 -7516,12 +7713,12 @@@ msgstr "
  "éventuelles."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:894
++#: apt.conf.5.xml:911
  msgid "<literal>Debug::pkgAcquire::Diffs</literal>"
  msgstr "<literal>Debug::pkgAcquire::Diffs</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:897
++#: apt.conf.5.xml:914
  msgid ""
  "Output information about downloading and applying package index list diffs, "
  "and errors relating to package index list diffs."
@@@ -7438,12 -7531,12 +7728,12 @@@ msgstr "
  "éventuelles."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:905
++#: apt.conf.5.xml:922
  msgid "<literal>Debug::pkgAcquire::RRed</literal>"
  msgstr "<literal>Debug::pkgAcquire::RRed</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:909
++#: apt.conf.5.xml:926
  msgid ""
  "Output information related to patching apt package lists when downloading "
  "index diffs instead of full indices."
@@@ -7453,12 -7546,12 +7743,12 @@@ msgstr "
  "place des fichiers complets."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:916
++#: apt.conf.5.xml:933
  msgid "<literal>Debug::pkgAcquire::Worker</literal>"
  msgstr "<literal>Debug::pkgAcquire::Worker</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:920
++#: apt.conf.5.xml:937
  msgid ""
  "Log all interactions with the sub-processes that actually perform downloads."
  msgstr ""
  "effectivement des téléchargements."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:927
++#: apt.conf.5.xml:944
  msgid "<literal>Debug::pkgAutoRemove</literal>"
  msgstr "<literal>Debug::pkgAutoRemove</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:931
++#: apt.conf.5.xml:948
  msgid ""
  "Log events related to the automatically-installed status of packages and to "
  "the removal of unused packages."
@@@ -7480,12 -7573,12 +7770,12 @@@ msgstr "
  "automatiquement, et la suppression des paquets inutiles."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:938
++#: apt.conf.5.xml:955
  msgid "<literal>Debug::pkgDepCache::AutoInstall</literal>"
  msgstr "<literal>Debug::pkgDepCache::AutoInstall</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:941
++#: apt.conf.5.xml:958
  msgid ""
  "Generate debug messages describing which packages are being automatically "
  "installed to resolve dependencies.  This corresponds to the initial auto-"
@@@ -7500,12 -7593,12 +7790,12 @@@ msgstr "
  "de APT ; voir <literal>Debug::pkgProblemResolver</literal> pour ce dernier."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:952
++#: apt.conf.5.xml:969
  msgid "<literal>Debug::pkgDepCache::Marker</literal>"
  msgstr "<literal>Debug::pkgDepCache::Marker</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:955
++#: apt.conf.5.xml:972
  msgid ""
  "Generate debug messages describing which package is marked as keep/install/"
  "remove while the ProblemResolver does his work.  Each addition or deletion "
@@@ -7540,24 -7633,24 +7830,24 @@@ msgstr "
  "de APT ; voir <literal>Debug::pkgProblemResolver</literal> pour ce dernier."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:974
++#: apt.conf.5.xml:991
  msgid "<literal>Debug::pkgInitConfig</literal>"
  msgstr "<literal>Debug::pkgInitConfig</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:977
++#: apt.conf.5.xml:994
  msgid "Dump the default configuration to standard error on startup."
  msgstr ""
  "Affiche, au lancement, l'ensemble de la configuration sur la sortie d'erreur "
  "standard."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:984
++#: apt.conf.5.xml:1001
  msgid "<literal>Debug::pkgDPkgPM</literal>"
  msgstr "<literal>Debug::pkgDPkgPM</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:987
++#: apt.conf.5.xml:1004
  msgid ""
  "When invoking &dpkg;, output the precise command line with which it is being "
  "invoked, with arguments separated by a single space character."
@@@ -7566,12 -7659,12 +7856,12 @@@ msgstr "
  "paramètres sont séparés par des espaces."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:995
++#: apt.conf.5.xml:1012
  msgid "<literal>Debug::pkgDPkgProgressReporting</literal>"
  msgstr "<literal>Debug::pkgDPkgProgressReporting</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:998
++#: apt.conf.5.xml:1015
  msgid ""
  "Output all the data received from &dpkg; on the status file descriptor and "
  "any errors encountered while parsing it."
@@@ -7581,12 -7674,12 +7871,12 @@@ msgstr "
  "fichier."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:1005
++#: apt.conf.5.xml:1022
  msgid "<literal>Debug::pkgOrderList</literal>"
  msgstr "<literal>Debug::pkgOrderList</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:1009
++#: apt.conf.5.xml:1026
  msgid ""
  "Generate a trace of the algorithm that decides the order in which "
  "<literal>apt</literal> should pass packages to &dpkg;."
@@@ -7595,33 -7688,33 +7885,33 @@@ msgstr "
  "<literal>apt</literal> passe les paquets à &dpkg;."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:1017
++#: apt.conf.5.xml:1034
  msgid "<literal>Debug::pkgPackageManager</literal>"
  msgstr "<literal>Debug::pkgPackageManager</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:1021
++#: apt.conf.5.xml:1038
  msgid ""
  "Output status messages tracing the steps performed when invoking &dpkg;."
  msgstr "Affiche le détail des opérations liées à l'invocation de &dpkg;."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:1028
++#: apt.conf.5.xml:1045
  msgid "<literal>Debug::pkgPolicy</literal>"
  msgstr "<literal>Debug::pkgPolicy</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:1032
++#: apt.conf.5.xml:1049
  msgid "Output the priority of each package list on startup."
  msgstr "Affiche, au lancement, la priorité de chaque liste de paquets."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:1038
++#: apt.conf.5.xml:1055
  msgid "<literal>Debug::pkgProblemResolver</literal>"
  msgstr "<literal>Debug::pkgProblemResolver</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:1042
++#: apt.conf.5.xml:1059
  msgid ""
  "Trace the execution of the dependency resolver (this applies only to what "
  "happens when a complex dependency problem is encountered)."
@@@ -7630,12 -7723,12 +7920,12 @@@ msgstr "
  "concerne que les cas où un problème de dépendances complexe se présente)."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:1050
++#: apt.conf.5.xml:1067
  msgid "<literal>Debug::pkgProblemResolver::ShowScores</literal>"
  msgstr "<literal>Debug::pkgProblemResolver::ShowScores</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:1053
++#: apt.conf.5.xml:1070
  msgid ""
  "Display a list of all installed packages with their calculated score used by "
  "the pkgProblemResolver. The description of the package is the same as "
@@@ -7646,12 -7739,12 +7936,12 @@@ msgstr "
  "est décrite dans <literal>Debug::pkgDepCache::Marker</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:1061
++#: apt.conf.5.xml:1078
  msgid "<literal>Debug::sourceList</literal>"
  msgstr "<literal>Debug::sourceList</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:1065
++#: apt.conf.5.xml:1082
  msgid ""
  "Print information about the vendors read from <filename>/etc/apt/vendors."
  "list</filename>."
@@@ -7660,7 -7753,7 +7950,7 @@@ msgstr "
  "list</filename>."
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:1088
++#: apt.conf.5.xml:1105
  msgid ""
  "&configureindex; is a configuration file showing example values for all "
  "possible options."
@@@ -7669,13 -7762,13 +7959,13 @@@ msgstr "
  "exemples pour toutes les options existantes."
  
  #. type: Content of: <refentry><refsect1><variablelist>
--#: apt.conf.5.xml:1095
++#: apt.conf.5.xml:1112
  msgid "&file-aptconf;"
  msgstr "&file-aptconf;"
  
  #.  ? reading apt.conf 
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:1100
++#: apt.conf.5.xml:1117
  msgid "&apt-cache;, &apt-config;, &apt-preferences;."
  msgstr "&apt-cache;, &apt-config;, &apt-preferences;."
  
@@@ -7770,11 -7863,11 +8060,21 @@@ msgstr "
  
  #. type: Content of: <refentry><refsect1><para>
  #: apt_preferences.5.xml:70
++#, fuzzy
++#| msgid ""
++#| "Note that the files in the <filename>/etc/apt/preferences.d</filename> "
++#| "directory are parsed in alphanumeric ascending order and need to obey the "
++#| "following naming convention: The files have no or \"<literal>pref</"
++#| "literal>\" as filename extension and which only contain alphanumeric, "
++#| "hyphen (-), underscore (_) and period (.) characters.  Otherwise APT will "
++#| "print a notice that it has ignored a file if the file doesn't match a "
++#| "pattern in the <literal>Dir::Ignore-Files-Silently</literal> "
++#| "configuration list - in this case it will be silently ignored."
  msgid ""
  "Note that the files in the <filename>/etc/apt/preferences.d</filename> "
  "directory are parsed in alphanumeric ascending order and need to obey the "
--"following naming convention: The files have no or \"<literal>pref</literal>"
--"\" as filename extension and which only contain alphanumeric, hyphen (-), "
++"following naming convention: The files have either no or \"<literal>pref</"
++"literal>\" as filename extension and only contain alphanumeric, hyphen (-), "
  "underscore (_) and period (.) characters.  Otherwise APT will print a notice "
  "that it has ignored a file if the file doesn't match a pattern in the "
  "<literal>Dir::Ignore-Files-Silently</literal> configuration list - in this "
@@@ -8230,17 -8323,84 +8530,84 @@@ msgstr "
  "Pin-Priority: 500\n"
  
  #. type: Content of: <refentry><refsect1><refsect2><title>
- #: apt_preferences.5.xml:263
+ #: apt_preferences.5.xml:262
+ msgid "Regular expressions and glob() syntax"
+ msgstr ""
+ #. type: Content of: <refentry><refsect1><refsect2><para>
+ #: apt_preferences.5.xml:264
+ msgid ""
+ "APT also supports pinning by glob() expressions and regular expressions "
+ "surrounded by /. For example, the following example assigns the priority 500 "
+ "to all packages from experimental where the name starts with gnome (as a glob"
 -"()-like expression or contains the word kde (as a POSIX extended regular "
++"()-like expression) or contains the word kde (as a POSIX extended regular "
+ "expression surrounded by slashes)."
+ msgstr ""
+ #. type: Content of: <refentry><refsect1><refsect2><programlisting>
+ #: apt_preferences.5.xml:273
+ #, fuzzy, no-wrap
+ #| msgid ""
+ #| "Package: *\n"
+ #| "Pin: release a=unstable\n"
+ #| "Pin-Priority: 50\n"
+ msgid ""
+ "Package: gnome* /kde/\n"
+ "Pin: release n=experimental\n"
+ "Pin-Priority: 500\n"
+ msgstr ""
+ "Package: *\n"
+ "Pin: release a=unstable\n"
+ "Pin-Priority: 50\n"
+ #. type: Content of: <refentry><refsect1><refsect2><para>
+ #: apt_preferences.5.xml:279
+ msgid ""
+ "The rule for those expressions is that they can occur anywhere where a "
 -"string can occur. Those, the following pin assigns the priority 990 to all "
++"string can occur. Thus, the following pin assigns the priority 990 to all "
+ "packages from a release starting with karmic."
+ msgstr ""
+ #. type: Content of: <refentry><refsect1><refsect2><programlisting>
+ #: apt_preferences.5.xml:285
+ #, fuzzy, no-wrap
+ #| msgid ""
+ #| "Package: *\n"
+ #| "Pin: release a=unstable\n"
+ #| "Pin-Priority: 50\n"
+ msgid ""
+ "Package: *\n"
+ "Pin: release n=karmic*\n"
+ "Pin-Priority: 990\n"
+ msgstr ""
+ "Package: *\n"
+ "Pin: release a=unstable\n"
+ "Pin-Priority: 50\n"
+ #. type: Content of: <refentry><refsect1><refsect2><literal>
+ #: apt_preferences.5.xml:290
+ #, fuzzy
+ #| msgid "Packages"
+ msgid "Package"
+ msgstr "Packages"
+ #. type: Content of: <refentry><refsect1><refsect2><literal>
+ #: apt_preferences.5.xml:296
+ msgid "*"
+ msgstr ""
+ #. type: Content of: <refentry><refsect1><refsect2><title>
+ #: apt_preferences.5.xml:306
  msgid "How APT Interprets Priorities"
  msgstr "Méthode d'interprétation des priorités par APT"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:271
+ #: apt_preferences.5.xml:314
  msgid "P &gt; 1000"
  msgstr "P &gt; 1000"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:272
+ #: apt_preferences.5.xml:315
  msgid ""
  "causes a version to be installed even if this constitutes a downgrade of the "
  "package"
@@@ -8249,12 -8409,12 +8616,12 @@@ msgstr "
  "retour en arrière."
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:276
+ #: apt_preferences.5.xml:319
  msgid "990 &lt; P &lt;=1000"
  msgstr "990 &lt; P &lt;=1000"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:277
+ #: apt_preferences.5.xml:320
  msgid ""
  "causes a version to be installed even if it does not come from the target "
  "release, unless the installed version is more recent"
@@@ -8264,12 -8424,12 +8631,12 @@@ msgstr "
  "plus récente."
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:282
+ #: apt_preferences.5.xml:325
  msgid "500 &lt; P &lt;=990"
  msgstr "500 &lt; P &lt;=990"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:283
+ #: apt_preferences.5.xml:326
  msgid ""
  "causes a version to be installed unless there is a version available "
  "belonging to the target release or the installed version is more recent"
@@@ -8278,12 -8438,12 +8645,12 @@@ msgstr "
  "distribution par défaut ou si la version installée est plus récente."
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:288
+ #: apt_preferences.5.xml:331
  msgid "100 &lt; P &lt;=500"
  msgstr "100 &lt; P &lt;=500"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:289
+ #: apt_preferences.5.xml:332
  msgid ""
  "causes a version to be installed unless there is a version available "
  "belonging to some other distribution or the installed version is more recent"
@@@ -8292,29 -8452,29 +8659,29 @@@ msgstr "
  "autre distribution ou si la version installée est plus récente."
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:294
+ #: apt_preferences.5.xml:337
  msgid "0 &lt; P &lt;=100"
  msgstr "0 &lt; P &lt;=100"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:295
+ #: apt_preferences.5.xml:338
  msgid ""
  "causes a version to be installed only if there is no installed version of "
  "the package"
  msgstr "la version sera installée si aucune version du paquet n'est installée."
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:299
+ #: apt_preferences.5.xml:342
  msgid "P &lt; 0"
  msgstr "P &lt; 0"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:300
+ #: apt_preferences.5.xml:343
  msgid "prevents the version from being installed"
  msgstr "cette priorité empêche l'installation de la version."
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:266
+ #: apt_preferences.5.xml:309
  msgid ""
  "Priorities (P) assigned in the APT preferences file must be positive or "
  "negative integers.  They are interpreted as follows (roughly speaking): "
@@@ -8325,7 -8485,7 +8692,7 @@@ msgstr "
  "<placeholder type=\"variablelist\" id=\"0\"/>"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:305
+ #: apt_preferences.5.xml:348
  msgid ""
  "If any specific-form records match an available package version then the "
  "first such record determines the priority of the package version.  Failing "
@@@ -8339,7 -8499,7 +8706,7 @@@ msgstr "
  "trouvée détermine la priorité."
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:311
+ #: apt_preferences.5.xml:354
  msgid ""
  "For example, suppose the APT preferences file contains the three records "
  "presented earlier:"
@@@ -8348,7 -8508,7 +8715,7 @@@ msgstr "
  "entrées décrites ci-dessous :"
  
  #. type: Content of: <refentry><refsect1><refsect2><programlisting>
- #: apt_preferences.5.xml:315
+ #: apt_preferences.5.xml:358
  #, no-wrap
  msgid ""
  "Package: perl\n"
@@@ -8376,12 -8536,12 +8743,12 @@@ msgstr "
  "Pin-Priority: 50\n"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:328
+ #: apt_preferences.5.xml:371
  msgid "Then:"
  msgstr "Alors :"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
- #: apt_preferences.5.xml:330
+ #: apt_preferences.5.xml:373
  msgid ""
  "The most recent available version of the <literal>perl</literal> package "
  "will be installed, so long as that version's version number begins with "
@@@ -8395,7 -8555,7 +8762,7 @@@ msgstr "
  "installée est une version 5.9*, il y aura un retour en arrière."
  
  #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
- #: apt_preferences.5.xml:335
+ #: apt_preferences.5.xml:378
  msgid ""
  "A version of any package other than <literal>perl</literal> that is "
  "available from the local system has priority over other versions, even "
@@@ -8406,7 -8566,7 +8773,7 @@@ msgstr "
  "appartenant à la distribution par défaut."
  
  #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
- #: apt_preferences.5.xml:339
+ #: apt_preferences.5.xml:382
  msgid ""
  "A version of a package whose origin is not the local system but some other "
  "site listed in &sources-list; and which belongs to an <literal>unstable</"
@@@ -8419,13 -8579,13 +8786,13 @@@ msgstr "
  "paquet n'est déjà installée."
  
  #. type: Content of: <refentry><refsect1><refsect2><title>
- #: apt_preferences.5.xml:349
+ #: apt_preferences.5.xml:392
  msgid "Determination of Package Version and Distribution Properties"
  msgstr ""
  "Détermination de la version des paquets et des propriétés des distributions"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:351
+ #: apt_preferences.5.xml:394
  msgid ""
  "The locations listed in the &sources-list; file should provide "
  "<filename>Packages</filename> and <filename>Release</filename> files to "
@@@ -8436,27 -8596,27 +8803,27 @@@ msgstr "
  "décrivent les paquets disponibles à cet endroit."
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:363
+ #: apt_preferences.5.xml:406
  msgid "the <literal>Package:</literal> line"
  msgstr "la ligne <literal>Package:</literal>"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:364
+ #: apt_preferences.5.xml:407
  msgid "gives the package name"
  msgstr "donne le nom du paquet"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:367 apt_preferences.5.xml:417
+ #: apt_preferences.5.xml:410 apt_preferences.5.xml:460
  msgid "the <literal>Version:</literal> line"
  msgstr "la ligne <literal>Version:</literal>"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:368
+ #: apt_preferences.5.xml:411
  msgid "gives the version number for the named package"
  msgstr "donne le numéro de version du paquet"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:355
+ #: apt_preferences.5.xml:398
  msgid ""
  "The <filename>Packages</filename> file is normally found in the directory "
  "<filename>.../dists/<replaceable>dist-name</replaceable>/"
@@@ -8477,12 -8637,12 +8844,12 @@@ msgstr "
  "\"variablelist\" id=\"0\"/>"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:384
+ #: apt_preferences.5.xml:427
  msgid "the <literal>Archive:</literal> or <literal>Suite:</literal> line"
  msgstr "La ligne <literal>Archive:</literal> ou <literal>Suite:</literal>"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:385
+ #: apt_preferences.5.xml:428
  msgid ""
  "names the archive to which all the packages in the directory tree belong.  "
  "For example, the line \"Archive: stable\" or \"Suite: stable\" specifies "
@@@ -8499,18 -8659,18 +8866,18 @@@ msgstr "
  "préférences demanderait cette ligne :"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
- #: apt_preferences.5.xml:395
+ #: apt_preferences.5.xml:438
  #, no-wrap
  msgid "Pin: release a=stable\n"
  msgstr "Pin: release a=stable\n"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:401
+ #: apt_preferences.5.xml:444
  msgid "the <literal>Codename:</literal> line"
  msgstr "la ligne <literal>Codename:</literal>"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:402
+ #: apt_preferences.5.xml:445
  msgid ""
  "names the codename to which all the packages in the directory tree belong.  "
  "For example, the line \"Codename: &testing-codename;\" specifies that all of "
@@@ -8528,13 -8688,13 +8895,13 @@@ msgstr "
  "ligne :"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
- #: apt_preferences.5.xml:411
+ #: apt_preferences.5.xml:454
  #, no-wrap
  msgid "Pin: release n=&testing-codename;\n"
  msgstr "Pin: release n=&testing-codename;\n"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:418
+ #: apt_preferences.5.xml:461
  msgid ""
  "names the release version.  For example, the packages in the tree might "
  "belong to Debian GNU/Linux release version 3.0.  Note that there is normally "
@@@ -8550,7 -8710,7 +8917,7 @@@ msgstr "
  "préférences demanderait ces lignes :"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
- #: apt_preferences.5.xml:427
+ #: apt_preferences.5.xml:470
  #, no-wrap
  msgid ""
  "Pin: release v=3.0\n"
@@@ -8562,12 -8722,12 +8929,12 @@@ msgstr "
  "Pin: release 3.0\n"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:436
+ #: apt_preferences.5.xml:479
  msgid "the <literal>Component:</literal> line"
  msgstr "La ligne <literal>Component:</literal>"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:437
+ #: apt_preferences.5.xml:480
  msgid ""
  "names the licensing component associated with the packages in the directory "
  "tree of the <filename>Release</filename> file.  For example, the line "
@@@ -8585,18 -8745,18 +8952,18 @@@ msgstr "
  "fichier des préférences demanderait cette ligne :"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
- #: apt_preferences.5.xml:446
+ #: apt_preferences.5.xml:489
  #, no-wrap
  msgid "Pin: release c=main\n"
  msgstr "Pin: release c=main\n"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:452
+ #: apt_preferences.5.xml:495
  msgid "the <literal>Origin:</literal> line"
  msgstr "La ligne <literal>Origin:</literal>"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:453
+ #: apt_preferences.5.xml:496
  msgid ""
  "names the originator of the packages in the directory tree of the "
  "<filename>Release</filename> file.  Most commonly, this is <literal>Debian</"
@@@ -8609,18 -8769,18 +8976,18 @@@ msgstr "
  "ligne :"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
- #: apt_preferences.5.xml:459
+ #: apt_preferences.5.xml:502
  #, no-wrap
  msgid "Pin: release o=Debian\n"
  msgstr "Pin: release o=Debian\n"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:465
+ #: apt_preferences.5.xml:508
  msgid "the <literal>Label:</literal> line"
  msgstr "La ligne <literal>Label:</literal>"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:466
+ #: apt_preferences.5.xml:509
  msgid ""
  "names the label of the packages in the directory tree of the "
  "<filename>Release</filename> file.  Most commonly, this is <literal>Debian</"
@@@ -8633,13 -8793,13 +9000,13 @@@ msgstr "
  "préférences demanderait cette ligne :"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
- #: apt_preferences.5.xml:472
+ #: apt_preferences.5.xml:515
  #, no-wrap
  msgid "Pin: release l=Debian\n"
  msgstr "Pin: release l=Debian\n"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:373
+ #: apt_preferences.5.xml:416
  msgid ""
  "The <filename>Release</filename> file is normally found in the directory "
  "<filename>.../dists/<replaceable>dist-name</replaceable></filename>: for "
@@@ -8663,7 -8823,7 +9030,7 @@@ msgstr "
  "\" id=\"0\"/>"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:479
+ #: apt_preferences.5.xml:522
  msgid ""
  "All of the <filename>Packages</filename> and <filename>Release</filename> "
  "files retrieved from locations listed in the &sources-list; file are stored "
@@@ -8688,12 -8848,12 +9055,12 @@@ msgstr "
  "<literal>unstable</literal>."
  
  #. type: Content of: <refentry><refsect1><refsect2><title>
- #: apt_preferences.5.xml:492
+ #: apt_preferences.5.xml:535
  msgid "Optional Lines in an APT Preferences Record"
  msgstr "Lignes facultatives dans le fichier des préférences"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:494
+ #: apt_preferences.5.xml:537
  msgid ""
  "Each record in the APT preferences file can optionally begin with one or "
  "more lines beginning with the word <literal>Explanation:</literal>.  This "
@@@ -8704,12 -8864,12 +9071,12 @@@ msgstr "
  "commentaires."
  
  #. type: Content of: <refentry><refsect1><refsect2><title>
- #: apt_preferences.5.xml:503
+ #: apt_preferences.5.xml:546
  msgid "Tracking Stable"
  msgstr "Méthode pour suivre Stable"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
- #: apt_preferences.5.xml:511
+ #: apt_preferences.5.xml:554
  #, no-wrap
  msgid ""
  "Explanation: Uninstall or do not install any Debian-originated\n"
@@@ -8733,7 -8893,7 +9100,7 @@@ msgstr "
  "Pin-Priority: -10\n"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:505
+ #: apt_preferences.5.xml:548
  msgid ""
  "The following APT preferences file will cause APT to assign a priority "
  "higher than the default (500) to all package versions belonging to a "
@@@ -8748,8 -8908,8 +9115,8 @@@ msgstr "
  "literal>.  <placeholder type=\"programlisting\" id=\"0\"/>"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
- #: apt_preferences.5.xml:528 apt_preferences.5.xml:574
- #: apt_preferences.5.xml:632
+ #: apt_preferences.5.xml:571 apt_preferences.5.xml:617
+ #: apt_preferences.5.xml:675
  #, no-wrap
  msgid ""
  "apt-get install <replaceable>package-name</replaceable>\n"
@@@ -8761,7 -8921,7 +9128,7 @@@ msgstr "
  "apt-get dist-upgrade\n"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:523
+ #: apt_preferences.5.xml:566
  msgid ""
  "With a suitable &sources-list; file and the above preferences file, any of "
  "the following commands will cause APT to upgrade to the latest "
@@@ -8774,13 -8934,13 +9141,13 @@@ msgstr "
  "\"programlisting\" id=\"0\"/>"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
- #: apt_preferences.5.xml:540
+ #: apt_preferences.5.xml:583
  #, no-wrap
  msgid "apt-get install <replaceable>package</replaceable>/testing\n"
  msgstr "apt-get install <replaceable>paquet</replaceable>/testing\n"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:534
+ #: apt_preferences.5.xml:577
  msgid ""
  "The following command will cause APT to upgrade the specified package to the "
  "latest version from the <literal>testing</literal> distribution; the package "
@@@ -8793,12 -8953,12 +9160,12 @@@ msgstr "
  "de relancer la commande.  <placeholder type=\"programlisting\" id=\"0\"/>"
  
  #. type: Content of: <refentry><refsect1><refsect2><title>
- #: apt_preferences.5.xml:546
+ #: apt_preferences.5.xml:589
  msgid "Tracking Testing or Unstable"
  msgstr "Méthode pour suivre Testing ou Unstable"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
- #: apt_preferences.5.xml:555
+ #: apt_preferences.5.xml:598
  #, no-wrap
  msgid ""
  "Package: *\n"
@@@ -8826,7 -8986,7 +9193,7 @@@ msgstr "
  "Pin-Priority: -10\n"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:548
+ #: apt_preferences.5.xml:591
  msgid ""
  "The following APT preferences file will cause APT to assign a high priority "
  "to package versions from the <literal>testing</literal> distribution, a "
@@@ -8843,7 -9003,7 +9210,7 @@@ msgstr "
  "<placeholder type=\"programlisting\" id=\"0\"/>"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:569
+ #: apt_preferences.5.xml:612
  msgid ""
  "With a suitable &sources-list; file and the above preferences file, any of "
  "the following commands will cause APT to upgrade to the latest "
@@@ -8856,13 -9016,13 +9223,13 @@@ msgstr "
  "type=\"programlisting\" id=\"0\"/>"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
- #: apt_preferences.5.xml:589
+ #: apt_preferences.5.xml:632
  #, no-wrap
  msgid "apt-get install <replaceable>package</replaceable>/unstable\n"
  msgstr "apt-get install <replaceable>paquet</replaceable>/unstable\n"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:580
+ #: apt_preferences.5.xml:623
  msgid ""
  "The following command will cause APT to upgrade the specified package to the "
  "latest version from the <literal>unstable</literal> distribution.  "
@@@ -8881,12 -9041,12 +9248,12 @@@ msgstr "
  "installée.  <placeholder type=\"programlisting\" id=\"0\"/>"
  
  #. type: Content of: <refentry><refsect1><refsect2><title>
- #: apt_preferences.5.xml:596
+ #: apt_preferences.5.xml:639
  msgid "Tracking the evolution of a codename release"
  msgstr "Suivre l'évolution d'une version par son nom de code"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
- #: apt_preferences.5.xml:610
+ #: apt_preferences.5.xml:653
  #, no-wrap
  msgid ""
  "Explanation: Uninstall or do not install any Debian-originated package versions\n"
@@@ -8920,7 -9080,7 +9287,7 @@@ msgstr "
  "Pin-Priority: -10\n"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:598
+ #: apt_preferences.5.xml:641
  msgid ""
  "The following APT preferences file will cause APT to assign a priority "
  "higher than the default (500) to all package versions belonging to a "
@@@ -8944,7 -9104,7 +9311,7 @@@ msgstr "
  "exemples précédents.  <placeholder type=\"programlisting\" id=\"0\"/>"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:627
+ #: apt_preferences.5.xml:670
  msgid ""
  "With a suitable &sources-list; file and the above preferences file, any of "
  "the following commands will cause APT to upgrade to the latest version(s) in "
@@@ -8957,13 -9117,13 +9324,13 @@@ msgstr "
  "<placeholder type=\"programlisting\" id=\"0\"/>"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
- #: apt_preferences.5.xml:647
+ #: apt_preferences.5.xml:690
  #, no-wrap
  msgid "apt-get install <replaceable>package</replaceable>/sid\n"
  msgstr "apt-get install <replaceable>paquet</replaceable>/sid\n"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:638
+ #: apt_preferences.5.xml:681
  msgid ""
  "The following command will cause APT to upgrade the specified package to the "
  "latest version from the <literal>sid</literal> distribution.  Thereafter, "
@@@ -8982,12 -9142,12 +9349,12 @@@ msgstr "
  "<placeholder type=\"programlisting\" id=\"0\"/>"
  
  #. type: Content of: <refentry><refsect1><variablelist>
- #: apt_preferences.5.xml:656
+ #: apt_preferences.5.xml:699
  msgid "&file-preferences;"
  msgstr "&file-preferences;"
  
  #. type: Content of: <refentry><refsect1><para>
- #: apt_preferences.5.xml:662
+ #: apt_preferences.5.xml:705
  msgid "&apt-get; &apt-cache; &apt-conf; &sources-list;"
  msgstr "&apt-get; &apt-cache; &apt-conf; &sources-list;"
  
@@@ -9107,8 -9267,8 +9474,9 @@@ msgstr "
  
  #. type: Content of: <refentry><refsect1><literallayout>
  #: sources.list.5.xml:81
--#, no-wrap
--msgid "deb uri distribution [component1] [component2] [...]"
++#, fuzzy, no-wrap
++#| msgid "deb uri distribution [component1] [component2] [...]"
++msgid "deb [ options ] uri distribution [component1] [component2] [...]"
  msgstr "deb uri distribution [composant1] [composant2] [...]"
  
  #. type: Content of: <refentry><refsect1><para>
@@@ -9179,6 -9339,6 +9547,38 @@@ msgstr "
  #. type: Content of: <refentry><refsect1><para>
  #: sources.list.5.xml:112
  msgid ""
++"<literal>options</literal> is always optional and needs to be surounded by "
++"square brackets. It can consist of multiple settings in the form "
++"<literal><replaceable>setting</replaceable>=<replaceable>value</"
++"replaceable></literal>.  Multiple settings are separated by spaces. The "
++"following settings are supported by APT, note through that unsupported "
++"settings will be ignored silently:"
++msgstr ""
++
++#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
++#: sources.list.5.xml:117
++msgid ""
++"<literal>arch=<replaceable>arch1</replaceable>,<replaceable>arch2</"
++"replaceable>,…</literal> can be used to specify for which architectures "
++"packages information should be downloaded. If this option is not set all "
++"architectures defined by the <literal>APT::Architectures</literal> option "
++"will be downloaded."
++msgstr ""
++
++#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
++#: sources.list.5.xml:121
++msgid ""
++"<literal>trusted=yes</literal> can be set to indicate that packages from "
++"this source are always authenificated even if the <filename>Release</"
++"filename> file is not signed or the signature can't be checked. This "
++"disables parts of &apt-secure; and should therefore only be used in a local "
++"and trusted context. <literal>trusted=no</literal> is the opposite which "
++"handles even correctly authenificated sources as not authenificated."
++msgstr ""
++
++#. type: Content of: <refentry><refsect1><para>
++#: sources.list.5.xml:128
++msgid ""
  "It is important to list sources in order of preference, with the most "
  "preferred source listed first. Typically this will result in sorting by "
  "speed from fastest to slowest (CD-ROM followed by hosts on a local network, "
@@@ -9190,12 -9350,12 +9590,12 @@@ msgstr "
  "les hôtes distants."
  
  #. type: Content of: <refentry><refsect1><para>
--#: sources.list.5.xml:117
++#: sources.list.5.xml:133
  msgid "Some examples:"
  msgstr "Exemples :"
  
  #. type: Content of: <refentry><refsect1><literallayout>
--#: sources.list.5.xml:119
++#: sources.list.5.xml:135
  #, no-wrap
  msgid ""
  "deb http://ftp.debian.org/debian &stable-codename; main contrib non-free\n"
@@@ -9207,17 -9367,17 +9607,17 @@@ msgstr "
  "   "
  
  #. type: Content of: <refentry><refsect1><title>
--#: sources.list.5.xml:125
++#: sources.list.5.xml:141
  msgid "URI specification"
  msgstr "Spécification des URI"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: sources.list.5.xml:130
++#: sources.list.5.xml:146
  msgid "file"
  msgstr "file"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: sources.list.5.xml:132
++#: sources.list.5.xml:148
  msgid ""
  "The file scheme allows an arbitrary directory in the file system to be "
  "considered an archive. This is useful for NFS mounts and local mirrors or "
@@@ -9228,7 -9388,7 +9628,7 @@@ msgstr "
  "avec les montages NFS, les miroirs et les archives locaux."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: sources.list.5.xml:139
++#: sources.list.5.xml:155
  msgid ""
  "The cdrom scheme allows APT to use a local CDROM drive with media swapping. "
  "Use the &apt-cdrom; program to create cdrom entries in the source list."
@@@ -9238,7 -9398,7 +9638,7 @@@ msgstr "
  "pour créer des entrées dans la liste des sources."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: sources.list.5.xml:146
++#: sources.list.5.xml:162
  msgid ""
  "The http scheme specifies an HTTP server for the archive. If an environment "
  "variable <envar>http_proxy</envar> is set with the format http://server:"
@@@ -9255,7 -9415,7 +9655,7 @@@ msgstr "
  "Notez qu'il s'agit d'une méthode d'authentification peu sûre."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: sources.list.5.xml:157
++#: sources.list.5.xml:173
  msgid ""
  "The ftp scheme specifies an FTP server for the archive. APT's FTP behavior "
  "is highly configurable; for more information see the &apt-conf; manual page. "
@@@ -9275,12 -9435,12 +9675,12 @@@ msgstr "
  "et qui sont spécifiés dans le fichier de configuration seront ignorés."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: sources.list.5.xml:166
++#: sources.list.5.xml:182
  msgid "copy"
  msgstr "copy"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: sources.list.5.xml:168
++#: sources.list.5.xml:184
  msgid ""
  "The copy scheme is identical to the file scheme except that packages are "
  "copied into the cache directory instead of used directly at their location.  "
@@@ -9292,17 -9452,17 +9692,17 @@@ msgstr "
  "gens qui utilisent un disque zip pour recopier des fichiers avec APT."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: sources.list.5.xml:173
++#: sources.list.5.xml:189
  msgid "rsh"
  msgstr "rsh"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: sources.list.5.xml:173
++#: sources.list.5.xml:189
  msgid "ssh"
  msgstr "ssh"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: sources.list.5.xml:175
++#: sources.list.5.xml:191
  msgid ""
  "The rsh/ssh method invokes rsh/ssh to connect to a remote host as a given "
  "user and access the files. It is a good idea to do prior arrangements with "
@@@ -9317,12 -9477,12 +9717,12 @@@ msgstr "
  "commandes standard <command>find</command> et <command>dd</command>."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: sources.list.5.xml:183
++#: sources.list.5.xml:199
  msgid "more recognizable URI types"
  msgstr "plus de types d'URI simples à reconnaître"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: sources.list.5.xml:185
++#: sources.list.5.xml:201
  msgid ""
  "APT can be extended with more methods shipped in other optional packages "
  "which should follow the nameing scheme <literal>apt-transport-"
@@@ -9344,7 -9504,7 +9744,7 @@@ msgstr "
  "citerefentry>)."
  
  #. type: Content of: <refentry><refsect1><para>
--#: sources.list.5.xml:127
++#: sources.list.5.xml:143
  msgid ""
  "The currently recognized URI types are cdrom, file, http, ftp, copy, ssh, "
  "rsh.  <placeholder type=\"variablelist\" id=\"0\"/>"
@@@ -9353,7 -9513,7 +9753,7 @@@ msgstr "
  "ssh et rsh. <placeholder type=\"variablelist\" id=\"0\"/>"
  
  #. type: Content of: <refentry><refsect1><para>
--#: sources.list.5.xml:199
++#: sources.list.5.xml:215
  msgid ""
  "Uses the archive stored locally (or NFS mounted) at /home/jason/debian for "
  "stable/main, stable/contrib, and stable/non-free."
@@@ -9362,37 -9522,37 +9762,60 @@@ msgstr "
  "debian pour stable/main, stable/contrib et stable/non-free."
  
  #. type: Content of: <refentry><refsect1><literallayout>
--#: sources.list.5.xml:201
++#: sources.list.5.xml:217
  #, no-wrap
  msgid "deb file:/home/jason/debian stable main contrib non-free"
  msgstr "deb file:/home/jason/debian stable main contrib non-free"
  
  #. type: Content of: <refentry><refsect1><para>
--#: sources.list.5.xml:203
++#: sources.list.5.xml:219
  msgid "As above, except this uses the unstable (development) distribution."
  msgstr ""
  "Comme ci-dessus, excepté que cette ligne utilise la distribution "
  "« unstable » (développement)."
  
  #. type: Content of: <refentry><refsect1><literallayout>
--#: sources.list.5.xml:204
++#: sources.list.5.xml:220
  #, no-wrap
  msgid "deb file:/home/jason/debian unstable main contrib non-free"
  msgstr "deb file:/home/jason/debian unstable main contrib non-free"
  
  #. type: Content of: <refentry><refsect1><para>
--#: sources.list.5.xml:206
++#: sources.list.5.xml:222
  msgid "Source line for the above"
  msgstr "La précédente ligne, mais pour les sources."
  
  #. type: Content of: <refentry><refsect1><literallayout>
--#: sources.list.5.xml:207
++#: sources.list.5.xml:223
  #, no-wrap
  msgid "deb-src file:/home/jason/debian unstable main contrib non-free"
  msgstr "deb-src file:/home/jason/debian unstable main contrib non-free"
  
  #. type: Content of: <refentry><refsect1><para>
--#: sources.list.5.xml:209
++#: sources.list.5.xml:225
++msgid ""
++"The first line gets package information for the architectures in "
++"<literal>APT::Architectures</literal> while the second always retrieves "
++"<literal>amd64</literal> and <literal>armel</literal>."
++msgstr ""
++
++#. type: Content of: <refentry><refsect1><literallayout>
++#: sources.list.5.xml:227
++#, fuzzy, no-wrap
++#| msgid ""
++#| "deb http://ftp.debian.org/debian &stable-codename; main contrib non-free\n"
++#| "deb http://security.debian.org/ &stable-codename;/updates main contrib non-free\n"
++#| "   "
++msgid ""
++"deb http://ftp.debian.org/debian &stable-codename; main\n"
++"deb [ arch=amd64,armel ] http://ftp.debian.org/debian &stable-codename; main"
++msgstr ""
++"deb http://ftp.debian.org/debian &stable-codename; main contrib non-free\n"
++"deb http://security.debian.org/ &stable-codename;/updates main contrib non-free\n"
++"   "
++
++#. type: Content of: <refentry><refsect1><para>
++#: sources.list.5.xml:230
  msgid ""
  "Uses HTTP to access the archive at archive.debian.org, and uses only the "
  "hamm/main area."
@@@ -9401,13 -9561,13 +9824,13 @@@ msgstr "
  "n'utiliser que la section hamm/main."
  
  #. type: Content of: <refentry><refsect1><literallayout>
--#: sources.list.5.xml:211
++#: sources.list.5.xml:232
  #, no-wrap
  msgid "deb http://archive.debian.org/debian-archive hamm main"
  msgstr "deb http://archive.debian.org/debian-archive hamm main"
  
  #. type: Content of: <refentry><refsect1><para>
--#: sources.list.5.xml:213
++#: sources.list.5.xml:234
  msgid ""
  "Uses FTP to access the archive at ftp.debian.org, under the debian "
  "directory, and uses only the &stable-codename;/contrib area."
@@@ -9416,13 -9576,13 +9839,13 @@@ msgstr "
  "répertoire debian, et n'utiliser que la section &stable-codename;/contrib."
  
  #. type: Content of: <refentry><refsect1><literallayout>
--#: sources.list.5.xml:215
++#: sources.list.5.xml:236
  #, no-wrap
  msgid "deb ftp://ftp.debian.org/debian &stable-codename; contrib"
  msgstr "deb ftp://ftp.debian.org/debian &stable-codename; contrib"
  
  #. type: Content of: <refentry><refsect1><para>
--#: sources.list.5.xml:217
++#: sources.list.5.xml:238
  msgid ""
  "Uses FTP to access the archive at ftp.debian.org, under the debian "
  "directory, and uses only the unstable/contrib area. If this line appears as "
@@@ -9435,19 -9595,19 +9858,19 @@@ msgstr "
  "apparaissent, une seule session FTP sera utilisée pour les deux lignes."
  
  #. type: Content of: <refentry><refsect1><literallayout>
--#: sources.list.5.xml:221
++#: sources.list.5.xml:242
  #, no-wrap
  msgid "deb ftp://ftp.debian.org/debian unstable contrib"
  msgstr "deb ftp://ftp.debian.org/debian unstable contrib"
  
  #. type: Content of: <refentry><refsect1><para><literallayout>
--#: sources.list.5.xml:230
++#: sources.list.5.xml:251
  #, no-wrap
  msgid "deb http://ftp.tlh.debian.org/universe unstable/binary-$(ARCH)/"
  msgstr "deb http://ftp.tlh.debian.org/universe unstable/binary-$(ARCH)/"
  
  #. type: Content of: <refentry><refsect1><para>
--#: sources.list.5.xml:223
++#: sources.list.5.xml:244
  msgid ""
  "Uses HTTP to access the archive at ftp.tlh.debian.org, under the universe "
  "directory, and uses only files found under <filename>unstable/binary-i386</"
@@@ -9467,7 -9627,7 +9890,7 @@@ msgstr "
  "type=\"literallayout\" id=\"0\"/>"
  
  #. type: Content of: <refentry><refsect1><para>
--#: sources.list.5.xml:235
++#: sources.list.5.xml:256
  msgid "&apt-cache; &apt-conf;"
  msgstr "&apt-cache; &apt-conf;"
  
@@@ -11033,22 -11193,43 +11456,50 @@@ msgstr "  # apt-get -o dir::cache::arch
  msgid "Which will use the already fetched archives on the disc."
  msgstr "Cette commande utilisera les fichiers récupérés sur le disque."
  
 -#~ msgid "<option>--md5</option>"
 -#~ msgstr "<option>--md5</option>"
 -
+ #~ msgid ""
 -#~ "Generate MD5 sums. This defaults to on, when turned off the generated "
 -#~ "index files will not have MD5Sum fields where possible.  Configuration "
 -#~ "Item: <literal>APT::FTPArchive::MD5</literal>"
++#~ "Update the local keyring with the keyring of Debian archive keys and "
++#~ "removes from the keyring the archive keys which are no longer valid."
+ #~ msgstr ""
 -#~ "Créer la somme de contrôle MD5. Cette option est activée par défaut. "
 -#~ "Quand elle est désactivée, les fichiers d'index n'ont pas les champs "
 -#~ "MD5Sum là où c'est possible. Élément de configuration : <literal>APT::"
 -#~ "FTPArchive::MD5</literal>."
++#~ "Mettre à jour le trousseau de clés local avec le trousseau de clés de "
++#~ "l'archive Debian et supprimer les clés qui y sont périmées."
+ #~ msgid "unmarkauto"
+ #~ msgstr "unmarkauto"
+ #~ msgid "<option>-h</option>"
+ #~ msgstr "<option>-h</option>"
+ #~ msgid "<option>--help</option>"
+ #~ msgstr "<option>--help</option>"
+ #~ msgid "Show a short usage summary."
+ #~ msgstr "Affiche un résumé de l'aide"
+ #~ msgid "<option>-v</option>"
+ #~ msgstr "<option>-v</option>"
+ #~ msgid "<option>--version</option>"
+ #~ msgstr "<option>--version</option>"
+ #~ msgid "Show the program version."
+ #~ msgstr "Affiche la version du programme."
  #~ msgid "to the version that is already installed (if any)."
  #~ msgstr "est affectée à la version déjà installée (si elle existe)."
  
 +#~ msgid "<option>--md5</option>"
 +#~ msgstr "<option>--md5</option>"
 +
 +#~ msgid ""
 +#~ "Generate MD5 sums. This defaults to on, when turned off the generated "
 +#~ "index files will not have MD5Sum fields where possible.  Configuration "
 +#~ "Item: <literal>APT::FTPArchive::MD5</literal>"
 +#~ msgstr ""
 +#~ "Créer la somme de contrôle MD5. Cette option est activée par défaut. "
 +#~ "Quand elle est désactivée, les fichiers d'index n'ont pas les champs "
 +#~ "MD5Sum là où c'est possible. Élément de configuration : <literal>APT::"
 +#~ "FTPArchive::MD5</literal>."
 +
  #~ msgid "APT package handling utility -- cache manipulator"
  #~ msgstr "Gestionnaire de paquets APT - manipulation du cache"
  
  #~ msgid "<filename>/etc/apt/sources.list</filename>"
  #~ msgstr "<filename>/etc/apt/sources.list</filename>"
  
--#~ msgid ""
--#~ "Locations to fetch packages from.  Configuration Item: <literal>Dir::Etc::"
--#~ "SourceList</literal>."
--#~ msgstr ""
--#~ "Emplacements où aller chercher les paquets. Élément de configuration : "
--#~ "<literal>Dir::Etc::SourceList</literal>."
--
  #~ msgid "<filename>&statedir;/lists/</filename>"
  #~ msgstr "<filename>&statedir;/lists/</filename>"
  
diff --combined doc/po/it.po
index dec77747d9851701d804a7b3f0363398daaff9bf,4571690e1c107d1d1952cc17d5c1abc4c4eaa5b5..5fb3ff3fb3338aa87504b6b5ebdab1b0f4a34bca
@@@ -9,7 -9,7 +9,7 @@@
  msgid ""
  msgstr ""
  "Project-Id-Version: \n"
- "POT-Creation-Date: 2011-04-05 10:22+0300\n"
 -"POT-Creation-Date: 2011-06-08 16:54+0300\n"
++"POT-Creation-Date: 2011-11-10 16:42+0100\n"
  "PO-Revision-Date: 2003-04-26 23:26+0100\n"
  "Last-Translator: Traduzione di Eugenia Franzoni <eugenia@linuxcare.com>\n"
  "Language-Team: <debian-l10n-italian@lists.debian.org>\n"
@@@ -531,8 -531,8 +531,8 @@@ msgstr "
  
  #. type: Content of: <refentry><refsect1><title>
  #: apt-cache.8.xml:64 apt-cdrom.8.xml:50 apt-config.8.xml:50
--#: apt-extracttemplates.1.xml:46 apt-ftparchive.1.xml:59 apt-get.8.xml:114
- #: apt-key.8.xml:38 apt-mark.8.xml:55 apt-secure.8.xml:43
++#: apt-extracttemplates.1.xml:46 apt-ftparchive.1.xml:59 apt-get.8.xml:121
+ #: apt-key.8.xml:38 apt-mark.8.xml:56 apt-secure.8.xml:43
  #: apt-sortpkgs.1.xml:47 apt.conf.5.xml:42 apt_preferences.5.xml:36
  #: sources.list.5.xml:36
  msgid "Description"
@@@ -548,7 -548,7 +548,7 @@@ msgid "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt-cache.8.xml:70 apt-get.8.xml:120
++#: apt-cache.8.xml:70 apt-get.8.xml:127
  msgid ""
  "Unless the <option>-h</option>, or <option>--help</option> option is given, "
  "one of the commands below must be present."
@@@ -910,8 -910,8 +910,8 @@@ msgstr "
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
  #: apt-cache.8.xml:278 apt-config.8.xml:96 apt-extracttemplates.1.xml:59
- #: apt-ftparchive.1.xml:525 apt-get.8.xml:331 apt-mark.8.xml:92
 -#: apt-ftparchive.1.xml:525 apt-get.8.xml:331 apt-mark.8.xml:126
--#: apt-sortpkgs.1.xml:57 apt.conf.5.xml:560 apt.conf.5.xml:582
++#: apt-ftparchive.1.xml:525 apt-get.8.xml:342 apt-mark.8.xml:126
++#: apt-sortpkgs.1.xml:57 apt.conf.5.xml:577 apt.conf.5.xml:599
  msgid "options"
  msgstr ""
  
@@@ -934,7 -934,7 +934,7 @@@ msgid "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-cache.8.xml:288 apt-ftparchive.1.xml:571 apt-get.8.xml:393
++#: apt-cache.8.xml:288 apt-ftparchive.1.xml:572 apt-get.8.xml:404
  #: apt-sortpkgs.1.xml:61
  msgid "<option>-s</option>"
  msgstr ""
@@@ -955,12 -955,12 +955,12 @@@ msgid "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-cache.8.xml:296 apt-ftparchive.1.xml:545 apt-get.8.xml:383
++#: apt-cache.8.xml:296 apt-ftparchive.1.xml:546 apt-get.8.xml:394
  msgid "<option>-q</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-cache.8.xml:296 apt-ftparchive.1.xml:545 apt-get.8.xml:383
++#: apt-cache.8.xml:296 apt-ftparchive.1.xml:546 apt-get.8.xml:394
  msgid "<option>--quiet</option>"
  msgstr ""
  
@@@ -1035,14 -1035,14 +1035,14 @@@ msgstr "
  #: apt-cache.8.xml:317
  msgid ""
  "Per default the <literal>depends</literal> and <literal>rdepends</literal> "
--"print all dependencies. This can be twicked with these flags which will omit "
++"print all dependencies. This can be tweaked with these flags which will omit "
  "the specified dependency type.  Configuration Item: <literal>APT::Cache::"
  "Show<replaceable>DependencyType</replaceable></literal> e.g. <literal>APT::"
  "Cache::ShowRecommends</literal>."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-cache.8.xml:323 apt-cdrom.8.xml:124 apt-get.8.xml:350
++#: apt-cache.8.xml:323 apt-cdrom.8.xml:124 apt-get.8.xml:361
  msgid "<option>-f</option>"
  msgstr ""
  
@@@ -1059,7 -1059,7 +1059,8 @@@ msgid "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-cache.8.xml:328 apt-cdrom.8.xml:134 apt-ftparchive.1.xml:583
++#: apt-cache.8.xml:328 apt-cdrom.8.xml:134 apt-ftparchive.1.xml:584
++#: apt-get.8.xml:452
  msgid "<option>-a</option>"
  msgstr ""
  
@@@ -1155,14 -1155,14 +1156,14 @@@ msgstr "
  
  #. type: Content of: <refentry><refsect1><variablelist>
  #: apt-cache.8.xml:367 apt-cdrom.8.xml:153 apt-config.8.xml:101
--#: apt-extracttemplates.1.xml:70 apt-ftparchive.1.xml:611 apt-get.8.xml:570
- #: apt-sortpkgs.1.xml:67
++#: apt-extracttemplates.1.xml:70 apt-ftparchive.1.xml:612 apt-get.8.xml:596
+ #: apt-mark.8.xml:140 apt-sortpkgs.1.xml:67
  msgid "&apt-commonoptions;"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><title>
- #: apt-cache.8.xml:372 apt-get.8.xml:575 apt-key.8.xml:156 apt-mark.8.xml:125
- #: apt.conf.5.xml:1093 apt_preferences.5.xml:654
 -#: apt-cache.8.xml:372 apt-get.8.xml:575 apt-key.8.xml:172 apt-mark.8.xml:144
 -#: apt.conf.5.xml:1093 apt_preferences.5.xml:697
++#: apt-cache.8.xml:372 apt-get.8.xml:601 apt-key.8.xml:175 apt-mark.8.xml:144
++#: apt.conf.5.xml:1110 apt_preferences.5.xml:697
  msgid "Files"
  msgstr ""
  
@@@ -1173,10 -1173,10 +1174,10 @@@ msgstr "
  
  #. type: Content of: <refentry><refsect1><title>
  #: apt-cache.8.xml:379 apt-cdrom.8.xml:158 apt-config.8.xml:106
--#: apt-extracttemplates.1.xml:77 apt-ftparchive.1.xml:627 apt-get.8.xml:585
- #: apt-key.8.xml:177 apt-mark.8.xml:131 apt-secure.8.xml:185
- #: apt-sortpkgs.1.xml:72 apt.conf.5.xml:1099 apt_preferences.5.xml:661
 -#: apt-key.8.xml:193 apt-mark.8.xml:150 apt-secure.8.xml:185
 -#: apt-sortpkgs.1.xml:72 apt.conf.5.xml:1099 apt_preferences.5.xml:704
--#: sources.list.5.xml:234
++#: apt-extracttemplates.1.xml:77 apt-ftparchive.1.xml:628 apt-get.8.xml:611
++#: apt-key.8.xml:196 apt-mark.8.xml:150 apt-secure.8.xml:185
++#: apt-sortpkgs.1.xml:72 apt.conf.5.xml:1116 apt_preferences.5.xml:704
++#: sources.list.5.xml:255
  msgid "See Also"
  msgstr ""
  
@@@ -1187,8 -1187,8 +1188,8 @@@ msgstr "
  
  #. type: Content of: <refentry><refsect1><title>
  #: apt-cache.8.xml:384 apt-cdrom.8.xml:163 apt-config.8.xml:111
--#: apt-extracttemplates.1.xml:81 apt-ftparchive.1.xml:631 apt-get.8.xml:591
- #: apt-mark.8.xml:135 apt-sortpkgs.1.xml:76
++#: apt-extracttemplates.1.xml:81 apt-ftparchive.1.xml:632 apt-get.8.xml:617
+ #: apt-mark.8.xml:154 apt-sortpkgs.1.xml:76
  msgid "Diagnostics"
  msgstr ""
  
@@@ -1287,12 -1287,12 +1288,12 @@@ msgid "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><title>
- #: apt-cdrom.8.xml:94 apt-key.8.xml:142
 -#: apt-cdrom.8.xml:94 apt-key.8.xml:158
++#: apt-cdrom.8.xml:94 apt-key.8.xml:161
  msgid "Options"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-cdrom.8.xml:98 apt-ftparchive.1.xml:539 apt-get.8.xml:345
++#: apt-cdrom.8.xml:98 apt-ftparchive.1.xml:540 apt-get.8.xml:356
  msgid "<option>-d</option>"
  msgstr ""
  
@@@ -1328,7 -1328,7 +1329,7 @@@ msgid "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-cdrom.8.xml:116 apt-get.8.xml:364
++#: apt-cdrom.8.xml:116 apt-get.8.xml:375
  msgid "<option>-m</option>"
  msgstr ""
  
@@@ -1373,17 -1373,17 +1374,17 @@@ msgid "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-cdrom.8.xml:143 apt-get.8.xml:395
++#: apt-cdrom.8.xml:143 apt-get.8.xml:406
  msgid "<option>--just-print</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-cdrom.8.xml:144 apt-get.8.xml:397
++#: apt-cdrom.8.xml:144 apt-get.8.xml:408
  msgid "<option>--recon</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-cdrom.8.xml:145 apt-get.8.xml:398
++#: apt-cdrom.8.xml:145 apt-get.8.xml:409
  msgid "<option>--no-act</option>"
  msgstr ""
  
@@@ -1496,7 -1496,7 +1497,7 @@@ msgid "Just show the contents of the co
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt-config.8.xml:107 apt-extracttemplates.1.xml:78 apt-ftparchive.1.xml:628
++#: apt-config.8.xml:107 apt-extracttemplates.1.xml:78 apt-ftparchive.1.xml:629
  #: apt-sortpkgs.1.xml:73
  msgid "&apt-conf;"
  msgstr ""
@@@ -1557,7 -1557,7 +1558,7 @@@ msgid "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-extracttemplates.1.xml:63 apt-get.8.xml:504
++#: apt-extracttemplates.1.xml:63 apt-get.8.xml:530
  msgid "<option>-t</option>"
  msgstr ""
  
@@@ -1759,7 -1759,7 +1760,7 @@@ msgid "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-ftparchive.1.xml:145 apt-get.8.xml:287
++#: apt-ftparchive.1.xml:145 apt-get.8.xml:298
  msgid "clean"
  msgstr ""
  
@@@ -2217,8 -2217,8 +2218,8 @@@ msgid "
  "free</literal>"
  msgstr ""
  
--#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
--#: apt-ftparchive.1.xml:394
++#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
++#: apt-ftparchive.1.xml:394 apt.conf.5.xml:157
  msgid "Architectures"
  msgstr ""
  
@@@ -2419,26 -2419,26 +2420,26 @@@ msgid "
  "Configuration Items: <literal>APT::FTPArchive::<replaceable>Checksum</"
  "replaceable></literal> and <literal>APT::FTPArchive::<replaceable>Index</"
  "replaceable>::<replaceable>Checksum</replaceable></literal> where "
--"<literal>Index</literal> can be <literal>Packages</literal>, "
--"<literal>Sources</literal> or <literal>Release</literal> and "
--"<literal>Checksum</literal> can be <literal>MD5</literal>, <literal>SHA1</"
--"literal> or <literal>SHA256</literal>."
++"<literal><replaceable>Index</replaceable></literal> can be "
++"<literal>Packages</literal>, <literal>Sources</literal> or <literal>Release</"
++"literal> and <literal><replaceable>Checksum</replaceable></literal> can be "
++"<literal>MD5</literal>, <literal>SHA1</literal> or <literal>SHA256</literal>."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-ftparchive.1.xml:539
++#: apt-ftparchive.1.xml:540
  msgid "<option>--db</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-ftparchive.1.xml:541
++#: apt-ftparchive.1.xml:542
  msgid ""
  "Use a binary caching DB. This has no effect on the generate command.  "
  "Configuration Item: <literal>APT::FTPArchive::DB</literal>."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-ftparchive.1.xml:547
++#: apt-ftparchive.1.xml:548
  msgid ""
  "Quiet; produces output suitable for logging, omitting progress indicators.  "
  "More q's will produce more quiet up to a maximum of 2. You can also use "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-ftparchive.1.xml:553
++#: apt-ftparchive.1.xml:554
  msgid "<option>--delink</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-ftparchive.1.xml:555
++#: apt-ftparchive.1.xml:556
  msgid ""
  "Perform Delinking. If the <literal>External-Links</literal> setting is used "
  "then this option actually enables delinking of the files. It defaults to on "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-ftparchive.1.xml:561
++#: apt-ftparchive.1.xml:562
  msgid "<option>--contents</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-ftparchive.1.xml:563
++#: apt-ftparchive.1.xml:564
  msgid ""
  "Perform contents generation. When this option is set and package indexes are "
  "being generated with a cache DB then the file listing will also be extracted "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-ftparchive.1.xml:571
++#: apt-ftparchive.1.xml:572
  msgid "<option>--source-override</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-ftparchive.1.xml:573
++#: apt-ftparchive.1.xml:574
  msgid ""
  "Select the source override file to use with the <literal>sources</literal> "
  "command.  Configuration Item: <literal>APT::FTPArchive::SourceOverride</"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-ftparchive.1.xml:577
++#: apt-ftparchive.1.xml:578
  msgid "<option>--readonly</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-ftparchive.1.xml:579
++#: apt-ftparchive.1.xml:580
  msgid ""
  "Make the caching databases read only.  Configuration Item: <literal>APT::"
  "FTPArchive::ReadOnlyDB</literal>."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-ftparchive.1.xml:583
++#: apt-ftparchive.1.xml:584
  msgid "<option>--arch</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-ftparchive.1.xml:584
++#: apt-ftparchive.1.xml:585
  msgid ""
  "Accept in the <literal>packages</literal> and <literal>contents</literal> "
  "commands only package files matching <literal>*_arch.deb</literal> or "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-ftparchive.1.xml:590
++#: apt-ftparchive.1.xml:591
  msgid "<option>APT::FTPArchive::AlwaysStat</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-ftparchive.1.xml:592
++#: apt-ftparchive.1.xml:593
  msgid ""
  "&apt-ftparchive; caches as much as possible of metadata in a cachedb. If "
  "packages are recompiled and/or republished with the same version again, this "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-ftparchive.1.xml:602
++#: apt-ftparchive.1.xml:603
  msgid "<option>APT::FTPArchive::LongDescription</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-ftparchive.1.xml:604
++#: apt-ftparchive.1.xml:605
  msgid ""
  "This configuration option defaults to \"<literal>true</literal>\" and should "
  "only be set to <literal>\"false\"</literal> if the Archive generated with "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><title>
- #: apt-ftparchive.1.xml:616 apt.conf.5.xml:1087 apt_preferences.5.xml:501
 -#: apt-ftparchive.1.xml:616 apt.conf.5.xml:1087 apt_preferences.5.xml:544
--#: sources.list.5.xml:198
++#: apt-ftparchive.1.xml:617 apt.conf.5.xml:1104 apt_preferences.5.xml:544
++#: sources.list.5.xml:214
  msgid "Examples"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><programlisting>
--#: apt-ftparchive.1.xml:622
++#: apt-ftparchive.1.xml:623
  #, no-wrap
  msgid "<command>apt-ftparchive</command> packages <replaceable>directory</replaceable> | <command>gzip</command> > <filename>Packages.gz</filename>\n"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt-ftparchive.1.xml:618
++#: apt-ftparchive.1.xml:619
  msgid ""
  "To create a compressed Packages file for a directory containing binary "
  "packages (.deb): <placeholder type=\"programlisting\" id=\"0\"/>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt-ftparchive.1.xml:632
++#: apt-ftparchive.1.xml:633
  msgid ""
  "<command>apt-ftparchive</command> returns zero on normal operation, decimal "
  "100 on error."
@@@ -2600,10 -2600,10 +2601,11 @@@ msgid "
  "<option>-o= <replaceable>config_string</replaceable> </option> </arg> <arg> "
  "<option>-c= <replaceable>config_file</replaceable> </option> </arg> <arg> "
  "<option>-t=</option> <arg choice='plain'> <replaceable>target_release</"
--"replaceable> </arg> </arg> <group choice=\"req\"> <arg "
--"choice='plain'>update</arg> <arg choice='plain'>upgrade</arg> <arg "
--"choice='plain'>dselect-upgrade</arg> <arg choice='plain'>dist-upgrade</arg> "
--"<arg choice='plain'>install <arg choice=\"plain\" rep=\"repeat"
++"replaceable> </arg> </arg> <arg> <option>-a=</option> <arg choice='plain'> "
++"<replaceable>default_architecture</replaceable> </arg> </arg> <group choice="
++"\"req\"> <arg choice='plain'>update</arg> <arg choice='plain'>upgrade</arg> "
++"<arg choice='plain'>dselect-upgrade</arg> <arg choice='plain'>dist-upgrade</"
++"arg> <arg choice='plain'>install <arg choice=\"plain\" rep=\"repeat"
  "\"><replaceable>pkg</replaceable> <arg> <group choice='req'> <arg "
  "choice='plain'> =<replaceable>pkg_version_number</replaceable> </arg> <arg "
  "choice='plain'> /<replaceable>target_release</replaceable> </arg> </group> </"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt-get.8.xml:115
++#: apt-get.8.xml:122
  msgid ""
  "<command>apt-get</command> is the command-line tool for handling packages, "
  "and may be considered the user's \"back-end\" to other tools using the APT "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:124 apt-key.8.xml:127
++#: apt-get.8.xml:131 apt-key.8.xml:127
  #, fuzzy
  msgid "update"
  msgstr "upgrade"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:125
++#: apt-get.8.xml:132
  msgid ""
  "<literal>update</literal> is used to resynchronize the package index files "
  "from their sources. The indexes of available packages are fetched from the "
  msgstr ""
  
  #. type: <tag></tag>
--#: apt-get.8.xml:136 guide.sgml:121
++#: apt-get.8.xml:143 guide.sgml:121
  #, fuzzy
  msgid "upgrade"
  msgstr "upgrade"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:137
++#: apt-get.8.xml:144
  msgid ""
  "<literal>upgrade</literal> is used to install the newest versions of all "
  "packages currently installed on the system from the sources enumerated in "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:149
++#: apt-get.8.xml:156
  #, fuzzy
  msgid "dselect-upgrade"
  msgstr "dist-upgrade"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:150
++#: apt-get.8.xml:157
  msgid ""
  "<literal>dselect-upgrade</literal> is used in conjunction with the "
  "traditional Debian packaging front-end, &dselect;. <literal>dselect-upgrade</"
  msgstr ""
  
  #. type: <tag></tag>
--#: apt-get.8.xml:159 guide.sgml:140
++#: apt-get.8.xml:166 guide.sgml:140
  #, fuzzy
  msgid "dist-upgrade"
  msgstr "dist-upgrade"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:160
++#: apt-get.8.xml:167
  msgid ""
  "<literal>dist-upgrade</literal> in addition to performing the function of "
  "<literal>upgrade</literal>, also intelligently handles changing dependencies "
  msgstr ""
  
  #. type: <tag></tag>
--#: apt-get.8.xml:172 guide.sgml:131
++#: apt-get.8.xml:179 guide.sgml:131
  #, fuzzy
  msgid "install"
  msgstr "install"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:174
++#: apt-get.8.xml:181
  msgid ""
  "<literal>install</literal> is followed by one or more packages desired for "
  "installation or upgrading.  Each package is a package name, not a fully "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:192
++#: apt-get.8.xml:199
  msgid ""
  "A specific version of a package can be selected for installation by "
  "following the package name with an equals and the version of the package to "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:199
++#: apt-get.8.xml:206
  msgid ""
  "Both of the version selection mechanisms can downgrade packages and must be "
  "used with care."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:202
++#: apt-get.8.xml:209
  msgid ""
  "This is also the target to use if you want to upgrade one or more already-"
  "installed packages without upgrading every package you have on your system. "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:213
++#: apt-get.8.xml:220
  msgid ""
  "Finally, the &apt-preferences; mechanism allows you to create an alternative "
  "installation policy for individual packages."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:217
++#: apt-get.8.xml:224
  msgid ""
  "If no package matches the given expression and the expression contains one "
  "of '.', '?' or '*' then it is assumed to be a POSIX regular expression, and "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:226
++#: apt-get.8.xml:233
  msgid "remove"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:227
++#: apt-get.8.xml:234
  msgid ""
  "<literal>remove</literal> is identical to <literal>install</literal> except "
  "that packages are removed instead of installed. Note the removing a package "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:234
++#: apt-get.8.xml:241
  msgid "purge"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:235
++#: apt-get.8.xml:242
  msgid ""
  "<literal>purge</literal> is identical to <literal>remove</literal> except "
  "that packages are removed and purged (any configuration files are deleted "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:239
++#: apt-get.8.xml:246
  msgid "source"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:240
++#: apt-get.8.xml:247
  msgid ""
  "<literal>source</literal> causes <command>apt-get</command> to fetch source "
  "packages. APT will examine the available packages to decide which source "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:248
++#: apt-get.8.xml:255
  msgid ""
  "Source packages are tracked separately from binary packages via <literal>deb-"
  "src</literal> type lines in the &sources-list; file. This means that you "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:255
++#: apt-get.8.xml:262
  msgid ""
  "If the <option>--compile</option> option is specified then the package will "
--"be compiled to a binary .deb using <command>dpkg-buildpackage</command>, if "
--"<option>--download-only</option> is specified then the source package will "
--"not be unpacked."
++"be compiled to a binary .deb using <command>dpkg-buildpackage</command> for "
++"the architecture as defined by the <command>--host-architecture</command> "
++"option.  If <option>--download-only</option> is specified then the source "
++"package will not be unpacked."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:260
++#: apt-get.8.xml:269
  msgid ""
  "A specific source version can be retrieved by postfixing the source name "
  "with an equals and then the version to fetch, similar to the mechanism used "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:266
++#: apt-get.8.xml:275
  msgid ""
  "Note that source packages are not tracked like binary packages, they exist "
  "only in the current directory and are similar to downloading source tar "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:271
++#: apt-get.8.xml:280
  msgid "build-dep"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:272
++#: apt-get.8.xml:281
  msgid ""
  "<literal>build-dep</literal> causes apt-get to install/remove packages in an "
--"attempt to satisfy the build dependencies for a source package."
++"attempt to satisfy the build dependencies for a source package. By default "
++"the dependencies are satisfied to build the package nativly. If desired a "
++"host-architecture can be specified with the <option>--host-architecture</"
++"option> option instead."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:276
++#: apt-get.8.xml:287
  msgid "check"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:277
++#: apt-get.8.xml:288
  msgid ""
  "<literal>check</literal> is a diagnostic tool; it updates the package cache "
  "and checks for broken dependencies."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:281
++#: apt-get.8.xml:292
  msgid "download"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:282
++#: apt-get.8.xml:293
  msgid ""
  "<literal>download</literal> will download the given binary package into the "
--"current directoy."
++"current directory."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:288
++#: apt-get.8.xml:299
  msgid ""
  "<literal>clean</literal> clears out the local repository of retrieved "
  "package files. It removes everything but the lock file from "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:297
++#: apt-get.8.xml:308
  msgid "autoclean"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:298
++#: apt-get.8.xml:309
  msgid ""
  "Like <literal>clean</literal>, <literal>autoclean</literal> clears out the "
  "local repository of retrieved package files. The difference is that it only "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:307
++#: apt-get.8.xml:318
  msgid "autoremove"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:308
++#: apt-get.8.xml:319
  msgid ""
  "<literal>autoremove</literal> is used to remove packages that were "
--"automatically installed to satisfy dependencies for some package and that "
--"are no more needed."
++"automatically installed to satisfy dependencies for other packages and are "
++"now no longer needed."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:312
++#: apt-get.8.xml:323
  msgid "changelog"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:313
++#: apt-get.8.xml:324
  msgid ""
  "<literal>changelog</literal> downloads a package changelog and displays it "
  "through <command>sensible-pager</command>. The server name and base "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:335
++#: apt-get.8.xml:346
  msgid "<option>--no-install-recommends</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:336
++#: apt-get.8.xml:347
  msgid ""
  "Do not consider recommended packages as a dependency for installing.  "
  "Configuration Item: <literal>APT::Install-Recommends</literal>."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:340
++#: apt-get.8.xml:351
  msgid "<option>--install-suggests</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:341
++#: apt-get.8.xml:352
  msgid ""
  "Consider suggested packages as a dependency for installing.  Configuration "
  "Item: <literal>APT::Install-Suggests</literal>."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:345
++#: apt-get.8.xml:356
  msgid "<option>--download-only</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:346
++#: apt-get.8.xml:357
  msgid ""
  "Download only; package files are only retrieved, not unpacked or installed.  "
  "Configuration Item: <literal>APT::Get::Download-Only</literal>."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:350
++#: apt-get.8.xml:361
  msgid "<option>--fix-broken</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:351
++#: apt-get.8.xml:362
  msgid ""
  "Fix; attempt to correct a system with broken dependencies in place. This "
  "option, when used with install/remove, can omit any packages to permit APT "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:364
++#: apt-get.8.xml:375
  msgid "<option>--ignore-missing</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:365
++#: apt-get.8.xml:376
  msgid "<option>--fix-missing</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:366
++#: apt-get.8.xml:377
  msgid ""
  "Ignore missing packages; If packages cannot be retrieved or fail the "
  "integrity check after retrieval (corrupted package files), hold back those "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:376
++#: apt-get.8.xml:387
  msgid "<option>--no-download</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:377
++#: apt-get.8.xml:388
  msgid ""
  "Disables downloading of packages. This is best used with <option>--ignore-"
  "missing</option> to force APT to use only the .debs it has already "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:384
++#: apt-get.8.xml:395
  msgid ""
  "Quiet; produces output suitable for logging, omitting progress indicators.  "
  "More q's will produce more quiet up to a maximum of 2. You can also use "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:394
++#: apt-get.8.xml:405
  msgid "<option>--simulate</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:396
++#: apt-get.8.xml:407
  msgid "<option>--dry-run</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:399
++#: apt-get.8.xml:410
  msgid ""
  "No action; perform a simulation of events that would occur but do not "
  "actually change the system.  Configuration Item: <literal>APT::Get::"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:403
++#: apt-get.8.xml:414
  msgid ""
  "Simulation run as user will deactivate locking (<literal>Debug::NoLocking</"
  "literal>)  automatic. Also a notice will be displayed indicating that this "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:409
++#: apt-get.8.xml:420
  msgid ""
  "Simulate prints out a series of lines each one representing a dpkg "
  "operation, Configure (Conf), Remove (Remv), Unpack (Inst). Square brackets "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:416
++#: apt-get.8.xml:427
  msgid "<option>-y</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:416
++#: apt-get.8.xml:427
  msgid "<option>--yes</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:417
++#: apt-get.8.xml:428
  msgid "<option>--assume-yes</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:418
++#: apt-get.8.xml:429
  msgid ""
  "Automatic yes to prompts; assume \"yes\" as answer to all prompts and run "
  "non-interactively. If an undesirable situation, such as changing a held "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:425
++#: apt-get.8.xml:436
++msgid "<option>--assume-no</option>"
++msgstr ""
++
++#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
++#: apt-get.8.xml:437
++msgid ""
++"Automatic \"no\" to all prompts.  Configuration Item: <literal>APT::Get::"
++"Assume-No</literal>."
++msgstr ""
++
++#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
++#: apt-get.8.xml:441
  msgid "<option>-u</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:425
++#: apt-get.8.xml:441
  msgid "<option>--show-upgraded</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:426
++#: apt-get.8.xml:442
  msgid ""
  "Show upgraded packages; Print out a list of all packages that are to be "
  "upgraded.  Configuration Item: <literal>APT::Get::Show-Upgraded</literal>."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:431
++#: apt-get.8.xml:447
  msgid "<option>-V</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:431
++#: apt-get.8.xml:447
  msgid "<option>--verbose-versions</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:432
++#: apt-get.8.xml:448
  msgid ""
  "Show full versions for upgraded and installed packages.  Configuration Item: "
  "<literal>APT::Get::Show-Versions</literal>."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:436
++#: apt-get.8.xml:453
++msgid "<option>--host-architecture</option>"
++msgstr ""
++
++#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
++#: apt-get.8.xml:454
++msgid ""
++"This option controls the architecture packages are built for by <command>apt-"
++"get source --compile</command> and how cross-builddependencies are "
++"satisfied. By default is not set which means that the host architecture is "
++"the same as the build architecture (which is defined by <literal>APT::"
++"Architecture</literal>)  Configuration Item: <literal>APT::Get::Host-"
++"Architecture</literal>"
++msgstr ""
++
++#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
++#: apt-get.8.xml:462
  msgid "<option>-b</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:436
++#: apt-get.8.xml:462
  msgid "<option>--compile</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:437
++#: apt-get.8.xml:463
  msgid "<option>--build</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:438
++#: apt-get.8.xml:464
  msgid ""
  "Compile source packages after downloading them.  Configuration Item: "
  "<literal>APT::Get::Compile</literal>."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:442
++#: apt-get.8.xml:468
  msgid "<option>--ignore-hold</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:443
++#: apt-get.8.xml:469
  msgid ""
  "Ignore package Holds; This causes <command>apt-get</command> to ignore a "
  "hold placed on a package. This may be useful in conjunction with "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:449
++#: apt-get.8.xml:475
  msgid "<option>--no-upgrade</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:450
++#: apt-get.8.xml:476
  msgid ""
  "Do not upgrade packages; When used in conjunction with <literal>install</"
  "literal>, <literal>no-upgrade</literal> will prevent packages on the command "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:456
++#: apt-get.8.xml:482
  msgid "<option>--only-upgrade</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:457
++#: apt-get.8.xml:483
  msgid ""
  "Do not install new packages; When used in conjunction with <literal>install</"
  "literal>, <literal>only-upgrade</literal> will prevent packages on the "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:463
++#: apt-get.8.xml:489
  msgid "<option>--force-yes</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:464
++#: apt-get.8.xml:490
  msgid ""
  "Force yes; This is a dangerous option that will cause apt to continue "
  "without prompting if it is doing something potentially harmful. It should "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:471
++#: apt-get.8.xml:497
  msgid "<option>--print-uris</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:472
++#: apt-get.8.xml:498
  msgid ""
  "Instead of fetching the files to install their URIs are printed. Each URI "
  "will have the path, the destination file name, the size and the expected md5 "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:482
++#: apt-get.8.xml:508
  msgid "<option>--purge</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:483
++#: apt-get.8.xml:509
  msgid ""
  "Use purge instead of remove for anything that would be removed.  An asterisk "
  "(\"*\") will be displayed next to packages which are scheduled to be purged. "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:490
++#: apt-get.8.xml:516
  msgid "<option>--reinstall</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:491
++#: apt-get.8.xml:517
  msgid ""
  "Re-Install packages that are already installed and at the newest version.  "
  "Configuration Item: <literal>APT::Get::ReInstall</literal>."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:495
++#: apt-get.8.xml:521
  msgid "<option>--list-cleanup</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:496
++#: apt-get.8.xml:522
  msgid ""
  "This option defaults to on, use <literal>--no-list-cleanup</literal> to turn "
  "it off. When on <command>apt-get</command> will automatically manage the "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:505
++#: apt-get.8.xml:531
  msgid "<option>--target-release</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:506
++#: apt-get.8.xml:532
  msgid "<option>--default-release</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:507
++#: apt-get.8.xml:533
  msgid ""
  "This option controls the default input to the policy engine, it creates a "
  "default pin at priority 990 using the specified release string.  This "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:520
++#: apt-get.8.xml:546
  msgid "<option>--trivial-only</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:522
++#: apt-get.8.xml:548
  msgid ""
  "Only perform operations that are 'trivial'. Logically this can be considered "
  "related to <option>--assume-yes</option>, where <option>--assume-yes</"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:528
++#: apt-get.8.xml:554
  msgid "<option>--no-remove</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:529
++#: apt-get.8.xml:555
  msgid ""
  "If any packages are to be removed apt-get immediately aborts without "
  "prompting.  Configuration Item: <literal>APT::Get::Remove</literal>."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:534
++#: apt-get.8.xml:560
  msgid "<option>--auto-remove</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:535
++#: apt-get.8.xml:561
  msgid ""
  "If the command is either <literal>install</literal> or <literal>remove</"
  "literal>, then this option acts like running <literal>autoremove</literal> "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:541
++#: apt-get.8.xml:567
  msgid "<option>--only-source</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:542
++#: apt-get.8.xml:568
  msgid ""
  "Only has meaning for the <literal>source</literal> and <literal>build-dep</"
  "literal> commands.  Indicates that the given source names are not to be "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:552
++#: apt-get.8.xml:578
  msgid "<option>--diff-only</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:552
++#: apt-get.8.xml:578
  msgid "<option>--dsc-only</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:552
++#: apt-get.8.xml:578
  msgid "<option>--tar-only</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:553
++#: apt-get.8.xml:579
  msgid ""
  "Download only the diff, dsc, or tar file of a source archive.  Configuration "
  "Item: <literal>APT::Get::Diff-Only</literal>, <literal>APT::Get::Dsc-Only</"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:558
++#: apt-get.8.xml:584
  msgid "<option>--arch-only</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:559
++#: apt-get.8.xml:585
  msgid ""
  "Only process architecture-dependent build-dependencies.  Configuration Item: "
  "<literal>APT::Get::Arch-Only</literal>."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:563
++#: apt-get.8.xml:589
  msgid "<option>--allow-unauthenticated</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:564
++#: apt-get.8.xml:590
  msgid ""
  "Ignore if packages can't be authenticated and don't prompt about it.  This "
  "is useful for tools like pbuilder.  Configuration Item: <literal>APT::Get::"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist>
--#: apt-get.8.xml:577
++#: apt-get.8.xml:603
  msgid ""
  "&file-sourceslist; &file-aptconf; &file-preferences; &file-cachearchives; "
  "&file-statelists;"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt-get.8.xml:586
++#: apt-get.8.xml:612
  msgid ""
  "&apt-cache;, &apt-cdrom;, &dpkg;, &dselect;, &sources-list;, &apt-conf;, "
  "&apt-config;, &apt-secure;, The APT User's guide in &guidesdir;, &apt-"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt-get.8.xml:592
++#: apt-get.8.xml:618
  msgid ""
  "<command>apt-get</command> returns zero on normal operation, decimal 100 on "
  "error."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><title>
--#: apt-get.8.xml:595
++#: apt-get.8.xml:621
  msgid "ORIGINAL AUTHORS"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt-get.8.xml:596
++#: apt-get.8.xml:622
  msgid "&apt-author.jgunthorpe;"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><title>
--#: apt-get.8.xml:599
++#: apt-get.8.xml:625
  msgid "CURRENT AUTHORS"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt-get.8.xml:601
++#: apt-get.8.xml:627
  msgid "&apt-author.team;"
  msgstr ""
  
@@@ -3582,24 -3582,39 +3616,44 @@@ msgstr "
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #: apt-key.8.xml:131
  msgid ""
--"Update the local keyring with the keyring of Debian archive keys and removes "
--"from the keyring the archive keys which are no longer valid."
++"Update the local keyring with the archive keyring and remove from the local "
++"keyring the archive keys which are no longer valid.  The archive keyring is "
++"shipped in the <literal>archive-keyring</literal> package of your "
++"distribution, e.g. the <literal>ubuntu-archive-keyring</literal> package in "
++"Ubuntu."
+ msgstr ""
+ #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
 -#: apt-key.8.xml:140
++#: apt-key.8.xml:141
+ #, fuzzy
+ msgid "net-update"
+ msgstr "upgrade"
+ #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
 -#: apt-key.8.xml:144
++#: apt-key.8.xml:145
+ msgid ""
 -"Update the local keyring with the keys of a key server and removes from the "
 -"keyring the archive keys which are no longer valid. This requires an "
 -"installed wget and an APT build configured to have a server to fetch from. "
 -"APT in Debian does not support this command, but Ubuntu's APT does."
++"Work similar to the <command>update</command> command above, but get the "
++"archive keyring from an URI instead and validate it against a master key.  "
++"This requires an installed &wget; and an APT build configured to have a "
++"server to fetch from and a master keyring to validate.  APT in Debian does "
++"not support this command and relies on <command>update</command> instead, "
++"but Ubuntu's APT does."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
- #: apt-key.8.xml:143
 -#: apt-key.8.xml:159
++#: apt-key.8.xml:162
  msgid ""
  "Note that options need to be defined before the commands described in the "
  "previous section."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-key.8.xml:145
 -#: apt-key.8.xml:161
++#: apt-key.8.xml:164
  msgid "--keyring <replaceable>filename</replaceable>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
- #: apt-key.8.xml:146
 -#: apt-key.8.xml:162
++#: apt-key.8.xml:165
  msgid ""
  "With this option it is possible to specify a specific keyring file the "
  "command should operate on. The default is that a command is executed on the "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist>
- #: apt-key.8.xml:159
 -#: apt-key.8.xml:175
++#: apt-key.8.xml:178
  msgid "&file-trustedgpg;"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-key.8.xml:161
 -#: apt-key.8.xml:177
++#: apt-key.8.xml:180
  msgid "<filename>/etc/apt/trustdb.gpg</filename>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
- #: apt-key.8.xml:162
 -#: apt-key.8.xml:178
++#: apt-key.8.xml:181
  msgid "Local trust database of archive keys."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-key.8.xml:165
 -#: apt-key.8.xml:181
--msgid "<filename>/usr/share/keyrings/debian-archive-keyring.gpg</filename>"
++#: apt-key.8.xml:184
++msgid "<filename>/usr/share/keyrings/ubuntu-archive-keyring.gpg</filename>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
- #: apt-key.8.xml:166
 -#: apt-key.8.xml:182
--msgid "Keyring of Debian archive trusted keys."
++#: apt-key.8.xml:185
++msgid "Keyring of Ubuntu archive trusted keys."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-key.8.xml:169
 -#: apt-key.8.xml:185
++#: apt-key.8.xml:188
  msgid ""
--"<filename>/usr/share/keyrings/debian-archive-removed-keys.gpg</filename>"
++"<filename>/usr/share/keyrings/ubuntu-archive-removed-keys.gpg</filename>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
- #: apt-key.8.xml:170
 -#: apt-key.8.xml:186
--msgid "Keyring of Debian archive removed trusted keys."
++#: apt-key.8.xml:189
++msgid "Keyring of Ubuntu archive removed trusted keys."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
- #: apt-key.8.xml:179
 -#: apt-key.8.xml:195
++#: apt-key.8.xml:198
  msgid "&apt-get;, &apt-secure;"
  msgstr ""
  
  #. type: Content of: <refentry><refentryinfo>
  #: apt-mark.8.xml:16
  msgid ""
- "&apt-author.moconnor; &apt-author.team; &apt-email; &apt-product; <date>9 "
- "August 2009</date>"
+ "&apt-author.moconnor; &apt-author.team; &apt-email; &apt-product; <date>21 "
+ "April 2011</date>"
  msgstr ""
  
  #. type: Content of: <refentry><refnamediv><refname>
@@@ -3674,20 -3689,21 +3728,21 @@@ msgid "
  "  <command>apt-mark</command> <arg><option>-hv</option></arg> <arg><option>-"
  "f=<replaceable>FILENAME</replaceable></option></arg> <group choice=\"plain"
  "\"> <arg choice=\"plain\"> <group choice=\"req\"> <arg choice=\"plain"
- "\">markauto</arg> <arg choice=\"plain\">unmarkauto</arg> </group> <arg "
+ "\">auto</arg> <arg choice=\"plain\">manual</arg> <arg choice=\"plain"
+ "\">showauto</arg> <arg choice=\"plain\">showmanual</arg> </group> <arg "
  "choice=\"plain\" rep=\"repeat\"><replaceable>package</replaceable></arg> </"
- "arg> <arg choice=\"plain\">showauto</arg> </group>"
+ "arg> </group>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
- #: apt-mark.8.xml:56
+ #: apt-mark.8.xml:57
  msgid ""
  "<command>apt-mark</command> will change whether a package has been marked as "
  "being automatically installed."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
- #: apt-mark.8.xml:60
+ #: apt-mark.8.xml:61
  msgid ""
  "When you request that a package is installed, and as a result other packages "
  "are installed to satisfy its dependencies, the dependencies are marked as "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-mark.8.xml:68
- msgid "markauto"
+ #: apt-mark.8.xml:69
+ msgid "auto"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
- #: apt-mark.8.xml:69
+ #: apt-mark.8.xml:70
  msgid ""
- "<literal>markauto</literal> is used to mark a package as being automatically "
+ "<literal>auto</literal> is used to mark a package as being automatically "
  "installed, which will cause the package to be removed when no more manually "
  "installed packages depend on this package."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-mark.8.xml:76
- msgid "unmarkauto"
+ #: apt-mark.8.xml:77
+ msgid "manual"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
- #: apt-mark.8.xml:77
+ #: apt-mark.8.xml:78
  msgid ""
- "<literal>unmarkauto</literal> is used to mark a package as being manually "
+ "<literal>manual</literal> is used to mark a package as being manually "
  "installed, which will prevent the package from being automatically removed "
  "if no other packages depend on it."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-mark.8.xml:84
- msgid "showauto"
+ #: apt-mark.8.xml:85
+ msgid "hold"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
- #: apt-mark.8.xml:85
+ #: apt-mark.8.xml:86
  msgid ""
- "<literal>showauto</literal> is used to print a list of automatically "
- "installed packages with each package on a new line."
+ "<literal>hold</literal> is used to mark a package as hold back, which will "
+ "prevent the package from being automatically installed, upgraded or "
+ "removed.  The command is only a wrapper around <command>dpkg --set-"
+ "selections</command> and the state is therefore maintained by &dpkg; and not "
+ "effected by the <option>--filename</option> option."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
+ #: apt-mark.8.xml:95
+ msgid "unhold"
+ msgstr ""
+ #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #: apt-mark.8.xml:96
  msgid ""
- "<option>-f=<filename><replaceable>FILENAME</replaceable></filename></option>"
+ "<literal>unhold</literal> is used to cancel a previously set hold on a "
+ "package to allow all actions again."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-mark.8.xml:97
- msgid ""
- "<option>--file=<filename><replaceable>FILENAME</replaceable></filename></"
- "option>"
+ #: apt-mark.8.xml:101
+ msgid "showauto"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
- #: apt-mark.8.xml:100
+ #: apt-mark.8.xml:102
  msgid ""
- "Read/Write package stats from <filename><replaceable>FILENAME</replaceable></"
- "filename> instead of the default location, which is "
- "<filename>extended_status</filename> in the directory defined by the "
- "Configuration Item: <literal>Dir::State</literal>."
+ "<literal>showauto</literal> is used to print a list of automatically "
+ "installed packages with each package on a new line.  All automatically "
+ "installed packages will be listed if no package is given.  If packages are "
+ "given only those which are automatically installed will be shown."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-mark.8.xml:106
- msgid "<option>-h</option>"
+ #: apt-mark.8.xml:109
+ msgid "showmanual"
+ msgstr ""
+ #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
+ #: apt-mark.8.xml:110
+ msgid ""
+ "<literal>showmanual</literal> can be used in the same way as "
+ "<literal>showauto</literal> except that it will print a list of manually "
+ "installed packages instead."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-mark.8.xml:107
- msgid "<option>--help</option>"
+ #: apt-mark.8.xml:116
+ msgid "showhold"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
- #: apt-mark.8.xml:108
- msgid "Show a short usage summary."
+ #: apt-mark.8.xml:117
+ msgid ""
+ "<literal>showhold</literal> is used to print a list of packages on hold in "
+ "the same way as for the other show commands."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-mark.8.xml:114
- msgid "<option>-v</option>"
+ #: apt-mark.8.xml:130
+ msgid ""
+ "<option>-f=<filename><replaceable>FILENAME</replaceable></filename></option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-mark.8.xml:115
- msgid "<option>--version</option>"
+ #: apt-mark.8.xml:131
+ msgid ""
+ "<option>--file=<filename><replaceable>FILENAME</replaceable></filename></"
+ "option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
- #: apt-mark.8.xml:116
- msgid "Show the program version."
+ #: apt-mark.8.xml:134
+ msgid ""
+ "Read/Write package stats from <filename><replaceable>FILENAME</replaceable></"
+ "filename> instead of the default location, which is "
+ "<filename>extended_status</filename> in the directory defined by the "
+ "Configuration Item: <literal>Dir::State</literal>."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist>
- #: apt-mark.8.xml:127
+ #: apt-mark.8.xml:146
  msgid "  &file-extended_states;"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
- #: apt-mark.8.xml:132
+ #: apt-mark.8.xml:151
  msgid "&apt-get;,&aptitude;,&apt-conf;"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
- #: apt-mark.8.xml:136
+ #: apt-mark.8.xml:155
  msgid ""
  "<command>apt-mark</command> returns zero on normal operation, non-zero on "
  "error."
@@@ -4134,11 -4174,11 +4213,12 @@@ msgstr "
  #: apt.conf.5.xml:52
  msgid ""
  "all files in <literal>Dir::Etc::Parts</literal> in alphanumeric ascending "
--"order which have no or \"<literal>conf</literal>\" as filename extension and "
--"which only contain alphanumeric, hyphen (-), underscore (_) and period (.) "
--"characters.  Otherwise APT will print a notice that it has ignored a file if "
--"the file doesn't match a pattern in the <literal>Dir::Ignore-Files-Silently</"
--"literal> configuration list - in this case it will be silently ignored."
++"order which have either no or \"<literal>conf</literal>\" as filename "
++"extension and which only contain alphanumeric, hyphen (-), underscore (_) "
++"and period (.) characters.  Otherwise APT will print a notice that it has "
++"ignored a file if the file doesn't match a pattern in the <literal>Dir::"
++"Ignore-Files-Silently</literal> configuration list - in this case it will be "
++"silently ignored."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><orderedlist><listitem><para>
@@@ -4310,13 -4350,13 +4390,24 @@@ msgid "
  "compiled for."
  msgstr ""
  
++#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
++#: apt.conf.5.xml:158
++msgid ""
++"All Architectures the system supports. Processors implementing the "
++"<literal>amd64</literal> are e.g. also able to execute binaries compiled for "
++"<literal>i386</literal>; This list is use when fetching files and parsing "
++"package lists. The internal default is always the native architecture "
++"(<literal>APT::Architecture</literal>)  and all foreign architectures it can "
++"retrieve by calling <command>dpkg --print-foreign-architectures</command>."
++msgstr ""
++
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:157
++#: apt.conf.5.xml:165
  msgid "Default-Release"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:158
++#: apt.conf.5.xml:166
  msgid ""
  "Default release to install packages from if more than one version available. "
  "Contains release name, codename or release version. Examples: 'stable', "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:163
++#: apt.conf.5.xml:171
  msgid "Ignore-Hold"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:164
++#: apt.conf.5.xml:172
  msgid ""
  "Ignore Held packages; This global option causes the problem resolver to "
  "ignore held packages in its decision making."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:168
++#: apt.conf.5.xml:176
  msgid "Clean-Installed"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:169
++#: apt.conf.5.xml:177
  msgid ""
  "Defaults to on. When turned on the autoclean feature will remove any "
  "packages which can no longer be downloaded from the cache. If turned off "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:175
++#: apt.conf.5.xml:183
  msgid "Immediate-Configure"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:176
++#: apt.conf.5.xml:184
  msgid ""
  "Defaults to on which will cause APT to install essential and important "
  "packages as fast as possible in the install/upgrade operation. This is done "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:198
++#: apt.conf.5.xml:206
  msgid "Force-LoopBreak"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:199
++#: apt.conf.5.xml:207
  msgid ""
  "Never Enable this option unless you -really- know what you are doing. It "
  "permits APT to temporarily remove an essential package to break a Conflicts/"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:207
++#: apt.conf.5.xml:215
  msgid "Cache-Start, Cache-Grow and Cache-Limit"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:208
++#: apt.conf.5.xml:216
  msgid ""
  "APT uses since version 0.7.26 a resizable memory mapped cache file to store "
  "the 'available' information. <literal>Cache-Start</literal> acts as a hint "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:223
++#: apt.conf.5.xml:231
  msgid "Build-Essential"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:224
++#: apt.conf.5.xml:232
  msgid "Defines which package(s) are considered essential build dependencies."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:227
++#: apt.conf.5.xml:235
  msgid "Get"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:228
++#: apt.conf.5.xml:236
  msgid ""
  "The Get subsection controls the &apt-get; tool, please see its documentation "
  "for more information about the options here."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:232
++#: apt.conf.5.xml:240
  msgid "Cache"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:233
++#: apt.conf.5.xml:241
  msgid ""
  "The Cache subsection controls the &apt-cache; tool, please see its "
  "documentation for more information about the options here."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:237
++#: apt.conf.5.xml:245
  msgid "CDROM"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:238
++#: apt.conf.5.xml:246
  msgid ""
  "The CDROM subsection controls the &apt-cdrom; tool, please see its "
  "documentation for more information about the options here."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><title>
--#: apt.conf.5.xml:244
++#: apt.conf.5.xml:252
  msgid "The Acquire Group"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:249
++#: apt.conf.5.xml:257
  msgid "Check-Valid-Until"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:250
++#: apt.conf.5.xml:258
  msgid ""
  "Security related option defaulting to true as an expiring validation for a "
  "Release file prevents longtime replay attacks and can e.g. also help users "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:260
++#: apt.conf.5.xml:268
  msgid "Max-ValidTime"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:261
++#: apt.conf.5.xml:269
++msgid ""
++"Seconds the Release file should be considered valid after it was created "
++"(indicated by the <literal>Date</literal> header).  If the Release file "
++"itself includes a <literal>Valid-Until</literal> header the earlier date of "
++"the two is used as the expiration date.  The default value is <literal>0</"
++"literal> which stands for \"for ever\".  Archive specific settings can be "
++"made by appending the label of the archive to the option name."
++msgstr ""
++
++#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
++#: apt.conf.5.xml:279
++msgid "Min-ValidTime"
++msgstr ""
++
++#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
++#: apt.conf.5.xml:280
  msgid ""
--"Seconds the Release file should be considered valid after it was created. "
--"The default is \"for ever\" (0) if the Release file of the archive doesn't "
--"include a <literal>Valid-Until</literal> header.  If it does then this date "
--"is the default. The date from the Release file or the date specified by the "
--"creation time of the Release file (<literal>Date</literal> header) plus the "
--"seconds specified with this options are used to check if the validation of a "
--"file has expired by using the earlier date of the two. Archive specific "
--"settings can be made by appending the label of the archive to the option "
--"name."
++"Minimum of seconds the Release file should be considered valid after it was "
++"created (indicated by the <literal>Date</literal> header).  Use this if you "
++"need to use a seldomly updated (local) mirror of a more regular updated "
++"archive with a <literal>Valid-Until</literal> header instead of competely "
++"disabling the expiration date checking.  Archive specific settings can and "
++"should be used by appending the label of the archive to the option name."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:273
++#: apt.conf.5.xml:290
  msgid "PDiffs"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:274
++#: apt.conf.5.xml:291
  msgid ""
  "Try to download deltas called <literal>PDiffs</literal> for Packages or "
  "Sources files instead of downloading whole ones. True by default."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:277
++#: apt.conf.5.xml:294
  msgid ""
  "Two sub-options to limit the use of PDiffs are also available: With "
  "<literal>FileLimit</literal> can be specified how many PDiff files are "
  "downloaded at most to patch a file. <literal>SizeLimit</literal> on the "
--"other hand is the maximum precentage of the size of all patches compared to "
++"other hand is the maximum percentage of the size of all patches compared to "
  "the size of the targeted file. If one of these limits is exceeded the "
  "complete file is downloaded instead of the patches."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:286
++#: apt.conf.5.xml:303
  msgid "Queue-Mode"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:287
++#: apt.conf.5.xml:304
  msgid ""
  "Queuing mode; <literal>Queue-Mode</literal> can be one of <literal>host</"
  "literal> or <literal>access</literal> which determines how APT parallelizes "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:294
++#: apt.conf.5.xml:311
  msgid "Retries"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:295
++#: apt.conf.5.xml:312
  msgid ""
  "Number of retries to perform. If this is non-zero APT will retry failed "
  "files the given number of times."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:299
++#: apt.conf.5.xml:316
  msgid "Source-Symlinks"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:300
++#: apt.conf.5.xml:317
  msgid ""
  "Use symlinks for source archives. If set to true then source archives will "
  "be symlinked when possible instead of copying. True is the default."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:304 sources.list.5.xml:144
++#: apt.conf.5.xml:321 sources.list.5.xml:160
  msgid "http"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:305
++#: apt.conf.5.xml:322
  msgid ""
  "HTTP URIs; http::Proxy is the default http proxy to use. It is in the "
  "standard form of <literal>http://[[user][:pass]@]host[:port]/</literal>. Per "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:313
++#: apt.conf.5.xml:330
  msgid ""
  "Three settings are provided for cache control with HTTP/1.1 compliant proxy "
  "caches. <literal>No-Cache</literal> tells the proxy to not use its cached "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:323 apt.conf.5.xml:387
++#: apt.conf.5.xml:340 apt.conf.5.xml:404
  msgid ""
  "The option <literal>timeout</literal> sets the timeout timer used by the "
  "method, this applies to all things including connection timeout and data "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:326
++#: apt.conf.5.xml:343
  msgid ""
  "One setting is provided to control the pipeline depth in cases where the "
  "remote server is not RFC conforming or buggy (such as Squid 2.0.2).  "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:334
++#: apt.conf.5.xml:351
  msgid ""
  "The used bandwidth can be limited with <literal>Acquire::http::Dl-Limit</"
  "literal> which accepts integer values in kilobyte. The default value is 0 "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:339
++#: apt.conf.5.xml:356
  msgid ""
  "<literal>Acquire::http::User-Agent</literal> can be used to set a different "
  "User-Agent for the http download method as some proxies allow access for "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:345
++#: apt.conf.5.xml:362
  msgid "https"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:346
++#: apt.conf.5.xml:363
  msgid ""
  "HTTPS URIs. Cache-control, Timeout, AllowRedirect, Dl-Limit and proxy "
  "options are the same as for <literal>http</literal> method and will also "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:352
++#: apt.conf.5.xml:369
  msgid ""
  "<literal>CaInfo</literal> suboption specifies place of file that holds info "
  "about trusted certificates.  <literal>&lt;host&gt;::CaInfo</literal> is "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:370 sources.list.5.xml:155
++#: apt.conf.5.xml:387 sources.list.5.xml:171
  msgid "ftp"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:371
++#: apt.conf.5.xml:388
  msgid ""
  "FTP URIs; ftp::Proxy is the default ftp proxy to use. It is in the standard "
  "form of <literal>ftp://[[user][:pass]@]host[:port]/</literal>. Per host "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:390
++#: apt.conf.5.xml:407
  msgid ""
  "Several settings are provided to control passive mode. Generally it is safe "
  "to leave passive mode on, it works in nearly every environment.  However "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:397
++#: apt.conf.5.xml:414
  msgid ""
  "It is possible to proxy FTP over HTTP by setting the <envar>ftp_proxy</"
  "envar> environment variable to a http url - see the discussion of the http "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:402
++#: apt.conf.5.xml:419
  msgid ""
  "The setting <literal>ForceExtended</literal> controls the use of RFC2428 "
  "<literal>EPSV</literal> and <literal>EPRT</literal> commands. The default is "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:409 sources.list.5.xml:137
++#: apt.conf.5.xml:426 sources.list.5.xml:153
  msgid "cdrom"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><literallayout>
--#: apt.conf.5.xml:415
++#: apt.conf.5.xml:432
  #, no-wrap
  msgid "/cdrom/::Mount \"foo\";"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:410
++#: apt.conf.5.xml:427
  msgid ""
  "CDROM URIs; the only setting for CDROM URIs is the mount point, "
  "<literal>cdrom::Mount</literal> which must be the mount point for the CDROM "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:420
++#: apt.conf.5.xml:437
  msgid "gpgv"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:421
++#: apt.conf.5.xml:438
  msgid ""
  "GPGV URIs; the only option for GPGV URIs is the option to pass additional "
  "parameters to gpgv.  <literal>gpgv::Options</literal> Additional options "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:426
++#: apt.conf.5.xml:443
  msgid "CompressionTypes"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><synopsis>
--#: apt.conf.5.xml:432
++#: apt.conf.5.xml:449
  #, no-wrap
  msgid "Acquire::CompressionTypes::<replaceable>FileExtension</replaceable> \"<replaceable>Methodname</replaceable>\";"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:427
++#: apt.conf.5.xml:444
  msgid ""
  "List of compression types which are understood by the acquire methods.  "
  "Files like <filename>Packages</filename> can be available in various "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><synopsis>
--#: apt.conf.5.xml:437
++#: apt.conf.5.xml:454
  #, no-wrap
  msgid "Acquire::CompressionTypes::Order:: \"gz\";"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><synopsis>
--#: apt.conf.5.xml:440
++#: apt.conf.5.xml:457
  #, no-wrap
  msgid "Acquire::CompressionTypes::Order { \"lzma\"; \"gz\"; };"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:433
++#: apt.conf.5.xml:450
  msgid ""
  "Also the <literal>Order</literal> subgroup can be used to define in which "
  "order the acquire system will try to download the compressed files. The "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><literallayout>
--#: apt.conf.5.xml:444
++#: apt.conf.5.xml:461
  #, no-wrap
  msgid "Dir::Bin::bzip2 \"/bin/bzip2\";"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:442
++#: apt.conf.5.xml:459
  msgid ""
  "Note that at run time the <literal>Dir::Bin::<replaceable>Methodname</"
  "replaceable></literal> will be checked: If this setting exists the method "
  "will only be used if this file exists, e.g. for the bzip2 method (the "
--"inbuilt) setting is <placeholder type=\"literallayout\" id=\"0\"/> Note also "
--"that list entries specified on the command line will be added at the end of "
--"the list specified in the configuration files, but before the default "
++"inbuilt) setting is: <placeholder type=\"literallayout\" id=\"0\"/> Note "
++"also that list entries specified on the command line will be added at the "
++"end of the list specified in the configuration files, but before the default "
  "entries. To prefer a type in this case over the ones specified in the "
  "configuration files you can set the option direct - not in list style.  This "
  "will not override the defined list, it will only prefix the list with this "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:449
++#: apt.conf.5.xml:466
  msgid ""
  "The special type <literal>uncompressed</literal> can be used to give "
--"uncompressed files a preference, but note that most archives doesn't provide "
++"uncompressed files a preference, but note that most archives don't provide "
  "uncompressed files so this is mostly only useable for local mirrors."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:454
++#: apt.conf.5.xml:471
  msgid "GzipIndexes"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:456
++#: apt.conf.5.xml:473
  msgid ""
  "When downloading <literal>gzip</literal> compressed indexes (Packages, "
  "Sources, or Translations), keep them gzip compressed locally instead of "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:463
++#: apt.conf.5.xml:480
  msgid "Languages"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:464
++#: apt.conf.5.xml:481
  msgid ""
  "The Languages subsection controls which <filename>Translation</filename> "
  "files are downloaded and in which order APT tries to display the Description-"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><programlisting>
--#: apt.conf.5.xml:480
++#: apt.conf.5.xml:497
  #, no-wrap
  msgid "Acquire::Languages { \"environment\"; \"de\"; \"en\"; \"none\"; \"fr\"; };"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:470
++#: apt.conf.5.xml:487
  msgid ""
  "The default list includes \"environment\" and \"en\". "
  "\"<literal>environment</literal>\" has a special meaning here: It will be "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:245
++#: apt.conf.5.xml:253
  msgid ""
  "The <literal>Acquire</literal> group of options controls the download of "
  "packages and the URI handlers.  <placeholder type=\"variablelist\" id=\"0\"/>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><title>
--#: apt.conf.5.xml:487
++#: apt.conf.5.xml:504
  msgid "Directories"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:489
++#: apt.conf.5.xml:506
  msgid ""
  "The <literal>Dir::State</literal> section has directories that pertain to "
  "local state information. <literal>lists</literal> is the directory to place "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:496
++#: apt.conf.5.xml:513
  msgid ""
  "<literal>Dir::Cache</literal> contains locations pertaining to local cache "
  "information, such as the two package caches <literal>srcpkgcache</literal> "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:505
++#: apt.conf.5.xml:522
  msgid ""
  "<literal>Dir::Etc</literal> contains the location of configuration files, "
  "<literal>sourcelist</literal> gives the location of the sourcelist and "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:511
++#: apt.conf.5.xml:528
  msgid ""
  "The <literal>Dir::Parts</literal> setting reads in all the config fragments "
  "in lexical order from the directory specified. After this is done then the "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:515
++#: apt.conf.5.xml:532
  msgid ""
  "Binary programs are pointed to by <literal>Dir::Bin</literal>. <literal>Dir::"
  "Bin::Methods</literal> specifies the location of the method handlers and "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:523
++#: apt.conf.5.xml:540
  msgid ""
  "The configuration item <literal>RootDir</literal> has a special meaning.  If "
  "set, all paths in <literal>Dir::</literal> will be relative to "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:536
++#: apt.conf.5.xml:553
  msgid ""
  "The <literal>Ignore-Files-Silently</literal> list can be used to specify "
  "which files APT should silently ignore while parsing the files in the "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><title>
--#: apt.conf.5.xml:545
++#: apt.conf.5.xml:562
  #, fuzzy
  msgid "APT in DSelect"
  msgstr "DSelect"
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:547
++#: apt.conf.5.xml:564
  msgid ""
  "When APT is used as a &dselect; method several configuration directives "
  "control the default behaviour. These are in the <literal>DSelect</literal> "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:551
++#: apt.conf.5.xml:568
  msgid "Clean"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:552
++#: apt.conf.5.xml:569
  msgid ""
  "Cache Clean mode; this value may be one of always, prompt, auto, pre-auto "
  "and never.  always and prompt will remove all packages from the cache after "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:561
++#: apt.conf.5.xml:578
  msgid ""
  "The contents of this variable is passed to &apt-get; as command line options "
  "when it is run for the install phase."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:565
++#: apt.conf.5.xml:582
  msgid "Updateoptions"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:566
++#: apt.conf.5.xml:583
  msgid ""
  "The contents of this variable is passed to &apt-get; as command line options "
  "when it is run for the update phase."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:570
++#: apt.conf.5.xml:587
  msgid "PromptAfterUpdate"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:571
++#: apt.conf.5.xml:588
  msgid ""
  "If true the [U]pdate operation in &dselect; will always prompt to continue.  "
  "The default is to prompt only on error."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><title>
--#: apt.conf.5.xml:577
++#: apt.conf.5.xml:594
  msgid "How APT calls dpkg"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:578
++#: apt.conf.5.xml:595
  msgid ""
  "Several configuration directives control how APT invokes &dpkg;. These are "
  "in the <literal>DPkg</literal> section."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:583
++#: apt.conf.5.xml:600
  msgid ""
  "This is a list of options to pass to dpkg. The options must be specified "
  "using the list notation and each list item is passed as a single argument to "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:588
++#: apt.conf.5.xml:605
  msgid "Pre-Invoke"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:588
++#: apt.conf.5.xml:605
  msgid "Post-Invoke"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:589
++#: apt.conf.5.xml:606
  msgid ""
  "This is a list of shell commands to run before/after invoking &dpkg;.  Like "
  "<literal>options</literal> this must be specified in list notation. The "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:595
++#: apt.conf.5.xml:612
  msgid "Pre-Install-Pkgs"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:596
++#: apt.conf.5.xml:613
  msgid ""
  "This is a list of shell commands to run before invoking dpkg. Like "
  "<literal>options</literal> this must be specified in list notation. The "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:602
++#: apt.conf.5.xml:619
  msgid ""
  "Version 2 of this protocol dumps more information, including the protocol "
  "version, the APT configuration space and the packages, files and versions "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:609
++#: apt.conf.5.xml:626
  msgid "Run-Directory"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:610
++#: apt.conf.5.xml:627
  msgid ""
  "APT chdirs to this directory before invoking dpkg, the default is <filename>/"
  "</filename>."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:614
++#: apt.conf.5.xml:631
  msgid "Build-options"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:615
++#: apt.conf.5.xml:632
  msgid ""
  "These options are passed to &dpkg-buildpackage; when compiling packages, the "
  "default is to disable signing and produce all binaries."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><title>
--#: apt.conf.5.xml:620
++#: apt.conf.5.xml:637
  msgid "dpkg trigger usage (and related options)"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
--#: apt.conf.5.xml:621
++#: apt.conf.5.xml:638
  msgid ""
  "APT can call dpkg in a way so it can make aggressive use of triggers over "
  "multiple calls of dpkg. Without further options dpkg will use triggers only "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><literallayout>
--#: apt.conf.5.xml:636
++#: apt.conf.5.xml:653
  #, no-wrap
  msgid ""
  "DPkg::NoTriggers \"true\";\n"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
--#: apt.conf.5.xml:630
++#: apt.conf.5.xml:647
  msgid ""
  "Note that it is not guaranteed that APT will support these options or that "
  "these options will not cause (big) trouble in the future. If you have "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
--#: apt.conf.5.xml:642
++#: apt.conf.5.xml:659
  msgid "DPkg::NoTriggers"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:643
++#: apt.conf.5.xml:660
  msgid ""
  "Add the no triggers flag to all dpkg calls (except the ConfigurePending "
  "call).  See &dpkg; if you are interested in what this actually means. In "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
--#: apt.conf.5.xml:650
++#: apt.conf.5.xml:667
  msgid "PackageManager::Configure"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:651
++#: apt.conf.5.xml:668
  msgid ""
  "Valid values are \"<literal>all</literal>\", \"<literal>smart</literal>\" "
  "and \"<literal>no</literal>\".  \"<literal>all</literal>\" is the default "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
--#: apt.conf.5.xml:661
++#: apt.conf.5.xml:678
  msgid "DPkg::ConfigurePending"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:662
++#: apt.conf.5.xml:679
  msgid ""
  "If this option is set apt will call <command>dpkg --configure --pending</"
  "command> to let dpkg handle all required configurations and triggers. This "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
--#: apt.conf.5.xml:668
++#: apt.conf.5.xml:685
  msgid "DPkg::TriggersPending"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:669
++#: apt.conf.5.xml:686
  msgid ""
  "Useful for <literal>smart</literal> configuration as a package which has "
  "pending triggers is not considered as <literal>installed</literal> and dpkg "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
--#: apt.conf.5.xml:674
++#: apt.conf.5.xml:691
  msgid "PackageManager::UnpackAll"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:675
++#: apt.conf.5.xml:692
  msgid ""
  "As the configuration can be deferred to be done at the end by dpkg it can be "
  "tried to order the unpack series only by critical needs, e.g. by Pre-"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
--#: apt.conf.5.xml:682
++#: apt.conf.5.xml:699
  msgid "OrderList::Score::Immediate"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para><literallayout>
--#: apt.conf.5.xml:690
++#: apt.conf.5.xml:707
  #, no-wrap
  msgid ""
  "OrderList::Score {\n"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:683
++#: apt.conf.5.xml:700
  msgid ""
  "Essential packages (and there dependencies) should be configured immediately "
  "after unpacking. It will be a good idea to do this quite early in the "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><title>
--#: apt.conf.5.xml:703
++#: apt.conf.5.xml:720
  msgid "Periodic and Archives options"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:704
++#: apt.conf.5.xml:721
  msgid ""
  "<literal>APT::Periodic</literal> and <literal>APT::Archives</literal> groups "
  "of options configure behavior of apt periodic updates, which is done by "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><title>
--#: apt.conf.5.xml:712
++#: apt.conf.5.xml:729
  msgid "Debug options"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:714
++#: apt.conf.5.xml:731
  msgid ""
  "Enabling options in the <literal>Debug::</literal> section will cause "
  "debugging information to be sent to the standard error stream of the program "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
--#: apt.conf.5.xml:725
++#: apt.conf.5.xml:742
  msgid ""
  "<literal>Debug::pkgProblemResolver</literal> enables output about the "
  "decisions made by <literal>dist-upgrade, upgrade, install, remove, purge</"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
--#: apt.conf.5.xml:733
++#: apt.conf.5.xml:750
  msgid ""
  "<literal>Debug::NoLocking</literal> disables all file locking.  This can be "
  "used to run some operations (for instance, <literal>apt-get -s install</"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
--#: apt.conf.5.xml:742
++#: apt.conf.5.xml:759
  msgid ""
  "<literal>Debug::pkgDPkgPM</literal> prints out the actual command line each "
  "time that <literal>apt</literal> invokes &dpkg;."
@@@ -5371,111 -5411,111 +5475,111 @@@ msgstr "
  #.       motivating example, except I haven't a clue why you'd want
  #.       to do this. 
  #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
--#: apt.conf.5.xml:750
++#: apt.conf.5.xml:767
  msgid ""
  "<literal>Debug::IdentCdrom</literal> disables the inclusion of statfs data "
  "in CDROM IDs."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:760
++#: apt.conf.5.xml:777
  msgid "A full list of debugging options to apt follows."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:765
++#: apt.conf.5.xml:782
  msgid "<literal>Debug::Acquire::cdrom</literal>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:769
++#: apt.conf.5.xml:786
  msgid ""
  "Print information related to accessing <literal>cdrom://</literal> sources."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:776
++#: apt.conf.5.xml:793
  msgid "<literal>Debug::Acquire::ftp</literal>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:780
++#: apt.conf.5.xml:797
  msgid "Print information related to downloading packages using FTP."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:787
++#: apt.conf.5.xml:804
  msgid "<literal>Debug::Acquire::http</literal>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:791
++#: apt.conf.5.xml:808
  msgid "Print information related to downloading packages using HTTP."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:798
++#: apt.conf.5.xml:815
  msgid "<literal>Debug::Acquire::https</literal>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:802
++#: apt.conf.5.xml:819
  msgid "Print information related to downloading packages using HTTPS."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:809
++#: apt.conf.5.xml:826
  msgid "<literal>Debug::Acquire::gpgv</literal>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:813
++#: apt.conf.5.xml:830
  msgid ""
  "Print information related to verifying cryptographic signatures using "
  "<literal>gpg</literal>."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:820
++#: apt.conf.5.xml:837
  msgid "<literal>Debug::aptcdrom</literal>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:824
++#: apt.conf.5.xml:841
  msgid ""
  "Output information about the process of accessing collections of packages "
  "stored on CD-ROMs."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:831
++#: apt.conf.5.xml:848
  msgid "<literal>Debug::BuildDeps</literal>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:834
++#: apt.conf.5.xml:851
  msgid "Describes the process of resolving build-dependencies in &apt-get;."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:841
++#: apt.conf.5.xml:858
  msgid "<literal>Debug::Hashes</literal>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:844
++#: apt.conf.5.xml:861
  msgid ""
  "Output each cryptographic hash that is generated by the <literal>apt</"
  "literal> libraries."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:851
++#: apt.conf.5.xml:868
  msgid "<literal>Debug::IdentCDROM</literal>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:854
++#: apt.conf.5.xml:871
  msgid ""
  "Do not include information from <literal>statfs</literal>, namely the number "
  "of used and free blocks on the CD-ROM filesystem, when generating an ID for "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:862
++#: apt.conf.5.xml:879
  msgid "<literal>Debug::NoLocking</literal>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:865
++#: apt.conf.5.xml:882
  msgid ""
  "Disable all file locking.  For instance, this will allow two instances of "
  "<quote><literal>apt-get update</literal></quote> to run at the same time."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:873
++#: apt.conf.5.xml:890
  msgid "<literal>Debug::pkgAcquire</literal>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:877
++#: apt.conf.5.xml:894
  msgid "Log when items are added to or removed from the global download queue."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:884
++#: apt.conf.5.xml:901
  msgid "<literal>Debug::pkgAcquire::Auth</literal>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:887
++#: apt.conf.5.xml:904
  msgid ""
  "Output status messages and errors related to verifying checksums and "
  "cryptographic signatures of downloaded files."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:894
++#: apt.conf.5.xml:911
  msgid "<literal>Debug::pkgAcquire::Diffs</literal>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:897
++#: apt.conf.5.xml:914
  msgid ""
  "Output information about downloading and applying package index list diffs, "
  "and errors relating to package index list diffs."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:905
++#: apt.conf.5.xml:922
  msgid "<literal>Debug::pkgAcquire::RRed</literal>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:909
++#: apt.conf.5.xml:926
  msgid ""
  "Output information related to patching apt package lists when downloading "
  "index diffs instead of full indices."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:916
++#: apt.conf.5.xml:933
  msgid "<literal>Debug::pkgAcquire::Worker</literal>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:920
++#: apt.conf.5.xml:937
  msgid ""
  "Log all interactions with the sub-processes that actually perform downloads."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:927
++#: apt.conf.5.xml:944
  msgid "<literal>Debug::pkgAutoRemove</literal>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:931
++#: apt.conf.5.xml:948
  msgid ""
  "Log events related to the automatically-installed status of packages and to "
  "the removal of unused packages."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:938
++#: apt.conf.5.xml:955
  msgid "<literal>Debug::pkgDepCache::AutoInstall</literal>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:941
++#: apt.conf.5.xml:958
  msgid ""
  "Generate debug messages describing which packages are being automatically "
  "installed to resolve dependencies.  This corresponds to the initial auto-"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:952
++#: apt.conf.5.xml:969
  msgid "<literal>Debug::pkgDepCache::Marker</literal>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:955
++#: apt.conf.5.xml:972
  msgid ""
  "Generate debug messages describing which package is marked as keep/install/"
  "remove while the ProblemResolver does his work.  Each addition or deletion "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:974
++#: apt.conf.5.xml:991
  msgid "<literal>Debug::pkgInitConfig</literal>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:977
++#: apt.conf.5.xml:994
  msgid "Dump the default configuration to standard error on startup."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:984
++#: apt.conf.5.xml:1001
  msgid "<literal>Debug::pkgDPkgPM</literal>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:987
++#: apt.conf.5.xml:1004
  msgid ""
  "When invoking &dpkg;, output the precise command line with which it is being "
  "invoked, with arguments separated by a single space character."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:995
++#: apt.conf.5.xml:1012
  msgid "<literal>Debug::pkgDPkgProgressReporting</literal>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:998
++#: apt.conf.5.xml:1015
  msgid ""
  "Output all the data received from &dpkg; on the status file descriptor and "
  "any errors encountered while parsing it."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:1005
++#: apt.conf.5.xml:1022
  msgid "<literal>Debug::pkgOrderList</literal>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:1009
++#: apt.conf.5.xml:1026
  msgid ""
  "Generate a trace of the algorithm that decides the order in which "
  "<literal>apt</literal> should pass packages to &dpkg;."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:1017
++#: apt.conf.5.xml:1034
  msgid "<literal>Debug::pkgPackageManager</literal>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:1021
++#: apt.conf.5.xml:1038
  msgid ""
  "Output status messages tracing the steps performed when invoking &dpkg;."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:1028
++#: apt.conf.5.xml:1045
  msgid "<literal>Debug::pkgPolicy</literal>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:1032
++#: apt.conf.5.xml:1049
  msgid "Output the priority of each package list on startup."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:1038
++#: apt.conf.5.xml:1055
  msgid "<literal>Debug::pkgProblemResolver</literal>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:1042
++#: apt.conf.5.xml:1059
  msgid ""
  "Trace the execution of the dependency resolver (this applies only to what "
  "happens when a complex dependency problem is encountered)."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:1050
++#: apt.conf.5.xml:1067
  msgid "<literal>Debug::pkgProblemResolver::ShowScores</literal>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:1053
++#: apt.conf.5.xml:1070
  msgid ""
  "Display a list of all installed packages with their calculated score used by "
  "the pkgProblemResolver. The description of the package is the same as "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:1061
++#: apt.conf.5.xml:1078
  msgid "<literal>Debug::sourceList</literal>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:1065
++#: apt.conf.5.xml:1082
  msgid ""
  "Print information about the vendors read from <filename>/etc/apt/vendors."
  "list</filename>."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:1088
++#: apt.conf.5.xml:1105
  msgid ""
  "&configureindex; is a configuration file showing example values for all "
  "possible options."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist>
--#: apt.conf.5.xml:1095
++#: apt.conf.5.xml:1112
  msgid "&file-aptconf;"
  msgstr ""
  
  #.  ? reading apt.conf 
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:1100
++#: apt.conf.5.xml:1117
  msgid "&apt-cache;, &apt-config;, &apt-preferences;."
  msgstr ""
  
@@@ -5790,8 -5830,8 +5894,8 @@@ msgstr "
  msgid ""
  "Note that the files in the <filename>/etc/apt/preferences.d</filename> "
  "directory are parsed in alphanumeric ascending order and need to obey the "
--"following naming convention: The files have no or \"<literal>pref</literal>"
--"\" as filename extension and which only contain alphanumeric, hyphen (-), "
++"following naming convention: The files have either no or \"<literal>pref</"
++"literal>\" as filename extension and only contain alphanumeric, hyphen (-), "
  "underscore (_) and period (.) characters.  Otherwise APT will print a notice "
  "that it has ignored a file if the file doesn't match a pattern in the "
  "<literal>Dir::Ignore-Files-Silently</literal> configuration list - in this "
@@@ -6109,82 -6149,133 +6213,133 @@@ msgid "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><title>
- #: apt_preferences.5.xml:263
+ #: apt_preferences.5.xml:262
+ msgid "Regular expressions and glob() syntax"
+ msgstr ""
+ #. type: Content of: <refentry><refsect1><refsect2><para>
+ #: apt_preferences.5.xml:264
+ msgid ""
+ "APT also supports pinning by glob() expressions and regular expressions "
+ "surrounded by /. For example, the following example assigns the priority 500 "
+ "to all packages from experimental where the name starts with gnome (as a glob"
 -"()-like expression or contains the word kde (as a POSIX extended regular "
++"()-like expression) or contains the word kde (as a POSIX extended regular "
+ "expression surrounded by slashes)."
+ msgstr ""
+ #. type: Content of: <refentry><refsect1><refsect2><programlisting>
+ #: apt_preferences.5.xml:273
+ #, no-wrap
+ msgid ""
+ "Package: gnome* /kde/\n"
+ "Pin: release n=experimental\n"
+ "Pin-Priority: 500\n"
+ msgstr ""
+ #. type: Content of: <refentry><refsect1><refsect2><para>
+ #: apt_preferences.5.xml:279
+ msgid ""
+ "The rule for those expressions is that they can occur anywhere where a "
 -"string can occur. Those, the following pin assigns the priority 990 to all "
++"string can occur. Thus, the following pin assigns the priority 990 to all "
+ "packages from a release starting with karmic."
+ msgstr ""
+ #. type: Content of: <refentry><refsect1><refsect2><programlisting>
+ #: apt_preferences.5.xml:285
+ #, no-wrap
+ msgid ""
+ "Package: *\n"
+ "Pin: release n=karmic*\n"
+ "Pin-Priority: 990\n"
+ msgstr ""
+ #. type: Content of: <refentry><refsect1><refsect2><literal>
+ #: apt_preferences.5.xml:290
+ msgid "Package"
+ msgstr ""
+ #. type: Content of: <refentry><refsect1><refsect2><literal>
+ #: apt_preferences.5.xml:296
+ msgid "*"
+ msgstr ""
+ #. type: Content of: <refentry><refsect1><refsect2><title>
+ #: apt_preferences.5.xml:306
  msgid "How APT Interprets Priorities"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:271
+ #: apt_preferences.5.xml:314
  msgid "P &gt; 1000"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:272
+ #: apt_preferences.5.xml:315
  msgid ""
  "causes a version to be installed even if this constitutes a downgrade of the "
  "package"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:276
+ #: apt_preferences.5.xml:319
  msgid "990 &lt; P &lt;=1000"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:277
+ #: apt_preferences.5.xml:320
  msgid ""
  "causes a version to be installed even if it does not come from the target "
  "release, unless the installed version is more recent"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:282
+ #: apt_preferences.5.xml:325
  msgid "500 &lt; P &lt;=990"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:283
+ #: apt_preferences.5.xml:326
  msgid ""
  "causes a version to be installed unless there is a version available "
  "belonging to the target release or the installed version is more recent"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:288
+ #: apt_preferences.5.xml:331
  msgid "100 &lt; P &lt;=500"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:289
+ #: apt_preferences.5.xml:332
  msgid ""
  "causes a version to be installed unless there is a version available "
  "belonging to some other distribution or the installed version is more recent"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:294
+ #: apt_preferences.5.xml:337
  msgid "0 &lt; P &lt;=100"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:295
+ #: apt_preferences.5.xml:338
  msgid ""
  "causes a version to be installed only if there is no installed version of "
  "the package"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:299
+ #: apt_preferences.5.xml:342
  msgid "P &lt; 0"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:300
+ #: apt_preferences.5.xml:343
  msgid "prevents the version from being installed"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:266
+ #: apt_preferences.5.xml:309
  msgid ""
  "Priorities (P) assigned in the APT preferences file must be positive or "
  "negative integers.  They are interpreted as follows (roughly speaking): "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:305
+ #: apt_preferences.5.xml:348
  msgid ""
  "If any specific-form records match an available package version then the "
  "first such record determines the priority of the package version.  Failing "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:311
+ #: apt_preferences.5.xml:354
  msgid ""
  "For example, suppose the APT preferences file contains the three records "
  "presented earlier:"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><programlisting>
- #: apt_preferences.5.xml:315
+ #: apt_preferences.5.xml:358
  #, no-wrap
  msgid ""
  "Package: perl\n"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:328
+ #: apt_preferences.5.xml:371
  msgid "Then:"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
- #: apt_preferences.5.xml:330
+ #: apt_preferences.5.xml:373
  msgid ""
  "The most recent available version of the <literal>perl</literal> package "
  "will be installed, so long as that version's version number begins with "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
- #: apt_preferences.5.xml:335
+ #: apt_preferences.5.xml:378
  msgid ""
  "A version of any package other than <literal>perl</literal> that is "
  "available from the local system has priority over other versions, even "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
- #: apt_preferences.5.xml:339
+ #: apt_preferences.5.xml:382
  msgid ""
  "A version of a package whose origin is not the local system but some other "
  "site listed in &sources-list; and which belongs to an <literal>unstable</"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><title>
- #: apt_preferences.5.xml:349
+ #: apt_preferences.5.xml:392
  msgid "Determination of Package Version and Distribution Properties"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:351
+ #: apt_preferences.5.xml:394
  msgid ""
  "The locations listed in the &sources-list; file should provide "
  "<filename>Packages</filename> and <filename>Release</filename> files to "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:363
+ #: apt_preferences.5.xml:406
  msgid "the <literal>Package:</literal> line"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:364
+ #: apt_preferences.5.xml:407
  msgid "gives the package name"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:367 apt_preferences.5.xml:417
+ #: apt_preferences.5.xml:410 apt_preferences.5.xml:460
  msgid "the <literal>Version:</literal> line"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:368
+ #: apt_preferences.5.xml:411
  msgid "gives the version number for the named package"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:355
+ #: apt_preferences.5.xml:398
  msgid ""
  "The <filename>Packages</filename> file is normally found in the directory "
  "<filename>.../dists/<replaceable>dist-name</replaceable>/"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:384
+ #: apt_preferences.5.xml:427
  msgid "the <literal>Archive:</literal> or <literal>Suite:</literal> line"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:385
+ #: apt_preferences.5.xml:428
  msgid ""
  "names the archive to which all the packages in the directory tree belong.  "
  "For example, the line \"Archive: stable\" or \"Suite: stable\" specifies "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
- #: apt_preferences.5.xml:395
+ #: apt_preferences.5.xml:438
  #, no-wrap
  msgid "Pin: release a=stable\n"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:401
+ #: apt_preferences.5.xml:444
  msgid "the <literal>Codename:</literal> line"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:402
+ #: apt_preferences.5.xml:445
  msgid ""
  "names the codename to which all the packages in the directory tree belong.  "
  "For example, the line \"Codename: &testing-codename;\" specifies that all of "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
- #: apt_preferences.5.xml:411
+ #: apt_preferences.5.xml:454
  #, no-wrap
  msgid "Pin: release n=&testing-codename;\n"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:418
+ #: apt_preferences.5.xml:461
  msgid ""
  "names the release version.  For example, the packages in the tree might "
  "belong to Debian GNU/Linux release version 3.0.  Note that there is normally "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
- #: apt_preferences.5.xml:427
+ #: apt_preferences.5.xml:470
  #, no-wrap
  msgid ""
  "Pin: release v=3.0\n"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:436
+ #: apt_preferences.5.xml:479
  msgid "the <literal>Component:</literal> line"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:437
+ #: apt_preferences.5.xml:480
  msgid ""
  "names the licensing component associated with the packages in the directory "
  "tree of the <filename>Release</filename> file.  For example, the line "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
- #: apt_preferences.5.xml:446
+ #: apt_preferences.5.xml:489
  #, no-wrap
  msgid "Pin: release c=main\n"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:452
+ #: apt_preferences.5.xml:495
  msgid "the <literal>Origin:</literal> line"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:453
+ #: apt_preferences.5.xml:496
  msgid ""
  "names the originator of the packages in the directory tree of the "
  "<filename>Release</filename> file.  Most commonly, this is <literal>Debian</"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
- #: apt_preferences.5.xml:459
+ #: apt_preferences.5.xml:502
  #, no-wrap
  msgid "Pin: release o=Debian\n"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:465
+ #: apt_preferences.5.xml:508
  msgid "the <literal>Label:</literal> line"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:466
+ #: apt_preferences.5.xml:509
  msgid ""
  "names the label of the packages in the directory tree of the "
  "<filename>Release</filename> file.  Most commonly, this is <literal>Debian</"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
- #: apt_preferences.5.xml:472
+ #: apt_preferences.5.xml:515
  #, no-wrap
  msgid "Pin: release l=Debian\n"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:373
+ #: apt_preferences.5.xml:416
  msgid ""
  "The <filename>Release</filename> file is normally found in the directory "
  "<filename>.../dists/<replaceable>dist-name</replaceable></filename>: for "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:479
+ #: apt_preferences.5.xml:522
  msgid ""
  "All of the <filename>Packages</filename> and <filename>Release</filename> "
  "files retrieved from locations listed in the &sources-list; file are stored "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><title>
- #: apt_preferences.5.xml:492
+ #: apt_preferences.5.xml:535
  msgid "Optional Lines in an APT Preferences Record"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:494
+ #: apt_preferences.5.xml:537
  msgid ""
  "Each record in the APT preferences file can optionally begin with one or "
  "more lines beginning with the word <literal>Explanation:</literal>.  This "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><title>
- #: apt_preferences.5.xml:503
+ #: apt_preferences.5.xml:546
  msgid "Tracking Stable"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
- #: apt_preferences.5.xml:511
+ #: apt_preferences.5.xml:554
  #, no-wrap
  msgid ""
  "Explanation: Uninstall or do not install any Debian-originated\n"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:505
+ #: apt_preferences.5.xml:548
  msgid ""
  "The following APT preferences file will cause APT to assign a priority "
  "higher than the default (500) to all package versions belonging to a "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
- #: apt_preferences.5.xml:528 apt_preferences.5.xml:574
- #: apt_preferences.5.xml:632
+ #: apt_preferences.5.xml:571 apt_preferences.5.xml:617
+ #: apt_preferences.5.xml:675
  #, no-wrap
  msgid ""
  "apt-get install <replaceable>package-name</replaceable>\n"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:523
+ #: apt_preferences.5.xml:566
  msgid ""
  "With a suitable &sources-list; file and the above preferences file, any of "
  "the following commands will cause APT to upgrade to the latest "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
- #: apt_preferences.5.xml:540
+ #: apt_preferences.5.xml:583
  #, no-wrap
  msgid "apt-get install <replaceable>package</replaceable>/testing\n"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:534
+ #: apt_preferences.5.xml:577
  msgid ""
  "The following command will cause APT to upgrade the specified package to the "
  "latest version from the <literal>testing</literal> distribution; the package "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><title>
- #: apt_preferences.5.xml:546
+ #: apt_preferences.5.xml:589
  msgid "Tracking Testing or Unstable"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
- #: apt_preferences.5.xml:555
+ #: apt_preferences.5.xml:598
  #, no-wrap
  msgid ""
  "Package: *\n"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:548
+ #: apt_preferences.5.xml:591
  msgid ""
  "The following APT preferences file will cause APT to assign a high priority "
  "to package versions from the <literal>testing</literal> distribution, a "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:569
+ #: apt_preferences.5.xml:612
  msgid ""
  "With a suitable &sources-list; file and the above preferences file, any of "
  "the following commands will cause APT to upgrade to the latest "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
- #: apt_preferences.5.xml:589
+ #: apt_preferences.5.xml:632
  #, no-wrap
  msgid "apt-get install <replaceable>package</replaceable>/unstable\n"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:580
+ #: apt_preferences.5.xml:623
  msgid ""
  "The following command will cause APT to upgrade the specified package to the "
  "latest version from the <literal>unstable</literal> distribution.  "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><title>
- #: apt_preferences.5.xml:596
+ #: apt_preferences.5.xml:639
  msgid "Tracking the evolution of a codename release"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
- #: apt_preferences.5.xml:610
+ #: apt_preferences.5.xml:653
  #, no-wrap
  msgid ""
  "Explanation: Uninstall or do not install any Debian-originated package versions\n"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:598
+ #: apt_preferences.5.xml:641
  msgid ""
  "The following APT preferences file will cause APT to assign a priority "
  "higher than the default (500) to all package versions belonging to a "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:627
+ #: apt_preferences.5.xml:670
  msgid ""
  "With a suitable &sources-list; file and the above preferences file, any of "
  "the following commands will cause APT to upgrade to the latest version(s) in "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
- #: apt_preferences.5.xml:647
+ #: apt_preferences.5.xml:690
  #, no-wrap
  msgid "apt-get install <replaceable>package</replaceable>/sid\n"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:638
+ #: apt_preferences.5.xml:681
  msgid ""
  "The following command will cause APT to upgrade the specified package to the "
  "latest version from the <literal>sid</literal> distribution.  Thereafter, "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist>
- #: apt_preferences.5.xml:656
+ #: apt_preferences.5.xml:699
  msgid "&file-preferences;"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
- #: apt_preferences.5.xml:662
+ #: apt_preferences.5.xml:705
  msgid "&apt-get; &apt-cache; &apt-conf; &sources-list;"
  msgstr ""
  
@@@ -6750,7 -6841,7 +6905,7 @@@ msgstr "
  #. type: Content of: <refentry><refsect1><literallayout>
  #: sources.list.5.xml:81
  #, no-wrap
--msgid "deb uri distribution [component1] [component2] [...]"
++msgid "deb [ options ] uri distribution [component1] [component2] [...]"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
@@@ -6795,6 -6886,6 +6950,38 @@@ msgstr "
  #. type: Content of: <refentry><refsect1><para>
  #: sources.list.5.xml:112
  msgid ""
++"<literal>options</literal> is always optional and needs to be surounded by "
++"square brackets. It can consist of multiple settings in the form "
++"<literal><replaceable>setting</replaceable>=<replaceable>value</"
++"replaceable></literal>.  Multiple settings are separated by spaces. The "
++"following settings are supported by APT, note through that unsupported "
++"settings will be ignored silently:"
++msgstr ""
++
++#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
++#: sources.list.5.xml:117
++msgid ""
++"<literal>arch=<replaceable>arch1</replaceable>,<replaceable>arch2</"
++"replaceable>,…</literal> can be used to specify for which architectures "
++"packages information should be downloaded. If this option is not set all "
++"architectures defined by the <literal>APT::Architectures</literal> option "
++"will be downloaded."
++msgstr ""
++
++#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
++#: sources.list.5.xml:121
++msgid ""
++"<literal>trusted=yes</literal> can be set to indicate that packages from "
++"this source are always authenificated even if the <filename>Release</"
++"filename> file is not signed or the signature can't be checked. This "
++"disables parts of &apt-secure; and should therefore only be used in a local "
++"and trusted context. <literal>trusted=no</literal> is the opposite which "
++"handles even correctly authenificated sources as not authenificated."
++msgstr ""
++
++#. type: Content of: <refentry><refsect1><para>
++#: sources.list.5.xml:128
++msgid ""
  "It is important to list sources in order of preference, with the most "
  "preferred source listed first. Typically this will result in sorting by "
  "speed from fastest to slowest (CD-ROM followed by hosts on a local network, "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: sources.list.5.xml:117
++#: sources.list.5.xml:133
  msgid "Some examples:"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><literallayout>
--#: sources.list.5.xml:119
++#: sources.list.5.xml:135
  #, no-wrap
  msgid ""
  "deb http://ftp.debian.org/debian &stable-codename; main contrib non-free\n"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><title>
--#: sources.list.5.xml:125
++#: sources.list.5.xml:141
  msgid "URI specification"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: sources.list.5.xml:130
++#: sources.list.5.xml:146
  msgid "file"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: sources.list.5.xml:132
++#: sources.list.5.xml:148
  msgid ""
  "The file scheme allows an arbitrary directory in the file system to be "
  "considered an archive. This is useful for NFS mounts and local mirrors or "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: sources.list.5.xml:139
++#: sources.list.5.xml:155
  msgid ""
  "The cdrom scheme allows APT to use a local CDROM drive with media swapping. "
  "Use the &apt-cdrom; program to create cdrom entries in the source list."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: sources.list.5.xml:146
++#: sources.list.5.xml:162
  msgid ""
  "The http scheme specifies an HTTP server for the archive. If an environment "
  "variable <envar>http_proxy</envar> is set with the format http://server:"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: sources.list.5.xml:157
++#: sources.list.5.xml:173
  msgid ""
  "The ftp scheme specifies an FTP server for the archive. APT's FTP behavior "
  "is highly configurable; for more information see the &apt-conf; manual page. "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: sources.list.5.xml:166
++#: sources.list.5.xml:182
  msgid "copy"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: sources.list.5.xml:168
++#: sources.list.5.xml:184
  msgid ""
  "The copy scheme is identical to the file scheme except that packages are "
  "copied into the cache directory instead of used directly at their location.  "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: sources.list.5.xml:173
++#: sources.list.5.xml:189
  msgid "rsh"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: sources.list.5.xml:173
++#: sources.list.5.xml:189
  msgid "ssh"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: sources.list.5.xml:175
++#: sources.list.5.xml:191
  msgid ""
  "The rsh/ssh method invokes rsh/ssh to connect to a remote host as a given "
  "user and access the files. It is a good idea to do prior arrangements with "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: sources.list.5.xml:183
++#: sources.list.5.xml:199
  msgid "more recognizable URI types"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: sources.list.5.xml:185
++#: sources.list.5.xml:201
  msgid ""
  "APT can be extended with more methods shipped in other optional packages "
  "which should follow the nameing scheme <literal>apt-transport-"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: sources.list.5.xml:127
++#: sources.list.5.xml:143
  msgid ""
  "The currently recognized URI types are cdrom, file, http, ftp, copy, ssh, "
  "rsh.  <placeholder type=\"variablelist\" id=\"0\"/>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: sources.list.5.xml:199
++#: sources.list.5.xml:215
  msgid ""
  "Uses the archive stored locally (or NFS mounted) at /home/jason/debian for "
  "stable/main, stable/contrib, and stable/non-free."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><literallayout>
--#: sources.list.5.xml:201
++#: sources.list.5.xml:217
  #, no-wrap
  msgid "deb file:/home/jason/debian stable main contrib non-free"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: sources.list.5.xml:203
++#: sources.list.5.xml:219
  msgid "As above, except this uses the unstable (development) distribution."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><literallayout>
--#: sources.list.5.xml:204
++#: sources.list.5.xml:220
  #, no-wrap
  msgid "deb file:/home/jason/debian unstable main contrib non-free"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: sources.list.5.xml:206
++#: sources.list.5.xml:222
  msgid "Source line for the above"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><literallayout>
--#: sources.list.5.xml:207
++#: sources.list.5.xml:223
  #, no-wrap
  msgid "deb-src file:/home/jason/debian unstable main contrib non-free"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: sources.list.5.xml:209
++#: sources.list.5.xml:225
++msgid ""
++"The first line gets package information for the architectures in "
++"<literal>APT::Architectures</literal> while the second always retrieves "
++"<literal>amd64</literal> and <literal>armel</literal>."
++msgstr ""
++
++#. type: Content of: <refentry><refsect1><literallayout>
++#: sources.list.5.xml:227
++#, no-wrap
++msgid ""
++"deb http://ftp.debian.org/debian &stable-codename; main\n"
++"deb [ arch=amd64,armel ] http://ftp.debian.org/debian &stable-codename; main"
++msgstr ""
++
++#. type: Content of: <refentry><refsect1><para>
++#: sources.list.5.xml:230
  msgid ""
  "Uses HTTP to access the archive at archive.debian.org, and uses only the "
  "hamm/main area."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><literallayout>
--#: sources.list.5.xml:211
++#: sources.list.5.xml:232
  #, no-wrap
  msgid "deb http://archive.debian.org/debian-archive hamm main"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: sources.list.5.xml:213
++#: sources.list.5.xml:234
  msgid ""
  "Uses FTP to access the archive at ftp.debian.org, under the debian "
  "directory, and uses only the &stable-codename;/contrib area."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><literallayout>
--#: sources.list.5.xml:215
++#: sources.list.5.xml:236
  #, no-wrap
  msgid "deb ftp://ftp.debian.org/debian &stable-codename; contrib"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: sources.list.5.xml:217
++#: sources.list.5.xml:238
  msgid ""
  "Uses FTP to access the archive at ftp.debian.org, under the debian "
  "directory, and uses only the unstable/contrib area. If this line appears as "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><literallayout>
--#: sources.list.5.xml:221
++#: sources.list.5.xml:242
  #, no-wrap
  msgid "deb ftp://ftp.debian.org/debian unstable contrib"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><literallayout>
--#: sources.list.5.xml:230
++#: sources.list.5.xml:251
  #, no-wrap
  msgid "deb http://ftp.tlh.debian.org/universe unstable/binary-$(ARCH)/"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: sources.list.5.xml:223
++#: sources.list.5.xml:244
  msgid ""
  "Uses HTTP to access the archive at ftp.tlh.debian.org, under the universe "
  "directory, and uses only files found under <filename>unstable/binary-i386</"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: sources.list.5.xml:235
++#: sources.list.5.xml:256
  msgid "&apt-cache; &apt-conf;"
  msgstr ""
  
diff --combined doc/po/ja.po
index d0d2ef2758e62e3bcc5d14a12e9f40078523b2c0,4b08de7dfa1529b33258215bb2612c2712d8d64b..4152e01f373e636d38f120d61ab80166b4597861
@@@ -7,7 -7,7 +7,7 @@@
  msgid ""
  msgstr ""
  "Project-Id-Version: apt 0.7.25.3\n"
- "POT-Creation-Date: 2011-04-05 10:22+0300\n"
 -"POT-Creation-Date: 2011-06-08 16:54+0300\n"
++"POT-Creation-Date: 2011-11-10 16:42+0100\n"
  "PO-Revision-Date: 2010-09-07 07:38+0900\n"
  "Last-Translator: KURASAWA Nozomu <nabetaro@caldron.jp>\n"
  "Language-Team: Debian Japanese List <debian-japanese@lists.debian.org>\n"
@@@ -791,8 -791,8 +791,8 @@@ msgstr "
  # type: Content of: <refentry><refsect1><title>
  #. type: Content of: <refentry><refsect1><title>
  #: apt-cache.8.xml:64 apt-cdrom.8.xml:50 apt-config.8.xml:50
--#: apt-extracttemplates.1.xml:46 apt-ftparchive.1.xml:59 apt-get.8.xml:114
- #: apt-key.8.xml:38 apt-mark.8.xml:55 apt-secure.8.xml:43
++#: apt-extracttemplates.1.xml:46 apt-ftparchive.1.xml:59 apt-get.8.xml:121
+ #: apt-key.8.xml:38 apt-mark.8.xml:56 apt-secure.8.xml:43
  #: apt-sortpkgs.1.xml:47 apt.conf.5.xml:42 apt_preferences.5.xml:36
  #: sources.list.5.xml:36
  msgid "Description"
@@@ -814,7 -814,7 +814,7 @@@ msgstr "
  
  # type: Content of: <refentry><refsect1><para>
  #. type: Content of: <refentry><refsect1><para>
--#: apt-cache.8.xml:70 apt-get.8.xml:120
++#: apt-cache.8.xml:70 apt-get.8.xml:127
  msgid ""
  "Unless the <option>-h</option>, or <option>--help</option> option is given, "
  "one of the commands below must be present."
@@@ -1329,8 -1329,8 +1329,8 @@@ msgstr "
  # type: Content of: <refentry><refsect1><title>
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
  #: apt-cache.8.xml:278 apt-config.8.xml:96 apt-extracttemplates.1.xml:59
- #: apt-ftparchive.1.xml:525 apt-get.8.xml:331 apt-mark.8.xml:92
 -#: apt-ftparchive.1.xml:525 apt-get.8.xml:331 apt-mark.8.xml:126
--#: apt-sortpkgs.1.xml:57 apt.conf.5.xml:560 apt.conf.5.xml:582
++#: apt-ftparchive.1.xml:525 apt-get.8.xml:342 apt-mark.8.xml:126
++#: apt-sortpkgs.1.xml:57 apt.conf.5.xml:577 apt.conf.5.xml:599
  msgid "options"
  msgstr "オプション"
  
@@@ -1357,7 -1357,7 +1357,7 @@@ msgstr "
  "pkgcache</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-cache.8.xml:288 apt-ftparchive.1.xml:571 apt-get.8.xml:393
++#: apt-cache.8.xml:288 apt-ftparchive.1.xml:572 apt-get.8.xml:404
  #: apt-sortpkgs.1.xml:61
  msgid "<option>-s</option>"
  msgstr "<option>-s</option>"
@@@ -1384,12 -1384,12 +1384,12 @@@ msgstr "
  "<literal>Dir::Cache::srcpkgcache</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-cache.8.xml:296 apt-ftparchive.1.xml:545 apt-get.8.xml:383
++#: apt-cache.8.xml:296 apt-ftparchive.1.xml:546 apt-get.8.xml:394
  msgid "<option>-q</option>"
  msgstr "<option>-q</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-cache.8.xml:296 apt-ftparchive.1.xml:545 apt-get.8.xml:383
++#: apt-cache.8.xml:296 apt-ftparchive.1.xml:546 apt-get.8.xml:394
  msgid "<option>--quiet</option>"
  msgstr "<option>--quiet</option>"
  
@@@ -1475,7 -1475,7 +1475,7 @@@ msgstr "<option>--no-enhances</option>
  #, fuzzy
  msgid ""
  "Per default the <literal>depends</literal> and <literal>rdepends</literal> "
--"print all dependencies. This can be twicked with these flags which will omit "
++"print all dependencies. This can be tweaked with these flags which will omit "
  "the specified dependency type.  Configuration Item: <literal>APT::Cache::"
  "Show<replaceable>DependencyType</replaceable></literal> e.g. <literal>APT::"
  "Cache::ShowRecommends</literal>."
@@@ -1485,7 -1485,7 +1485,7 @@@ msgstr "
  "RecurseDepends</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-cache.8.xml:323 apt-cdrom.8.xml:124 apt-get.8.xml:350
++#: apt-cache.8.xml:323 apt-cdrom.8.xml:124 apt-get.8.xml:361
  msgid "<option>-f</option>"
  msgstr "<option>-f</option>"
  
@@@ -1505,7 -1505,7 +1505,8 @@@ msgstr "
  "ShowFull</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-cache.8.xml:328 apt-cdrom.8.xml:134 apt-ftparchive.1.xml:583
++#: apt-cache.8.xml:328 apt-cdrom.8.xml:134 apt-ftparchive.1.xml:584
++#: apt-get.8.xml:452
  msgid "<option>-a</option>"
  msgstr "<option>-a</option>"
  
@@@ -1627,15 -1627,15 +1628,15 @@@ msgstr "
  # type: Content of: <refentry><refsect1><para>
  #. type: Content of: <refentry><refsect1><variablelist>
  #: apt-cache.8.xml:367 apt-cdrom.8.xml:153 apt-config.8.xml:101
--#: apt-extracttemplates.1.xml:70 apt-ftparchive.1.xml:611 apt-get.8.xml:570
- #: apt-sortpkgs.1.xml:67
++#: apt-extracttemplates.1.xml:70 apt-ftparchive.1.xml:612 apt-get.8.xml:596
+ #: apt-mark.8.xml:140 apt-sortpkgs.1.xml:67
  msgid "&apt-commonoptions;"
  msgstr "&apt-commonoptions;"
  
  # type: Content of: <refentry><refsect1><title>
  #. type: Content of: <refentry><refsect1><title>
- #: apt-cache.8.xml:372 apt-get.8.xml:575 apt-key.8.xml:156 apt-mark.8.xml:125
- #: apt.conf.5.xml:1093 apt_preferences.5.xml:654
 -#: apt-cache.8.xml:372 apt-get.8.xml:575 apt-key.8.xml:172 apt-mark.8.xml:144
 -#: apt.conf.5.xml:1093 apt_preferences.5.xml:697
++#: apt-cache.8.xml:372 apt-get.8.xml:601 apt-key.8.xml:175 apt-mark.8.xml:144
++#: apt.conf.5.xml:1110 apt_preferences.5.xml:697
  msgid "Files"
  msgstr "ファイル"
  
@@@ -1647,10 -1647,10 +1648,10 @@@ msgstr "&file-sourceslist; &file-statel
  # type: Content of: <refentry><refsect1><title>
  #. type: Content of: <refentry><refsect1><title>
  #: apt-cache.8.xml:379 apt-cdrom.8.xml:158 apt-config.8.xml:106
--#: apt-extracttemplates.1.xml:77 apt-ftparchive.1.xml:627 apt-get.8.xml:585
- #: apt-key.8.xml:177 apt-mark.8.xml:131 apt-secure.8.xml:185
- #: apt-sortpkgs.1.xml:72 apt.conf.5.xml:1099 apt_preferences.5.xml:661
 -#: apt-key.8.xml:193 apt-mark.8.xml:150 apt-secure.8.xml:185
 -#: apt-sortpkgs.1.xml:72 apt.conf.5.xml:1099 apt_preferences.5.xml:704
--#: sources.list.5.xml:234
++#: apt-extracttemplates.1.xml:77 apt-ftparchive.1.xml:628 apt-get.8.xml:611
++#: apt-key.8.xml:196 apt-mark.8.xml:150 apt-secure.8.xml:185
++#: apt-sortpkgs.1.xml:72 apt.conf.5.xml:1116 apt_preferences.5.xml:704
++#: sources.list.5.xml:255
  msgid "See Also"
  msgstr "関連項目"
  
@@@ -1663,8 -1663,8 +1664,8 @@@ msgstr "&apt-conf;, &sources-list;, &ap
  # type: Content of: <refentry><refsect1><title>
  #. type: Content of: <refentry><refsect1><title>
  #: apt-cache.8.xml:384 apt-cdrom.8.xml:163 apt-config.8.xml:111
--#: apt-extracttemplates.1.xml:81 apt-ftparchive.1.xml:631 apt-get.8.xml:591
- #: apt-mark.8.xml:135 apt-sortpkgs.1.xml:76
++#: apt-extracttemplates.1.xml:81 apt-ftparchive.1.xml:632 apt-get.8.xml:617
+ #: apt-mark.8.xml:154 apt-sortpkgs.1.xml:76
  msgid "Diagnostics"
  msgstr "診断メッセージ"
  
@@@ -1800,12 -1800,12 +1801,12 @@@ msgstr "
  
  # type: Content of: <refentry><refsect1><title>
  #. type: Content of: <refentry><refsect1><title>
- #: apt-cdrom.8.xml:94 apt-key.8.xml:142
 -#: apt-cdrom.8.xml:94 apt-key.8.xml:158
++#: apt-cdrom.8.xml:94 apt-key.8.xml:161
  msgid "Options"
  msgstr "オプション"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-cdrom.8.xml:98 apt-ftparchive.1.xml:539 apt-get.8.xml:345
++#: apt-cdrom.8.xml:98 apt-ftparchive.1.xml:540 apt-get.8.xml:356
  msgid "<option>-d</option>"
  msgstr "<option>-d</option>"
  
@@@ -1849,7 -1849,7 +1850,7 @@@ msgstr "
  "ます。設定項目 - <literal>APT::CDROM::Rename</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-cdrom.8.xml:116 apt-get.8.xml:364
++#: apt-cdrom.8.xml:116 apt-get.8.xml:375
  msgid "<option>-m</option>"
  msgstr "<option>-m</option>"
  
@@@ -1908,17 -1908,17 +1909,17 @@@ msgstr "
  "できます。"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-cdrom.8.xml:143 apt-get.8.xml:395
++#: apt-cdrom.8.xml:143 apt-get.8.xml:406
  msgid "<option>--just-print</option>"
  msgstr "<option>--just-print</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-cdrom.8.xml:144 apt-get.8.xml:397
++#: apt-cdrom.8.xml:144 apt-get.8.xml:408
  msgid "<option>--recon</option>"
  msgstr "<option>--recon</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-cdrom.8.xml:145 apt-get.8.xml:398
++#: apt-cdrom.8.xml:145 apt-get.8.xml:409
  msgid "<option>--no-act</option>"
  msgstr "<option>--no-act</option>"
  
@@@ -2075,7 -2075,7 +2076,7 @@@ msgstr "設å®\9aç®\87æ\89\80ã\81®å\86\85容ã\82\92表示ã
  
  # type: Content of: <refentry><refsect1><para>
  #. type: Content of: <refentry><refsect1><para>
--#: apt-config.8.xml:107 apt-extracttemplates.1.xml:78 apt-ftparchive.1.xml:628
++#: apt-config.8.xml:107 apt-extracttemplates.1.xml:78 apt-ftparchive.1.xml:629
  #: apt-sortpkgs.1.xml:73
  msgid "&apt-conf;"
  msgstr "&apt-conf;"
@@@ -2159,7 -2159,7 +2160,7 @@@ msgstr "
  "<filename>package.config.XXXX</filename> と言った形になります。"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-extracttemplates.1.xml:63 apt-get.8.xml:504
++#: apt-extracttemplates.1.xml:63 apt-get.8.xml:530
  msgid "<option>-t</option>"
  msgstr "<option>-t</option>"
  
@@@ -2439,7 -2439,7 +2440,7 @@@ msgstr "
  "のディレクトリから作成するかを指定する、柔軟な方法を提供します。"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-ftparchive.1.xml:145 apt-get.8.xml:287
++#: apt-ftparchive.1.xml:145 apt-get.8.xml:298
  msgid "clean"
  msgstr "clean"
  
@@@ -3041,8 -3041,8 +3042,8 @@@ msgstr "
  "<literal>main contrib non-free</literal>のようになります。"
  
  # type: <tag></tag>
--#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
--#: apt-ftparchive.1.xml:394
++#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
++#: apt-ftparchive.1.xml:394 apt.conf.5.xml:157
  msgid "Architectures"
  msgstr "Architectures"
  
@@@ -3308,10 -3308,10 +3309,10 @@@ msgid "
  "Configuration Items: <literal>APT::FTPArchive::<replaceable>Checksum</"
  "replaceable></literal> and <literal>APT::FTPArchive::<replaceable>Index</"
  "replaceable>::<replaceable>Checksum</replaceable></literal> where "
--"<literal>Index</literal> can be <literal>Packages</literal>, "
--"<literal>Sources</literal> or <literal>Release</literal> and "
--"<literal>Checksum</literal> can be <literal>MD5</literal>, <literal>SHA1</"
--"literal> or <literal>SHA256</literal>."
++"<literal><replaceable>Index</replaceable></literal> can be "
++"<literal>Packages</literal>, <literal>Sources</literal> or <literal>Release</"
++"literal> and <literal><replaceable>Checksum</replaceable></literal> can be "
++"<literal>MD5</literal>, <literal>SHA1</literal> or <literal>SHA256</literal>."
  msgstr ""
  "Release ファイルの追加メタデータフィールドの値は、<literal>APT::FTPArchive::"
  "Release</literal> 以下の相当する値 (例: <literal>APT::FTPArchive::Release::"
  "<literal>Components</literal>, <literal>Description</literal> です。"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-ftparchive.1.xml:539
++#: apt-ftparchive.1.xml:540
  msgid "<option>--db</option>"
  msgstr "<option>--db</option>"
  
  # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-ftparchive.1.xml:541
++#: apt-ftparchive.1.xml:542
  msgid ""
  "Use a binary caching DB. This has no effect on the generate command.  "
  "Configuration Item: <literal>APT::FTPArchive::DB</literal>."
@@@ -3338,7 -3338,7 +3339,7 @@@ msgstr "
  
  # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-ftparchive.1.xml:547
++#: apt-ftparchive.1.xml:548
  msgid ""
  "Quiet; produces output suitable for logging, omitting progress indicators.  "
  "More q's will produce more quiet up to a maximum of 2. You can also use "
@@@ -3351,13 -3351,13 +3352,13 @@@ msgstr "
  "<literal>quiet</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-ftparchive.1.xml:553
++#: apt-ftparchive.1.xml:554
  msgid "<option>--delink</option>"
  msgstr "<option>--delink</option>"
  
  # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-ftparchive.1.xml:555
++#: apt-ftparchive.1.xml:556
  msgid ""
  "Perform Delinking. If the <literal>External-Links</literal> setting is used "
  "then this option actually enables delinking of the files. It defaults to on "
@@@ -3370,13 -3370,13 +3371,13 @@@ msgstr "
  "<literal>APT::FTPArchive::DeLinkAct</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-ftparchive.1.xml:561
++#: apt-ftparchive.1.xml:562
  msgid "<option>--contents</option>"
  msgstr "<option>--contents</option>"
  
  # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-ftparchive.1.xml:563
++#: apt-ftparchive.1.xml:564
  msgid ""
  "Perform contents generation. When this option is set and package indexes are "
  "being generated with a cache DB then the file listing will also be extracted "
@@@ -3391,13 -3391,13 +3392,13 @@@ msgstr "
  "<literal>APT::FTPArchive::Contents</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-ftparchive.1.xml:571
++#: apt-ftparchive.1.xml:572
  msgid "<option>--source-override</option>"
  msgstr "<option>--source-override</option>"
  
  # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-ftparchive.1.xml:573
++#: apt-ftparchive.1.xml:574
  msgid ""
  "Select the source override file to use with the <literal>sources</literal> "
  "command.  Configuration Item: <literal>APT::FTPArchive::SourceOverride</"
@@@ -3407,13 -3407,13 +3408,13 @@@ msgstr "
  "選択します。設定項目 - <literal>APT::FTPArchive::SourceOverride</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-ftparchive.1.xml:577
++#: apt-ftparchive.1.xml:578
  msgid "<option>--readonly</option>"
  msgstr "<option>--readonly</option>"
  
  # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-ftparchive.1.xml:579
++#: apt-ftparchive.1.xml:580
  msgid ""
  "Make the caching databases read only.  Configuration Item: <literal>APT::"
  "FTPArchive::ReadOnlyDB</literal>."
@@@ -3422,13 -3422,13 +3423,13 @@@ msgstr "
  "FTPArchive::ReadOnlyDB</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-ftparchive.1.xml:583
++#: apt-ftparchive.1.xml:584
  msgid "<option>--arch</option>"
  msgstr "<option>--arch</option>"
  
  # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-ftparchive.1.xml:584
++#: apt-ftparchive.1.xml:585
  #, fuzzy
  msgid ""
  "Accept in the <literal>packages</literal> and <literal>contents</literal> "
@@@ -3442,12 -3442,12 +3443,12 @@@ msgstr "
  "literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-ftparchive.1.xml:590
++#: apt-ftparchive.1.xml:591
  msgid "<option>APT::FTPArchive::AlwaysStat</option>"
  msgstr "<option>--version</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-ftparchive.1.xml:592
++#: apt-ftparchive.1.xml:593
  msgid ""
  "&apt-ftparchive; caches as much as possible of metadata in a cachedb. If "
  "packages are recompiled and/or republished with the same version again, this "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-ftparchive.1.xml:602
++#: apt-ftparchive.1.xml:603
  msgid "<option>APT::FTPArchive::LongDescription</option>"
  msgstr "<option>APT::FTPArchive::LongDescription</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-ftparchive.1.xml:604
++#: apt-ftparchive.1.xml:605
  #, fuzzy
  msgid ""
  "This configuration option defaults to \"<literal>true</literal>\" and should "
@@@ -3482,14 -3482,14 +3483,14 @@@ msgstr "
  
  # type: Content of: <refentry><refsect1><title>
  #. type: Content of: <refentry><refsect1><title>
- #: apt-ftparchive.1.xml:616 apt.conf.5.xml:1087 apt_preferences.5.xml:501
 -#: apt-ftparchive.1.xml:616 apt.conf.5.xml:1087 apt_preferences.5.xml:544
--#: sources.list.5.xml:198
++#: apt-ftparchive.1.xml:617 apt.conf.5.xml:1104 apt_preferences.5.xml:544
++#: sources.list.5.xml:214
  msgid "Examples"
  msgstr "サンプル"
  
  # type: Content of: <refentry><refsect1><para><programlisting>
  #. type: Content of: <refentry><refsect1><para><programlisting>
--#: apt-ftparchive.1.xml:622
++#: apt-ftparchive.1.xml:623
  #, no-wrap
  msgid "<command>apt-ftparchive</command> packages <replaceable>directory</replaceable> | <command>gzip</command> > <filename>Packages.gz</filename>\n"
  msgstr ""
  
  # type: Content of: <refentry><refsect1><para>
  #. type: Content of: <refentry><refsect1><para>
--#: apt-ftparchive.1.xml:618
++#: apt-ftparchive.1.xml:619
  msgid ""
  "To create a compressed Packages file for a directory containing binary "
  "packages (.deb): <placeholder type=\"programlisting\" id=\"0\"/>"
@@@ -3508,7 -3508,7 +3509,7 @@@ msgstr "
  
  # type: Content of: <refentry><refsect1><para>
  #. type: Content of: <refentry><refsect1><para>
--#: apt-ftparchive.1.xml:632
++#: apt-ftparchive.1.xml:633
  msgid ""
  "<command>apt-ftparchive</command> returns zero on normal operation, decimal "
  "100 on error."
@@@ -3540,15 -3540,15 +3541,45 @@@ msgstr "APT パッケージ操作ユー
  
  #. type: Content of: <refentry><refsynopsisdiv><cmdsynopsis>
  #: apt-get.8.xml:39
++#, fuzzy
++#| msgid ""
++#| "<command>apt-get</command> <arg><option>-sqdyfmubV</option></arg> <arg> "
++#| "<option>-o= <replaceable>config_string</replaceable> </option> </arg> "
++#| "<arg> <option>-c= <replaceable>config_file</replaceable> </option> </arg> "
++#| "<arg> <option>-t=</option> <arg choice='plain'> "
++#| "<replaceable>target_release</replaceable> </arg> </arg> <group choice="
++#| "\"req\"> <arg choice='plain'>update</arg> <arg choice='plain'>upgrade</"
++#| "arg> <arg choice='plain'>dselect-upgrade</arg> <arg choice='plain'>dist-"
++#| "upgrade</arg> <arg choice='plain'>install <arg choice=\"plain\" rep="
++#| "\"repeat\"><replaceable>pkg</replaceable> <arg> <group choice='req'> <arg "
++#| "choice='plain'> =<replaceable>pkg_version_number</replaceable> </arg> "
++#| "<arg choice='plain'> /<replaceable>target_release</replaceable> </arg> </"
++#| "group> </arg> </arg> </arg> <arg choice='plain'>remove <arg choice=\"plain"
++#| "\" rep=\"repeat\"><replaceable>pkg</replaceable></arg></arg> <arg "
++#| "choice='plain'>purge <arg choice=\"plain\" rep=\"repeat"
++#| "\"><replaceable>pkg</replaceable></arg></arg> <arg choice='plain'>source "
++#| "<arg choice=\"plain\" rep=\"repeat\"><replaceable>pkg</replaceable> <arg> "
++#| "<group choice='req'> <arg choice='plain'> "
++#| "=<replaceable>pkg_version_number</replaceable> </arg> <arg "
++#| "choice='plain'> /<replaceable>target_release</replaceable> </arg> </"
++#| "group> </arg> </arg> </arg> <arg choice='plain'>build-dep <arg choice="
++#| "\"plain\" rep=\"repeat\"><replaceable>pkg</replaceable></arg></arg> <arg "
++#| "choice='plain'>check</arg> <arg choice='plain'>clean</arg> <arg "
++#| "choice='plain'>autoclean</arg> <arg choice='plain'>autoremove</arg> <arg "
++#| "choice='plain'> <group choice='req'> <arg choice='plain'>-v</arg> <arg "
++#| "choice='plain'>--version</arg> </group> </arg> <arg choice='plain'> "
++#| "<group choice='req'> <arg choice='plain'>-h</arg> <arg choice='plain'>--"
++#| "help</arg> </group> </arg> </group>"
  msgid ""
  "<command>apt-get</command> <arg><option>-sqdyfmubV</option></arg> <arg> "
  "<option>-o= <replaceable>config_string</replaceable> </option> </arg> <arg> "
  "<option>-c= <replaceable>config_file</replaceable> </option> </arg> <arg> "
  "<option>-t=</option> <arg choice='plain'> <replaceable>target_release</"
--"replaceable> </arg> </arg> <group choice=\"req\"> <arg "
--"choice='plain'>update</arg> <arg choice='plain'>upgrade</arg> <arg "
--"choice='plain'>dselect-upgrade</arg> <arg choice='plain'>dist-upgrade</arg> "
--"<arg choice='plain'>install <arg choice=\"plain\" rep=\"repeat"
++"replaceable> </arg> </arg> <arg> <option>-a=</option> <arg choice='plain'> "
++"<replaceable>default_architecture</replaceable> </arg> </arg> <group choice="
++"\"req\"> <arg choice='plain'>update</arg> <arg choice='plain'>upgrade</arg> "
++"<arg choice='plain'>dselect-upgrade</arg> <arg choice='plain'>dist-upgrade</"
++"arg> <arg choice='plain'>install <arg choice=\"plain\" rep=\"repeat"
  "\"><replaceable>pkg</replaceable> <arg> <group choice='req'> <arg "
  "choice='plain'> =<replaceable>pkg_version_number</replaceable> </arg> <arg "
  "choice='plain'> /<replaceable>target_release</replaceable> </arg> </group> </"
@@@ -3596,7 -3596,7 +3627,7 @@@ msgstr "
  "</group> </arg> </group>"
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt-get.8.xml:115
++#: apt-get.8.xml:122
  msgid ""
  "<command>apt-get</command> is the command-line tool for handling packages, "
  "and may be considered the user's \"back-end\" to other tools using the APT "
@@@ -3609,13 -3609,13 +3640,13 @@@ msgstr "
  "&wajig; などがあります。"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:124 apt-key.8.xml:127
++#: apt-get.8.xml:131 apt-key.8.xml:127
  msgid "update"
  msgstr "update"
  
  # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:125
++#: apt-get.8.xml:132
  msgid ""
  "<literal>update</literal> is used to resynchronize the package index files "
  "from their sources. The indexes of available packages are fetched from the "
@@@ -3638,13 -3638,13 +3669,13 @@@ msgstr "
  
  # type: <tag></tag>
  #. type: <tag></tag>
--#: apt-get.8.xml:136 guide.sgml:121
++#: apt-get.8.xml:143 guide.sgml:121
  msgid "upgrade"
  msgstr "upgrade"
  
  # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:137
++#: apt-get.8.xml:144
  msgid ""
  "<literal>upgrade</literal> is used to install the newest versions of all "
  "packages currently installed on the system from the sources enumerated in "
@@@ -3668,13 -3668,13 +3699,13 @@@ msgstr "
  
  # type: <tag></tag>
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:149
++#: apt-get.8.xml:156
  msgid "dselect-upgrade"
  msgstr "dselect-upgrade"
  
  # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:150
++#: apt-get.8.xml:157
  msgid ""
  "<literal>dselect-upgrade</literal> is used in conjunction with the "
  "traditional Debian packaging front-end, &dselect;. <literal>dselect-upgrade</"
@@@ -3692,13 -3692,13 +3723,13 @@@ msgstr "
  
  # type: <tag></tag>
  #. type: <tag></tag>
--#: apt-get.8.xml:159 guide.sgml:140
++#: apt-get.8.xml:166 guide.sgml:140
  msgid "dist-upgrade"
  msgstr "dist-upgrade"
  
  # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:160
++#: apt-get.8.xml:167
  msgid ""
  "<literal>dist-upgrade</literal> in addition to performing the function of "
  "<literal>upgrade</literal>, also intelligently handles changing dependencies "
@@@ -3722,13 -3722,13 +3753,13 @@@ msgstr "
  
  # type: <tag></tag>
  #. type: <tag></tag>
--#: apt-get.8.xml:172 guide.sgml:131
++#: apt-get.8.xml:179 guide.sgml:131
  msgid "install"
  msgstr "install"
  
  # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:174
++#: apt-get.8.xml:181
  msgid ""
  "<literal>install</literal> is followed by one or more packages desired for "
  "installation or upgrading.  Each package is a package name, not a fully "
@@@ -3755,7 -3755,7 +3786,7 @@@ msgstr "
  
  # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:192
++#: apt-get.8.xml:199
  msgid ""
  "A specific version of a package can be selected for installation by "
  "following the package name with an equals and the version of the package to "
@@@ -3773,7 -3773,7 +3804,7 @@@ msgstr "
  
  # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:199
++#: apt-get.8.xml:206
  msgid ""
  "Both of the version selection mechanisms can downgrade packages and must be "
  "used with care."
@@@ -3782,7 -3782,7 +3813,7 @@@ msgstr "
  "なりません。"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:202
++#: apt-get.8.xml:209
  msgid ""
  "This is also the target to use if you want to upgrade one or more already-"
  "installed packages without upgrading every package you have on your system. "
@@@ -3802,7 -3802,7 +3833,7 @@@ msgstr "
  
  # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:213
++#: apt-get.8.xml:220
  msgid ""
  "Finally, the &apt-preferences; mechanism allows you to create an alternative "
  "installation policy for individual packages."
@@@ -3812,7 -3812,7 +3843,7 @@@ msgstr "
  
  # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:217
++#: apt-get.8.xml:224
  msgid ""
  "If no package matches the given expression and the expression contains one "
  "of '.', '?' or '*' then it is assumed to be a POSIX regular expression, and "
@@@ -3829,13 -3829,13 +3860,13 @@@ msgstr "
  "ば、'^' や '$' を付けるか、もっと詳しい正規表現を指定してください。"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:226
++#: apt-get.8.xml:233
  msgid "remove"
  msgstr "remove"
  
  # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:227
++#: apt-get.8.xml:234
  msgid ""
  "<literal>remove</literal> is identical to <literal>install</literal> except "
  "that packages are removed instead of installed. Note the removing a package "
@@@ -3850,13 -3850,13 +3881,13 @@@ msgstr "
  "トールします。"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:234
++#: apt-get.8.xml:241
  msgid "purge"
  msgstr "purge"
  
  # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:235
++#: apt-get.8.xml:242
  msgid ""
  "<literal>purge</literal> is identical to <literal>remove</literal> except "
  "that packages are removed and purged (any configuration files are deleted "
@@@ -3867,13 -3867,13 +3898,13 @@@ msgstr "
  
  # type: Content of: <refentry><refnamediv><refname>
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:239
++#: apt-get.8.xml:246
  msgid "source"
  msgstr "source"
  
  # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:240
++#: apt-get.8.xml:247
  msgid ""
  "<literal>source</literal> causes <command>apt-get</command> to fetch source "
  "packages. APT will examine the available packages to decide which source "
@@@ -3892,7 -3892,7 +3923,7 @@@ msgstr "
  "literal> 構文で指定します。"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:248
++#: apt-get.8.xml:255
  msgid ""
  "Source packages are tracked separately from binary packages via <literal>deb-"
  "src</literal> type lines in the &sources-list; file. This means that you "
@@@ -3907,12 -3907,12 +3938,19 @@@ msgstr "
  "もっと適切なものを取得します。"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:255
++#: apt-get.8.xml:262
++#, fuzzy
++#| msgid ""
++#| "If the <option>--compile</option> option is specified then the package "
++#| "will be compiled to a binary .deb using <command>dpkg-buildpackage</"
++#| "command>, if <option>--download-only</option> is specified then the "
++#| "source package will not be unpacked."
  msgid ""
  "If the <option>--compile</option> option is specified then the package will "
--"be compiled to a binary .deb using <command>dpkg-buildpackage</command>, if "
--"<option>--download-only</option> is specified then the source package will "
--"not be unpacked."
++"be compiled to a binary .deb using <command>dpkg-buildpackage</command> for "
++"the architecture as defined by the <command>--host-architecture</command> "
++"option.  If <option>--download-only</option> is specified then the source "
++"package will not be unpacked."
  msgstr ""
  "<option>--compile</option> オプションを指定すると、<command>dpkg-"
  "buildpackage</command> を用いてバイナリ .deb パッケージをコンパイルします。"
  
  # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:260
++#: apt-get.8.xml:269
  msgid ""
  "A specific source version can be retrieved by postfixing the source name "
  "with an equals and then the version to fetch, similar to the mechanism used "
@@@ -3936,7 -3936,7 +3974,7 @@@ msgstr "
  
  # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:266
++#: apt-get.8.xml:275
  msgid ""
  "Note that source packages are not tracked like binary packages, they exist "
  "only in the current directory and are similar to downloading source tar "
@@@ -3946,28 -3946,28 +3984,35 @@@ msgstr "
  "展開されることに注意してください。"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:271
++#: apt-get.8.xml:280
  msgid "build-dep"
  msgstr "build-dep"
  
  # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:272
++#: apt-get.8.xml:281
++#, fuzzy
++#| msgid ""
++#| "<literal>build-dep</literal> causes apt-get to install/remove packages in "
++#| "an attempt to satisfy the build dependencies for a source package."
  msgid ""
  "<literal>build-dep</literal> causes apt-get to install/remove packages in an "
--"attempt to satisfy the build dependencies for a source package."
++"attempt to satisfy the build dependencies for a source package. By default "
++"the dependencies are satisfied to build the package nativly. If desired a "
++"host-architecture can be specified with the <option>--host-architecture</"
++"option> option instead."
  msgstr ""
  "<literal>build-dep</literal> は、ソースパッケージの構築依存関係を満たすよう"
  "に、パッケージのインストール・削除を行います。"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:276
++#: apt-get.8.xml:287
  msgid "check"
  msgstr "check"
  
  # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:277
++#: apt-get.8.xml:288
  msgid ""
  "<literal>check</literal> is a diagnostic tool; it updates the package cache "
  "and checks for broken dependencies."
@@@ -3976,20 -3976,20 +4021,20 @@@ msgstr "
  "チェックする診断ツールです。"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:281
++#: apt-get.8.xml:292
  msgid "download"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:282
++#: apt-get.8.xml:293
  msgid ""
  "<literal>download</literal> will download the given binary package into the "
--"current directoy."
++"current directory."
  msgstr ""
  
  # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:288
++#: apt-get.8.xml:299
  msgid ""
  "<literal>clean</literal> clears out the local repository of retrieved "
  "package files. It removes everything but the lock file from "
@@@ -4007,13 -4007,13 +4052,13 @@@ msgstr "
  "<literal>apt-get clean</literal> を実行したくなるでしょう。"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:297
++#: apt-get.8.xml:308
  msgid "autoclean"
  msgstr "autoclean"
  
  # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:298
++#: apt-get.8.xml:309
  msgid ""
  "Like <literal>clean</literal>, <literal>autoclean</literal> clears out the "
  "local repository of retrieved package files. The difference is that it only "
@@@ -4032,28 -4032,28 +4077,33 @@@ msgstr "
  "防げます。"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:307
++#: apt-get.8.xml:318
  msgid "autoremove"
  msgstr "autoremove"
  
  # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:308
++#: apt-get.8.xml:319
++#, fuzzy
++#| msgid ""
++#| "<literal>autoremove</literal> is used to remove packages that were "
++#| "automatically installed to satisfy dependencies for some package and that "
++#| "are no more needed."
  msgid ""
  "<literal>autoremove</literal> is used to remove packages that were "
--"automatically installed to satisfy dependencies for some package and that "
--"are no more needed."
++"automatically installed to satisfy dependencies for other packages and are "
++"now no longer needed."
  msgstr ""
  "<literal>autoremove</literal> は、依存関係を満たすために自動的にインストール"
  "され、もう必要なくなったパッケージを削除するのに使用します。"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:312
++#: apt-get.8.xml:323
  msgid "changelog"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:313
++#: apt-get.8.xml:324
  msgid ""
  "<literal>changelog</literal> downloads a package changelog and displays it "
  "through <command>sensible-pager</command>. The server name and base "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:335
++#: apt-get.8.xml:346
  msgid "<option>--no-install-recommends</option>"
  msgstr "<option>--no-install-recommends</option>"
  
  # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:336
++#: apt-get.8.xml:347
  msgid ""
  "Do not consider recommended packages as a dependency for installing.  "
  "Configuration Item: <literal>APT::Install-Recommends</literal>."
@@@ -4081,7 -4081,7 +4131,7 @@@ msgstr "
  "<literal>APT::Install-Recommends</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:340
++#: apt-get.8.xml:351
  #, fuzzy
  #| msgid "<option>--no-suggests</option>"
  msgid "<option>--install-suggests</option>"
@@@ -4089,7 -4089,7 +4139,7 @@@ msgstr "<option>--no-suggests</option>
  
  # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:341
++#: apt-get.8.xml:352
  #, fuzzy
  #| msgid ""
  #| "Do not consider recommended packages as a dependency for installing.  "
@@@ -4102,13 -4102,13 +4152,13 @@@ msgstr "
  "<literal>APT::Install-Recommends</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:345
++#: apt-get.8.xml:356
  msgid "<option>--download-only</option>"
  msgstr "<option>--download-only</option>"
  
  # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:346
++#: apt-get.8.xml:357
  msgid ""
  "Download only; package files are only retrieved, not unpacked or installed.  "
  "Configuration Item: <literal>APT::Get::Download-Only</literal>."
@@@ -4117,13 -4117,13 +4167,13 @@@ msgstr "
  "いません。設定項目 - <literal>APT::Get::Download-Only</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:350
++#: apt-get.8.xml:361
  msgid "<option>--fix-broken</option>"
  msgstr "<option>--fix-broken</option>"
  
  # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:351
++#: apt-get.8.xml:362
  msgid ""
  "Fix; attempt to correct a system with broken dependencies in place. This "
  "option, when used with install/remove, can omit any packages to permit APT "
@@@ -4149,18 -4149,18 +4199,18 @@@ msgstr "
  "<literal>APT::Get::Fix-Broken</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:364
++#: apt-get.8.xml:375
  msgid "<option>--ignore-missing</option>"
  msgstr "<option>--ignore-missing</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:365
++#: apt-get.8.xml:376
  msgid "<option>--fix-missing</option>"
  msgstr "<option>--fix-missing</option>"
  
  # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:366
++#: apt-get.8.xml:377
  msgid ""
  "Ignore missing packages; If packages cannot be retrieved or fail the "
  "integrity check after retrieval (corrupted package files), hold back those "
@@@ -4179,13 -4179,13 +4229,13 @@@ msgstr "
  "Get::Fix-Missing</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:376
++#: apt-get.8.xml:387
  msgid "<option>--no-download</option>"
  msgstr "<option>--no-download</option>"
  
  # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:377
++#: apt-get.8.xml:388
  msgid ""
  "Disables downloading of packages. This is best used with <option>--ignore-"
  "missing</option> to force APT to use only the .debs it has already "
@@@ -4197,7 -4197,7 +4247,7 @@@ msgstr "
  
  # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:384
++#: apt-get.8.xml:395
  msgid ""
  "Quiet; produces output suitable for logging, omitting progress indicators.  "
  "More q's will produce more quiet up to a maximum of 2. You can also use "
@@@ -4216,18 -4216,18 +4266,18 @@@ msgstr "
  "literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:394
++#: apt-get.8.xml:405
  msgid "<option>--simulate</option>"
  msgstr "<option>--simulate</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:396
++#: apt-get.8.xml:407
  msgid "<option>--dry-run</option>"
  msgstr "<option>--dry-run</option>"
  
  # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:399
++#: apt-get.8.xml:410
  msgid ""
  "No action; perform a simulation of events that would occur but do not "
  "actually change the system.  Configuration Item: <literal>APT::Get::"
@@@ -4237,7 -4237,7 +4287,7 @@@ msgstr "
  "行いません。設定項目 - <literal>APT::Get::Simulate</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:403
++#: apt-get.8.xml:414
  msgid ""
  "Simulation run as user will deactivate locking (<literal>Debug::NoLocking</"
  "literal>)  automatic. Also a notice will be displayed indicating that this "
@@@ -4255,7 -4255,7 +4305,7 @@@ msgstr "
  
  # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:409
++#: apt-get.8.xml:420
  msgid ""
  "Simulate prints out a series of lines each one representing a dpkg "
  "operation, Configure (Conf), Remove (Remv), Unpack (Inst). Square brackets "
@@@ -4267,23 -4267,23 +4317,23 @@@ msgstr "
  "空の角カッコは大した問題ではないことを表します。"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:416
++#: apt-get.8.xml:427
  msgid "<option>-y</option>"
  msgstr "<option>-y</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:416
++#: apt-get.8.xml:427
  msgid "<option>--yes</option>"
  msgstr "<option>--yes</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:417
++#: apt-get.8.xml:428
  msgid "<option>--assume-yes</option>"
  msgstr "<option>--assume-yes</option>"
  
  # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:418
++#: apt-get.8.xml:429
  msgid ""
  "Automatic yes to prompts; assume \"yes\" as answer to all prompts and run "
  "non-interactively. If an undesirable situation, such as changing a held "
@@@ -4297,18 -4297,18 +4347,39 @@@ msgstr "
  "定項目 - <literal>APT::Get::Assume-Yes</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:425
++#: apt-get.8.xml:436
++#, fuzzy
++#| msgid "<option>--assume-yes</option>"
++msgid "<option>--assume-no</option>"
++msgstr "<option>--assume-yes</option>"
++
++# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
++#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
++#: apt-get.8.xml:437
++#, fuzzy
++#| msgid ""
++#| "Compile source packages after downloading them.  Configuration Item: "
++#| "<literal>APT::Get::Compile</literal>."
++msgid ""
++"Automatic \"no\" to all prompts.  Configuration Item: <literal>APT::Get::"
++"Assume-No</literal>."
++msgstr ""
++"ソースパッケージをダウンロード後、コンパイルします。設定項目 - <literal>APT::"
++"Get::Compile</literal>"
++
++#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
++#: apt-get.8.xml:441
  msgid "<option>-u</option>"
  msgstr "<option>-u</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:425
++#: apt-get.8.xml:441
  msgid "<option>--show-upgraded</option>"
  msgstr "<option>--show-upgraded</option>"
  
  # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:426
++#: apt-get.8.xml:442
  msgid ""
  "Show upgraded packages; Print out a list of all packages that are to be "
  "upgraded.  Configuration Item: <literal>APT::Get::Show-Upgraded</literal>."
@@@ -4317,18 -4317,18 +4388,18 @@@ msgstr "
  "<literal>APT::Get::Show-Upgraded</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:431
++#: apt-get.8.xml:447
  msgid "<option>-V</option>"
  msgstr "<option>-V</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:431
++#: apt-get.8.xml:447
  msgid "<option>--verbose-versions</option>"
  msgstr "<option>--verbose-versions</option>"
  
  # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:432
++#: apt-get.8.xml:448
  msgid ""
  "Show full versions for upgraded and installed packages.  Configuration Item: "
  "<literal>APT::Get::Show-Versions</literal>."
@@@ -4337,23 -4337,23 +4408,41 @@@ msgstr "
  "<literal>APT::Get::Show-Versions</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:436
++#: apt-get.8.xml:453
++#, fuzzy
++#| msgid "<option>--recurse</option>"
++msgid "<option>--host-architecture</option>"
++msgstr "<option>--recurse</option>"
++
++#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
++#: apt-get.8.xml:454
++msgid ""
++"This option controls the architecture packages are built for by <command>apt-"
++"get source --compile</command> and how cross-builddependencies are "
++"satisfied. By default is not set which means that the host architecture is "
++"the same as the build architecture (which is defined by <literal>APT::"
++"Architecture</literal>)  Configuration Item: <literal>APT::Get::Host-"
++"Architecture</literal>"
++msgstr ""
++
++#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
++#: apt-get.8.xml:462
  msgid "<option>-b</option>"
  msgstr "<option>-b</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:436
++#: apt-get.8.xml:462
  msgid "<option>--compile</option>"
  msgstr "<option>--compile</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:437
++#: apt-get.8.xml:463
  msgid "<option>--build</option>"
  msgstr "<option>--build</option>"
  
  # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:438
++#: apt-get.8.xml:464
  msgid ""
  "Compile source packages after downloading them.  Configuration Item: "
  "<literal>APT::Get::Compile</literal>."
@@@ -4362,13 -4362,13 +4451,13 @@@ msgstr "
  "Get::Compile</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:442
++#: apt-get.8.xml:468
  msgid "<option>--ignore-hold</option>"
  msgstr "<option>--ignore-hold</option>"
  
  # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:443
++#: apt-get.8.xml:469
  msgid ""
  "Ignore package Holds; This causes <command>apt-get</command> to ignore a "
  "hold placed on a package. This may be useful in conjunction with "
@@@ -4381,13 -4381,13 +4470,13 @@@ msgstr "
  "Hold</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:449
++#: apt-get.8.xml:475
  msgid "<option>--no-upgrade</option>"
  msgstr "<option>--no-upgrade</option>"
  
  # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:450
++#: apt-get.8.xml:476
  msgid ""
  "Do not upgrade packages; When used in conjunction with <literal>install</"
  "literal>, <literal>no-upgrade</literal> will prevent packages on the command "
@@@ -4399,12 -4399,12 +4488,12 @@@ msgstr "
  "ある場合に更新を行いません。設定項目 - <literal>APT::Get::Upgrade</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:456
++#: apt-get.8.xml:482
  msgid "<option>--only-upgrade</option>"
  msgstr "<option>--only-upgrade</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:457
++#: apt-get.8.xml:483
  #, fuzzy
  msgid ""
  "Do not install new packages; When used in conjunction with <literal>install</"
@@@ -4417,13 -4417,13 +4506,13 @@@ msgstr "
  "ある場合に更新を行いません。設定項目 - <literal>APT::Get::Upgrade</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:463
++#: apt-get.8.xml:489
  msgid "<option>--force-yes</option>"
  msgstr "<option>--force-yes</option>"
  
  # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:464
++#: apt-get.8.xml:490
  msgid ""
  "Force yes; This is a dangerous option that will cause apt to continue "
  "without prompting if it is doing something potentially harmful. It should "
@@@ -4437,13 -4437,13 +4526,13 @@@ msgstr "
  "ねません! 設定項目 - <literal>APT::Get::force-yes</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:471
++#: apt-get.8.xml:497
  msgid "<option>--print-uris</option>"
  msgstr "<option>--print-uris</option>"
  
  # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:472
++#: apt-get.8.xml:498
  msgid ""
  "Instead of fetching the files to install their URIs are printed. Each URI "
  "will have the path, the destination file name, the size and the expected md5 "
@@@ -4464,13 -4464,13 +4553,13 @@@ msgstr "
  "Print-URIs</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:482
++#: apt-get.8.xml:508
  msgid "<option>--purge</option>"
  msgstr "<option>--purge</option>"
  
  # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:483
++#: apt-get.8.xml:509
  msgid ""
  "Use purge instead of remove for anything that would be removed.  An asterisk "
  "(\"*\") will be displayed next to packages which are scheduled to be purged. "
@@@ -4483,13 -4483,13 +4572,13 @@@ msgstr "
  "<literal>APT::Get::Purge</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:490
++#: apt-get.8.xml:516
  msgid "<option>--reinstall</option>"
  msgstr "<option>--reinstall</option>"
  
  # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:491
++#: apt-get.8.xml:517
  msgid ""
  "Re-Install packages that are already installed and at the newest version.  "
  "Configuration Item: <literal>APT::Get::ReInstall</literal>."
@@@ -4498,13 -4498,13 +4587,13 @@@ msgstr "
  "定項目 - <literal>APT::Get::ReInstall</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:495
++#: apt-get.8.xml:521
  msgid "<option>--list-cleanup</option>"
  msgstr "<option>--list-cleanup</option>"
  
  # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:496
++#: apt-get.8.xml:522
  msgid ""
  "This option defaults to on, use <literal>--no-list-cleanup</literal> to turn "
  "it off. When on <command>apt-get</command> will automatically manage the "
@@@ -4520,18 -4520,18 +4609,18 @@@ msgstr "
  "する時ぐらいでしょう。設定項目 - <literal>APT::Get::List-Cleanup</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:505
++#: apt-get.8.xml:531
  msgid "<option>--target-release</option>"
  msgstr "<option>--target-release</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:506
++#: apt-get.8.xml:532
  msgid "<option>--default-release</option>"
  msgstr "<option>--default-release</option>"
  
  # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:507
++#: apt-get.8.xml:533
  msgid ""
  "This option controls the default input to the policy engine, it creates a "
  "default pin at priority 990 using the specified release string.  This "
@@@ -4553,13 -4553,13 +4642,13 @@@ msgstr "
  "Release</literal>。&apt-preferences; のマニュアルページもご覧ください。"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:520
++#: apt-get.8.xml:546
  msgid "<option>--trivial-only</option>"
  msgstr "<option>--trivial-only</option>"
  
  # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:522
++#: apt-get.8.xml:548
  msgid ""
  "Only perform operations that are 'trivial'. Logically this can be considered "
  "related to <option>--assume-yes</option>, where <option>--assume-yes</"
@@@ -4572,13 -4572,13 +4661,13 @@@ msgstr "
  "目 - <literal>APT::Get::Trivial-Only</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:528
++#: apt-get.8.xml:554
  msgid "<option>--no-remove</option>"
  msgstr "<option>--no-remove</option>"
  
  # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:529
++#: apt-get.8.xml:555
  msgid ""
  "If any packages are to be removed apt-get immediately aborts without "
  "prompting.  Configuration Item: <literal>APT::Get::Remove</literal>."
@@@ -4587,13 -4587,13 +4676,13 @@@ msgstr "
  "項目 - <literal>APT::Get::Remove</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:534
++#: apt-get.8.xml:560
  msgid "<option>--auto-remove</option>"
  msgstr "<option>--auto-remove</option>"
  
  # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:535
++#: apt-get.8.xml:561
  msgid ""
  "If the command is either <literal>install</literal> or <literal>remove</"
  "literal>, then this option acts like running <literal>autoremove</literal> "
@@@ -4606,13 -4606,13 +4695,13 @@@ msgstr "
  "literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:541
++#: apt-get.8.xml:567
  msgid "<option>--only-source</option>"
  msgstr "<option>--only-source</option>"
  
  # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:542
++#: apt-get.8.xml:568
  msgid ""
  "Only has meaning for the <literal>source</literal> and <literal>build-dep</"
  "literal> commands.  Indicates that the given source names are not to be "
@@@ -4630,23 -4630,23 +4719,23 @@@ msgstr "
  "literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:552
++#: apt-get.8.xml:578
  msgid "<option>--diff-only</option>"
  msgstr "<option>--diff-only</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:552
++#: apt-get.8.xml:578
  msgid "<option>--dsc-only</option>"
  msgstr "<option>--dsc-only</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:552
++#: apt-get.8.xml:578
  msgid "<option>--tar-only</option>"
  msgstr "<option>--tar-only</option>"
  
  # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:553
++#: apt-get.8.xml:579
  msgid ""
  "Download only the diff, dsc, or tar file of a source archive.  Configuration "
  "Item: <literal>APT::Get::Diff-Only</literal>, <literal>APT::Get::Dsc-Only</"
@@@ -4657,13 -4657,13 +4746,13 @@@ msgstr "
  "Only</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:558
++#: apt-get.8.xml:584
  msgid "<option>--arch-only</option>"
  msgstr "<option>--arch-only</option>"
  
  # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:559
++#: apt-get.8.xml:585
  msgid ""
  "Only process architecture-dependent build-dependencies.  Configuration Item: "
  "<literal>APT::Get::Arch-Only</literal>."
@@@ -4672,13 -4672,13 +4761,13 @@@ msgstr "
  "<literal>APT::Get::Arch-Only</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:563
++#: apt-get.8.xml:589
  msgid "<option>--allow-unauthenticated</option>"
  msgstr "<option>--allow-unauthenticated</option>"
  
  # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:564
++#: apt-get.8.xml:590
  msgid ""
  "Ignore if packages can't be authenticated and don't prompt about it.  This "
  "is useful for tools like pbuilder.  Configuration Item: <literal>APT::Get::"
@@@ -4689,7 -4689,7 +4778,7 @@@ msgstr "
  "literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist>
--#: apt-get.8.xml:577
++#: apt-get.8.xml:603
  msgid ""
  "&file-sourceslist; &file-aptconf; &file-preferences; &file-cachearchives; "
  "&file-statelists;"
@@@ -4699,7 -4699,7 +4788,7 @@@ msgstr "
  
  # type: Content of: <refentry><refsect1><para>
  #. type: Content of: <refentry><refsect1><para>
--#: apt-get.8.xml:586
++#: apt-get.8.xml:612
  msgid ""
  "&apt-cache;, &apt-cdrom;, &dpkg;, &dselect;, &sources-list;, &apt-conf;, "
  "&apt-config;, &apt-secure;, The APT User's guide in &guidesdir;, &apt-"
@@@ -4711,7 -4711,7 +4800,7 @@@ msgstr "
  
  # type: Content of: <refentry><refsect1><para>
  #. type: Content of: <refentry><refsect1><para>
--#: apt-get.8.xml:592
++#: apt-get.8.xml:618
  msgid ""
  "<command>apt-get</command> returns zero on normal operation, decimal 100 on "
  "error."
@@@ -4720,22 -4720,22 +4809,22 @@@ msgstr "
  "100 を返します。"
  
  #. type: Content of: <refentry><refsect1><title>
--#: apt-get.8.xml:595
++#: apt-get.8.xml:621
  msgid "ORIGINAL AUTHORS"
  msgstr "原著者"
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt-get.8.xml:596
++#: apt-get.8.xml:622
  msgid "&apt-author.jgunthorpe;"
  msgstr "&apt-author.jgunthorpe;"
  
  #. type: Content of: <refentry><refsect1><title>
--#: apt-get.8.xml:599
++#: apt-get.8.xml:625
  msgid "CURRENT AUTHORS"
  msgstr "現著者"
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt-get.8.xml:601
++#: apt-get.8.xml:627
  msgid "&apt-author.team;"
  msgstr "&apt-author.team;"
  
@@@ -4874,18 -4874,34 +4963,36 @@@ msgstr "
  "gpg に上級オプションを渡します。adv --recv-key とすると、公開鍵をダウンロード"
  "できます。"
  
--# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #: apt-key.8.xml:131
  msgid ""
--"Update the local keyring with the keyring of Debian archive keys and removes "
--"from the keyring the archive keys which are no longer valid."
++"Update the local keyring with the archive keyring and remove from the local "
++"keyring the archive keys which are no longer valid.  The archive keyring is "
++"shipped in the <literal>archive-keyring</literal> package of your "
++"distribution, e.g. the <literal>ubuntu-archive-keyring</literal> package in "
++"Ubuntu."
+ msgstr ""
 -"Debian アーカイブキーで、ローカルキーリングを更新し、もう有効でないキーをキー"
 -"リングから削除します。"
+ #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
 -#: apt-key.8.xml:140
++#: apt-key.8.xml:141
+ #, fuzzy
+ #| msgid "update"
+ msgid "net-update"
+ msgstr "update"
+ #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
 -#: apt-key.8.xml:144
++#: apt-key.8.xml:145
+ msgid ""
 -"Update the local keyring with the keys of a key server and removes from the "
 -"keyring the archive keys which are no longer valid. This requires an "
 -"installed wget and an APT build configured to have a server to fetch from. "
 -"APT in Debian does not support this command, but Ubuntu's APT does."
++"Work similar to the <command>update</command> command above, but get the "
++"archive keyring from an URI instead and validate it against a master key.  "
++"This requires an installed &wget; and an APT build configured to have a "
++"server to fetch from and a master keyring to validate.  APT in Debian does "
++"not support this command and relies on <command>update</command> instead, "
++"but Ubuntu's APT does."
  msgstr ""
- "Debian アーカイブキーで、ローカルキーリングを更新し、もう有効でないキーをキー"
- "リングから削除します。"
  
  #. type: Content of: <refentry><refsect1><para>
- #: apt-key.8.xml:143
 -#: apt-key.8.xml:159
++#: apt-key.8.xml:162
  msgid ""
  "Note that options need to be defined before the commands described in the "
  "previous section."
@@@ -4895,12 -4911,12 +5002,12 @@@ msgstr "
  
  # type: Content of: <refentry><refsect1><refsect2><para><programlisting>
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-key.8.xml:145
 -#: apt-key.8.xml:161
++#: apt-key.8.xml:164
  msgid "--keyring <replaceable>filename</replaceable>"
  msgstr "--keyring <replaceable>filename</replaceable>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
- #: apt-key.8.xml:146
 -#: apt-key.8.xml:162
++#: apt-key.8.xml:165
  msgid ""
  "With this option it is possible to specify a specific keyring file the "
  "command should operate on. The default is that a command is executed on the "
@@@ -4916,58 -4932,62 +5023,71 @@@ msgstr "
  "加されます。"
  
  #. type: Content of: <refentry><refsect1><variablelist>
- #: apt-key.8.xml:159
 -#: apt-key.8.xml:175
++#: apt-key.8.xml:178
  msgid "&file-trustedgpg;"
  msgstr "&file-trustedgpg;"
  
  # type: Content of: <refentry><refsect1><para>
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-key.8.xml:161
 -#: apt-key.8.xml:177
++#: apt-key.8.xml:180
  msgid "<filename>/etc/apt/trustdb.gpg</filename>"
  msgstr "<filename>/etc/apt/trustdb.gpg</filename>"
  
  # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
- #: apt-key.8.xml:162
 -#: apt-key.8.xml:178
++#: apt-key.8.xml:181
  msgid "Local trust database of archive keys."
  msgstr "アーカイブキーのローカル信頼データベースです。"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-key.8.xml:165
 -#: apt-key.8.xml:181
--msgid "<filename>/usr/share/keyrings/debian-archive-keyring.gpg</filename>"
++#: apt-key.8.xml:184
++#, fuzzy
++#| msgid "<filename>/usr/share/keyrings/debian-archive-keyring.gpg</filename>"
++msgid "<filename>/usr/share/keyrings/ubuntu-archive-keyring.gpg</filename>"
  msgstr "<filename>/usr/share/keyrings/debian-archive-keyring.gpg</filename>"
  
  # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
- #: apt-key.8.xml:166
 -#: apt-key.8.xml:182
--msgid "Keyring of Debian archive trusted keys."
++#: apt-key.8.xml:185
++#, fuzzy
++#| msgid "Keyring of Debian archive trusted keys."
++msgid "Keyring of Ubuntu archive trusted keys."
  msgstr "Debian アーカイブ信頼キーのキーリングです。"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-key.8.xml:169
 -#: apt-key.8.xml:185
++#: apt-key.8.xml:188
++#, fuzzy
++#| msgid ""
++#| "<filename>/usr/share/keyrings/debian-archive-removed-keys.gpg</filename>"
  msgid ""
--"<filename>/usr/share/keyrings/debian-archive-removed-keys.gpg</filename>"
++"<filename>/usr/share/keyrings/ubuntu-archive-removed-keys.gpg</filename>"
  msgstr ""
  "<filename>/usr/share/keyrings/debian-archive-removed-keys.gpg</filename>"
  
  # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
- #: apt-key.8.xml:170
 -#: apt-key.8.xml:186
--msgid "Keyring of Debian archive removed trusted keys."
++#: apt-key.8.xml:189
++#, fuzzy
++#| msgid "Keyring of Debian archive removed trusted keys."
++msgid "Keyring of Ubuntu archive removed trusted keys."
  msgstr "削除された Debian アーカイブ信頼キーのキーリングです。"
  
  # type: Content of: <refentry><refsect1><para>
  #. type: Content of: <refentry><refsect1><para>
- #: apt-key.8.xml:179
 -#: apt-key.8.xml:195
++#: apt-key.8.xml:198
  msgid "&apt-get;, &apt-secure;"
  msgstr "&apt-get;, &apt-secure;"
  
  #.  The last update date 
  #. type: Content of: <refentry><refentryinfo>
  #: apt-mark.8.xml:16
+ #, fuzzy
+ #| msgid ""
+ #| "&apt-author.moconnor; &apt-author.team; &apt-email; &apt-product; <date>9 "
+ #| "August 2009</date>"
  msgid ""
- "&apt-author.moconnor; &apt-author.team; &apt-email; &apt-product; <date>9 "
- "August 2009</date>"
+ "&apt-author.moconnor; &apt-author.team; &apt-email; &apt-product; <date>21 "
+ "April 2011</date>"
  msgstr ""
  "&apt-author.moconnor; &apt-author.team; &apt-email; &apt-product; <date>9 "
  "August 2009</date>"
@@@ -4987,13 -5007,22 +5107,22 @@@ msgstr "ã\83\91ã\83\83ã\82±ã\83¼ã\82¸ã\81\8cè\87ªå\8b\95ç\9a\84ã\81«ã
  # type: Content of: <refentry><refsynopsisdiv><cmdsynopsis>
  #. type: Content of: <refentry><refsynopsisdiv><cmdsynopsis>
  #: apt-mark.8.xml:39
+ #, fuzzy
+ #| msgid ""
+ #| "  <command>apt-mark</command> <arg><option>-hv</option></arg> "
+ #| "<arg><option>-f=<replaceable>FILENAME</replaceable></option></arg> <group "
+ #| "choice=\"plain\"> <arg choice=\"plain\"> <group choice=\"req\"> <arg "
+ #| "choice=\"plain\">markauto</arg> <arg choice=\"plain\">unmarkauto</arg> </"
+ #| "group> <arg choice=\"plain\" rep=\"repeat\"><replaceable>package</"
+ #| "replaceable></arg> </arg> <arg choice=\"plain\">showauto</arg> </group>"
  msgid ""
  "  <command>apt-mark</command> <arg><option>-hv</option></arg> <arg><option>-"
  "f=<replaceable>FILENAME</replaceable></option></arg> <group choice=\"plain"
  "\"> <arg choice=\"plain\"> <group choice=\"req\"> <arg choice=\"plain"
- "\">markauto</arg> <arg choice=\"plain\">unmarkauto</arg> </group> <arg "
+ "\">auto</arg> <arg choice=\"plain\">manual</arg> <arg choice=\"plain"
+ "\">showauto</arg> <arg choice=\"plain\">showmanual</arg> </group> <arg "
  "choice=\"plain\" rep=\"repeat\"><replaceable>package</replaceable></arg> </"
- "arg> <arg choice=\"plain\">showauto</arg> </group>"
+ "arg> </group>"
  msgstr ""
  "  <command>apt-mark</command> <arg><option>-hv</option></arg> <arg><option>-"
  "f=<replaceable>FILENAME</replaceable></option></arg> <group choice=\"plain"
  
  # type: Content of: <refentry><refsect1><para>
  #. type: Content of: <refentry><refsect1><para>
- #: apt-mark.8.xml:56
+ #: apt-mark.8.xml:57
  msgid ""
  "<command>apt-mark</command> will change whether a package has been marked as "
  "being automatically installed."
@@@ -5014,7 -5043,7 +5143,7 @@@ msgstr "
  
  # type: Content of: <refentry><refsect1><para>
  #. type: Content of: <refentry><refsect1><para>
- #: apt-mark.8.xml:60
+ #: apt-mark.8.xml:61
  msgid ""
  "When you request that a package is installed, and as a result other packages "
  "are installed to satisfy its dependencies, the dependencies are marked as "
@@@ -5029,15 -5058,22 +5158,22 @@@ msgstr "
  "command> や <command>aptitude</command> により削除されます。"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-mark.8.xml:68
- msgid "markauto"
+ #: apt-mark.8.xml:69
+ #, fuzzy
+ #| msgid "markauto"
+ msgid "auto"
  msgstr "markauto"
  
  # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
- #: apt-mark.8.xml:69
+ #: apt-mark.8.xml:70
+ #, fuzzy
+ #| msgid ""
+ #| "<literal>markauto</literal> is used to mark a package as being "
+ #| "automatically installed, which will cause the package to be removed when "
+ #| "no more manually installed packages depend on this package."
  msgid ""
- "<literal>markauto</literal> is used to mark a package as being automatically "
+ "<literal>auto</literal> is used to mark a package as being automatically "
  "installed, which will cause the package to be removed when no more manually "
  "installed packages depend on this package."
  msgstr ""
  "なくなると、このパッケージを削除します。"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-mark.8.xml:76
- msgid "unmarkauto"
- msgstr "unmarkauto"
+ #: apt-mark.8.xml:77
+ msgid "manual"
+ msgstr ""
  
  # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
- #: apt-mark.8.xml:77
+ #: apt-mark.8.xml:78
+ #, fuzzy
+ #| msgid ""
+ #| "<literal>unmarkauto</literal> is used to mark a package as being manually "
+ #| "installed, which will prevent the package from being automatically "
+ #| "removed if no other packages depend on it."
  msgid ""
- "<literal>unmarkauto</literal> is used to mark a package as being manually "
+ "<literal>manual</literal> is used to mark a package as being manually "
  "installed, which will prevent the package from being automatically removed "
  "if no other packages depend on it."
  msgstr ""
  "ケージを自動的に削除するのを防ぎます。"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-mark.8.xml:84
+ #: apt-mark.8.xml:85
+ msgid "hold"
+ msgstr ""
+ #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
+ #: apt-mark.8.xml:86
+ msgid ""
+ "<literal>hold</literal> is used to mark a package as hold back, which will "
+ "prevent the package from being automatically installed, upgraded or "
+ "removed.  The command is only a wrapper around <command>dpkg --set-"
+ "selections</command> and the state is therefore maintained by &dpkg; and not "
+ "effected by the <option>--filename</option> option."
+ msgstr ""
+ #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
+ #: apt-mark.8.xml:95
+ msgid "unhold"
+ msgstr ""
+ # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
+ #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
+ #: apt-mark.8.xml:96
+ #, fuzzy
+ #| msgid ""
+ #| "<literal>showauto</literal> is used to print a list of automatically "
+ #| "installed packages with each package on a new line."
+ msgid ""
+ "<literal>unhold</literal> is used to cancel a previously set hold on a "
+ "package to allow all actions again."
+ msgstr ""
+ "<literal>showauto</literal> は、自動的にインストールされたパッケージを、パッ"
+ "ケージごとに改行して表示します。"
+ #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
+ #: apt-mark.8.xml:101
  msgid "showauto"
  msgstr "showauto"
  
  # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
- #: apt-mark.8.xml:85
+ #: apt-mark.8.xml:102
+ #, fuzzy
+ #| msgid ""
+ #| "<literal>showauto</literal> is used to print a list of automatically "
+ #| "installed packages with each package on a new line."
  msgid ""
  "<literal>showauto</literal> is used to print a list of automatically "
- "installed packages with each package on a new line."
+ "installed packages with each package on a new line.  All automatically "
+ "installed packages will be listed if no package is given.  If packages are "
+ "given only those which are automatically installed will be shown."
  msgstr ""
  "<literal>showauto</literal> は、自動的にインストールされたパッケージを、パッ"
  "ケージごとに改行して表示します。"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-mark.8.xml:96
+ #: apt-mark.8.xml:109
+ #, fuzzy
+ #| msgid "showauto"
+ msgid "showmanual"
+ msgstr "showauto"
+ #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
+ #: apt-mark.8.xml:110
+ msgid ""
+ "<literal>showmanual</literal> can be used in the same way as "
+ "<literal>showauto</literal> except that it will print a list of manually "
+ "installed packages instead."
+ msgstr ""
+ #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
+ #: apt-mark.8.xml:116
+ #, fuzzy
+ #| msgid "showauto"
+ msgid "showhold"
+ msgstr "showauto"
+ # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
+ #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
+ #: apt-mark.8.xml:117
+ #, fuzzy
+ #| msgid ""
+ #| "<literal>showauto</literal> is used to print a list of automatically "
+ #| "installed packages with each package on a new line."
+ msgid ""
+ "<literal>showhold</literal> is used to print a list of packages on hold in "
+ "the same way as for the other show commands."
+ msgstr ""
+ "<literal>showauto</literal> は、自動的にインストールされたパッケージを、パッ"
+ "ケージごとに改行して表示します。"
+ #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
+ #: apt-mark.8.xml:130
  msgid ""
  "<option>-f=<filename><replaceable>FILENAME</replaceable></filename></option>"
  msgstr ""
  "<option>-f=<filename><replaceable>FILENAME</replaceable></filename></option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-mark.8.xml:97
+ #: apt-mark.8.xml:131
  msgid ""
  "<option>--file=<filename><replaceable>FILENAME</replaceable></filename></"
  "option>"
@@@ -5095,7 -5212,7 +5312,7 @@@ msgstr "
  
  # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
- #: apt-mark.8.xml:100
+ #: apt-mark.8.xml:134
  msgid ""
  "Read/Write package stats from <filename><replaceable>FILENAME</replaceable></"
  "filename> instead of the default location, which is "
@@@ -5106,52 -5223,20 +5323,20 @@@ msgstr "
  "トリの <filename>extended_status</filename>) に代えて、<filename>FILENAME</"
  "filename> からパッケージの統計を読み書きします。"
  
- #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-mark.8.xml:106
- msgid "<option>-h</option>"
- msgstr "<option>-h</option>"
- #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-mark.8.xml:107
- msgid "<option>--help</option>"
- msgstr "<option>--help</option>"
- # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
- #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
- #: apt-mark.8.xml:108
- msgid "Show a short usage summary."
- msgstr "短い使用方法を表示します。"
- #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-mark.8.xml:114
- msgid "<option>-v</option>"
- msgstr "<option>-v</option>"
- #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-mark.8.xml:115
- msgid "<option>--version</option>"
- msgstr "<option>--version</option>"
- # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
- #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
- #: apt-mark.8.xml:116
- msgid "Show the program version."
- msgstr "プログラムのバージョン情報を表示します"
  #. type: Content of: <refentry><refsect1><variablelist>
- #: apt-mark.8.xml:127
+ #: apt-mark.8.xml:146
  msgid "  &file-extended_states;"
  msgstr "  &file-extended_states;"
  
  # type: Content of: <refentry><refsect1><para>
  #. type: Content of: <refentry><refsect1><para>
- #: apt-mark.8.xml:132
+ #: apt-mark.8.xml:151
  msgid "&apt-get;,&aptitude;,&apt-conf;"
  msgstr "&apt-get;,&aptitude;,&apt-conf;"
  
  # type: Content of: <refentry><refsect1><para>
  #. type: Content of: <refentry><refsect1><para>
- #: apt-mark.8.xml:136
+ #: apt-mark.8.xml:155
  msgid ""
  "<command>apt-mark</command> returns zero on normal operation, non-zero on "
  "error."
@@@ -5645,11 -5730,11 +5830,12 @@@ msgstr "<envar>APT_CONFIG</envar> ç\92°å¢
  #| "period (.) characters - otherwise they will be silently ignored."
  msgid ""
  "all files in <literal>Dir::Etc::Parts</literal> in alphanumeric ascending "
--"order which have no or \"<literal>conf</literal>\" as filename extension and "
--"which only contain alphanumeric, hyphen (-), underscore (_) and period (.) "
--"characters.  Otherwise APT will print a notice that it has ignored a file if "
--"the file doesn't match a pattern in the <literal>Dir::Ignore-Files-Silently</"
--"literal> configuration list - in this case it will be silently ignored."
++"order which have either no or \"<literal>conf</literal>\" as filename "
++"extension and which only contain alphanumeric, hyphen (-), underscore (_) "
++"and period (.) characters.  Otherwise APT will print a notice that it has "
++"ignored a file if the file doesn't match a pattern in the <literal>Dir::"
++"Ignore-Files-Silently</literal> configuration list - in this case it will be "
++"silently ignored."
  msgstr ""
  "<literal>Dir::Etc::Parts</literal> にあるすべてのファイルを英数字の昇順に。"
  "ファイル名には拡張子がないか、\"<literal>conf</literal>\" となっており、英数"
@@@ -5904,14 -5989,14 +6090,25 @@@ msgstr "
  "に使用するアーキテクチャをセットします。内部でのデフォルトは、apt をコンパイ"
  "ルしたアーキテクチャです。"
  
++#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
++#: apt.conf.5.xml:158
++msgid ""
++"All Architectures the system supports. Processors implementing the "
++"<literal>amd64</literal> are e.g. also able to execute binaries compiled for "
++"<literal>i386</literal>; This list is use when fetching files and parsing "
++"package lists. The internal default is always the native architecture "
++"(<literal>APT::Architecture</literal>)  and all foreign architectures it can "
++"retrieve by calling <command>dpkg --print-foreign-architectures</command>."
++msgstr ""
++
  # type: Content of: <refentry><refsect1><refsect2><para><programlisting>
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:157
++#: apt.conf.5.xml:165
  msgid "Default-Release"
  msgstr "Default-Release"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:158
++#: apt.conf.5.xml:166
  msgid ""
  "Default release to install packages from if more than one version available. "
  "Contains release name, codename or release version. Examples: 'stable', "
@@@ -5924,13 -6009,13 +6121,13 @@@ msgstr "
  "'4.0', '5.0*'  となります。&apt-preferences; も参照してください。"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:163
++#: apt.conf.5.xml:171
  msgid "Ignore-Hold"
  msgstr "Ignore-Hold"
  
  # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:164
++#: apt.conf.5.xml:172
  msgid ""
  "Ignore Held packages; This global option causes the problem resolver to "
  "ignore held packages in its decision making."
@@@ -5940,13 -6025,13 +6137,13 @@@ msgstr "
  
  # type: <tag></tag>
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:168
++#: apt.conf.5.xml:176
  msgid "Clean-Installed"
  msgstr "Clean-Installed"
  
  # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:169
++#: apt.conf.5.xml:177
  msgid ""
  "Defaults to on. When turned on the autoclean feature will remove any "
  "packages which can no longer be downloaded from the cache. If turned off "
@@@ -5961,12 -6046,12 +6158,12 @@@ msgstr "
  
  # type: Content of: <refentry><refnamediv><refname>
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:175
++#: apt.conf.5.xml:183
  msgid "Immediate-Configure"
  msgstr "Immediate-Configure"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:176
++#: apt.conf.5.xml:184
  msgid ""
  "Defaults to on which will cause APT to install essential and important "
  "packages as fast as possible in the install/upgrade operation. This is done "
@@@ -6022,13 -6107,13 +6219,13 @@@ msgstr "
  "レポートをおねがいします。"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:198
++#: apt.conf.5.xml:206
  msgid "Force-LoopBreak"
  msgstr "Force-LoopBreak"
  
  # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:199
++#: apt.conf.5.xml:207
  msgid ""
  "Never Enable this option unless you -really- know what you are doing. It "
  "permits APT to temporarily remove an essential package to break a Conflicts/"
@@@ -6046,12 -6131,12 +6243,12 @@@ msgstr "
  "不可欠パッケージで動作します。"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:207
++#: apt.conf.5.xml:215
  msgid "Cache-Start, Cache-Grow and Cache-Limit"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:208
++#: apt.conf.5.xml:216
  msgid ""
  "APT uses since version 0.7.26 a resizable memory mapped cache file to store "
  "the 'available' information. <literal>Cache-Start</literal> acts as a hint "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:223
++#: apt.conf.5.xml:231
  msgid "Build-Essential"
  msgstr "Build-Essential"
  
  # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:224
++#: apt.conf.5.xml:232
  msgid "Defines which package(s) are considered essential build dependencies."
  msgstr "構築依存関係で不可欠なパッケージを定義します。"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:227
++#: apt.conf.5.xml:235
  msgid "Get"
  msgstr "Get"
  
  # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:228
++#: apt.conf.5.xml:236
  msgid ""
  "The Get subsection controls the &apt-get; tool, please see its documentation "
  "for more information about the options here."
@@@ -6097,13 -6182,13 +6294,13 @@@ msgstr "
  "&apt-get; の文書を参照してください。"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:232
++#: apt.conf.5.xml:240
  msgid "Cache"
  msgstr "Cache"
  
  # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:233
++#: apt.conf.5.xml:241
  msgid ""
  "The Cache subsection controls the &apt-cache; tool, please see its "
  "documentation for more information about the options here."
@@@ -6112,13 -6197,13 +6309,13 @@@ msgstr "
  "は &apt-cache; の文書を参照してください。"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:237
++#: apt.conf.5.xml:245
  msgid "CDROM"
  msgstr "CDROM"
  
  # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:238
++#: apt.conf.5.xml:246
  msgid ""
  "The CDROM subsection controls the &apt-cdrom; tool, please see its "
  "documentation for more information about the options here."
@@@ -6128,17 -6213,17 +6325,17 @@@ msgstr "
  
  # type: Content of: <refentry><refsect1><title>
  #. type: Content of: <refentry><refsect1><title>
--#: apt.conf.5.xml:244
++#: apt.conf.5.xml:252
  msgid "The Acquire Group"
  msgstr "Acquire グループ"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:249
++#: apt.conf.5.xml:257
  msgid "Check-Valid-Until"
  msgstr "Check-Valid-Until"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:250
++#: apt.conf.5.xml:258
  msgid ""
  "Security related option defaulting to true as an expiring validation for a "
  "Release file prevents longtime replay attacks and can e.g. also help users "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:260
++#: apt.conf.5.xml:268
  msgid "Max-ValidTime"
  msgstr "Max-ValidTime"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:261
++#: apt.conf.5.xml:269
++msgid ""
++"Seconds the Release file should be considered valid after it was created "
++"(indicated by the <literal>Date</literal> header).  If the Release file "
++"itself includes a <literal>Valid-Until</literal> header the earlier date of "
++"the two is used as the expiration date.  The default value is <literal>0</"
++"literal> which stands for \"for ever\".  Archive specific settings can be "
++"made by appending the label of the archive to the option name."
++msgstr ""
++
++#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
++#: apt.conf.5.xml:279
++#, fuzzy
++#| msgid "Max-ValidTime"
++msgid "Min-ValidTime"
++msgstr "Max-ValidTime"
++
++#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
++#: apt.conf.5.xml:280
  msgid ""
--"Seconds the Release file should be considered valid after it was created. "
--"The default is \"for ever\" (0) if the Release file of the archive doesn't "
--"include a <literal>Valid-Until</literal> header.  If it does then this date "
--"is the default. The date from the Release file or the date specified by the "
--"creation time of the Release file (<literal>Date</literal> header) plus the "
--"seconds specified with this options are used to check if the validation of a "
--"file has expired by using the earlier date of the two. Archive specific "
--"settings can be made by appending the label of the archive to the option "
--"name."
++"Minimum of seconds the Release file should be considered valid after it was "
++"created (indicated by the <literal>Date</literal> header).  Use this if you "
++"need to use a seldomly updated (local) mirror of a more regular updated "
++"archive with a <literal>Valid-Until</literal> header instead of competely "
++"disabling the expiration date checking.  Archive specific settings can and "
++"should be used by appending the label of the archive to the option name."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:273
++#: apt.conf.5.xml:290
  msgid "PDiffs"
  msgstr "PDiffs"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:274
++#: apt.conf.5.xml:291
  msgid ""
  "Try to download deltas called <literal>PDiffs</literal> for Packages or "
  "Sources files instead of downloading whole ones. True by default."
@@@ -6184,12 -6269,20 +6396,20 @@@ msgstr "
  "ルトでは True です。"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:277
++#: apt.conf.5.xml:294
+ #, fuzzy
+ #| msgid ""
+ #| "Two sub-options to limit the use of PDiffs are also available: With "
+ #| "<literal>FileLimit</literal> can be specified how many PDiff files are "
+ #| "downloaded at most to patch a file. <literal>SizeLimit</literal> on the "
+ #| "other hand is the maximum percentage of the size of all patches compared "
+ #| "to the size of the targeted file. If one of these limits is exceeded the "
+ #| "complete file is downloaded instead of the patches."
  msgid ""
  "Two sub-options to limit the use of PDiffs are also available: With "
  "<literal>FileLimit</literal> can be specified how many PDiff files are "
  "downloaded at most to patch a file. <literal>SizeLimit</literal> on the "
--"other hand is the maximum precentage of the size of all patches compared to "
++"other hand is the maximum percentage of the size of all patches compared to "
  "the size of the targeted file. If one of these limits is exceeded the "
  "complete file is downloaded instead of the patches."
  msgstr ""
  "をダウンロードする代わりに、完全なファイルをダウンロードします。"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:286
++#: apt.conf.5.xml:303
  msgid "Queue-Mode"
  msgstr "Queue-Mode"
  
  # type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:287
++#: apt.conf.5.xml:304
  msgid ""
  "Queuing mode; <literal>Queue-Mode</literal> can be one of <literal>host</"
  "literal> or <literal>access</literal> which determines how APT parallelizes "
@@@ -6221,13 -6314,13 +6441,13 @@@ msgstr "
  
  # type: Content of: <refentry><refsect1><refsect2><title>
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:294
++#: apt.conf.5.xml:311
  msgid "Retries"
  msgstr "Retries"
  
  # type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:295
++#: apt.conf.5.xml:312
  msgid ""
  "Number of retries to perform. If this is non-zero APT will retry failed "
  "files the given number of times."
@@@ -6236,13 -6329,13 +6456,13 @@@ msgstr "
  "えられた回数だけリトライを行います。"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:299
++#: apt.conf.5.xml:316
  msgid "Source-Symlinks"
  msgstr "Source-Symlinks"
  
  # type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:300
++#: apt.conf.5.xml:317
  msgid ""
  "Use symlinks for source archives. If set to true then source archives will "
  "be symlinked when possible instead of copying. True is the default."
@@@ -6253,13 -6346,13 +6473,13 @@@ msgstr "
  
  # type: <tag></tag>
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:304 sources.list.5.xml:144
++#: apt.conf.5.xml:321 sources.list.5.xml:160
  msgid "http"
  msgstr "http"
  
  # type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:305
++#: apt.conf.5.xml:322
  msgid ""
  "HTTP URIs; http::Proxy is the default http proxy to use. It is in the "
  "standard form of <literal>http://[[user][:pass]@]host[:port]/</literal>. Per "
@@@ -6277,7 -6370,7 +6497,7 @@@ msgstr "
  
  # type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:313
++#: apt.conf.5.xml:330
  msgid ""
  "Three settings are provided for cache control with HTTP/1.1 compliant proxy "
  "caches. <literal>No-Cache</literal> tells the proxy to not use its cached "
@@@ -6302,7 -6395,7 +6522,7 @@@ msgstr "
  
  # type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:323 apt.conf.5.xml:387
++#: apt.conf.5.xml:340 apt.conf.5.xml:404
  msgid ""
  "The option <literal>timeout</literal> sets the timeout timer used by the "
  "method, this applies to all things including connection timeout and data "
@@@ -6314,7 -6407,7 +6534,7 @@@ msgstr "
  
  # type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:326
++#: apt.conf.5.xml:343
  msgid ""
  "One setting is provided to control the pipeline depth in cases where the "
  "remote server is not RFC conforming or buggy (such as Squid 2.0.2).  "
@@@ -6333,7 -6426,7 +6553,7 @@@ msgstr "
  "ます。"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:334
++#: apt.conf.5.xml:351
  msgid ""
  "The used bandwidth can be limited with <literal>Acquire::http::Dl-Limit</"
  "literal> which accepts integer values in kilobyte. The default value is 0 "
@@@ -6347,7 -6440,7 +6567,7 @@@ msgstr "
  "ロードしなくなることに注意してください)。"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:339
++#: apt.conf.5.xml:356
  msgid ""
  "<literal>Acquire::http::User-Agent</literal> can be used to set a different "
  "User-Agent for the http download method as some proxies allow access for "
@@@ -6359,12 -6452,12 +6579,12 @@@ msgstr "
  
  # type: <tag></tag>
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:345
++#: apt.conf.5.xml:362
  msgid "https"
  msgstr "https"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:346
++#: apt.conf.5.xml:363
  msgid ""
  "HTTPS URIs. Cache-control, Timeout, AllowRedirect, Dl-Limit and proxy "
  "options are the same as for <literal>http</literal> method and will also "
@@@ -6379,7 -6472,7 +6599,7 @@@ msgstr "
  "いません。"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:352
++#: apt.conf.5.xml:369
  msgid ""
  "<literal>CaInfo</literal> suboption specifies place of file that holds info "
  "about trusted certificates.  <literal>&lt;host&gt;::CaInfo</literal> is "
@@@ -6416,13 -6509,13 +6636,13 @@@ msgstr "
  
  # type: <tag></tag>
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:370 sources.list.5.xml:155
++#: apt.conf.5.xml:387 sources.list.5.xml:171
  msgid "ftp"
  msgstr "ftp"
  
  # type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:371
++#: apt.conf.5.xml:388
  msgid ""
  "FTP URIs; ftp::Proxy is the default ftp proxy to use. It is in the standard "
  "form of <literal>ftp://[[user][:pass]@]host[:port]/</literal>. Per host "
@@@ -6455,7 -6548,7 +6675,7 @@@ msgstr "
  
  # type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:390
++#: apt.conf.5.xml:407
  msgid ""
  "Several settings are provided to control passive mode. Generally it is safe "
  "to leave passive mode on, it works in nearly every environment.  However "
@@@ -6471,7 -6564,7 +6691,7 @@@ msgstr "
  
  # type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:397
++#: apt.conf.5.xml:414
  msgid ""
  "It is possible to proxy FTP over HTTP by setting the <envar>ftp_proxy</"
  "envar> environment variable to a http url - see the discussion of the http "
@@@ -6485,7 -6578,7 +6705,7 @@@ msgstr "
  
  # type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:402
++#: apt.conf.5.xml:419
  msgid ""
  "The setting <literal>ForceExtended</literal> controls the use of RFC2428 "
  "<literal>EPSV</literal> and <literal>EPRT</literal> commands. The default is "
@@@ -6502,19 -6595,19 +6722,19 @@@ msgstr "
  
  # type: Content of: <refentry><refnamediv><refname>
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:409 sources.list.5.xml:137
++#: apt.conf.5.xml:426 sources.list.5.xml:153
  msgid "cdrom"
  msgstr "cdrom"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><literallayout>
--#: apt.conf.5.xml:415
++#: apt.conf.5.xml:432
  #, no-wrap
  msgid "/cdrom/::Mount \"foo\";"
  msgstr "/cdrom/::Mount \"foo\";"
  
  # type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:410
++#: apt.conf.5.xml:427
  msgid ""
  "CDROM URIs; the only setting for CDROM URIs is the mount point, "
  "<literal>cdrom::Mount</literal> which must be the mount point for the CDROM "
@@@ -6535,13 -6628,13 +6755,13 @@@ msgstr "
  "す。"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:420
++#: apt.conf.5.xml:437
  msgid "gpgv"
  msgstr "gpgv"
  
  # type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:421
++#: apt.conf.5.xml:438
  msgid ""
  "GPGV URIs; the only option for GPGV URIs is the option to pass additional "
  "parameters to gpgv.  <literal>gpgv::Options</literal> Additional options "
@@@ -6552,18 -6645,18 +6772,18 @@@ msgstr "
  "す。"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:426
++#: apt.conf.5.xml:443
  msgid "CompressionTypes"
  msgstr "CompressionTypes"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><synopsis>
--#: apt.conf.5.xml:432
++#: apt.conf.5.xml:449
  #, no-wrap
  msgid "Acquire::CompressionTypes::<replaceable>FileExtension</replaceable> \"<replaceable>Methodname</replaceable>\";"
  msgstr "Acquire::CompressionTypes::<replaceable>FileExtension</replaceable> \"<replaceable>Methodname</replaceable>\";"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:427
++#: apt.conf.5.xml:444
  msgid ""
  "List of compression types which are understood by the acquire methods.  "
  "Files like <filename>Packages</filename> can be available in various "
@@@ -6581,19 -6674,19 +6801,19 @@@ msgstr "
  "す。構文は以下のようになります。<placeholder type=\"synopsis\" id=\"0\"/>"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><synopsis>
--#: apt.conf.5.xml:437
++#: apt.conf.5.xml:454
  #, no-wrap
  msgid "Acquire::CompressionTypes::Order:: \"gz\";"
  msgstr "Acquire::CompressionTypes::Order:: \"gz\";"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><synopsis>
--#: apt.conf.5.xml:440
++#: apt.conf.5.xml:457
  #, no-wrap
  msgid "Acquire::CompressionTypes::Order { \"lzma\"; \"gz\"; };"
  msgstr "Acquire::CompressionTypes::Order { \"lzma\"; \"gz\"; };"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:433
++#: apt.conf.5.xml:450
  msgid ""
  "Also the <literal>Order</literal> subgroup can be used to define in which "
  "order the acquire system will try to download the compressed files. The "
@@@ -6621,13 -6714,13 +6841,13 @@@ msgstr "
  "<literal>bz2</literal> は自動的に追加されるため、明示する必要はありません。"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><literallayout>
--#: apt.conf.5.xml:444
++#: apt.conf.5.xml:461
  #, no-wrap
  msgid "Dir::Bin::bzip2 \"/bin/bzip2\";"
  msgstr "Dir::Bin::bzip2 \"/bin/bzip2\";"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:442
++#: apt.conf.5.xml:459
  #, fuzzy
  #| msgid ""
  #| "Note that at run time the <literal>Dir::Bin::<replaceable>Methodname</"
@@@ -6644,9 -6737,9 +6864,9 @@@ msgid "
  "Note that at run time the <literal>Dir::Bin::<replaceable>Methodname</"
  "replaceable></literal> will be checked: If this setting exists the method "
  "will only be used if this file exists, e.g. for the bzip2 method (the "
--"inbuilt) setting is <placeholder type=\"literallayout\" id=\"0\"/> Note also "
--"that list entries specified on the command line will be added at the end of "
--"the list specified in the configuration files, but before the default "
++"inbuilt) setting is: <placeholder type=\"literallayout\" id=\"0\"/> Note "
++"also that list entries specified on the command line will be added at the "
++"end of the list specified in the configuration files, but before the default "
  "entries. To prefer a type in this case over the ones specified in the "
  "configuration files you can set the option direct - not in list style.  This "
  "will not override the defined list, it will only prefix the list with this "
@@@ -6663,21 -6756,21 +6883,21 @@@ msgstr "
  "す。"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:449
++#: apt.conf.5.xml:466
  msgid ""
  "The special type <literal>uncompressed</literal> can be used to give "
--"uncompressed files a preference, but note that most archives doesn't provide "
++"uncompressed files a preference, but note that most archives don't provide "
  "uncompressed files so this is mostly only useable for local mirrors."
  msgstr ""
  
  # type: <tag></tag>
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:454
++#: apt.conf.5.xml:471
  msgid "GzipIndexes"
  msgstr "GzipIndexes"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:456
++#: apt.conf.5.xml:473
  msgid ""
  "When downloading <literal>gzip</literal> compressed indexes (Packages, "
  "Sources, or Translations), keep them gzip compressed locally instead of "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:463
++#: apt.conf.5.xml:480
  msgid "Languages"
  msgstr "Languages"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:464
++#: apt.conf.5.xml:481
  msgid ""
  "The Languages subsection controls which <filename>Translation</filename> "
  "files are downloaded and in which order APT tries to display the Description-"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><programlisting>
--#: apt.conf.5.xml:480
++#: apt.conf.5.xml:497
  #, no-wrap
  msgid "Acquire::Languages { \"environment\"; \"de\"; \"en\"; \"none\"; \"fr\"; };"
  msgstr "Acquire::Languages { \"environment\"; \"de\"; \"en\"; \"none\"; \"fr\"; };"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:470
++#: apt.conf.5.xml:487
  msgid ""
  "The default list includes \"environment\" and \"en\". "
  "\"<literal>environment</literal>\" has a special meaning here: It will be "
@@@ -6734,7 -6827,7 +6954,7 @@@ msgstr "
  
  # type: Content of: <refentry><refsect1><para>
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:245
++#: apt.conf.5.xml:253
  msgid ""
  "The <literal>Acquire</literal> group of options controls the download of "
  "packages and the URI handlers.  <placeholder type=\"variablelist\" id=\"0\"/>"
@@@ -6745,13 -6838,13 +6965,13 @@@ msgstr "
  
  # type: Content of: <refentry><refsect1><refsect2><title>
  #. type: Content of: <refentry><refsect1><title>
--#: apt.conf.5.xml:487
++#: apt.conf.5.xml:504
  msgid "Directories"
  msgstr "ディレクトリ"
  
  # type: Content of: <refentry><refsect1><para>
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:489
++#: apt.conf.5.xml:506
  msgid ""
  "The <literal>Dir::State</literal> section has directories that pertain to "
  "local state information. <literal>lists</literal> is the directory to place "
@@@ -6771,7 -6864,7 +6991,7 @@@ msgstr "
  
  # type: Content of: <refentry><refsect1><para>
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:496
++#: apt.conf.5.xml:513
  msgid ""
  "<literal>Dir::Cache</literal> contains locations pertaining to local cache "
  "information, such as the two package caches <literal>srcpkgcache</literal> "
@@@ -6793,7 -6886,7 +7013,7 @@@ msgstr "
  
  # type: Content of: <refentry><refsect1><para>
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:505
++#: apt.conf.5.xml:522
  msgid ""
  "<literal>Dir::Etc</literal> contains the location of configuration files, "
  "<literal>sourcelist</literal> gives the location of the sourcelist and "
@@@ -6808,7 -6901,7 +7028,7 @@@ msgstr "
  
  # type: Content of: <refentry><refsect1><para>
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:511
++#: apt.conf.5.xml:528
  msgid ""
  "The <literal>Dir::Parts</literal> setting reads in all the config fragments "
  "in lexical order from the directory specified. After this is done then the "
@@@ -6820,7 -6913,7 +7040,7 @@@ msgstr "
  
  # type: Content of: <refentry><refsect1><para>
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:515
++#: apt.conf.5.xml:532
  msgid ""
  "Binary programs are pointed to by <literal>Dir::Bin</literal>. <literal>Dir::"
  "Bin::Methods</literal> specifies the location of the method handlers and "
@@@ -6838,7 -6931,7 +7058,7 @@@ msgstr "
  
  # type: Content of: <refentry><refsect1><para>
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:523
++#: apt.conf.5.xml:540
  msgid ""
  "The configuration item <literal>RootDir</literal> has a special meaning.  If "
  "set, all paths in <literal>Dir::</literal> will be relative to "
@@@ -6858,7 -6951,7 +7078,7 @@@ msgstr "
  "<filename>/tmp/staging/var/lib/dpkg/status</filename> から探します。"
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:536
++#: apt.conf.5.xml:553
  msgid ""
  "The <literal>Ignore-Files-Silently</literal> list can be used to specify "
  "which files APT should silently ignore while parsing the files in the "
@@@ -6870,13 -6963,13 +7090,13 @@@ msgstr "
  
  # type: Content of: <refentry><refsect1><title>
  #. type: Content of: <refentry><refsect1><title>
--#: apt.conf.5.xml:545
++#: apt.conf.5.xml:562
  msgid "APT in DSelect"
  msgstr "DSelect での APT"
  
  # type: Content of: <refentry><refsect1><para>
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:547
++#: apt.conf.5.xml:564
  msgid ""
  "When APT is used as a &dselect; method several configuration directives "
  "control the default behaviour. These are in the <literal>DSelect</literal> "
@@@ -6886,13 -6979,13 +7106,13 @@@ msgstr "
  "設定項目で、デフォルトの動作を制御します。"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:551
++#: apt.conf.5.xml:568
  msgid "Clean"
  msgstr "Clean"
  
  # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:552
++#: apt.conf.5.xml:569
  msgid ""
  "Cache Clean mode; this value may be one of always, prompt, auto, pre-auto "
  "and never.  always and prompt will remove all packages from the cache after "
@@@ -6909,7 -7002,7 +7129,7 @@@ msgstr "
  
  # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:561
++#: apt.conf.5.xml:578
  msgid ""
  "The contents of this variable is passed to &apt-get; as command line options "
  "when it is run for the install phase."
@@@ -6919,13 -7012,13 +7139,13 @@@ msgstr "
  
  # type: Content of: <refentry><refsect1><title>
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:565
++#: apt.conf.5.xml:582
  msgid "Updateoptions"
  msgstr "Updateoptions"
  
  # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:566
++#: apt.conf.5.xml:583
  msgid ""
  "The contents of this variable is passed to &apt-get; as command line options "
  "when it is run for the update phase."
@@@ -6934,13 -7027,13 +7154,13 @@@ msgstr "
  "されます。"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:570
++#: apt.conf.5.xml:587
  msgid "PromptAfterUpdate"
  msgstr "PromptAfterUpdate"
  
  # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:571
++#: apt.conf.5.xml:588
  msgid ""
  "If true the [U]pdate operation in &dselect; will always prompt to continue.  "
  "The default is to prompt only on error."
@@@ -6950,13 -7043,13 +7170,13 @@@ msgstr "
  
  # type: Content of: <refentry><refsect1><title>
  #. type: Content of: <refentry><refsect1><title>
--#: apt.conf.5.xml:577
++#: apt.conf.5.xml:594
  msgid "How APT calls dpkg"
  msgstr "APT が dpkg を呼ぶ方法"
  
  # type: Content of: <refentry><refsect1><para>
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:578
++#: apt.conf.5.xml:595
  msgid ""
  "Several configuration directives control how APT invokes &dpkg;. These are "
  "in the <literal>DPkg</literal> section."
@@@ -6966,7 -7059,7 +7186,7 @@@ msgstr "
  
  # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:583
++#: apt.conf.5.xml:600
  msgid ""
  "This is a list of options to pass to dpkg. The options must be specified "
  "using the list notation and each list item is passed as a single argument to "
@@@ -6976,18 -7069,18 +7196,18 @@@ msgstr "
  "ければなりません。また、各リストは単一の引数として &dpkg; に渡されます。"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:588
++#: apt.conf.5.xml:605
  msgid "Pre-Invoke"
  msgstr "Pre-Invoke"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:588
++#: apt.conf.5.xml:605
  msgid "Post-Invoke"
  msgstr "Post-Invoke"
  
  # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:589
++#: apt.conf.5.xml:606
  msgid ""
  "This is a list of shell commands to run before/after invoking &dpkg;.  Like "
  "<literal>options</literal> this must be specified in list notation. The "
@@@ -7001,13 -7094,13 +7221,13 @@@ msgstr "
  
  # type: <tag></tag>
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:595
++#: apt.conf.5.xml:612
  msgid "Pre-Install-Pkgs"
  msgstr "Pre-Install-Pkgs"
  
  # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:596
++#: apt.conf.5.xml:613
  msgid ""
  "This is a list of shell commands to run before invoking dpkg. Like "
  "<literal>options</literal> this must be specified in list notation. The "
@@@ -7023,7 -7116,7 +7243,7 @@@ msgstr "
  
  # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:602
++#: apt.conf.5.xml:619
  msgid ""
  "Version 2 of this protocol dumps more information, including the protocol "
  "version, the APT configuration space and the packages, files and versions "
@@@ -7039,13 -7132,13 +7259,13 @@@ msgstr "
  
  # type: Content of: <refentry><refsect1><refsect2><title>
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:609
++#: apt.conf.5.xml:626
  msgid "Run-Directory"
  msgstr "Run-Directory"
  
  # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:610
++#: apt.conf.5.xml:627
  msgid ""
  "APT chdirs to this directory before invoking dpkg, the default is <filename>/"
  "</filename>."
@@@ -7055,13 -7148,13 +7275,13 @@@ msgstr "
  
  # type: Content of: <refentry><refsect1><title>
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:614
++#: apt.conf.5.xml:631
  msgid "Build-options"
  msgstr "Build-options"
  
  # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:615
++#: apt.conf.5.xml:632
  msgid ""
  "These options are passed to &dpkg-buildpackage; when compiling packages, the "
  "default is to disable signing and produce all binaries."
@@@ -7070,12 -7163,12 +7290,12 @@@ msgstr "
  "ます。デフォルトでは署名を無効にし、全バイナリを生成します。"
  
  #. type: Content of: <refentry><refsect1><refsect2><title>
--#: apt.conf.5.xml:620
++#: apt.conf.5.xml:637
  msgid "dpkg trigger usage (and related options)"
  msgstr "dpkg トリガの使い方 (および関連オプション)"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
--#: apt.conf.5.xml:621
++#: apt.conf.5.xml:638
  msgid ""
  "APT can call dpkg in a way so it can make aggressive use of triggers over "
  "multiple calls of dpkg. Without further options dpkg will use triggers only "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><literallayout>
--#: apt.conf.5.xml:636
++#: apt.conf.5.xml:653
  #, no-wrap
  msgid ""
  "DPkg::NoTriggers \"true\";\n"
@@@ -7104,7 -7197,7 +7324,7 @@@ msgstr "
  "DPkg::TriggersPending \"true\";"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
--#: apt.conf.5.xml:630
++#: apt.conf.5.xml:647
  msgid ""
  "Note that it is not guaranteed that APT will support these options or that "
  "these options will not cause (big) trouble in the future. If you have "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
--#: apt.conf.5.xml:642
++#: apt.conf.5.xml:659
  msgid "DPkg::NoTriggers"
  msgstr "DPkg::NoTriggers"
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:643
++#: apt.conf.5.xml:660
  msgid ""
  "Add the no triggers flag to all dpkg calls (except the ConfigurePending "
  "call).  See &dpkg; if you are interested in what this actually means. In "
@@@ -7136,12 -7229,12 +7356,12 @@@ msgstr "
  
  # type: <tag></tag>
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
--#: apt.conf.5.xml:650
++#: apt.conf.5.xml:667
  msgid "PackageManager::Configure"
  msgstr "PackageManager::Configure"
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:651
++#: apt.conf.5.xml:668
  msgid ""
  "Valid values are \"<literal>all</literal>\", \"<literal>smart</literal>\" "
  "and \"<literal>no</literal>\".  \"<literal>all</literal>\" is the default "
@@@ -7158,12 -7251,12 +7378,12 @@@ msgstr "
  
  # type: Content of: <refentry><refsect1><title>
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
--#: apt.conf.5.xml:661
++#: apt.conf.5.xml:678
  msgid "DPkg::ConfigurePending"
  msgstr "DPkg::ConfigurePending"
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:662
++#: apt.conf.5.xml:679
  msgid ""
  "If this option is set apt will call <command>dpkg --configure --pending</"
  "command> to let dpkg handle all required configurations and triggers. This "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
--#: apt.conf.5.xml:668
++#: apt.conf.5.xml:685
  msgid "DPkg::TriggersPending"
  msgstr "DPkg::TriggersPending"
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:669
++#: apt.conf.5.xml:686
  msgid ""
  "Useful for <literal>smart</literal> configuration as a package which has "
  "pending triggers is not considered as <literal>installed</literal> and dpkg "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
--#: apt.conf.5.xml:674
++#: apt.conf.5.xml:691
  msgid "PackageManager::UnpackAll"
  msgstr "PackageManager::UnpackAll"
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:675
++#: apt.conf.5.xml:692
  msgid ""
  "As the configuration can be deferred to be done at the end by dpkg it can be "
  "tried to order the unpack series only by critical needs, e.g. by Pre-"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
--#: apt.conf.5.xml:682
++#: apt.conf.5.xml:699
  msgid "OrderList::Score::Immediate"
  msgstr "OrderList::Score::Immediate"
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para><literallayout>
--#: apt.conf.5.xml:690
++#: apt.conf.5.xml:707
  #, no-wrap
  msgid ""
  "OrderList::Score {\n"
@@@ -7229,7 -7322,7 +7449,7 @@@ msgstr "
  "};"
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:683
++#: apt.conf.5.xml:700
  msgid ""
  "Essential packages (and there dependencies) should be configured immediately "
  "after unpacking. It will be a good idea to do this quite early in the "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><title>
--#: apt.conf.5.xml:703
++#: apt.conf.5.xml:720
  msgid "Periodic and Archives options"
  msgstr "Periodic オプションと Archives オプション"
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:704
++#: apt.conf.5.xml:721
  msgid ""
  "<literal>APT::Periodic</literal> and <literal>APT::Archives</literal> groups "
  "of options configure behavior of apt periodic updates, which is done by "
@@@ -7262,12 -7355,12 +7482,12 @@@ msgstr "
  
  # type: Content of: <refentry><refsect1><title>
  #. type: Content of: <refentry><refsect1><title>
--#: apt.conf.5.xml:712
++#: apt.conf.5.xml:729
  msgid "Debug options"
  msgstr "デバッグオプション"
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:714
++#: apt.conf.5.xml:731
  msgid ""
  "Enabling options in the <literal>Debug::</literal> section will cause "
  "debugging information to be sent to the standard error stream of the program "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
--#: apt.conf.5.xml:725
++#: apt.conf.5.xml:742
  msgid ""
  "<literal>Debug::pkgProblemResolver</literal> enables output about the "
  "decisions made by <literal>dist-upgrade, upgrade, install, remove, purge</"
@@@ -7289,7 -7382,7 +7509,7 @@@ msgstr "
  "にします。"
  
  #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
--#: apt.conf.5.xml:733
++#: apt.conf.5.xml:750
  msgid ""
  "<literal>Debug::NoLocking</literal> disables all file locking.  This can be "
  "used to run some operations (for instance, <literal>apt-get -s install</"
@@@ -7300,7 -7393,7 +7520,7 @@@ msgstr "
  "literal>) を行う場合に使用します。"
  
  #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
--#: apt.conf.5.xml:742
++#: apt.conf.5.xml:759
  msgid ""
  "<literal>Debug::pkgDPkgPM</literal> prints out the actual command line each "
  "time that <literal>apt</literal> invokes &dpkg;."
@@@ -7312,7 -7405,7 +7532,7 @@@ msgstr "
  #.       motivating example, except I haven't a clue why you'd want
  #.       to do this. 
  #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
--#: apt.conf.5.xml:750
++#: apt.conf.5.xml:767
  msgid ""
  "<literal>Debug::IdentCdrom</literal> disables the inclusion of statfs data "
  "in CDROM IDs."
@@@ -7321,59 -7414,59 +7541,59 @@@ msgstr "
  "を無効にします。"
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:760
++#: apt.conf.5.xml:777
  msgid "A full list of debugging options to apt follows."
  msgstr "以下は apt に対するデバッグオプションのすべてです。"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:765
++#: apt.conf.5.xml:782
  msgid "<literal>Debug::Acquire::cdrom</literal>"
  msgstr "<literal>Debug::Acquire::cdrom</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:769
++#: apt.conf.5.xml:786
  msgid ""
  "Print information related to accessing <literal>cdrom://</literal> sources."
  msgstr ""
  "<literal>cdrom://</literal> ソースへのアクセスに関する情報を出力します。"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:776
++#: apt.conf.5.xml:793
  msgid "<literal>Debug::Acquire::ftp</literal>"
  msgstr "<literal>Debug::Acquire::ftp</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:780
++#: apt.conf.5.xml:797
  msgid "Print information related to downloading packages using FTP."
  msgstr "FTP を用いたパッケージのダウンロードに関する情報を出力します。"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:787
++#: apt.conf.5.xml:804
  msgid "<literal>Debug::Acquire::http</literal>"
  msgstr "<literal>Debug::Acquire::http</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:791
++#: apt.conf.5.xml:808
  msgid "Print information related to downloading packages using HTTP."
  msgstr "HTTP を用いたパッケージのダウンロードに関する情報を出力します。"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:798
++#: apt.conf.5.xml:815
  msgid "<literal>Debug::Acquire::https</literal>"
  msgstr "<literal>Debug::Acquire::https</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:802
++#: apt.conf.5.xml:819
  msgid "Print information related to downloading packages using HTTPS."
  msgstr "HTTPS を用いたパッケージのダウンロードに関する情報を出力します。"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:809
++#: apt.conf.5.xml:826
  msgid "<literal>Debug::Acquire::gpgv</literal>"
  msgstr "<literal>Debug::Acquire::gpgv</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:813
++#: apt.conf.5.xml:830
  msgid ""
  "Print information related to verifying cryptographic signatures using "
  "<literal>gpg</literal>."
@@@ -7381,12 -7474,12 +7601,12 @@@ msgstr "
  "<literal>gpg</literal> を用いた暗号署名の検証に関する情報を出力します。"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:820
++#: apt.conf.5.xml:837
  msgid "<literal>Debug::aptcdrom</literal>"
  msgstr "<literal>Debug::aptcdrom</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:824
++#: apt.conf.5.xml:841
  msgid ""
  "Output information about the process of accessing collections of packages "
  "stored on CD-ROMs."
@@@ -7395,22 -7488,22 +7615,22 @@@ msgstr "
  "します。"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:831
++#: apt.conf.5.xml:848
  msgid "<literal>Debug::BuildDeps</literal>"
  msgstr "<literal>Debug::BuildDeps</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:834
++#: apt.conf.5.xml:851
  msgid "Describes the process of resolving build-dependencies in &apt-get;."
  msgstr "&apt-get; での構築依存関係解決のプロセスを説明します。"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:841
++#: apt.conf.5.xml:858
  msgid "<literal>Debug::Hashes</literal>"
  msgstr "<literal>Debug::Hashes</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:844
++#: apt.conf.5.xml:861
  msgid ""
  "Output each cryptographic hash that is generated by the <literal>apt</"
  "literal> libraries."
@@@ -7418,12 -7511,12 +7638,12 @@@ msgstr "
  "<literal>apt</literal> ライブラリが生成した、暗号化ハッシュを出力します。"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:851
++#: apt.conf.5.xml:868
  msgid "<literal>Debug::IdentCDROM</literal>"
  msgstr "<literal>Debug::IdentCDROM</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:854
++#: apt.conf.5.xml:871
  msgid ""
  "Do not include information from <literal>statfs</literal>, namely the number "
  "of used and free blocks on the CD-ROM filesystem, when generating an ID for "
@@@ -7433,12 -7526,12 +7653,12 @@@ msgstr "
  "システムにある使用済・未使用ブロックの数からの情報を含めないようにします。"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:862
++#: apt.conf.5.xml:879
  msgid "<literal>Debug::NoLocking</literal>"
  msgstr "<literal>Debug::NoLocking</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:865
++#: apt.conf.5.xml:882
  msgid ""
  "Disable all file locking.  For instance, this will allow two instances of "
  "<quote><literal>apt-get update</literal></quote> to run at the same time."
@@@ -7447,23 -7540,23 +7667,23 @@@ msgstr "
  "<quote><literal>apt-get update</literal></quote> を実行できるようになります。"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:873
++#: apt.conf.5.xml:890
  msgid "<literal>Debug::pkgAcquire</literal>"
  msgstr "<literal>Debug::pkgAcquire</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:877
++#: apt.conf.5.xml:894
  msgid "Log when items are added to or removed from the global download queue."
  msgstr ""
  "グローバルダウンロードキューに対する項目の追加・削除の際にログを出力します。"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:884
++#: apt.conf.5.xml:901
  msgid "<literal>Debug::pkgAcquire::Auth</literal>"
  msgstr "<literal>Debug::pkgAcquire::Auth</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:887
++#: apt.conf.5.xml:904
  msgid ""
  "Output status messages and errors related to verifying checksums and "
  "cryptographic signatures of downloaded files."
@@@ -7472,12 -7565,12 +7692,12 @@@ msgstr "
  "ジやエラーを出力します。"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:894
++#: apt.conf.5.xml:911
  msgid "<literal>Debug::pkgAcquire::Diffs</literal>"
  msgstr "<literal>Debug::pkgAcquire::Diffs</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:897
++#: apt.conf.5.xml:914
  msgid ""
  "Output information about downloading and applying package index list diffs, "
  "and errors relating to package index list diffs."
@@@ -7486,12 -7579,12 +7706,12 @@@ msgstr "
  "します。"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:905
++#: apt.conf.5.xml:922
  msgid "<literal>Debug::pkgAcquire::RRed</literal>"
  msgstr "<literal>Debug::pkgAcquire::RRed</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:909
++#: apt.conf.5.xml:926
  msgid ""
  "Output information related to patching apt package lists when downloading "
  "index diffs instead of full indices."
@@@ -7500,24 -7593,24 +7720,24 @@@ msgstr "
  "リストへのパッチ適用に関する情報を出力します。"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:916
++#: apt.conf.5.xml:933
  msgid "<literal>Debug::pkgAcquire::Worker</literal>"
  msgstr "<literal>Debug::pkgAcquire::Worker</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:920
++#: apt.conf.5.xml:937
  msgid ""
  "Log all interactions with the sub-processes that actually perform downloads."
  msgstr ""
  "実際のダウンロードを行う際の、サブプロセスとのやりとりをログに出力します。"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:927
++#: apt.conf.5.xml:944
  msgid "<literal>Debug::pkgAutoRemove</literal>"
  msgstr "<literal>Debug::pkgAutoRemove</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:931
++#: apt.conf.5.xml:948
  msgid ""
  "Log events related to the automatically-installed status of packages and to "
  "the removal of unused packages."
@@@ -7526,12 -7619,12 +7746,12 @@@ msgstr "
  "に出力します。"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:938
++#: apt.conf.5.xml:955
  msgid "<literal>Debug::pkgDepCache::AutoInstall</literal>"
  msgstr "<literal>Debug::pkgDepCache::AutoInstall</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:941
++#: apt.conf.5.xml:958
  msgid ""
  "Generate debug messages describing which packages are being automatically "
  "installed to resolve dependencies.  This corresponds to the initial auto-"
@@@ -7546,12 -7639,12 +7766,12 @@@ msgstr "
  "路に対応しています。"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:952
++#: apt.conf.5.xml:969
  msgid "<literal>Debug::pkgDepCache::Marker</literal>"
  msgstr "<literal>Debug::pkgDepCache::Marker</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:955
++#: apt.conf.5.xml:972
  msgid ""
  "Generate debug messages describing which package is marked as keep/install/"
  "remove while the ProblemResolver does his work.  Each addition or deletion "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:974
++#: apt.conf.5.xml:991
  msgid "<literal>Debug::pkgInitConfig</literal>"
  msgstr "<literal>Debug::pkgInitConfig</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:977
++#: apt.conf.5.xml:994
  msgid "Dump the default configuration to standard error on startup."
  msgstr "起動時に、標準エラー出力へデフォルト設定を出力します。"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:984
++#: apt.conf.5.xml:1001
  msgid "<literal>Debug::pkgDPkgPM</literal>"
  msgstr "<literal>Debug::pkgDPkgPM</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:987
++#: apt.conf.5.xml:1004
  msgid ""
  "When invoking &dpkg;, output the precise command line with which it is being "
  "invoked, with arguments separated by a single space character."
@@@ -7592,12 -7685,12 +7812,12 @@@ msgstr "
  "切られます。"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:995
++#: apt.conf.5.xml:1012
  msgid "<literal>Debug::pkgDPkgProgressReporting</literal>"
  msgstr "<literal>Debug::pkgDPkgProgressReporting</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:998
++#: apt.conf.5.xml:1015
  msgid ""
  "Output all the data received from &dpkg; on the status file descriptor and "
  "any errors encountered while parsing it."
@@@ -7606,12 -7699,12 +7826,12 @@@ msgstr "
  "を解析中に発生したエラーを出力します。"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:1005
++#: apt.conf.5.xml:1022
  msgid "<literal>Debug::pkgOrderList</literal>"
  msgstr "<literal>Debug::pkgOrderList</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:1009
++#: apt.conf.5.xml:1026
  msgid ""
  "Generate a trace of the algorithm that decides the order in which "
  "<literal>apt</literal> should pass packages to &dpkg;."
@@@ -7620,33 -7713,33 +7840,33 @@@ msgstr "
  "のトレースを生成します。"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:1017
++#: apt.conf.5.xml:1034
  msgid "<literal>Debug::pkgPackageManager</literal>"
  msgstr "<literal>Debug::pkgPackageManager</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:1021
++#: apt.conf.5.xml:1038
  msgid ""
  "Output status messages tracing the steps performed when invoking &dpkg;."
  msgstr "&dpkg; を呼び出す際に、実行手順を追跡した状態メッセージを出力します。"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:1028
++#: apt.conf.5.xml:1045
  msgid "<literal>Debug::pkgPolicy</literal>"
  msgstr "<literal>Debug::pkgPolicy</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:1032
++#: apt.conf.5.xml:1049
  msgid "Output the priority of each package list on startup."
  msgstr "起動時の各パッケージの優先度を表示します。"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:1038
++#: apt.conf.5.xml:1055
  msgid "<literal>Debug::pkgProblemResolver</literal>"
  msgstr "<literal>Debug::pkgProblemResolver</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:1042
++#: apt.conf.5.xml:1059
  msgid ""
  "Trace the execution of the dependency resolver (this applies only to what "
  "happens when a complex dependency problem is encountered)."
@@@ -7655,12 -7748,12 +7875,12 @@@ msgstr "
  "した場合にのみ、適用されます)。"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:1050
++#: apt.conf.5.xml:1067
  msgid "<literal>Debug::pkgProblemResolver::ShowScores</literal>"
  msgstr "<literal>Debug::pkgProblemResolver::ShowScores</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:1053
++#: apt.conf.5.xml:1070
  msgid ""
  "Display a list of all installed packages with their calculated score used by "
  "the pkgProblemResolver. The description of the package is the same as "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:1061
++#: apt.conf.5.xml:1078
  msgid "<literal>Debug::sourceList</literal>"
  msgstr "<literal>Debug::sourceList</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:1065
++#: apt.conf.5.xml:1082
  msgid ""
  "Print information about the vendors read from <filename>/etc/apt/vendors."
  "list</filename>."
@@@ -7683,7 -7776,7 +7903,7 @@@ msgstr "
  
  # type: Content of: <refentry><refsect1><para>
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:1088
++#: apt.conf.5.xml:1105
  msgid ""
  "&configureindex; is a configuration file showing example values for all "
  "possible options."
@@@ -7693,14 -7786,14 +7913,14 @@@ msgstr "
  
  # type: Content of: <refentry><refsect1><para>
  #. type: Content of: <refentry><refsect1><variablelist>
--#: apt.conf.5.xml:1095
++#: apt.conf.5.xml:1112
  msgid "&file-aptconf;"
  msgstr "&file-aptconf;"
  
  # type: Content of: <refentry><refsect1><para>
  #.  ? reading apt.conf 
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:1100
++#: apt.conf.5.xml:1117
  msgid "&apt-cache;, &apt-config;, &apt-preferences;."
  msgstr "&apt-cache;, &apt-config;, &apt-preferences;."
  
@@@ -7802,8 -7895,8 +8022,8 @@@ msgstr "
  msgid ""
  "Note that the files in the <filename>/etc/apt/preferences.d</filename> "
  "directory are parsed in alphanumeric ascending order and need to obey the "
--"following naming convention: The files have no or \"<literal>pref</literal>"
--"\" as filename extension and which only contain alphanumeric, hyphen (-), "
++"following naming convention: The files have either no or \"<literal>pref</"
++"literal>\" as filename extension and only contain alphanumeric, hyphen (-), "
  "underscore (_) and period (.) characters.  Otherwise APT will print a notice "
  "that it has ignored a file if the file doesn't match a pattern in the "
  "<literal>Dir::Ignore-Files-Silently</literal> configuration list - in this "
@@@ -8257,20 -8350,92 +8477,92 @@@ msgstr "
  "Pin-Priority: 500\n"
  "\n"
  
 -"()-like expression or contains the word kde (as a POSIX extended regular "
+ #. type: Content of: <refentry><refsect1><refsect2><title>
+ #: apt_preferences.5.xml:262
+ msgid "Regular expressions and glob() syntax"
+ msgstr ""
+ #. type: Content of: <refentry><refsect1><refsect2><para>
+ #: apt_preferences.5.xml:264
+ msgid ""
+ "APT also supports pinning by glob() expressions and regular expressions "
+ "surrounded by /. For example, the following example assigns the priority 500 "
+ "to all packages from experimental where the name starts with gnome (as a glob"
 -"string can occur. Those, the following pin assigns the priority 990 to all "
++"()-like expression) or contains the word kde (as a POSIX extended regular "
+ "expression surrounded by slashes)."
+ msgstr ""
+ # type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting>
+ #. type: Content of: <refentry><refsect1><refsect2><programlisting>
+ #: apt_preferences.5.xml:273
+ #, fuzzy, no-wrap
+ #| msgid ""
+ #| "Package: *\n"
+ #| "Pin: release a=unstable\n"
+ #| "Pin-Priority: 50\n"
+ msgid ""
+ "Package: gnome* /kde/\n"
+ "Pin: release n=experimental\n"
+ "Pin-Priority: 500\n"
+ msgstr ""
+ "Package: *\n"
+ "Pin: release a=unstable\n"
+ "Pin-Priority: 50\n"
+ "\n"
+ #. type: Content of: <refentry><refsect1><refsect2><para>
+ #: apt_preferences.5.xml:279
+ msgid ""
+ "The rule for those expressions is that they can occur anywhere where a "
++"string can occur. Thus, the following pin assigns the priority 990 to all "
+ "packages from a release starting with karmic."
+ msgstr ""
+ # type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting>
+ #. type: Content of: <refentry><refsect1><refsect2><programlisting>
+ #: apt_preferences.5.xml:285
+ #, fuzzy, no-wrap
+ #| msgid ""
+ #| "Package: *\n"
+ #| "Pin: release a=unstable\n"
+ #| "Pin-Priority: 50\n"
+ msgid ""
+ "Package: *\n"
+ "Pin: release n=karmic*\n"
+ "Pin-Priority: 990\n"
+ msgstr ""
+ "Package: *\n"
+ "Pin: release a=unstable\n"
+ "Pin-Priority: 50\n"
+ "\n"
+ # type: <tag></tag>
+ #. type: Content of: <refentry><refsect1><refsect2><literal>
+ #: apt_preferences.5.xml:290
+ #, fuzzy
+ #| msgid "Packages"
+ msgid "Package"
+ msgstr "Packages"
+ #. type: Content of: <refentry><refsect1><refsect2><literal>
+ #: apt_preferences.5.xml:296
+ msgid "*"
+ msgstr ""
  # type: Content of: <refentry><refsect1><refsect2><title>
  #. type: Content of: <refentry><refsect1><refsect2><title>
- #: apt_preferences.5.xml:263
+ #: apt_preferences.5.xml:306
  msgid "How APT Interprets Priorities"
  msgstr "APT が優先度に割り込む方法"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:271
+ #: apt_preferences.5.xml:314
  msgid "P &gt; 1000"
  msgstr "P &gt; 1000"
  
  # type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:272
+ #: apt_preferences.5.xml:315
  msgid ""
  "causes a version to be installed even if this constitutes a downgrade of the "
  "package"
@@@ -8278,13 -8443,13 +8570,13 @@@ msgstr "
  "パッケージがダウングレードしても、このバージョンのパッケージをインストール"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:276
+ #: apt_preferences.5.xml:319
  msgid "990 &lt; P &lt;=1000"
  msgstr "990 &lt; P &lt;=1000"
  
  # type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:277
+ #: apt_preferences.5.xml:320
  msgid ""
  "causes a version to be installed even if it does not come from the target "
  "release, unless the installed version is more recent"
@@@ -8293,13 -8458,13 +8585,13 @@@ msgstr "
  "含まれなくても、このバージョンのパッケージをインストール"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:282
+ #: apt_preferences.5.xml:325
  msgid "500 &lt; P &lt;=990"
  msgstr "500 &lt; P &lt;=990"
  
  # type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:283
+ #: apt_preferences.5.xml:326
  msgid ""
  "causes a version to be installed unless there is a version available "
  "belonging to the target release or the installed version is more recent"
@@@ -8308,13 -8473,13 +8600,13 @@@ msgstr "
  "ジョンの方が新しいのでなければ、このバージョンのパッケージをインストール"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:288
+ #: apt_preferences.5.xml:331
  msgid "100 &lt; P &lt;=500"
  msgstr "100 &lt; P &lt;=500"
  
  # type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:289
+ #: apt_preferences.5.xml:332
  msgid ""
  "causes a version to be installed unless there is a version available "
  "belonging to some other distribution or the installed version is more recent"
@@@ -8324,13 -8489,13 +8616,13 @@@ msgstr "
  "ル"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:294
+ #: apt_preferences.5.xml:337
  msgid "0 &lt; P &lt;=100"
  msgstr "0 &lt; P &lt;=100"
  
  # type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:295
+ #: apt_preferences.5.xml:338
  msgid ""
  "causes a version to be installed only if there is no installed version of "
  "the package"
@@@ -8339,19 -8504,19 +8631,19 @@@ msgstr "
  "ンストール"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:299
+ #: apt_preferences.5.xml:342
  msgid "P &lt; 0"
  msgstr "P &lt; 0"
  
  # type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:300
+ #: apt_preferences.5.xml:343
  msgid "prevents the version from being installed"
  msgstr "このバージョンのインストール禁止"
  
  # type: Content of: <refentry><refsect1><refsect2><para>
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:266
+ #: apt_preferences.5.xml:309
  msgid ""
  "Priorities (P) assigned in the APT preferences file must be positive or "
  "negative integers.  They are interpreted as follows (roughly speaking): "
@@@ -8363,7 -8528,7 +8655,7 @@@ msgstr "
  
  # type: Content of: <refentry><refsect1><refsect2><para>
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:305
+ #: apt_preferences.5.xml:348
  msgid ""
  "If any specific-form records match an available package version then the "
  "first such record determines the priority of the package version.  Failing "
@@@ -8377,7 -8542,7 +8669,7 @@@ msgstr "
  
  # type: Content of: <refentry><refsect1><refsect2><para>
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:311
+ #: apt_preferences.5.xml:354
  msgid ""
  "For example, suppose the APT preferences file contains the three records "
  "presented earlier:"
@@@ -8387,7 -8552,7 +8679,7 @@@ msgstr "
  
  # type: Content of: <refentry><refsect1><refsect2><programlisting>
  #. type: Content of: <refentry><refsect1><refsect2><programlisting>
- #: apt_preferences.5.xml:315
+ #: apt_preferences.5.xml:358
  #, no-wrap
  msgid ""
  "Package: perl\n"
@@@ -8417,13 -8582,13 +8709,13 @@@ msgstr "
  
  # type: Content of: <refentry><refsect1><refsect2><para>
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:328
+ #: apt_preferences.5.xml:371
  msgid "Then:"
  msgstr "すると、以下のように動作します。"
  
  # type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
  #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
- #: apt_preferences.5.xml:330
+ #: apt_preferences.5.xml:373
  msgid ""
  "The most recent available version of the <literal>perl</literal> package "
  "will be installed, so long as that version's version number begins with "
@@@ -8438,7 -8603,7 +8730,7 @@@ msgstr "
  
  # type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
  #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
- #: apt_preferences.5.xml:335
+ #: apt_preferences.5.xml:378
  msgid ""
  "A version of any package other than <literal>perl</literal> that is "
  "available from the local system has priority over other versions, even "
@@@ -8450,7 -8615,7 +8742,7 @@@ msgstr "
  
  # type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
  #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
- #: apt_preferences.5.xml:339
+ #: apt_preferences.5.xml:382
  msgid ""
  "A version of a package whose origin is not the local system but some other "
  "site listed in &sources-list; and which belongs to an <literal>unstable</"
@@@ -8464,13 -8629,13 +8756,13 @@@ msgstr "
  
  # type: Content of: <refentry><refsect1><refsect2><title>
  #. type: Content of: <refentry><refsect1><refsect2><title>
- #: apt_preferences.5.xml:349
+ #: apt_preferences.5.xml:392
  msgid "Determination of Package Version and Distribution Properties"
  msgstr "パッケージのバージョンとディストリビューションプロパティの決定"
  
  # type: Content of: <refentry><refsect1><refsect2><para>
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:351
+ #: apt_preferences.5.xml:394
  msgid ""
  "The locations listed in the &sources-list; file should provide "
  "<filename>Packages</filename> and <filename>Release</filename> files to "
@@@ -8481,30 -8646,30 +8773,30 @@@ msgstr "
  "filename> ファイルを提供します。"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:363
+ #: apt_preferences.5.xml:406
  msgid "the <literal>Package:</literal> line"
  msgstr "<literal>Package:</literal> 行"
  
  # type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:364
+ #: apt_preferences.5.xml:407
  msgid "gives the package name"
  msgstr "パッケージ名"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:367 apt_preferences.5.xml:417
+ #: apt_preferences.5.xml:410 apt_preferences.5.xml:460
  msgid "the <literal>Version:</literal> line"
  msgstr "<literal>Version:</literal> 行"
  
  # type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:368
+ #: apt_preferences.5.xml:411
  msgid "gives the version number for the named package"
  msgstr "その名前のパッケージのバージョン番号"
  
  # type: Content of: <refentry><refsect1><refsect2><para>
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:355
+ #: apt_preferences.5.xml:398
  msgid ""
  "The <filename>Packages</filename> file is normally found in the directory "
  "<filename>.../dists/<replaceable>dist-name</replaceable>/"
@@@ -8524,13 -8689,13 +8816,13 @@@ msgstr "
  "type=\"variablelist\" id=\"0\"/>"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:384
+ #: apt_preferences.5.xml:427
  msgid "the <literal>Archive:</literal> or <literal>Suite:</literal> line"
  msgstr "<literal>Archive:</literal> 行や <literal>Suite:</literal> 行"
  
  # type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:385
+ #: apt_preferences.5.xml:428
  msgid ""
  "names the archive to which all the packages in the directory tree belong.  "
  "For example, the line \"Archive: stable\" or \"Suite: stable\" specifies "
@@@ -8547,19 -8712,19 +8839,19 @@@ msgstr "
  
  # type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
- #: apt_preferences.5.xml:395
+ #: apt_preferences.5.xml:438
  #, no-wrap
  msgid "Pin: release a=stable\n"
  msgstr "Pin: release a=stable\n"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:401
+ #: apt_preferences.5.xml:444
  msgid "the <literal>Codename:</literal> line"
  msgstr "<literal>Codename:</literal> 行"
  
  # type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:402
+ #: apt_preferences.5.xml:445
  #, fuzzy
  msgid ""
  "names the codename to which all the packages in the directory tree belong.  "
@@@ -8577,14 -8742,14 +8869,14 @@@ msgstr "
  
  # type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
- #: apt_preferences.5.xml:411
+ #: apt_preferences.5.xml:454
  #, no-wrap
  msgid "Pin: release n=&testing-codename;\n"
  msgstr "Pin: release n=&testing-codename;\n"
  
  # type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:418
+ #: apt_preferences.5.xml:461
  msgid ""
  "names the release version.  For example, the packages in the tree might "
  "belong to Debian GNU/Linux release version 3.0.  Note that there is normally "
@@@ -8600,7 -8765,7 +8892,7 @@@ msgstr "
  
  # type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
- #: apt_preferences.5.xml:427
+ #: apt_preferences.5.xml:470
  #, no-wrap
  msgid ""
  "Pin: release v=3.0\n"
@@@ -8613,13 -8778,13 +8905,13 @@@ msgstr "
  "\n"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:436
+ #: apt_preferences.5.xml:479
  msgid "the <literal>Component:</literal> line"
  msgstr "<literal>Component:</literal> 行"
  
  # type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:437
+ #: apt_preferences.5.xml:480
  msgid ""
  "names the licensing component associated with the packages in the directory "
  "tree of the <filename>Release</filename> file.  For example, the line "
@@@ -8637,19 -8802,19 +8929,19 @@@ msgstr "
  
  # type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
- #: apt_preferences.5.xml:446
+ #: apt_preferences.5.xml:489
  #, no-wrap
  msgid "Pin: release c=main\n"
  msgstr "Pin: release c=main\n"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:452
+ #: apt_preferences.5.xml:495
  msgid "the <literal>Origin:</literal> line"
  msgstr "<literal>Origin:</literal> 行"
  
  # type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:453
+ #: apt_preferences.5.xml:496
  msgid ""
  "names the originator of the packages in the directory tree of the "
  "<filename>Release</filename> file.  Most commonly, this is <literal>Debian</"
@@@ -8662,7 -8827,7 +8954,7 @@@ msgstr "
  
  # type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
- #: apt_preferences.5.xml:459
+ #: apt_preferences.5.xml:502
  #, no-wrap
  msgid "Pin: release o=Debian\n"
  msgstr ""
  "\n"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:465
+ #: apt_preferences.5.xml:508
  msgid "the <literal>Label:</literal> line"
  msgstr "<literal>Label:</literal> 行"
  
  # type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:466
+ #: apt_preferences.5.xml:509
  msgid ""
  "names the label of the packages in the directory tree of the "
  "<filename>Release</filename> file.  Most commonly, this is <literal>Debian</"
@@@ -8689,7 -8854,7 +8981,7 @@@ msgstr "
  
  # type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
- #: apt_preferences.5.xml:472
+ #: apt_preferences.5.xml:515
  #, no-wrap
  msgid "Pin: release l=Debian\n"
  msgstr ""
  
  # type: Content of: <refentry><refsect1><refsect2><para>
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:373
+ #: apt_preferences.5.xml:416
  #, fuzzy
  msgid ""
  "The <filename>Release</filename> file is normally found in the directory "
@@@ -8722,7 -8887,7 +9014,7 @@@ msgstr "
  
  # type: Content of: <refentry><refsect1><refsect2><para>
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:479
+ #: apt_preferences.5.xml:522
  msgid ""
  "All of the <filename>Packages</filename> and <filename>Release</filename> "
  "files retrieved from locations listed in the &sources-list; file are stored "
@@@ -8748,13 -8913,13 +9040,13 @@@ msgstr "
  
  # type: Content of: <refentry><refsect1><refsect2><title>
  #. type: Content of: <refentry><refsect1><refsect2><title>
- #: apt_preferences.5.xml:492
+ #: apt_preferences.5.xml:535
  msgid "Optional Lines in an APT Preferences Record"
  msgstr "APT 設定レコードのオプション行"
  
  # type: Content of: <refentry><refsect1><refsect2><para>
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:494
+ #: apt_preferences.5.xml:537
  msgid ""
  "Each record in the APT preferences file can optionally begin with one or "
  "more lines beginning with the word <literal>Explanation:</literal>.  This "
@@@ -8765,13 -8930,13 +9057,13 @@@ msgstr "
  
  # type: Content of: <refentry><refsect1><refsect2><title>
  #. type: Content of: <refentry><refsect1><refsect2><title>
- #: apt_preferences.5.xml:503
+ #: apt_preferences.5.xml:546
  msgid "Tracking Stable"
  msgstr "安定版の追跡"
  
  # type: Content of: <refentry><refsect1><refsect2><para><programlisting>
  #. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
- #: apt_preferences.5.xml:511
+ #: apt_preferences.5.xml:554
  #, no-wrap
  msgid ""
  "Explanation: Uninstall or do not install any Debian-originated\n"
@@@ -8797,7 -8962,7 +9089,7 @@@ msgstr "
  
  # type: Content of: <refentry><refsect1><refsect2><para>
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:505
+ #: apt_preferences.5.xml:548
  msgid ""
  "The following APT preferences file will cause APT to assign a priority "
  "higher than the default (500) to all package versions belonging to a "
@@@ -8813,8 -8978,8 +9105,8 @@@ msgstr "
  
  # type: Content of: <refentry><refsect1><refsect2><para><programlisting>
  #. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
- #: apt_preferences.5.xml:528 apt_preferences.5.xml:574
- #: apt_preferences.5.xml:632
+ #: apt_preferences.5.xml:571 apt_preferences.5.xml:617
+ #: apt_preferences.5.xml:675
  #, no-wrap
  msgid ""
  "apt-get install <replaceable>package-name</replaceable>\n"
@@@ -8827,7 -8992,7 +9119,7 @@@ msgstr "
  
  # type: Content of: <refentry><refsect1><refsect2><para>
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:523
+ #: apt_preferences.5.xml:566
  msgid ""
  "With a suitable &sources-list; file and the above preferences file, any of "
  "the following commands will cause APT to upgrade to the latest "
@@@ -8840,14 -9005,14 +9132,14 @@@ msgstr "
  
  # type: Content of: <refentry><refsect1><refsect2><para><programlisting>
  #. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
- #: apt_preferences.5.xml:540
+ #: apt_preferences.5.xml:583
  #, no-wrap
  msgid "apt-get install <replaceable>package</replaceable>/testing\n"
  msgstr "apt-get install <replaceable>package</replaceable>/testing\n"
  
  # type: Content of: <refentry><refsect1><refsect2><para>
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:534
+ #: apt_preferences.5.xml:577
  msgid ""
  "The following command will cause APT to upgrade the specified package to the "
  "latest version from the <literal>testing</literal> distribution; the package "
@@@ -8861,13 -9026,13 +9153,13 @@@ msgstr "
  
  # type: Content of: <refentry><refsect1><refsect2><title>
  #. type: Content of: <refentry><refsect1><refsect2><title>
- #: apt_preferences.5.xml:546
+ #: apt_preferences.5.xml:589
  msgid "Tracking Testing or Unstable"
  msgstr "テスト版や不安定版の追跡"
  
  # type: Content of: <refentry><refsect1><refsect2><para><programlisting>
  #. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
- #: apt_preferences.5.xml:555
+ #: apt_preferences.5.xml:598
  #, no-wrap
  msgid ""
  "Package: *\n"
@@@ -8896,7 -9061,7 +9188,7 @@@ msgstr "
  
  # type: Content of: <refentry><refsect1><refsect2><para>
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:548
+ #: apt_preferences.5.xml:591
  msgid ""
  "The following APT preferences file will cause APT to assign a high priority "
  "to package versions from the <literal>testing</literal> distribution, a "
@@@ -8914,7 -9079,7 +9206,7 @@@ msgstr "
  
  # type: Content of: <refentry><refsect1><refsect2><para>
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:569
+ #: apt_preferences.5.xml:612
  msgid ""
  "With a suitable &sources-list; file and the above preferences file, any of "
  "the following commands will cause APT to upgrade to the latest "
@@@ -8927,14 -9092,14 +9219,14 @@@ msgstr "
  
  # type: Content of: <refentry><refsect1><refsect2><para><programlisting>
  #. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
- #: apt_preferences.5.xml:589
+ #: apt_preferences.5.xml:632
  #, no-wrap
  msgid "apt-get install <replaceable>package</replaceable>/unstable\n"
  msgstr "apt-get install <replaceable>package</replaceable>/unstable\n"
  
  # type: Content of: <refentry><refsect1><refsect2><para>
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:580
+ #: apt_preferences.5.xml:623
  msgid ""
  "The following command will cause APT to upgrade the specified package to the "
  "latest version from the <literal>unstable</literal> distribution.  "
@@@ -8953,13 -9118,13 +9245,13 @@@ msgstr "
  "\" id=\"0\"/>"
  
  #. type: Content of: <refentry><refsect1><refsect2><title>
- #: apt_preferences.5.xml:596
+ #: apt_preferences.5.xml:639
  msgid "Tracking the evolution of a codename release"
  msgstr "コード名リリースの進化の追跡"
  
  # type: Content of: <refentry><refsect1><refsect2><para><programlisting>
  #. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
- #: apt_preferences.5.xml:610
+ #: apt_preferences.5.xml:653
  #, no-wrap
  msgid ""
  "Explanation: Uninstall or do not install any Debian-originated package versions\n"
@@@ -8993,7 -9158,7 +9285,7 @@@ msgstr "
  "Pin-Priority: -10\n"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:598
+ #: apt_preferences.5.xml:641
  msgid ""
  "The following APT preferences file will cause APT to assign a priority "
  "higher than the default (500) to all package versions belonging to a "
@@@ -9017,7 -9182,7 +9309,7 @@@ msgstr "
  "id=\"0\"/>"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:627
+ #: apt_preferences.5.xml:670
  msgid ""
  "With a suitable &sources-list; file and the above preferences file, any of "
  "the following commands will cause APT to upgrade to the latest version(s) in "
@@@ -9030,14 -9195,14 +9322,14 @@@ msgstr "
  
  # type: Content of: <refentry><refsect1><refsect2><para><programlisting>
  #. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
- #: apt_preferences.5.xml:647
+ #: apt_preferences.5.xml:690
  #, no-wrap
  msgid "apt-get install <replaceable>package</replaceable>/sid\n"
  msgstr "apt-get install <replaceable>package</replaceable>/sid\n"
  
  # type: Content of: <refentry><refsect1><refsect2><para>
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:638
+ #: apt_preferences.5.xml:681
  #, fuzzy
  msgid ""
  "The following command will cause APT to upgrade the specified package to the "
@@@ -9057,13 -9222,13 +9349,13 @@@ msgstr "
  
  # type: Content of: <refentry><refnamediv><refname>
  #. type: Content of: <refentry><refsect1><variablelist>
- #: apt_preferences.5.xml:656
+ #: apt_preferences.5.xml:699
  msgid "&file-preferences;"
  msgstr "&file-preferences;"
  
  # type: Content of: <refentry><refsect1><para>
  #. type: Content of: <refentry><refsect1><para>
- #: apt_preferences.5.xml:662
+ #: apt_preferences.5.xml:705
  msgid "&apt-get; &apt-cache; &apt-conf; &sources-list;"
  msgstr "&apt-get; &apt-cache; &apt-conf; &sources-list;"
  
@@@ -9203,8 -9368,8 +9495,9 @@@ msgstr "
  
  #. type: Content of: <refentry><refsect1><literallayout>
  #: sources.list.5.xml:81
--#, no-wrap
--msgid "deb uri distribution [component1] [component2] [...]"
++#, fuzzy, no-wrap
++#| msgid "deb uri distribution [component1] [component2] [...]"
++msgid "deb [ options ] uri distribution [component1] [component2] [...]"
  msgstr "deb uri distribution [component1] [component2] [...]"
  
  # type: Content of: <refentry><refsect1><para>
@@@ -9272,10 -9437,10 +9565,42 @@@ msgstr "
  "にアクセスするのに便利です。APT は、帯域の狭いサイトを効率よく扱うのに、異な"
  "るホストへは、接続を並行して行うようにもしています。"
  
--# type: Content of: <refentry><refsect1><para>
  #. type: Content of: <refentry><refsect1><para>
  #: sources.list.5.xml:112
  msgid ""
++"<literal>options</literal> is always optional and needs to be surounded by "
++"square brackets. It can consist of multiple settings in the form "
++"<literal><replaceable>setting</replaceable>=<replaceable>value</"
++"replaceable></literal>.  Multiple settings are separated by spaces. The "
++"following settings are supported by APT, note through that unsupported "
++"settings will be ignored silently:"
++msgstr ""
++
++#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
++#: sources.list.5.xml:117
++msgid ""
++"<literal>arch=<replaceable>arch1</replaceable>,<replaceable>arch2</"
++"replaceable>,…</literal> can be used to specify for which architectures "
++"packages information should be downloaded. If this option is not set all "
++"architectures defined by the <literal>APT::Architectures</literal> option "
++"will be downloaded."
++msgstr ""
++
++#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
++#: sources.list.5.xml:121
++msgid ""
++"<literal>trusted=yes</literal> can be set to indicate that packages from "
++"this source are always authenificated even if the <filename>Release</"
++"filename> file is not signed or the signature can't be checked. This "
++"disables parts of &apt-secure; and should therefore only be used in a local "
++"and trusted context. <literal>trusted=no</literal> is the opposite which "
++"handles even correctly authenificated sources as not authenificated."
++msgstr ""
++
++# type: Content of: <refentry><refsect1><para>
++#. type: Content of: <refentry><refsect1><para>
++#: sources.list.5.xml:128
++msgid ""
  "It is important to list sources in order of preference, with the most "
  "preferred source listed first. Typically this will result in sorting by "
  "speed from fastest to slowest (CD-ROM followed by hosts on a local network, "
@@@ -9288,12 -9453,12 +9613,12 @@@ msgstr "
  
  # type: Content of: <refentry><refsect1><para>
  #. type: Content of: <refentry><refsect1><para>
--#: sources.list.5.xml:117
++#: sources.list.5.xml:133
  msgid "Some examples:"
  msgstr "例:"
  
  #. type: Content of: <refentry><refsect1><literallayout>
--#: sources.list.5.xml:119
++#: sources.list.5.xml:135
  #, no-wrap
  msgid ""
  "deb http://ftp.debian.org/debian &stable-codename; main contrib non-free\n"
@@@ -9306,19 -9471,19 +9631,19 @@@ msgstr "
  
  # type: Content of: <refentry><refsect1><title>
  #. type: Content of: <refentry><refsect1><title>
--#: sources.list.5.xml:125
++#: sources.list.5.xml:141
  msgid "URI specification"
  msgstr "URI の仕様"
  
  # type: Content of: <refentry><refsect1><title>
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: sources.list.5.xml:130
++#: sources.list.5.xml:146
  msgid "file"
  msgstr "ファイル"
  
  # type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: sources.list.5.xml:132
++#: sources.list.5.xml:148
  msgid ""
  "The file scheme allows an arbitrary directory in the file system to be "
  "considered an archive. This is useful for NFS mounts and local mirrors or "
@@@ -9329,7 -9494,7 +9654,7 @@@ msgstr "
  
  # type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: sources.list.5.xml:139
++#: sources.list.5.xml:155
  msgid ""
  "The cdrom scheme allows APT to use a local CDROM drive with media swapping. "
  "Use the &apt-cdrom; program to create cdrom entries in the source list."
@@@ -9340,7 -9505,7 +9665,7 @@@ msgstr "
  
  # type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: sources.list.5.xml:146
++#: sources.list.5.xml:162
  msgid ""
  "The http scheme specifies an HTTP server for the archive. If an environment "
  "variable <envar>http_proxy</envar> is set with the format http://server:"
@@@ -9357,7 -9522,7 +9682,7 @@@ msgstr "
  
  # type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: sources.list.5.xml:157
++#: sources.list.5.xml:173
  msgid ""
  "The ftp scheme specifies an FTP server for the archive. APT's FTP behavior "
  "is highly configurable; for more information see the &apt-conf; manual page. "
@@@ -9376,13 -9541,13 +9701,13 @@@ msgstr "
  "れます。"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: sources.list.5.xml:166
++#: sources.list.5.xml:182
  msgid "copy"
  msgstr "copy"
  
  # type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: sources.list.5.xml:168
++#: sources.list.5.xml:184
  msgid ""
  "The copy scheme is identical to the file scheme except that packages are "
  "copied into the cache directory instead of used directly at their location.  "
@@@ -9393,18 -9558,18 +9718,18 @@@ msgstr "
  "て、APT でコピーを行う場合に便利です。"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: sources.list.5.xml:173
++#: sources.list.5.xml:189
  msgid "rsh"
  msgstr "rsh"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: sources.list.5.xml:173
++#: sources.list.5.xml:189
  msgid "ssh"
  msgstr "ssh"
  
  # type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: sources.list.5.xml:175
++#: sources.list.5.xml:191
  msgid ""
  "The rsh/ssh method invokes rsh/ssh to connect to a remote host as a given "
  "user and access the files. It is a good idea to do prior arrangements with "
@@@ -9419,12 -9584,12 +9744,12 @@@ msgstr "
  "します。"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: sources.list.5.xml:183
++#: sources.list.5.xml:199
  msgid "more recognizable URI types"
  msgstr "さらに認識できる URI タイプ"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: sources.list.5.xml:185
++#: sources.list.5.xml:201
  msgid ""
  "APT can be extended with more methods shipped in other optional packages "
  "which should follow the nameing scheme <literal>apt-transport-"
@@@ -9438,7 -9603,7 +9763,7 @@@ msgstr "
  
  # type: Content of: <refentry><refsect1><para>
  #. type: Content of: <refentry><refsect1><para>
--#: sources.list.5.xml:127
++#: sources.list.5.xml:143
  msgid ""
  "The currently recognized URI types are cdrom, file, http, ftp, copy, ssh, "
  "rsh.  <placeholder type=\"variablelist\" id=\"0\"/>"
@@@ -9448,7 -9613,7 +9773,7 @@@ msgstr "
  
  # type: Content of: <refentry><refsect1><para>
  #. type: Content of: <refentry><refsect1><para>
--#: sources.list.5.xml:199
++#: sources.list.5.xml:215
  msgid ""
  "Uses the archive stored locally (or NFS mounted) at /home/jason/debian for "
  "stable/main, stable/contrib, and stable/non-free."
@@@ -9457,38 -9622,38 +9782,61 @@@ msgstr "
  "free 用のローカル (または NFS) アーカイブを使用します。"
  
  #. type: Content of: <refentry><refsect1><literallayout>
--#: sources.list.5.xml:201
++#: sources.list.5.xml:217
  #, no-wrap
  msgid "deb file:/home/jason/debian stable main contrib non-free"
  msgstr "deb file:/home/jason/debian stable main contrib non-free"
  
  # type: Content of: <refentry><refsect1><para>
  #. type: Content of: <refentry><refsect1><para>
--#: sources.list.5.xml:203
++#: sources.list.5.xml:219
  msgid "As above, except this uses the unstable (development) distribution."
  msgstr "上記同様ですが、不安定版 (開発版) を使用します。"
  
  #. type: Content of: <refentry><refsect1><literallayout>
--#: sources.list.5.xml:204
++#: sources.list.5.xml:220
  #, no-wrap
  msgid "deb file:/home/jason/debian unstable main contrib non-free"
  msgstr "deb file:/home/jason/debian unstable main contrib non-free"
  
  # type: Content of: <refentry><refsect1><para>
  #. type: Content of: <refentry><refsect1><para>
--#: sources.list.5.xml:206
++#: sources.list.5.xml:222
  msgid "Source line for the above"
  msgstr "上記のソース行"
  
  #. type: Content of: <refentry><refsect1><literallayout>
--#: sources.list.5.xml:207
++#: sources.list.5.xml:223
  #, no-wrap
  msgid "deb-src file:/home/jason/debian unstable main contrib non-free"
  msgstr "deb-src file:/home/jason/debian unstable main contrib non-free"
  
++#. type: Content of: <refentry><refsect1><para>
++#: sources.list.5.xml:225
++msgid ""
++"The first line gets package information for the architectures in "
++"<literal>APT::Architectures</literal> while the second always retrieves "
++"<literal>amd64</literal> and <literal>armel</literal>."
++msgstr ""
++
++#. type: Content of: <refentry><refsect1><literallayout>
++#: sources.list.5.xml:227
++#, fuzzy, no-wrap
++#| msgid ""
++#| "deb http://ftp.debian.org/debian &stable-codename; main contrib non-free\n"
++#| "deb http://security.debian.org/ &stable-codename;/updates main contrib non-free\n"
++#| "   "
++msgid ""
++"deb http://ftp.debian.org/debian &stable-codename; main\n"
++"deb [ arch=amd64,armel ] http://ftp.debian.org/debian &stable-codename; main"
++msgstr ""
++"deb http://ftp.debian.org/debian &stable-codename; main contrib non-free\n"
++"deb http://security.debian.org/ &stable-codename;/updates main contrib non-free\n"
++"   "
++
  # type: Content of: <refentry><refsect1><para>
  #. type: Content of: <refentry><refsect1><para>
--#: sources.list.5.xml:209
++#: sources.list.5.xml:230
  msgid ""
  "Uses HTTP to access the archive at archive.debian.org, and uses only the "
  "hamm/main area."
@@@ -9498,14 -9663,14 +9846,14 @@@ msgstr "
  
  # type: <example></example>
  #. type: Content of: <refentry><refsect1><literallayout>
--#: sources.list.5.xml:211
++#: sources.list.5.xml:232
  #, no-wrap
  msgid "deb http://archive.debian.org/debian-archive hamm main"
  msgstr "deb http://archive.debian.org/debian-archive hamm main"
  
  # type: Content of: <refentry><refsect1><para>
  #. type: Content of: <refentry><refsect1><para>
--#: sources.list.5.xml:213
++#: sources.list.5.xml:234
  msgid ""
  "Uses FTP to access the archive at ftp.debian.org, under the debian "
  "directory, and uses only the &stable-codename;/contrib area."
@@@ -9515,14 -9680,14 +9863,14 @@@ msgstr "
  
  # type: <example></example>
  #. type: Content of: <refentry><refsect1><literallayout>
--#: sources.list.5.xml:215
++#: sources.list.5.xml:236
  #, no-wrap
  msgid "deb ftp://ftp.debian.org/debian &stable-codename; contrib"
  msgstr "deb ftp://ftp.debian.org/debian &stable-codename; contrib"
  
  # type: Content of: <refentry><refsect1><para>
  #. type: Content of: <refentry><refsect1><para>
--#: sources.list.5.xml:217
++#: sources.list.5.xml:238
  msgid ""
  "Uses FTP to access the archive at ftp.debian.org, under the debian "
  "directory, and uses only the unstable/contrib area. If this line appears as "
@@@ -9536,13 -9701,13 +9884,13 @@@ msgstr "
  
  # type: <example></example>
  #. type: Content of: <refentry><refsect1><literallayout>
--#: sources.list.5.xml:221
++#: sources.list.5.xml:242
  #, no-wrap
  msgid "deb ftp://ftp.debian.org/debian unstable contrib"
  msgstr "deb ftp://ftp.debian.org/debian unstable contrib"
  
  #. type: Content of: <refentry><refsect1><para><literallayout>
--#: sources.list.5.xml:230
++#: sources.list.5.xml:251
  #, fuzzy, no-wrap
  #| msgid "deb http://ftp.de.debian.org/debian-non-US unstable/binary-$(ARCH)/"
  msgid "deb http://ftp.tlh.debian.org/universe unstable/binary-$(ARCH)/"
@@@ -9550,7 -9715,7 +9898,7 @@@ msgstr "deb http://ftp.de.debian.org/de
  
  # type: Content of: <refentry><refsect1><para>
  #. type: Content of: <refentry><refsect1><para>
--#: sources.list.5.xml:223
++#: sources.list.5.xml:244
  #, fuzzy
  #| msgid ""
  #| "Uses HTTP to access the archive at nonus.debian.org, under the debian-non-"
@@@ -9579,7 -9744,7 +9927,7 @@@ msgstr "
  
  # type: Content of: <refentry><refsect1><para>
  #. type: Content of: <refentry><refsect1><para>
--#: sources.list.5.xml:235
++#: sources.list.5.xml:256
  msgid "&apt-cache; &apt-conf;"
  msgstr "&apt-cache; &apt-conf;"
  
@@@ -10767,19 -10932,42 +11115,50 @@@ msgstr "  # apt-get -o dir::cache::arch
  msgid "Which will use the already fetched archives on the disc."
  msgstr "これで、disc にある取得済みのアーカイブを使用するようになります。"
  
 -#~ msgid "<option>--md5</option>"
 -#~ msgstr "<option>--md5</option>"
 -
+ # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
+ #~ msgid ""
 -#~ "Generate MD5 sums. This defaults to on, when turned off the generated "
 -#~ "index files will not have MD5Sum fields where possible.  Configuration "
 -#~ "Item: <literal>APT::FTPArchive::MD5</literal>"
++#~ "Update the local keyring with the keyring of Debian archive keys and "
++#~ "removes from the keyring the archive keys which are no longer valid."
+ #~ msgstr ""
 -#~ "MD5 sum を生成します。デフォルトで on になっており、off にすると生成したイ"
 -#~ "ンデックスファイルに MD5Sum フィールドがありません。設定項目 - "
 -#~ "<literal>APT::FTPArchive::MD5</literal>"
++#~ "Debian アーカイブキーで、ローカルキーリングを更新し、もう有効でないキーを"
++#~ "キーリングから削除します。"
+ #~ msgid "unmarkauto"
+ #~ msgstr "unmarkauto"
+ #~ msgid "<option>-h</option>"
+ #~ msgstr "<option>-h</option>"
+ #~ msgid "<option>--help</option>"
+ #~ msgstr "<option>--help</option>"
+ # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
+ #~ msgid "Show a short usage summary."
+ #~ msgstr "短い使用方法を表示します。"
+ #~ msgid "<option>-v</option>"
+ #~ msgstr "<option>-v</option>"
+ #~ msgid "<option>--version</option>"
+ #~ msgstr "<option>--version</option>"
+ # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
+ #~ msgid "Show the program version."
+ #~ msgstr "プログラムのバージョン情報を表示します"
 +#~ msgid "<option>--md5</option>"
 +#~ msgstr "<option>--md5</option>"
 +
 +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
 +#~ msgid ""
 +#~ "Generate MD5 sums. This defaults to on, when turned off the generated "
 +#~ "index files will not have MD5Sum fields where possible.  Configuration "
 +#~ "Item: <literal>APT::FTPArchive::MD5</literal>"
 +#~ msgstr ""
 +#~ "MD5 sum を生成します。デフォルトで on になっており、off にすると生成したイ"
 +#~ "ンデックスファイルに MD5Sum フィールドがありません。設定項目 - "
 +#~ "<literal>APT::FTPArchive::MD5</literal>"
 +
  # type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
  #~ msgid "to the version that is already installed (if any)."
  #~ msgstr "(あるならば) 既にインストールされているバージョン。"
diff --combined doc/po/pl.po
index 16b719978e67e8f6e1660afd81839e85fe1e6b8b,0721cbf132c7d8b4a5b2093887f24e39db593129..2f7566fe404309386ca84efefff28c960a91b28f
@@@ -10,7 -10,7 +10,7 @@@
  msgid ""
  msgstr ""
  "Project-Id-Version: apt 0.7.25.3\n"
- "POT-Creation-Date: 2011-04-05 10:22+0300\n"
 -"POT-Creation-Date: 2011-06-08 16:54+0300\n"
++"POT-Creation-Date: 2011-11-10 16:42+0100\n"
  "PO-Revision-Date: 2010-03-18 22:00+0100\n"
  "Last-Translator: Robert Luberda <robert@debian.org>\n"
  "Language-Team: <debian-l10n-polish@lists.debian.org>\n"
@@@ -787,8 -787,8 +787,8 @@@ msgstr "
  
  #. type: Content of: <refentry><refsect1><title>
  #: apt-cache.8.xml:64 apt-cdrom.8.xml:50 apt-config.8.xml:50
--#: apt-extracttemplates.1.xml:46 apt-ftparchive.1.xml:59 apt-get.8.xml:114
- #: apt-key.8.xml:38 apt-mark.8.xml:55 apt-secure.8.xml:43
++#: apt-extracttemplates.1.xml:46 apt-ftparchive.1.xml:59 apt-get.8.xml:121
+ #: apt-key.8.xml:38 apt-mark.8.xml:56 apt-secure.8.xml:43
  #: apt-sortpkgs.1.xml:47 apt.conf.5.xml:42 apt_preferences.5.xml:36
  #: sources.list.5.xml:36
  msgid "Description"
@@@ -810,7 -810,7 +810,7 @@@ msgstr "
  
  #
  #. type: Content of: <refentry><refsect1><para>
--#: apt-cache.8.xml:70 apt-get.8.xml:120
++#: apt-cache.8.xml:70 apt-get.8.xml:127
  msgid ""
  "Unless the <option>-h</option>, or <option>--help</option> option is given, "
  "one of the commands below must be present."
@@@ -1335,8 -1335,8 +1335,8 @@@ msgstr "
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
  #: apt-cache.8.xml:278 apt-config.8.xml:96 apt-extracttemplates.1.xml:59
- #: apt-ftparchive.1.xml:525 apt-get.8.xml:331 apt-mark.8.xml:92
 -#: apt-ftparchive.1.xml:525 apt-get.8.xml:331 apt-mark.8.xml:126
--#: apt-sortpkgs.1.xml:57 apt.conf.5.xml:560 apt.conf.5.xml:582
++#: apt-ftparchive.1.xml:525 apt-get.8.xml:342 apt-mark.8.xml:126
++#: apt-sortpkgs.1.xml:57 apt.conf.5.xml:577 apt.conf.5.xml:599
  msgid "options"
  msgstr "opcje"
  
@@@ -1363,7 -1363,7 +1363,7 @@@ msgstr "
  "<literal>Dir::Cache::pkgcache</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-cache.8.xml:288 apt-ftparchive.1.xml:571 apt-get.8.xml:393
++#: apt-cache.8.xml:288 apt-ftparchive.1.xml:572 apt-get.8.xml:404
  #: apt-sortpkgs.1.xml:61
  msgid "<option>-s</option>"
  msgstr "<option>-s</option>"
@@@ -1391,12 -1391,12 +1391,12 @@@ msgstr "
  "Cache::srcpkgcache</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-cache.8.xml:296 apt-ftparchive.1.xml:545 apt-get.8.xml:383
++#: apt-cache.8.xml:296 apt-ftparchive.1.xml:546 apt-get.8.xml:394
  msgid "<option>-q</option>"
  msgstr "<option>-q</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-cache.8.xml:296 apt-ftparchive.1.xml:545 apt-get.8.xml:383
++#: apt-cache.8.xml:296 apt-ftparchive.1.xml:546 apt-get.8.xml:394
  msgid "<option>--quiet</option>"
  msgstr "<option>--quiet</option>"
  
@@@ -1503,7 -1503,7 +1503,7 @@@ msgstr "<option>--no-act</option>
  #| "<literal>APT::Cache::RecurseDepends</literal>."
  msgid ""
  "Per default the <literal>depends</literal> and <literal>rdepends</literal> "
--"print all dependencies. This can be twicked with these flags which will omit "
++"print all dependencies. This can be tweaked with these flags which will omit "
  "the specified dependency type.  Configuration Item: <literal>APT::Cache::"
  "Show<replaceable>DependencyType</replaceable></literal> e.g. <literal>APT::"
  "Cache::ShowRecommends</literal>."
@@@ -1514,7 -1514,7 +1514,7 @@@ msgstr "
  "konfiguracyjnym: <literal>APT::Cache::RecurseDepends</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-cache.8.xml:323 apt-cdrom.8.xml:124 apt-get.8.xml:350
++#: apt-cache.8.xml:323 apt-cdrom.8.xml:124 apt-get.8.xml:361
  msgid "<option>-f</option>"
  msgstr "<option>-f</option>"
  
@@@ -1534,7 -1534,7 +1534,8 @@@ msgstr "
  "konfiguracyjnym: <literal>APT::Cache::ShowFull</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-cache.8.xml:328 apt-cdrom.8.xml:134 apt-ftparchive.1.xml:583
++#: apt-cache.8.xml:328 apt-cdrom.8.xml:134 apt-ftparchive.1.xml:584
++#: apt-get.8.xml:452
  msgid "<option>-a</option>"
  msgstr "<option>-a</option>"
  
@@@ -1660,14 -1660,14 +1661,14 @@@ msgstr "
  
  #. type: Content of: <refentry><refsect1><variablelist>
  #: apt-cache.8.xml:367 apt-cdrom.8.xml:153 apt-config.8.xml:101
--#: apt-extracttemplates.1.xml:70 apt-ftparchive.1.xml:611 apt-get.8.xml:570
- #: apt-sortpkgs.1.xml:67
++#: apt-extracttemplates.1.xml:70 apt-ftparchive.1.xml:612 apt-get.8.xml:596
+ #: apt-mark.8.xml:140 apt-sortpkgs.1.xml:67
  msgid "&apt-commonoptions;"
  msgstr "&apt-commonoptions;"
  
  #. type: Content of: <refentry><refsect1><title>
- #: apt-cache.8.xml:372 apt-get.8.xml:575 apt-key.8.xml:156 apt-mark.8.xml:125
- #: apt.conf.5.xml:1093 apt_preferences.5.xml:654
 -#: apt-cache.8.xml:372 apt-get.8.xml:575 apt-key.8.xml:172 apt-mark.8.xml:144
 -#: apt.conf.5.xml:1093 apt_preferences.5.xml:697
++#: apt-cache.8.xml:372 apt-get.8.xml:601 apt-key.8.xml:175 apt-mark.8.xml:144
++#: apt.conf.5.xml:1110 apt_preferences.5.xml:697
  msgid "Files"
  msgstr "Pliki"
  
@@@ -1678,10 -1678,10 +1679,10 @@@ msgstr "&file-sourceslist; &file-statel
  
  #. type: Content of: <refentry><refsect1><title>
  #: apt-cache.8.xml:379 apt-cdrom.8.xml:158 apt-config.8.xml:106
--#: apt-extracttemplates.1.xml:77 apt-ftparchive.1.xml:627 apt-get.8.xml:585
- #: apt-key.8.xml:177 apt-mark.8.xml:131 apt-secure.8.xml:185
- #: apt-sortpkgs.1.xml:72 apt.conf.5.xml:1099 apt_preferences.5.xml:661
 -#: apt-key.8.xml:193 apt-mark.8.xml:150 apt-secure.8.xml:185
 -#: apt-sortpkgs.1.xml:72 apt.conf.5.xml:1099 apt_preferences.5.xml:704
--#: sources.list.5.xml:234
++#: apt-extracttemplates.1.xml:77 apt-ftparchive.1.xml:628 apt-get.8.xml:611
++#: apt-key.8.xml:196 apt-mark.8.xml:150 apt-secure.8.xml:185
++#: apt-sortpkgs.1.xml:72 apt.conf.5.xml:1116 apt_preferences.5.xml:704
++#: sources.list.5.xml:255
  msgid "See Also"
  msgstr "Zobacz także"
  
@@@ -1693,8 -1693,8 +1694,8 @@@ msgstr "&apt-conf;, &sources-list;, &ap
  
  #. type: Content of: <refentry><refsect1><title>
  #: apt-cache.8.xml:384 apt-cdrom.8.xml:163 apt-config.8.xml:111
--#: apt-extracttemplates.1.xml:81 apt-ftparchive.1.xml:631 apt-get.8.xml:591
- #: apt-mark.8.xml:135 apt-sortpkgs.1.xml:76
++#: apt-extracttemplates.1.xml:81 apt-ftparchive.1.xml:632 apt-get.8.xml:617
+ #: apt-mark.8.xml:154 apt-sortpkgs.1.xml:76
  msgid "Diagnostics"
  msgstr "Diagnostyka"
  
@@@ -1837,12 -1837,12 +1838,12 @@@ msgstr "
  "\"variablelist\" id=\"0\"/>"
  
  #. type: Content of: <refentry><refsect1><title>
- #: apt-cdrom.8.xml:94 apt-key.8.xml:142
 -#: apt-cdrom.8.xml:94 apt-key.8.xml:158
++#: apt-cdrom.8.xml:94 apt-key.8.xml:161
  msgid "Options"
  msgstr "Opcje"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-cdrom.8.xml:98 apt-ftparchive.1.xml:539 apt-get.8.xml:345
++#: apt-cdrom.8.xml:98 apt-ftparchive.1.xml:540 apt-get.8.xml:356
  msgid "<option>-d</option>"
  msgstr "<option>-d</option>"
  
@@@ -1888,7 -1888,7 +1889,7 @@@ msgstr "
  "CDROM::Rename</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-cdrom.8.xml:116 apt-get.8.xml:364
++#: apt-cdrom.8.xml:116 apt-get.8.xml:375
  msgid "<option>-m</option>"
  msgstr "<option>-m</option>"
  
@@@ -1948,17 -1948,17 +1949,17 @@@ msgstr "
  "znajdzie wszystkie takie pliki."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-cdrom.8.xml:143 apt-get.8.xml:395
++#: apt-cdrom.8.xml:143 apt-get.8.xml:406
  msgid "<option>--just-print</option>"
  msgstr "<option>--just-print</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-cdrom.8.xml:144 apt-get.8.xml:397
++#: apt-cdrom.8.xml:144 apt-get.8.xml:408
  msgid "<option>--recon</option>"
  msgstr "<option>--recon</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-cdrom.8.xml:145 apt-get.8.xml:398
++#: apt-cdrom.8.xml:145 apt-get.8.xml:409
  msgid "<option>--no-act</option>"
  msgstr "<option>--no-act</option>"
  
@@@ -2105,7 -2105,7 +2106,7 @@@ msgid "Just show the contents of the co
  msgstr "Wyświetla zawartość przestrzeni konfiguracji."
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt-config.8.xml:107 apt-extracttemplates.1.xml:78 apt-ftparchive.1.xml:628
++#: apt-config.8.xml:107 apt-extracttemplates.1.xml:78 apt-ftparchive.1.xml:629
  #: apt-sortpkgs.1.xml:73
  msgid "&apt-conf;"
  msgstr "&apt-conf;"
@@@ -2183,7 -2183,7 +2184,7 @@@ msgstr "
  "config.XXXX</filename>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-extracttemplates.1.xml:63 apt-get.8.xml:504
++#: apt-extracttemplates.1.xml:63 apt-get.8.xml:530
  msgid "<option>-t</option>"
  msgstr "<option>-t</option>"
  
@@@ -2432,7 -2432,7 +2433,7 @@@ msgid "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-ftparchive.1.xml:145 apt-get.8.xml:287
++#: apt-ftparchive.1.xml:145 apt-get.8.xml:298
  msgid "clean"
  msgstr "clean"
  
@@@ -2901,8 -2901,8 +2902,8 @@@ msgid "
  "free</literal>"
  msgstr ""
  
--#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
--#: apt-ftparchive.1.xml:394
++#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
++#: apt-ftparchive.1.xml:394 apt.conf.5.xml:157
  msgid "Architectures"
  msgstr ""
  
@@@ -3106,20 -3106,20 +3107,20 @@@ msgid "
  "Configuration Items: <literal>APT::FTPArchive::<replaceable>Checksum</"
  "replaceable></literal> and <literal>APT::FTPArchive::<replaceable>Index</"
  "replaceable>::<replaceable>Checksum</replaceable></literal> where "
--"<literal>Index</literal> can be <literal>Packages</literal>, "
--"<literal>Sources</literal> or <literal>Release</literal> and "
--"<literal>Checksum</literal> can be <literal>MD5</literal>, <literal>SHA1</"
--"literal> or <literal>SHA256</literal>."
++"<literal><replaceable>Index</replaceable></literal> can be "
++"<literal>Packages</literal>, <literal>Sources</literal> or <literal>Release</"
++"literal> and <literal><replaceable>Checksum</replaceable></literal> can be "
++"<literal>MD5</literal>, <literal>SHA1</literal> or <literal>SHA256</literal>."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-ftparchive.1.xml:539
++#: apt-ftparchive.1.xml:540
  msgid "<option>--db</option>"
  msgstr "<option>--db</option>"
  
  #
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-ftparchive.1.xml:541
++#: apt-ftparchive.1.xml:542
  #, fuzzy
  msgid ""
  "Use a binary caching DB. This has no effect on the generate command.  "
@@@ -3130,7 -3130,7 +3131,7 @@@ msgstr "
  
  #
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-ftparchive.1.xml:547
++#: apt-ftparchive.1.xml:548
  msgid ""
  "Quiet; produces output suitable for logging, omitting progress indicators.  "
  "More q's will produce more quiet up to a maximum of 2. You can also use "
@@@ -3144,13 -3144,13 +3145,13 @@@ msgstr "
  "pliku konfiguracyjnym: <literal>quiet</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-ftparchive.1.xml:553
++#: apt-ftparchive.1.xml:554
  msgid "<option>--delink</option>"
  msgstr "<option>--delink</option>"
  
  #
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-ftparchive.1.xml:555
++#: apt-ftparchive.1.xml:556
  #, fuzzy
  msgid ""
  "Perform Delinking. If the <literal>External-Links</literal> setting is used "
@@@ -3164,12 -3164,12 +3165,12 @@@ msgstr "
  "<literal>APT::Cache::Generate</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-ftparchive.1.xml:561
++#: apt-ftparchive.1.xml:562
  msgid "<option>--contents</option>"
  msgstr "<option>--contents</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-ftparchive.1.xml:563
++#: apt-ftparchive.1.xml:564
  msgid ""
  "Perform contents generation. When this option is set and package indexes are "
  "being generated with a cache DB then the file listing will also be extracted "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-ftparchive.1.xml:571
++#: apt-ftparchive.1.xml:572
  msgid "<option>--source-override</option>"
  msgstr "<option>--source-override</option>"
  
  #
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-ftparchive.1.xml:573
++#: apt-ftparchive.1.xml:574
  #, fuzzy
  msgid ""
  "Select the source override file to use with the <literal>sources</literal> "
@@@ -3197,13 -3197,13 +3198,13 @@@ msgstr "
  "konfiguracyjnym: <literal>APT::Cache::Installed</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-ftparchive.1.xml:577
++#: apt-ftparchive.1.xml:578
  msgid "<option>--readonly</option>"
  msgstr "<option>--readonly</option>"
  
  #
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-ftparchive.1.xml:579
++#: apt-ftparchive.1.xml:580
  #, fuzzy
  msgid ""
  "Make the caching databases read only.  Configuration Item: <literal>APT::"
@@@ -3213,14 -3213,14 +3214,14 @@@ msgstr "
  "pliku konfiguracyjnym: <literal>APT::Cache::NamesOnly</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-ftparchive.1.xml:583
++#: apt-ftparchive.1.xml:584
  #, fuzzy
  #| msgid "<option>-a</option>"
  msgid "<option>--arch</option>"
  msgstr "<option>-a</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-ftparchive.1.xml:584
++#: apt-ftparchive.1.xml:585
  #, fuzzy
  #| msgid ""
  #| "If the command is either <literal>install</literal> or <literal>remove</"
@@@ -3240,13 -3240,13 +3241,13 @@@ msgstr "
  "AutomaticRemove</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-ftparchive.1.xml:590
++#: apt-ftparchive.1.xml:591
  #, fuzzy
  msgid "<option>APT::FTPArchive::AlwaysStat</option>"
  msgstr "<option>--version</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-ftparchive.1.xml:592
++#: apt-ftparchive.1.xml:593
  msgid ""
  "&apt-ftparchive; caches as much as possible of metadata in a cachedb. If "
  "packages are recompiled and/or republished with the same version again, this "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-ftparchive.1.xml:602
++#: apt-ftparchive.1.xml:603
  #, fuzzy
  msgid "<option>APT::FTPArchive::LongDescription</option>"
  msgstr "<option>--version</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-ftparchive.1.xml:604
++#: apt-ftparchive.1.xml:605
  msgid ""
  "This configuration option defaults to \"<literal>true</literal>\" and should "
  "only be set to <literal>\"false\"</literal> if the Archive generated with "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><title>
- #: apt-ftparchive.1.xml:616 apt.conf.5.xml:1087 apt_preferences.5.xml:501
 -#: apt-ftparchive.1.xml:616 apt.conf.5.xml:1087 apt_preferences.5.xml:544
--#: sources.list.5.xml:198
++#: apt-ftparchive.1.xml:617 apt.conf.5.xml:1104 apt_preferences.5.xml:544
++#: sources.list.5.xml:214
  msgid "Examples"
  msgstr "Przykłady"
  
  #. type: Content of: <refentry><refsect1><para><programlisting>
--#: apt-ftparchive.1.xml:622
++#: apt-ftparchive.1.xml:623
  #, no-wrap
  msgid "<command>apt-ftparchive</command> packages <replaceable>directory</replaceable> | <command>gzip</command> > <filename>Packages.gz</filename>\n"
  msgstr "<command>apt-ftparchive</command> packages <replaceable>katalog</replaceable> | <command>gzip</command> > <filename>Packages.gz</filename>\n"
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt-ftparchive.1.xml:618
++#: apt-ftparchive.1.xml:619
  msgid ""
  "To create a compressed Packages file for a directory containing binary "
  "packages (.deb): <placeholder type=\"programlisting\" id=\"0\"/>"
@@@ -3296,7 -3296,7 +3297,7 @@@ msgstr "
  
  #
  #. type: Content of: <refentry><refsect1><para>
--#: apt-ftparchive.1.xml:632
++#: apt-ftparchive.1.xml:633
  msgid ""
  "<command>apt-ftparchive</command> returns zero on normal operation, decimal "
  "100 on error."
@@@ -3367,10 -3367,10 +3368,11 @@@ msgid "
  "<option>-o= <replaceable>config_string</replaceable> </option> </arg> <arg> "
  "<option>-c= <replaceable>config_file</replaceable> </option> </arg> <arg> "
  "<option>-t=</option> <arg choice='plain'> <replaceable>target_release</"
--"replaceable> </arg> </arg> <group choice=\"req\"> <arg "
--"choice='plain'>update</arg> <arg choice='plain'>upgrade</arg> <arg "
--"choice='plain'>dselect-upgrade</arg> <arg choice='plain'>dist-upgrade</arg> "
--"<arg choice='plain'>install <arg choice=\"plain\" rep=\"repeat"
++"replaceable> </arg> </arg> <arg> <option>-a=</option> <arg choice='plain'> "
++"<replaceable>default_architecture</replaceable> </arg> </arg> <group choice="
++"\"req\"> <arg choice='plain'>update</arg> <arg choice='plain'>upgrade</arg> "
++"<arg choice='plain'>dselect-upgrade</arg> <arg choice='plain'>dist-upgrade</"
++"arg> <arg choice='plain'>install <arg choice=\"plain\" rep=\"repeat"
  "\"><replaceable>pkg</replaceable> <arg> <group choice='req'> <arg "
  "choice='plain'> =<replaceable>pkg_version_number</replaceable> </arg> <arg "
  "choice='plain'> /<replaceable>target_release</replaceable> </arg> </group> </"
@@@ -3424,7 -3424,7 +3426,7 @@@ msgstr "
  
  #
  #. type: Content of: <refentry><refsect1><para>
--#: apt-get.8.xml:115
++#: apt-get.8.xml:122
  #, fuzzy
  #| msgid ""
  #| "<command>apt-get</command> is the command-line tool for handling "
@@@ -3444,13 -3444,13 +3446,13 @@@ msgstr "
  "&wajig;."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:124 apt-key.8.xml:127
++#: apt-get.8.xml:131 apt-key.8.xml:127
  msgid "update"
  msgstr "update"
  
  #
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:125
++#: apt-get.8.xml:132
  msgid ""
  "<literal>update</literal> is used to resynchronize the package index files "
  "from their sources. The indexes of available packages are fetched from the "
@@@ -3474,13 -3474,13 +3476,13 @@@ msgstr "
  "<filename>Packages.gz</filename> nie jest wcześniej znany."
  
  #. type: <tag></tag>
--#: apt-get.8.xml:136 guide.sgml:121
++#: apt-get.8.xml:143 guide.sgml:121
  msgid "upgrade"
  msgstr "upgrade"
  
  #
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:137
++#: apt-get.8.xml:144
  msgid ""
  "<literal>upgrade</literal> is used to install the newest versions of all "
  "packages currently installed on the system from the sources enumerated in "
@@@ -3505,13 -3505,13 +3507,13 @@@ msgstr "
  "wcześniej wykonać <literal>update</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:149
++#: apt-get.8.xml:156
  msgid "dselect-upgrade"
  msgstr "dselect-upgrade"
  
  #
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:150
++#: apt-get.8.xml:157
  msgid ""
  "<literal>dselect-upgrade</literal> is used in conjunction with the "
  "traditional Debian packaging front-end, &dselect;. <literal>dselect-upgrade</"
@@@ -3529,13 -3529,13 +3531,13 @@@ msgstr "
  "nowych)."
  
  #. type: <tag></tag>
--#: apt-get.8.xml:159 guide.sgml:140
++#: apt-get.8.xml:166 guide.sgml:140
  msgid "dist-upgrade"
  msgstr "dist-upgrade"
  
  #
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:160
++#: apt-get.8.xml:167
  msgid ""
  "<literal>dist-upgrade</literal> in addition to performing the function of "
  "<literal>upgrade</literal>, also intelligently handles changing dependencies "
@@@ -3559,13 -3559,13 +3561,13 @@@ msgstr "
  "poszczególnych pakietów."
  
  #. type: <tag></tag>
--#: apt-get.8.xml:172 guide.sgml:131
++#: apt-get.8.xml:179 guide.sgml:131
  msgid "install"
  msgstr "install"
  
  #
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:174
++#: apt-get.8.xml:181
  msgid ""
  "<literal>install</literal> is followed by one or more packages desired for "
  "installation or upgrading.  Each package is a package name, not a fully "
@@@ -3595,7 -3595,7 +3597,7 @@@ msgstr "
  
  #
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:192
++#: apt-get.8.xml:199
  msgid ""
  "A specific version of a package can be selected for installation by "
  "following the package name with an equals and the version of the package to "
@@@ -3613,7 -3613,7 +3615,7 @@@ msgstr "
  
  #
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:199
++#: apt-get.8.xml:206
  msgid ""
  "Both of the version selection mechanisms can downgrade packages and must be "
  "used with care."
@@@ -3623,7 -3623,7 +3625,7 @@@ msgstr "
  "ostrożnie."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:202
++#: apt-get.8.xml:209
  msgid ""
  "This is also the target to use if you want to upgrade one or more already-"
  "installed packages without upgrading every package you have on your system. "
@@@ -3644,7 -3644,7 +3646,7 @@@ msgstr "
  
  #
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:213
++#: apt-get.8.xml:220
  msgid ""
  "Finally, the &apt-preferences; mechanism allows you to create an alternative "
  "installation policy for individual packages."
@@@ -3654,7 -3654,7 +3656,7 @@@ msgstr "
  
  #
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:217
++#: apt-get.8.xml:224
  msgid ""
  "If no package matches the given expression and the expression contains one "
  "of '.', '?' or '*' then it is assumed to be a POSIX regular expression, and "
@@@ -3675,13 -3675,13 +3677,13 @@@ msgstr "
  "lub \"$\", można też stworzyć bardziej specyficzne wyrażenie regularne."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:226
++#: apt-get.8.xml:233
  msgid "remove"
  msgstr "remove"
  
  #
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:227
++#: apt-get.8.xml:234
  msgid ""
  "<literal>remove</literal> is identical to <literal>install</literal> except "
  "that packages are removed instead of installed. Note the removing a package "
@@@ -3695,12 -3695,12 +3697,12 @@@ msgstr "
  "pakiet zostanie zainstalowany zamiast zostać usunięty."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:234
++#: apt-get.8.xml:241
  msgid "purge"
  msgstr "purge"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:235
++#: apt-get.8.xml:242
  msgid ""
  "<literal>purge</literal> is identical to <literal>remove</literal> except "
  "that packages are removed and purged (any configuration files are deleted "
@@@ -3711,13 -3711,13 +3713,13 @@@ msgstr "
  "wszystkie pliki konfiguracyjne)."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:239
++#: apt-get.8.xml:246
  msgid "source"
  msgstr "source"
  
  #
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:240
++#: apt-get.8.xml:247
  msgid ""
  "<literal>source</literal> causes <command>apt-get</command> to fetch source "
  "packages. APT will examine the available packages to decide which source "
@@@ -3737,7 -3737,7 +3739,7 @@@ msgstr "
  "wydanie</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:248
++#: apt-get.8.xml:255
  msgid ""
  "Source packages are tracked separately from binary packages via <literal>deb-"
  "src</literal> type lines in the &sources-list; file. This means that you "
@@@ -3753,12 -3753,12 +3755,19 @@@ msgstr "
  "jest zainstalowana lub możliwa do zainstalowania."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:255
++#: apt-get.8.xml:262
++#, fuzzy
++#| msgid ""
++#| "If the <option>--compile</option> option is specified then the package "
++#| "will be compiled to a binary .deb using <command>dpkg-buildpackage</"
++#| "command>, if <option>--download-only</option> is specified then the "
++#| "source package will not be unpacked."
  msgid ""
  "If the <option>--compile</option> option is specified then the package will "
--"be compiled to a binary .deb using <command>dpkg-buildpackage</command>, if "
--"<option>--download-only</option> is specified then the source package will "
--"not be unpacked."
++"be compiled to a binary .deb using <command>dpkg-buildpackage</command> for "
++"the architecture as defined by the <command>--host-architecture</command> "
++"option.  If <option>--download-only</option> is specified then the source "
++"package will not be unpacked."
  msgstr ""
  "Jeżeli podano opcję <option>--compile</option>, to pakiet źródłowy zostanie "
  "skompilowany do pakietu binarnego .deb za pomocą programu <command>dpkg-"
  
  #
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:260
++#: apt-get.8.xml:269
  msgid ""
  "A specific source version can be retrieved by postfixing the source name "
  "with an equals and then the version to fetch, similar to the mechanism used "
@@@ -3783,7 -3783,7 +3792,7 @@@ msgstr "
  
  #
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:266
++#: apt-get.8.xml:275
  msgid ""
  "Note that source packages are not tracked like binary packages, they exist "
  "only in the current directory and are similar to downloading source tar "
@@@ -3794,29 -3794,29 +3803,36 @@@ msgstr "
  "ściągnięte oryginalne źródła programu ze strony jego autorów."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:271
++#: apt-get.8.xml:280
  msgid "build-dep"
  msgstr "build-dep"
  
  #
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:272
++#: apt-get.8.xml:281
++#, fuzzy
++#| msgid ""
++#| "<literal>build-dep</literal> causes apt-get to install/remove packages in "
++#| "an attempt to satisfy the build dependencies for a source package."
  msgid ""
  "<literal>build-dep</literal> causes apt-get to install/remove packages in an "
--"attempt to satisfy the build dependencies for a source package."
++"attempt to satisfy the build dependencies for a source package. By default "
++"the dependencies are satisfied to build the package nativly. If desired a "
++"host-architecture can be specified with the <option>--host-architecture</"
++"option> option instead."
  msgstr ""
  "<literal>build-dep</literal> powoduje, że apt-get zainstaluje/usunie pakiety "
  "tak, żeby spełnić zależności wymagane do zbudowania danego pakietu "
  "źródłowego."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:276
++#: apt-get.8.xml:287
  msgid "check"
  msgstr "check"
  
  #
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:277
++#: apt-get.8.xml:288
  msgid ""
  "<literal>check</literal> is a diagnostic tool; it updates the package cache "
  "and checks for broken dependencies."
@@@ -3825,20 -3825,20 +3841,20 @@@ msgstr "
  "bufor (cache) pakietów i szuka zepsutych pakietów."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:281
++#: apt-get.8.xml:292
  msgid "download"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:282
++#: apt-get.8.xml:293
  msgid ""
  "<literal>download</literal> will download the given binary package into the "
--"current directoy."
++"current directory."
  msgstr ""
  
  #
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:288
++#: apt-get.8.xml:299
  msgid ""
  "<literal>clean</literal> clears out the local repository of retrieved "
  "package files. It removes everything but the lock file from "
@@@ -3857,13 -3857,13 +3873,13 @@@ msgstr "
  "literal>, aby zwolnić trochę miejsca na dysku."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:297
++#: apt-get.8.xml:308
  msgid "autoclean"
  msgstr "autoclean"
  
  #
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:298
++#: apt-get.8.xml:309
  msgid ""
  "Like <literal>clean</literal>, <literal>autoclean</literal> clears out the "
  "local repository of retrieved package files. The difference is that it only "
@@@ -3883,28 -3883,28 +3899,33 @@@ msgstr "
  "zawierających zainstalowane pakiety."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:307
++#: apt-get.8.xml:318
  msgid "autoremove"
  msgstr "autoremove"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:308
++#: apt-get.8.xml:319
++#, fuzzy
++#| msgid ""
++#| "<literal>autoremove</literal> is used to remove packages that were "
++#| "automatically installed to satisfy dependencies for some package and that "
++#| "are no more needed."
  msgid ""
  "<literal>autoremove</literal> is used to remove packages that were "
--"automatically installed to satisfy dependencies for some package and that "
--"are no more needed."
++"automatically installed to satisfy dependencies for other packages and are "
++"now no longer needed."
  msgstr ""
  "<literal>autoremove</literal> jest używane do usuwania pakietów, które  "
  "zostały zainstalowane automatycznie, żeby rozwiązać zależności, i nie są już "
  "potrzebne."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:312
++#: apt-get.8.xml:323
  msgid "changelog"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:313
++#: apt-get.8.xml:324
  msgid ""
  "<literal>changelog</literal> downloads a package changelog and displays it "
  "through <command>sensible-pager</command>. The server name and base "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:335
++#: apt-get.8.xml:346
  msgid "<option>--no-install-recommends</option>"
  msgstr "<option>--no-install-recommends</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:336
++#: apt-get.8.xml:347
  msgid ""
  "Do not consider recommended packages as a dependency for installing.  "
  "Configuration Item: <literal>APT::Install-Recommends</literal>."
@@@ -3931,14 -3931,14 +3952,14 @@@ msgstr "
  "Pozycja w pliku konfiguracyjnym: <literal>APT::Install-Recommends</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:340
++#: apt-get.8.xml:351
  #, fuzzy
  #| msgid "<option>--no-upgrade</option>"
  msgid "<option>--install-suggests</option>"
  msgstr "<option>--no-upgrade</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:341
++#: apt-get.8.xml:352
  #, fuzzy
  #| msgid ""
  #| "Do not consider recommended packages as a dependency for installing.  "
@@@ -3951,13 -3951,13 +3972,13 @@@ msgstr "
  "Pozycja w pliku konfiguracyjnym: <literal>APT::Install-Recommends</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:345
++#: apt-get.8.xml:356
  msgid "<option>--download-only</option>"
  msgstr "<option>--download-only</option>"
  
  #
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:346
++#: apt-get.8.xml:357
  msgid ""
  "Download only; package files are only retrieved, not unpacked or installed.  "
  "Configuration Item: <literal>APT::Get::Download-Only</literal>."
@@@ -3967,13 -3967,13 +3988,13 @@@ msgstr "
  "Download-Only</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:350
++#: apt-get.8.xml:361
  msgid "<option>--fix-broken</option>"
  msgstr "<option>--fix-broken</option>"
  
  #
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:351
++#: apt-get.8.xml:362
  msgid ""
  "Fix; attempt to correct a system with broken dependencies in place. This "
  "option, when used with install/remove, can omit any packages to permit APT "
@@@ -4000,18 -4000,18 +4021,18 @@@ msgstr "
  "konfiguracyjnym: <literal>APT::Get::Fix-Broken</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:364
++#: apt-get.8.xml:375
  msgid "<option>--ignore-missing</option>"
  msgstr "<option>--ignore-missing</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:365
++#: apt-get.8.xml:376
  msgid "<option>--fix-missing</option>"
  msgstr "<option>--fix-missing</option>"
  
  #
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:366
++#: apt-get.8.xml:377
  msgid ""
  "Ignore missing packages; If packages cannot be retrieved or fail the "
  "integrity check after retrieval (corrupted package files), hold back those "
@@@ -4030,13 -4030,13 +4051,13 @@@ msgstr "
  "konfiguracyjnym: <literal>APT::Get::Fix-Missing</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:376
++#: apt-get.8.xml:387
  msgid "<option>--no-download</option>"
  msgstr "<option>--no-download</option>"
  
  #
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:377
++#: apt-get.8.xml:388
  msgid ""
  "Disables downloading of packages. This is best used with <option>--ignore-"
  "missing</option> to force APT to use only the .debs it has already "
@@@ -4049,7 -4049,7 +4070,7 @@@ msgstr "
  
  #
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:384
++#: apt-get.8.xml:395
  msgid ""
  "Quiet; produces output suitable for logging, omitting progress indicators.  "
  "More q's will produce more quiet up to a maximum of 2. You can also use "
@@@ -4069,18 -4069,18 +4090,18 @@@ msgstr "
  "spodziewa.  Pozycja w pliku konfiguracyjnym: <literal>quiet</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:394
++#: apt-get.8.xml:405
  msgid "<option>--simulate</option>"
  msgstr "<option>--simulate</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:396
++#: apt-get.8.xml:407
  msgid "<option>--dry-run</option>"
  msgstr "<option>--dry-run</option>"
  
  #
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:399
++#: apt-get.8.xml:410
  msgid ""
  "No action; perform a simulation of events that would occur but do not "
  "actually change the system.  Configuration Item: <literal>APT::Get::"
@@@ -4091,7 -4091,7 +4112,7 @@@ msgstr "
  "Get::Simulate</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:403
++#: apt-get.8.xml:414
  msgid ""
  "Simulation run as user will deactivate locking (<literal>Debug::NoLocking</"
  "literal>)  automatic. Also a notice will be displayed indicating that this "
@@@ -4111,7 -4111,7 +4132,7 @@@ msgstr "
  
  #
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:409
++#: apt-get.8.xml:420
  msgid ""
  "Simulate prints out a series of lines each one representing a dpkg "
  "operation, Configure (Conf), Remove (Remv), Unpack (Inst). Square brackets "
@@@ -4125,23 -4125,23 +4146,23 @@@ msgstr "
  "znana (rzadkość)."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:416
++#: apt-get.8.xml:427
  msgid "<option>-y</option>"
  msgstr "<option>-y</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:416
++#: apt-get.8.xml:427
  msgid "<option>--yes</option>"
  msgstr "<option>--yes</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:417
++#: apt-get.8.xml:428
  msgid "<option>--assume-yes</option>"
  msgstr "<option>--assume-yes</option>"
  
  #
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:418
++#: apt-get.8.xml:429
  msgid ""
  "Automatic yes to prompts; assume \"yes\" as answer to all prompts and run "
  "non-interactively. If an undesirable situation, such as changing a held "
@@@ -4157,18 -4157,18 +4178,39 @@@ msgstr "
  "Assume-Yes</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:425
++#: apt-get.8.xml:436
++#, fuzzy
++#| msgid "<option>--assume-yes</option>"
++msgid "<option>--assume-no</option>"
++msgstr "<option>--assume-yes</option>"
++
++#
++#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
++#: apt-get.8.xml:437
++#, fuzzy
++#| msgid ""
++#| "Compile source packages after downloading them.  Configuration Item: "
++#| "<literal>APT::Get::Compile</literal>."
++msgid ""
++"Automatic \"no\" to all prompts.  Configuration Item: <literal>APT::Get::"
++"Assume-No</literal>."
++msgstr ""
++"Skompiluj pakiety źródłowe po ich ściągnięciu.  Pozycja w pliku "
++"konfiguracyjnym: <literal>APT::Get::Compile</literal>."
++
++#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
++#: apt-get.8.xml:441
  msgid "<option>-u</option>"
  msgstr "<option>-u</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:425
++#: apt-get.8.xml:441
  msgid "<option>--show-upgraded</option>"
  msgstr "<option>--show-upgraded</option>"
  
  #
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:426
++#: apt-get.8.xml:442
  msgid ""
  "Show upgraded packages; Print out a list of all packages that are to be "
  "upgraded.  Configuration Item: <literal>APT::Get::Show-Upgraded</literal>."
@@@ -4178,18 -4178,18 +4220,18 @@@ msgstr "
  "Upgraded</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:431
++#: apt-get.8.xml:447
  msgid "<option>-V</option>"
  msgstr "<option>-V</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:431
++#: apt-get.8.xml:447
  msgid "<option>--verbose-versions</option>"
  msgstr "<option>--verbose-versions</option>"
  
  #
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:432
++#: apt-get.8.xml:448
  msgid ""
  "Show full versions for upgraded and installed packages.  Configuration Item: "
  "<literal>APT::Get::Show-Versions</literal>."
@@@ -4198,23 -4198,23 +4240,41 @@@ msgstr "
  "konfiguracyjnym: <literal>APT::Get::Show-Versions</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:436
++#: apt-get.8.xml:453
++#, fuzzy
++#| msgid "<option>--recurse</option>"
++msgid "<option>--host-architecture</option>"
++msgstr "<option>--recurse</option>"
++
++#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
++#: apt-get.8.xml:454
++msgid ""
++"This option controls the architecture packages are built for by <command>apt-"
++"get source --compile</command> and how cross-builddependencies are "
++"satisfied. By default is not set which means that the host architecture is "
++"the same as the build architecture (which is defined by <literal>APT::"
++"Architecture</literal>)  Configuration Item: <literal>APT::Get::Host-"
++"Architecture</literal>"
++msgstr ""
++
++#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
++#: apt-get.8.xml:462
  msgid "<option>-b</option>"
  msgstr "<option>-b</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:436
++#: apt-get.8.xml:462
  msgid "<option>--compile</option>"
  msgstr "<option>--compile</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:437
++#: apt-get.8.xml:463
  msgid "<option>--build</option>"
  msgstr "<option>--build</option>"
  
  #
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:438
++#: apt-get.8.xml:464
  msgid ""
  "Compile source packages after downloading them.  Configuration Item: "
  "<literal>APT::Get::Compile</literal>."
@@@ -4223,13 -4223,13 +4283,13 @@@ msgstr "
  "konfiguracyjnym: <literal>APT::Get::Compile</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:442
++#: apt-get.8.xml:468
  msgid "<option>--ignore-hold</option>"
  msgstr "<option>--ignore-hold</option>"
  
  #
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:443
++#: apt-get.8.xml:469
  msgid ""
  "Ignore package Holds; This causes <command>apt-get</command> to ignore a "
  "hold placed on a package. This may be useful in conjunction with "
@@@ -4243,13 -4243,13 +4303,13 @@@ msgstr "
  "<literal>APT::Ignore-Hold</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:449
++#: apt-get.8.xml:475
  msgid "<option>--no-upgrade</option>"
  msgstr "<option>--no-upgrade</option>"
  
  #
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:450
++#: apt-get.8.xml:476
  msgid ""
  "Do not upgrade packages; When used in conjunction with <literal>install</"
  "literal>, <literal>no-upgrade</literal> will prevent packages on the command "
@@@ -4262,7 -4262,7 +4322,7 @@@ msgstr "
  "<literal>APT::Get::Upgrade</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:456
++#: apt-get.8.xml:482
  #, fuzzy
  #| msgid "<option>--no-upgrade</option>"
  msgid "<option>--only-upgrade</option>"
@@@ -4270,7 -4270,7 +4330,7 @@@ msgstr "<option>--no-upgrade</option>
  
  #
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:457
++#: apt-get.8.xml:483
  #, fuzzy
  #| msgid ""
  #| "Do not upgrade packages; When used in conjunction with <literal>install</"
@@@ -4289,13 -4289,13 +4349,13 @@@ msgstr "
  "<literal>APT::Get::Upgrade</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:463
++#: apt-get.8.xml:489
  msgid "<option>--force-yes</option>"
  msgstr "<option>--force-yes</option>"
  
  #
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:464
++#: apt-get.8.xml:490
  msgid ""
  "Force yes; This is a dangerous option that will cause apt to continue "
  "without prompting if it is doing something potentially harmful. It should "
@@@ -4311,13 -4311,13 +4371,13 @@@ msgstr "
  "force-yes</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:471
++#: apt-get.8.xml:497
  msgid "<option>--print-uris</option>"
  msgstr "<option>--print-uris</option>"
  
  #
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:472
++#: apt-get.8.xml:498
  msgid ""
  "Instead of fetching the files to install their URIs are printed. Each URI "
  "will have the path, the destination file name, the size and the expected md5 "
@@@ -4339,13 -4339,13 +4399,13 @@@ msgstr "
  "literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:482
++#: apt-get.8.xml:508
  msgid "<option>--purge</option>"
  msgstr "<option>--purge</option>"
  
  #
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:483
++#: apt-get.8.xml:509
  msgid ""
  "Use purge instead of remove for anything that would be removed.  An asterisk "
  "(\"*\") will be displayed next to packages which are scheduled to be purged. "
@@@ -4359,13 -4359,13 +4419,13 @@@ msgstr "
  "pliku konfiguracyjnym: <literal>APT::Get::Purge</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:490
++#: apt-get.8.xml:516
  msgid "<option>--reinstall</option>"
  msgstr "<option>--reinstall</option>"
  
  #
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:491
++#: apt-get.8.xml:517
  msgid ""
  "Re-Install packages that are already installed and at the newest version.  "
  "Configuration Item: <literal>APT::Get::ReInstall</literal>."
@@@ -4374,13 -4374,13 +4434,13 @@@ msgstr "
  "Pozycja w pliku konfiguracyjnym: <literal>APT::Get::ReInstall</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:495
++#: apt-get.8.xml:521
  msgid "<option>--list-cleanup</option>"
  msgstr "<option>--list-cleanup</option>"
  
  #
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:496
++#: apt-get.8.xml:522
  msgid ""
  "This option defaults to on, use <literal>--no-list-cleanup</literal> to turn "
  "it off. When on <command>apt-get</command> will automatically manage the "
@@@ -4397,18 -4397,18 +4457,18 @@@ msgstr "
  "konfiguracyjnym: <literal>APT::Get::List-Cleanup</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:505
++#: apt-get.8.xml:531
  msgid "<option>--target-release</option>"
  msgstr "<option>--target-release</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:506
++#: apt-get.8.xml:532
  msgid "<option>--default-release</option>"
  msgstr "<option>--default-release</option>"
  
  #
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:507
++#: apt-get.8.xml:533
  msgid ""
  "This option controls the default input to the policy engine, it creates a "
  "default pin at priority 990 using the specified release string.  This "
@@@ -4431,13 -4431,13 +4491,13 @@@ msgstr "
  "stronę podręcznika &apt-preferences;."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:520
++#: apt-get.8.xml:546
  msgid "<option>--trivial-only</option>"
  msgstr "<option>--trivial-only</option>"
  
  #
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:522
++#: apt-get.8.xml:548
  msgid ""
  "Only perform operations that are 'trivial'. Logically this can be considered "
  "related to <option>--assume-yes</option>, where <option>--assume-yes</"
@@@ -4451,13 -4451,13 +4511,13 @@@ msgstr "
  "Get::Trivial-Only</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:528
++#: apt-get.8.xml:554
  msgid "<option>--no-remove</option>"
  msgstr "<option>--no-remove</option>"
  
  #
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:529
++#: apt-get.8.xml:555
  msgid ""
  "If any packages are to be removed apt-get immediately aborts without "
  "prompting.  Configuration Item: <literal>APT::Get::Remove</literal>."
@@@ -4467,12 -4467,12 +4527,12 @@@ msgstr "
  "literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:534
++#: apt-get.8.xml:560
  msgid "<option>--auto-remove</option>"
  msgstr "<option>--auto-remove</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:535
++#: apt-get.8.xml:561
  msgid ""
  "If the command is either <literal>install</literal> or <literal>remove</"
  "literal>, then this option acts like running <literal>autoremove</literal> "
@@@ -4486,13 -4486,13 +4546,13 @@@ msgstr "
  "AutomaticRemove</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:541
++#: apt-get.8.xml:567
  msgid "<option>--only-source</option>"
  msgstr "<option>--only-source</option>"
  
  #
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:542
++#: apt-get.8.xml:568
  msgid ""
  "Only has meaning for the <literal>source</literal> and <literal>build-dep</"
  "literal> commands.  Indicates that the given source names are not to be "
@@@ -4511,23 -4511,23 +4571,23 @@@ msgstr "
  "Only-Source</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:552
++#: apt-get.8.xml:578
  msgid "<option>--diff-only</option>"
  msgstr "<option>--diff-only</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:552
++#: apt-get.8.xml:578
  msgid "<option>--dsc-only</option>"
  msgstr "<option>--dsc-only</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:552
++#: apt-get.8.xml:578
  msgid "<option>--tar-only</option>"
  msgstr "<option>--tar-only</option>"
  
  #
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:553
++#: apt-get.8.xml:579
  msgid ""
  "Download only the diff, dsc, or tar file of a source archive.  Configuration "
  "Item: <literal>APT::Get::Diff-Only</literal>, <literal>APT::Get::Dsc-Only</"
@@@ -4538,13 -4538,13 +4598,13 @@@ msgstr "
  "Dsc-Only</literal> oraz <literal>APT::Get::Tar-Only</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:558
++#: apt-get.8.xml:584
  msgid "<option>--arch-only</option>"
  msgstr "<option>--arch-only</option>"
  
  #
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:559
++#: apt-get.8.xml:585
  msgid ""
  "Only process architecture-dependent build-dependencies.  Configuration Item: "
  "<literal>APT::Get::Arch-Only</literal>."
@@@ -4555,12 -4555,12 +4615,12 @@@ msgstr "
  "literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:563
++#: apt-get.8.xml:589
  msgid "<option>--allow-unauthenticated</option>"
  msgstr "<option>--allow-unauthenticated</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:564
++#: apt-get.8.xml:590
  msgid ""
  "Ignore if packages can't be authenticated and don't prompt about it.  This "
  "is useful for tools like pbuilder.  Configuration Item: <literal>APT::Get::"
@@@ -4571,7 -4571,7 +4631,7 @@@ msgstr "
  "w pliku konfiguracyjnym: <literal>APT::Get::AllowUnauthenticated</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist>
--#: apt-get.8.xml:577
++#: apt-get.8.xml:603
  msgid ""
  "&file-sourceslist; &file-aptconf; &file-preferences; &file-cachearchives; "
  "&file-statelists;"
@@@ -4581,7 -4581,7 +4641,7 @@@ msgstr "
  
  #
  #. type: Content of: <refentry><refsect1><para>
--#: apt-get.8.xml:586
++#: apt-get.8.xml:612
  msgid ""
  "&apt-cache;, &apt-cdrom;, &dpkg;, &dselect;, &sources-list;, &apt-conf;, "
  "&apt-config;, &apt-secure;, The APT User's guide in &guidesdir;, &apt-"
@@@ -4593,7 -4593,7 +4653,7 @@@ msgstr "
  
  #
  #. type: Content of: <refentry><refsect1><para>
--#: apt-get.8.xml:592
++#: apt-get.8.xml:618
  msgid ""
  "<command>apt-get</command> returns zero on normal operation, decimal 100 on "
  "error."
@@@ -4602,22 -4602,22 +4662,22 @@@ msgstr "
  "w przypadku błędu."
  
  #. type: Content of: <refentry><refsect1><title>
--#: apt-get.8.xml:595
++#: apt-get.8.xml:621
  msgid "ORIGINAL AUTHORS"
  msgstr "AUTORZY ORYGINAŁU"
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt-get.8.xml:596
++#: apt-get.8.xml:622
  msgid "&apt-author.jgunthorpe;"
  msgstr "&apt-author.jgunthorpe;"
  
  #. type: Content of: <refentry><refsect1><title>
--#: apt-get.8.xml:599
++#: apt-get.8.xml:625
  msgid "CURRENT AUTHORS"
  msgstr "OBECNI AUTORZY"
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt-get.8.xml:601
++#: apt-get.8.xml:627
  msgid "&apt-author.team;"
  msgstr "&apt-author.team;"
  
@@@ -4747,14 -4747,30 +4807,33 @@@ msgstr "
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #: apt-key.8.xml:131
  msgid ""
--"Update the local keyring with the keyring of Debian archive keys and removes "
--"from the keyring the archive keys which are no longer valid."
++"Update the local keyring with the archive keyring and remove from the local "
++"keyring the archive keys which are no longer valid.  The archive keyring is "
++"shipped in the <literal>archive-keyring</literal> package of your "
++"distribution, e.g. the <literal>ubuntu-archive-keyring</literal> package in "
++"Ubuntu."
+ msgstr ""
 -"Aktualizuje lokalną składnicę kluczy używając składnicy kluczy archiwum "
 -"Debiana i usuwa z lokalnej składnicy nieaktualne już klucze archiwów Debiana."
+ #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
 -#: apt-key.8.xml:140
++#: apt-key.8.xml:141
+ #, fuzzy
+ #| msgid "update"
+ msgid "net-update"
+ msgstr "update"
+ #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
 -#: apt-key.8.xml:144
++#: apt-key.8.xml:145
+ msgid ""
 -"Update the local keyring with the keys of a key server and removes from the "
 -"keyring the archive keys which are no longer valid. This requires an "
 -"installed wget and an APT build configured to have a server to fetch from. "
 -"APT in Debian does not support this command, but Ubuntu's APT does."
++"Work similar to the <command>update</command> command above, but get the "
++"archive keyring from an URI instead and validate it against a master key.  "
++"This requires an installed &wget; and an APT build configured to have a "
++"server to fetch from and a master keyring to validate.  APT in Debian does "
++"not support this command and relies on <command>update</command> instead, "
++"but Ubuntu's APT does."
  msgstr ""
- "Aktualizuje lokalną składnicę kluczy używając składnicy kluczy archiwum "
- "Debiana i usuwa z lokalnej składnicy nieaktualne już klucze archiwów Debiana."
  
  #. type: Content of: <refentry><refsect1><para>
- #: apt-key.8.xml:143
 -#: apt-key.8.xml:159
++#: apt-key.8.xml:162
  msgid ""
  "Note that options need to be defined before the commands described in the "
  "previous section."
@@@ -4763,12 -4779,12 +4842,12 @@@ msgstr "
  "opisanymi w poprzednim rozdziale."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-key.8.xml:145
 -#: apt-key.8.xml:161
++#: apt-key.8.xml:164
  msgid "--keyring <replaceable>filename</replaceable>"
  msgstr "--keyring <replaceable>nazwa_pliku</replaceable>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
- #: apt-key.8.xml:146
 -#: apt-key.8.xml:162
++#: apt-key.8.xml:165
  msgid ""
  "With this option it is possible to specify a specific keyring file the "
  "command should operate on. The default is that a command is executed on the "
@@@ -4784,53 -4800,57 +4863,66 @@@ msgstr "
  "kluczy, co oznacza na przykład to, że nowe klucze będą dodawane właśnie tam."
  
  #. type: Content of: <refentry><refsect1><variablelist>
- #: apt-key.8.xml:159
 -#: apt-key.8.xml:175
++#: apt-key.8.xml:178
  msgid "&file-trustedgpg;"
  msgstr "&file-trustedgpg;"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-key.8.xml:161
 -#: apt-key.8.xml:177
++#: apt-key.8.xml:180
  msgid "<filename>/etc/apt/trustdb.gpg</filename>"
  msgstr "<filename>/etc/apt/trustdb.gpg</filename>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
- #: apt-key.8.xml:162
 -#: apt-key.8.xml:178
++#: apt-key.8.xml:181
  msgid "Local trust database of archive keys."
  msgstr "Lokalna składnica zaufanych kluczy archiwum."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-key.8.xml:165
 -#: apt-key.8.xml:181
--msgid "<filename>/usr/share/keyrings/debian-archive-keyring.gpg</filename>"
++#: apt-key.8.xml:184
++#, fuzzy
++#| msgid "<filename>/usr/share/keyrings/debian-archive-keyring.gpg</filename>"
++msgid "<filename>/usr/share/keyrings/ubuntu-archive-keyring.gpg</filename>"
  msgstr "<filename>/usr/share/keyrings/debian-archive-keyring.gpg</filename>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
- #: apt-key.8.xml:166
 -#: apt-key.8.xml:182
--msgid "Keyring of Debian archive trusted keys."
++#: apt-key.8.xml:185
++#, fuzzy
++#| msgid "Keyring of Debian archive trusted keys."
++msgid "Keyring of Ubuntu archive trusted keys."
  msgstr "Składnica zaufanych kluczy archiwum Debiana."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-key.8.xml:169
 -#: apt-key.8.xml:185
++#: apt-key.8.xml:188
++#, fuzzy
++#| msgid ""
++#| "<filename>/usr/share/keyrings/debian-archive-removed-keys.gpg</filename>"
  msgid ""
--"<filename>/usr/share/keyrings/debian-archive-removed-keys.gpg</filename>"
++"<filename>/usr/share/keyrings/ubuntu-archive-removed-keys.gpg</filename>"
  msgstr ""
  "<filename>/usr/share/keyrings/debian-archive-removed-keys.gpg</filename>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
- #: apt-key.8.xml:170
 -#: apt-key.8.xml:186
--msgid "Keyring of Debian archive removed trusted keys."
++#: apt-key.8.xml:189
++#, fuzzy
++#| msgid "Keyring of Debian archive removed trusted keys."
++msgid "Keyring of Ubuntu archive removed trusted keys."
  msgstr "Składnica usuniętych zaufanych kluczy archiwum Debiana."
  
  #. type: Content of: <refentry><refsect1><para>
- #: apt-key.8.xml:179
 -#: apt-key.8.xml:195
++#: apt-key.8.xml:198
  msgid "&apt-get;, &apt-secure;"
  msgstr "&apt-get;, &apt-secure;"
  
  #.  The last update date 
  #. type: Content of: <refentry><refentryinfo>
  #: apt-mark.8.xml:16
+ #, fuzzy
+ #| msgid ""
+ #| "&apt-author.moconnor; &apt-author.team; &apt-email; &apt-product; <date>9 "
+ #| "August 2009</date>"
  msgid ""
- "&apt-author.moconnor; &apt-author.team; &apt-email; &apt-product; <date>9 "
- "August 2009</date>"
+ "&apt-author.moconnor; &apt-author.team; &apt-email; &apt-product; <date>21 "
+ "April 2011</date>"
  msgstr ""
  "&apt-author.moconnor; &apt-author.team; &apt-email; &apt-product;        "
  "<date>9 sierpnia 2009</date>"
@@@ -4847,13 -4867,22 +4939,22 @@@ msgstr "Zaznaczanie/odznaczanie pakiet
  
  #. type: Content of: <refentry><refsynopsisdiv><cmdsynopsis>
  #: apt-mark.8.xml:39
+ #, fuzzy
+ #| msgid ""
+ #| "  <command>apt-mark</command> <arg><option>-hv</option></arg> "
+ #| "<arg><option>-f=<replaceable>FILENAME</replaceable></option></arg> <group "
+ #| "choice=\"plain\"> <arg choice=\"plain\"> <group choice=\"req\"> <arg "
+ #| "choice=\"plain\">markauto</arg> <arg choice=\"plain\">unmarkauto</arg> </"
+ #| "group> <arg choice=\"plain\" rep=\"repeat\"><replaceable>package</"
+ #| "replaceable></arg> </arg> <arg choice=\"plain\">showauto</arg> </group>"
  msgid ""
  "  <command>apt-mark</command> <arg><option>-hv</option></arg> <arg><option>-"
  "f=<replaceable>FILENAME</replaceable></option></arg> <group choice=\"plain"
  "\"> <arg choice=\"plain\"> <group choice=\"req\"> <arg choice=\"plain"
- "\">markauto</arg> <arg choice=\"plain\">unmarkauto</arg> </group> <arg "
+ "\">auto</arg> <arg choice=\"plain\">manual</arg> <arg choice=\"plain"
+ "\">showauto</arg> <arg choice=\"plain\">showmanual</arg> </group> <arg "
  "choice=\"plain\" rep=\"repeat\"><replaceable>package</replaceable></arg> </"
- "arg> <arg choice=\"plain\">showauto</arg> </group>"
+ "arg> </group>"
  msgstr ""
  "  <command>apt-mark</command> <arg><option>-hv</option></arg> <arg><option>-"
  "f=<replaceable>NAZWA_PLIKU</replaceable></option></arg> <group choice=\"plain"
  "arg> <arg choice=\"plain\">showauto</arg> </group>"
  
  #. type: Content of: <refentry><refsect1><para>
- #: apt-mark.8.xml:56
+ #: apt-mark.8.xml:57
  msgid ""
  "<command>apt-mark</command> will change whether a package has been marked as "
  "being automatically installed."
@@@ -4872,7 -4901,7 +4973,7 @@@ msgstr "
  "zainstalowany automatycznie."
  
  #. type: Content of: <refentry><refsect1><para>
- #: apt-mark.8.xml:60
+ #: apt-mark.8.xml:61
  msgid ""
  "When you request that a package is installed, and as a result other packages "
  "are installed to satisfy its dependencies, the dependencies are marked as "
@@@ -4888,14 -4917,21 +4989,21 @@@ msgstr "
  "get</command> lub <command>aptitude</command>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-mark.8.xml:68
- msgid "markauto"
+ #: apt-mark.8.xml:69
+ #, fuzzy
+ #| msgid "markauto"
+ msgid "auto"
  msgstr "markauto"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
- #: apt-mark.8.xml:69
+ #: apt-mark.8.xml:70
+ #, fuzzy
+ #| msgid ""
+ #| "<literal>markauto</literal> is used to mark a package as being "
+ #| "automatically installed, which will cause the package to be removed when "
+ #| "no more manually installed packages depend on this package."
  msgid ""
- "<literal>markauto</literal> is used to mark a package as being automatically "
+ "<literal>auto</literal> is used to mark a package as being automatically "
  "installed, which will cause the package to be removed when no more manually "
  "installed packages depend on this package."
  msgstr ""
  "żaden inny ręcznie zainstalowany pakiet nie będzie od niego zależał."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-mark.8.xml:76
- msgid "unmarkauto"
- msgstr "unmarkauto"
+ #: apt-mark.8.xml:77
+ msgid "manual"
+ msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
- #: apt-mark.8.xml:77
+ #: apt-mark.8.xml:78
+ #, fuzzy
+ #| msgid ""
+ #| "<literal>unmarkauto</literal> is used to mark a package as being manually "
+ #| "installed, which will prevent the package from being automatically "
+ #| "removed if no other packages depend on it."
  msgid ""
- "<literal>unmarkauto</literal> is used to mark a package as being manually "
+ "<literal>manual</literal> is used to mark a package as being manually "
  "installed, which will prevent the package from being automatically removed "
  "if no other packages depend on it."
  msgstr ""
  "sytuacji gdy żaden inny pakiet nie będzie od niego zależał."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-mark.8.xml:84
+ #: apt-mark.8.xml:85
+ msgid "hold"
+ msgstr ""
+ #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
+ #: apt-mark.8.xml:86
+ msgid ""
+ "<literal>hold</literal> is used to mark a package as hold back, which will "
+ "prevent the package from being automatically installed, upgraded or "
+ "removed.  The command is only a wrapper around <command>dpkg --set-"
+ "selections</command> and the state is therefore maintained by &dpkg; and not "
+ "effected by the <option>--filename</option> option."
+ msgstr ""
+ #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
+ #: apt-mark.8.xml:95
+ msgid "unhold"
+ msgstr ""
+ #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
+ #: apt-mark.8.xml:96
+ #, fuzzy
+ #| msgid ""
+ #| "<literal>showauto</literal> is used to print a list of automatically "
+ #| "installed packages with each package on a new line."
+ msgid ""
+ "<literal>unhold</literal> is used to cancel a previously set hold on a "
+ "package to allow all actions again."
+ msgstr ""
+ "<literal>showauto</literal> jest używane do wypisania listy wszystkich "
+ "pakietów zainstalowanych automatycznie. Każdy pakiet jest wypisywany w "
+ "osobnej linii."
+ #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
+ #: apt-mark.8.xml:101
  msgid "showauto"
  msgstr "showauto"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
- #: apt-mark.8.xml:85
+ #: apt-mark.8.xml:102
+ #, fuzzy
+ #| msgid ""
+ #| "<literal>showauto</literal> is used to print a list of automatically "
+ #| "installed packages with each package on a new line."
  msgid ""
  "<literal>showauto</literal> is used to print a list of automatically "
- "installed packages with each package on a new line."
+ "installed packages with each package on a new line.  All automatically "
+ "installed packages will be listed if no package is given.  If packages are "
+ "given only those which are automatically installed will be shown."
  msgstr ""
  "<literal>showauto</literal> jest używane do wypisania listy wszystkich "
  "pakietów zainstalowanych automatycznie. Każdy pakiet jest wypisywany w "
  "osobnej linii."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-mark.8.xml:96
+ #: apt-mark.8.xml:109
+ #, fuzzy
+ #| msgid "showauto"
+ msgid "showmanual"
+ msgstr "showauto"
+ #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
+ #: apt-mark.8.xml:110
+ msgid ""
+ "<literal>showmanual</literal> can be used in the same way as "
+ "<literal>showauto</literal> except that it will print a list of manually "
+ "installed packages instead."
+ msgstr ""
+ #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
+ #: apt-mark.8.xml:116
+ #, fuzzy
+ #| msgid "showauto"
+ msgid "showhold"
+ msgstr "showauto"
+ #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
+ #: apt-mark.8.xml:117
+ #, fuzzy
+ #| msgid ""
+ #| "<literal>showauto</literal> is used to print a list of automatically "
+ #| "installed packages with each package on a new line."
+ msgid ""
+ "<literal>showhold</literal> is used to print a list of packages on hold in "
+ "the same way as for the other show commands."
+ msgstr ""
+ "<literal>showauto</literal> jest używane do wypisania listy wszystkich "
+ "pakietów zainstalowanych automatycznie. Każdy pakiet jest wypisywany w "
+ "osobnej linii."
+ #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
+ #: apt-mark.8.xml:130
  msgid ""
  "<option>-f=<filename><replaceable>FILENAME</replaceable></filename></option>"
  msgstr ""
  "option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-mark.8.xml:97
+ #: apt-mark.8.xml:131
  msgid ""
  "<option>--file=<filename><replaceable>FILENAME</replaceable></filename></"
  "option>"
@@@ -4952,7 -5069,7 +5141,7 @@@ msgstr "
  "option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
- #: apt-mark.8.xml:100
+ #: apt-mark.8.xml:134
  msgid ""
  "Read/Write package stats from <filename><replaceable>FILENAME</replaceable></"
  "filename> instead of the default location, which is "
@@@ -4964,51 -5081,19 +5153,19 @@@ msgstr "
  "domyślny plik <filename>extended_status</filename> znajdujący się w katalogu "
  "określonym w pliku konfiguracyjnym w pozycji<literal>Dir::State</literal>."
  
- #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-mark.8.xml:106
- msgid "<option>-h</option>"
- msgstr "<option>-h</option>"
- #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-mark.8.xml:107
- msgid "<option>--help</option>"
- msgstr "<option>--help</option>"
- #
- #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
- #: apt-mark.8.xml:108
- msgid "Show a short usage summary."
- msgstr "Wyświetla krótkie informacje na temat użytkowania."
- #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-mark.8.xml:114
- msgid "<option>-v</option>"
- msgstr "<option>-v</option>"
- #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-mark.8.xml:115
- msgid "<option>--version</option>"
- msgstr "<option>--version</option>"
- #
- #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
- #: apt-mark.8.xml:116
- msgid "Show the program version."
- msgstr "Wyświetla wersję programu."
  #. type: Content of: <refentry><refsect1><variablelist>
- #: apt-mark.8.xml:127
+ #: apt-mark.8.xml:146
  msgid "  &file-extended_states;"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
- #: apt-mark.8.xml:132
+ #: apt-mark.8.xml:151
  msgid "&apt-get;,&aptitude;,&apt-conf;"
  msgstr "&apt-get;,&aptitude;,&apt-conf;"
  
  #
  #. type: Content of: <refentry><refsect1><para>
- #: apt-mark.8.xml:136
+ #: apt-mark.8.xml:155
  msgid ""
  "<command>apt-mark</command> returns zero on normal operation, non-zero on "
  "error."
@@@ -5371,14 -5456,14 +5528,29 @@@ msgstr "
  
  #. type: Content of: <refentry><refsect1><orderedlist><listitem><para>
  #: apt.conf.5.xml:52
++#, fuzzy
++#| msgid ""
++#| "The <filename>/etc/apt/sources.list.d</filename> directory provides a way "
++#| "to add sources.list entries in separate files.  The format is the same as "
++#| "for the regular <filename>sources.list</filename> file.  File names need "
++#| "to end with <filename>.list</filename> and may only contain letters (a-z "
++#| "and A-Z), digits (0-9), underscore (_), hyphen (-) and period (.) "
++#| "characters.  Otherwise they will be silently ignored."
  msgid ""
  "all files in <literal>Dir::Etc::Parts</literal> in alphanumeric ascending "
--"order which have no or \"<literal>conf</literal>\" as filename extension and "
--"which only contain alphanumeric, hyphen (-), underscore (_) and period (.) "
--"characters.  Otherwise APT will print a notice that it has ignored a file if "
--"the file doesn't match a pattern in the <literal>Dir::Ignore-Files-Silently</"
--"literal> configuration list - in this case it will be silently ignored."
++"order which have either no or \"<literal>conf</literal>\" as filename "
++"extension and which only contain alphanumeric, hyphen (-), underscore (_) "
++"and period (.) characters.  Otherwise APT will print a notice that it has "
++"ignored a file if the file doesn't match a pattern in the <literal>Dir::"
++"Ignore-Files-Silently</literal> configuration list - in this case it will be "
++"silently ignored."
  msgstr ""
++"Katalog <filename>/etc/apt/sources.list.d</filename>  umożliwia podzielenie "
++"pliku źródeł na osobne pliki. Format jest dokładnie taki sam, jak w "
++"przypadku zwykłego pliku <filename>sources.list</filename>. Nazwy plików w "
++"tym katalogu muszą się kończyć rozszerzeniem <filename>.list</filename> i "
++"mogą składać się tylko z liter (a-z i A-Z), cyfr (0-9), znaku podkreślenia "
++"(_), pauzy (-) i kropki (.). Inne pliki zostaną zignorowane."
  
  #. type: Content of: <refentry><refsect1><orderedlist><listitem><para>
  #: apt.conf.5.xml:59
@@@ -5555,13 -5640,13 +5727,24 @@@ msgid "
  "compiled for."
  msgstr ""
  
++#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
++#: apt.conf.5.xml:158
++msgid ""
++"All Architectures the system supports. Processors implementing the "
++"<literal>amd64</literal> are e.g. also able to execute binaries compiled for "
++"<literal>i386</literal>; This list is use when fetching files and parsing "
++"package lists. The internal default is always the native architecture "
++"(<literal>APT::Architecture</literal>)  and all foreign architectures it can "
++"retrieve by calling <command>dpkg --print-foreign-architectures</command>."
++msgstr ""
++
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:157
++#: apt.conf.5.xml:165
  msgid "Default-Release"
  msgstr "Default-Release"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:158
++#: apt.conf.5.xml:166
  msgid ""
  "Default release to install packages from if more than one version available. "
  "Contains release name, codename or release version. Examples: 'stable', "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:163
++#: apt.conf.5.xml:171
  msgid "Ignore-Hold"
  msgstr "Ignore-Hold"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:164
++#: apt.conf.5.xml:172
  msgid ""
  "Ignore Held packages; This global option causes the problem resolver to "
  "ignore held packages in its decision making."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:168
++#: apt.conf.5.xml:176
  #, fuzzy
  msgid "Clean-Installed"
  msgstr "B<--installed>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:169
++#: apt.conf.5.xml:177
  msgid ""
  "Defaults to on. When turned on the autoclean feature will remove any "
  "packages which can no longer be downloaded from the cache. If turned off "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:175
++#: apt.conf.5.xml:183
  msgid "Immediate-Configure"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:176
++#: apt.conf.5.xml:184
  msgid ""
  "Defaults to on which will cause APT to install essential and important "
  "packages as fast as possible in the install/upgrade operation. This is done "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:198
++#: apt.conf.5.xml:206
  msgid "Force-LoopBreak"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:199
++#: apt.conf.5.xml:207
  msgid ""
  "Never Enable this option unless you -really- know what you are doing. It "
  "permits APT to temporarily remove an essential package to break a Conflicts/"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:207
++#: apt.conf.5.xml:215
  msgid "Cache-Start, Cache-Grow and Cache-Limit"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:208
++#: apt.conf.5.xml:216
  msgid ""
  "APT uses since version 0.7.26 a resizable memory mapped cache file to store "
  "the 'available' information. <literal>Cache-Start</literal> acts as a hint "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:223
++#: apt.conf.5.xml:231
  msgid "Build-Essential"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:224
++#: apt.conf.5.xml:232
  msgid "Defines which package(s) are considered essential build dependencies."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:227
++#: apt.conf.5.xml:235
  msgid "Get"
  msgstr "Get"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:228
++#: apt.conf.5.xml:236
  msgid ""
  "The Get subsection controls the &apt-get; tool, please see its documentation "
  "for more information about the options here."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:232
++#: apt.conf.5.xml:240
  msgid "Cache"
  msgstr "Cache"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:233
++#: apt.conf.5.xml:241
  msgid ""
  "The Cache subsection controls the &apt-cache; tool, please see its "
  "documentation for more information about the options here."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:237
++#: apt.conf.5.xml:245
  msgid "CDROM"
  msgstr "CDROM"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:238
++#: apt.conf.5.xml:246
  msgid ""
  "The CDROM subsection controls the &apt-cdrom; tool, please see its "
  "documentation for more information about the options here."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><title>
--#: apt.conf.5.xml:244
++#: apt.conf.5.xml:252
  msgid "The Acquire Group"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:249
++#: apt.conf.5.xml:257
  msgid "Check-Valid-Until"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:250
++#: apt.conf.5.xml:258
  msgid ""
  "Security related option defaulting to true as an expiring validation for a "
  "Release file prevents longtime replay attacks and can e.g. also help users "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:260
++#: apt.conf.5.xml:268
  msgid "Max-ValidTime"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:261
++#: apt.conf.5.xml:269
++msgid ""
++"Seconds the Release file should be considered valid after it was created "
++"(indicated by the <literal>Date</literal> header).  If the Release file "
++"itself includes a <literal>Valid-Until</literal> header the earlier date of "
++"the two is used as the expiration date.  The default value is <literal>0</"
++"literal> which stands for \"for ever\".  Archive specific settings can be "
++"made by appending the label of the archive to the option name."
++msgstr ""
++
++#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
++#: apt.conf.5.xml:279
++msgid "Min-ValidTime"
++msgstr ""
++
++#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
++#: apt.conf.5.xml:280
  msgid ""
--"Seconds the Release file should be considered valid after it was created. "
--"The default is \"for ever\" (0) if the Release file of the archive doesn't "
--"include a <literal>Valid-Until</literal> header.  If it does then this date "
--"is the default. The date from the Release file or the date specified by the "
--"creation time of the Release file (<literal>Date</literal> header) plus the "
--"seconds specified with this options are used to check if the validation of a "
--"file has expired by using the earlier date of the two. Archive specific "
--"settings can be made by appending the label of the archive to the option "
--"name."
++"Minimum of seconds the Release file should be considered valid after it was "
++"created (indicated by the <literal>Date</literal> header).  Use this if you "
++"need to use a seldomly updated (local) mirror of a more regular updated "
++"archive with a <literal>Valid-Until</literal> header instead of competely "
++"disabling the expiration date checking.  Archive specific settings can and "
++"should be used by appending the label of the archive to the option name."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:273
++#: apt.conf.5.xml:290
  msgid "PDiffs"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:274
++#: apt.conf.5.xml:291
  msgid ""
  "Try to download deltas called <literal>PDiffs</literal> for Packages or "
  "Sources files instead of downloading whole ones. True by default."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:277
++#: apt.conf.5.xml:294
  msgid ""
  "Two sub-options to limit the use of PDiffs are also available: With "
  "<literal>FileLimit</literal> can be specified how many PDiff files are "
  "downloaded at most to patch a file. <literal>SizeLimit</literal> on the "
--"other hand is the maximum precentage of the size of all patches compared to "
++"other hand is the maximum percentage of the size of all patches compared to "
  "the size of the targeted file. If one of these limits is exceeded the "
  "complete file is downloaded instead of the patches."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:286
++#: apt.conf.5.xml:303
  msgid "Queue-Mode"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:287
++#: apt.conf.5.xml:304
  msgid ""
  "Queuing mode; <literal>Queue-Mode</literal> can be one of <literal>host</"
  "literal> or <literal>access</literal> which determines how APT parallelizes "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:294
++#: apt.conf.5.xml:311
  msgid "Retries"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:295
++#: apt.conf.5.xml:312
  msgid ""
  "Number of retries to perform. If this is non-zero APT will retry failed "
  "files the given number of times."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:299
++#: apt.conf.5.xml:316
  #, fuzzy
  msgid "Source-Symlinks"
  msgstr "Sources"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:300
++#: apt.conf.5.xml:317
  msgid ""
  "Use symlinks for source archives. If set to true then source archives will "
  "be symlinked when possible instead of copying. True is the default."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:304 sources.list.5.xml:144
++#: apt.conf.5.xml:321 sources.list.5.xml:160
  msgid "http"
  msgstr "http"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:305
++#: apt.conf.5.xml:322
  msgid ""
  "HTTP URIs; http::Proxy is the default http proxy to use. It is in the "
  "standard form of <literal>http://[[user][:pass]@]host[:port]/</literal>. Per "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:313
++#: apt.conf.5.xml:330
  msgid ""
  "Three settings are provided for cache control with HTTP/1.1 compliant proxy "
  "caches. <literal>No-Cache</literal> tells the proxy to not use its cached "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:323 apt.conf.5.xml:387
++#: apt.conf.5.xml:340 apt.conf.5.xml:404
  msgid ""
  "The option <literal>timeout</literal> sets the timeout timer used by the "
  "method, this applies to all things including connection timeout and data "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:326
++#: apt.conf.5.xml:343
  msgid ""
  "One setting is provided to control the pipeline depth in cases where the "
  "remote server is not RFC conforming or buggy (such as Squid 2.0.2).  "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:334
++#: apt.conf.5.xml:351
  msgid ""
  "The used bandwidth can be limited with <literal>Acquire::http::Dl-Limit</"
  "literal> which accepts integer values in kilobyte. The default value is 0 "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:339
++#: apt.conf.5.xml:356
  msgid ""
  "<literal>Acquire::http::User-Agent</literal> can be used to set a different "
  "User-Agent for the http download method as some proxies allow access for "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:345
++#: apt.conf.5.xml:362
  msgid "https"
  msgstr "https"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:346
++#: apt.conf.5.xml:363
  msgid ""
  "HTTPS URIs. Cache-control, Timeout, AllowRedirect, Dl-Limit and proxy "
  "options are the same as for <literal>http</literal> method and will also "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:352
++#: apt.conf.5.xml:369
  msgid ""
  "<literal>CaInfo</literal> suboption specifies place of file that holds info "
  "about trusted certificates.  <literal>&lt;host&gt;::CaInfo</literal> is "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:370 sources.list.5.xml:155
++#: apt.conf.5.xml:387 sources.list.5.xml:171
  msgid "ftp"
  msgstr "ftp"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:371
++#: apt.conf.5.xml:388
  msgid ""
  "FTP URIs; ftp::Proxy is the default ftp proxy to use. It is in the standard "
  "form of <literal>ftp://[[user][:pass]@]host[:port]/</literal>. Per host "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:390
++#: apt.conf.5.xml:407
  msgid ""
  "Several settings are provided to control passive mode. Generally it is safe "
  "to leave passive mode on, it works in nearly every environment.  However "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:397
++#: apt.conf.5.xml:414
  msgid ""
  "It is possible to proxy FTP over HTTP by setting the <envar>ftp_proxy</"
  "envar> environment variable to a http url - see the discussion of the http "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:402
++#: apt.conf.5.xml:419
  msgid ""
  "The setting <literal>ForceExtended</literal> controls the use of RFC2428 "
  "<literal>EPSV</literal> and <literal>EPRT</literal> commands. The default is "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:409 sources.list.5.xml:137
++#: apt.conf.5.xml:426 sources.list.5.xml:153
  msgid "cdrom"
  msgstr "cdrom"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><literallayout>
--#: apt.conf.5.xml:415
++#: apt.conf.5.xml:432
  #, no-wrap
  msgid "/cdrom/::Mount \"foo\";"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:410
++#: apt.conf.5.xml:427
  msgid ""
  "CDROM URIs; the only setting for CDROM URIs is the mount point, "
  "<literal>cdrom::Mount</literal> which must be the mount point for the CDROM "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:420
++#: apt.conf.5.xml:437
  msgid "gpgv"
  msgstr "gpgv"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:421
++#: apt.conf.5.xml:438
  msgid ""
  "GPGV URIs; the only option for GPGV URIs is the option to pass additional "
  "parameters to gpgv.  <literal>gpgv::Options</literal> Additional options "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:426
++#: apt.conf.5.xml:443
  msgid "CompressionTypes"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><synopsis>
--#: apt.conf.5.xml:432
++#: apt.conf.5.xml:449
  #, no-wrap
  msgid "Acquire::CompressionTypes::<replaceable>FileExtension</replaceable> \"<replaceable>Methodname</replaceable>\";"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:427
++#: apt.conf.5.xml:444
  msgid ""
  "List of compression types which are understood by the acquire methods.  "
  "Files like <filename>Packages</filename> can be available in various "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><synopsis>
--#: apt.conf.5.xml:437
++#: apt.conf.5.xml:454
  #, no-wrap
  msgid "Acquire::CompressionTypes::Order:: \"gz\";"
  msgstr "Acquire::CompressionTypes::Order:: \"gz\";"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><synopsis>
--#: apt.conf.5.xml:440
++#: apt.conf.5.xml:457
  #, no-wrap
  msgid "Acquire::CompressionTypes::Order { \"lzma\"; \"gz\"; };"
  msgstr "Acquire::CompressionTypes::Order { \"lzma\"; \"gz\"; };"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:433
++#: apt.conf.5.xml:450
  msgid ""
  "Also the <literal>Order</literal> subgroup can be used to define in which "
  "order the acquire system will try to download the compressed files. The "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><literallayout>
--#: apt.conf.5.xml:444
++#: apt.conf.5.xml:461
  #, no-wrap
  msgid "Dir::Bin::bzip2 \"/bin/bzip2\";"
  msgstr "Dir::Bin::bzip2 \"/bin/bzip2\";"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:442
++#: apt.conf.5.xml:459
  msgid ""
  "Note that at run time the <literal>Dir::Bin::<replaceable>Methodname</"
  "replaceable></literal> will be checked: If this setting exists the method "
  "will only be used if this file exists, e.g. for the bzip2 method (the "
--"inbuilt) setting is <placeholder type=\"literallayout\" id=\"0\"/> Note also "
--"that list entries specified on the command line will be added at the end of "
--"the list specified in the configuration files, but before the default "
++"inbuilt) setting is: <placeholder type=\"literallayout\" id=\"0\"/> Note "
++"also that list entries specified on the command line will be added at the "
++"end of the list specified in the configuration files, but before the default "
  "entries. To prefer a type in this case over the ones specified in the "
  "configuration files you can set the option direct - not in list style.  This "
  "will not override the defined list, it will only prefix the list with this "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:449
++#: apt.conf.5.xml:466
  msgid ""
  "The special type <literal>uncompressed</literal> can be used to give "
--"uncompressed files a preference, but note that most archives doesn't provide "
++"uncompressed files a preference, but note that most archives don't provide "
  "uncompressed files so this is mostly only useable for local mirrors."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:454
++#: apt.conf.5.xml:471
  msgid "GzipIndexes"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:456
++#: apt.conf.5.xml:473
  msgid ""
  "When downloading <literal>gzip</literal> compressed indexes (Packages, "
  "Sources, or Translations), keep them gzip compressed locally instead of "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:463
++#: apt.conf.5.xml:480
  msgid "Languages"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:464
++#: apt.conf.5.xml:481
  msgid ""
  "The Languages subsection controls which <filename>Translation</filename> "
  "files are downloaded and in which order APT tries to display the Description-"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><programlisting>
--#: apt.conf.5.xml:480
++#: apt.conf.5.xml:497
  #, no-wrap
  msgid "Acquire::Languages { \"environment\"; \"de\"; \"en\"; \"none\"; \"fr\"; };"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:470
++#: apt.conf.5.xml:487
  msgid ""
  "The default list includes \"environment\" and \"en\". "
  "\"<literal>environment</literal>\" has a special meaning here: It will be "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:245
++#: apt.conf.5.xml:253
  msgid ""
  "The <literal>Acquire</literal> group of options controls the download of "
  "packages and the URI handlers.  <placeholder type=\"variablelist\" id=\"0\"/>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><title>
--#: apt.conf.5.xml:487
++#: apt.conf.5.xml:504
  msgid "Directories"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:489
++#: apt.conf.5.xml:506
  msgid ""
  "The <literal>Dir::State</literal> section has directories that pertain to "
  "local state information. <literal>lists</literal> is the directory to place "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:496
++#: apt.conf.5.xml:513
  msgid ""
  "<literal>Dir::Cache</literal> contains locations pertaining to local cache "
  "information, such as the two package caches <literal>srcpkgcache</literal> "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:505
++#: apt.conf.5.xml:522
  msgid ""
  "<literal>Dir::Etc</literal> contains the location of configuration files, "
  "<literal>sourcelist</literal> gives the location of the sourcelist and "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:511
++#: apt.conf.5.xml:528
  msgid ""
  "The <literal>Dir::Parts</literal> setting reads in all the config fragments "
  "in lexical order from the directory specified. After this is done then the "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:515
++#: apt.conf.5.xml:532
  msgid ""
  "Binary programs are pointed to by <literal>Dir::Bin</literal>. <literal>Dir::"
  "Bin::Methods</literal> specifies the location of the method handlers and "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:523
++#: apt.conf.5.xml:540
  msgid ""
  "The configuration item <literal>RootDir</literal> has a special meaning.  If "
  "set, all paths in <literal>Dir::</literal> will be relative to "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:536
++#: apt.conf.5.xml:553
  msgid ""
  "The <literal>Ignore-Files-Silently</literal> list can be used to specify "
  "which files APT should silently ignore while parsing the files in the "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><title>
--#: apt.conf.5.xml:545
++#: apt.conf.5.xml:562
  msgid "APT in DSelect"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:547
++#: apt.conf.5.xml:564
  msgid ""
  "When APT is used as a &dselect; method several configuration directives "
  "control the default behaviour. These are in the <literal>DSelect</literal> "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:551
++#: apt.conf.5.xml:568
  #, fuzzy
  msgid "Clean"
  msgstr "B<clean>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:552
++#: apt.conf.5.xml:569
  msgid ""
  "Cache Clean mode; this value may be one of always, prompt, auto, pre-auto "
  "and never.  always and prompt will remove all packages from the cache after "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:561
++#: apt.conf.5.xml:578
  msgid ""
  "The contents of this variable is passed to &apt-get; as command line options "
  "when it is run for the install phase."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:565
++#: apt.conf.5.xml:582
  #, fuzzy
  msgid "Updateoptions"
  msgstr "opcje"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:566
++#: apt.conf.5.xml:583
  msgid ""
  "The contents of this variable is passed to &apt-get; as command line options "
  "when it is run for the update phase."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:570
++#: apt.conf.5.xml:587
  msgid "PromptAfterUpdate"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:571
++#: apt.conf.5.xml:588
  msgid ""
  "If true the [U]pdate operation in &dselect; will always prompt to continue.  "
  "The default is to prompt only on error."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><title>
--#: apt.conf.5.xml:577
++#: apt.conf.5.xml:594
  msgid "How APT calls dpkg"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:578
++#: apt.conf.5.xml:595
  msgid ""
  "Several configuration directives control how APT invokes &dpkg;. These are "
  "in the <literal>DPkg</literal> section."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:583
++#: apt.conf.5.xml:600
  msgid ""
  "This is a list of options to pass to dpkg. The options must be specified "
  "using the list notation and each list item is passed as a single argument to "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:588
++#: apt.conf.5.xml:605
  msgid "Pre-Invoke"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:588
++#: apt.conf.5.xml:605
  msgid "Post-Invoke"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:589
++#: apt.conf.5.xml:606
  msgid ""
  "This is a list of shell commands to run before/after invoking &dpkg;.  Like "
  "<literal>options</literal> this must be specified in list notation. The "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:595
++#: apt.conf.5.xml:612
  msgid "Pre-Install-Pkgs"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:596
++#: apt.conf.5.xml:613
  msgid ""
  "This is a list of shell commands to run before invoking dpkg. Like "
  "<literal>options</literal> this must be specified in list notation. The "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:602
++#: apt.conf.5.xml:619
  msgid ""
  "Version 2 of this protocol dumps more information, including the protocol "
  "version, the APT configuration space and the packages, files and versions "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:609
++#: apt.conf.5.xml:626
  msgid "Run-Directory"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:610
++#: apt.conf.5.xml:627
  msgid ""
  "APT chdirs to this directory before invoking dpkg, the default is <filename>/"
  "</filename>."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:614
++#: apt.conf.5.xml:631
  #, fuzzy
  msgid "Build-options"
  msgstr "opcje"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:615
++#: apt.conf.5.xml:632
  msgid ""
  "These options are passed to &dpkg-buildpackage; when compiling packages, the "
  "default is to disable signing and produce all binaries."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><title>
--#: apt.conf.5.xml:620
++#: apt.conf.5.xml:637
  msgid "dpkg trigger usage (and related options)"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
--#: apt.conf.5.xml:621
++#: apt.conf.5.xml:638
  msgid ""
  "APT can call dpkg in a way so it can make aggressive use of triggers over "
  "multiple calls of dpkg. Without further options dpkg will use triggers only "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><literallayout>
--#: apt.conf.5.xml:636
++#: apt.conf.5.xml:653
  #, no-wrap
  msgid ""
  "DPkg::NoTriggers \"true\";\n"
@@@ -6437,7 -6522,7 +6633,7 @@@ msgstr "
  "DPkg::TriggersPending \"true\";"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
--#: apt.conf.5.xml:630
++#: apt.conf.5.xml:647
  msgid ""
  "Note that it is not guaranteed that APT will support these options or that "
  "these options will not cause (big) trouble in the future. If you have "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
--#: apt.conf.5.xml:642
++#: apt.conf.5.xml:659
  msgid "DPkg::NoTriggers"
  msgstr "DPkg::NoTriggers"
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:643
++#: apt.conf.5.xml:660
  msgid ""
  "Add the no triggers flag to all dpkg calls (except the ConfigurePending "
  "call).  See &dpkg; if you are interested in what this actually means. In "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
--#: apt.conf.5.xml:650
++#: apt.conf.5.xml:667
  msgid "PackageManager::Configure"
  msgstr "PackageManager::Configure"
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:651
++#: apt.conf.5.xml:668
  msgid ""
  "Valid values are \"<literal>all</literal>\", \"<literal>smart</literal>\" "
  "and \"<literal>no</literal>\".  \"<literal>all</literal>\" is the default "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
--#: apt.conf.5.xml:661
++#: apt.conf.5.xml:678
  msgid "DPkg::ConfigurePending"
  msgstr "DPkg::ConfigurePending"
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:662
++#: apt.conf.5.xml:679
  msgid ""
  "If this option is set apt will call <command>dpkg --configure --pending</"
  "command> to let dpkg handle all required configurations and triggers. This "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
--#: apt.conf.5.xml:668
++#: apt.conf.5.xml:685
  msgid "DPkg::TriggersPending"
  msgstr "DPkg::TriggersPending"
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:669
++#: apt.conf.5.xml:686
  msgid ""
  "Useful for <literal>smart</literal> configuration as a package which has "
  "pending triggers is not considered as <literal>installed</literal> and dpkg "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
--#: apt.conf.5.xml:674
++#: apt.conf.5.xml:691
  msgid "PackageManager::UnpackAll"
  msgstr "PackageManager::UnpackAll"
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:675
++#: apt.conf.5.xml:692
  msgid ""
  "As the configuration can be deferred to be done at the end by dpkg it can be "
  "tried to order the unpack series only by critical needs, e.g. by Pre-"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
--#: apt.conf.5.xml:682
++#: apt.conf.5.xml:699
  msgid "OrderList::Score::Immediate"
  msgstr "OrderList::Score::Immediate"
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para><literallayout>
--#: apt.conf.5.xml:690
++#: apt.conf.5.xml:707
  #, no-wrap
  msgid ""
  "OrderList::Score {\n"
@@@ -6560,7 -6645,7 +6756,7 @@@ msgstr "
  "};"
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:683
++#: apt.conf.5.xml:700
  msgid ""
  "Essential packages (and there dependencies) should be configured immediately "
  "after unpacking. It will be a good idea to do this quite early in the "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><title>
--#: apt.conf.5.xml:703
++#: apt.conf.5.xml:720
  msgid "Periodic and Archives options"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:704
++#: apt.conf.5.xml:721
  msgid ""
  "<literal>APT::Periodic</literal> and <literal>APT::Archives</literal> groups "
  "of options configure behavior of apt periodic updates, which is done by "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><title>
--#: apt.conf.5.xml:712
++#: apt.conf.5.xml:729
  #, fuzzy
  msgid "Debug options"
  msgstr "opcje"
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:714
++#: apt.conf.5.xml:731
  msgid ""
  "Enabling options in the <literal>Debug::</literal> section will cause "
  "debugging information to be sent to the standard error stream of the program "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
--#: apt.conf.5.xml:725
++#: apt.conf.5.xml:742
  msgid ""
  "<literal>Debug::pkgProblemResolver</literal> enables output about the "
  "decisions made by <literal>dist-upgrade, upgrade, install, remove, purge</"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
--#: apt.conf.5.xml:733
++#: apt.conf.5.xml:750
  msgid ""
  "<literal>Debug::NoLocking</literal> disables all file locking.  This can be "
  "used to run some operations (for instance, <literal>apt-get -s install</"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
--#: apt.conf.5.xml:742
++#: apt.conf.5.xml:759
  msgid ""
  "<literal>Debug::pkgDPkgPM</literal> prints out the actual command line each "
  "time that <literal>apt</literal> invokes &dpkg;."
@@@ -6631,7 -6716,7 +6827,7 @@@ msgstr "
  #.       motivating example, except I haven't a clue why you'd want
  #.       to do this. 
  #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
--#: apt.conf.5.xml:750
++#: apt.conf.5.xml:767
  #, fuzzy
  msgid ""
  "<literal>Debug::IdentCdrom</literal> disables the inclusion of statfs data "
@@@ -6641,104 -6726,104 +6837,104 @@@ msgstr "
  "in CDROM IDs."
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:760
++#: apt.conf.5.xml:777
  msgid "A full list of debugging options to apt follows."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:765
++#: apt.conf.5.xml:782
  msgid "<literal>Debug::Acquire::cdrom</literal>"
  msgstr "<literal>Debug::Acquire::cdrom</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:769
++#: apt.conf.5.xml:786
  msgid ""
  "Print information related to accessing <literal>cdrom://</literal> sources."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:776
++#: apt.conf.5.xml:793
  msgid "<literal>Debug::Acquire::ftp</literal>"
  msgstr "<literal>Debug::Acquire::ftp</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:780
++#: apt.conf.5.xml:797
  msgid "Print information related to downloading packages using FTP."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:787
++#: apt.conf.5.xml:804
  msgid "<literal>Debug::Acquire::http</literal>"
  msgstr "<literal>Debug::Acquire::http</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:791
++#: apt.conf.5.xml:808
  msgid "Print information related to downloading packages using HTTP."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:798
++#: apt.conf.5.xml:815
  msgid "<literal>Debug::Acquire::https</literal>"
  msgstr "<literal>Debug::Acquire::https</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:802
++#: apt.conf.5.xml:819
  msgid "Print information related to downloading packages using HTTPS."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:809
++#: apt.conf.5.xml:826
  msgid "<literal>Debug::Acquire::gpgv</literal>"
  msgstr "<literal>Debug::Acquire::gpgv</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:813
++#: apt.conf.5.xml:830
  msgid ""
  "Print information related to verifying cryptographic signatures using "
  "<literal>gpg</literal>."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:820
++#: apt.conf.5.xml:837
  msgid "<literal>Debug::aptcdrom</literal>"
  msgstr "<literal>Debug::aptcdrom</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:824
++#: apt.conf.5.xml:841
  msgid ""
  "Output information about the process of accessing collections of packages "
  "stored on CD-ROMs."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:831
++#: apt.conf.5.xml:848
  msgid "<literal>Debug::BuildDeps</literal>"
  msgstr "<literal>Debug::BuildDeps</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:834
++#: apt.conf.5.xml:851
  msgid "Describes the process of resolving build-dependencies in &apt-get;."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:841
++#: apt.conf.5.xml:858
  msgid "<literal>Debug::Hashes</literal>"
  msgstr "<literal>Debug::Hashes</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:844
++#: apt.conf.5.xml:861
  msgid ""
  "Output each cryptographic hash that is generated by the <literal>apt</"
  "literal> libraries."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:851
++#: apt.conf.5.xml:868
  msgid "<literal>Debug::IdentCDROM</literal>"
  msgstr "<literal>Debug::IdentCDROM</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:854
++#: apt.conf.5.xml:871
  msgid ""
  "Do not include information from <literal>statfs</literal>, namely the number "
  "of used and free blocks on the CD-ROM filesystem, when generating an ID for "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:862
++#: apt.conf.5.xml:879
  msgid "<literal>Debug::NoLocking</literal>"
  msgstr "<literal>Debug::NoLocking</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:865
++#: apt.conf.5.xml:882
  msgid ""
  "Disable all file locking.  For instance, this will allow two instances of "
  "<quote><literal>apt-get update</literal></quote> to run at the same time."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:873
++#: apt.conf.5.xml:890
  msgid "<literal>Debug::pkgAcquire</literal>"
  msgstr "<literal>Debug::pkgAcquire</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:877
++#: apt.conf.5.xml:894
  msgid "Log when items are added to or removed from the global download queue."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:884
++#: apt.conf.5.xml:901
  msgid "<literal>Debug::pkgAcquire::Auth</literal>"
  msgstr "<literal>Debug::pkgAcquire::Auth</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:887
++#: apt.conf.5.xml:904
  msgid ""
  "Output status messages and errors related to verifying checksums and "
  "cryptographic signatures of downloaded files."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:894
++#: apt.conf.5.xml:911
  msgid "<literal>Debug::pkgAcquire::Diffs</literal>"
  msgstr "<literal>Debug::pkgAcquire::Diffs</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:897
++#: apt.conf.5.xml:914
  msgid ""
  "Output information about downloading and applying package index list diffs, "
  "and errors relating to package index list diffs."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:905
++#: apt.conf.5.xml:922
  msgid "<literal>Debug::pkgAcquire::RRed</literal>"
  msgstr "<literal>Debug::pkgAcquire::RRed</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:909
++#: apt.conf.5.xml:926
  msgid ""
  "Output information related to patching apt package lists when downloading "
  "index diffs instead of full indices."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:916
++#: apt.conf.5.xml:933
  msgid "<literal>Debug::pkgAcquire::Worker</literal>"
  msgstr "<literal>Debug::pkgAcquire::Worker</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:920
++#: apt.conf.5.xml:937
  msgid ""
  "Log all interactions with the sub-processes that actually perform downloads."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:927
++#: apt.conf.5.xml:944
  msgid "<literal>Debug::pkgAutoRemove</literal>"
  msgstr "<literal>Debug::pkgAutoRemove</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:931
++#: apt.conf.5.xml:948
  msgid ""
  "Log events related to the automatically-installed status of packages and to "
  "the removal of unused packages."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:938
++#: apt.conf.5.xml:955
  msgid "<literal>Debug::pkgDepCache::AutoInstall</literal>"
  msgstr "<literal>Debug::pkgDepCache::AutoInstall</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:941
++#: apt.conf.5.xml:958
  msgid ""
  "Generate debug messages describing which packages are being automatically "
  "installed to resolve dependencies.  This corresponds to the initial auto-"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:952
++#: apt.conf.5.xml:969
  msgid "<literal>Debug::pkgDepCache::Marker</literal>"
  msgstr "<literal>Debug::pkgDepCache::Marker</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:955
++#: apt.conf.5.xml:972
  msgid ""
  "Generate debug messages describing which package is marked as keep/install/"
  "remove while the ProblemResolver does his work.  Each addition or deletion "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:974
++#: apt.conf.5.xml:991
  msgid "<literal>Debug::pkgInitConfig</literal>"
  msgstr "<literal>Debug::pkgInitConfig</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:977
++#: apt.conf.5.xml:994
  msgid "Dump the default configuration to standard error on startup."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:984
++#: apt.conf.5.xml:1001
  msgid "<literal>Debug::pkgDPkgPM</literal>"
  msgstr "<literal>Debug::pkgDPkgPM</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:987
++#: apt.conf.5.xml:1004
  msgid ""
  "When invoking &dpkg;, output the precise command line with which it is being "
  "invoked, with arguments separated by a single space character."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:995
++#: apt.conf.5.xml:1012
  msgid "<literal>Debug::pkgDPkgProgressReporting</literal>"
  msgstr "<literal>Debug::pkgDPkgProgressReporting</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:998
++#: apt.conf.5.xml:1015
  msgid ""
  "Output all the data received from &dpkg; on the status file descriptor and "
  "any errors encountered while parsing it."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:1005
++#: apt.conf.5.xml:1022
  msgid "<literal>Debug::pkgOrderList</literal>"
  msgstr "<literal>Debug::pkgOrderList</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:1009
++#: apt.conf.5.xml:1026
  msgid ""
  "Generate a trace of the algorithm that decides the order in which "
  "<literal>apt</literal> should pass packages to &dpkg;."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:1017
++#: apt.conf.5.xml:1034
  msgid "<literal>Debug::pkgPackageManager</literal>"
  msgstr "<literal>Debug::pkgPackageManager</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:1021
++#: apt.conf.5.xml:1038
  msgid ""
  "Output status messages tracing the steps performed when invoking &dpkg;."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:1028
++#: apt.conf.5.xml:1045
  msgid "<literal>Debug::pkgPolicy</literal>"
  msgstr "<literal>Debug::pkgPolicy</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:1032
++#: apt.conf.5.xml:1049
  msgid "Output the priority of each package list on startup."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:1038
++#: apt.conf.5.xml:1055
  msgid "<literal>Debug::pkgProblemResolver</literal>"
  msgstr "<literal>Debug::pkgProblemResolver</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:1042
++#: apt.conf.5.xml:1059
  msgid ""
  "Trace the execution of the dependency resolver (this applies only to what "
  "happens when a complex dependency problem is encountered)."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:1050
++#: apt.conf.5.xml:1067
  msgid "<literal>Debug::pkgProblemResolver::ShowScores</literal>"
  msgstr "<literal>Debug::pkgProblemResolver::ShowScores</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:1053
++#: apt.conf.5.xml:1070
  msgid ""
  "Display a list of all installed packages with their calculated score used by "
  "the pkgProblemResolver. The description of the package is the same as "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:1061
++#: apt.conf.5.xml:1078
  msgid "<literal>Debug::sourceList</literal>"
  msgstr "<literal>Debug::sourceList</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:1065
++#: apt.conf.5.xml:1082
  msgid ""
  "Print information about the vendors read from <filename>/etc/apt/vendors."
  "list</filename>."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:1088
++#: apt.conf.5.xml:1105
  msgid ""
  "&configureindex; is a configuration file showing example values for all "
  "possible options."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist>
--#: apt.conf.5.xml:1095
++#: apt.conf.5.xml:1112
  msgid "&file-aptconf;"
  msgstr "&file-aptconf;"
  
  #.  ? reading apt.conf 
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:1100
++#: apt.conf.5.xml:1117
  msgid "&apt-cache;, &apt-config;, &apt-preferences;."
  msgstr "&apt-cache;, &apt-config;, &apt-preferences;."
  
@@@ -7052,16 -7137,16 +7248,30 @@@ msgstr "
  
  #. type: Content of: <refentry><refsect1><para>
  #: apt_preferences.5.xml:70
++#, fuzzy
++#| msgid ""
++#| "The <filename>/etc/apt/sources.list.d</filename> directory provides a way "
++#| "to add sources.list entries in separate files.  The format is the same as "
++#| "for the regular <filename>sources.list</filename> file.  File names need "
++#| "to end with <filename>.list</filename> and may only contain letters (a-z "
++#| "and A-Z), digits (0-9), underscore (_), hyphen (-) and period (.) "
++#| "characters.  Otherwise they will be silently ignored."
  msgid ""
  "Note that the files in the <filename>/etc/apt/preferences.d</filename> "
  "directory are parsed in alphanumeric ascending order and need to obey the "
--"following naming convention: The files have no or \"<literal>pref</literal>"
--"\" as filename extension and which only contain alphanumeric, hyphen (-), "
++"following naming convention: The files have either no or \"<literal>pref</"
++"literal>\" as filename extension and only contain alphanumeric, hyphen (-), "
  "underscore (_) and period (.) characters.  Otherwise APT will print a notice "
  "that it has ignored a file if the file doesn't match a pattern in the "
  "<literal>Dir::Ignore-Files-Silently</literal> configuration list - in this "
  "case it will be silently ignored."
  msgstr ""
++"Katalog <filename>/etc/apt/sources.list.d</filename>  umożliwia podzielenie "
++"pliku źródeł na osobne pliki. Format jest dokładnie taki sam, jak w "
++"przypadku zwykłego pliku <filename>sources.list</filename>. Nazwy plików w "
++"tym katalogu muszą się kończyć rozszerzeniem <filename>.list</filename> i "
++"mogą składać się tylko z liter (a-z i A-Z), cyfr (0-9), znaku podkreślenia "
++"(_), pauzy (-) i kropki (.). Inne pliki zostaną zignorowane."
  
  #. type: Content of: <refentry><refsect1><refsect2><title>
  #: apt_preferences.5.xml:79
@@@ -7402,17 -7487,82 +7612,82 @@@ msgstr "
  "Pin-Priority: 500\n"
  
  #. type: Content of: <refentry><refsect1><refsect2><title>
- #: apt_preferences.5.xml:263
+ #: apt_preferences.5.xml:262
+ msgid "Regular expressions and glob() syntax"
+ msgstr ""
+ #. type: Content of: <refentry><refsect1><refsect2><para>
+ #: apt_preferences.5.xml:264
+ msgid ""
+ "APT also supports pinning by glob() expressions and regular expressions "
+ "surrounded by /. For example, the following example assigns the priority 500 "
+ "to all packages from experimental where the name starts with gnome (as a glob"
 -"()-like expression or contains the word kde (as a POSIX extended regular "
++"()-like expression) or contains the word kde (as a POSIX extended regular "
+ "expression surrounded by slashes)."
+ msgstr ""
+ #. type: Content of: <refentry><refsect1><refsect2><programlisting>
+ #: apt_preferences.5.xml:273
+ #, fuzzy, no-wrap
+ #| msgid ""
+ #| "Package: *\n"
+ #| "Pin: release a=unstable\n"
+ #| "Pin-Priority: 50\n"
+ msgid ""
+ "Package: gnome* /kde/\n"
+ "Pin: release n=experimental\n"
+ "Pin-Priority: 500\n"
+ msgstr ""
+ "Package: *\n"
+ "Pin: release a=unstable\n"
+ "Pin-Priority: 50\n"
+ #. type: Content of: <refentry><refsect1><refsect2><para>
+ #: apt_preferences.5.xml:279
+ msgid ""
+ "The rule for those expressions is that they can occur anywhere where a "
 -"string can occur. Those, the following pin assigns the priority 990 to all "
++"string can occur. Thus, the following pin assigns the priority 990 to all "
+ "packages from a release starting with karmic."
+ msgstr ""
+ #. type: Content of: <refentry><refsect1><refsect2><programlisting>
+ #: apt_preferences.5.xml:285
+ #, fuzzy, no-wrap
+ #| msgid ""
+ #| "Package: *\n"
+ #| "Pin: release a=unstable\n"
+ #| "Pin-Priority: 50\n"
+ msgid ""
+ "Package: *\n"
+ "Pin: release n=karmic*\n"
+ "Pin-Priority: 990\n"
+ msgstr ""
+ "Package: *\n"
+ "Pin: release a=unstable\n"
+ "Pin-Priority: 50\n"
+ #. type: Content of: <refentry><refsect1><refsect2><literal>
+ #: apt_preferences.5.xml:290
+ msgid "Package"
+ msgstr ""
+ #. type: Content of: <refentry><refsect1><refsect2><literal>
+ #: apt_preferences.5.xml:296
+ msgid "*"
+ msgstr ""
+ #. type: Content of: <refentry><refsect1><refsect2><title>
+ #: apt_preferences.5.xml:306
  msgid "How APT Interprets Priorities"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:271
+ #: apt_preferences.5.xml:314
  msgid "P &gt; 1000"
  msgstr "P &gt; 1000"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:272
+ #: apt_preferences.5.xml:315
  #, fuzzy
  msgid ""
  "causes a version to be installed even if this constitutes a downgrade of the "
@@@ -7422,12 -7572,12 +7697,12 @@@ msgstr "
  "pakietu nie jest jeszcze zainstalowana"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:276
+ #: apt_preferences.5.xml:319
  msgid "990 &lt; P &lt;=1000"
  msgstr "990 &lt; P &lt;=1000"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:277
+ #: apt_preferences.5.xml:320
  #, fuzzy
  msgid ""
  "causes a version to be installed even if it does not come from the target "
@@@ -7437,12 -7587,12 +7712,12 @@@ msgstr "
  "pakietu nie jest jeszcze zainstalowana"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:282
+ #: apt_preferences.5.xml:325
  msgid "500 &lt; P &lt;=990"
  msgstr "500 &lt; P &lt;=990"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:283
+ #: apt_preferences.5.xml:326
  #, fuzzy
  msgid ""
  "causes a version to be installed unless there is a version available "
@@@ -7452,12 -7602,12 +7727,12 @@@ msgstr "
  "pakietu nie jest jeszcze zainstalowana"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:288
+ #: apt_preferences.5.xml:331
  msgid "100 &lt; P &lt;=500"
  msgstr "100 &lt; P &lt;=500"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:289
+ #: apt_preferences.5.xml:332
  #, fuzzy
  msgid ""
  "causes a version to be installed unless there is a version available "
@@@ -7467,12 -7617,12 +7742,12 @@@ msgstr "
  "pakietu nie jest jeszcze zainstalowana"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:294
+ #: apt_preferences.5.xml:337
  msgid "0 &lt; P &lt;=100"
  msgstr "0 &lt; P &lt;=100"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:295
+ #: apt_preferences.5.xml:338
  msgid ""
  "causes a version to be installed only if there is no installed version of "
  "the package"
@@@ -7481,17 -7631,17 +7756,17 @@@ msgstr "
  "pakietu nie jest jeszcze zainstalowana"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:299
+ #: apt_preferences.5.xml:342
  msgid "P &lt; 0"
  msgstr "P &lt; 0"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:300
+ #: apt_preferences.5.xml:343
  msgid "prevents the version from being installed"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:266
+ #: apt_preferences.5.xml:309
  msgid ""
  "Priorities (P) assigned in the APT preferences file must be positive or "
  "negative integers.  They are interpreted as follows (roughly speaking): "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:305
+ #: apt_preferences.5.xml:348
  msgid ""
  "If any specific-form records match an available package version then the "
  "first such record determines the priority of the package version.  Failing "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:311
+ #: apt_preferences.5.xml:354
  msgid ""
  "For example, suppose the APT preferences file contains the three records "
  "presented earlier:"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><programlisting>
- #: apt_preferences.5.xml:315
+ #: apt_preferences.5.xml:358
  #, no-wrap
  msgid ""
  "Package: perl\n"
@@@ -7543,12 -7693,12 +7818,12 @@@ msgstr "
  "Pin-Priority: 50\n"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:328
+ #: apt_preferences.5.xml:371
  msgid "Then:"
  msgstr "Wtedy:"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
- #: apt_preferences.5.xml:330
+ #: apt_preferences.5.xml:373
  msgid ""
  "The most recent available version of the <literal>perl</literal> package "
  "will be installed, so long as that version's version number begins with "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
- #: apt_preferences.5.xml:335
+ #: apt_preferences.5.xml:378
  msgid ""
  "A version of any package other than <literal>perl</literal> that is "
  "available from the local system has priority over other versions, even "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
- #: apt_preferences.5.xml:339
+ #: apt_preferences.5.xml:382
  msgid ""
  "A version of a package whose origin is not the local system but some other "
  "site listed in &sources-list; and which belongs to an <literal>unstable</"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><title>
- #: apt_preferences.5.xml:349
+ #: apt_preferences.5.xml:392
  msgid "Determination of Package Version and Distribution Properties"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:351
+ #: apt_preferences.5.xml:394
  msgid ""
  "The locations listed in the &sources-list; file should provide "
  "<filename>Packages</filename> and <filename>Release</filename> files to "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:363
+ #: apt_preferences.5.xml:406
  msgid "the <literal>Package:</literal> line"
  msgstr "linia <literal>Package:</literal>"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:364
+ #: apt_preferences.5.xml:407
  msgid "gives the package name"
  msgstr "podaje nazwę pakietu"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:367 apt_preferences.5.xml:417
+ #: apt_preferences.5.xml:410 apt_preferences.5.xml:460
  msgid "the <literal>Version:</literal> line"
  msgstr "linia <literal>Version:</literal>"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:368
+ #: apt_preferences.5.xml:411
  msgid "gives the version number for the named package"
  msgstr "podaje numer wersji danego pakietu"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:355
+ #: apt_preferences.5.xml:398
  msgid ""
  "The <filename>Packages</filename> file is normally found in the directory "
  "<filename>.../dists/<replaceable>dist-name</replaceable>/"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:384
+ #: apt_preferences.5.xml:427
  msgid "the <literal>Archive:</literal> or <literal>Suite:</literal> line"
  msgstr "linia <literal>Archive:</literal> lub <literal>Suite:</literal>"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:385
+ #: apt_preferences.5.xml:428
  msgid ""
  "names the archive to which all the packages in the directory tree belong.  "
  "For example, the line \"Archive: stable\" or \"Suite: stable\" specifies "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
- #: apt_preferences.5.xml:395
+ #: apt_preferences.5.xml:438
  #, no-wrap
  msgid "Pin: release a=stable\n"
  msgstr "Pin: release a=stable\n"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:401
+ #: apt_preferences.5.xml:444
  msgid "the <literal>Codename:</literal> line"
  msgstr "linia <literal>Codename:</literal>"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:402
+ #: apt_preferences.5.xml:445
  msgid ""
  "names the codename to which all the packages in the directory tree belong.  "
  "For example, the line \"Codename: &testing-codename;\" specifies that all of "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
- #: apt_preferences.5.xml:411
+ #: apt_preferences.5.xml:454
  #, fuzzy, no-wrap
  #| msgid "Pin: release a=stable\n"
  msgid "Pin: release n=&testing-codename;\n"
  msgstr "Pin: release a=stable\n"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:418
+ #: apt_preferences.5.xml:461
  msgid ""
  "names the release version.  For example, the packages in the tree might "
  "belong to Debian GNU/Linux release version 3.0.  Note that there is normally "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
- #: apt_preferences.5.xml:427
+ #: apt_preferences.5.xml:470
  #, no-wrap
  msgid ""
  "Pin: release v=3.0\n"
@@@ -7688,12 -7838,12 +7963,12 @@@ msgstr "
  "Pin: release 3.0\n"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:436
+ #: apt_preferences.5.xml:479
  msgid "the <literal>Component:</literal> line"
  msgstr "linia <literal>Component:</literal>"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:437
+ #: apt_preferences.5.xml:480
  msgid ""
  "names the licensing component associated with the packages in the directory "
  "tree of the <filename>Release</filename> file.  For example, the line "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
- #: apt_preferences.5.xml:446
+ #: apt_preferences.5.xml:489
  #, no-wrap
  msgid "Pin: release c=main\n"
  msgstr "Pin: release c=main\n"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:452
+ #: apt_preferences.5.xml:495
  msgid "the <literal>Origin:</literal> line"
  msgstr "linia <literal>Origin:</literal>"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:453
+ #: apt_preferences.5.xml:496
  msgid ""
  "names the originator of the packages in the directory tree of the "
  "<filename>Release</filename> file.  Most commonly, this is <literal>Debian</"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
- #: apt_preferences.5.xml:459
+ #: apt_preferences.5.xml:502
  #, no-wrap
  msgid "Pin: release o=Debian\n"
  msgstr "Pin: release o=Debian\n"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:465
+ #: apt_preferences.5.xml:508
  msgid "the <literal>Label:</literal> line"
  msgstr "linia <literal>Label:</literal>"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:466
+ #: apt_preferences.5.xml:509
  msgid ""
  "names the label of the packages in the directory tree of the "
  "<filename>Release</filename> file.  Most commonly, this is <literal>Debian</"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
- #: apt_preferences.5.xml:472
+ #: apt_preferences.5.xml:515
  #, no-wrap
  msgid "Pin: release l=Debian\n"
  msgstr "Pin: release l=Debian\n"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:373
+ #: apt_preferences.5.xml:416
  msgid ""
  "The <filename>Release</filename> file is normally found in the directory "
  "<filename>.../dists/<replaceable>dist-name</replaceable></filename>: for "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:479
+ #: apt_preferences.5.xml:522
  msgid ""
  "All of the <filename>Packages</filename> and <filename>Release</filename> "
  "files retrieved from locations listed in the &sources-list; file are stored "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><title>
- #: apt_preferences.5.xml:492
+ #: apt_preferences.5.xml:535
  msgid "Optional Lines in an APT Preferences Record"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:494
+ #: apt_preferences.5.xml:537
  msgid ""
  "Each record in the APT preferences file can optionally begin with one or "
  "more lines beginning with the word <literal>Explanation:</literal>.  This "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><title>
- #: apt_preferences.5.xml:503
+ #: apt_preferences.5.xml:546
  msgid "Tracking Stable"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
- #: apt_preferences.5.xml:511
+ #: apt_preferences.5.xml:554
  #, fuzzy, no-wrap
  msgid ""
  "Explanation: Uninstall or do not install any Debian-originated\n"
@@@ -7821,7 -7971,7 +8096,7 @@@ msgstr "
  "Pin-Priority: -10\n"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:505
+ #: apt_preferences.5.xml:548
  msgid ""
  "The following APT preferences file will cause APT to assign a priority "
  "higher than the default (500) to all package versions belonging to a "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
- #: apt_preferences.5.xml:528 apt_preferences.5.xml:574
- #: apt_preferences.5.xml:632
+ #: apt_preferences.5.xml:571 apt_preferences.5.xml:617
+ #: apt_preferences.5.xml:675
  #, no-wrap
  msgid ""
  "apt-get install <replaceable>package-name</replaceable>\n"
@@@ -7844,7 -7994,7 +8119,7 @@@ msgstr "
  "apt-get dist-upgrade\n"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:523
+ #: apt_preferences.5.xml:566
  msgid ""
  "With a suitable &sources-list; file and the above preferences file, any of "
  "the following commands will cause APT to upgrade to the latest "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
- #: apt_preferences.5.xml:540
+ #: apt_preferences.5.xml:583
  #, no-wrap
  msgid "apt-get install <replaceable>package</replaceable>/testing\n"
  msgstr "apt-get install <replaceable>pakiet</replaceable>/testing\n"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:534
+ #: apt_preferences.5.xml:577
  msgid ""
  "The following command will cause APT to upgrade the specified package to the "
  "latest version from the <literal>testing</literal> distribution; the package "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><title>
- #: apt_preferences.5.xml:546
+ #: apt_preferences.5.xml:589
  msgid "Tracking Testing or Unstable"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
- #: apt_preferences.5.xml:555
+ #: apt_preferences.5.xml:598
  #, no-wrap
  msgid ""
  "Package: *\n"
@@@ -7901,7 -8051,7 +8176,7 @@@ msgstr "
  "Pin-Priority: -10\n"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:548
+ #: apt_preferences.5.xml:591
  msgid ""
  "The following APT preferences file will cause APT to assign a high priority "
  "to package versions from the <literal>testing</literal> distribution, a "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:569
+ #: apt_preferences.5.xml:612
  msgid ""
  "With a suitable &sources-list; file and the above preferences file, any of "
  "the following commands will cause APT to upgrade to the latest "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
- #: apt_preferences.5.xml:589
+ #: apt_preferences.5.xml:632
  #, no-wrap
  msgid "apt-get install <replaceable>package</replaceable>/unstable\n"
  msgstr "apt-get install <replaceable>pakiet</replaceable>/unstable\n"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:580
+ #: apt_preferences.5.xml:623
  msgid ""
  "The following command will cause APT to upgrade the specified package to the "
  "latest version from the <literal>unstable</literal> distribution.  "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><title>
- #: apt_preferences.5.xml:596
+ #: apt_preferences.5.xml:639
  msgid "Tracking the evolution of a codename release"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
- #: apt_preferences.5.xml:610
+ #: apt_preferences.5.xml:653
  #, fuzzy, no-wrap
  msgid ""
  "Explanation: Uninstall or do not install any Debian-originated package versions\n"
@@@ -7978,7 -8128,7 +8253,7 @@@ msgstr "
  "Pin-Priority: -10\n"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:598
+ #: apt_preferences.5.xml:641
  msgid ""
  "The following APT preferences file will cause APT to assign a priority "
  "higher than the default (500) to all package versions belonging to a "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:627
+ #: apt_preferences.5.xml:670
  msgid ""
  "With a suitable &sources-list; file and the above preferences file, any of "
  "the following commands will cause APT to upgrade to the latest version(s) in "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
- #: apt_preferences.5.xml:647
+ #: apt_preferences.5.xml:690
  #, no-wrap
  msgid "apt-get install <replaceable>package</replaceable>/sid\n"
  msgstr "apt-get install <replaceable>pakiet</replaceable>/sid\n"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:638
+ #: apt_preferences.5.xml:681
  msgid ""
  "The following command will cause APT to upgrade the specified package to the "
  "latest version from the <literal>sid</literal> distribution.  Thereafter, "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist>
- #: apt_preferences.5.xml:656
+ #: apt_preferences.5.xml:699
  msgid "&file-preferences;"
  msgstr "&file-preferences;"
  
  #. type: Content of: <refentry><refsect1><para>
- #: apt_preferences.5.xml:662
+ #: apt_preferences.5.xml:705
  msgid "&apt-get; &apt-cache; &apt-conf; &sources-list;"
  msgstr "&apt-get; &apt-cache; &apt-conf; &sources-list;"
  
@@@ -8158,8 -8308,8 +8433,9 @@@ msgstr "
  
  #. type: Content of: <refentry><refsect1><literallayout>
  #: sources.list.5.xml:81
--#, no-wrap
--msgid "deb uri distribution [component1] [component2] [...]"
++#, fuzzy, no-wrap
++#| msgid "deb uri distribution [component1] [component2] [...]"
++msgid "deb [ options ] uri distribution [component1] [component2] [...]"
  msgstr "deb URI dystrybucja [komponent1] [komponent2] [...]"
  
  #. type: Content of: <refentry><refsect1><para>
@@@ -8232,6 -8382,6 +8508,38 @@@ msgstr "
  #. type: Content of: <refentry><refsect1><para>
  #: sources.list.5.xml:112
  msgid ""
++"<literal>options</literal> is always optional and needs to be surounded by "
++"square brackets. It can consist of multiple settings in the form "
++"<literal><replaceable>setting</replaceable>=<replaceable>value</"
++"replaceable></literal>.  Multiple settings are separated by spaces. The "
++"following settings are supported by APT, note through that unsupported "
++"settings will be ignored silently:"
++msgstr ""
++
++#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
++#: sources.list.5.xml:117
++msgid ""
++"<literal>arch=<replaceable>arch1</replaceable>,<replaceable>arch2</"
++"replaceable>,…</literal> can be used to specify for which architectures "
++"packages information should be downloaded. If this option is not set all "
++"architectures defined by the <literal>APT::Architectures</literal> option "
++"will be downloaded."
++msgstr ""
++
++#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
++#: sources.list.5.xml:121
++msgid ""
++"<literal>trusted=yes</literal> can be set to indicate that packages from "
++"this source are always authenificated even if the <filename>Release</"
++"filename> file is not signed or the signature can't be checked. This "
++"disables parts of &apt-secure; and should therefore only be used in a local "
++"and trusted context. <literal>trusted=no</literal> is the opposite which "
++"handles even correctly authenificated sources as not authenificated."
++msgstr ""
++
++#. type: Content of: <refentry><refsect1><para>
++#: sources.list.5.xml:128
++msgid ""
  "It is important to list sources in order of preference, with the most "
  "preferred source listed first. Typically this will result in sorting by "
  "speed from fastest to slowest (CD-ROM followed by hosts on a local network, "
@@@ -8244,12 -8394,12 +8552,12 @@@ msgstr "
  "komputerami w Internecie)."
  
  #. type: Content of: <refentry><refsect1><para>
--#: sources.list.5.xml:117
++#: sources.list.5.xml:133
  msgid "Some examples:"
  msgstr "Kilka przykładów:"
  
  #. type: Content of: <refentry><refsect1><literallayout>
--#: sources.list.5.xml:119
++#: sources.list.5.xml:135
  #, fuzzy, no-wrap
  #| msgid ""
  #| "deb http://http.us.debian.org/debian stable main contrib non-free\n"
@@@ -8265,17 -8415,17 +8573,17 @@@ msgstr "
  "   "
  
  #. type: Content of: <refentry><refsect1><title>
--#: sources.list.5.xml:125
++#: sources.list.5.xml:141
  msgid "URI specification"
  msgstr "Określanie URI"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: sources.list.5.xml:130
++#: sources.list.5.xml:146
  msgid "file"
  msgstr "file"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: sources.list.5.xml:132
++#: sources.list.5.xml:148
  msgid ""
  "The file scheme allows an arbitrary directory in the file system to be "
  "considered an archive. This is useful for NFS mounts and local mirrors or "
@@@ -8286,7 -8436,7 +8594,7 @@@ msgstr "
  "archiwów."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: sources.list.5.xml:139
++#: sources.list.5.xml:155
  msgid ""
  "The cdrom scheme allows APT to use a local CDROM drive with media swapping. "
  "Use the &apt-cdrom; program to create cdrom entries in the source list."
@@@ -8296,7 -8446,7 +8604,7 @@@ msgstr "
  "list."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: sources.list.5.xml:146
++#: sources.list.5.xml:162
  msgid ""
  "The http scheme specifies an HTTP server for the archive. If an environment "
  "variable <envar>http_proxy</envar> is set with the format http://server:"
@@@ -8313,7 -8463,7 +8621,7 @@@ msgstr "
  "bezpieczny."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: sources.list.5.xml:157
++#: sources.list.5.xml:173
  msgid ""
  "The ftp scheme specifies an FTP server for the archive. APT's FTP behavior "
  "is highly configurable; for more information see the &apt-conf; manual page. "
@@@ -8332,12 -8482,12 +8640,12 @@@ msgstr "
  "używające http zostaną zignorowane."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: sources.list.5.xml:166
++#: sources.list.5.xml:182
  msgid "copy"
  msgstr "copy"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: sources.list.5.xml:168
++#: sources.list.5.xml:184
  msgid ""
  "The copy scheme is identical to the file scheme except that packages are "
  "copied into the cache directory instead of used directly at their location.  "
@@@ -8349,17 -8499,17 +8657,17 @@@ msgstr "
  "skopiowania plików przy użyciu APT."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: sources.list.5.xml:173
++#: sources.list.5.xml:189
  msgid "rsh"
  msgstr "rsh"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: sources.list.5.xml:173
++#: sources.list.5.xml:189
  msgid "ssh"
  msgstr "ssh"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: sources.list.5.xml:175
++#: sources.list.5.xml:191
  msgid ""
  "The rsh/ssh method invokes rsh/ssh to connect to a remote host as a given "
  "user and access the files. It is a good idea to do prior arrangements with "
@@@ -8375,12 -8525,12 +8683,12 @@@ msgstr "
  "ze zdalnego komputera."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: sources.list.5.xml:183
++#: sources.list.5.xml:199
  msgid "more recognizable URI types"
  msgstr "więcej rozpoznawanych typów URI"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: sources.list.5.xml:185
++#: sources.list.5.xml:201
  msgid ""
  "APT can be extended with more methods shipped in other optional packages "
  "which should follow the nameing scheme <literal>apt-transport-"
@@@ -8402,7 -8552,7 +8710,7 @@@ msgstr "
  "citerefentry>."
  
  #. type: Content of: <refentry><refsect1><para>
--#: sources.list.5.xml:127
++#: sources.list.5.xml:143
  msgid ""
  "The currently recognized URI types are cdrom, file, http, ftp, copy, ssh, "
  "rsh.  <placeholder type=\"variablelist\" id=\"0\"/>"
@@@ -8411,7 -8561,7 +8719,7 @@@ msgstr "
  "ssh, rsh.  <placeholder type=\"variablelist\" id=\"0\"/>"
  
  #. type: Content of: <refentry><refsect1><para>
--#: sources.list.5.xml:199
++#: sources.list.5.xml:215
  msgid ""
  "Uses the archive stored locally (or NFS mounted) at /home/jason/debian for "
  "stable/main, stable/contrib, and stable/non-free."
@@@ -8420,36 -8570,36 +8728,59 @@@ msgstr "
  "debian dla zasobów stable/main, stable/contrib i stable/non-free."
  
  #. type: Content of: <refentry><refsect1><literallayout>
--#: sources.list.5.xml:201
++#: sources.list.5.xml:217
  #, no-wrap
  msgid "deb file:/home/jason/debian stable main contrib non-free"
  msgstr "deb file:/home/jason/debian stable main contrib non-free"
  
  #. type: Content of: <refentry><refsect1><para>
--#: sources.list.5.xml:203
++#: sources.list.5.xml:219
  msgid "As above, except this uses the unstable (development) distribution."
  msgstr ""
  "Jak wyżej, z tą różnicą że używa dystrybucji niestabilnej (deweloperskiej)."
  
  #. type: Content of: <refentry><refsect1><literallayout>
--#: sources.list.5.xml:204
++#: sources.list.5.xml:220
  #, no-wrap
  msgid "deb file:/home/jason/debian unstable main contrib non-free"
  msgstr "deb file:/home/jason/debian unstable main contrib non-free"
  
  #. type: Content of: <refentry><refsect1><para>
--#: sources.list.5.xml:206
++#: sources.list.5.xml:222
  msgid "Source line for the above"
  msgstr "Linie źródeł dla powyższego przykładu"
  
  #. type: Content of: <refentry><refsect1><literallayout>
--#: sources.list.5.xml:207
++#: sources.list.5.xml:223
  #, no-wrap
  msgid "deb-src file:/home/jason/debian unstable main contrib non-free"
  msgstr "deb-src file:/home/jason/debian unstable main contrib non-free"
  
  #. type: Content of: <refentry><refsect1><para>
--#: sources.list.5.xml:209
++#: sources.list.5.xml:225
++msgid ""
++"The first line gets package information for the architectures in "
++"<literal>APT::Architectures</literal> while the second always retrieves "
++"<literal>amd64</literal> and <literal>armel</literal>."
++msgstr ""
++
++#. type: Content of: <refentry><refsect1><literallayout>
++#: sources.list.5.xml:227
++#, fuzzy, no-wrap
++#| msgid ""
++#| "deb http://http.us.debian.org/debian stable main contrib non-free\n"
++#| "deb http://http.us.debian.org/debian dists/stable-updates/\n"
++#| "   "
++msgid ""
++"deb http://ftp.debian.org/debian &stable-codename; main\n"
++"deb [ arch=amd64,armel ] http://ftp.debian.org/debian &stable-codename; main"
++msgstr ""
++"deb http://http.us.debian.org/debian stable main contrib non-free\n"
++"deb http://http.us.debian.org/debian dists/stable-updates/\n"
++"   "
++
++#. type: Content of: <refentry><refsect1><para>
++#: sources.list.5.xml:230
  msgid ""
  "Uses HTTP to access the archive at archive.debian.org, and uses only the "
  "hamm/main area."
@@@ -8458,13 -8608,13 +8789,13 @@@ msgstr "
  "org i dystrybucji hamm/main."
  
  #. type: Content of: <refentry><refsect1><literallayout>
--#: sources.list.5.xml:211
++#: sources.list.5.xml:232
  #, no-wrap
  msgid "deb http://archive.debian.org/debian-archive hamm main"
  msgstr "deb http://archive.debian.org/debian-archive hamm main"
  
  #. type: Content of: <refentry><refsect1><para>
--#: sources.list.5.xml:213
++#: sources.list.5.xml:234
  #, fuzzy
  #| msgid ""
  #| "Uses FTP to access the archive at ftp.debian.org, under the debian "
@@@ -8477,14 -8627,14 +8808,14 @@@ msgstr "
  "dystrybucji stable/contrib."
  
  #. type: Content of: <refentry><refsect1><literallayout>
--#: sources.list.5.xml:215
++#: sources.list.5.xml:236
  #, fuzzy, no-wrap
  #| msgid "deb ftp://ftp.debian.org/debian stable contrib"
  msgid "deb ftp://ftp.debian.org/debian &stable-codename; contrib"
  msgstr "deb ftp://ftp.debian.org/debian stable contrib"
  
  #. type: Content of: <refentry><refsect1><para>
--#: sources.list.5.xml:217
++#: sources.list.5.xml:238
  msgid ""
  "Uses FTP to access the archive at ftp.debian.org, under the debian "
  "directory, and uses only the unstable/contrib area. If this line appears as "
@@@ -8497,20 -8647,20 +8828,20 @@@ msgstr "
  "to pojedyncza sesja FTP będzie użyta w celu uzyskania dostępu do obu zasobów."
  
  #. type: Content of: <refentry><refsect1><literallayout>
--#: sources.list.5.xml:221
++#: sources.list.5.xml:242
  #, no-wrap
  msgid "deb ftp://ftp.debian.org/debian unstable contrib"
  msgstr "deb ftp://ftp.debian.org/debian unstable contrib"
  
  #. type: Content of: <refentry><refsect1><para><literallayout>
--#: sources.list.5.xml:230
++#: sources.list.5.xml:251
  #, fuzzy, no-wrap
  #| msgid "deb http://ftp.de.debian.org/debian-non-US unstable/binary-$(ARCH)/"
  msgid "deb http://ftp.tlh.debian.org/universe unstable/binary-$(ARCH)/"
  msgstr "deb http://ftp.de.debian.org/debian-non-US unstable/binary-$(ARCH)/"
  
  #. type: Content of: <refentry><refsect1><para>
--#: sources.list.5.xml:223
++#: sources.list.5.xml:244
  #, fuzzy
  #| msgid ""
  #| "Uses HTTP to access the archive at nonus.debian.org, under the debian-non-"
@@@ -8538,7 -8688,7 +8869,7 @@@ msgstr "
  "<placeholder type=\"literallayout\" id=\"0\"/>"
  
  #. type: Content of: <refentry><refsect1><para>
--#: sources.list.5.xml:235
++#: sources.list.5.xml:256
  msgid "&apt-cache; &apt-conf;"
  msgstr "&apt-cache;, &apt-conf;"
  
@@@ -10067,9 -10217,32 +10398,40 @@@ msgstr "  # apt-get -o dir::cache::arch
  msgid "Which will use the already fetched archives on the disc."
  msgstr "Które użyje pobranych uprzednio archiwów z dysku."
  
 -#~ msgid "<option>--md5</option>"
 -#~ msgstr "<option>--md5</option>"
++#~ msgid ""
++#~ "Update the local keyring with the keyring of Debian archive keys and "
++#~ "removes from the keyring the archive keys which are no longer valid."
++#~ msgstr ""
++#~ "Aktualizuje lokalną składnicę kluczy używając składnicy kluczy archiwum "
++#~ "Debiana i usuwa z lokalnej składnicy nieaktualne już klucze archiwów "
++#~ "Debiana."
+ #~ msgid "unmarkauto"
+ #~ msgstr "unmarkauto"
+ #~ msgid "<option>-h</option>"
+ #~ msgstr "<option>-h</option>"
+ #~ msgid "<option>--help</option>"
+ #~ msgstr "<option>--help</option>"
+ #
+ #~ msgid "Show a short usage summary."
+ #~ msgstr "Wyświetla krótkie informacje na temat użytkowania."
+ #~ msgid "<option>-v</option>"
+ #~ msgstr "<option>-v</option>"
+ #~ msgid "<option>--version</option>"
+ #~ msgstr "<option>--version</option>"
+ #
+ #~ msgid "Show the program version."
+ #~ msgstr "Wyświetla wersję programu."
 +#~ msgid "<option>--md5</option>"
 +#~ msgstr "<option>--md5</option>"
 +
  #
  #~ msgid "APT package handling utility -- cache manipulator"
  #~ msgstr "Narzędzie zarządzania pakietami APT -- manipulator bufora"
diff --combined doc/po/pt.po
index 42862cc4e7211cbb4269285770c29dceff9fddee,3c82b2df1e0c11bd67b4d1b145318a88cea78bb3..2d053d56637cc6c057be7f555f44ff4aee7f09d7
@@@ -6,7 -6,7 +6,7 @@@
  msgid ""
  msgstr ""
  "Project-Id-Version: apt 0.8.0~pre1\n"
- "POT-Creation-Date: 2011-04-05 10:22+0300\n"
 -"POT-Creation-Date: 2011-06-08 16:54+0300\n"
++"POT-Creation-Date: 2011-11-10 16:42+0100\n"
  "PO-Revision-Date: 2010-08-25 23:07+0100\n"
  "Last-Translator: Américo Monteiro <a_monteiro@netcabo.pt>\n"
  "Language-Team: Portuguese <traduz@debianpt.org>\n"
@@@ -762,8 -762,8 +762,8 @@@ msgstr "
  
  #. type: Content of: <refentry><refsect1><title>
  #: apt-cache.8.xml:64 apt-cdrom.8.xml:50 apt-config.8.xml:50
--#: apt-extracttemplates.1.xml:46 apt-ftparchive.1.xml:59 apt-get.8.xml:114
- #: apt-key.8.xml:38 apt-mark.8.xml:55 apt-secure.8.xml:43
++#: apt-extracttemplates.1.xml:46 apt-ftparchive.1.xml:59 apt-get.8.xml:121
+ #: apt-key.8.xml:38 apt-mark.8.xml:56 apt-secure.8.xml:43
  #: apt-sortpkgs.1.xml:47 apt.conf.5.xml:42 apt_preferences.5.xml:36
  #: sources.list.5.xml:36
  msgid "Description"
@@@ -783,7 -783,7 +783,7 @@@ msgstr "
  "a partir dos metadados do pacote."
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt-cache.8.xml:70 apt-get.8.xml:120
++#: apt-cache.8.xml:70 apt-get.8.xml:127
  msgid ""
  "Unless the <option>-h</option>, or <option>--help</option> option is given, "
  "one of the commands below must be present."
@@@ -1279,8 -1279,8 +1279,8 @@@ msgstr "
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
  #: apt-cache.8.xml:278 apt-config.8.xml:96 apt-extracttemplates.1.xml:59
- #: apt-ftparchive.1.xml:525 apt-get.8.xml:331 apt-mark.8.xml:92
 -#: apt-ftparchive.1.xml:525 apt-get.8.xml:331 apt-mark.8.xml:126
--#: apt-sortpkgs.1.xml:57 apt.conf.5.xml:560 apt.conf.5.xml:582
++#: apt-ftparchive.1.xml:525 apt-get.8.xml:342 apt-mark.8.xml:126
++#: apt-sortpkgs.1.xml:57 apt.conf.5.xml:577 apt.conf.5.xml:599
  msgid "options"
  msgstr "opções"
  
@@@ -1306,7 -1306,7 +1306,7 @@@ msgstr "
  "<literal>Dir::Cache::pkgcache</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-cache.8.xml:288 apt-ftparchive.1.xml:571 apt-get.8.xml:393
++#: apt-cache.8.xml:288 apt-ftparchive.1.xml:572 apt-get.8.xml:404
  #: apt-sortpkgs.1.xml:61
  msgid "<option>-s</option>"
  msgstr "<option>-s</option>"
@@@ -1332,12 -1332,12 +1332,12 @@@ msgstr "
  "pacote. Item de Configuração: <literal>Dir::Cache::srcpkgcache</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-cache.8.xml:296 apt-ftparchive.1.xml:545 apt-get.8.xml:383
++#: apt-cache.8.xml:296 apt-ftparchive.1.xml:546 apt-get.8.xml:394
  msgid "<option>-q</option>"
  msgstr "<option>-q</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-cache.8.xml:296 apt-ftparchive.1.xml:545 apt-get.8.xml:383
++#: apt-cache.8.xml:296 apt-ftparchive.1.xml:546 apt-get.8.xml:394
  msgid "<option>--quiet</option>"
  msgstr "<option>--quiet</option>"
  
@@@ -1418,9 -1418,9 +1418,16 @@@ msgstr "<option>--no-enhances</option>
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #: apt-cache.8.xml:317
++#, fuzzy
++#| msgid ""
++#| "Per default the <literal>depends</literal> and <literal>rdepends</"
++#| "literal> print all dependencies. This can be twicked with these flags "
++#| "which will omit the specified dependency type.  Configuration Item: "
++#| "<literal>APT::Cache::Show<replaceable>DependencyType</replaceable></"
++#| "literal> e.g. <literal>APT::Cache::ShowRecommends</literal>."
  msgid ""
  "Per default the <literal>depends</literal> and <literal>rdepends</literal> "
--"print all dependencies. This can be twicked with these flags which will omit "
++"print all dependencies. This can be tweaked with these flags which will omit "
  "the specified dependency type.  Configuration Item: <literal>APT::Cache::"
  "Show<replaceable>DependencyType</replaceable></literal> e.g. <literal>APT::"
  "Cache::ShowRecommends</literal>."
@@@ -1432,7 -1432,7 +1439,7 @@@ msgstr "
  "ex. <literal>APT::Cache::ShowRecommends</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-cache.8.xml:323 apt-cdrom.8.xml:124 apt-get.8.xml:350
++#: apt-cache.8.xml:323 apt-cdrom.8.xml:124 apt-get.8.xml:361
  msgid "<option>-f</option>"
  msgstr "<option>-f</option>"
  
@@@ -1451,7 -1451,7 +1458,8 @@@ msgstr "
  "<literal>APT::Cache::ShowFull</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-cache.8.xml:328 apt-cdrom.8.xml:134 apt-ftparchive.1.xml:583
++#: apt-cache.8.xml:328 apt-cdrom.8.xml:134 apt-ftparchive.1.xml:584
++#: apt-get.8.xml:452
  msgid "<option>-a</option>"
  msgstr "<option>-a</option>"
  
@@@ -1568,14 -1568,14 +1576,14 @@@ msgstr "
  
  #. type: Content of: <refentry><refsect1><variablelist>
  #: apt-cache.8.xml:367 apt-cdrom.8.xml:153 apt-config.8.xml:101
--#: apt-extracttemplates.1.xml:70 apt-ftparchive.1.xml:611 apt-get.8.xml:570
- #: apt-sortpkgs.1.xml:67
++#: apt-extracttemplates.1.xml:70 apt-ftparchive.1.xml:612 apt-get.8.xml:596
+ #: apt-mark.8.xml:140 apt-sortpkgs.1.xml:67
  msgid "&apt-commonoptions;"
  msgstr "&apt-commonoptions;"
  
  #. type: Content of: <refentry><refsect1><title>
- #: apt-cache.8.xml:372 apt-get.8.xml:575 apt-key.8.xml:156 apt-mark.8.xml:125
- #: apt.conf.5.xml:1093 apt_preferences.5.xml:654
 -#: apt-cache.8.xml:372 apt-get.8.xml:575 apt-key.8.xml:172 apt-mark.8.xml:144
 -#: apt.conf.5.xml:1093 apt_preferences.5.xml:697
++#: apt-cache.8.xml:372 apt-get.8.xml:601 apt-key.8.xml:175 apt-mark.8.xml:144
++#: apt.conf.5.xml:1110 apt_preferences.5.xml:697
  msgid "Files"
  msgstr "Ficheiros"
  
@@@ -1586,10 -1586,10 +1594,10 @@@ msgstr "&file-sourceslist; &file-statel
  
  #. type: Content of: <refentry><refsect1><title>
  #: apt-cache.8.xml:379 apt-cdrom.8.xml:158 apt-config.8.xml:106
--#: apt-extracttemplates.1.xml:77 apt-ftparchive.1.xml:627 apt-get.8.xml:585
- #: apt-key.8.xml:177 apt-mark.8.xml:131 apt-secure.8.xml:185
- #: apt-sortpkgs.1.xml:72 apt.conf.5.xml:1099 apt_preferences.5.xml:661
 -#: apt-key.8.xml:193 apt-mark.8.xml:150 apt-secure.8.xml:185
 -#: apt-sortpkgs.1.xml:72 apt.conf.5.xml:1099 apt_preferences.5.xml:704
--#: sources.list.5.xml:234
++#: apt-extracttemplates.1.xml:77 apt-ftparchive.1.xml:628 apt-get.8.xml:611
++#: apt-key.8.xml:196 apt-mark.8.xml:150 apt-secure.8.xml:185
++#: apt-sortpkgs.1.xml:72 apt.conf.5.xml:1116 apt_preferences.5.xml:704
++#: sources.list.5.xml:255
  msgid "See Also"
  msgstr "Veja também"
  
@@@ -1600,8 -1600,8 +1608,8 @@@ msgstr "&apt-conf;, &sources-list;, &ap
  
  #. type: Content of: <refentry><refsect1><title>
  #: apt-cache.8.xml:384 apt-cdrom.8.xml:163 apt-config.8.xml:111
--#: apt-extracttemplates.1.xml:81 apt-ftparchive.1.xml:631 apt-get.8.xml:591
- #: apt-mark.8.xml:135 apt-sortpkgs.1.xml:76
++#: apt-extracttemplates.1.xml:81 apt-ftparchive.1.xml:632 apt-get.8.xml:617
+ #: apt-mark.8.xml:154 apt-sortpkgs.1.xml:76
  msgid "Diagnostics"
  msgstr "Diagnóstico"
  
@@@ -1730,12 -1730,12 +1738,12 @@@ msgstr "
  "\"variablelist\" id=\"0\"/>"
  
  #. type: Content of: <refentry><refsect1><title>
- #: apt-cdrom.8.xml:94 apt-key.8.xml:142
 -#: apt-cdrom.8.xml:94 apt-key.8.xml:158
++#: apt-cdrom.8.xml:94 apt-key.8.xml:161
  msgid "Options"
  msgstr "Opções"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-cdrom.8.xml:98 apt-ftparchive.1.xml:539 apt-get.8.xml:345
++#: apt-cdrom.8.xml:98 apt-ftparchive.1.xml:540 apt-get.8.xml:356
  msgid "<option>-d</option>"
  msgstr "<option>-d</option>"
  
@@@ -1779,7 -1779,7 +1787,7 @@@ msgstr "
  "CDROM::Rename</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-cdrom.8.xml:116 apt-get.8.xml:364
++#: apt-cdrom.8.xml:116 apt-get.8.xml:375
  msgid "<option>-m</option>"
  msgstr "<option>-m</option>"
  
@@@ -1834,17 -1834,17 +1842,17 @@@ msgstr "
  "estranhos. Demora muito mais tempo a sondar o CD mas irá apanhá-los a todos."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-cdrom.8.xml:143 apt-get.8.xml:395
++#: apt-cdrom.8.xml:143 apt-get.8.xml:406
  msgid "<option>--just-print</option>"
  msgstr "<option>--just-print</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-cdrom.8.xml:144 apt-get.8.xml:397
++#: apt-cdrom.8.xml:144 apt-get.8.xml:408
  msgid "<option>--recon</option>"
  msgstr "<option>--recon</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-cdrom.8.xml:145 apt-get.8.xml:398
++#: apt-cdrom.8.xml:145 apt-get.8.xml:409
  msgid "<option>--no-act</option>"
  msgstr "<option>--no-act</option>"
  
@@@ -1988,7 -1988,7 +1996,7 @@@ msgid "Just show the contents of the co
  msgstr "Apenas mostra o conteúdo do espaço de configuração."
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt-config.8.xml:107 apt-extracttemplates.1.xml:78 apt-ftparchive.1.xml:628
++#: apt-config.8.xml:107 apt-extracttemplates.1.xml:78 apt-ftparchive.1.xml:629
  #: apt-sortpkgs.1.xml:73
  msgid "&apt-conf;"
  msgstr "&apt-conf;"
@@@ -2067,7 -2067,7 +2075,7 @@@ msgstr "
  "configuração.XXXX</filename>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-extracttemplates.1.xml:63 apt-get.8.xml:504
++#: apt-extracttemplates.1.xml:63 apt-get.8.xml:530
  msgid "<option>-t</option>"
  msgstr "<option>-t</option>"
  
@@@ -2344,7 -2344,7 +2352,7 @@@ msgstr "
  "definições requeridas."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-ftparchive.1.xml:145 apt-get.8.xml:287
++#: apt-ftparchive.1.xml:145 apt-get.8.xml:298
  msgid "clean"
  msgstr "clean"
  
@@@ -2910,8 -2910,8 +2918,8 @@@ msgstr "
  "distribuição, tipicamente isto é algo como <literal>main contrib non-free</"
  "literal>"
  
--#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
--#: apt-ftparchive.1.xml:394
++#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
++#: apt-ftparchive.1.xml:394 apt.conf.5.xml:157
  msgid "Architectures"
  msgstr "Architectures"
  
@@@ -3153,10 -3153,10 +3161,10 @@@ msgid "
  "Configuration Items: <literal>APT::FTPArchive::<replaceable>Checksum</"
  "replaceable></literal> and <literal>APT::FTPArchive::<replaceable>Index</"
  "replaceable>::<replaceable>Checksum</replaceable></literal> where "
--"<literal>Index</literal> can be <literal>Packages</literal>, "
--"<literal>Sources</literal> or <literal>Release</literal> and "
--"<literal>Checksum</literal> can be <literal>MD5</literal>, <literal>SHA1</"
--"literal> or <literal>SHA256</literal>."
++"<literal><replaceable>Index</replaceable></literal> can be "
++"<literal>Packages</literal>, <literal>Sources</literal> or <literal>Release</"
++"literal> and <literal><replaceable>Checksum</replaceable></literal> can be "
++"<literal>MD5</literal>, <literal>SHA1</literal> or <literal>SHA256</literal>."
  msgstr ""
  "Valores para os campos de metadados adicionais no ficheiro Release são "
  "tomados a partir das variáveis correspondentes sob <literal>APT::FTPArchive::"
  "<literal>Description</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-ftparchive.1.xml:539
++#: apt-ftparchive.1.xml:540
  msgid "<option>--db</option>"
  msgstr "<option>--db</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-ftparchive.1.xml:541
++#: apt-ftparchive.1.xml:542
  msgid ""
  "Use a binary caching DB. This has no effect on the generate command.  "
  "Configuration Item: <literal>APT::FTPArchive::DB</literal>."
@@@ -3182,7 -3182,7 +3190,7 @@@ msgstr "
  "generate. Item de configuração: <literal>APT::FTPArchive::DB</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-ftparchive.1.xml:547
++#: apt-ftparchive.1.xml:548
  msgid ""
  "Quiet; produces output suitable for logging, omitting progress indicators.  "
  "More q's will produce more quiet up to a maximum of 2. You can also use "
@@@ -3196,12 -3196,12 +3204,12 @@@ msgstr "
  "<literal>quiet</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-ftparchive.1.xml:553
++#: apt-ftparchive.1.xml:554
  msgid "<option>--delink</option>"
  msgstr "<option>--delink</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-ftparchive.1.xml:555
++#: apt-ftparchive.1.xml:556
  msgid ""
  "Perform Delinking. If the <literal>External-Links</literal> setting is used "
  "then this option actually enables delinking of the files. It defaults to on "
@@@ -3214,12 -3214,12 +3222,12 @@@ msgstr "
  "option>. Item de Configuração: <literal>APT::FTPArchive::DeLinkAct</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-ftparchive.1.xml:561
++#: apt-ftparchive.1.xml:562
  msgid "<option>--contents</option>"
  msgstr "<option>--contents</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-ftparchive.1.xml:563
++#: apt-ftparchive.1.xml:564
  msgid ""
  "Perform contents generation. When this option is set and package indexes are "
  "being generated with a cache DB then the file listing will also be extracted "
@@@ -3235,12 -3235,12 +3243,12 @@@ msgstr "
  "de Configuração: <literal>APT::FTPArchive::Contents</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-ftparchive.1.xml:571
++#: apt-ftparchive.1.xml:572
  msgid "<option>--source-override</option>"
  msgstr "<option>--source-override</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-ftparchive.1.xml:573
++#: apt-ftparchive.1.xml:574
  msgid ""
  "Select the source override file to use with the <literal>sources</literal> "
  "command.  Configuration Item: <literal>APT::FTPArchive::SourceOverride</"
@@@ -3251,12 -3251,12 +3259,12 @@@ msgstr "
  "SourceOverride</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-ftparchive.1.xml:577
++#: apt-ftparchive.1.xml:578
  msgid "<option>--readonly</option>"
  msgstr "<option>--readonly</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-ftparchive.1.xml:579
++#: apt-ftparchive.1.xml:580
  msgid ""
  "Make the caching databases read only.  Configuration Item: <literal>APT::"
  "FTPArchive::ReadOnlyDB</literal>."
@@@ -3265,12 -3265,12 +3273,12 @@@ msgstr "
  "<literal>APT::FTPArchive::ReadOnlyDB</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-ftparchive.1.xml:583
++#: apt-ftparchive.1.xml:584
  msgid "<option>--arch</option>"
  msgstr "<option>--arch</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-ftparchive.1.xml:584
++#: apt-ftparchive.1.xml:585
  msgid ""
  "Accept in the <literal>packages</literal> and <literal>contents</literal> "
  "commands only package files matching <literal>*_arch.deb</literal> or "
@@@ -3284,12 -3284,12 +3292,12 @@@ msgstr "
  "FTPArchive::Architecture</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-ftparchive.1.xml:590
++#: apt-ftparchive.1.xml:591
  msgid "<option>APT::FTPArchive::AlwaysStat</option>"
  msgstr "<option>APT::FTPArchive::AlwaysStat</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-ftparchive.1.xml:592
++#: apt-ftparchive.1.xml:593
  msgid ""
  "&apt-ftparchive; caches as much as possible of metadata in a cachedb. If "
  "packages are recompiled and/or republished with the same version again, this "
@@@ -3313,12 -3313,12 +3321,12 @@@ msgstr "
  "as verificações extras serão desnecessárias."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-ftparchive.1.xml:602
++#: apt-ftparchive.1.xml:603
  msgid "<option>APT::FTPArchive::LongDescription</option>"
  msgstr "<option>APT::FTPArchive::LongDescription</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-ftparchive.1.xml:604
++#: apt-ftparchive.1.xml:605
  msgid ""
  "This configuration option defaults to \"<literal>true</literal>\" and should "
  "only be set to <literal>\"false\"</literal> if the Archive generated with "
@@@ -3333,19 -3333,19 +3341,19 @@@ msgstr "
  "<filename>Translation-en</filename> só pode ser criado no comando generate."
  
  #. type: Content of: <refentry><refsect1><title>
- #: apt-ftparchive.1.xml:616 apt.conf.5.xml:1087 apt_preferences.5.xml:501
 -#: apt-ftparchive.1.xml:616 apt.conf.5.xml:1087 apt_preferences.5.xml:544
--#: sources.list.5.xml:198
++#: apt-ftparchive.1.xml:617 apt.conf.5.xml:1104 apt_preferences.5.xml:544
++#: sources.list.5.xml:214
  msgid "Examples"
  msgstr "Examples"
  
  #. type: Content of: <refentry><refsect1><para><programlisting>
--#: apt-ftparchive.1.xml:622
++#: apt-ftparchive.1.xml:623
  #, no-wrap
  msgid "<command>apt-ftparchive</command> packages <replaceable>directory</replaceable> | <command>gzip</command> > <filename>Packages.gz</filename>\n"
  msgstr "<command>apt-ftparchive</command> pacotes <replaceable>directório</replaceable> | <command>gzip</command> > <filename>Packages.gz</filename>\n"
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt-ftparchive.1.xml:618
++#: apt-ftparchive.1.xml:619
  msgid ""
  "To create a compressed Packages file for a directory containing binary "
  "packages (.deb): <placeholder type=\"programlisting\" id=\"0\"/>"
@@@ -3354,7 -3354,7 +3362,7 @@@ msgstr "
  "pacotes binários (.deb): <placeholder type=\"programlisting\" id=\"0\"/>"
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt-ftparchive.1.xml:632
++#: apt-ftparchive.1.xml:633
  msgid ""
  "<command>apt-ftparchive</command> returns zero on normal operation, decimal "
  "100 on error."
@@@ -3386,15 -3386,15 +3394,45 @@@ msgstr "
  
  #. type: Content of: <refentry><refsynopsisdiv><cmdsynopsis>
  #: apt-get.8.xml:39
++#, fuzzy
++#| msgid ""
++#| "<command>apt-get</command> <arg><option>-sqdyfmubV</option></arg> <arg> "
++#| "<option>-o= <replaceable>config_string</replaceable> </option> </arg> "
++#| "<arg> <option>-c= <replaceable>config_file</replaceable> </option> </arg> "
++#| "<arg> <option>-t=</option> <arg choice='plain'> "
++#| "<replaceable>target_release</replaceable> </arg> </arg> <group choice="
++#| "\"req\"> <arg choice='plain'>update</arg> <arg choice='plain'>upgrade</"
++#| "arg> <arg choice='plain'>dselect-upgrade</arg> <arg choice='plain'>dist-"
++#| "upgrade</arg> <arg choice='plain'>install <arg choice=\"plain\" rep="
++#| "\"repeat\"><replaceable>pkg</replaceable> <arg> <group choice='req'> <arg "
++#| "choice='plain'> =<replaceable>pkg_version_number</replaceable> </arg> "
++#| "<arg choice='plain'> /<replaceable>target_release</replaceable> </arg> </"
++#| "group> </arg> </arg> </arg> <arg choice='plain'>remove <arg choice=\"plain"
++#| "\" rep=\"repeat\"><replaceable>pkg</replaceable></arg></arg> <arg "
++#| "choice='plain'>purge <arg choice=\"plain\" rep=\"repeat"
++#| "\"><replaceable>pkg</replaceable></arg></arg> <arg choice='plain'>source "
++#| "<arg choice=\"plain\" rep=\"repeat\"><replaceable>pkg</replaceable> <arg> "
++#| "<group choice='req'> <arg choice='plain'> "
++#| "=<replaceable>pkg_version_number</replaceable> </arg> <arg "
++#| "choice='plain'> /<replaceable>target_release</replaceable> </arg> </"
++#| "group> </arg> </arg> </arg> <arg choice='plain'>build-dep <arg choice="
++#| "\"plain\" rep=\"repeat\"><replaceable>pkg</replaceable></arg></arg> <arg "
++#| "choice='plain'>check</arg> <arg choice='plain'>clean</arg> <arg "
++#| "choice='plain'>autoclean</arg> <arg choice='plain'>autoremove</arg> <arg "
++#| "choice='plain'> <group choice='req'> <arg choice='plain'>-v</arg> <arg "
++#| "choice='plain'>--version</arg> </group> </arg> <arg choice='plain'> "
++#| "<group choice='req'> <arg choice='plain'>-h</arg> <arg choice='plain'>--"
++#| "help</arg> </group> </arg> </group>"
  msgid ""
  "<command>apt-get</command> <arg><option>-sqdyfmubV</option></arg> <arg> "
  "<option>-o= <replaceable>config_string</replaceable> </option> </arg> <arg> "
  "<option>-c= <replaceable>config_file</replaceable> </option> </arg> <arg> "
  "<option>-t=</option> <arg choice='plain'> <replaceable>target_release</"
--"replaceable> </arg> </arg> <group choice=\"req\"> <arg "
--"choice='plain'>update</arg> <arg choice='plain'>upgrade</arg> <arg "
--"choice='plain'>dselect-upgrade</arg> <arg choice='plain'>dist-upgrade</arg> "
--"<arg choice='plain'>install <arg choice=\"plain\" rep=\"repeat"
++"replaceable> </arg> </arg> <arg> <option>-a=</option> <arg choice='plain'> "
++"<replaceable>default_architecture</replaceable> </arg> </arg> <group choice="
++"\"req\"> <arg choice='plain'>update</arg> <arg choice='plain'>upgrade</arg> "
++"<arg choice='plain'>dselect-upgrade</arg> <arg choice='plain'>dist-upgrade</"
++"arg> <arg choice='plain'>install <arg choice=\"plain\" rep=\"repeat"
  "\"><replaceable>pkg</replaceable> <arg> <group choice='req'> <arg "
  "choice='plain'> =<replaceable>pkg_version_number</replaceable> </arg> <arg "
  "choice='plain'> /<replaceable>target_release</replaceable> </arg> </group> </"
@@@ -3443,7 -3443,7 +3481,7 @@@ msgstr "
  "</group> </arg> </group>"
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt-get.8.xml:115
++#: apt-get.8.xml:122
  msgid ""
  "<command>apt-get</command> is the command-line tool for handling packages, "
  "and may be considered the user's \"back-end\" to other tools using the APT "
@@@ -3456,12 -3456,12 +3494,12 @@@ msgstr "
  "\"front-end\" como o &dselect;, &aptitude;, &synaptic; e &wajig;."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:124 apt-key.8.xml:127
++#: apt-get.8.xml:131 apt-key.8.xml:127
  msgid "update"
  msgstr "update"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:125
++#: apt-get.8.xml:132
  msgid ""
  "<literal>update</literal> is used to resynchronize the package index files "
  "from their sources. The indexes of available packages are fetched from the "
@@@ -3485,12 -3485,12 +3523,12 @@@ msgstr "
  "ficheiros de pacotes não pode ser conhecido com antecedência."
  
  #. type: <tag></tag>
--#: apt-get.8.xml:136 guide.sgml:121
++#: apt-get.8.xml:143 guide.sgml:121
  msgid "upgrade"
  msgstr "upgrade"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:137
++#: apt-get.8.xml:144
  msgid ""
  "<literal>upgrade</literal> is used to install the newest versions of all "
  "packages currently installed on the system from the sources enumerated in "
@@@ -3516,12 -3516,12 +3554,12 @@@ msgstr "
  "novas versões de pacotes."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:149
++#: apt-get.8.xml:156
  msgid "dselect-upgrade"
  msgstr "dselect-upgrade"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:150
++#: apt-get.8.xml:157
  msgid ""
  "<literal>dselect-upgrade</literal> is used in conjunction with the "
  "traditional Debian packaging front-end, &dselect;. <literal>dselect-upgrade</"
@@@ -3537,12 -3537,12 +3575,12 @@@ msgstr "
  "estado (por exemplo, a remoção de pacotes antigos e a instalação de novos)."
  
  #. type: <tag></tag>
--#: apt-get.8.xml:159 guide.sgml:140
++#: apt-get.8.xml:166 guide.sgml:140
  msgid "dist-upgrade"
  msgstr "dist-upgrade"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:160
++#: apt-get.8.xml:167
  msgid ""
  "<literal>dist-upgrade</literal> in addition to performing the function of "
  "<literal>upgrade</literal>, also intelligently handles changing dependencies "
@@@ -3566,12 -3566,12 +3604,12 @@@ msgstr "
  "sobrepor as definições gerais em pacotes individuais."
  
  #. type: <tag></tag>
--#: apt-get.8.xml:172 guide.sgml:131
++#: apt-get.8.xml:179 guide.sgml:131
  msgid "install"
  msgstr "install"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:174
++#: apt-get.8.xml:181
  msgid ""
  "<literal>install</literal> is followed by one or more packages desired for "
  "installation or upgrading.  Each package is a package name, not a fully "
@@@ -3599,7 -3599,7 +3637,7 @@@ msgstr "
  "decisões feitas pelo sistema de resolução de conflitos do apt-get."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:192
++#: apt-get.8.xml:199
  msgid ""
  "A specific version of a package can be selected for installation by "
  "following the package name with an equals and the version of the package to "
@@@ -3616,7 -3616,7 +3654,7 @@@ msgstr "
  "versão da distribuição ou o nome de Arquivo (stable, testing, unstable)."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:199
++#: apt-get.8.xml:206
  msgid ""
  "Both of the version selection mechanisms can downgrade packages and must be "
  "used with care."
@@@ -3625,7 -3625,7 +3663,7 @@@ msgstr "
  "e devem ser usados com cuidado."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:202
++#: apt-get.8.xml:209
  msgid ""
  "This is also the target to use if you want to upgrade one or more already-"
  "installed packages without upgrading every package you have on your system. "
@@@ -3645,7 -3645,7 +3683,7 @@@ msgstr "
  "descarregadas e instaladas."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:213
++#: apt-get.8.xml:220
  msgid ""
  "Finally, the &apt-preferences; mechanism allows you to create an alternative "
  "installation policy for individual packages."
@@@ -3654,7 -3654,7 +3692,7 @@@ msgstr "
  "instalação alternativa para pacotes individuais."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:217
++#: apt-get.8.xml:224
  msgid ""
  "If no package matches the given expression and the expression contains one "
  "of '.', '?' or '*' then it is assumed to be a POSIX regular expression, and "
@@@ -3673,12 -3673,12 +3711,12 @@@ msgstr "
  "caractere '^' ou '$', para criar uma expressão regular mais específica."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:226
++#: apt-get.8.xml:233
  msgid "remove"
  msgstr "remove"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:227
++#: apt-get.8.xml:234
  msgid ""
  "<literal>remove</literal> is identical to <literal>install</literal> except "
  "that packages are removed instead of installed. Note the removing a package "
@@@ -3693,12 -3693,12 +3731,12 @@@ msgstr "
  "pacote identificado será instalado em vez de removido."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:234
++#: apt-get.8.xml:241
  msgid "purge"
  msgstr "purge"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:235
++#: apt-get.8.xml:242
  msgid ""
  "<literal>purge</literal> is identical to <literal>remove</literal> except "
  "that packages are removed and purged (any configuration files are deleted "
@@@ -3709,12 -3709,12 +3747,12 @@@ msgstr "
  "configuração são também apagados)."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:239
++#: apt-get.8.xml:246
  msgid "source"
  msgstr "source"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:240
++#: apt-get.8.xml:247
  msgid ""
  "<literal>source</literal> causes <command>apt-get</command> to fetch source "
  "packages. APT will examine the available packages to decide which source "
@@@ -3733,7 -3733,7 +3771,7 @@@ msgstr "
  "<literal>pkg/release</literal>, se possível."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:248
++#: apt-get.8.xml:255
  msgid ""
  "Source packages are tracked separately from binary packages via <literal>deb-"
  "src</literal> type lines in the &sources-list; file. This means that you "
@@@ -3749,12 -3749,12 +3787,19 @@@ msgstr "
  "instalada ou pode instalar."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:255
++#: apt-get.8.xml:262
++#, fuzzy
++#| msgid ""
++#| "If the <option>--compile</option> option is specified then the package "
++#| "will be compiled to a binary .deb using <command>dpkg-buildpackage</"
++#| "command>, if <option>--download-only</option> is specified then the "
++#| "source package will not be unpacked."
  msgid ""
  "If the <option>--compile</option> option is specified then the package will "
--"be compiled to a binary .deb using <command>dpkg-buildpackage</command>, if "
--"<option>--download-only</option> is specified then the source package will "
--"not be unpacked."
++"be compiled to a binary .deb using <command>dpkg-buildpackage</command> for "
++"the architecture as defined by the <command>--host-architecture</command> "
++"option.  If <option>--download-only</option> is specified then the source "
++"package will not be unpacked."
  msgstr ""
  "Se for especificada a opção <option>--compile</option> então o pacote irá "
  "ser compilado para um binário .deb usando <command>dpkg-buildpackage</"
  "pacote fonte não será desempacotado."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:260
++#: apt-get.8.xml:269
  msgid ""
  "A specific source version can be retrieved by postfixing the source name "
  "with an equals and then the version to fetch, similar to the mechanism used "
@@@ -3777,7 -3777,7 +3822,7 @@@ msgstr "
  "Only-Source</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:266
++#: apt-get.8.xml:275
  msgid ""
  "Note that source packages are not tracked like binary packages, they exist "
  "only in the current directory and are similar to downloading source tar "
@@@ -3788,26 -3788,26 +3833,33 @@@ msgstr "
  "balls fonte."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:271
++#: apt-get.8.xml:280
  msgid "build-dep"
  msgstr "build-dep"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:272
++#: apt-get.8.xml:281
++#, fuzzy
++#| msgid ""
++#| "<literal>build-dep</literal> causes apt-get to install/remove packages in "
++#| "an attempt to satisfy the build dependencies for a source package."
  msgid ""
  "<literal>build-dep</literal> causes apt-get to install/remove packages in an "
--"attempt to satisfy the build dependencies for a source package."
++"attempt to satisfy the build dependencies for a source package. By default "
++"the dependencies are satisfied to build the package nativly. If desired a "
++"host-architecture can be specified with the <option>--host-architecture</"
++"option> option instead."
  msgstr ""
  "<literal>build-dep</literal> faz o apt-get instalar/remover pacotes numa "
  "tentativa de satisfazer dependências de compilação para um pacote fonte."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:276
++#: apt-get.8.xml:287
  msgid "check"
  msgstr "check"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:277
++#: apt-get.8.xml:288
  msgid ""
  "<literal>check</literal> is a diagnostic tool; it updates the package cache "
  "and checks for broken dependencies."
@@@ -3816,19 -3816,19 +3868,19 @@@ msgstr "
  "de pacotes e verifica por dependências quebradas."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:281
++#: apt-get.8.xml:292
  msgid "download"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:282
++#: apt-get.8.xml:293
  msgid ""
  "<literal>download</literal> will download the given binary package into the "
--"current directoy."
++"current directory."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:288
++#: apt-get.8.xml:299
  msgid ""
  "<literal>clean</literal> clears out the local repository of retrieved "
  "package files. It removes everything but the lock file from "
@@@ -3847,12 -3847,12 +3899,12 @@@ msgstr "
  "libertar espaço do disco."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:297
++#: apt-get.8.xml:308
  msgid "autoclean"
  msgstr "autoclean"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:298
++#: apt-get.8.xml:309
  msgid ""
  "Like <literal>clean</literal>, <literal>autoclean</literal> clears out the "
  "local repository of retrieved package files. The difference is that it only "
@@@ -3871,28 -3871,28 +3923,33 @@@ msgstr "
  "pacotes instalados sejam apagados se estiver definida para 'off'."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:307
++#: apt-get.8.xml:318
  msgid "autoremove"
  msgstr "autoremove"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:308
++#: apt-get.8.xml:319
++#, fuzzy
++#| msgid ""
++#| "<literal>autoremove</literal> is used to remove packages that were "
++#| "automatically installed to satisfy dependencies for some package and that "
++#| "are no more needed."
  msgid ""
  "<literal>autoremove</literal> is used to remove packages that were "
--"automatically installed to satisfy dependencies for some package and that "
--"are no more needed."
++"automatically installed to satisfy dependencies for other packages and are "
++"now no longer needed."
  msgstr ""
  "<literal>autoremove</literal> é usado para remover pacotes que foram "
  "instalados automaticamente para satisfazer dependências de algum pacote e "
  "que já não são necessários."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:312
++#: apt-get.8.xml:323
  msgid "changelog"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:313
++#: apt-get.8.xml:324
  msgid ""
  "<literal>changelog</literal> downloads a package changelog and displays it "
  "through <command>sensible-pager</command>. The server name and base "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:335
++#: apt-get.8.xml:346
  msgid "<option>--no-install-recommends</option>"
  msgstr "<option>--no-install-recommends</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:336
++#: apt-get.8.xml:347
  msgid ""
  "Do not consider recommended packages as a dependency for installing.  "
  "Configuration Item: <literal>APT::Install-Recommends</literal>."
@@@ -3919,14 -3919,14 +3976,14 @@@ msgstr "
  "de Configuração: <literal>APT::Install-Recommends</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:340
++#: apt-get.8.xml:351
  #, fuzzy
  #| msgid "<option>--no-suggests</option>"
  msgid "<option>--install-suggests</option>"
  msgstr "<option>--no-suggests</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:341
++#: apt-get.8.xml:352
  #, fuzzy
  #| msgid ""
  #| "Do not consider recommended packages as a dependency for installing.  "
@@@ -3939,12 -3939,12 +3996,12 @@@ msgstr "
  "de Configuração: <literal>APT::Install-Recommends</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:345
++#: apt-get.8.xml:356
  msgid "<option>--download-only</option>"
  msgstr "<option>--download-only</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:346
++#: apt-get.8.xml:357
  msgid ""
  "Download only; package files are only retrieved, not unpacked or installed.  "
  "Configuration Item: <literal>APT::Get::Download-Only</literal>."
@@@ -3954,12 -3954,12 +4011,12 @@@ msgstr "
  "Download-Only</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:350
++#: apt-get.8.xml:361
  msgid "<option>--fix-broken</option>"
  msgstr "<option>--fix-broken</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:351
++#: apt-get.8.xml:362
  msgid ""
  "Fix; attempt to correct a system with broken dependencies in place. This "
  "option, when used with install/remove, can omit any packages to permit APT "
@@@ -3987,17 -3987,17 +4044,17 @@@ msgstr "
  "<literal>APT::Get::Fix-Broken</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:364
++#: apt-get.8.xml:375
  msgid "<option>--ignore-missing</option>"
  msgstr "<option>--ignore-missing</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:365
++#: apt-get.8.xml:376
  msgid "<option>--fix-missing</option>"
  msgstr "<option>--fix-missing</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:366
++#: apt-get.8.xml:377
  msgid ""
  "Ignore missing packages; If packages cannot be retrieved or fail the "
  "integrity check after retrieval (corrupted package files), hold back those "
@@@ -4016,12 -4016,12 +4073,12 @@@ msgstr "
  "de Configuração: <literal>APT::Get::Fix-Missing</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:376
++#: apt-get.8.xml:387
  msgid "<option>--no-download</option>"
  msgstr "<option>--no-download</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:377
++#: apt-get.8.xml:388
  msgid ""
  "Disables downloading of packages. This is best used with <option>--ignore-"
  "missing</option> to force APT to use only the .debs it has already "
@@@ -4032,7 -4032,7 +4089,7 @@@ msgstr "
  "descarregados. Item de Configuração: <literal>APT::Get::Download</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:384
++#: apt-get.8.xml:395
  msgid ""
  "Quiet; produces output suitable for logging, omitting progress indicators.  "
  "More q's will produce more quiet up to a maximum of 2. You can also use "
@@@ -4052,17 -4052,17 +4109,17 @@@ msgstr "
  "<literal>quiet</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:394
++#: apt-get.8.xml:405
  msgid "<option>--simulate</option>"
  msgstr "<option>--simulate</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:396
++#: apt-get.8.xml:407
  msgid "<option>--dry-run</option>"
  msgstr "<option>--dry-run</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:399
++#: apt-get.8.xml:410
  msgid ""
  "No action; perform a simulation of events that would occur but do not "
  "actually change the system.  Configuration Item: <literal>APT::Get::"
@@@ -4073,7 -4073,7 +4130,7 @@@ msgstr "
  "Simulate</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:403
++#: apt-get.8.xml:414
  msgid ""
  "Simulation run as user will deactivate locking (<literal>Debug::NoLocking</"
  "literal>)  automatic. Also a notice will be displayed indicating that this "
@@@ -4091,7 -4091,7 +4148,7 @@@ msgstr "
  "get</literal>)."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:409
++#: apt-get.8.xml:420
  msgid ""
  "Simulate prints out a series of lines each one representing a dpkg "
  "operation, Configure (Conf), Remove (Remv), Unpack (Inst). Square brackets "
@@@ -4104,22 -4104,22 +4161,22 @@@ msgstr "
  "vazios significam quebras que não têm consequência (raro)."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:416
++#: apt-get.8.xml:427
  msgid "<option>-y</option>"
  msgstr "<option>-y</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:416
++#: apt-get.8.xml:427
  msgid "<option>--yes</option>"
  msgstr "<option>--yes</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:417
++#: apt-get.8.xml:428
  msgid "<option>--assume-yes</option>"
  msgstr "<option>--assume-yes</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:418
++#: apt-get.8.xml:429
  msgid ""
  "Automatic yes to prompts; assume \"yes\" as answer to all prompts and run "
  "non-interactively. If an undesirable situation, such as changing a held "
@@@ -4135,17 -4135,17 +4192,37 @@@ msgstr "
  "literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:425
++#: apt-get.8.xml:436
++#, fuzzy
++#| msgid "<option>--assume-yes</option>"
++msgid "<option>--assume-no</option>"
++msgstr "<option>--assume-yes</option>"
++
++#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
++#: apt-get.8.xml:437
++#, fuzzy
++#| msgid ""
++#| "Compile source packages after downloading them.  Configuration Item: "
++#| "<literal>APT::Get::Compile</literal>."
++msgid ""
++"Automatic \"no\" to all prompts.  Configuration Item: <literal>APT::Get::"
++"Assume-No</literal>."
++msgstr ""
++"Compila pacotes fonte após os descarregar. Item de Configuração: "
++"<literal>APT::Get::Compile</literal>."
++
++#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
++#: apt-get.8.xml:441
  msgid "<option>-u</option>"
  msgstr "<option>-u</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:425
++#: apt-get.8.xml:441
  msgid "<option>--show-upgraded</option>"
  msgstr "<option>--show-upgraded</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:426
++#: apt-get.8.xml:442
  msgid ""
  "Show upgraded packages; Print out a list of all packages that are to be "
  "upgraded.  Configuration Item: <literal>APT::Get::Show-Upgraded</literal>."
@@@ -4155,17 -4155,17 +4232,17 @@@ msgstr "
  "Upgraded</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:431
++#: apt-get.8.xml:447
  msgid "<option>-V</option>"
  msgstr "<option>-V</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:431
++#: apt-get.8.xml:447
  msgid "<option>--verbose-versions</option>"
  msgstr "<option>--verbose-versions</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:432
++#: apt-get.8.xml:448
  msgid ""
  "Show full versions for upgraded and installed packages.  Configuration Item: "
  "<literal>APT::Get::Show-Versions</literal>."
@@@ -4174,22 -4174,22 +4251,40 @@@ msgstr "
  "Configuração: <literal>APT::Get::Show-Versions</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:436
++#: apt-get.8.xml:453
++#, fuzzy
++#| msgid "<option>--recurse</option>"
++msgid "<option>--host-architecture</option>"
++msgstr "<option>--recurse</option>"
++
++#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
++#: apt-get.8.xml:454
++msgid ""
++"This option controls the architecture packages are built for by <command>apt-"
++"get source --compile</command> and how cross-builddependencies are "
++"satisfied. By default is not set which means that the host architecture is "
++"the same as the build architecture (which is defined by <literal>APT::"
++"Architecture</literal>)  Configuration Item: <literal>APT::Get::Host-"
++"Architecture</literal>"
++msgstr ""
++
++#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
++#: apt-get.8.xml:462
  msgid "<option>-b</option>"
  msgstr "<option>-b</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:436
++#: apt-get.8.xml:462
  msgid "<option>--compile</option>"
  msgstr "<option>--compile</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:437
++#: apt-get.8.xml:463
  msgid "<option>--build</option>"
  msgstr "<option>--build</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:438
++#: apt-get.8.xml:464
  msgid ""
  "Compile source packages after downloading them.  Configuration Item: "
  "<literal>APT::Get::Compile</literal>."
@@@ -4198,12 -4198,12 +4293,12 @@@ msgstr "
  "<literal>APT::Get::Compile</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:442
++#: apt-get.8.xml:468
  msgid "<option>--ignore-hold</option>"
  msgstr "<option>--ignore-hold</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:443
++#: apt-get.8.xml:469
  msgid ""
  "Ignore package Holds; This causes <command>apt-get</command> to ignore a "
  "hold placed on a package. This may be useful in conjunction with "
@@@ -4216,12 -4216,12 +4311,12 @@@ msgstr "
  "Item de Configuração: <literal>APT::Ignore-Hold</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:449
++#: apt-get.8.xml:475
  msgid "<option>--no-upgrade</option>"
  msgstr "<option>--no-upgrade</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:450
++#: apt-get.8.xml:476
  msgid ""
  "Do not upgrade packages; When used in conjunction with <literal>install</"
  "literal>, <literal>no-upgrade</literal> will prevent packages on the command "
@@@ -4234,12 -4234,12 +4329,12 @@@ msgstr "
  "Configuração: <literal>APT::Get::Upgrade</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:456
++#: apt-get.8.xml:482
  msgid "<option>--only-upgrade</option>"
  msgstr "<option>--only-upgrade</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:457
++#: apt-get.8.xml:483
  msgid ""
  "Do not install new packages; When used in conjunction with <literal>install</"
  "literal>, <literal>only-upgrade</literal> will prevent packages on the "
@@@ -4252,12 -4252,12 +4347,12 @@@ msgstr "
  "de Configuração: <literal>APT::Get::Only-Upgrade</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:463
++#: apt-get.8.xml:489
  msgid "<option>--force-yes</option>"
  msgstr "<option>--force-yes</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:464
++#: apt-get.8.xml:490
  msgid ""
  "Force yes; This is a dangerous option that will cause apt to continue "
  "without prompting if it is doing something potentially harmful. It should "
@@@ -4272,12 -4272,12 +4367,12 @@@ msgstr "
  "<literal>APT::Get::force-yes</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:471
++#: apt-get.8.xml:497
  msgid "<option>--print-uris</option>"
  msgstr "<option>--print-uris</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:472
++#: apt-get.8.xml:498
  msgid ""
  "Instead of fetching the files to install their URIs are printed. Each URI "
  "will have the path, the destination file name, the size and the expected md5 "
@@@ -4298,12 -4298,12 +4393,12 @@@ msgstr "
  "Configuração: <literal>APT::Get::Print-URIs</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:482
++#: apt-get.8.xml:508
  msgid "<option>--purge</option>"
  msgstr "<option>--purge</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:483
++#: apt-get.8.xml:509
  msgid ""
  "Use purge instead of remove for anything that would be removed.  An asterisk "
  "(\"*\") will be displayed next to packages which are scheduled to be purged. "
@@@ -4316,12 -4316,12 +4411,12 @@@ msgstr "
  "option>. Item de Configuração: <literal>APT::Get::Purge</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:490
++#: apt-get.8.xml:516
  msgid "<option>--reinstall</option>"
  msgstr "<option>--reinstall</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:491
++#: apt-get.8.xml:517
  msgid ""
  "Re-Install packages that are already installed and at the newest version.  "
  "Configuration Item: <literal>APT::Get::ReInstall</literal>."
@@@ -4330,12 -4330,12 +4425,12 @@@ msgstr "
  "Configuração: <literal>APT::Get::ReInstall</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:495
++#: apt-get.8.xml:521
  msgid "<option>--list-cleanup</option>"
  msgstr "<option>--list-cleanup</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:496
++#: apt-get.8.xml:522
  msgid ""
  "This option defaults to on, use <literal>--no-list-cleanup</literal> to turn "
  "it off. When on <command>apt-get</command> will automatically manage the "
@@@ -4352,17 -4352,17 +4447,17 @@@ msgstr "
  "fontes. Item de Configuração: <literal>APT::Get::List-Cleanup</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:505
++#: apt-get.8.xml:531
  msgid "<option>--target-release</option>"
  msgstr "<option>--target-release</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:506
++#: apt-get.8.xml:532
  msgid "<option>--default-release</option>"
  msgstr "<option>--default-release</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:507
++#: apt-get.8.xml:533
  msgid ""
  "This option controls the default input to the policy engine, it creates a "
  "default pin at priority 990 using the specified release string.  This "
@@@ -4385,12 -4385,12 +4480,12 @@@ msgstr "
  "Release</literal>; veja também o manual &apt-preferences;."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:520
++#: apt-get.8.xml:546
  msgid "<option>--trivial-only</option>"
  msgstr "<option>--trivial-only</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:522
++#: apt-get.8.xml:548
  msgid ""
  "Only perform operations that are 'trivial'. Logically this can be considered "
  "related to <option>--assume-yes</option>, where <option>--assume-yes</"
@@@ -4404,12 -4404,12 +4499,12 @@@ msgstr "
  "Trivial-Only</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:528
++#: apt-get.8.xml:554
  msgid "<option>--no-remove</option>"
  msgstr "<option>--no-remove</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:529
++#: apt-get.8.xml:555
  msgid ""
  "If any packages are to be removed apt-get immediately aborts without "
  "prompting.  Configuration Item: <literal>APT::Get::Remove</literal>."
@@@ -4419,12 -4419,12 +4514,12 @@@ msgstr "
  "literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:534
++#: apt-get.8.xml:560
  msgid "<option>--auto-remove</option>"
  msgstr "<option>--auto-remove</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:535
++#: apt-get.8.xml:561
  msgid ""
  "If the command is either <literal>install</literal> or <literal>remove</"
  "literal>, then this option acts like running <literal>autoremove</literal> "
@@@ -4437,12 -4437,12 +4532,12 @@@ msgstr "
  "Configuração: <literal>APT::Get::AutomaticRemove</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:541
++#: apt-get.8.xml:567
  msgid "<option>--only-source</option>"
  msgstr "<option>--only-source</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:542
++#: apt-get.8.xml:568
  msgid ""
  "Only has meaning for the <literal>source</literal> and <literal>build-dep</"
  "literal> commands.  Indicates that the given source names are not to be "
@@@ -4461,22 -4461,22 +4556,22 @@@ msgstr "
  "<literal>APT::Get::Only-Source</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:552
++#: apt-get.8.xml:578
  msgid "<option>--diff-only</option>"
  msgstr "<option>--diff-only</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:552
++#: apt-get.8.xml:578
  msgid "<option>--dsc-only</option>"
  msgstr "<option>--dsc-only</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:552
++#: apt-get.8.xml:578
  msgid "<option>--tar-only</option>"
  msgstr "<option>--tar-only</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:553
++#: apt-get.8.xml:579
  msgid ""
  "Download only the diff, dsc, or tar file of a source archive.  Configuration "
  "Item: <literal>APT::Get::Diff-Only</literal>, <literal>APT::Get::Dsc-Only</"
@@@ -4487,12 -4487,12 +4582,12 @@@ msgstr "
  "Only</literal>, e <literal>APT::Get::Tar-Only</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:558
++#: apt-get.8.xml:584
  msgid "<option>--arch-only</option>"
  msgstr "<option>--arch-only</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:559
++#: apt-get.8.xml:585
  msgid ""
  "Only process architecture-dependent build-dependencies.  Configuration Item: "
  "<literal>APT::Get::Arch-Only</literal>."
@@@ -4501,12 -4501,12 +4596,12 @@@ msgstr "
  "de Configuração: <literal>APT::Get::Arch-Only</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:563
++#: apt-get.8.xml:589
  msgid "<option>--allow-unauthenticated</option>"
  msgstr "<option>--allow-unauthenticated</option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:564
++#: apt-get.8.xml:590
  msgid ""
  "Ignore if packages can't be authenticated and don't prompt about it.  This "
  "is useful for tools like pbuilder.  Configuration Item: <literal>APT::Get::"
@@@ -4517,7 -4517,7 +4612,7 @@@ msgstr "
  "Get::AllowUnauthenticated</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist>
--#: apt-get.8.xml:577
++#: apt-get.8.xml:603
  msgid ""
  "&file-sourceslist; &file-aptconf; &file-preferences; &file-cachearchives; "
  "&file-statelists;"
@@@ -4526,7 -4526,7 +4621,7 @@@ msgstr "
  "&file-statelists;"
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt-get.8.xml:586
++#: apt-get.8.xml:612
  msgid ""
  "&apt-cache;, &apt-cdrom;, &dpkg;, &dselect;, &sources-list;, &apt-conf;, "
  "&apt-config;, &apt-secure;, The APT User's guide in &guidesdir;, &apt-"
@@@ -4537,7 -4537,7 +4632,7 @@@ msgstr "
  "&guidesdir;, &apt-preferences;, o Howto do APT."
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt-get.8.xml:592
++#: apt-get.8.xml:618
  msgid ""
  "<command>apt-get</command> returns zero on normal operation, decimal 100 on "
  "error."
@@@ -4546,22 -4546,22 +4641,22 @@@ msgstr "
  "erro."
  
  #. type: Content of: <refentry><refsect1><title>
--#: apt-get.8.xml:595
++#: apt-get.8.xml:621
  msgid "ORIGINAL AUTHORS"
  msgstr "AUTORES ORIGINAIS"
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt-get.8.xml:596
++#: apt-get.8.xml:622
  msgid "&apt-author.jgunthorpe;"
  msgstr "&apt-author.jgunthorpe;"
  
  #. type: Content of: <refentry><refsect1><title>
--#: apt-get.8.xml:599
++#: apt-get.8.xml:625
  msgid "CURRENT AUTHORS"
  msgstr "AUTORES ACTUAIS"
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt-get.8.xml:601
++#: apt-get.8.xml:627
  msgid "&apt-author.team;"
  msgstr "&apt-author.team;"
  
@@@ -4688,14 -4688,30 +4783,33 @@@ msgstr "
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #: apt-key.8.xml:131
  msgid ""
--"Update the local keyring with the keyring of Debian archive keys and removes "
--"from the keyring the archive keys which are no longer valid."
++"Update the local keyring with the archive keyring and remove from the local "
++"keyring the archive keys which are no longer valid.  The archive keyring is "
++"shipped in the <literal>archive-keyring</literal> package of your "
++"distribution, e.g. the <literal>ubuntu-archive-keyring</literal> package in "
++"Ubuntu."
+ msgstr ""
 -"Actualiza o chaveiro local com o chaveiro das chaves de arquivos Debian e "
 -"remove do chaveiro as chaves de arquivo que já não são válidas."
+ #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
 -#: apt-key.8.xml:140
++#: apt-key.8.xml:141
+ #, fuzzy
+ #| msgid "update"
+ msgid "net-update"
+ msgstr "update"
+ #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
 -#: apt-key.8.xml:144
++#: apt-key.8.xml:145
+ msgid ""
 -"Update the local keyring with the keys of a key server and removes from the "
 -"keyring the archive keys which are no longer valid. This requires an "
 -"installed wget and an APT build configured to have a server to fetch from. "
 -"APT in Debian does not support this command, but Ubuntu's APT does."
++"Work similar to the <command>update</command> command above, but get the "
++"archive keyring from an URI instead and validate it against a master key.  "
++"This requires an installed &wget; and an APT build configured to have a "
++"server to fetch from and a master keyring to validate.  APT in Debian does "
++"not support this command and relies on <command>update</command> instead, "
++"but Ubuntu's APT does."
  msgstr ""
- "Actualiza o chaveiro local com o chaveiro das chaves de arquivos Debian e "
- "remove do chaveiro as chaves de arquivo que já não são válidas."
  
  #. type: Content of: <refentry><refsect1><para>
- #: apt-key.8.xml:143
 -#: apt-key.8.xml:159
++#: apt-key.8.xml:162
  msgid ""
  "Note that options need to be defined before the commands described in the "
  "previous section."
@@@ -4704,12 -4720,12 +4818,12 @@@ msgstr "
  "secção prévia."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-key.8.xml:145
 -#: apt-key.8.xml:161
++#: apt-key.8.xml:164
  msgid "--keyring <replaceable>filename</replaceable>"
  msgstr "--keyring <replaceable>nome-de-ficheiro</replaceable>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
- #: apt-key.8.xml:146
 -#: apt-key.8.xml:162
++#: apt-key.8.xml:165
  msgid ""
  "With this option it is possible to specify a specific keyring file the "
  "command should operate on. The default is that a command is executed on the "
@@@ -4726,53 -4742,57 +4840,66 @@@ msgstr "
  "chaves são adicionadas a este."
  
  #. type: Content of: <refentry><refsect1><variablelist>
- #: apt-key.8.xml:159
 -#: apt-key.8.xml:175
++#: apt-key.8.xml:178
  msgid "&file-trustedgpg;"
  msgstr "&file-trustedgpg;"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-key.8.xml:161
 -#: apt-key.8.xml:177
++#: apt-key.8.xml:180
  msgid "<filename>/etc/apt/trustdb.gpg</filename>"
  msgstr "<filename>/etc/apt/trustdb.gpg</filename>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
- #: apt-key.8.xml:162
 -#: apt-key.8.xml:178
++#: apt-key.8.xml:181
  msgid "Local trust database of archive keys."
  msgstr "Base de dados local de confiança de chaves de arquivos."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-key.8.xml:165
 -#: apt-key.8.xml:181
--msgid "<filename>/usr/share/keyrings/debian-archive-keyring.gpg</filename>"
++#: apt-key.8.xml:184
++#, fuzzy
++#| msgid "<filename>/usr/share/keyrings/debian-archive-keyring.gpg</filename>"
++msgid "<filename>/usr/share/keyrings/ubuntu-archive-keyring.gpg</filename>"
  msgstr "<filename>/usr/share/keyrings/debian-archive-keyring.gpg</filename>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
- #: apt-key.8.xml:166
 -#: apt-key.8.xml:182
--msgid "Keyring of Debian archive trusted keys."
++#: apt-key.8.xml:185
++#, fuzzy
++#| msgid "Keyring of Debian archive trusted keys."
++msgid "Keyring of Ubuntu archive trusted keys."
  msgstr "Chaveiro das chaves de confiança dos arquivos Debian."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-key.8.xml:169
 -#: apt-key.8.xml:185
++#: apt-key.8.xml:188
++#, fuzzy
++#| msgid ""
++#| "<filename>/usr/share/keyrings/debian-archive-removed-keys.gpg</filename>"
  msgid ""
--"<filename>/usr/share/keyrings/debian-archive-removed-keys.gpg</filename>"
++"<filename>/usr/share/keyrings/ubuntu-archive-removed-keys.gpg</filename>"
  msgstr ""
  "<filename>/usr/share/keyrings/debian-archive-removed-keys.gpg</filename>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
- #: apt-key.8.xml:170
 -#: apt-key.8.xml:186
--msgid "Keyring of Debian archive removed trusted keys."
++#: apt-key.8.xml:189
++#, fuzzy
++#| msgid "Keyring of Debian archive removed trusted keys."
++msgid "Keyring of Ubuntu archive removed trusted keys."
  msgstr "Chaveiro das chaves de confiança removidas dos arquivos Debian."
  
  #. type: Content of: <refentry><refsect1><para>
- #: apt-key.8.xml:179
 -#: apt-key.8.xml:195
++#: apt-key.8.xml:198
  msgid "&apt-get;, &apt-secure;"
  msgstr "&apt-get;, &apt-secure;"
  
  #.  The last update date 
  #. type: Content of: <refentry><refentryinfo>
  #: apt-mark.8.xml:16
+ #, fuzzy
+ #| msgid ""
+ #| "&apt-author.moconnor; &apt-author.team; &apt-email; &apt-product; <date>9 "
+ #| "August 2009</date>"
  msgid ""
- "&apt-author.moconnor; &apt-author.team; &apt-email; &apt-product; <date>9 "
- "August 2009</date>"
+ "&apt-author.moconnor; &apt-author.team; &apt-email; &apt-product; <date>21 "
+ "April 2011</date>"
  msgstr ""
  "&apt-author.moconnor; &apt-author.team; &apt-email; &apt-product; <date>9 "
  "Agosto 2009</date>"
@@@ -4789,13 -4809,22 +4916,22 @@@ msgstr "marca/desmarca um pacote como s
  
  #. type: Content of: <refentry><refsynopsisdiv><cmdsynopsis>
  #: apt-mark.8.xml:39
+ #, fuzzy
+ #| msgid ""
+ #| "  <command>apt-mark</command> <arg><option>-hv</option></arg> "
+ #| "<arg><option>-f=<replaceable>FILENAME</replaceable></option></arg> <group "
+ #| "choice=\"plain\"> <arg choice=\"plain\"> <group choice=\"req\"> <arg "
+ #| "choice=\"plain\">markauto</arg> <arg choice=\"plain\">unmarkauto</arg> </"
+ #| "group> <arg choice=\"plain\" rep=\"repeat\"><replaceable>package</"
+ #| "replaceable></arg> </arg> <arg choice=\"plain\">showauto</arg> </group>"
  msgid ""
  "  <command>apt-mark</command> <arg><option>-hv</option></arg> <arg><option>-"
  "f=<replaceable>FILENAME</replaceable></option></arg> <group choice=\"plain"
  "\"> <arg choice=\"plain\"> <group choice=\"req\"> <arg choice=\"plain"
- "\">markauto</arg> <arg choice=\"plain\">unmarkauto</arg> </group> <arg "
+ "\">auto</arg> <arg choice=\"plain\">manual</arg> <arg choice=\"plain"
+ "\">showauto</arg> <arg choice=\"plain\">showmanual</arg> </group> <arg "
  "choice=\"plain\" rep=\"repeat\"><replaceable>package</replaceable></arg> </"
- "arg> <arg choice=\"plain\">showauto</arg> </group>"
+ "arg> </group>"
  msgstr ""
  "  <command>apt-mark</command> <arg><option>-hv</option></arg> <arg><option>-"
  "f=<replaceable>NOME DE FICHEIRO</replaceable></option></arg> <group choice="
  "arg> <arg choice=\"plain\">showauto</arg> </group>"
  
  #. type: Content of: <refentry><refsect1><para>
- #: apt-mark.8.xml:56
+ #: apt-mark.8.xml:57
  msgid ""
  "<command>apt-mark</command> will change whether a package has been marked as "
  "being automatically installed."
@@@ -4814,7 -4843,7 +4950,7 @@@ msgstr "
  "sendo instalado automaticamente."
  
  #. type: Content of: <refentry><refsect1><para>
- #: apt-mark.8.xml:60
+ #: apt-mark.8.xml:61
  msgid ""
  "When you request that a package is installed, and as a result other packages "
  "are installed to satisfy its dependencies, the dependencies are marked as "
@@@ -4830,14 -4859,21 +4966,21 @@@ msgstr "
  "command> ou <command>aptitude</command> (exemplos)."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-mark.8.xml:68
- msgid "markauto"
+ #: apt-mark.8.xml:69
+ #, fuzzy
+ #| msgid "markauto"
+ msgid "auto"
  msgstr "markauto"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
- #: apt-mark.8.xml:69
+ #: apt-mark.8.xml:70
+ #, fuzzy
+ #| msgid ""
+ #| "<literal>markauto</literal> is used to mark a package as being "
+ #| "automatically installed, which will cause the package to be removed when "
+ #| "no more manually installed packages depend on this package."
  msgid ""
- "<literal>markauto</literal> is used to mark a package as being automatically "
+ "<literal>auto</literal> is used to mark a package as being automatically "
  "installed, which will cause the package to be removed when no more manually "
  "installed packages depend on this package."
  msgstr ""
  "nenhum pacote instalado manualmente depender deste pacote."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-mark.8.xml:76
- msgid "unmarkauto"
- msgstr "unmarkauto"
+ #: apt-mark.8.xml:77
+ msgid "manual"
+ msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
- #: apt-mark.8.xml:77
+ #: apt-mark.8.xml:78
+ #, fuzzy
+ #| msgid ""
+ #| "<literal>unmarkauto</literal> is used to mark a package as being manually "
+ #| "installed, which will prevent the package from being automatically "
+ #| "removed if no other packages depend on it."
  msgid ""
- "<literal>unmarkauto</literal> is used to mark a package as being manually "
+ "<literal>manual</literal> is used to mark a package as being manually "
  "installed, which will prevent the package from being automatically removed "
  "if no other packages depend on it."
  msgstr ""
  "automaticamente se nenhum outro pacote depender dele."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-mark.8.xml:84
+ #: apt-mark.8.xml:85
+ msgid "hold"
+ msgstr ""
+ #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
+ #: apt-mark.8.xml:86
+ msgid ""
+ "<literal>hold</literal> is used to mark a package as hold back, which will "
+ "prevent the package from being automatically installed, upgraded or "
+ "removed.  The command is only a wrapper around <command>dpkg --set-"
+ "selections</command> and the state is therefore maintained by &dpkg; and not "
+ "effected by the <option>--filename</option> option."
+ msgstr ""
+ #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
+ #: apt-mark.8.xml:95
+ msgid "unhold"
+ msgstr ""
+ #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
+ #: apt-mark.8.xml:96
+ #, fuzzy
+ #| msgid ""
+ #| "<literal>showauto</literal> is used to print a list of automatically "
+ #| "installed packages with each package on a new line."
+ msgid ""
+ "<literal>unhold</literal> is used to cancel a previously set hold on a "
+ "package to allow all actions again."
+ msgstr ""
+ "<literal>showauto</literal> é usado para escrever uma lista dos pacotes "
+ "instalados automaticamente com cada pacote numa linha nova."
+ #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
+ #: apt-mark.8.xml:101
  msgid "showauto"
  msgstr "showauto"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
- #: apt-mark.8.xml:85
+ #: apt-mark.8.xml:102
+ #, fuzzy
+ #| msgid ""
+ #| "<literal>showauto</literal> is used to print a list of automatically "
+ #| "installed packages with each package on a new line."
  msgid ""
  "<literal>showauto</literal> is used to print a list of automatically "
- "installed packages with each package on a new line."
+ "installed packages with each package on a new line.  All automatically "
+ "installed packages will be listed if no package is given.  If packages are "
+ "given only those which are automatically installed will be shown."
  msgstr ""
  "<literal>showauto</literal> é usado para escrever uma lista dos pacotes "
  "instalados automaticamente com cada pacote numa linha nova."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-mark.8.xml:96
+ #: apt-mark.8.xml:109
+ #, fuzzy
+ #| msgid "showauto"
+ msgid "showmanual"
+ msgstr "showauto"
+ #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
+ #: apt-mark.8.xml:110
+ msgid ""
+ "<literal>showmanual</literal> can be used in the same way as "
+ "<literal>showauto</literal> except that it will print a list of manually "
+ "installed packages instead."
+ msgstr ""
+ #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
+ #: apt-mark.8.xml:116
+ #, fuzzy
+ #| msgid "showauto"
+ msgid "showhold"
+ msgstr "showauto"
+ #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
+ #: apt-mark.8.xml:117
+ #, fuzzy
+ #| msgid ""
+ #| "<literal>showauto</literal> is used to print a list of automatically "
+ #| "installed packages with each package on a new line."
+ msgid ""
+ "<literal>showhold</literal> is used to print a list of packages on hold in "
+ "the same way as for the other show commands."
+ msgstr ""
+ "<literal>showauto</literal> é usado para escrever uma lista dos pacotes "
+ "instalados automaticamente com cada pacote numa linha nova."
+ #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
+ #: apt-mark.8.xml:130
  msgid ""
  "<option>-f=<filename><replaceable>FILENAME</replaceable></filename></option>"
  msgstr ""
  "option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-mark.8.xml:97
+ #: apt-mark.8.xml:131
  msgid ""
  "<option>--file=<filename><replaceable>FILENAME</replaceable></filename></"
  "option>"
@@@ -4893,7 -5008,7 +5115,7 @@@ msgstr "
  "filename></option>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
- #: apt-mark.8.xml:100
+ #: apt-mark.8.xml:134
  msgid ""
  "Read/Write package stats from <filename><replaceable>FILENAME</replaceable></"
  "filename> instead of the default location, which is "
@@@ -4905,48 -5020,18 +5127,18 @@@ msgstr "
  "localização predefinida, a qual é <filename>extended_status</filename> no "
  "directório definido pelo Item de Configuração: <literal>Dir::State</literal>."
  
- #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-mark.8.xml:106
- msgid "<option>-h</option>"
- msgstr "<option>-h</option>"
- #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-mark.8.xml:107
- msgid "<option>--help</option>"
- msgstr "<option>--help</option>"
- #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
- #: apt-mark.8.xml:108
- msgid "Show a short usage summary."
- msgstr "Mostra um curto sumário de utilização."
- #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-mark.8.xml:114
- msgid "<option>-v</option>"
- msgstr "<option>-v</option>"
- #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-mark.8.xml:115
- msgid "<option>--version</option>"
- msgstr "<option>--version</option>"
- #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
- #: apt-mark.8.xml:116
- msgid "Show the program version."
- msgstr "Mostra a versão do programa."
  #. type: Content of: <refentry><refsect1><variablelist>
- #: apt-mark.8.xml:127
+ #: apt-mark.8.xml:146
  msgid "  &file-extended_states;"
  msgstr "  &file-extended_states;"
  
  #. type: Content of: <refentry><refsect1><para>
- #: apt-mark.8.xml:132
+ #: apt-mark.8.xml:151
  msgid "&apt-get;,&aptitude;,&apt-conf;"
  msgstr "&apt-get;,&aptitude;,&apt-conf;"
  
  #. type: Content of: <refentry><refsect1><para>
- #: apt-mark.8.xml:136
+ #: apt-mark.8.xml:155
  msgid ""
  "<command>apt-mark</command> returns zero on normal operation, non-zero on "
  "error."
@@@ -5420,11 -5505,11 +5612,12 @@@ msgstr "
  #| "period (.) characters - otherwise they will be silently ignored."
  msgid ""
  "all files in <literal>Dir::Etc::Parts</literal> in alphanumeric ascending "
--"order which have no or \"<literal>conf</literal>\" as filename extension and "
--"which only contain alphanumeric, hyphen (-), underscore (_) and period (.) "
--"characters.  Otherwise APT will print a notice that it has ignored a file if "
--"the file doesn't match a pattern in the <literal>Dir::Ignore-Files-Silently</"
--"literal> configuration list - in this case it will be silently ignored."
++"order which have either no or \"<literal>conf</literal>\" as filename "
++"extension and which only contain alphanumeric, hyphen (-), underscore (_) "
++"and period (.) characters.  Otherwise APT will print a notice that it has "
++"ignored a file if the file doesn't match a pattern in the <literal>Dir::"
++"Ignore-Files-Silently</literal> configuration list - in this case it will be "
++"silently ignored."
  msgstr ""
  "todos os ficheiros em <literal>Dir::Etc::Parts</literal> em ordem ascendente "
  "alfanumérica sem extensão ou com \"<literal>conf</literal>\" como extensão "
@@@ -5678,13 -5763,13 +5871,24 @@@ msgstr "
  "analisa listas de pacotes. A predefinição interna é a arquitectura para a "
  "qual o APT foi compilado."
  
++#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
++#: apt.conf.5.xml:158
++msgid ""
++"All Architectures the system supports. Processors implementing the "
++"<literal>amd64</literal> are e.g. also able to execute binaries compiled for "
++"<literal>i386</literal>; This list is use when fetching files and parsing "
++"package lists. The internal default is always the native architecture "
++"(<literal>APT::Architecture</literal>)  and all foreign architectures it can "
++"retrieve by calling <command>dpkg --print-foreign-architectures</command>."
++msgstr ""
++
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:157
++#: apt.conf.5.xml:165
  msgid "Default-Release"
  msgstr "Default-Release"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:158
++#: apt.conf.5.xml:166
  msgid ""
  "Default release to install packages from if more than one version available. "
  "Contains release name, codename or release version. Examples: 'stable', "
@@@ -5697,12 -5782,12 +5901,12 @@@ msgstr "
  "'&testing-codename;', '4.0', '5.0*'. Veja também &apt-preferences;."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:163
++#: apt.conf.5.xml:171
  msgid "Ignore-Hold"
  msgstr "Ignore-Hold"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:164
++#: apt.conf.5.xml:172
  msgid ""
  "Ignore Held packages; This global option causes the problem resolver to "
  "ignore held packages in its decision making."
@@@ -5711,12 -5796,12 +5915,12 @@@ msgstr "
  "os pacotes segurados sejam ignorados na sua decisão de marcação."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:168
++#: apt.conf.5.xml:176
  msgid "Clean-Installed"
  msgstr "Clean-Installed"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:169
++#: apt.conf.5.xml:177
  msgid ""
  "Defaults to on. When turned on the autoclean feature will remove any "
  "packages which can no longer be downloaded from the cache. If turned off "
@@@ -5730,12 -5815,12 +5934,12 @@@ msgstr "
  "directo de os reinstalar."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:175
++#: apt.conf.5.xml:183
  msgid "Immediate-Configure"
  msgstr "Immediate-Configure"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:176
++#: apt.conf.5.xml:184
  msgid ""
  "Defaults to on which will cause APT to install essential and important "
  "packages as fast as possible in the install/upgrade operation. This is done "
@@@ -5799,12 -5884,12 +6003,12 @@@ msgstr "
  "correcção do processo de actualização."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:198
++#: apt.conf.5.xml:206
  msgid "Force-LoopBreak"
  msgstr "Force-LoopBreak"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:199
++#: apt.conf.5.xml:207
  msgid ""
  "Never Enable this option unless you -really- know what you are doing. It "
  "permits APT to temporarily remove an essential package to break a Conflicts/"
@@@ -5821,12 -5906,12 +6025,12 @@@ msgstr "
  "tar, gzip, libc, dpkg, bash ou qualquer coisa de que estes dependem."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:207
++#: apt.conf.5.xml:215
  msgid "Cache-Start, Cache-Grow and Cache-Limit"
  msgstr "Cache-Start, Cache-Grow e Cache-Limit"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:208
++#: apt.conf.5.xml:216
  msgid ""
  "APT uses since version 0.7.26 a resizable memory mapped cache file to store "
  "the 'available' information. <literal>Cache-Start</literal> acts as a hint "
@@@ -5863,24 -5948,24 +6067,24 @@@ msgstr "
  "da cache é desactivado."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:223
++#: apt.conf.5.xml:231
  msgid "Build-Essential"
  msgstr "Build-Essential"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:224
++#: apt.conf.5.xml:232
  msgid "Defines which package(s) are considered essential build dependencies."
  msgstr ""
  "Define quais pacote(s) são considerados dependências essenciais de "
  "compilação."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:227
++#: apt.conf.5.xml:235
  msgid "Get"
  msgstr "Get"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:228
++#: apt.conf.5.xml:236
  msgid ""
  "The Get subsection controls the &apt-get; tool, please see its documentation "
  "for more information about the options here."
@@@ -5889,12 -5974,12 +6093,12 @@@ msgstr "
  "documentação para mais informação acerca das opções daqui."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:232
++#: apt.conf.5.xml:240
  msgid "Cache"
  msgstr "Cache"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:233
++#: apt.conf.5.xml:241
  msgid ""
  "The Cache subsection controls the &apt-cache; tool, please see its "
  "documentation for more information about the options here."
@@@ -5903,12 -5988,12 +6107,12 @@@ msgstr "
  "documentação para mais informação acerca das opções daqui."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:237
++#: apt.conf.5.xml:245
  msgid "CDROM"
  msgstr "CDROM"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:238
++#: apt.conf.5.xml:246
  msgid ""
  "The CDROM subsection controls the &apt-cdrom; tool, please see its "
  "documentation for more information about the options here."
@@@ -5917,17 -6002,17 +6121,17 @@@ msgstr "
  "documentação para mais informação acerca das opções de aqui."
  
  #. type: Content of: <refentry><refsect1><title>
--#: apt.conf.5.xml:244
++#: apt.conf.5.xml:252
  msgid "The Acquire Group"
  msgstr "O Grupo Acquire"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:249
++#: apt.conf.5.xml:257
  msgid "Check-Valid-Until"
  msgstr "Check-Valid-Until"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:250
++#: apt.conf.5.xml:258
  msgid ""
  "Security related option defaulting to true as an expiring validation for a "
  "Release file prevents longtime replay attacks and can e.g. also help users "
@@@ -5948,22 -6033,22 +6152,68 @@@ msgstr "
  "ValidTime</literal> seguinte."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:260
++#: apt.conf.5.xml:268
  msgid "Max-ValidTime"
  msgstr "Max-ValidTime"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:261
--msgid ""
--"Seconds the Release file should be considered valid after it was created. "
--"The default is \"for ever\" (0) if the Release file of the archive doesn't "
--"include a <literal>Valid-Until</literal> header.  If it does then this date "
--"is the default. The date from the Release file or the date specified by the "
--"creation time of the Release file (<literal>Date</literal> header) plus the "
--"seconds specified with this options are used to check if the validation of a "
--"file has expired by using the earlier date of the two. Archive specific "
--"settings can be made by appending the label of the archive to the option "
--"name."
++#: apt.conf.5.xml:269
++#, fuzzy
++#| msgid ""
++#| "Seconds the Release file should be considered valid after it was created. "
++#| "The default is \"for ever\" (0) if the Release file of the archive "
++#| "doesn't include a <literal>Valid-Until</literal> header.  If it does then "
++#| "this date is the default. The date from the Release file or the date "
++#| "specified by the creation time of the Release file (<literal>Date</"
++#| "literal> header) plus the seconds specified with this options are used to "
++#| "check if the validation of a file has expired by using the earlier date "
++#| "of the two. Archive specific settings can be made by appending the label "
++#| "of the archive to the option name."
++msgid ""
++"Seconds the Release file should be considered valid after it was created "
++"(indicated by the <literal>Date</literal> header).  If the Release file "
++"itself includes a <literal>Valid-Until</literal> header the earlier date of "
++"the two is used as the expiration date.  The default value is <literal>0</"
++"literal> which stands for \"for ever\".  Archive specific settings can be "
++"made by appending the label of the archive to the option name."
++msgstr ""
++"Segundos em que o ficheiro Release deve considerado válido após ser criado. "
++"A predefinição é \"para sempre\" (0) se o ficheiro Release do arquivo não "
++"conter um cabeçalho <literal>Valid-Until</literal>. Se o tiver então esta "
++"data é a predefinida. A data do ficheiro Release ou a data especificada pela "
++"hora de criação do do ficheiro Release (cabeçalho <literal>Date</literal>) "
++"mais os segundos especificados com esta opção são usados para verificar se a "
++"validação de um ficheiro já expirou ao usar uma data anterior às duas. "
++"Definições específicas do Arquivo podem ser feitas ao adicionar a etiqueta "
++"do arquivo ao nome da opção. "
++
++#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
++#: apt.conf.5.xml:279
++#, fuzzy
++#| msgid "Max-ValidTime"
++msgid "Min-ValidTime"
++msgstr "Max-ValidTime"
++
++#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
++#: apt.conf.5.xml:280
++#, fuzzy
++#| msgid ""
++#| "Seconds the Release file should be considered valid after it was created. "
++#| "The default is \"for ever\" (0) if the Release file of the archive "
++#| "doesn't include a <literal>Valid-Until</literal> header.  If it does then "
++#| "this date is the default. The date from the Release file or the date "
++#| "specified by the creation time of the Release file (<literal>Date</"
++#| "literal> header) plus the seconds specified with this options are used to "
++#| "check if the validation of a file has expired by using the earlier date "
++#| "of the two. Archive specific settings can be made by appending the label "
++#| "of the archive to the option name."
++msgid ""
++"Minimum of seconds the Release file should be considered valid after it was "
++"created (indicated by the <literal>Date</literal> header).  Use this if you "
++"need to use a seldomly updated (local) mirror of a more regular updated "
++"archive with a <literal>Valid-Until</literal> header instead of competely "
++"disabling the expiration date checking.  Archive specific settings can and "
++"should be used by appending the label of the archive to the option name."
  msgstr ""
  "Segundos em que o ficheiro Release deve considerado válido após ser criado. "
  "A predefinição é \"para sempre\" (0) se o ficheiro Release do arquivo não "
  "do arquivo ao nome da opção. "
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:273
++#: apt.conf.5.xml:290
  msgid "PDiffs"
  msgstr "PDiffs"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:274
++#: apt.conf.5.xml:291
  msgid ""
  "Try to download deltas called <literal>PDiffs</literal> for Packages or "
  "Sources files instead of downloading whole ones. True by default."
@@@ -5991,12 -6076,20 +6241,20 @@@ msgstr "
  "predefinição."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:277
++#: apt.conf.5.xml:294
+ #, fuzzy
+ #| msgid ""
+ #| "Two sub-options to limit the use of PDiffs are also available: With "
+ #| "<literal>FileLimit</literal> can be specified how many PDiff files are "
+ #| "downloaded at most to patch a file. <literal>SizeLimit</literal> on the "
+ #| "other hand is the maximum percentage of the size of all patches compared "
+ #| "to the size of the targeted file. If one of these limits is exceeded the "
+ #| "complete file is downloaded instead of the patches."
  msgid ""
  "Two sub-options to limit the use of PDiffs are also available: With "
  "<literal>FileLimit</literal> can be specified how many PDiff files are "
  "downloaded at most to patch a file. <literal>SizeLimit</literal> on the "
--"other hand is the maximum precentage of the size of all patches compared to "
++"other hand is the maximum percentage of the size of all patches compared to "
  "the size of the targeted file. If one of these limits is exceeded the "
  "complete file is downloaded instead of the patches."
  msgstr ""
  "limites for excedido, é descarregado o ficheiro completo em vez das patches."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:286
++#: apt.conf.5.xml:303
  msgid "Queue-Mode"
  msgstr "Queue-Mode"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:287
++#: apt.conf.5.xml:304
  msgid ""
  "Queuing mode; <literal>Queue-Mode</literal> can be one of <literal>host</"
  "literal> or <literal>access</literal> which determines how APT parallelizes "
@@@ -6028,12 -6121,12 +6286,12 @@@ msgstr "
  "aberta uma ligação por tipo de URI."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:294
++#: apt.conf.5.xml:311
  msgid "Retries"
  msgstr "Retries"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:295
++#: apt.conf.5.xml:312
  msgid ""
  "Number of retries to perform. If this is non-zero APT will retry failed "
  "files the given number of times."
@@@ -6042,12 -6135,12 +6300,12 @@@ msgstr "
  "tentar, no número fornecido de vezes, obter ficheiros falhados."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:299
++#: apt.conf.5.xml:316
  msgid "Source-Symlinks"
  msgstr "Source-Symlinks"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:300
++#: apt.conf.5.xml:317
  msgid ""
  "Use symlinks for source archives. If set to true then source archives will "
  "be symlinked when possible instead of copying. True is the default."
@@@ -6057,12 -6150,12 +6315,12 @@@ msgstr "
  "A predefinição é verdadeiro."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:304 sources.list.5.xml:144
++#: apt.conf.5.xml:321 sources.list.5.xml:160
  msgid "http"
  msgstr "http"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:305
++#: apt.conf.5.xml:322
  msgid ""
  "HTTP URIs; http::Proxy is the default http proxy to use. It is in the "
  "standard form of <literal>http://[[user][:pass]@]host[:port]/</literal>. Per "
@@@ -6079,7 -6172,7 +6337,7 @@@ msgstr "
  "especificada, será usada a variável de ambiente <envar>http_proxy</envar>."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:313
++#: apt.conf.5.xml:330
  msgid ""
  "Three settings are provided for cache control with HTTP/1.1 compliant proxy "
  "caches. <literal>No-Cache</literal> tells the proxy to not use its cached "
@@@ -6104,7 -6197,7 +6362,7 @@@ msgstr "
  "suporta nenhuma destas opções."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:323 apt.conf.5.xml:387
++#: apt.conf.5.xml:340 apt.conf.5.xml:404
  msgid ""
  "The option <literal>timeout</literal> sets the timeout timer used by the "
  "method, this applies to all things including connection timeout and data "
@@@ -6115,7 -6208,7 +6373,7 @@@ msgstr "
  "e tempos limite de dados."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:326
++#: apt.conf.5.xml:343
  msgid ""
  "One setting is provided to control the pipeline depth in cases where the "
  "remote server is not RFC conforming or buggy (such as Squid 2.0.2).  "
@@@ -6134,7 -6227,7 +6392,7 @@@ msgstr "
  "As máquinas que requerem isto estão em violação de RFC 2068."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:334
++#: apt.conf.5.xml:351
  msgid ""
  "The used bandwidth can be limited with <literal>Acquire::http::Dl-Limit</"
  "literal> which accepts integer values in kilobyte. The default value is 0 "
@@@ -6149,7 -6242,7 +6407,7 @@@ msgstr "
  "múltiplos servidores ao mesmo tempo.)"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:339
++#: apt.conf.5.xml:356
  msgid ""
  "<literal>Acquire::http::User-Agent</literal> can be used to set a different "
  "User-Agent for the http download method as some proxies allow access for "
@@@ -6161,12 -6254,12 +6419,12 @@@ msgstr "
  "identificador conhecido."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:345
++#: apt.conf.5.xml:362
  msgid "https"
  msgstr "https"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:346
++#: apt.conf.5.xml:363
  msgid ""
  "HTTPS URIs. Cache-control, Timeout, AllowRedirect, Dl-Limit and proxy "
  "options are the same as for <literal>http</literal> method and will also "
@@@ -6181,7 -6274,7 +6439,7 @@@ msgstr "
  "literal> ainda não é suportada."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:352
++#: apt.conf.5.xml:369
  msgid ""
  "<literal>CaInfo</literal> suboption specifies place of file that holds info "
  "about trusted certificates.  <literal>&lt;host&gt;::CaInfo</literal> is "
@@@ -6218,12 -6311,12 +6476,12 @@@ msgstr "
  "host&gt;::SslForceVersion</literal> é a opção po máquina correspondente."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:370 sources.list.5.xml:155
++#: apt.conf.5.xml:387 sources.list.5.xml:171
  msgid "ftp"
  msgstr "ftp"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:371
++#: apt.conf.5.xml:388
  msgid ""
  "FTP URIs; ftp::Proxy is the default ftp proxy to use. It is in the standard "
  "form of <literal>ftp://[[user][:pass]@]host[:port]/</literal>. Per host "
@@@ -6256,7 -6349,7 +6514,7 @@@ msgstr "
  "$(SITE_PORT)</literal>. Cada uma é tirada do seu componente URI respectivo."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:390
++#: apt.conf.5.xml:407
  msgid ""
  "Several settings are provided to control passive mode. Generally it is safe "
  "to leave passive mode on, it works in nearly every environment.  However "
@@@ -6272,7 -6365,7 +6530,7 @@@ msgstr "
  "específica (Veja a amostra de ficheiro de configuração para exemplos)."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:397
++#: apt.conf.5.xml:414
  msgid ""
  "It is possible to proxy FTP over HTTP by setting the <envar>ftp_proxy</"
  "envar> environment variable to a http url - see the discussion of the http "
@@@ -6286,7 -6379,7 +6544,7 @@@ msgstr "
  "eficiência."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:402
++#: apt.conf.5.xml:419
  msgid ""
  "The setting <literal>ForceExtended</literal> controls the use of RFC2428 "
  "<literal>EPSV</literal> and <literal>EPRT</literal> commands. The default is "
@@@ -6301,18 -6394,18 +6559,18 @@@ msgstr "
  "ligações IPv4. Note que a maioria dos servidores FTP não suporta RFC2428."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:409 sources.list.5.xml:137
++#: apt.conf.5.xml:426 sources.list.5.xml:153
  msgid "cdrom"
  msgstr "cdrom"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><literallayout>
--#: apt.conf.5.xml:415
++#: apt.conf.5.xml:432
  #, no-wrap
  msgid "/cdrom/::Mount \"foo\";"
  msgstr "/cdrom/::Mount \"foo\";"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:410
++#: apt.conf.5.xml:427
  msgid ""
  "CDROM URIs; the only setting for CDROM URIs is the mount point, "
  "<literal>cdrom::Mount</literal> which must be the mount point for the CDROM "
@@@ -6333,12 -6426,12 +6591,12 @@@ msgstr "
  "Comandos para desmontar podem ser especificados usando UMount."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:420
++#: apt.conf.5.xml:437
  msgid "gpgv"
  msgstr "gpgv"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:421
++#: apt.conf.5.xml:438
  msgid ""
  "GPGV URIs; the only option for GPGV URIs is the option to pass additional "
  "parameters to gpgv.  <literal>gpgv::Options</literal> Additional options "
@@@ -6349,18 -6442,18 +6607,18 @@@ msgstr "
  "passadas ao gpgv."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:426
++#: apt.conf.5.xml:443
  msgid "CompressionTypes"
  msgstr "CompressionTypes"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><synopsis>
--#: apt.conf.5.xml:432
++#: apt.conf.5.xml:449
  #, no-wrap
  msgid "Acquire::CompressionTypes::<replaceable>FileExtension</replaceable> \"<replaceable>Methodname</replaceable>\";"
  msgstr "Acquire::CompressionTypes::<replaceable>Extensão de Ficheiro</replaceable> \"<replaceable>Nome de método</replaceable>\";"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:427
++#: apt.conf.5.xml:444
  msgid ""
  "List of compression types which are understood by the acquire methods.  "
  "Files like <filename>Packages</filename> can be available in various "
@@@ -6379,19 -6472,19 +6637,19 @@@ msgstr "
  "alterado. A sintaxe para isto é: <placeholder type=\"synopsis\" id=\"0\"/>"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><synopsis>
--#: apt.conf.5.xml:437
++#: apt.conf.5.xml:454
  #, no-wrap
  msgid "Acquire::CompressionTypes::Order:: \"gz\";"
  msgstr "Acquire::CompressionTypes::Order:: \"gz\";"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><synopsis>
--#: apt.conf.5.xml:440
++#: apt.conf.5.xml:457
  #, no-wrap
  msgid "Acquire::CompressionTypes::Order { \"lzma\"; \"gz\"; };"
  msgstr "Acquire::CompressionTypes::Order { \"lzma\"; \"gz\"; };"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:433
++#: apt.conf.5.xml:450
  msgid ""
  "Also the <literal>Order</literal> subgroup can be used to define in which "
  "order the acquire system will try to download the compressed files. The "
@@@ -6422,13 -6515,13 +6680,13 @@@ msgstr "
  "lista pois será adicionado automaticamente."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><literallayout>
--#: apt.conf.5.xml:444
++#: apt.conf.5.xml:461
  #, no-wrap
  msgid "Dir::Bin::bzip2 \"/bin/bzip2\";"
  msgstr "Dir::Bin::bzip2 \"/bin/bzip2\";"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:442
++#: apt.conf.5.xml:459
  #, fuzzy
  #| msgid ""
  #| "Note that at run time the <literal>Dir::Bin::<replaceable>Methodname</"
@@@ -6445,9 -6538,9 +6703,9 @@@ msgid "
  "Note that at run time the <literal>Dir::Bin::<replaceable>Methodname</"
  "replaceable></literal> will be checked: If this setting exists the method "
  "will only be used if this file exists, e.g. for the bzip2 method (the "
--"inbuilt) setting is <placeholder type=\"literallayout\" id=\"0\"/> Note also "
--"that list entries specified on the command line will be added at the end of "
--"the list specified in the configuration files, but before the default "
++"inbuilt) setting is: <placeholder type=\"literallayout\" id=\"0\"/> Note "
++"also that list entries specified on the command line will be added at the "
++"end of the list specified in the configuration files, but before the default "
  "entries. To prefer a type in this case over the ones specified in the "
  "configuration files you can set the option direct - not in list style.  This "
  "will not override the defined list, it will only prefix the list with this "
@@@ -6465,20 -6558,20 +6723,20 @@@ msgstr "
  "sobrepor a lista definida, irá apenas prefixar a lista com este tipo."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:449
++#: apt.conf.5.xml:466
  msgid ""
  "The special type <literal>uncompressed</literal> can be used to give "
--"uncompressed files a preference, but note that most archives doesn't provide "
++"uncompressed files a preference, but note that most archives don't provide "
  "uncompressed files so this is mostly only useable for local mirrors."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:454
++#: apt.conf.5.xml:471
  msgid "GzipIndexes"
  msgstr "GzipIndexes"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:456
++#: apt.conf.5.xml:473
  msgid ""
  "When downloading <literal>gzip</literal> compressed indexes (Packages, "
  "Sources, or Translations), keep them gzip compressed locally instead of "
@@@ -6491,12 -6584,12 +6749,12 @@@ msgstr "
  "CPU quando constrói as caches de pacotes locais. Falso por predefinição."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:463
++#: apt.conf.5.xml:480
  msgid "Languages"
  msgstr "Languages"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:464
++#: apt.conf.5.xml:481
  msgid ""
  "The Languages subsection controls which <filename>Translation</filename> "
  "files are downloaded and in which order APT tries to display the Description-"
@@@ -6518,13 -6611,13 +6776,13 @@@ msgstr "
  "de definir aqui valores impossíveis."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><programlisting>
--#: apt.conf.5.xml:480
++#: apt.conf.5.xml:497
  #, no-wrap
  msgid "Acquire::Languages { \"environment\"; \"de\"; \"en\"; \"none\"; \"fr\"; };"
  msgstr "Acquire::Languages { \"environment\"; \"de\"; \"en\"; \"none\"; \"fr\"; };"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:470
++#: apt.conf.5.xml:487
  msgid ""
  "The default list includes \"environment\" and \"en\". "
  "\"<literal>environment</literal>\" has a special meaning here: It will be "
@@@ -6564,7 -6657,7 +6822,7 @@@ msgstr "
  "ser \"fr, de, en\".  <placeholder type=\"programlisting\" id=\"0\"/>"
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:245
++#: apt.conf.5.xml:253
  msgid ""
  "The <literal>Acquire</literal> group of options controls the download of "
  "packages and the URI handlers.  <placeholder type=\"variablelist\" id=\"0\"/>"
@@@ -6573,12 -6666,12 +6831,12 @@@ msgstr "
  "e os manipuladores de URI. <placeholder type=\"variablelist\" id=\"0\"/>"
  
  #. type: Content of: <refentry><refsect1><title>
--#: apt.conf.5.xml:487
++#: apt.conf.5.xml:504
  msgid "Directories"
  msgstr "Directories"
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:489
++#: apt.conf.5.xml:506
  msgid ""
  "The <literal>Dir::State</literal> section has directories that pertain to "
  "local state information. <literal>lists</literal> is the directory to place "
@@@ -6597,7 -6690,7 +6855,7 @@@ msgstr "
  "com <filename>/</filename> ou <filename>./</filename>."
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:496
++#: apt.conf.5.xml:513
  msgid ""
  "<literal>Dir::Cache</literal> contains locations pertaining to local cache "
  "information, such as the two package caches <literal>srcpkgcache</literal> "
@@@ -6618,7 -6711,7 +6876,7 @@@ msgstr "
  "literal> o directório predefinido é contido em <literal>Dir::Cache</literal>"
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:505
++#: apt.conf.5.xml:522
  msgid ""
  "<literal>Dir::Etc</literal> contains the location of configuration files, "
  "<literal>sourcelist</literal> gives the location of the sourcelist and "
@@@ -6633,7 -6726,7 +6891,7 @@@ msgstr "
  "ficheiro de configuração especificado por <envar>APT_CONFIG</envar>)."
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:511
++#: apt.conf.5.xml:528
  msgid ""
  "The <literal>Dir::Parts</literal> setting reads in all the config fragments "
  "in lexical order from the directory specified. After this is done then the "
@@@ -6644,7 -6737,7 +6902,7 @@@ msgstr "
  "estar feito então é carregado o ficheiro de configuração principal."
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:515
++#: apt.conf.5.xml:532
  msgid ""
  "Binary programs are pointed to by <literal>Dir::Bin</literal>. <literal>Dir::"
  "Bin::Methods</literal> specifies the location of the method handlers and "
@@@ -6662,7 -6755,7 +6920,7 @@@ msgstr "
  "respectivos programas."
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:523
++#: apt.conf.5.xml:540
  msgid ""
  "The configuration item <literal>RootDir</literal> has a special meaning.  If "
  "set, all paths in <literal>Dir::</literal> will be relative to "
@@@ -6683,7 -6776,7 +6941,7 @@@ msgstr "
  "procurado em <filename>/tmp/staging/var/lib/dpkg/status</filename>."
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:536
++#: apt.conf.5.xml:553
  msgid ""
  "The <literal>Ignore-Files-Silently</literal> list can be used to specify "
  "which files APT should silently ignore while parsing the files in the "
@@@ -6701,12 -6794,12 +6959,12 @@@ msgstr "
  "expressão regular."
  
  #. type: Content of: <refentry><refsect1><title>
--#: apt.conf.5.xml:545
++#: apt.conf.5.xml:562
  msgid "APT in DSelect"
  msgstr "APT em DSelect"
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:547
++#: apt.conf.5.xml:564
  msgid ""
  "When APT is used as a &dselect; method several configuration directives "
  "control the default behaviour. These are in the <literal>DSelect</literal> "
@@@ -6717,12 -6810,12 +6975,12 @@@ msgstr "
  "<literal>DSelect</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:551
++#: apt.conf.5.xml:568
  msgid "Clean"
  msgstr "Clean"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:552
++#: apt.conf.5.xml:569
  msgid ""
  "Cache Clean mode; this value may be one of always, prompt, auto, pre-auto "
  "and never.  always and prompt will remove all packages from the cache after "
@@@ -6739,7 -6832,7 +6997,7 @@@ msgstr "
  "descarregar novos pacotes."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:561
++#: apt.conf.5.xml:578
  msgid ""
  "The contents of this variable is passed to &apt-get; as command line options "
  "when it is run for the install phase."
@@@ -6748,12 -6841,12 +7006,12 @@@ msgstr "
  "comandos quando é corrido para a fase de instalação."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:565
++#: apt.conf.5.xml:582
  msgid "Updateoptions"
  msgstr "Updateoptions"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:566
++#: apt.conf.5.xml:583
  msgid ""
  "The contents of this variable is passed to &apt-get; as command line options "
  "when it is run for the update phase."
@@@ -6762,12 -6855,12 +7020,12 @@@ msgstr "
  "comandos quando é executado para a fase de actualização."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:570
++#: apt.conf.5.xml:587
  msgid "PromptAfterUpdate"
  msgstr "PromptAfterUpdate"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:571
++#: apt.conf.5.xml:588
  msgid ""
  "If true the [U]pdate operation in &dselect; will always prompt to continue.  "
  "The default is to prompt only on error."
@@@ -6776,12 -6869,12 +7034,12 @@@ msgstr "
  "continuar. A predefinição é avisar apenas em caso de erro."
  
  #. type: Content of: <refentry><refsect1><title>
--#: apt.conf.5.xml:577
++#: apt.conf.5.xml:594
  msgid "How APT calls dpkg"
  msgstr "Como o APT chama o dpkg"
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:578
++#: apt.conf.5.xml:595
  msgid ""
  "Several configuration directives control how APT invokes &dpkg;. These are "
  "in the <literal>DPkg</literal> section."
@@@ -6790,7 -6883,7 +7048,7 @@@ msgstr "
  "&dpkg;. Estas estão na secção <literal>DPkg</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:583
++#: apt.conf.5.xml:600
  msgid ""
  "This is a list of options to pass to dpkg. The options must be specified "
  "using the list notation and each list item is passed as a single argument to "
@@@ -6801,17 -6894,17 +7059,17 @@@ msgstr "
  "um argumento único ao &dpkg;."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:588
++#: apt.conf.5.xml:605
  msgid "Pre-Invoke"
  msgstr "Pre-Invoke"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:588
++#: apt.conf.5.xml:605
  msgid "Post-Invoke"
  msgstr "Post-Invoke"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:589
++#: apt.conf.5.xml:606
  msgid ""
  "This is a list of shell commands to run before/after invoking &dpkg;.  Like "
  "<literal>options</literal> this must be specified in list notation. The "
@@@ -6824,12 -6917,12 +7082,12 @@@ msgstr "
  "bin/sh</filename>, caso algum deles falhe, o APT irá abortar."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:595
++#: apt.conf.5.xml:612
  msgid "Pre-Install-Pkgs"
  msgstr "Pre-Install-Pkgs"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:596
++#: apt.conf.5.xml:613
  msgid ""
  "This is a list of shell commands to run before invoking dpkg. Like "
  "<literal>options</literal> this must be specified in list notation. The "
@@@ -6845,7 -6938,7 +7103,7 @@@ msgstr "
  "deb que vai instalar, um por cada linha."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:602
++#: apt.conf.5.xml:619
  msgid ""
  "Version 2 of this protocol dumps more information, including the protocol "
  "version, the APT configuration space and the packages, files and versions "
@@@ -6860,12 -6953,12 +7118,12 @@@ msgstr "
  "dado ao <literal>Pre-Install-Pkgs</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:609
++#: apt.conf.5.xml:626
  msgid "Run-Directory"
  msgstr "Run-Directory"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:610
++#: apt.conf.5.xml:627
  msgid ""
  "APT chdirs to this directory before invoking dpkg, the default is <filename>/"
  "</filename>."
@@@ -6874,12 -6967,12 +7132,12 @@@ msgstr "
  "predefinição é <filename>/</filename>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:614
++#: apt.conf.5.xml:631
  msgid "Build-options"
  msgstr "Build-options"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:615
++#: apt.conf.5.xml:632
  msgid ""
  "These options are passed to &dpkg-buildpackage; when compiling packages, the "
  "default is to disable signing and produce all binaries."
@@@ -6888,12 -6981,12 +7146,12 @@@ msgstr "
  "predefinição é desactivar a assinatura e produzir todos os binários."
  
  #. type: Content of: <refentry><refsect1><refsect2><title>
--#: apt.conf.5.xml:620
++#: apt.conf.5.xml:637
  msgid "dpkg trigger usage (and related options)"
  msgstr "Utilização trigger do dpkg (e opções relacionadas)"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
--#: apt.conf.5.xml:621
++#: apt.conf.5.xml:638
  #, fuzzy
  #| msgid ""
  #| "APT can call dpkg in a way so it can make aggressive use of triggers over "
@@@ -6932,7 -7025,7 +7190,7 @@@ msgstr "
  "todos os pacotes."
  
  #. type: Content of: <refentry><refsect1><refsect2><para><literallayout>
--#: apt.conf.5.xml:636
++#: apt.conf.5.xml:653
  #, no-wrap
  msgid ""
  "DPkg::NoTriggers \"true\";\n"
@@@ -6946,7 -7039,7 +7204,7 @@@ msgstr "
  "DPkg::TriggersPending \"true\";"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
--#: apt.conf.5.xml:630
++#: apt.conf.5.xml:647
  msgid ""
  "Note that it is not guaranteed that APT will support these options or that "
  "these options will not cause (big) trouble in the future. If you have "
@@@ -6970,12 -7063,12 +7228,12 @@@ msgstr "
  "\"0\"/>"
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
--#: apt.conf.5.xml:642
++#: apt.conf.5.xml:659
  msgid "DPkg::NoTriggers"
  msgstr "DPkg::NoTriggers"
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:643
++#: apt.conf.5.xml:660
  msgid ""
  "Add the no triggers flag to all dpkg calls (except the ConfigurePending "
  "call).  See &dpkg; if you are interested in what this actually means. In "
@@@ -6996,12 -7089,12 +7254,12 @@@ msgstr "
  "chamadas unpack e remove."
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
--#: apt.conf.5.xml:650
++#: apt.conf.5.xml:667
  msgid "PackageManager::Configure"
  msgstr "PackageManager::Configure"
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:651
++#: apt.conf.5.xml:668
  msgid ""
  "Valid values are \"<literal>all</literal>\", \"<literal>smart</literal>\" "
  "and \"<literal>no</literal>\".  \"<literal>all</literal>\" is the default "
@@@ -7029,12 -7122,12 +7287,12 @@@ msgstr "
  "poderia não arrancar!"
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
--#: apt.conf.5.xml:661
++#: apt.conf.5.xml:678
  msgid "DPkg::ConfigurePending"
  msgstr "DPkg::ConfigurePending"
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:662
++#: apt.conf.5.xml:679
  msgid ""
  "If this option is set apt will call <command>dpkg --configure --pending</"
  "command> to let dpkg handle all required configurations and triggers. This "
@@@ -7052,12 -7145,12 +7310,12 @@@ msgstr "
  "esta opção em todas excepto na última execução."
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
--#: apt.conf.5.xml:668
++#: apt.conf.5.xml:685
  msgid "DPkg::TriggersPending"
  msgstr "DPkg::TriggersPending"
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:669
++#: apt.conf.5.xml:686
  msgid ""
  "Useful for <literal>smart</literal> configuration as a package which has "
  "pending triggers is not considered as <literal>installed</literal> and dpkg "
@@@ -7073,12 -7166,12 +7331,12 @@@ msgstr "
  "configurar este pacote."
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
--#: apt.conf.5.xml:674
++#: apt.conf.5.xml:691
  msgid "PackageManager::UnpackAll"
  msgstr "PackageManager::UnpackAll"
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:675
++#: apt.conf.5.xml:692
  msgid ""
  "As the configuration can be deferred to be done at the end by dpkg it can be "
  "tried to order the unpack series only by critical needs, e.g. by Pre-"
@@@ -7097,12 -7190,12 +7355,12 @@@ msgstr "
  "experimental e necessita de mais melhorias antes de se tornar realmente útil."
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
--#: apt.conf.5.xml:682
++#: apt.conf.5.xml:699
  msgid "OrderList::Score::Immediate"
  msgstr "OrderList::Score::Immediate"
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para><literallayout>
--#: apt.conf.5.xml:690
++#: apt.conf.5.xml:707
  #, no-wrap
  msgid ""
  "OrderList::Score {\n"
@@@ -7120,7 -7213,7 +7378,7 @@@ msgstr "
  "};"
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:683
++#: apt.conf.5.xml:700
  msgid ""
  "Essential packages (and there dependencies) should be configured immediately "
  "after unpacking. It will be a good idea to do this quite early in the "
@@@ -7144,12 -7237,12 +7402,12 @@@ msgstr "
  "predefinidos. <placeholder type=\"literallayout\" id=\"0\"/>"
  
  #. type: Content of: <refentry><refsect1><title>
--#: apt.conf.5.xml:703
++#: apt.conf.5.xml:720
  msgid "Periodic and Archives options"
  msgstr "Opções Periodic e Archives"
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:704
++#: apt.conf.5.xml:721
  msgid ""
  "<literal>APT::Periodic</literal> and <literal>APT::Archives</literal> groups "
  "of options configure behavior of apt periodic updates, which is done by "
@@@ -7162,12 -7255,12 +7420,12 @@@ msgstr "
  "Veja o cabeçalho deste script para uma breve documentação das suas opções."
  
  #. type: Content of: <refentry><refsect1><title>
--#: apt.conf.5.xml:712
++#: apt.conf.5.xml:729
  msgid "Debug options"
  msgstr "Opções de depuração"
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:714
++#: apt.conf.5.xml:731
  msgid ""
  "Enabling options in the <literal>Debug::</literal> section will cause "
  "debugging information to be sent to the standard error stream of the program "
@@@ -7184,7 -7277,7 +7442,7 @@@ msgstr "
  "interesse para o utilizador normal, mas algumas podem ter:"
  
  #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
--#: apt.conf.5.xml:725
++#: apt.conf.5.xml:742
  msgid ""
  "<literal>Debug::pkgProblemResolver</literal> enables output about the "
  "decisions made by <literal>dist-upgrade, upgrade, install, remove, purge</"
@@@ -7195,7 -7288,7 +7453,7 @@@ msgstr "
  "remove, purge</literal>."
  
  #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
--#: apt.conf.5.xml:733
++#: apt.conf.5.xml:750
  msgid ""
  "<literal>Debug::NoLocking</literal> disables all file locking.  This can be "
  "used to run some operations (for instance, <literal>apt-get -s install</"
@@@ -7206,7 -7299,7 +7464,7 @@@ msgstr "
  "<literal>apt-get -s install</literal>) como um utilizador não root."
  
  #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
--#: apt.conf.5.xml:742
++#: apt.conf.5.xml:759
  msgid ""
  "<literal>Debug::pkgDPkgPM</literal> prints out the actual command line each "
  "time that <literal>apt</literal> invokes &dpkg;."
@@@ -7218,7 -7311,7 +7476,7 @@@ msgstr "
  #.       motivating example, except I haven't a clue why you'd want
  #.       to do this. 
  #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
--#: apt.conf.5.xml:750
++#: apt.conf.5.xml:767
  msgid ""
  "<literal>Debug::IdentCdrom</literal> disables the inclusion of statfs data "
  "in CDROM IDs."
@@@ -7227,17 -7320,17 +7485,17 @@@ msgstr "
  "IDs de CDROM."
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:760
++#: apt.conf.5.xml:777
  msgid "A full list of debugging options to apt follows."
  msgstr "Segue-se uma lista completa de opções de depuração para o apt."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:765
++#: apt.conf.5.xml:782
  msgid "<literal>Debug::Acquire::cdrom</literal>"
  msgstr "<literal>Debug::Acquire::cdrom</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:769
++#: apt.conf.5.xml:786
  msgid ""
  "Print information related to accessing <literal>cdrom://</literal> sources."
  msgstr ""
  "literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:776
++#: apt.conf.5.xml:793
  msgid "<literal>Debug::Acquire::ftp</literal>"
  msgstr "<literal>Debug::Acquire::ftp</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:780
++#: apt.conf.5.xml:797
  msgid "Print information related to downloading packages using FTP."
  msgstr ""
  "Escreve informação relacionada com o descarregamento de pacotes usando FTP."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:787
++#: apt.conf.5.xml:804
  msgid "<literal>Debug::Acquire::http</literal>"
  msgstr "<literal>Debug::Acquire::http</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:791
++#: apt.conf.5.xml:808
  msgid "Print information related to downloading packages using HTTP."
  msgstr ""
  "Escreve informação relacionada com o descarregamento de pacotes usando HTTP."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:798
++#: apt.conf.5.xml:815
  msgid "<literal>Debug::Acquire::https</literal>"
  msgstr "<literal>Debug::Acquire::https</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:802
++#: apt.conf.5.xml:819
  msgid "Print information related to downloading packages using HTTPS."
  msgstr ""
  "Escreve informação relacionada com o descarregamento de pacotes usando HTTPS."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:809
++#: apt.conf.5.xml:826
  msgid "<literal>Debug::Acquire::gpgv</literal>"
  msgstr "<literal>Debug::Acquire::gpgv</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:813
++#: apt.conf.5.xml:830
  msgid ""
  "Print information related to verifying cryptographic signatures using "
  "<literal>gpg</literal>."
@@@ -7292,12 -7385,12 +7550,12 @@@ msgstr "
  "criptográficas usando <literal>gpg</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:820
++#: apt.conf.5.xml:837
  msgid "<literal>Debug::aptcdrom</literal>"
  msgstr "<literal>Debug::aptcdrom</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:824
++#: apt.conf.5.xml:841
  msgid ""
  "Output information about the process of accessing collections of packages "
  "stored on CD-ROMs."
@@@ -7306,23 -7399,23 +7564,23 @@@ msgstr "
  "armazenados em CD-ROMs."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:831
++#: apt.conf.5.xml:848
  msgid "<literal>Debug::BuildDeps</literal>"
  msgstr "<literal>Debug::BuildDeps</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:834
++#: apt.conf.5.xml:851
  msgid "Describes the process of resolving build-dependencies in &apt-get;."
  msgstr ""
  "Descreve os processos de resolver dependências de compilação no &apt-get;."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:841
++#: apt.conf.5.xml:858
  msgid "<literal>Debug::Hashes</literal>"
  msgstr "<literal>Debug::Hashes</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:844
++#: apt.conf.5.xml:861
  msgid ""
  "Output each cryptographic hash that is generated by the <literal>apt</"
  "literal> libraries."
@@@ -7331,12 -7424,12 +7589,12 @@@ msgstr "
  "<literal>apt</literal>."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:851
++#: apt.conf.5.xml:868
  msgid "<literal>Debug::IdentCDROM</literal>"
  msgstr "<literal>Debug::IdentCDROM</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:854
++#: apt.conf.5.xml:871
  msgid ""
  "Do not include information from <literal>statfs</literal>, namely the number "
  "of used and free blocks on the CD-ROM filesystem, when generating an ID for "
@@@ -7347,12 -7440,12 +7605,12 @@@ msgstr "
  "para um CD-ROM."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:862
++#: apt.conf.5.xml:879
  msgid "<literal>Debug::NoLocking</literal>"
  msgstr "<literal>Debug::NoLocking</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:865
++#: apt.conf.5.xml:882
  msgid ""
  "Disable all file locking.  For instance, this will allow two instances of "
  "<quote><literal>apt-get update</literal></quote> to run at the same time."
@@@ -7362,24 -7455,24 +7620,24 @@@ msgstr "
  "literal></quote> ao mesmo tempo."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:873
++#: apt.conf.5.xml:890
  msgid "<literal>Debug::pkgAcquire</literal>"
  msgstr "<literal>Debug::pkgAcquire</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:877
++#: apt.conf.5.xml:894
  msgid "Log when items are added to or removed from the global download queue."
  msgstr ""
  "Regista no log quando os items são adicionados ou removidos da fila de "
  "download global."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:884
++#: apt.conf.5.xml:901
  msgid "<literal>Debug::pkgAcquire::Auth</literal>"
  msgstr "<literal>Debug::pkgAcquire::Auth</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:887
++#: apt.conf.5.xml:904
  msgid ""
  "Output status messages and errors related to verifying checksums and "
  "cryptographic signatures of downloaded files."
@@@ -7388,12 -7481,12 +7646,12 @@@ msgstr "
  "checksums e assinaturas criptográficas dos ficheiros descarregados."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:894
++#: apt.conf.5.xml:911
  msgid "<literal>Debug::pkgAcquire::Diffs</literal>"
  msgstr "<literal>Debug::pkgAcquire::Diffs</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:897
++#: apt.conf.5.xml:914
  msgid ""
  "Output information about downloading and applying package index list diffs, "
  "and errors relating to package index list diffs."
@@@ -7403,12 -7496,12 +7661,12 @@@ msgstr "
  "pacote."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:905
++#: apt.conf.5.xml:922
  msgid "<literal>Debug::pkgAcquire::RRed</literal>"
  msgstr "<literal>Debug::pkgAcquire::RRed</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:909
++#: apt.conf.5.xml:926
  msgid ""
  "Output information related to patching apt package lists when downloading "
  "index diffs instead of full indices."
@@@ -7417,12 -7510,12 +7675,12 @@@ msgstr "
  "do apt quando se descarrega diffs de índice em vez de índices completos."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:916
++#: apt.conf.5.xml:933
  msgid "<literal>Debug::pkgAcquire::Worker</literal>"
  msgstr "<literal>Debug::pkgAcquire::Worker</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:920
++#: apt.conf.5.xml:937
  msgid ""
  "Log all interactions with the sub-processes that actually perform downloads."
  msgstr ""
  "downloads."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:927
++#: apt.conf.5.xml:944
  msgid "<literal>Debug::pkgAutoRemove</literal>"
  msgstr "<literal>Debug::pkgAutoRemove</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:931
++#: apt.conf.5.xml:948
  msgid ""
  "Log events related to the automatically-installed status of packages and to "
  "the removal of unused packages."
@@@ -7444,12 -7537,12 +7702,12 @@@ msgstr "
  "de pacotes e com a remoção de pacotes não utilizados."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:938
++#: apt.conf.5.xml:955
  msgid "<literal>Debug::pkgDepCache::AutoInstall</literal>"
  msgstr "<literal>Debug::pkgDepCache::AutoInstall</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:941
++#: apt.conf.5.xml:958
  msgid ""
  "Generate debug messages describing which packages are being automatically "
  "installed to resolve dependencies.  This corresponds to the initial auto-"
@@@ -7464,12 -7557,12 +7722,12 @@@ msgstr "
  "literal>; veja <literal>Debug::pkgProblemResolver</literal> para isso."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:952
++#: apt.conf.5.xml:969
  msgid "<literal>Debug::pkgDepCache::Marker</literal>"
  msgstr "<literal>Debug::pkgDepCache::Marker</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:955
++#: apt.conf.5.xml:972
  msgid ""
  "Generate debug messages describing which package is marked as keep/install/"
  "remove while the ProblemResolver does his work.  Each addition or deletion "
@@@ -7499,22 -7592,22 +7757,22 @@@ msgstr "
  "pacote aparece."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:974
++#: apt.conf.5.xml:991
  msgid "<literal>Debug::pkgInitConfig</literal>"
  msgstr "<literal>Debug::pkgInitConfig</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:977
++#: apt.conf.5.xml:994
  msgid "Dump the default configuration to standard error on startup."
  msgstr "Despeja a configuração predefinida para o erro standard no arranque."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:984
++#: apt.conf.5.xml:1001
  msgid "<literal>Debug::pkgDPkgPM</literal>"
  msgstr "<literal>Debug::pkgDPkgPM</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:987
++#: apt.conf.5.xml:1004
  msgid ""
  "When invoking &dpkg;, output the precise command line with which it is being "
  "invoked, with arguments separated by a single space character."
@@@ -7524,12 -7617,12 +7782,12 @@@ msgstr "
  "único."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:995
++#: apt.conf.5.xml:1012
  msgid "<literal>Debug::pkgDPkgProgressReporting</literal>"
  msgstr "<literal>Debug::pkgDPkgProgressReporting</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:998
++#: apt.conf.5.xml:1015
  msgid ""
  "Output all the data received from &dpkg; on the status file descriptor and "
  "any errors encountered while parsing it."
@@@ -7538,12 -7631,12 +7796,12 @@@ msgstr "
  "estado e quaisquer erros encontrados enquanto os analisa."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:1005
++#: apt.conf.5.xml:1022
  msgid "<literal>Debug::pkgOrderList</literal>"
  msgstr "<literal>Debug::pkgOrderList</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:1009
++#: apt.conf.5.xml:1026
  msgid ""
  "Generate a trace of the algorithm that decides the order in which "
  "<literal>apt</literal> should pass packages to &dpkg;."
@@@ -7552,12 -7645,12 +7810,12 @@@ msgstr "
  "literal> deve passar os pacotes ao &dpkg;."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:1017
++#: apt.conf.5.xml:1034
  msgid "<literal>Debug::pkgPackageManager</literal>"
  msgstr "<literal>Debug::pkgPackageManager</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:1021
++#: apt.conf.5.xml:1038
  msgid ""
  "Output status messages tracing the steps performed when invoking &dpkg;."
  msgstr ""
  "&dpkg;."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:1028
++#: apt.conf.5.xml:1045
  msgid "<literal>Debug::pkgPolicy</literal>"
  msgstr "<literal>Debug::pkgPolicy</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:1032
++#: apt.conf.5.xml:1049
  msgid "Output the priority of each package list on startup."
  msgstr "Escreve a prioridade da cada lista de pacote no arranque."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:1038
++#: apt.conf.5.xml:1055
  msgid "<literal>Debug::pkgProblemResolver</literal>"
  msgstr "<literal>Debug::pkgProblemResolver</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:1042
++#: apt.conf.5.xml:1059
  msgid ""
  "Trace the execution of the dependency resolver (this applies only to what "
  "happens when a complex dependency problem is encountered)."
@@@ -7589,12 -7682,12 +7847,12 @@@ msgstr "
  "acontece quando é encontrado um problema de dependências complexo)."
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:1050
++#: apt.conf.5.xml:1067
  msgid "<literal>Debug::pkgProblemResolver::ShowScores</literal>"
  msgstr "<literal>Debug::pkgProblemResolver::ShowScores</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:1053
++#: apt.conf.5.xml:1070
  msgid ""
  "Display a list of all installed packages with their calculated score used by "
  "the pkgProblemResolver. The description of the package is the same as "
@@@ -7605,12 -7698,12 +7863,12 @@@ msgstr "
  "mesma que é descrita em <literal>Debug::pkgDepCache::Marker</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:1061
++#: apt.conf.5.xml:1078
  msgid "<literal>Debug::sourceList</literal>"
  msgstr "<literal>Debug::sourceList</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:1065
++#: apt.conf.5.xml:1082
  msgid ""
  "Print information about the vendors read from <filename>/etc/apt/vendors."
  "list</filename>."
@@@ -7619,7 -7712,7 +7877,7 @@@ msgstr "
  "vendors.list</filename>."
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:1088
++#: apt.conf.5.xml:1105
  msgid ""
  "&configureindex; is a configuration file showing example values for all "
  "possible options."
@@@ -7628,13 -7721,13 +7886,13 @@@ msgstr "
  "para todas as opções possíveis."
  
  #. type: Content of: <refentry><refsect1><variablelist>
--#: apt.conf.5.xml:1095
++#: apt.conf.5.xml:1112
  msgid "&file-aptconf;"
  msgstr "&file-aptconf;"
  
  #.  ? reading apt.conf 
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:1100
++#: apt.conf.5.xml:1117
  msgid "&apt-cache;, &apt-config;, &apt-preferences;."
  msgstr "&apt-cache;, &apt-config;, &apt-preferences;."
  
@@@ -7743,8 -7836,8 +8001,8 @@@ msgstr "
  msgid ""
  "Note that the files in the <filename>/etc/apt/preferences.d</filename> "
  "directory are parsed in alphanumeric ascending order and need to obey the "
--"following naming convention: The files have no or \"<literal>pref</literal>"
--"\" as filename extension and which only contain alphanumeric, hyphen (-), "
++"following naming convention: The files have either no or \"<literal>pref</"
++"literal>\" as filename extension and only contain alphanumeric, hyphen (-), "
  "underscore (_) and period (.) characters.  Otherwise APT will print a notice "
  "that it has ignored a file if the file doesn't match a pattern in the "
  "<literal>Dir::Ignore-Files-Silently</literal> configuration list - in this "
@@@ -8200,17 -8293,84 +8458,84 @@@ msgstr "
  "Pin-Priority: 500\n"
  
  #. type: Content of: <refentry><refsect1><refsect2><title>
- #: apt_preferences.5.xml:263
+ #: apt_preferences.5.xml:262
+ msgid "Regular expressions and glob() syntax"
+ msgstr ""
+ #. type: Content of: <refentry><refsect1><refsect2><para>
+ #: apt_preferences.5.xml:264
+ msgid ""
+ "APT also supports pinning by glob() expressions and regular expressions "
+ "surrounded by /. For example, the following example assigns the priority 500 "
+ "to all packages from experimental where the name starts with gnome (as a glob"
 -"()-like expression or contains the word kde (as a POSIX extended regular "
++"()-like expression) or contains the word kde (as a POSIX extended regular "
+ "expression surrounded by slashes)."
+ msgstr ""
+ #. type: Content of: <refentry><refsect1><refsect2><programlisting>
+ #: apt_preferences.5.xml:273
+ #, fuzzy, no-wrap
+ #| msgid ""
+ #| "Package: *\n"
+ #| "Pin: release a=unstable\n"
+ #| "Pin-Priority: 50\n"
+ msgid ""
+ "Package: gnome* /kde/\n"
+ "Pin: release n=experimental\n"
+ "Pin-Priority: 500\n"
+ msgstr ""
+ "Package: *\n"
+ "Pin: release a=unstable\n"
+ "Pin-Priority: 50\n"
+ #. type: Content of: <refentry><refsect1><refsect2><para>
+ #: apt_preferences.5.xml:279
+ msgid ""
+ "The rule for those expressions is that they can occur anywhere where a "
 -"string can occur. Those, the following pin assigns the priority 990 to all "
++"string can occur. Thus, the following pin assigns the priority 990 to all "
+ "packages from a release starting with karmic."
+ msgstr ""
+ #. type: Content of: <refentry><refsect1><refsect2><programlisting>
+ #: apt_preferences.5.xml:285
+ #, fuzzy, no-wrap
+ #| msgid ""
+ #| "Package: *\n"
+ #| "Pin: release a=unstable\n"
+ #| "Pin-Priority: 50\n"
+ msgid ""
+ "Package: *\n"
+ "Pin: release n=karmic*\n"
+ "Pin-Priority: 990\n"
+ msgstr ""
+ "Package: *\n"
+ "Pin: release a=unstable\n"
+ "Pin-Priority: 50\n"
+ #. type: Content of: <refentry><refsect1><refsect2><literal>
+ #: apt_preferences.5.xml:290
+ #, fuzzy
+ #| msgid "Packages"
+ msgid "Package"
+ msgstr "Packages"
+ #. type: Content of: <refentry><refsect1><refsect2><literal>
+ #: apt_preferences.5.xml:296
+ msgid "*"
+ msgstr ""
+ #. type: Content of: <refentry><refsect1><refsect2><title>
+ #: apt_preferences.5.xml:306
  msgid "How APT Interprets Priorities"
  msgstr "Como o APT Interpreta as Prioridades"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:271
+ #: apt_preferences.5.xml:314
  msgid "P &gt; 1000"
  msgstr "P &gt; 1000"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:272
+ #: apt_preferences.5.xml:315
  msgid ""
  "causes a version to be installed even if this constitutes a downgrade of the "
  "package"
@@@ -8219,12 -8379,12 +8544,12 @@@ msgstr "
  "na versão do pacote (downgrade)"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:276
+ #: apt_preferences.5.xml:319
  msgid "990 &lt; P &lt;=1000"
  msgstr "990 &lt; P &lt;=1000"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:277
+ #: apt_preferences.5.xml:320
  msgid ""
  "causes a version to be installed even if it does not come from the target "
  "release, unless the installed version is more recent"
@@@ -8233,12 -8393,12 +8558,12 @@@ msgstr "
  "destino, a menos que a versão instalada seja mais recente"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:282
+ #: apt_preferences.5.xml:325
  msgid "500 &lt; P &lt;=990"
  msgstr "500 &lt; P &lt;=990"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:283
+ #: apt_preferences.5.xml:326
  msgid ""
  "causes a version to be installed unless there is a version available "
  "belonging to the target release or the installed version is more recent"
@@@ -8248,12 -8408,12 +8573,12 @@@ msgstr "
  "mais recente"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:288
+ #: apt_preferences.5.xml:331
  msgid "100 &lt; P &lt;=500"
  msgstr "100 &lt; P &lt;=500"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:289
+ #: apt_preferences.5.xml:332
  msgid ""
  "causes a version to be installed unless there is a version available "
  "belonging to some other distribution or the installed version is more recent"
@@@ -8263,12 -8423,12 +8588,12 @@@ msgstr "
  "recente"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:294
+ #: apt_preferences.5.xml:337
  msgid "0 &lt; P &lt;=100"
  msgstr "0 &lt; P &lt;=100"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:295
+ #: apt_preferences.5.xml:338
  msgid ""
  "causes a version to be installed only if there is no installed version of "
  "the package"
@@@ -8277,17 -8437,17 +8602,17 @@@ msgstr "
  "instalada do pacote"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:299
+ #: apt_preferences.5.xml:342
  msgid "P &lt; 0"
  msgstr "P &lt; 0"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:300
+ #: apt_preferences.5.xml:343
  msgid "prevents the version from being installed"
  msgstr "previne a instalação da versão"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:266
+ #: apt_preferences.5.xml:309
  msgid ""
  "Priorities (P) assigned in the APT preferences file must be positive or "
  "negative integers.  They are interpreted as follows (roughly speaking): "
@@@ -8298,7 -8458,7 +8623,7 @@@ msgstr "
  "(falando grosso): <placeholder type=\"variablelist\" id=\"0\"/>"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:305
+ #: apt_preferences.5.xml:348
  msgid ""
  "If any specific-form records match an available package version then the "
  "first such record determines the priority of the package version.  Failing "
@@@ -8312,7 -8472,7 +8637,7 @@@ msgstr "
  "determina a prioridade da versão de pacote."
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:311
+ #: apt_preferences.5.xml:354
  msgid ""
  "For example, suppose the APT preferences file contains the three records "
  "presented earlier:"
@@@ -8321,7 -8481,7 +8646,7 @@@ msgstr "
  "registos apresentados atrás:"
  
  #. type: Content of: <refentry><refsect1><refsect2><programlisting>
- #: apt_preferences.5.xml:315
+ #: apt_preferences.5.xml:358
  #, no-wrap
  msgid ""
  "Package: perl\n"
@@@ -8349,12 -8509,12 +8674,12 @@@ msgstr "
  "Pin-Priority: 50\n"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:328
+ #: apt_preferences.5.xml:371
  msgid "Then:"
  msgstr "Então:"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
- #: apt_preferences.5.xml:330
+ #: apt_preferences.5.xml:373
  msgid ""
  "The most recent available version of the <literal>perl</literal> package "
  "will be installed, so long as that version's version number begins with "
@@@ -8369,7 -8529,7 +8694,7 @@@ msgstr "
  "downgrade ao <literal>perl</literal>."
  
  #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
- #: apt_preferences.5.xml:335
+ #: apt_preferences.5.xml:378
  msgid ""
  "A version of any package other than <literal>perl</literal> that is "
  "available from the local system has priority over other versions, even "
@@@ -8380,7 -8540,7 +8705,7 @@@ msgstr "
  "versões, mesmo versões que pertencem ao lançamento de destino."
  
  #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
- #: apt_preferences.5.xml:339
+ #: apt_preferences.5.xml:382
  msgid ""
  "A version of a package whose origin is not the local system but some other "
  "site listed in &sources-list; and which belongs to an <literal>unstable</"
@@@ -8393,12 -8553,12 +8718,12 @@@ msgstr "
  "instalação e se nenhuma versão do pacote já estiver instalada."
  
  #. type: Content of: <refentry><refsect1><refsect2><title>
- #: apt_preferences.5.xml:349
+ #: apt_preferences.5.xml:392
  msgid "Determination of Package Version and Distribution Properties"
  msgstr "Determinação da Versão do Pacote e Propriedades da Distribuição"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:351
+ #: apt_preferences.5.xml:394
  msgid ""
  "The locations listed in the &sources-list; file should provide "
  "<filename>Packages</filename> and <filename>Release</filename> files to "
@@@ -8409,27 -8569,27 +8734,27 @@@ msgstr "
  "descrever os pacotes disponíveis nessa localização."
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:363
+ #: apt_preferences.5.xml:406
  msgid "the <literal>Package:</literal> line"
  msgstr "a linha <literal>Package:</literal>"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:364
+ #: apt_preferences.5.xml:407
  msgid "gives the package name"
  msgstr "fornece o nome do pacote"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:367 apt_preferences.5.xml:417
+ #: apt_preferences.5.xml:410 apt_preferences.5.xml:460
  msgid "the <literal>Version:</literal> line"
  msgstr "a linha <literal>Version:</literal>"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:368
+ #: apt_preferences.5.xml:411
  msgid "gives the version number for the named package"
  msgstr "fornece o número de versão do pacote nomeado"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:355
+ #: apt_preferences.5.xml:398
  msgid ""
  "The <filename>Packages</filename> file is normally found in the directory "
  "<filename>.../dists/<replaceable>dist-name</replaceable>/"
@@@ -8450,12 -8610,12 +8775,12 @@@ msgstr "
  "definir prioridades do APT: <placeholder type=\"variablelist\" id=\"0\"/>"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:384
+ #: apt_preferences.5.xml:427
  msgid "the <literal>Archive:</literal> or <literal>Suite:</literal> line"
  msgstr "a linha <literal>Archive:</literal> ou <literal>Suite:</literal>"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:385
+ #: apt_preferences.5.xml:428
  msgid ""
  "names the archive to which all the packages in the directory tree belong.  "
  "For example, the line \"Archive: stable\" or \"Suite: stable\" specifies "
@@@ -8472,18 -8632,18 +8797,18 @@@ msgstr "
  "requerer a linha:"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
- #: apt_preferences.5.xml:395
+ #: apt_preferences.5.xml:438
  #, no-wrap
  msgid "Pin: release a=stable\n"
  msgstr "Pin: release a=stable\n"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:401
+ #: apt_preferences.5.xml:444
  msgid "the <literal>Codename:</literal> line"
  msgstr "a linha <literal>Codename:</literal>"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:402
+ #: apt_preferences.5.xml:445
  msgid ""
  "names the codename to which all the packages in the directory tree belong.  "
  "For example, the line \"Codename: &testing-codename;\" specifies that all of "
@@@ -8500,13 -8660,13 +8825,13 @@@ msgstr "
  "preferências do APT requer a linha:"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
- #: apt_preferences.5.xml:411
+ #: apt_preferences.5.xml:454
  #, no-wrap
  msgid "Pin: release n=&testing-codename;\n"
  msgstr "Pin: release n=&testing-codename;\n"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:418
+ #: apt_preferences.5.xml:461
  msgid ""
  "names the release version.  For example, the packages in the tree might "
  "belong to Debian GNU/Linux release version 3.0.  Note that there is normally "
@@@ -8522,7 -8682,7 +8847,7 @@@ msgstr "
  "seguintes linhas:"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
- #: apt_preferences.5.xml:427
+ #: apt_preferences.5.xml:470
  #, no-wrap
  msgid ""
  "Pin: release v=3.0\n"
@@@ -8534,12 -8694,12 +8859,12 @@@ msgstr "
  "Pin: release 3.0\n"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:436
+ #: apt_preferences.5.xml:479
  msgid "the <literal>Component:</literal> line"
  msgstr "a linha <literal>Component:</literal>"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:437
+ #: apt_preferences.5.xml:480
  msgid ""
  "names the licensing component associated with the packages in the directory "
  "tree of the <filename>Release</filename> file.  For example, the line "
@@@ -8557,18 -8717,18 +8882,18 @@@ msgstr "
  "a linha:"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
- #: apt_preferences.5.xml:446
+ #: apt_preferences.5.xml:489
  #, no-wrap
  msgid "Pin: release c=main\n"
  msgstr "Pin: release c=main\n"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:452
+ #: apt_preferences.5.xml:495
  msgid "the <literal>Origin:</literal> line"
  msgstr "a linha <literal>Origin:</literal>"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:453
+ #: apt_preferences.5.xml:496
  msgid ""
  "names the originator of the packages in the directory tree of the "
  "<filename>Release</filename> file.  Most commonly, this is <literal>Debian</"
@@@ -8581,18 -8741,18 +8906,18 @@@ msgstr "
  "linha:"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
- #: apt_preferences.5.xml:459
+ #: apt_preferences.5.xml:502
  #, no-wrap
  msgid "Pin: release o=Debian\n"
  msgstr "Pin: release o=Debian\n"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:465
+ #: apt_preferences.5.xml:508
  msgid "the <literal>Label:</literal> line"
  msgstr "a linha <literal>Label:</literal>"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:466
+ #: apt_preferences.5.xml:509
  msgid ""
  "names the label of the packages in the directory tree of the "
  "<filename>Release</filename> file.  Most commonly, this is <literal>Debian</"
@@@ -8605,13 -8765,13 +8930,13 @@@ msgstr "
  "linha:"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
- #: apt_preferences.5.xml:472
+ #: apt_preferences.5.xml:515
  #, no-wrap
  msgid "Pin: release l=Debian\n"
  msgstr "Pin: release l=Debian\n"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:373
+ #: apt_preferences.5.xml:416
  msgid ""
  "The <filename>Release</filename> file is normally found in the directory "
  "<filename>.../dists/<replaceable>dist-name</replaceable></filename>: for "
@@@ -8634,7 -8794,7 +8959,7 @@@ msgstr "
  "APT: <placeholder type=\"variablelist\" id=\"0\"/>"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:479
+ #: apt_preferences.5.xml:522
  msgid ""
  "All of the <filename>Packages</filename> and <filename>Release</filename> "
  "files retrieved from locations listed in the &sources-list; file are stored "
@@@ -8659,12 -8819,12 +8984,12 @@@ msgstr "
  "literal> da distribuição <literal>unstable</literal>."
  
  #. type: Content of: <refentry><refsect1><refsect2><title>
- #: apt_preferences.5.xml:492
+ #: apt_preferences.5.xml:535
  msgid "Optional Lines in an APT Preferences Record"
  msgstr "Linhas Opcionais num Registo de Preferências do APT"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:494
+ #: apt_preferences.5.xml:537
  msgid ""
  "Each record in the APT preferences file can optionally begin with one or "
  "more lines beginning with the word <literal>Explanation:</literal>.  This "
@@@ -8675,12 -8835,12 +9000,12 @@@ msgstr "
  "literal>. Isto disponibiliza um espaço para comentários."
  
  #. type: Content of: <refentry><refsect1><refsect2><title>
- #: apt_preferences.5.xml:503
+ #: apt_preferences.5.xml:546
  msgid "Tracking Stable"
  msgstr "Acompanhando Stable"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
- #: apt_preferences.5.xml:511
+ #: apt_preferences.5.xml:554
  #, no-wrap
  msgid ""
  "Explanation: Uninstall or do not install any Debian-originated\n"
@@@ -8704,7 -8864,7 +9029,7 @@@ msgstr "
  "Pin-Priority: -10\n"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:505
+ #: apt_preferences.5.xml:548
  msgid ""
  "The following APT preferences file will cause APT to assign a priority "
  "higher than the default (500) to all package versions belonging to a "
@@@ -8720,8 -8880,8 +9045,8 @@@ msgstr "
  "\" id=\"0\"/>"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
- #: apt_preferences.5.xml:528 apt_preferences.5.xml:574
- #: apt_preferences.5.xml:632
+ #: apt_preferences.5.xml:571 apt_preferences.5.xml:617
+ #: apt_preferences.5.xml:675
  #, no-wrap
  msgid ""
  "apt-get install <replaceable>package-name</replaceable>\n"
@@@ -8733,7 -8893,7 +9058,7 @@@ msgstr "
  "apt-get dist-upgrade\n"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:523
+ #: apt_preferences.5.xml:566
  msgid ""
  "With a suitable &sources-list; file and the above preferences file, any of "
  "the following commands will cause APT to upgrade to the latest "
@@@ -8746,13 -8906,13 +9071,13 @@@ msgstr "
  "\"programlisting\" id=\"0\"/>"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
- #: apt_preferences.5.xml:540
+ #: apt_preferences.5.xml:583
  #, no-wrap
  msgid "apt-get install <replaceable>package</replaceable>/testing\n"
  msgstr "apt-get install <replaceable>pacote</replaceable>/testing\n"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:534
+ #: apt_preferences.5.xml:577
  msgid ""
  "The following command will cause APT to upgrade the specified package to the "
  "latest version from the <literal>testing</literal> distribution; the package "
@@@ -8765,12 -8925,12 +9090,12 @@@ msgstr "
  "outra vez. <placeholder type=\"programlisting\" id=\"0\"/>"
  
  #. type: Content of: <refentry><refsect1><refsect2><title>
- #: apt_preferences.5.xml:546
+ #: apt_preferences.5.xml:589
  msgid "Tracking Testing or Unstable"
  msgstr "Acompanhando Testing ou Unstable"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
- #: apt_preferences.5.xml:555
+ #: apt_preferences.5.xml:598
  #, no-wrap
  msgid ""
  "Package: *\n"
@@@ -8798,7 -8958,7 +9123,7 @@@ msgstr "
  "Pin-Priority: -10\n"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:548
+ #: apt_preferences.5.xml:591
  msgid ""
  "The following APT preferences file will cause APT to assign a high priority "
  "to package versions from the <literal>testing</literal> distribution, a "
@@@ -8815,7 -8975,7 +9140,7 @@@ msgstr "
  "<placeholder type=\"programlisting\" id=\"0\"/>"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:569
+ #: apt_preferences.5.xml:612
  msgid ""
  "With a suitable &sources-list; file and the above preferences file, any of "
  "the following commands will cause APT to upgrade to the latest "
@@@ -8828,13 -8988,13 +9153,13 @@@ msgstr "
  "\"programlisting\" id=\"0\"/>"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
- #: apt_preferences.5.xml:589
+ #: apt_preferences.5.xml:632
  #, no-wrap
  msgid "apt-get install <replaceable>package</replaceable>/unstable\n"
  msgstr "apt-get install <replaceable>pacote</replaceable>/unstable\n"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:580
+ #: apt_preferences.5.xml:623
  msgid ""
  "The following command will cause APT to upgrade the specified package to the "
  "latest version from the <literal>unstable</literal> distribution.  "
@@@ -8853,12 -9013,12 +9178,12 @@@ msgstr "
  "versão instalada. <placeholder type=\"programlisting\" id=\"0\"/>"
  
  #. type: Content of: <refentry><refsect1><refsect2><title>
- #: apt_preferences.5.xml:596
+ #: apt_preferences.5.xml:639
  msgid "Tracking the evolution of a codename release"
  msgstr "Acompanhando a evolução de um nome de código de lançamento"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
- #: apt_preferences.5.xml:610
+ #: apt_preferences.5.xml:653
  #, no-wrap
  msgid ""
  "Explanation: Uninstall or do not install any Debian-originated package versions\n"
@@@ -8892,7 -9052,7 +9217,7 @@@ msgstr "
  "Pin-Priority: -10\n"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:598
+ #: apt_preferences.5.xml:641
  msgid ""
  "The following APT preferences file will cause APT to assign a priority "
  "higher than the default (500) to all package versions belonging to a "
@@@ -8918,7 -9078,7 +9243,7 @@@ msgstr "
  "<placeholder type=\"programlisting\" id=\"0\"/>"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:627
+ #: apt_preferences.5.xml:670
  msgid ""
  "With a suitable &sources-list; file and the above preferences file, any of "
  "the following commands will cause APT to upgrade to the latest version(s) in "
@@@ -8931,13 -9091,13 +9256,13 @@@ msgstr "
  "codename;</literal>.  <placeholder type=\"programlisting\" id=\"0\"/>"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
- #: apt_preferences.5.xml:647
+ #: apt_preferences.5.xml:690
  #, no-wrap
  msgid "apt-get install <replaceable>package</replaceable>/sid\n"
  msgstr "apt-get install <replaceable>pacote</replaceable>/sid\n"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:638
+ #: apt_preferences.5.xml:681
  msgid ""
  "The following command will cause APT to upgrade the specified package to the "
  "latest version from the <literal>sid</literal> distribution.  Thereafter, "
@@@ -8956,12 -9116,12 +9281,12 @@@ msgstr "
  "instalada. <placeholder type=\"programlisting\" id=\"0\"/>"
  
  #. type: Content of: <refentry><refsect1><variablelist>
- #: apt_preferences.5.xml:656
+ #: apt_preferences.5.xml:699
  msgid "&file-preferences;"
  msgstr "&file-preferences;"
  
  #. type: Content of: <refentry><refsect1><para>
- #: apt_preferences.5.xml:662
+ #: apt_preferences.5.xml:705
  msgid "&apt-get; &apt-cache; &apt-conf; &sources-list;"
  msgstr "&apt-get; &apt-cache; &apt-conf; &sources-list;"
  
@@@ -9093,8 -9253,8 +9418,9 @@@ msgstr "
  
  #. type: Content of: <refentry><refsect1><literallayout>
  #: sources.list.5.xml:81
--#, no-wrap
--msgid "deb uri distribution [component1] [component2] [...]"
++#, fuzzy, no-wrap
++#| msgid "deb uri distribution [component1] [component2] [...]"
++msgid "deb [ options ] uri distribution [component1] [component2] [...]"
  msgstr "deb uri distribuição [componente1] [componente2] [...]"
  
  #. type: Content of: <refentry><refsect1><para>
@@@ -9165,6 -9325,6 +9491,38 @@@ msgstr "
  #. type: Content of: <refentry><refsect1><para>
  #: sources.list.5.xml:112
  msgid ""
++"<literal>options</literal> is always optional and needs to be surounded by "
++"square brackets. It can consist of multiple settings in the form "
++"<literal><replaceable>setting</replaceable>=<replaceable>value</"
++"replaceable></literal>.  Multiple settings are separated by spaces. The "
++"following settings are supported by APT, note through that unsupported "
++"settings will be ignored silently:"
++msgstr ""
++
++#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
++#: sources.list.5.xml:117
++msgid ""
++"<literal>arch=<replaceable>arch1</replaceable>,<replaceable>arch2</"
++"replaceable>,…</literal> can be used to specify for which architectures "
++"packages information should be downloaded. If this option is not set all "
++"architectures defined by the <literal>APT::Architectures</literal> option "
++"will be downloaded."
++msgstr ""
++
++#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
++#: sources.list.5.xml:121
++msgid ""
++"<literal>trusted=yes</literal> can be set to indicate that packages from "
++"this source are always authenificated even if the <filename>Release</"
++"filename> file is not signed or the signature can't be checked. This "
++"disables parts of &apt-secure; and should therefore only be used in a local "
++"and trusted context. <literal>trusted=no</literal> is the opposite which "
++"handles even correctly authenificated sources as not authenificated."
++msgstr ""
++
++#. type: Content of: <refentry><refsect1><para>
++#: sources.list.5.xml:128
++msgid ""
  "It is important to list sources in order of preference, with the most "
  "preferred source listed first. Typically this will result in sorting by "
  "speed from fastest to slowest (CD-ROM followed by hosts on a local network, "
@@@ -9177,12 -9337,12 +9535,12 @@@ msgstr "
  "Internet, por exemplo)."
  
  #. type: Content of: <refentry><refsect1><para>
--#: sources.list.5.xml:117
++#: sources.list.5.xml:133
  msgid "Some examples:"
  msgstr "Alguns exemplos:"
  
  #. type: Content of: <refentry><refsect1><literallayout>
--#: sources.list.5.xml:119
++#: sources.list.5.xml:135
  #, no-wrap
  msgid ""
  "deb http://ftp.debian.org/debian &stable-codename; main contrib non-free\n"
@@@ -9194,17 -9354,17 +9552,17 @@@ msgstr "
  "   "
  
  #. type: Content of: <refentry><refsect1><title>
--#: sources.list.5.xml:125
++#: sources.list.5.xml:141
  msgid "URI specification"
  msgstr "Especificação da URI"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: sources.list.5.xml:130
++#: sources.list.5.xml:146
  msgid "file"
  msgstr "file"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: sources.list.5.xml:132
++#: sources.list.5.xml:148
  msgid ""
  "The file scheme allows an arbitrary directory in the file system to be "
  "considered an archive. This is useful for NFS mounts and local mirrors or "
@@@ -9215,7 -9375,7 +9573,7 @@@ msgstr "
  "arquivos locais."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: sources.list.5.xml:139
++#: sources.list.5.xml:155
  msgid ""
  "The cdrom scheme allows APT to use a local CDROM drive with media swapping. "
  "Use the &apt-cdrom; program to create cdrom entries in the source list."
@@@ -9225,7 -9385,7 +9583,7 @@@ msgstr "
  "fontes."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: sources.list.5.xml:146
++#: sources.list.5.xml:162
  msgid ""
  "The http scheme specifies an HTTP server for the archive. If an environment "
  "variable <envar>http_proxy</envar> is set with the format http://server:"
@@@ -9242,7 -9402,7 +9600,7 @@@ msgstr "
  "método de autenticação seguro."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: sources.list.5.xml:157
++#: sources.list.5.xml:173
  msgid ""
  "The ftp scheme specifies an FTP server for the archive. APT's FTP behavior "
  "is highly configurable; for more information see the &apt-conf; manual page. "
@@@ -9261,12 -9421,12 +9619,12 @@@ msgstr "
  "especificados no ficheiro de configuração serão ignorados."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: sources.list.5.xml:166
++#: sources.list.5.xml:182
  msgid "copy"
  msgstr "copy"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: sources.list.5.xml:168
++#: sources.list.5.xml:184
  msgid ""
  "The copy scheme is identical to the file scheme except that packages are "
  "copied into the cache directory instead of used directly at their location.  "
@@@ -9278,17 -9438,17 +9636,17 @@@ msgstr "
  "com o APT."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: sources.list.5.xml:173
++#: sources.list.5.xml:189
  msgid "rsh"
  msgstr "rsh"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: sources.list.5.xml:173
++#: sources.list.5.xml:189
  msgid "ssh"
  msgstr "ssh"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: sources.list.5.xml:175
++#: sources.list.5.xml:191
  msgid ""
  "The rsh/ssh method invokes rsh/ssh to connect to a remote host as a given "
  "user and access the files. It is a good idea to do prior arrangements with "
@@@ -9303,12 -9463,12 +9661,12 @@@ msgstr "
  "para executar as transferências de ficheiros remotos."
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: sources.list.5.xml:183
++#: sources.list.5.xml:199
  msgid "more recognizable URI types"
  msgstr "tipos de URI mais reconhecíveis"
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: sources.list.5.xml:185
++#: sources.list.5.xml:201
  msgid ""
  "APT can be extended with more methods shipped in other optional packages "
  "which should follow the nameing scheme <literal>apt-transport-"
@@@ -9330,7 -9490,7 +9688,7 @@@ msgstr "
  "<manvolnum>1</manvolnum></citerefentry>."
  
  #. type: Content of: <refentry><refsect1><para>
--#: sources.list.5.xml:127
++#: sources.list.5.xml:143
  msgid ""
  "The currently recognized URI types are cdrom, file, http, ftp, copy, ssh, "
  "rsh.  <placeholder type=\"variablelist\" id=\"0\"/>"
@@@ -9339,7 -9499,7 +9697,7 @@@ msgstr "
  "ssh, rsh.  <placeholder type=\"variablelist\" id=\"0\"/>"
  
  #. type: Content of: <refentry><refsect1><para>
--#: sources.list.5.xml:199
++#: sources.list.5.xml:215
  msgid ""
  "Uses the archive stored locally (or NFS mounted) at /home/jason/debian for "
  "stable/main, stable/contrib, and stable/non-free."
@@@ -9348,36 -9508,36 +9706,59 @@@ msgstr "
  "para stable/main, stable/contrib, e stable/non-free."
  
  #. type: Content of: <refentry><refsect1><literallayout>
--#: sources.list.5.xml:201
++#: sources.list.5.xml:217
  #, no-wrap
  msgid "deb file:/home/jason/debian stable main contrib non-free"
  msgstr "deb file:/home/jason/debian stable main contrib non-free"
  
  #. type: Content of: <refentry><refsect1><para>
--#: sources.list.5.xml:203
++#: sources.list.5.xml:219
  msgid "As above, except this uses the unstable (development) distribution."
  msgstr ""
  "Como em cima, excepto que usa a distribuição unstable (de desenvolvimento)."
  
  #. type: Content of: <refentry><refsect1><literallayout>
--#: sources.list.5.xml:204
++#: sources.list.5.xml:220
  #, no-wrap
  msgid "deb file:/home/jason/debian unstable main contrib non-free"
  msgstr "deb file:/home/jason/debian unstable main contrib non-free"
  
  #. type: Content of: <refentry><refsect1><para>
--#: sources.list.5.xml:206
++#: sources.list.5.xml:222
  msgid "Source line for the above"
  msgstr "Linha de fonte para o referido acima"
  
  #. type: Content of: <refentry><refsect1><literallayout>
--#: sources.list.5.xml:207
++#: sources.list.5.xml:223
  #, no-wrap
  msgid "deb-src file:/home/jason/debian unstable main contrib non-free"
  msgstr "deb-src file:/home/jason/debian unstable main contrib non-free"
  
  #. type: Content of: <refentry><refsect1><para>
--#: sources.list.5.xml:209
++#: sources.list.5.xml:225
++msgid ""
++"The first line gets package information for the architectures in "
++"<literal>APT::Architectures</literal> while the second always retrieves "
++"<literal>amd64</literal> and <literal>armel</literal>."
++msgstr ""
++
++#. type: Content of: <refentry><refsect1><literallayout>
++#: sources.list.5.xml:227
++#, fuzzy, no-wrap
++#| msgid ""
++#| "deb http://ftp.debian.org/debian &stable-codename; main contrib non-free\n"
++#| "deb http://security.debian.org/ &stable-codename;/updates main contrib non-free\n"
++#| "   "
++msgid ""
++"deb http://ftp.debian.org/debian &stable-codename; main\n"
++"deb [ arch=amd64,armel ] http://ftp.debian.org/debian &stable-codename; main"
++msgstr ""
++"deb http://ftp.debian.org/debian &stable-codename; main contrib non-free\n"
++"deb http://security.debian.org/ &stable-codename;/updates main contrib non-free\n"
++"   "
++
++#. type: Content of: <refentry><refsect1><para>
++#: sources.list.5.xml:230
  msgid ""
  "Uses HTTP to access the archive at archive.debian.org, and uses only the "
  "hamm/main area."
@@@ -9386,13 -9546,13 +9767,13 @@@ msgstr "
  "hamm/main."
  
  #. type: Content of: <refentry><refsect1><literallayout>
--#: sources.list.5.xml:211
++#: sources.list.5.xml:232
  #, no-wrap
  msgid "deb http://archive.debian.org/debian-archive hamm main"
  msgstr "deb http://archive.debian.org/debian-archive hamm main"
  
  #. type: Content of: <refentry><refsect1><para>
--#: sources.list.5.xml:213
++#: sources.list.5.xml:234
  msgid ""
  "Uses FTP to access the archive at ftp.debian.org, under the debian "
  "directory, and uses only the &stable-codename;/contrib area."
@@@ -9401,13 -9561,13 +9782,13 @@@ msgstr "
  "usa apenas a área &stable-codename;/contrib."
  
  #. type: Content of: <refentry><refsect1><literallayout>
--#: sources.list.5.xml:215
++#: sources.list.5.xml:236
  #, no-wrap
  msgid "deb ftp://ftp.debian.org/debian &stable-codename; contrib"
  msgstr "deb ftp://ftp.debian.org/debian &stable-codename; contrib"
  
  #. type: Content of: <refentry><refsect1><para>
--#: sources.list.5.xml:217
++#: sources.list.5.xml:238
  msgid ""
  "Uses FTP to access the archive at ftp.debian.org, under the debian "
  "directory, and uses only the unstable/contrib area. If this line appears as "
@@@ -9420,20 -9580,20 +9801,20 @@@ msgstr "
  "uma única sessão FTP para ambas linhas de recurso."
  
  #. type: Content of: <refentry><refsect1><literallayout>
--#: sources.list.5.xml:221
++#: sources.list.5.xml:242
  #, no-wrap
  msgid "deb ftp://ftp.debian.org/debian unstable contrib"
  msgstr "deb ftp://ftp.debian.org/debian unstable contrib"
  
  #. type: Content of: <refentry><refsect1><para><literallayout>
--#: sources.list.5.xml:230
++#: sources.list.5.xml:251
  #, fuzzy, no-wrap
  #| msgid "deb http://ftp.de.debian.org/debian-non-US unstable/binary-$(ARCH)/"
  msgid "deb http://ftp.tlh.debian.org/universe unstable/binary-$(ARCH)/"
  msgstr "deb http://ftp.de.debian.org/debian-non-US unstable/binary-$(ARCH)/"
  
  #. type: Content of: <refentry><refsect1><para>
--#: sources.list.5.xml:223
++#: sources.list.5.xml:244
  #, fuzzy
  #| msgid ""
  #| "Uses HTTP to access the archive at nonus.debian.org, under the debian-non-"
@@@ -9461,7 -9621,7 +9842,7 @@@ msgstr "
  "\"0\"/>"
  
  #. type: Content of: <refentry><refsect1><para>
--#: sources.list.5.xml:235
++#: sources.list.5.xml:256
  msgid "&apt-cache; &apt-conf;"
  msgstr "&apt-cache; &apt-conf;"
  
@@@ -10978,18 -11138,39 +11359,46 @@@ msgstr "  # apt-get -o dir::cache::arch
  msgid "Which will use the already fetched archives on the disc."
  msgstr "O qual irá usar os arquivos já obtidos e que estão no disco."
  
 -#~ msgid "<option>--md5</option>"
 -#~ msgstr "<option>--md5</option>"
 -
+ #~ msgid ""
 -#~ "Generate MD5 sums. This defaults to on, when turned off the generated "
 -#~ "index files will not have MD5Sum fields where possible.  Configuration "
 -#~ "Item: <literal>APT::FTPArchive::MD5</literal>"
++#~ "Update the local keyring with the keyring of Debian archive keys and "
++#~ "removes from the keyring the archive keys which are no longer valid."
+ #~ msgstr ""
 -#~ "Gera sumários MD5. A predefinição é ligado, quando desligado os ficheiros "
 -#~ "índice gerados não terão campos MD5Sum onde possíveis. Item de "
 -#~ "Configuração: <literal>APT::FTPArchive::MD5</literal>"
++#~ "Actualiza o chaveiro local com o chaveiro das chaves de arquivos Debian e "
++#~ "remove do chaveiro as chaves de arquivo que já não são válidas."
+ #~ msgid "unmarkauto"
+ #~ msgstr "unmarkauto"
+ #~ msgid "<option>-h</option>"
+ #~ msgstr "<option>-h</option>"
+ #~ msgid "<option>--help</option>"
+ #~ msgstr "<option>--help</option>"
+ #~ msgid "Show a short usage summary."
+ #~ msgstr "Mostra um curto sumário de utilização."
+ #~ msgid "<option>-v</option>"
+ #~ msgstr "<option>-v</option>"
+ #~ msgid "<option>--version</option>"
+ #~ msgstr "<option>--version</option>"
+ #~ msgid "Show the program version."
+ #~ msgstr "Mostra a versão do programa."
 +#~ msgid "<option>--md5</option>"
 +#~ msgstr "<option>--md5</option>"
 +
 +#~ msgid ""
 +#~ "Generate MD5 sums. This defaults to on, when turned off the generated "
 +#~ "index files will not have MD5Sum fields where possible.  Configuration "
 +#~ "Item: <literal>APT::FTPArchive::MD5</literal>"
 +#~ msgstr ""
 +#~ "Gera sumários MD5. A predefinição é ligado, quando desligado os ficheiros "
 +#~ "índice gerados não terão campos MD5Sum onde possíveis. Item de "
 +#~ "Configuração: <literal>APT::FTPArchive::MD5</literal>"
 +
  #~ msgid "to the version that is already installed (if any)."
  #~ msgstr "para a versão que já está instalada (se alguma)."
  
diff --combined doc/po/pt_BR.po
index 5a8db4dd597682622fe37f6d50e52e4bda4eef14,488350186083f92dca43c1368009f02d5ffdb9ca..ba7ef6ac746f09f2ff21e13dd23fb130959a6fdb
@@@ -9,7 -9,7 +9,7 @@@
  msgid ""
  msgstr ""
  "Project-Id-Version: apt\n"
- "POT-Creation-Date: 2011-04-05 10:22+0300\n"
 -"POT-Creation-Date: 2011-06-08 16:54+0300\n"
++"POT-Creation-Date: 2011-11-10 16:42+0100\n"
  "PO-Revision-Date: 2004-09-20 17:02+0000\n"
  "Last-Translator: André Luís Lopes <andrelop@debian.org>\n"
  "Language-Team: <debian-l10n-portuguese@lists.debian.org>\n"
@@@ -577,8 -577,8 +577,8 @@@ msgstr "
  
  #. type: Content of: <refentry><refsect1><title>
  #: apt-cache.8.xml:64 apt-cdrom.8.xml:50 apt-config.8.xml:50
--#: apt-extracttemplates.1.xml:46 apt-ftparchive.1.xml:59 apt-get.8.xml:114
- #: apt-key.8.xml:38 apt-mark.8.xml:55 apt-secure.8.xml:43
++#: apt-extracttemplates.1.xml:46 apt-ftparchive.1.xml:59 apt-get.8.xml:121
+ #: apt-key.8.xml:38 apt-mark.8.xml:56 apt-secure.8.xml:43
  #: apt-sortpkgs.1.xml:47 apt.conf.5.xml:42 apt_preferences.5.xml:36
  #: sources.list.5.xml:36
  #, fuzzy
@@@ -595,7 -595,7 +595,7 @@@ msgid "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt-cache.8.xml:70 apt-get.8.xml:120
++#: apt-cache.8.xml:70 apt-get.8.xml:127
  msgid ""
  "Unless the <option>-h</option>, or <option>--help</option> option is given, "
  "one of the commands below must be present."
@@@ -963,8 -963,8 +963,8 @@@ msgstr "
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
  #: apt-cache.8.xml:278 apt-config.8.xml:96 apt-extracttemplates.1.xml:59
- #: apt-ftparchive.1.xml:525 apt-get.8.xml:331 apt-mark.8.xml:92
 -#: apt-ftparchive.1.xml:525 apt-get.8.xml:331 apt-mark.8.xml:126
--#: apt-sortpkgs.1.xml:57 apt.conf.5.xml:560 apt.conf.5.xml:582
++#: apt-ftparchive.1.xml:525 apt-get.8.xml:342 apt-mark.8.xml:126
++#: apt-sortpkgs.1.xml:57 apt.conf.5.xml:577 apt.conf.5.xml:599
  msgid "options"
  msgstr ""
  
@@@ -987,7 -987,7 +987,7 @@@ msgid "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-cache.8.xml:288 apt-ftparchive.1.xml:571 apt-get.8.xml:393
++#: apt-cache.8.xml:288 apt-ftparchive.1.xml:572 apt-get.8.xml:404
  #: apt-sortpkgs.1.xml:61
  msgid "<option>-s</option>"
  msgstr ""
@@@ -1008,12 -1008,12 +1008,12 @@@ msgid "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-cache.8.xml:296 apt-ftparchive.1.xml:545 apt-get.8.xml:383
++#: apt-cache.8.xml:296 apt-ftparchive.1.xml:546 apt-get.8.xml:394
  msgid "<option>-q</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-cache.8.xml:296 apt-ftparchive.1.xml:545 apt-get.8.xml:383
++#: apt-cache.8.xml:296 apt-ftparchive.1.xml:546 apt-get.8.xml:394
  msgid "<option>--quiet</option>"
  msgstr ""
  
@@@ -1088,14 -1088,14 +1088,14 @@@ msgstr "
  #: apt-cache.8.xml:317
  msgid ""
  "Per default the <literal>depends</literal> and <literal>rdepends</literal> "
--"print all dependencies. This can be twicked with these flags which will omit "
++"print all dependencies. This can be tweaked with these flags which will omit "
  "the specified dependency type.  Configuration Item: <literal>APT::Cache::"
  "Show<replaceable>DependencyType</replaceable></literal> e.g. <literal>APT::"
  "Cache::ShowRecommends</literal>."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-cache.8.xml:323 apt-cdrom.8.xml:124 apt-get.8.xml:350
++#: apt-cache.8.xml:323 apt-cdrom.8.xml:124 apt-get.8.xml:361
  msgid "<option>-f</option>"
  msgstr ""
  
@@@ -1112,7 -1112,7 +1112,8 @@@ msgid "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-cache.8.xml:328 apt-cdrom.8.xml:134 apt-ftparchive.1.xml:583
++#: apt-cache.8.xml:328 apt-cdrom.8.xml:134 apt-ftparchive.1.xml:584
++#: apt-get.8.xml:452
  msgid "<option>-a</option>"
  msgstr ""
  
@@@ -1208,14 -1208,14 +1209,14 @@@ msgstr "
  
  #. type: Content of: <refentry><refsect1><variablelist>
  #: apt-cache.8.xml:367 apt-cdrom.8.xml:153 apt-config.8.xml:101
--#: apt-extracttemplates.1.xml:70 apt-ftparchive.1.xml:611 apt-get.8.xml:570
- #: apt-sortpkgs.1.xml:67
++#: apt-extracttemplates.1.xml:70 apt-ftparchive.1.xml:612 apt-get.8.xml:596
+ #: apt-mark.8.xml:140 apt-sortpkgs.1.xml:67
  msgid "&apt-commonoptions;"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><title>
- #: apt-cache.8.xml:372 apt-get.8.xml:575 apt-key.8.xml:156 apt-mark.8.xml:125
- #: apt.conf.5.xml:1093 apt_preferences.5.xml:654
 -#: apt-cache.8.xml:372 apt-get.8.xml:575 apt-key.8.xml:172 apt-mark.8.xml:144
 -#: apt.conf.5.xml:1093 apt_preferences.5.xml:697
++#: apt-cache.8.xml:372 apt-get.8.xml:601 apt-key.8.xml:175 apt-mark.8.xml:144
++#: apt.conf.5.xml:1110 apt_preferences.5.xml:697
  msgid "Files"
  msgstr ""
  
@@@ -1226,10 -1226,10 +1227,10 @@@ msgstr "
  
  #. type: Content of: <refentry><refsect1><title>
  #: apt-cache.8.xml:379 apt-cdrom.8.xml:158 apt-config.8.xml:106
--#: apt-extracttemplates.1.xml:77 apt-ftparchive.1.xml:627 apt-get.8.xml:585
- #: apt-key.8.xml:177 apt-mark.8.xml:131 apt-secure.8.xml:185
- #: apt-sortpkgs.1.xml:72 apt.conf.5.xml:1099 apt_preferences.5.xml:661
 -#: apt-key.8.xml:193 apt-mark.8.xml:150 apt-secure.8.xml:185
 -#: apt-sortpkgs.1.xml:72 apt.conf.5.xml:1099 apt_preferences.5.xml:704
--#: sources.list.5.xml:234
++#: apt-extracttemplates.1.xml:77 apt-ftparchive.1.xml:628 apt-get.8.xml:611
++#: apt-key.8.xml:196 apt-mark.8.xml:150 apt-secure.8.xml:185
++#: apt-sortpkgs.1.xml:72 apt.conf.5.xml:1116 apt_preferences.5.xml:704
++#: sources.list.5.xml:255
  #, fuzzy
  msgid "See Also"
  msgstr "Consulte também"
@@@ -1241,8 -1241,8 +1242,8 @@@ msgstr "
  
  #. type: Content of: <refentry><refsect1><title>
  #: apt-cache.8.xml:384 apt-cdrom.8.xml:163 apt-config.8.xml:111
--#: apt-extracttemplates.1.xml:81 apt-ftparchive.1.xml:631 apt-get.8.xml:591
- #: apt-mark.8.xml:135 apt-sortpkgs.1.xml:76
++#: apt-extracttemplates.1.xml:81 apt-ftparchive.1.xml:632 apt-get.8.xml:617
+ #: apt-mark.8.xml:154 apt-sortpkgs.1.xml:76
  msgid "Diagnostics"
  msgstr ""
  
@@@ -1341,12 -1341,12 +1342,12 @@@ msgid "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><title>
- #: apt-cdrom.8.xml:94 apt-key.8.xml:142
 -#: apt-cdrom.8.xml:94 apt-key.8.xml:158
++#: apt-cdrom.8.xml:94 apt-key.8.xml:161
  msgid "Options"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-cdrom.8.xml:98 apt-ftparchive.1.xml:539 apt-get.8.xml:345
++#: apt-cdrom.8.xml:98 apt-ftparchive.1.xml:540 apt-get.8.xml:356
  msgid "<option>-d</option>"
  msgstr ""
  
@@@ -1382,7 -1382,7 +1383,7 @@@ msgid "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-cdrom.8.xml:116 apt-get.8.xml:364
++#: apt-cdrom.8.xml:116 apt-get.8.xml:375
  msgid "<option>-m</option>"
  msgstr ""
  
@@@ -1427,17 -1427,17 +1428,17 @@@ msgid "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-cdrom.8.xml:143 apt-get.8.xml:395
++#: apt-cdrom.8.xml:143 apt-get.8.xml:406
  msgid "<option>--just-print</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-cdrom.8.xml:144 apt-get.8.xml:397
++#: apt-cdrom.8.xml:144 apt-get.8.xml:408
  msgid "<option>--recon</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-cdrom.8.xml:145 apt-get.8.xml:398
++#: apt-cdrom.8.xml:145 apt-get.8.xml:409
  msgid "<option>--no-act</option>"
  msgstr ""
  
@@@ -1551,7 -1551,7 +1552,7 @@@ msgid "Just show the contents of the co
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt-config.8.xml:107 apt-extracttemplates.1.xml:78 apt-ftparchive.1.xml:628
++#: apt-config.8.xml:107 apt-extracttemplates.1.xml:78 apt-ftparchive.1.xml:629
  #: apt-sortpkgs.1.xml:73
  #, fuzzy
  msgid "&apt-conf;"
@@@ -1616,7 -1616,7 +1617,7 @@@ msgid "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-extracttemplates.1.xml:63 apt-get.8.xml:504
++#: apt-extracttemplates.1.xml:63 apt-get.8.xml:530
  msgid "<option>-t</option>"
  msgstr ""
  
@@@ -1817,7 -1817,7 +1818,7 @@@ msgid "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-ftparchive.1.xml:145 apt-get.8.xml:287
++#: apt-ftparchive.1.xml:145 apt-get.8.xml:298
  msgid "clean"
  msgstr ""
  
@@@ -2279,8 -2279,8 +2280,8 @@@ msgid "
  "free</literal>"
  msgstr ""
  
--#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
--#: apt-ftparchive.1.xml:394
++#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
++#: apt-ftparchive.1.xml:394 apt.conf.5.xml:157
  msgid "Architectures"
  msgstr ""
  
@@@ -2481,26 -2481,26 +2482,26 @@@ msgid "
  "Configuration Items: <literal>APT::FTPArchive::<replaceable>Checksum</"
  "replaceable></literal> and <literal>APT::FTPArchive::<replaceable>Index</"
  "replaceable>::<replaceable>Checksum</replaceable></literal> where "
--"<literal>Index</literal> can be <literal>Packages</literal>, "
--"<literal>Sources</literal> or <literal>Release</literal> and "
--"<literal>Checksum</literal> can be <literal>MD5</literal>, <literal>SHA1</"
--"literal> or <literal>SHA256</literal>."
++"<literal><replaceable>Index</replaceable></literal> can be "
++"<literal>Packages</literal>, <literal>Sources</literal> or <literal>Release</"
++"literal> and <literal><replaceable>Checksum</replaceable></literal> can be "
++"<literal>MD5</literal>, <literal>SHA1</literal> or <literal>SHA256</literal>."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-ftparchive.1.xml:539
++#: apt-ftparchive.1.xml:540
  msgid "<option>--db</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-ftparchive.1.xml:541
++#: apt-ftparchive.1.xml:542
  msgid ""
  "Use a binary caching DB. This has no effect on the generate command.  "
  "Configuration Item: <literal>APT::FTPArchive::DB</literal>."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-ftparchive.1.xml:547
++#: apt-ftparchive.1.xml:548
  msgid ""
  "Quiet; produces output suitable for logging, omitting progress indicators.  "
  "More q's will produce more quiet up to a maximum of 2. You can also use "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-ftparchive.1.xml:553
++#: apt-ftparchive.1.xml:554
  msgid "<option>--delink</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-ftparchive.1.xml:555
++#: apt-ftparchive.1.xml:556
  msgid ""
  "Perform Delinking. If the <literal>External-Links</literal> setting is used "
  "then this option actually enables delinking of the files. It defaults to on "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-ftparchive.1.xml:561
++#: apt-ftparchive.1.xml:562
  msgid "<option>--contents</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-ftparchive.1.xml:563
++#: apt-ftparchive.1.xml:564
  msgid ""
  "Perform contents generation. When this option is set and package indexes are "
  "being generated with a cache DB then the file listing will also be extracted "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-ftparchive.1.xml:571
++#: apt-ftparchive.1.xml:572
  msgid "<option>--source-override</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-ftparchive.1.xml:573
++#: apt-ftparchive.1.xml:574
  msgid ""
  "Select the source override file to use with the <literal>sources</literal> "
  "command.  Configuration Item: <literal>APT::FTPArchive::SourceOverride</"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-ftparchive.1.xml:577
++#: apt-ftparchive.1.xml:578
  msgid "<option>--readonly</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-ftparchive.1.xml:579
++#: apt-ftparchive.1.xml:580
  msgid ""
  "Make the caching databases read only.  Configuration Item: <literal>APT::"
  "FTPArchive::ReadOnlyDB</literal>."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-ftparchive.1.xml:583
++#: apt-ftparchive.1.xml:584
  msgid "<option>--arch</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-ftparchive.1.xml:584
++#: apt-ftparchive.1.xml:585
  msgid ""
  "Accept in the <literal>packages</literal> and <literal>contents</literal> "
  "commands only package files matching <literal>*_arch.deb</literal> or "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-ftparchive.1.xml:590
++#: apt-ftparchive.1.xml:591
  msgid "<option>APT::FTPArchive::AlwaysStat</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-ftparchive.1.xml:592
++#: apt-ftparchive.1.xml:593
  msgid ""
  "&apt-ftparchive; caches as much as possible of metadata in a cachedb. If "
  "packages are recompiled and/or republished with the same version again, this "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-ftparchive.1.xml:602
++#: apt-ftparchive.1.xml:603
  msgid "<option>APT::FTPArchive::LongDescription</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-ftparchive.1.xml:604
++#: apt-ftparchive.1.xml:605
  msgid ""
  "This configuration option defaults to \"<literal>true</literal>\" and should "
  "only be set to <literal>\"false\"</literal> if the Archive generated with "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><title>
- #: apt-ftparchive.1.xml:616 apt.conf.5.xml:1087 apt_preferences.5.xml:501
 -#: apt-ftparchive.1.xml:616 apt.conf.5.xml:1087 apt_preferences.5.xml:544
--#: sources.list.5.xml:198
++#: apt-ftparchive.1.xml:617 apt.conf.5.xml:1104 apt_preferences.5.xml:544
++#: sources.list.5.xml:214
  #, fuzzy
  msgid "Examples"
  msgstr "Exemplos"
  
  #. type: Content of: <refentry><refsect1><para><programlisting>
--#: apt-ftparchive.1.xml:622
++#: apt-ftparchive.1.xml:623
  #, no-wrap
  msgid "<command>apt-ftparchive</command> packages <replaceable>directory</replaceable> | <command>gzip</command> > <filename>Packages.gz</filename>\n"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt-ftparchive.1.xml:618
++#: apt-ftparchive.1.xml:619
  msgid ""
  "To create a compressed Packages file for a directory containing binary "
  "packages (.deb): <placeholder type=\"programlisting\" id=\"0\"/>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt-ftparchive.1.xml:632
++#: apt-ftparchive.1.xml:633
  msgid ""
  "<command>apt-ftparchive</command> returns zero on normal operation, decimal "
  "100 on error."
@@@ -2662,10 -2662,10 +2663,11 @@@ msgid "
  "<option>-o= <replaceable>config_string</replaceable> </option> </arg> <arg> "
  "<option>-c= <replaceable>config_file</replaceable> </option> </arg> <arg> "
  "<option>-t=</option> <arg choice='plain'> <replaceable>target_release</"
--"replaceable> </arg> </arg> <group choice=\"req\"> <arg "
--"choice='plain'>update</arg> <arg choice='plain'>upgrade</arg> <arg "
--"choice='plain'>dselect-upgrade</arg> <arg choice='plain'>dist-upgrade</arg> "
--"<arg choice='plain'>install <arg choice=\"plain\" rep=\"repeat"
++"replaceable> </arg> </arg> <arg> <option>-a=</option> <arg choice='plain'> "
++"<replaceable>default_architecture</replaceable> </arg> </arg> <group choice="
++"\"req\"> <arg choice='plain'>update</arg> <arg choice='plain'>upgrade</arg> "
++"<arg choice='plain'>dselect-upgrade</arg> <arg choice='plain'>dist-upgrade</"
++"arg> <arg choice='plain'>install <arg choice=\"plain\" rep=\"repeat"
  "\"><replaceable>pkg</replaceable> <arg> <group choice='req'> <arg "
  "choice='plain'> =<replaceable>pkg_version_number</replaceable> </arg> <arg "
  "choice='plain'> /<replaceable>target_release</replaceable> </arg> </group> </"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt-get.8.xml:115
++#: apt-get.8.xml:122
  msgid ""
  "<command>apt-get</command> is the command-line tool for handling packages, "
  "and may be considered the user's \"back-end\" to other tools using the APT "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:124 apt-key.8.xml:127
++#: apt-get.8.xml:131 apt-key.8.xml:127
  msgid "update"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:125
++#: apt-get.8.xml:132
  msgid ""
  "<literal>update</literal> is used to resynchronize the package index files "
  "from their sources. The indexes of available packages are fetched from the "
  msgstr ""
  
  #. type: <tag></tag>
--#: apt-get.8.xml:136 guide.sgml:121
++#: apt-get.8.xml:143 guide.sgml:121
  msgid "upgrade"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:137
++#: apt-get.8.xml:144
  msgid ""
  "<literal>upgrade</literal> is used to install the newest versions of all "
  "packages currently installed on the system from the sources enumerated in "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:149
++#: apt-get.8.xml:156
  msgid "dselect-upgrade"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:150
++#: apt-get.8.xml:157
  msgid ""
  "<literal>dselect-upgrade</literal> is used in conjunction with the "
  "traditional Debian packaging front-end, &dselect;. <literal>dselect-upgrade</"
  msgstr ""
  
  #. type: <tag></tag>
--#: apt-get.8.xml:159 guide.sgml:140
++#: apt-get.8.xml:166 guide.sgml:140
  msgid "dist-upgrade"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:160
++#: apt-get.8.xml:167
  msgid ""
  "<literal>dist-upgrade</literal> in addition to performing the function of "
  "<literal>upgrade</literal>, also intelligently handles changing dependencies "
  msgstr ""
  
  #. type: <tag></tag>
--#: apt-get.8.xml:172 guide.sgml:131
++#: apt-get.8.xml:179 guide.sgml:131
  msgid "install"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:174
++#: apt-get.8.xml:181
  msgid ""
  "<literal>install</literal> is followed by one or more packages desired for "
  "installation or upgrading.  Each package is a package name, not a fully "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:192
++#: apt-get.8.xml:199
  msgid ""
  "A specific version of a package can be selected for installation by "
  "following the package name with an equals and the version of the package to "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:199
++#: apt-get.8.xml:206
  msgid ""
  "Both of the version selection mechanisms can downgrade packages and must be "
  "used with care."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:202
++#: apt-get.8.xml:209
  msgid ""
  "This is also the target to use if you want to upgrade one or more already-"
  "installed packages without upgrading every package you have on your system. "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:213
++#: apt-get.8.xml:220
  msgid ""
  "Finally, the &apt-preferences; mechanism allows you to create an alternative "
  "installation policy for individual packages."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:217
++#: apt-get.8.xml:224
  msgid ""
  "If no package matches the given expression and the expression contains one "
  "of '.', '?' or '*' then it is assumed to be a POSIX regular expression, and "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:226
++#: apt-get.8.xml:233
  msgid "remove"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:227
++#: apt-get.8.xml:234
  msgid ""
  "<literal>remove</literal> is identical to <literal>install</literal> except "
  "that packages are removed instead of installed. Note the removing a package "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:234
++#: apt-get.8.xml:241
  msgid "purge"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:235
++#: apt-get.8.xml:242
  msgid ""
  "<literal>purge</literal> is identical to <literal>remove</literal> except "
  "that packages are removed and purged (any configuration files are deleted "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:239
++#: apt-get.8.xml:246
  msgid "source"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:240
++#: apt-get.8.xml:247
  msgid ""
  "<literal>source</literal> causes <command>apt-get</command> to fetch source "
  "packages. APT will examine the available packages to decide which source "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:248
++#: apt-get.8.xml:255
  msgid ""
  "Source packages are tracked separately from binary packages via <literal>deb-"
  "src</literal> type lines in the &sources-list; file. This means that you "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:255
++#: apt-get.8.xml:262
  msgid ""
  "If the <option>--compile</option> option is specified then the package will "
--"be compiled to a binary .deb using <command>dpkg-buildpackage</command>, if "
--"<option>--download-only</option> is specified then the source package will "
--"not be unpacked."
++"be compiled to a binary .deb using <command>dpkg-buildpackage</command> for "
++"the architecture as defined by the <command>--host-architecture</command> "
++"option.  If <option>--download-only</option> is specified then the source "
++"package will not be unpacked."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:260
++#: apt-get.8.xml:269
  msgid ""
  "A specific source version can be retrieved by postfixing the source name "
  "with an equals and then the version to fetch, similar to the mechanism used "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:266
++#: apt-get.8.xml:275
  msgid ""
  "Note that source packages are not tracked like binary packages, they exist "
  "only in the current directory and are similar to downloading source tar "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:271
++#: apt-get.8.xml:280
  msgid "build-dep"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:272
++#: apt-get.8.xml:281
  msgid ""
  "<literal>build-dep</literal> causes apt-get to install/remove packages in an "
--"attempt to satisfy the build dependencies for a source package."
++"attempt to satisfy the build dependencies for a source package. By default "
++"the dependencies are satisfied to build the package nativly. If desired a "
++"host-architecture can be specified with the <option>--host-architecture</"
++"option> option instead."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:276
++#: apt-get.8.xml:287
  msgid "check"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:277
++#: apt-get.8.xml:288
  msgid ""
  "<literal>check</literal> is a diagnostic tool; it updates the package cache "
  "and checks for broken dependencies."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:281
++#: apt-get.8.xml:292
  msgid "download"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:282
++#: apt-get.8.xml:293
  msgid ""
  "<literal>download</literal> will download the given binary package into the "
--"current directoy."
++"current directory."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:288
++#: apt-get.8.xml:299
  msgid ""
  "<literal>clean</literal> clears out the local repository of retrieved "
  "package files. It removes everything but the lock file from "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:297
++#: apt-get.8.xml:308
  msgid "autoclean"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:298
++#: apt-get.8.xml:309
  msgid ""
  "Like <literal>clean</literal>, <literal>autoclean</literal> clears out the "
  "local repository of retrieved package files. The difference is that it only "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:307
++#: apt-get.8.xml:318
  msgid "autoremove"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:308
++#: apt-get.8.xml:319
  msgid ""
  "<literal>autoremove</literal> is used to remove packages that were "
--"automatically installed to satisfy dependencies for some package and that "
--"are no more needed."
++"automatically installed to satisfy dependencies for other packages and are "
++"now no longer needed."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:312
++#: apt-get.8.xml:323
  msgid "changelog"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:313
++#: apt-get.8.xml:324
  msgid ""
  "<literal>changelog</literal> downloads a package changelog and displays it "
  "through <command>sensible-pager</command>. The server name and base "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:335
++#: apt-get.8.xml:346
  msgid "<option>--no-install-recommends</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:336
++#: apt-get.8.xml:347
  msgid ""
  "Do not consider recommended packages as a dependency for installing.  "
  "Configuration Item: <literal>APT::Install-Recommends</literal>."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:340
++#: apt-get.8.xml:351
  msgid "<option>--install-suggests</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:341
++#: apt-get.8.xml:352
  msgid ""
  "Consider suggested packages as a dependency for installing.  Configuration "
  "Item: <literal>APT::Install-Suggests</literal>."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:345
++#: apt-get.8.xml:356
  msgid "<option>--download-only</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:346
++#: apt-get.8.xml:357
  msgid ""
  "Download only; package files are only retrieved, not unpacked or installed.  "
  "Configuration Item: <literal>APT::Get::Download-Only</literal>."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:350
++#: apt-get.8.xml:361
  msgid "<option>--fix-broken</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:351
++#: apt-get.8.xml:362
  msgid ""
  "Fix; attempt to correct a system with broken dependencies in place. This "
  "option, when used with install/remove, can omit any packages to permit APT "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:364
++#: apt-get.8.xml:375
  msgid "<option>--ignore-missing</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:365
++#: apt-get.8.xml:376
  msgid "<option>--fix-missing</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:366
++#: apt-get.8.xml:377
  msgid ""
  "Ignore missing packages; If packages cannot be retrieved or fail the "
  "integrity check after retrieval (corrupted package files), hold back those "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:376
++#: apt-get.8.xml:387
  msgid "<option>--no-download</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:377
++#: apt-get.8.xml:388
  msgid ""
  "Disables downloading of packages. This is best used with <option>--ignore-"
  "missing</option> to force APT to use only the .debs it has already "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:384
++#: apt-get.8.xml:395
  msgid ""
  "Quiet; produces output suitable for logging, omitting progress indicators.  "
  "More q's will produce more quiet up to a maximum of 2. You can also use "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:394
++#: apt-get.8.xml:405
  msgid "<option>--simulate</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:396
++#: apt-get.8.xml:407
  msgid "<option>--dry-run</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:399
++#: apt-get.8.xml:410
  msgid ""
  "No action; perform a simulation of events that would occur but do not "
  "actually change the system.  Configuration Item: <literal>APT::Get::"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:403
++#: apt-get.8.xml:414
  msgid ""
  "Simulation run as user will deactivate locking (<literal>Debug::NoLocking</"
  "literal>)  automatic. Also a notice will be displayed indicating that this "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:409
++#: apt-get.8.xml:420
  msgid ""
  "Simulate prints out a series of lines each one representing a dpkg "
  "operation, Configure (Conf), Remove (Remv), Unpack (Inst). Square brackets "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:416
++#: apt-get.8.xml:427
  msgid "<option>-y</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:416
++#: apt-get.8.xml:427
  msgid "<option>--yes</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:417
++#: apt-get.8.xml:428
  msgid "<option>--assume-yes</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:418
++#: apt-get.8.xml:429
  msgid ""
  "Automatic yes to prompts; assume \"yes\" as answer to all prompts and run "
  "non-interactively. If an undesirable situation, such as changing a held "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:425
++#: apt-get.8.xml:436
++msgid "<option>--assume-no</option>"
++msgstr ""
++
++#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
++#: apt-get.8.xml:437
++msgid ""
++"Automatic \"no\" to all prompts.  Configuration Item: <literal>APT::Get::"
++"Assume-No</literal>."
++msgstr ""
++
++#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
++#: apt-get.8.xml:441
  msgid "<option>-u</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:425
++#: apt-get.8.xml:441
  msgid "<option>--show-upgraded</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:426
++#: apt-get.8.xml:442
  msgid ""
  "Show upgraded packages; Print out a list of all packages that are to be "
  "upgraded.  Configuration Item: <literal>APT::Get::Show-Upgraded</literal>."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:431
++#: apt-get.8.xml:447
  msgid "<option>-V</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:431
++#: apt-get.8.xml:447
  msgid "<option>--verbose-versions</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:432
++#: apt-get.8.xml:448
  msgid ""
  "Show full versions for upgraded and installed packages.  Configuration Item: "
  "<literal>APT::Get::Show-Versions</literal>."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:436
++#: apt-get.8.xml:453
++msgid "<option>--host-architecture</option>"
++msgstr ""
++
++#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
++#: apt-get.8.xml:454
++msgid ""
++"This option controls the architecture packages are built for by <command>apt-"
++"get source --compile</command> and how cross-builddependencies are "
++"satisfied. By default is not set which means that the host architecture is "
++"the same as the build architecture (which is defined by <literal>APT::"
++"Architecture</literal>)  Configuration Item: <literal>APT::Get::Host-"
++"Architecture</literal>"
++msgstr ""
++
++#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
++#: apt-get.8.xml:462
  msgid "<option>-b</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:436
++#: apt-get.8.xml:462
  msgid "<option>--compile</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:437
++#: apt-get.8.xml:463
  msgid "<option>--build</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:438
++#: apt-get.8.xml:464
  msgid ""
  "Compile source packages after downloading them.  Configuration Item: "
  "<literal>APT::Get::Compile</literal>."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:442
++#: apt-get.8.xml:468
  msgid "<option>--ignore-hold</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:443
++#: apt-get.8.xml:469
  msgid ""
  "Ignore package Holds; This causes <command>apt-get</command> to ignore a "
  "hold placed on a package. This may be useful in conjunction with "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:449
++#: apt-get.8.xml:475
  msgid "<option>--no-upgrade</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:450
++#: apt-get.8.xml:476
  msgid ""
  "Do not upgrade packages; When used in conjunction with <literal>install</"
  "literal>, <literal>no-upgrade</literal> will prevent packages on the command "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:456
++#: apt-get.8.xml:482
  msgid "<option>--only-upgrade</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:457
++#: apt-get.8.xml:483
  msgid ""
  "Do not install new packages; When used in conjunction with <literal>install</"
  "literal>, <literal>only-upgrade</literal> will prevent packages on the "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:463
++#: apt-get.8.xml:489
  msgid "<option>--force-yes</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:464
++#: apt-get.8.xml:490
  msgid ""
  "Force yes; This is a dangerous option that will cause apt to continue "
  "without prompting if it is doing something potentially harmful. It should "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:471
++#: apt-get.8.xml:497
  msgid "<option>--print-uris</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:472
++#: apt-get.8.xml:498
  msgid ""
  "Instead of fetching the files to install their URIs are printed. Each URI "
  "will have the path, the destination file name, the size and the expected md5 "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:482
++#: apt-get.8.xml:508
  msgid "<option>--purge</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:483
++#: apt-get.8.xml:509
  msgid ""
  "Use purge instead of remove for anything that would be removed.  An asterisk "
  "(\"*\") will be displayed next to packages which are scheduled to be purged. "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:490
++#: apt-get.8.xml:516
  msgid "<option>--reinstall</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:491
++#: apt-get.8.xml:517
  msgid ""
  "Re-Install packages that are already installed and at the newest version.  "
  "Configuration Item: <literal>APT::Get::ReInstall</literal>."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:495
++#: apt-get.8.xml:521
  msgid "<option>--list-cleanup</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:496
++#: apt-get.8.xml:522
  msgid ""
  "This option defaults to on, use <literal>--no-list-cleanup</literal> to turn "
  "it off. When on <command>apt-get</command> will automatically manage the "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:505
++#: apt-get.8.xml:531
  msgid "<option>--target-release</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:506
++#: apt-get.8.xml:532
  msgid "<option>--default-release</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:507
++#: apt-get.8.xml:533
  msgid ""
  "This option controls the default input to the policy engine, it creates a "
  "default pin at priority 990 using the specified release string.  This "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:520
++#: apt-get.8.xml:546
  msgid "<option>--trivial-only</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:522
++#: apt-get.8.xml:548
  msgid ""
  "Only perform operations that are 'trivial'. Logically this can be considered "
  "related to <option>--assume-yes</option>, where <option>--assume-yes</"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:528
++#: apt-get.8.xml:554
  msgid "<option>--no-remove</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:529
++#: apt-get.8.xml:555
  msgid ""
  "If any packages are to be removed apt-get immediately aborts without "
  "prompting.  Configuration Item: <literal>APT::Get::Remove</literal>."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:534
++#: apt-get.8.xml:560
  msgid "<option>--auto-remove</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:535
++#: apt-get.8.xml:561
  msgid ""
  "If the command is either <literal>install</literal> or <literal>remove</"
  "literal>, then this option acts like running <literal>autoremove</literal> "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:541
++#: apt-get.8.xml:567
  msgid "<option>--only-source</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:542
++#: apt-get.8.xml:568
  msgid ""
  "Only has meaning for the <literal>source</literal> and <literal>build-dep</"
  "literal> commands.  Indicates that the given source names are not to be "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:552
++#: apt-get.8.xml:578
  msgid "<option>--diff-only</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:552
++#: apt-get.8.xml:578
  msgid "<option>--dsc-only</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:552
++#: apt-get.8.xml:578
  msgid "<option>--tar-only</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:553
++#: apt-get.8.xml:579
  msgid ""
  "Download only the diff, dsc, or tar file of a source archive.  Configuration "
  "Item: <literal>APT::Get::Diff-Only</literal>, <literal>APT::Get::Dsc-Only</"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:558
++#: apt-get.8.xml:584
  msgid "<option>--arch-only</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:559
++#: apt-get.8.xml:585
  msgid ""
  "Only process architecture-dependent build-dependencies.  Configuration Item: "
  "<literal>APT::Get::Arch-Only</literal>."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt-get.8.xml:563
++#: apt-get.8.xml:589
  msgid "<option>--allow-unauthenticated</option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt-get.8.xml:564
++#: apt-get.8.xml:590
  msgid ""
  "Ignore if packages can't be authenticated and don't prompt about it.  This "
  "is useful for tools like pbuilder.  Configuration Item: <literal>APT::Get::"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist>
--#: apt-get.8.xml:577
++#: apt-get.8.xml:603
  msgid ""
  "&file-sourceslist; &file-aptconf; &file-preferences; &file-cachearchives; "
  "&file-statelists;"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt-get.8.xml:586
++#: apt-get.8.xml:612
  msgid ""
  "&apt-cache;, &apt-cdrom;, &dpkg;, &dselect;, &sources-list;, &apt-conf;, "
  "&apt-config;, &apt-secure;, The APT User's guide in &guidesdir;, &apt-"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt-get.8.xml:592
++#: apt-get.8.xml:618
  msgid ""
  "<command>apt-get</command> returns zero on normal operation, decimal 100 on "
  "error."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><title>
--#: apt-get.8.xml:595
++#: apt-get.8.xml:621
  msgid "ORIGINAL AUTHORS"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt-get.8.xml:596
++#: apt-get.8.xml:622
  msgid "&apt-author.jgunthorpe;"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><title>
--#: apt-get.8.xml:599
++#: apt-get.8.xml:625
  msgid "CURRENT AUTHORS"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt-get.8.xml:601
++#: apt-get.8.xml:627
  msgid "&apt-author.team;"
  msgstr ""
  
@@@ -3638,19 -3638,33 +3672,38 @@@ msgstr "
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #: apt-key.8.xml:131
  msgid ""
--"Update the local keyring with the keyring of Debian archive keys and removes "
--"from the keyring the archive keys which are no longer valid."
++"Update the local keyring with the archive keyring and remove from the local "
++"keyring the archive keys which are no longer valid.  The archive keyring is "
++"shipped in the <literal>archive-keyring</literal> package of your "
++"distribution, e.g. the <literal>ubuntu-archive-keyring</literal> package in "
++"Ubuntu."
+ msgstr ""
+ #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
 -#: apt-key.8.xml:140
++#: apt-key.8.xml:141
+ msgid "net-update"
+ msgstr ""
+ #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
 -#: apt-key.8.xml:144
++#: apt-key.8.xml:145
+ msgid ""
 -"Update the local keyring with the keys of a key server and removes from the "
 -"keyring the archive keys which are no longer valid. This requires an "
 -"installed wget and an APT build configured to have a server to fetch from. "
 -"APT in Debian does not support this command, but Ubuntu's APT does."
++"Work similar to the <command>update</command> command above, but get the "
++"archive keyring from an URI instead and validate it against a master key.  "
++"This requires an installed &wget; and an APT build configured to have a "
++"server to fetch from and a master keyring to validate.  APT in Debian does "
++"not support this command and relies on <command>update</command> instead, "
++"but Ubuntu's APT does."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
- #: apt-key.8.xml:143
 -#: apt-key.8.xml:159
++#: apt-key.8.xml:162
  msgid ""
  "Note that options need to be defined before the commands described in the "
  "previous section."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-key.8.xml:145
 -#: apt-key.8.xml:161
++#: apt-key.8.xml:164
  #, fuzzy
  msgid "--keyring <replaceable>filename</replaceable>"
  msgstr ""
  "apt-get install <replaceable>pacote</replaceable>/testing\n"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
- #: apt-key.8.xml:146
 -#: apt-key.8.xml:162
++#: apt-key.8.xml:165
  msgid ""
  "With this option it is possible to specify a specific keyring file the "
  "command should operate on. The default is that a command is executed on the "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist>
- #: apt-key.8.xml:159
 -#: apt-key.8.xml:175
++#: apt-key.8.xml:178
  msgid "&file-trustedgpg;"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-key.8.xml:161
 -#: apt-key.8.xml:177
++#: apt-key.8.xml:180
  #, fuzzy
  msgid "<filename>/etc/apt/trustdb.gpg</filename>"
  msgstr "<filename>/etc/apt.conf</>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
- #: apt-key.8.xml:162
 -#: apt-key.8.xml:178
++#: apt-key.8.xml:181
  msgid "Local trust database of archive keys."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-key.8.xml:165
 -#: apt-key.8.xml:181
--msgid "<filename>/usr/share/keyrings/debian-archive-keyring.gpg</filename>"
--msgstr ""
++#: apt-key.8.xml:184
++#, fuzzy
++msgid "<filename>/usr/share/keyrings/ubuntu-archive-keyring.gpg</filename>"
++msgstr "<filename>/etc/apt.conf</>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
- #: apt-key.8.xml:166
 -#: apt-key.8.xml:182
--msgid "Keyring of Debian archive trusted keys."
++#: apt-key.8.xml:185
++msgid "Keyring of Ubuntu archive trusted keys."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-key.8.xml:169
 -#: apt-key.8.xml:185
++#: apt-key.8.xml:188
++#, fuzzy
  msgid ""
--"<filename>/usr/share/keyrings/debian-archive-removed-keys.gpg</filename>"
--msgstr ""
++"<filename>/usr/share/keyrings/ubuntu-archive-removed-keys.gpg</filename>"
++msgstr "<filename>/etc/apt.conf</>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
- #: apt-key.8.xml:170
 -#: apt-key.8.xml:186
--msgid "Keyring of Debian archive removed trusted keys."
++#: apt-key.8.xml:189
++msgid "Keyring of Ubuntu archive removed trusted keys."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
- #: apt-key.8.xml:179
 -#: apt-key.8.xml:195
++#: apt-key.8.xml:198
  #, fuzzy
  msgid "&apt-get;, &apt-secure;"
  msgstr "&apt-get; &apt-cache; &apt-conf; &sources-list;"
  #. type: Content of: <refentry><refentryinfo>
  #: apt-mark.8.xml:16
  msgid ""
- "&apt-author.moconnor; &apt-author.team; &apt-email; &apt-product; <date>9 "
- "August 2009</date>"
+ "&apt-author.moconnor; &apt-author.team; &apt-email; &apt-product; <date>21 "
+ "April 2011</date>"
  msgstr ""
  
  #. type: Content of: <refentry><refnamediv><refname>
@@@ -3735,20 -3749,21 +3790,21 @@@ msgid "
  "  <command>apt-mark</command> <arg><option>-hv</option></arg> <arg><option>-"
  "f=<replaceable>FILENAME</replaceable></option></arg> <group choice=\"plain"
  "\"> <arg choice=\"plain\"> <group choice=\"req\"> <arg choice=\"plain"
- "\">markauto</arg> <arg choice=\"plain\">unmarkauto</arg> </group> <arg "
+ "\">auto</arg> <arg choice=\"plain\">manual</arg> <arg choice=\"plain"
+ "\">showauto</arg> <arg choice=\"plain\">showmanual</arg> </group> <arg "
  "choice=\"plain\" rep=\"repeat\"><replaceable>package</replaceable></arg> </"
- "arg> <arg choice=\"plain\">showauto</arg> </group>"
+ "arg> </group>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
- #: apt-mark.8.xml:56
+ #: apt-mark.8.xml:57
  msgid ""
  "<command>apt-mark</command> will change whether a package has been marked as "
  "being automatically installed."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
- #: apt-mark.8.xml:60
+ #: apt-mark.8.xml:61
  msgid ""
  "When you request that a package is installed, and as a result other packages "
  "are installed to satisfy its dependencies, the dependencies are marked as "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-mark.8.xml:68
- msgid "markauto"
+ #: apt-mark.8.xml:69
+ msgid "auto"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
- #: apt-mark.8.xml:69
+ #: apt-mark.8.xml:70
  msgid ""
- "<literal>markauto</literal> is used to mark a package as being automatically "
+ "<literal>auto</literal> is used to mark a package as being automatically "
  "installed, which will cause the package to be removed when no more manually "
  "installed packages depend on this package."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-mark.8.xml:76
- msgid "unmarkauto"
+ #: apt-mark.8.xml:77
+ msgid "manual"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
- #: apt-mark.8.xml:77
+ #: apt-mark.8.xml:78
  msgid ""
- "<literal>unmarkauto</literal> is used to mark a package as being manually "
+ "<literal>manual</literal> is used to mark a package as being manually "
  "installed, which will prevent the package from being automatically removed "
  "if no other packages depend on it."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-mark.8.xml:84
- msgid "showauto"
+ #: apt-mark.8.xml:85
+ msgid "hold"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
- #: apt-mark.8.xml:85
+ #: apt-mark.8.xml:86
  msgid ""
- "<literal>showauto</literal> is used to print a list of automatically "
- "installed packages with each package on a new line."
+ "<literal>hold</literal> is used to mark a package as hold back, which will "
+ "prevent the package from being automatically installed, upgraded or "
+ "removed.  The command is only a wrapper around <command>dpkg --set-"
+ "selections</command> and the state is therefore maintained by &dpkg; and not "
+ "effected by the <option>--filename</option> option."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
+ #: apt-mark.8.xml:95
+ msgid "unhold"
+ msgstr ""
+ #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
  #: apt-mark.8.xml:96
  msgid ""
- "<option>-f=<filename><replaceable>FILENAME</replaceable></filename></option>"
+ "<literal>unhold</literal> is used to cancel a previously set hold on a "
+ "package to allow all actions again."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-mark.8.xml:97
- msgid ""
- "<option>--file=<filename><replaceable>FILENAME</replaceable></filename></"
- "option>"
+ #: apt-mark.8.xml:101
+ msgid "showauto"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
- #: apt-mark.8.xml:100
+ #: apt-mark.8.xml:102
  msgid ""
- "Read/Write package stats from <filename><replaceable>FILENAME</replaceable></"
- "filename> instead of the default location, which is "
- "<filename>extended_status</filename> in the directory defined by the "
- "Configuration Item: <literal>Dir::State</literal>."
+ "<literal>showauto</literal> is used to print a list of automatically "
+ "installed packages with each package on a new line.  All automatically "
+ "installed packages will be listed if no package is given.  If packages are "
+ "given only those which are automatically installed will be shown."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-mark.8.xml:106
- msgid "<option>-h</option>"
+ #: apt-mark.8.xml:109
+ msgid "showmanual"
+ msgstr ""
+ #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
+ #: apt-mark.8.xml:110
+ msgid ""
+ "<literal>showmanual</literal> can be used in the same way as "
+ "<literal>showauto</literal> except that it will print a list of manually "
+ "installed packages instead."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-mark.8.xml:107
- msgid "<option>--help</option>"
+ #: apt-mark.8.xml:116
+ msgid "showhold"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
- #: apt-mark.8.xml:108
- msgid "Show a short usage summary."
+ #: apt-mark.8.xml:117
+ msgid ""
+ "<literal>showhold</literal> is used to print a list of packages on hold in "
+ "the same way as for the other show commands."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-mark.8.xml:114
- msgid "<option>-v</option>"
+ #: apt-mark.8.xml:130
+ msgid ""
+ "<option>-f=<filename><replaceable>FILENAME</replaceable></filename></option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
- #: apt-mark.8.xml:115
- msgid "<option>--version</option>"
+ #: apt-mark.8.xml:131
+ msgid ""
+ "<option>--file=<filename><replaceable>FILENAME</replaceable></filename></"
+ "option>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
- #: apt-mark.8.xml:116
- msgid "Show the program version."
+ #: apt-mark.8.xml:134
+ msgid ""
+ "Read/Write package stats from <filename><replaceable>FILENAME</replaceable></"
+ "filename> instead of the default location, which is "
+ "<filename>extended_status</filename> in the directory defined by the "
+ "Configuration Item: <literal>Dir::State</literal>."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist>
- #: apt-mark.8.xml:127
+ #: apt-mark.8.xml:146
  msgid "  &file-extended_states;"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
- #: apt-mark.8.xml:132
+ #: apt-mark.8.xml:151
  #, fuzzy
  msgid "&apt-get;,&aptitude;,&apt-conf;"
  msgstr "&apt-get; &apt-cache; &apt-conf; &sources-list;"
  
  #. type: Content of: <refentry><refsect1><para>
- #: apt-mark.8.xml:136
+ #: apt-mark.8.xml:155
  msgid ""
  "<command>apt-mark</command> returns zero on normal operation, non-zero on "
  "error."
@@@ -4196,11 -4235,11 +4276,12 @@@ msgstr "
  #: apt.conf.5.xml:52
  msgid ""
  "all files in <literal>Dir::Etc::Parts</literal> in alphanumeric ascending "
--"order which have no or \"<literal>conf</literal>\" as filename extension and "
--"which only contain alphanumeric, hyphen (-), underscore (_) and period (.) "
--"characters.  Otherwise APT will print a notice that it has ignored a file if "
--"the file doesn't match a pattern in the <literal>Dir::Ignore-Files-Silently</"
--"literal> configuration list - in this case it will be silently ignored."
++"order which have either no or \"<literal>conf</literal>\" as filename "
++"extension and which only contain alphanumeric, hyphen (-), underscore (_) "
++"and period (.) characters.  Otherwise APT will print a notice that it has "
++"ignored a file if the file doesn't match a pattern in the <literal>Dir::"
++"Ignore-Files-Silently</literal> configuration list - in this case it will be "
++"silently ignored."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><orderedlist><listitem><para>
@@@ -4372,13 -4411,13 +4453,24 @@@ msgid "
  "compiled for."
  msgstr ""
  
++#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
++#: apt.conf.5.xml:158
++msgid ""
++"All Architectures the system supports. Processors implementing the "
++"<literal>amd64</literal> are e.g. also able to execute binaries compiled for "
++"<literal>i386</literal>; This list is use when fetching files and parsing "
++"package lists. The internal default is always the native architecture "
++"(<literal>APT::Architecture</literal>)  and all foreign architectures it can "
++"retrieve by calling <command>dpkg --print-foreign-architectures</command>."
++msgstr ""
++
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:157
++#: apt.conf.5.xml:165
  msgid "Default-Release"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:158
++#: apt.conf.5.xml:166
  msgid ""
  "Default release to install packages from if more than one version available. "
  "Contains release name, codename or release version. Examples: 'stable', "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:163
++#: apt.conf.5.xml:171
  msgid "Ignore-Hold"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:164
++#: apt.conf.5.xml:172
  msgid ""
  "Ignore Held packages; This global option causes the problem resolver to "
  "ignore held packages in its decision making."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:168
++#: apt.conf.5.xml:176
  msgid "Clean-Installed"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:169
++#: apt.conf.5.xml:177
  msgid ""
  "Defaults to on. When turned on the autoclean feature will remove any "
  "packages which can no longer be downloaded from the cache. If turned off "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:175
++#: apt.conf.5.xml:183
  msgid "Immediate-Configure"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:176
++#: apt.conf.5.xml:184
  msgid ""
  "Defaults to on which will cause APT to install essential and important "
  "packages as fast as possible in the install/upgrade operation. This is done "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:198
++#: apt.conf.5.xml:206
  msgid "Force-LoopBreak"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:199
++#: apt.conf.5.xml:207
  msgid ""
  "Never Enable this option unless you -really- know what you are doing. It "
  "permits APT to temporarily remove an essential package to break a Conflicts/"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:207
++#: apt.conf.5.xml:215
  msgid "Cache-Start, Cache-Grow and Cache-Limit"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:208
++#: apt.conf.5.xml:216
  msgid ""
  "APT uses since version 0.7.26 a resizable memory mapped cache file to store "
  "the 'available' information. <literal>Cache-Start</literal> acts as a hint "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:223
++#: apt.conf.5.xml:231
  msgid "Build-Essential"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:224
++#: apt.conf.5.xml:232
  msgid "Defines which package(s) are considered essential build dependencies."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:227
++#: apt.conf.5.xml:235
  msgid "Get"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:228
++#: apt.conf.5.xml:236
  msgid ""
  "The Get subsection controls the &apt-get; tool, please see its documentation "
  "for more information about the options here."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:232
++#: apt.conf.5.xml:240
  msgid "Cache"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:233
++#: apt.conf.5.xml:241
  msgid ""
  "The Cache subsection controls the &apt-cache; tool, please see its "
  "documentation for more information about the options here."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:237
++#: apt.conf.5.xml:245
  msgid "CDROM"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:238
++#: apt.conf.5.xml:246
  msgid ""
  "The CDROM subsection controls the &apt-cdrom; tool, please see its "
  "documentation for more information about the options here."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><title>
--#: apt.conf.5.xml:244
++#: apt.conf.5.xml:252
  msgid "The Acquire Group"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:249
++#: apt.conf.5.xml:257
  msgid "Check-Valid-Until"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:250
++#: apt.conf.5.xml:258
  msgid ""
  "Security related option defaulting to true as an expiring validation for a "
  "Release file prevents longtime replay attacks and can e.g. also help users "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:260
++#: apt.conf.5.xml:268
  msgid "Max-ValidTime"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:261
++#: apt.conf.5.xml:269
  msgid ""
--"Seconds the Release file should be considered valid after it was created. "
--"The default is \"for ever\" (0) if the Release file of the archive doesn't "
--"include a <literal>Valid-Until</literal> header.  If it does then this date "
--"is the default. The date from the Release file or the date specified by the "
--"creation time of the Release file (<literal>Date</literal> header) plus the "
--"seconds specified with this options are used to check if the validation of a "
--"file has expired by using the earlier date of the two. Archive specific "
--"settings can be made by appending the label of the archive to the option "
--"name."
++"Seconds the Release file should be considered valid after it was created "
++"(indicated by the <literal>Date</literal> header).  If the Release file "
++"itself includes a <literal>Valid-Until</literal> header the earlier date of "
++"the two is used as the expiration date.  The default value is <literal>0</"
++"literal> which stands for \"for ever\".  Archive specific settings can be "
++"made by appending the label of the archive to the option name."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:273
++#: apt.conf.5.xml:279
++msgid "Min-ValidTime"
++msgstr ""
++
++#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
++#: apt.conf.5.xml:280
++msgid ""
++"Minimum of seconds the Release file should be considered valid after it was "
++"created (indicated by the <literal>Date</literal> header).  Use this if you "
++"need to use a seldomly updated (local) mirror of a more regular updated "
++"archive with a <literal>Valid-Until</literal> header instead of competely "
++"disabling the expiration date checking.  Archive specific settings can and "
++"should be used by appending the label of the archive to the option name."
++msgstr ""
++
++#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
++#: apt.conf.5.xml:290
  msgid "PDiffs"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:274
++#: apt.conf.5.xml:291
  msgid ""
  "Try to download deltas called <literal>PDiffs</literal> for Packages or "
  "Sources files instead of downloading whole ones. True by default."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:277
++#: apt.conf.5.xml:294
  msgid ""
  "Two sub-options to limit the use of PDiffs are also available: With "
  "<literal>FileLimit</literal> can be specified how many PDiff files are "
  "downloaded at most to patch a file. <literal>SizeLimit</literal> on the "
--"other hand is the maximum precentage of the size of all patches compared to "
++"other hand is the maximum percentage of the size of all patches compared to "
  "the size of the targeted file. If one of these limits is exceeded the "
  "complete file is downloaded instead of the patches."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:286
++#: apt.conf.5.xml:303
  msgid "Queue-Mode"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:287
++#: apt.conf.5.xml:304
  msgid ""
  "Queuing mode; <literal>Queue-Mode</literal> can be one of <literal>host</"
  "literal> or <literal>access</literal> which determines how APT parallelizes "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:294
++#: apt.conf.5.xml:311
  msgid "Retries"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:295
++#: apt.conf.5.xml:312
  msgid ""
  "Number of retries to perform. If this is non-zero APT will retry failed "
  "files the given number of times."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:299
++#: apt.conf.5.xml:316
  msgid "Source-Symlinks"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:300
++#: apt.conf.5.xml:317
  msgid ""
  "Use symlinks for source archives. If set to true then source archives will "
  "be symlinked when possible instead of copying. True is the default."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:304 sources.list.5.xml:144
++#: apt.conf.5.xml:321 sources.list.5.xml:160
  msgid "http"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:305
++#: apt.conf.5.xml:322
  msgid ""
  "HTTP URIs; http::Proxy is the default http proxy to use. It is in the "
  "standard form of <literal>http://[[user][:pass]@]host[:port]/</literal>. Per "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:313
++#: apt.conf.5.xml:330
  msgid ""
  "Three settings are provided for cache control with HTTP/1.1 compliant proxy "
  "caches. <literal>No-Cache</literal> tells the proxy to not use its cached "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:323 apt.conf.5.xml:387
++#: apt.conf.5.xml:340 apt.conf.5.xml:404
  msgid ""
  "The option <literal>timeout</literal> sets the timeout timer used by the "
  "method, this applies to all things including connection timeout and data "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:326
++#: apt.conf.5.xml:343
  msgid ""
  "One setting is provided to control the pipeline depth in cases where the "
  "remote server is not RFC conforming or buggy (such as Squid 2.0.2).  "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:334
++#: apt.conf.5.xml:351
  msgid ""
  "The used bandwidth can be limited with <literal>Acquire::http::Dl-Limit</"
  "literal> which accepts integer values in kilobyte. The default value is 0 "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:339
++#: apt.conf.5.xml:356
  msgid ""
  "<literal>Acquire::http::User-Agent</literal> can be used to set a different "
  "User-Agent for the http download method as some proxies allow access for "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:345
++#: apt.conf.5.xml:362
  msgid "https"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:346
++#: apt.conf.5.xml:363
  msgid ""
  "HTTPS URIs. Cache-control, Timeout, AllowRedirect, Dl-Limit and proxy "
  "options are the same as for <literal>http</literal> method and will also "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:352
++#: apt.conf.5.xml:369
  msgid ""
  "<literal>CaInfo</literal> suboption specifies place of file that holds info "
  "about trusted certificates.  <literal>&lt;host&gt;::CaInfo</literal> is "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:370 sources.list.5.xml:155
++#: apt.conf.5.xml:387 sources.list.5.xml:171
  msgid "ftp"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:371
++#: apt.conf.5.xml:388
  msgid ""
  "FTP URIs; ftp::Proxy is the default ftp proxy to use. It is in the standard "
  "form of <literal>ftp://[[user][:pass]@]host[:port]/</literal>. Per host "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:390
++#: apt.conf.5.xml:407
  msgid ""
  "Several settings are provided to control passive mode. Generally it is safe "
  "to leave passive mode on, it works in nearly every environment.  However "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:397
++#: apt.conf.5.xml:414
  msgid ""
  "It is possible to proxy FTP over HTTP by setting the <envar>ftp_proxy</"
  "envar> environment variable to a http url - see the discussion of the http "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:402
++#: apt.conf.5.xml:419
  msgid ""
  "The setting <literal>ForceExtended</literal> controls the use of RFC2428 "
  "<literal>EPSV</literal> and <literal>EPRT</literal> commands. The default is "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:409 sources.list.5.xml:137
++#: apt.conf.5.xml:426 sources.list.5.xml:153
  msgid "cdrom"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><literallayout>
--#: apt.conf.5.xml:415
++#: apt.conf.5.xml:432
  #, no-wrap
  msgid "/cdrom/::Mount \"foo\";"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:410
++#: apt.conf.5.xml:427
  msgid ""
  "CDROM URIs; the only setting for CDROM URIs is the mount point, "
  "<literal>cdrom::Mount</literal> which must be the mount point for the CDROM "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:420
++#: apt.conf.5.xml:437
  msgid "gpgv"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:421
++#: apt.conf.5.xml:438
  msgid ""
  "GPGV URIs; the only option for GPGV URIs is the option to pass additional "
  "parameters to gpgv.  <literal>gpgv::Options</literal> Additional options "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:426
++#: apt.conf.5.xml:443
  msgid "CompressionTypes"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><synopsis>
--#: apt.conf.5.xml:432
++#: apt.conf.5.xml:449
  #, no-wrap
  msgid "Acquire::CompressionTypes::<replaceable>FileExtension</replaceable> \"<replaceable>Methodname</replaceable>\";"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:427
++#: apt.conf.5.xml:444
  msgid ""
  "List of compression types which are understood by the acquire methods.  "
  "Files like <filename>Packages</filename> can be available in various "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><synopsis>
--#: apt.conf.5.xml:437
++#: apt.conf.5.xml:454
  #, no-wrap
  msgid "Acquire::CompressionTypes::Order:: \"gz\";"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><synopsis>
--#: apt.conf.5.xml:440
++#: apt.conf.5.xml:457
  #, no-wrap
  msgid "Acquire::CompressionTypes::Order { \"lzma\"; \"gz\"; };"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:433
++#: apt.conf.5.xml:450
  msgid ""
  "Also the <literal>Order</literal> subgroup can be used to define in which "
  "order the acquire system will try to download the compressed files. The "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><literallayout>
--#: apt.conf.5.xml:444
++#: apt.conf.5.xml:461
  #, no-wrap
  msgid "Dir::Bin::bzip2 \"/bin/bzip2\";"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:442
++#: apt.conf.5.xml:459
  msgid ""
  "Note that at run time the <literal>Dir::Bin::<replaceable>Methodname</"
  "replaceable></literal> will be checked: If this setting exists the method "
  "will only be used if this file exists, e.g. for the bzip2 method (the "
--"inbuilt) setting is <placeholder type=\"literallayout\" id=\"0\"/> Note also "
--"that list entries specified on the command line will be added at the end of "
--"the list specified in the configuration files, but before the default "
++"inbuilt) setting is: <placeholder type=\"literallayout\" id=\"0\"/> Note "
++"also that list entries specified on the command line will be added at the "
++"end of the list specified in the configuration files, but before the default "
  "entries. To prefer a type in this case over the ones specified in the "
  "configuration files you can set the option direct - not in list style.  This "
  "will not override the defined list, it will only prefix the list with this "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:449
++#: apt.conf.5.xml:466
  msgid ""
  "The special type <literal>uncompressed</literal> can be used to give "
--"uncompressed files a preference, but note that most archives doesn't provide "
++"uncompressed files a preference, but note that most archives don't provide "
  "uncompressed files so this is mostly only useable for local mirrors."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:454
++#: apt.conf.5.xml:471
  msgid "GzipIndexes"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:456
++#: apt.conf.5.xml:473
  msgid ""
  "When downloading <literal>gzip</literal> compressed indexes (Packages, "
  "Sources, or Translations), keep them gzip compressed locally instead of "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: apt.conf.5.xml:463
++#: apt.conf.5.xml:480
  msgid "Languages"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:464
++#: apt.conf.5.xml:481
  msgid ""
  "The Languages subsection controls which <filename>Translation</filename> "
  "files are downloaded and in which order APT tries to display the Description-"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><programlisting>
--#: apt.conf.5.xml:480
++#: apt.conf.5.xml:497
  #, no-wrap
  msgid "Acquire::Languages { \"environment\"; \"de\"; \"en\"; \"none\"; \"fr\"; };"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:470
++#: apt.conf.5.xml:487
  msgid ""
  "The default list includes \"environment\" and \"en\". "
  "\"<literal>environment</literal>\" has a special meaning here: It will be "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:245
++#: apt.conf.5.xml:253
  msgid ""
  "The <literal>Acquire</literal> group of options controls the download of "
  "packages and the URI handlers.  <placeholder type=\"variablelist\" id=\"0\"/>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><title>
--#: apt.conf.5.xml:487
++#: apt.conf.5.xml:504
  msgid "Directories"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:489
++#: apt.conf.5.xml:506
  msgid ""
  "The <literal>Dir::State</literal> section has directories that pertain to "
  "local state information. <literal>lists</literal> is the directory to place "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:496
++#: apt.conf.5.xml:513
  msgid ""
  "<literal>Dir::Cache</literal> contains locations pertaining to local cache "
  "information, such as the two package caches <literal>srcpkgcache</literal> "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:505
++#: apt.conf.5.xml:522
  msgid ""
  "<literal>Dir::Etc</literal> contains the location of configuration files, "
  "<literal>sourcelist</literal> gives the location of the sourcelist and "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:511
++#: apt.conf.5.xml:528
  msgid ""
  "The <literal>Dir::Parts</literal> setting reads in all the config fragments "
  "in lexical order from the directory specified. After this is done then the "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:515
++#: apt.conf.5.xml:532
  msgid ""
  "Binary programs are pointed to by <literal>Dir::Bin</literal>. <literal>Dir::"
  "Bin::Methods</literal> specifies the location of the method handlers and "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:523
++#: apt.conf.5.xml:540
  msgid ""
  "The configuration item <literal>RootDir</literal> has a special meaning.  If "
  "set, all paths in <literal>Dir::</literal> will be relative to "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:536
++#: apt.conf.5.xml:553
  msgid ""
  "The <literal>Ignore-Files-Silently</literal> list can be used to specify "
  "which files APT should silently ignore while parsing the files in the "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><title>
--#: apt.conf.5.xml:545
++#: apt.conf.5.xml:562
  msgid "APT in DSelect"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:547
++#: apt.conf.5.xml:564
  msgid ""
  "When APT is used as a &dselect; method several configuration directives "
  "control the default behaviour. These are in the <literal>DSelect</literal> "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:551
++#: apt.conf.5.xml:568
  msgid "Clean"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:552
++#: apt.conf.5.xml:569
  msgid ""
  "Cache Clean mode; this value may be one of always, prompt, auto, pre-auto "
  "and never.  always and prompt will remove all packages from the cache after "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:561
++#: apt.conf.5.xml:578
  msgid ""
  "The contents of this variable is passed to &apt-get; as command line options "
  "when it is run for the install phase."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:565
++#: apt.conf.5.xml:582
  msgid "Updateoptions"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:566
++#: apt.conf.5.xml:583
  msgid ""
  "The contents of this variable is passed to &apt-get; as command line options "
  "when it is run for the update phase."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:570
++#: apt.conf.5.xml:587
  msgid "PromptAfterUpdate"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:571
++#: apt.conf.5.xml:588
  msgid ""
  "If true the [U]pdate operation in &dselect; will always prompt to continue.  "
  "The default is to prompt only on error."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><title>
--#: apt.conf.5.xml:577
++#: apt.conf.5.xml:594
  msgid "How APT calls dpkg"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:578
++#: apt.conf.5.xml:595
  msgid ""
  "Several configuration directives control how APT invokes &dpkg;. These are "
  "in the <literal>DPkg</literal> section."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:583
++#: apt.conf.5.xml:600
  msgid ""
  "This is a list of options to pass to dpkg. The options must be specified "
  "using the list notation and each list item is passed as a single argument to "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:588
++#: apt.conf.5.xml:605
  msgid "Pre-Invoke"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:588
++#: apt.conf.5.xml:605
  msgid "Post-Invoke"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:589
++#: apt.conf.5.xml:606
  msgid ""
  "This is a list of shell commands to run before/after invoking &dpkg;.  Like "
  "<literal>options</literal> this must be specified in list notation. The "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:595
++#: apt.conf.5.xml:612
  msgid "Pre-Install-Pkgs"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:596
++#: apt.conf.5.xml:613
  msgid ""
  "This is a list of shell commands to run before invoking dpkg. Like "
  "<literal>options</literal> this must be specified in list notation. The "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:602
++#: apt.conf.5.xml:619
  msgid ""
  "Version 2 of this protocol dumps more information, including the protocol "
  "version, the APT configuration space and the packages, files and versions "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:609
++#: apt.conf.5.xml:626
  msgid "Run-Directory"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:610
++#: apt.conf.5.xml:627
  msgid ""
  "APT chdirs to this directory before invoking dpkg, the default is <filename>/"
  "</filename>."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:614
++#: apt.conf.5.xml:631
  msgid "Build-options"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:615
++#: apt.conf.5.xml:632
  msgid ""
  "These options are passed to &dpkg-buildpackage; when compiling packages, the "
  "default is to disable signing and produce all binaries."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><title>
--#: apt.conf.5.xml:620
++#: apt.conf.5.xml:637
  msgid "dpkg trigger usage (and related options)"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
--#: apt.conf.5.xml:621
++#: apt.conf.5.xml:638
  msgid ""
  "APT can call dpkg in a way so it can make aggressive use of triggers over "
  "multiple calls of dpkg. Without further options dpkg will use triggers only "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><literallayout>
--#: apt.conf.5.xml:636
++#: apt.conf.5.xml:653
  #, no-wrap
  msgid ""
  "DPkg::NoTriggers \"true\";\n"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
--#: apt.conf.5.xml:630
++#: apt.conf.5.xml:647
  msgid ""
  "Note that it is not guaranteed that APT will support these options or that "
  "these options will not cause (big) trouble in the future. If you have "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
--#: apt.conf.5.xml:642
++#: apt.conf.5.xml:659
  msgid "DPkg::NoTriggers"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:643
++#: apt.conf.5.xml:660
  msgid ""
  "Add the no triggers flag to all dpkg calls (except the ConfigurePending "
  "call).  See &dpkg; if you are interested in what this actually means. In "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
--#: apt.conf.5.xml:650
++#: apt.conf.5.xml:667
  msgid "PackageManager::Configure"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:651
++#: apt.conf.5.xml:668
  msgid ""
  "Valid values are \"<literal>all</literal>\", \"<literal>smart</literal>\" "
  "and \"<literal>no</literal>\".  \"<literal>all</literal>\" is the default "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
--#: apt.conf.5.xml:661
++#: apt.conf.5.xml:678
  msgid "DPkg::ConfigurePending"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:662
++#: apt.conf.5.xml:679
  msgid ""
  "If this option is set apt will call <command>dpkg --configure --pending</"
  "command> to let dpkg handle all required configurations and triggers. This "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
--#: apt.conf.5.xml:668
++#: apt.conf.5.xml:685
  msgid "DPkg::TriggersPending"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:669
++#: apt.conf.5.xml:686
  msgid ""
  "Useful for <literal>smart</literal> configuration as a package which has "
  "pending triggers is not considered as <literal>installed</literal> and dpkg "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
--#: apt.conf.5.xml:674
++#: apt.conf.5.xml:691
  msgid "PackageManager::UnpackAll"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:675
++#: apt.conf.5.xml:692
  msgid ""
  "As the configuration can be deferred to be done at the end by dpkg it can be "
  "tried to order the unpack series only by critical needs, e.g. by Pre-"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
--#: apt.conf.5.xml:682
++#: apt.conf.5.xml:699
  msgid "OrderList::Score::Immediate"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para><literallayout>
--#: apt.conf.5.xml:690
++#: apt.conf.5.xml:707
  #, no-wrap
  msgid ""
  "OrderList::Score {\n"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:683
++#: apt.conf.5.xml:700
  msgid ""
  "Essential packages (and there dependencies) should be configured immediately "
  "after unpacking. It will be a good idea to do this quite early in the "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><title>
--#: apt.conf.5.xml:703
++#: apt.conf.5.xml:720
  msgid "Periodic and Archives options"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:704
++#: apt.conf.5.xml:721
  msgid ""
  "<literal>APT::Periodic</literal> and <literal>APT::Archives</literal> groups "
  "of options configure behavior of apt periodic updates, which is done by "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><title>
--#: apt.conf.5.xml:712
++#: apt.conf.5.xml:729
  msgid "Debug options"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:714
++#: apt.conf.5.xml:731
  msgid ""
  "Enabling options in the <literal>Debug::</literal> section will cause "
  "debugging information to be sent to the standard error stream of the program "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
--#: apt.conf.5.xml:725
++#: apt.conf.5.xml:742
  msgid ""
  "<literal>Debug::pkgProblemResolver</literal> enables output about the "
  "decisions made by <literal>dist-upgrade, upgrade, install, remove, purge</"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
--#: apt.conf.5.xml:733
++#: apt.conf.5.xml:750
  msgid ""
  "<literal>Debug::NoLocking</literal> disables all file locking.  This can be "
  "used to run some operations (for instance, <literal>apt-get -s install</"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
--#: apt.conf.5.xml:742
++#: apt.conf.5.xml:759
  msgid ""
  "<literal>Debug::pkgDPkgPM</literal> prints out the actual command line each "
  "time that <literal>apt</literal> invokes &dpkg;."
@@@ -5432,120 -5471,120 +5537,120 @@@ msgstr "
  #.       motivating example, except I haven't a clue why you'd want
  #.       to do this. 
  #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
--#: apt.conf.5.xml:750
++#: apt.conf.5.xml:767
  msgid ""
  "<literal>Debug::IdentCdrom</literal> disables the inclusion of statfs data "
  "in CDROM IDs."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:760
++#: apt.conf.5.xml:777
  msgid "A full list of debugging options to apt follows."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:765
++#: apt.conf.5.xml:782
  #, fuzzy
  msgid "<literal>Debug::Acquire::cdrom</literal>"
  msgstr "a linha <literal>Archive:</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:769
++#: apt.conf.5.xml:786
  msgid ""
  "Print information related to accessing <literal>cdrom://</literal> sources."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:776
++#: apt.conf.5.xml:793
  #, fuzzy
  msgid "<literal>Debug::Acquire::ftp</literal>"
  msgstr "a linha <literal>Archive:</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:780
++#: apt.conf.5.xml:797
  msgid "Print information related to downloading packages using FTP."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:787
++#: apt.conf.5.xml:804
  #, fuzzy
  msgid "<literal>Debug::Acquire::http</literal>"
  msgstr "a linha <literal>Archive:</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:791
++#: apt.conf.5.xml:808
  msgid "Print information related to downloading packages using HTTP."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:798
++#: apt.conf.5.xml:815
  #, fuzzy
  msgid "<literal>Debug::Acquire::https</literal>"
  msgstr "a linha <literal>Archive:</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:802
++#: apt.conf.5.xml:819
  msgid "Print information related to downloading packages using HTTPS."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:809
++#: apt.conf.5.xml:826
  #, fuzzy
  msgid "<literal>Debug::Acquire::gpgv</literal>"
  msgstr "a linha <literal>Archive:</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:813
++#: apt.conf.5.xml:830
  msgid ""
  "Print information related to verifying cryptographic signatures using "
  "<literal>gpg</literal>."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:820
++#: apt.conf.5.xml:837
  #, fuzzy
  msgid "<literal>Debug::aptcdrom</literal>"
  msgstr "a linha <literal>Version:</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:824
++#: apt.conf.5.xml:841
  msgid ""
  "Output information about the process of accessing collections of packages "
  "stored on CD-ROMs."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:831
++#: apt.conf.5.xml:848
  #, fuzzy
  msgid "<literal>Debug::BuildDeps</literal>"
  msgstr "a linha <literal>Label:</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:834
++#: apt.conf.5.xml:851
  msgid "Describes the process of resolving build-dependencies in &apt-get;."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:841
++#: apt.conf.5.xml:858
  #, fuzzy
  msgid "<literal>Debug::Hashes</literal>"
  msgstr "a linha <literal>Label:</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:844
++#: apt.conf.5.xml:861
  msgid ""
  "Output each cryptographic hash that is generated by the <literal>apt</"
  "literal> libraries."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:851
++#: apt.conf.5.xml:868
  #, fuzzy
  msgid "<literal>Debug::IdentCDROM</literal>"
  msgstr "a linha <literal>Label:</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:854
++#: apt.conf.5.xml:871
  msgid ""
  "Do not include information from <literal>statfs</literal>, namely the number "
  "of used and free blocks on the CD-ROM filesystem, when generating an ID for "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:862
++#: apt.conf.5.xml:879
  #, fuzzy
  msgid "<literal>Debug::NoLocking</literal>"
  msgstr "a linha <literal>Origin:</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:865
++#: apt.conf.5.xml:882
  msgid ""
  "Disable all file locking.  For instance, this will allow two instances of "
  "<quote><literal>apt-get update</literal></quote> to run at the same time."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:873
++#: apt.conf.5.xml:890
  #, fuzzy
  msgid "<literal>Debug::pkgAcquire</literal>"
  msgstr "a linha <literal>Archive:</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:877
++#: apt.conf.5.xml:894
  msgid "Log when items are added to or removed from the global download queue."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:884
++#: apt.conf.5.xml:901
  #, fuzzy
  msgid "<literal>Debug::pkgAcquire::Auth</literal>"
  msgstr "a linha <literal>Archive:</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:887
++#: apt.conf.5.xml:904
  msgid ""
  "Output status messages and errors related to verifying checksums and "
  "cryptographic signatures of downloaded files."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:894
++#: apt.conf.5.xml:911
  #, fuzzy
  msgid "<literal>Debug::pkgAcquire::Diffs</literal>"
  msgstr "a linha <literal>Archive:</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:897
++#: apt.conf.5.xml:914
  msgid ""
  "Output information about downloading and applying package index list diffs, "
  "and errors relating to package index list diffs."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:905
++#: apt.conf.5.xml:922
  #, fuzzy
  msgid "<literal>Debug::pkgAcquire::RRed</literal>"
  msgstr "a linha <literal>Archive:</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:909
++#: apt.conf.5.xml:926
  msgid ""
  "Output information related to patching apt package lists when downloading "
  "index diffs instead of full indices."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:916
++#: apt.conf.5.xml:933
  #, fuzzy
  msgid "<literal>Debug::pkgAcquire::Worker</literal>"
  msgstr "a linha <literal>Archive:</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:920
++#: apt.conf.5.xml:937
  msgid ""
  "Log all interactions with the sub-processes that actually perform downloads."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:927
++#: apt.conf.5.xml:944
  msgid "<literal>Debug::pkgAutoRemove</literal>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:931
++#: apt.conf.5.xml:948
  msgid ""
  "Log events related to the automatically-installed status of packages and to "
  "the removal of unused packages."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:938
++#: apt.conf.5.xml:955
  msgid "<literal>Debug::pkgDepCache::AutoInstall</literal>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:941
++#: apt.conf.5.xml:958
  msgid ""
  "Generate debug messages describing which packages are being automatically "
  "installed to resolve dependencies.  This corresponds to the initial auto-"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:952
++#: apt.conf.5.xml:969
  msgid "<literal>Debug::pkgDepCache::Marker</literal>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:955
++#: apt.conf.5.xml:972
  msgid ""
  "Generate debug messages describing which package is marked as keep/install/"
  "remove while the ProblemResolver does his work.  Each addition or deletion "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:974
++#: apt.conf.5.xml:991
  #, fuzzy
  msgid "<literal>Debug::pkgInitConfig</literal>"
  msgstr "a linha <literal>Version:</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:977
++#: apt.conf.5.xml:994
  msgid "Dump the default configuration to standard error on startup."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:984
++#: apt.conf.5.xml:1001
  #, fuzzy
  msgid "<literal>Debug::pkgDPkgPM</literal>"
  msgstr "a linha <literal>Package:</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:987
++#: apt.conf.5.xml:1004
  msgid ""
  "When invoking &dpkg;, output the precise command line with which it is being "
  "invoked, with arguments separated by a single space character."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:995
++#: apt.conf.5.xml:1012
  msgid "<literal>Debug::pkgDPkgProgressReporting</literal>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:998
++#: apt.conf.5.xml:1015
  msgid ""
  "Output all the data received from &dpkg; on the status file descriptor and "
  "any errors encountered while parsing it."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:1005
++#: apt.conf.5.xml:1022
  #, fuzzy
  msgid "<literal>Debug::pkgOrderList</literal>"
  msgstr "a linha <literal>Origin:</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:1009
++#: apt.conf.5.xml:1026
  msgid ""
  "Generate a trace of the algorithm that decides the order in which "
  "<literal>apt</literal> should pass packages to &dpkg;."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:1017
++#: apt.conf.5.xml:1034
  #, fuzzy
  msgid "<literal>Debug::pkgPackageManager</literal>"
  msgstr "a linha <literal>Package:</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:1021
++#: apt.conf.5.xml:1038
  msgid ""
  "Output status messages tracing the steps performed when invoking &dpkg;."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:1028
++#: apt.conf.5.xml:1045
  #, fuzzy
  msgid "<literal>Debug::pkgPolicy</literal>"
  msgstr "a linha <literal>Label:</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:1032
++#: apt.conf.5.xml:1049
  msgid "Output the priority of each package list on startup."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:1038
++#: apt.conf.5.xml:1055
  msgid "<literal>Debug::pkgProblemResolver</literal>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:1042
++#: apt.conf.5.xml:1059
  msgid ""
  "Trace the execution of the dependency resolver (this applies only to what "
  "happens when a complex dependency problem is encountered)."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:1050
++#: apt.conf.5.xml:1067
  msgid "<literal>Debug::pkgProblemResolver::ShowScores</literal>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:1053
++#: apt.conf.5.xml:1070
  msgid ""
  "Display a list of all installed packages with their calculated score used by "
  "the pkgProblemResolver. The description of the package is the same as "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
--#: apt.conf.5.xml:1061
++#: apt.conf.5.xml:1078
  #, fuzzy
  msgid "<literal>Debug::sourceList</literal>"
  msgstr "a linha <literal>Version:</literal>"
  
  #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
--#: apt.conf.5.xml:1065
++#: apt.conf.5.xml:1082
  msgid ""
  "Print information about the vendors read from <filename>/etc/apt/vendors."
  "list</filename>."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:1088
++#: apt.conf.5.xml:1105
  msgid ""
  "&configureindex; is a configuration file showing example values for all "
  "possible options."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><variablelist>
--#: apt.conf.5.xml:1095
++#: apt.conf.5.xml:1112
  msgid "&file-aptconf;"
  msgstr ""
  
  #.  ? reading apt.conf 
  #. type: Content of: <refentry><refsect1><para>
--#: apt.conf.5.xml:1100
++#: apt.conf.5.xml:1117
  #, fuzzy
  msgid "&apt-cache;, &apt-config;, &apt-preferences;."
  msgstr "&apt-get; &apt-cache; &apt-conf; &sources-list;"
@@@ -5895,8 -5934,8 +6000,8 @@@ msgstr "
  msgid ""
  "Note that the files in the <filename>/etc/apt/preferences.d</filename> "
  "directory are parsed in alphanumeric ascending order and need to obey the "
--"following naming convention: The files have no or \"<literal>pref</literal>"
--"\" as filename extension and which only contain alphanumeric, hyphen (-), "
++"following naming convention: The files have either no or \"<literal>pref</"
++"literal>\" as filename extension and only contain alphanumeric, hyphen (-), "
  "underscore (_) and period (.) characters.  Otherwise APT will print a notice "
  "that it has ignored a file if the file doesn't match a pattern in the "
  "<literal>Dir::Ignore-Files-Silently</literal> configuration list - in this "
@@@ -6350,19 -6389,78 +6455,78 @@@ msgstr "
  "Pin-Priority: 50\n"
  
  #. type: Content of: <refentry><refsect1><refsect2><title>
- #: apt_preferences.5.xml:263
+ #: apt_preferences.5.xml:262
+ msgid "Regular expressions and glob() syntax"
+ msgstr ""
+ #. type: Content of: <refentry><refsect1><refsect2><para>
+ #: apt_preferences.5.xml:264
+ msgid ""
+ "APT also supports pinning by glob() expressions and regular expressions "
+ "surrounded by /. For example, the following example assigns the priority 500 "
+ "to all packages from experimental where the name starts with gnome (as a glob"
 -"()-like expression or contains the word kde (as a POSIX extended regular "
++"()-like expression) or contains the word kde (as a POSIX extended regular "
+ "expression surrounded by slashes)."
+ msgstr ""
+ #. type: Content of: <refentry><refsect1><refsect2><programlisting>
+ #: apt_preferences.5.xml:273
+ #, fuzzy, no-wrap
+ msgid ""
+ "Package: gnome* /kde/\n"
+ "Pin: release n=experimental\n"
+ "Pin-Priority: 500\n"
+ msgstr ""
+ "<programlisting>\n"
+ "Package: *\n"
+ "Pin: release a=unstable\n"
+ "Pin-Priority: 50\n"
+ #. type: Content of: <refentry><refsect1><refsect2><para>
+ #: apt_preferences.5.xml:279
+ msgid ""
+ "The rule for those expressions is that they can occur anywhere where a "
 -"string can occur. Those, the following pin assigns the priority 990 to all "
++"string can occur. Thus, the following pin assigns the priority 990 to all "
+ "packages from a release starting with karmic."
+ msgstr ""
+ #. type: Content of: <refentry><refsect1><refsect2><programlisting>
+ #: apt_preferences.5.xml:285
+ #, fuzzy, no-wrap
+ msgid ""
+ "Package: *\n"
+ "Pin: release n=karmic*\n"
+ "Pin-Priority: 990\n"
+ msgstr ""
+ "<programlisting>\n"
+ "Package: *\n"
+ "Pin: release a=unstable\n"
+ "Pin-Priority: 50\n"
+ #. type: Content of: <refentry><refsect1><refsect2><literal>
+ #: apt_preferences.5.xml:290
+ msgid "Package"
+ msgstr ""
+ #. type: Content of: <refentry><refsect1><refsect2><literal>
+ #: apt_preferences.5.xml:296
+ msgid "*"
+ msgstr ""
+ #. type: Content of: <refentry><refsect1><refsect2><title>
+ #: apt_preferences.5.xml:306
  #, fuzzy
  msgid "How APT Interprets Priorities"
  msgstr "Como o APT Interpreta Prioridades"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:271
+ #: apt_preferences.5.xml:314
  #, fuzzy
  msgid "P &gt; 1000"
  msgstr "P &gt; 1000"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:272
+ #: apt_preferences.5.xml:315
  #, fuzzy
  msgid ""
  "causes a version to be installed even if this constitutes a downgrade of the "
@@@ -6372,13 -6470,13 +6536,13 @@@ msgstr "
  "dowgrade do pacote"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:276
+ #: apt_preferences.5.xml:319
  #, fuzzy
  msgid "990 &lt; P &lt;=1000"
  msgstr "990 &lt; P &lt;=1000"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:277
+ #: apt_preferences.5.xml:320
  #, fuzzy
  msgid ""
  "causes a version to be installed even if it does not come from the target "
@@@ -6388,13 -6486,13 +6552,13 @@@ msgstr "
  "versão alvo, a menos que a versão instalada seja mais recente"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:282
+ #: apt_preferences.5.xml:325
  #, fuzzy
  msgid "500 &lt; P &lt;=990"
  msgstr "500 &lt; P &lt;=990"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:283
+ #: apt_preferences.5.xml:326
  #, fuzzy
  msgid ""
  "causes a version to be installed unless there is a version available "
@@@ -6404,13 -6502,13 +6568,13 @@@ msgstr "
  "disponível pertencente a versão alvo ou a versão instalada seja mais recente"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:288
+ #: apt_preferences.5.xml:331
  #, fuzzy
  msgid "100 &lt; P &lt;=500"
  msgstr "100 &lt; P &lt;=500"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:289
+ #: apt_preferences.5.xml:332
  #, fuzzy
  msgid ""
  "causes a version to be installed unless there is a version available "
@@@ -6421,13 -6519,13 +6585,13 @@@ msgstr "
  "seja mais recente"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:294
+ #: apt_preferences.5.xml:337
  #, fuzzy
  msgid "0 &lt; P &lt;=100"
  msgstr "0 &lt;= P &lt;=100"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:295
+ #: apt_preferences.5.xml:338
  #, fuzzy
  msgid ""
  "causes a version to be installed only if there is no installed version of "
@@@ -6437,19 -6535,19 +6601,19 @@@ msgstr "
  "instalada do pacote"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:299
+ #: apt_preferences.5.xml:342
  #, fuzzy
  msgid "P &lt; 0"
  msgstr "P &lt; 0"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:300
+ #: apt_preferences.5.xml:343
  #, fuzzy
  msgid "prevents the version from being installed"
  msgstr "impede a versão de ser instalada"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:266
+ #: apt_preferences.5.xml:309
  #, fuzzy
  msgid ""
  "Priorities (P) assigned in the APT preferences file must be positive or "
@@@ -6461,7 -6559,7 +6625,7 @@@ msgstr "
  "seguir (a grosso modo):"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:305
+ #: apt_preferences.5.xml:348
  #, fuzzy
  msgid ""
  "If any specific-form records match an available package version then the "
@@@ -6477,7 -6575,7 +6641,7 @@@ msgstr "
  "determinará a prioridade da versão do pacote."
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:311
+ #: apt_preferences.5.xml:354
  #, fuzzy
  msgid ""
  "For example, suppose the APT preferences file contains the three records "
@@@ -6487,7 -6585,7 +6651,7 @@@ msgstr "
  "registros apresentados anteriormente :"
  
  #. type: Content of: <refentry><refsect1><refsect2><programlisting>
- #: apt_preferences.5.xml:315
+ #: apt_preferences.5.xml:358
  #, fuzzy, no-wrap
  msgid ""
  "Package: perl\n"
@@@ -6516,12 -6614,12 +6680,12 @@@ msgstr "
  "Pin-Priority: 50\n"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:328
+ #: apt_preferences.5.xml:371
  msgid "Then:"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
- #: apt_preferences.5.xml:330
+ #: apt_preferences.5.xml:373
  #, fuzzy
  msgid ""
  "The most recent available version of the <literal>perl</literal> package "
@@@ -6537,7 -6635,7 +6701,7 @@@ msgstr "
  "será feito um downgrade do <literal>perl</literal>."
  
  #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
- #: apt_preferences.5.xml:335
+ #: apt_preferences.5.xml:378
  #, fuzzy
  msgid ""
  "A version of any package other than <literal>perl</literal> that is "
@@@ -6549,7 -6647,7 +6713,7 @@@ msgstr "
  "mesmo versões pertencentes a versão alvo."
  
  #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara>
- #: apt_preferences.5.xml:339
+ #: apt_preferences.5.xml:382
  #, fuzzy
  msgid ""
  "A version of a package whose origin is not the local system but some other "
@@@ -6564,13 -6662,13 +6728,13 @@@ msgstr "
  "instalada."
  
  #. type: Content of: <refentry><refsect1><refsect2><title>
- #: apt_preferences.5.xml:349
+ #: apt_preferences.5.xml:392
  #, fuzzy
  msgid "Determination of Package Version and Distribution Properties"
  msgstr "Determinação da Versão do Pacote e Propriedades da Distribuição"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:351
+ #: apt_preferences.5.xml:394
  #, fuzzy
  msgid ""
  "The locations listed in the &sources-list; file should provide "
@@@ -6582,31 -6680,31 +6746,31 @@@ msgstr "
  "os pacotes disponíveis nessas localidades."
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:363
+ #: apt_preferences.5.xml:406
  #, fuzzy
  msgid "the <literal>Package:</literal> line"
  msgstr "a linha <literal>Package:</literal>"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:364
+ #: apt_preferences.5.xml:407
  #, fuzzy
  msgid "gives the package name"
  msgstr "informa o nome do pacote"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:367 apt_preferences.5.xml:417
+ #: apt_preferences.5.xml:410 apt_preferences.5.xml:460
  #, fuzzy
  msgid "the <literal>Version:</literal> line"
  msgstr "a linha <literal>Version:</literal>"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:368
+ #: apt_preferences.5.xml:411
  #, fuzzy
  msgid "gives the version number for the named package"
  msgstr "informa o número de versão do pacote"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:355
+ #: apt_preferences.5.xml:398
  #, fuzzy
  msgid ""
  "The <filename>Packages</filename> file is normally found in the directory "
@@@ -6628,13 -6726,13 +6792,13 @@@ msgstr "
  "do APT :"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:384
+ #: apt_preferences.5.xml:427
  #, fuzzy
  msgid "the <literal>Archive:</literal> or <literal>Suite:</literal> line"
  msgstr "a linha <literal>Archive:</literal>"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:385
+ #: apt_preferences.5.xml:428
  #, fuzzy
  msgid ""
  "names the archive to which all the packages in the directory tree belong.  "
@@@ -6652,7 -6750,7 +6816,7 @@@ msgstr "
  "requerer a linha :"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
- #: apt_preferences.5.xml:395
+ #: apt_preferences.5.xml:438
  #, fuzzy, no-wrap
  msgid "Pin: release a=stable\n"
  msgstr ""
  "Pin: release a=stable\n"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:401
+ #: apt_preferences.5.xml:444
  #, fuzzy
  msgid "the <literal>Codename:</literal> line"
  msgstr "a linha <literal>Component:</literal>"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:402
+ #: apt_preferences.5.xml:445
  #, fuzzy
  msgid ""
  "names the codename to which all the packages in the directory tree belong.  "
@@@ -6684,7 -6782,7 +6848,7 @@@ msgstr "
  "requerer a linha :"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
- #: apt_preferences.5.xml:411
+ #: apt_preferences.5.xml:454
  #, fuzzy, no-wrap
  msgid "Pin: release n=&testing-codename;\n"
  msgstr ""
  "Pin: release a=stable\n"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:418
+ #: apt_preferences.5.xml:461
  #, fuzzy
  msgid ""
  "names the release version.  For example, the packages in the tree might "
@@@ -6709,7 -6807,7 +6873,7 @@@ msgstr "
  "das linhas a seguir."
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
- #: apt_preferences.5.xml:427
+ #: apt_preferences.5.xml:470
  #, fuzzy, no-wrap
  msgid ""
  "Pin: release v=3.0\n"
@@@ -6722,13 -6820,13 +6886,13 @@@ msgstr "
  "Pin: release 3.0\n"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:436
+ #: apt_preferences.5.xml:479
  #, fuzzy
  msgid "the <literal>Component:</literal> line"
  msgstr "a linha <literal>Component:</literal>"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:437
+ #: apt_preferences.5.xml:480
  #, fuzzy
  msgid ""
  "names the licensing component associated with the packages in the directory "
@@@ -6747,7 -6845,7 +6911,7 @@@ msgstr "
  "requerer a linha :"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
- #: apt_preferences.5.xml:446
+ #: apt_preferences.5.xml:489
  #, fuzzy, no-wrap
  msgid "Pin: release c=main\n"
  msgstr ""
  "Pin: release c=main\n"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:452
+ #: apt_preferences.5.xml:495
  #, fuzzy
  msgid "the <literal>Origin:</literal> line"
  msgstr "a linha <literal>Origin:</literal>"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:453
+ #: apt_preferences.5.xml:496
  #, fuzzy
  msgid ""
  "names the originator of the packages in the directory tree of the "
@@@ -6775,7 -6873,7 +6939,7 @@@ msgstr "
  "requerer a linha :"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
- #: apt_preferences.5.xml:459
+ #: apt_preferences.5.xml:502
  #, fuzzy, no-wrap
  msgid "Pin: release o=Debian\n"
  msgstr ""
  "Pin: release o=Debian\n"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term>
- #: apt_preferences.5.xml:465
+ #: apt_preferences.5.xml:508
  #, fuzzy
  msgid "the <literal>Label:</literal> line"
  msgstr "a linha <literal>Label:</literal>"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara>
- #: apt_preferences.5.xml:466
+ #: apt_preferences.5.xml:509
  #, fuzzy
  msgid ""
  "names the label of the packages in the directory tree of the "
@@@ -6802,7 -6900,7 +6966,7 @@@ msgstr "
  "arquivo de preferências do APT iria requerer a linha :"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting>
- #: apt_preferences.5.xml:472
+ #: apt_preferences.5.xml:515
  #, fuzzy, no-wrap
  msgid "Pin: release l=Debian\n"
  msgstr ""
  "Pin: release l=Debian\n"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:373
+ #: apt_preferences.5.xml:416
  #, fuzzy
  msgid ""
  "The <filename>Release</filename> file is normally found in the directory "
@@@ -6834,7 -6932,7 +6998,7 @@@ msgstr "
  "do APT :"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:479
+ #: apt_preferences.5.xml:522
  #, fuzzy
  msgid ""
  "All of the <filename>Packages</filename> and <filename>Release</filename> "
@@@ -6860,13 -6958,13 +7024,13 @@@ msgstr "
  "<literal>unstable</literal>."
  
  #. type: Content of: <refentry><refsect1><refsect2><title>
- #: apt_preferences.5.xml:492
+ #: apt_preferences.5.xml:535
  #, fuzzy
  msgid "Optional Lines in an APT Preferences Record"
  msgstr "Linhas Opcionais em um Registro de Preferências do APT"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:494
+ #: apt_preferences.5.xml:537
  #, fuzzy
  msgid ""
  "Each record in the APT preferences file can optionally begin with one or "
@@@ -6878,13 -6976,13 +7042,13 @@@ msgstr "
  "</literal>. Isto oferece um local para inserir comentários."
  
  #. type: Content of: <refentry><refsect1><refsect2><title>
- #: apt_preferences.5.xml:503
+ #: apt_preferences.5.xml:546
  #, fuzzy
  msgid "Tracking Stable"
  msgstr "Acompanhando a Stable"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
- #: apt_preferences.5.xml:511
+ #: apt_preferences.5.xml:554
  #, fuzzy, no-wrap
  msgid ""
  "Explanation: Uninstall or do not install any Debian-originated\n"
@@@ -6909,7 -7007,7 +7073,7 @@@ msgstr "
  "Pin-Priority: -10\n"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:505
+ #: apt_preferences.5.xml:548
  #, fuzzy
  msgid ""
  "The following APT preferences file will cause APT to assign a priority "
@@@ -6925,8 -7023,8 +7089,8 @@@ msgstr "
  "outras distribuições <literal>Debian</literal>."
  
  #. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
- #: apt_preferences.5.xml:528 apt_preferences.5.xml:574
- #: apt_preferences.5.xml:632
+ #: apt_preferences.5.xml:571 apt_preferences.5.xml:617
+ #: apt_preferences.5.xml:675
  #, fuzzy, no-wrap
  msgid ""
  "apt-get install <replaceable>package-name</replaceable>\n"
@@@ -6939,7 -7037,7 +7103,7 @@@ msgstr "
  "apt-get dist-upgrade\n"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:523
+ #: apt_preferences.5.xml:566
  #, fuzzy
  msgid ""
  "With a suitable &sources-list; file and the above preferences file, any of "
@@@ -6952,7 -7050,7 +7116,7 @@@ msgstr "
  "ulítma(s) versão(ôes) <literal>stable</literal>."
  
  #. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
- #: apt_preferences.5.xml:540
+ #: apt_preferences.5.xml:583
  #, fuzzy, no-wrap
  msgid "apt-get install <replaceable>package</replaceable>/testing\n"
  msgstr ""
  "apt-get install <replaceable>pacote</replaceable>/testing\n"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:534
+ #: apt_preferences.5.xml:577
  #, fuzzy
  msgid ""
  "The following command will cause APT to upgrade the specified package to the "
@@@ -6973,13 -7071,13 +7137,13 @@@ msgstr "
  "atualizado novamente a menos que esse comando seja executado novamente."
  
  #. type: Content of: <refentry><refsect1><refsect2><title>
- #: apt_preferences.5.xml:546
+ #: apt_preferences.5.xml:589
  #, fuzzy
  msgid "Tracking Testing or Unstable"
  msgstr "Acompanhando a Testing"
  
  #. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
- #: apt_preferences.5.xml:555
+ #: apt_preferences.5.xml:598
  #, fuzzy, no-wrap
  msgid ""
  "Package: *\n"
@@@ -7008,7 -7106,7 +7172,7 @@@ msgstr "
  "Pin-Priority: -10\n"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:548
+ #: apt_preferences.5.xml:591
  #, fuzzy
  msgid ""
  "The following APT preferences file will cause APT to assign a high priority "
@@@ -7025,7 -7123,7 +7189,7 @@@ msgstr "
  "versões de pacotes de outras distribuições <literal>Debian</literal>."
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:569
+ #: apt_preferences.5.xml:612
  #, fuzzy
  msgid ""
  "With a suitable &sources-list; file and the above preferences file, any of "
@@@ -7038,7 -7136,7 +7202,7 @@@ msgstr "
  "(s) última(s) versão(ões) <literal>testing</literal>."
  
  #. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
- #: apt_preferences.5.xml:589
+ #: apt_preferences.5.xml:632
  #, fuzzy, no-wrap
  msgid "apt-get install <replaceable>package</replaceable>/unstable\n"
  msgstr ""
  "apt-get install <replaceable>pacote</replaceable>/unstable\n"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:580
+ #: apt_preferences.5.xml:623
  #, fuzzy
  msgid ""
  "The following command will cause APT to upgrade the specified package to the "
@@@ -7066,12 -7164,12 +7230,12 @@@ msgstr "
  "recente que a versão instalada."
  
  #. type: Content of: <refentry><refsect1><refsect2><title>
- #: apt_preferences.5.xml:596
+ #: apt_preferences.5.xml:639
  msgid "Tracking the evolution of a codename release"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
- #: apt_preferences.5.xml:610
+ #: apt_preferences.5.xml:653
  #, fuzzy, no-wrap
  msgid ""
  "Explanation: Uninstall or do not install any Debian-originated package versions\n"
@@@ -7101,7 -7199,7 +7265,7 @@@ msgstr "
  "Pin-Priority: -10\n"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:598
+ #: apt_preferences.5.xml:641
  msgid ""
  "The following APT preferences file will cause APT to assign a priority "
  "higher than the default (500) to all package versions belonging to a "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:627
+ #: apt_preferences.5.xml:670
  #, fuzzy
  msgid ""
  "With a suitable &sources-list; file and the above preferences file, any of "
@@@ -7129,7 -7227,7 +7293,7 @@@ msgstr "
  "ulítma(s) versão(ôes) <literal>stable</literal>."
  
  #. type: Content of: <refentry><refsect1><refsect2><para><programlisting>
- #: apt_preferences.5.xml:647
+ #: apt_preferences.5.xml:690
  #, fuzzy, no-wrap
  msgid "apt-get install <replaceable>package</replaceable>/sid\n"
  msgstr ""
  "apt-get install <replaceable>pacote</replaceable>/testing\n"
  
  #. type: Content of: <refentry><refsect1><refsect2><para>
- #: apt_preferences.5.xml:638
+ #: apt_preferences.5.xml:681
  #, fuzzy
  msgid ""
  "The following command will cause APT to upgrade the specified package to the "
@@@ -7157,13 -7255,13 +7321,13 @@@ msgstr "
  "recente que a versão instalada."
  
  #. type: Content of: <refentry><refsect1><variablelist>
- #: apt_preferences.5.xml:656
+ #: apt_preferences.5.xml:699
  #, fuzzy
  msgid "&file-preferences;"
  msgstr "apt_preferences"
  
  #. type: Content of: <refentry><refsect1><para>
- #: apt_preferences.5.xml:662
+ #: apt_preferences.5.xml:705
  #, fuzzy
  msgid "&apt-get; &apt-cache; &apt-conf; &sources-list;"
  msgstr "&apt-get; &apt-cache; &apt-conf; &sources-list;"
@@@ -7248,7 -7346,7 +7412,7 @@@ msgstr "
  #. type: Content of: <refentry><refsect1><literallayout>
  #: sources.list.5.xml:81
  #, no-wrap
--msgid "deb uri distribution [component1] [component2] [...]"
++msgid "deb [ options ] uri distribution [component1] [component2] [...]"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
@@@ -7293,6 -7391,6 +7457,38 @@@ msgstr "
  #. type: Content of: <refentry><refsect1><para>
  #: sources.list.5.xml:112
  msgid ""
++"<literal>options</literal> is always optional and needs to be surounded by "
++"square brackets. It can consist of multiple settings in the form "
++"<literal><replaceable>setting</replaceable>=<replaceable>value</"
++"replaceable></literal>.  Multiple settings are separated by spaces. The "
++"following settings are supported by APT, note through that unsupported "
++"settings will be ignored silently:"
++msgstr ""
++
++#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
++#: sources.list.5.xml:117
++msgid ""
++"<literal>arch=<replaceable>arch1</replaceable>,<replaceable>arch2</"
++"replaceable>,…</literal> can be used to specify for which architectures "
++"packages information should be downloaded. If this option is not set all "
++"architectures defined by the <literal>APT::Architectures</literal> option "
++"will be downloaded."
++msgstr ""
++
++#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
++#: sources.list.5.xml:121
++msgid ""
++"<literal>trusted=yes</literal> can be set to indicate that packages from "
++"this source are always authenificated even if the <filename>Release</"
++"filename> file is not signed or the signature can't be checked. This "
++"disables parts of &apt-secure; and should therefore only be used in a local "
++"and trusted context. <literal>trusted=no</literal> is the opposite which "
++"handles even correctly authenificated sources as not authenificated."
++msgstr ""
++
++#. type: Content of: <refentry><refsect1><para>
++#: sources.list.5.xml:128
++msgid ""
  "It is important to list sources in order of preference, with the most "
  "preferred source listed first. Typically this will result in sorting by "
  "speed from fastest to slowest (CD-ROM followed by hosts on a local network, "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: sources.list.5.xml:117
++#: sources.list.5.xml:133
  #, fuzzy
  msgid "Some examples:"
  msgstr "Exemplos"
  
  #. type: Content of: <refentry><refsect1><literallayout>
--#: sources.list.5.xml:119
++#: sources.list.5.xml:135
  #, no-wrap
  msgid ""
  "deb http://ftp.debian.org/debian &stable-codename; main contrib non-free\n"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><title>
--#: sources.list.5.xml:125
++#: sources.list.5.xml:141
  msgid "URI specification"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: sources.list.5.xml:130
++#: sources.list.5.xml:146
  msgid "file"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: sources.list.5.xml:132
++#: sources.list.5.xml:148
  msgid ""
  "The file scheme allows an arbitrary directory in the file system to be "
  "considered an archive. This is useful for NFS mounts and local mirrors or "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: sources.list.5.xml:139
++#: sources.list.5.xml:155
  msgid ""
  "The cdrom scheme allows APT to use a local CDROM drive with media swapping. "
  "Use the &apt-cdrom; program to create cdrom entries in the source list."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: sources.list.5.xml:146
++#: sources.list.5.xml:162
  msgid ""
  "The http scheme specifies an HTTP server for the archive. If an environment "
  "variable <envar>http_proxy</envar> is set with the format http://server:"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: sources.list.5.xml:157
++#: sources.list.5.xml:173
  msgid ""
  "The ftp scheme specifies an FTP server for the archive. APT's FTP behavior "
  "is highly configurable; for more information see the &apt-conf; manual page. "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: sources.list.5.xml:166
++#: sources.list.5.xml:182
  msgid "copy"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: sources.list.5.xml:168
++#: sources.list.5.xml:184
  msgid ""
  "The copy scheme is identical to the file scheme except that packages are "
  "copied into the cache directory instead of used directly at their location.  "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: sources.list.5.xml:173
++#: sources.list.5.xml:189
  msgid "rsh"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: sources.list.5.xml:173
++#: sources.list.5.xml:189
  msgid "ssh"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: sources.list.5.xml:175
++#: sources.list.5.xml:191
  msgid ""
  "The rsh/ssh method invokes rsh/ssh to connect to a remote host as a given "
  "user and access the files. It is a good idea to do prior arrangements with "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term>
--#: sources.list.5.xml:183
++#: sources.list.5.xml:199
  msgid "more recognizable URI types"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para>
--#: sources.list.5.xml:185
++#: sources.list.5.xml:201
  msgid ""
  "APT can be extended with more methods shipped in other optional packages "
  "which should follow the nameing scheme <literal>apt-transport-"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: sources.list.5.xml:127
++#: sources.list.5.xml:143
  msgid ""
  "The currently recognized URI types are cdrom, file, http, ftp, copy, ssh, "
  "rsh.  <placeholder type=\"variablelist\" id=\"0\"/>"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: sources.list.5.xml:199
++#: sources.list.5.xml:215
  msgid ""
  "Uses the archive stored locally (or NFS mounted) at /home/jason/debian for "
  "stable/main, stable/contrib, and stable/non-free."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><literallayout>
--#: sources.list.5.xml:201
++#: sources.list.5.xml:217
  #, no-wrap
  msgid "deb file:/home/jason/debian stable main contrib non-free"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: sources.list.5.xml:203
++#: sources.list.5.xml:219
  msgid "As above, except this uses the unstable (development) distribution."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><literallayout>
--#: sources.list.5.xml:204
++#: sources.list.5.xml:220
  #, no-wrap
  msgid "deb file:/home/jason/debian unstable main contrib non-free"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: sources.list.5.xml:206
++#: sources.list.5.xml:222
  msgid "Source line for the above"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><literallayout>
--#: sources.list.5.xml:207
++#: sources.list.5.xml:223
  #, no-wrap
  msgid "deb-src file:/home/jason/debian unstable main contrib non-free"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: sources.list.5.xml:209
++#: sources.list.5.xml:225
++msgid ""
++"The first line gets package information for the architectures in "
++"<literal>APT::Architectures</literal> while the second always retrieves "
++"<literal>amd64</literal> and <literal>armel</literal>."
++msgstr ""
++
++#. type: Content of: <refentry><refsect1><literallayout>
++#: sources.list.5.xml:227
++#, no-wrap
++msgid ""
++"deb http://ftp.debian.org/debian &stable-codename; main\n"
++"deb [ arch=amd64,armel ] http://ftp.debian.org/debian &stable-codename; main"
++msgstr ""
++
++#. type: Content of: <refentry><refsect1><para>
++#: sources.list.5.xml:230
  msgid ""
  "Uses HTTP to access the archive at archive.debian.org, and uses only the "
  "hamm/main area."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><literallayout>
--#: sources.list.5.xml:211
++#: sources.list.5.xml:232
  #, no-wrap
  msgid "deb http://archive.debian.org/debian-archive hamm main"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: sources.list.5.xml:213
++#: sources.list.5.xml:234
  msgid ""
  "Uses FTP to access the archive at ftp.debian.org, under the debian "
  "directory, and uses only the &stable-codename;/contrib area."
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><literallayout>
--#: sources.list.5.xml:215
++#: sources.list.5.xml:236
  #, no-wrap
  msgid "deb ftp://ftp.debian.org/debian &stable-codename; contrib"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: sources.list.5.xml:217
++#: sources.list.5.xml:238
  msgid ""
  "Uses FTP to access the archive at ftp.debian.org, under the debian "
  "directory, and uses only the unstable/contrib area. If this line appears as "
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><literallayout>
--#: sources.list.5.xml:221
++#: sources.list.5.xml:242
  #, no-wrap
  msgid "deb ftp://ftp.debian.org/debian unstable contrib"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para><literallayout>
--#: sources.list.5.xml:230
++#: sources.list.5.xml:251
  #, no-wrap
  msgid "deb http://ftp.tlh.debian.org/universe unstable/binary-$(ARCH)/"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: sources.list.5.xml:223
++#: sources.list.5.xml:244
  msgid ""
  "Uses HTTP to access the archive at ftp.tlh.debian.org, under the universe "
  "directory, and uses only files found under <filename>unstable/binary-i386</"
  msgstr ""
  
  #. type: Content of: <refentry><refsect1><para>
--#: sources.list.5.xml:235
++#: sources.list.5.xml:256
  #, fuzzy
  msgid "&apt-cache; &apt-conf;"
  msgstr "&apt-get; &apt-cache; &apt-conf; &sources-list;"
@@@ -8593,10 -8691,10 +8805,6 @@@ msgstr "
  #~ "menos o último valor especificado em uma linha iniciando com <literal>Pin-"
  #~ "Priority: release ...</literal>."
  
--#, fuzzy
--#~ msgid "<filename>/etc/apt/trusted.gpg</filename>"
--#~ msgstr "<filename>/etc/apt.conf</>"
--
  #, fuzzy
  #~ msgid "/usr/share/doc/apt/"
  #~ msgstr "/usr/share/doc/apt/"
diff --combined po/apt-all.pot
index 245ffce915025afbfc77025a3c782f636274b790,8e4d9d62be6f58268f2267aaca2e9c8d82bb62fa..c655eb9a6423ca2e7b055d9e392c86feaab46a76
@@@ -7,7 -7,7 +7,7 @@@ msgid "
  msgstr ""
  "Project-Id-Version: PACKAGE VERSION\n"
  "Report-Msgid-Bugs-To: \n"
- "POT-Creation-Date: 2011-07-14 11:38+0200\n"
 -"POT-Creation-Date: 2011-10-30 13:46-0500\n"
++"POT-Creation-Date: 2011-11-10 16:46+0100\n"
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
  "Language-Team: LANGUAGE <LL@li.org>\n"
  "Content-Transfer-Encoding: 8bit\n"
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
  
- #: cmdline/apt-cache.cc:154
+ #: cmdline/apt-cache.cc:158
  #, c-format
  msgid "Package %s version %s has an unmet dep:\n"
  msgstr ""
  
- #: cmdline/apt-cache.cc:282
+ #: cmdline/apt-cache.cc:286
  msgid "Total package names: "
  msgstr ""
  
- #: cmdline/apt-cache.cc:284
+ #: cmdline/apt-cache.cc:288
  msgid "Total package structures: "
  msgstr ""
  
- #: cmdline/apt-cache.cc:324
+ #: cmdline/apt-cache.cc:328
  msgid "  Normal packages: "
  msgstr ""
  
- #: cmdline/apt-cache.cc:325
+ #: cmdline/apt-cache.cc:329
  msgid "  Pure virtual packages: "
  msgstr ""
  
- #: cmdline/apt-cache.cc:326
+ #: cmdline/apt-cache.cc:330
  msgid "  Single virtual packages: "
  msgstr ""
  
- #: cmdline/apt-cache.cc:327
+ #: cmdline/apt-cache.cc:331
  msgid "  Mixed virtual packages: "
  msgstr ""
  
- #: cmdline/apt-cache.cc:328
+ #: cmdline/apt-cache.cc:332
  msgid "  Missing: "
  msgstr ""
  
- #: cmdline/apt-cache.cc:330
+ #: cmdline/apt-cache.cc:334
  msgid "Total distinct versions: "
  msgstr ""
  
- #: cmdline/apt-cache.cc:332
+ #: cmdline/apt-cache.cc:336
  msgid "Total distinct descriptions: "
  msgstr ""
  
- #: cmdline/apt-cache.cc:334
+ #: cmdline/apt-cache.cc:338
  msgid "Total dependencies: "
  msgstr ""
  
- #: cmdline/apt-cache.cc:337
+ #: cmdline/apt-cache.cc:341
  msgid "Total ver/file relations: "
  msgstr ""
  
- #: cmdline/apt-cache.cc:339
+ #: cmdline/apt-cache.cc:343
  msgid "Total Desc/File relations: "
  msgstr ""
  
- #: cmdline/apt-cache.cc:341
+ #: cmdline/apt-cache.cc:345
  msgid "Total Provides mappings: "
  msgstr ""
  
- #: cmdline/apt-cache.cc:353
+ #: cmdline/apt-cache.cc:357
  msgid "Total globbed strings: "
  msgstr ""
  
- #: cmdline/apt-cache.cc:367
+ #: cmdline/apt-cache.cc:371
  msgid "Total dependency version space: "
  msgstr ""
  
- #: cmdline/apt-cache.cc:372
+ #: cmdline/apt-cache.cc:376
  msgid "Total slack space: "
  msgstr ""
  
- #: cmdline/apt-cache.cc:380
+ #: cmdline/apt-cache.cc:384
  msgid "Total space accounted for: "
  msgstr ""
  
- #: cmdline/apt-cache.cc:511 cmdline/apt-cache.cc:1139
+ #: cmdline/apt-cache.cc:515 cmdline/apt-cache.cc:1143
  #, c-format
  msgid "Package file %s is out of sync."
  msgstr ""
  
- #: cmdline/apt-cache.cc:589 cmdline/apt-cache.cc:1374
- #: cmdline/apt-cache.cc:1376 cmdline/apt-cache.cc:1453 cmdline/apt-mark.cc:37
- #: cmdline/apt-mark.cc:84 cmdline/apt-mark.cc:160
+ #: cmdline/apt-cache.cc:593 cmdline/apt-cache.cc:1378
+ #: cmdline/apt-cache.cc:1380 cmdline/apt-cache.cc:1457 cmdline/apt-mark.cc:39
+ #: cmdline/apt-mark.cc:86 cmdline/apt-mark.cc:162
  msgid "No packages found"
  msgstr ""
  
- #: cmdline/apt-cache.cc:1218
+ #: cmdline/apt-cache.cc:1222
  msgid "You must give at least one search pattern"
  msgstr ""
  
- #: cmdline/apt-cache.cc:1353
+ #: cmdline/apt-cache.cc:1357
  msgid "This command is deprecated. Please use 'apt-mark showauto' instead."
  msgstr ""
  
- #: cmdline/apt-cache.cc:1448 apt-pkg/cacheset.cc:440
+ #: cmdline/apt-cache.cc:1452 apt-pkg/cacheset.cc:445
  #, c-format
  msgid "Unable to locate package %s"
  msgstr ""
  
- #: cmdline/apt-cache.cc:1478
+ #: cmdline/apt-cache.cc:1482
  msgid "Package files:"
  msgstr ""
  
- #: cmdline/apt-cache.cc:1485 cmdline/apt-cache.cc:1576
+ #: cmdline/apt-cache.cc:1489 cmdline/apt-cache.cc:1580
  msgid "Cache is out of sync, can't x-ref a package file"
  msgstr ""
  
  #. Show any packages have explicit pins
- #: cmdline/apt-cache.cc:1499
+ #: cmdline/apt-cache.cc:1503
  msgid "Pinned packages:"
  msgstr ""
  
- #: cmdline/apt-cache.cc:1511 cmdline/apt-cache.cc:1556
+ #: cmdline/apt-cache.cc:1515 cmdline/apt-cache.cc:1560
  msgid "(not found)"
  msgstr ""
  
- #: cmdline/apt-cache.cc:1519
+ #: cmdline/apt-cache.cc:1523
  msgid "  Installed: "
  msgstr ""
  
- #: cmdline/apt-cache.cc:1520
+ #: cmdline/apt-cache.cc:1524
  msgid "  Candidate: "
  msgstr ""
  
- #: cmdline/apt-cache.cc:1538 cmdline/apt-cache.cc:1546
+ #: cmdline/apt-cache.cc:1542 cmdline/apt-cache.cc:1550
  msgid "(none)"
  msgstr ""
  
- #: cmdline/apt-cache.cc:1553
+ #: cmdline/apt-cache.cc:1557
  msgid "  Package pin: "
  msgstr ""
  
  #. Show the priority tables
- #: cmdline/apt-cache.cc:1562
+ #: cmdline/apt-cache.cc:1566
  msgid "  Version table:"
  msgstr ""
  
- #: cmdline/apt-cache.cc:1675 cmdline/apt-cdrom.cc:197 cmdline/apt-config.cc:73
- #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:589
- #: cmdline/apt-get.cc:3125 cmdline/apt-mark.cc:264 cmdline/apt-sortpkgs.cc:144
+ #: cmdline/apt-cache.cc:1679 cmdline/apt-cdrom.cc:199 cmdline/apt-config.cc:75
+ #: cmdline/apt-extracttemplates.cc:227 ftparchive/apt-ftparchive.cc:590
 -#: cmdline/apt-get.cc:3244 cmdline/apt-internal-solver.cc:32
++#: cmdline/apt-get.cc:3247 cmdline/apt-internal-solver.cc:32
+ #: cmdline/apt-mark.cc:266 cmdline/apt-sortpkgs.cc:147
  #, c-format
  msgid "%s %s for %s compiled on %s %s\n"
  msgstr ""
  
- #: cmdline/apt-cache.cc:1682
+ #: cmdline/apt-cache.cc:1686
  msgid ""
  "Usage: apt-cache [options] command\n"
  "       apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
  "See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
  msgstr ""
  
- #: cmdline/apt-cdrom.cc:77
+ #: cmdline/apt-cdrom.cc:79
  msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'"
  msgstr ""
  
- #: cmdline/apt-cdrom.cc:92
+ #: cmdline/apt-cdrom.cc:94
  msgid "Please insert a Disc in the drive and press enter"
  msgstr ""
  
- #: cmdline/apt-cdrom.cc:127
+ #: cmdline/apt-cdrom.cc:129
  #, c-format
  msgid "Failed to mount '%s' to '%s'"
  msgstr ""
  
- #: cmdline/apt-cdrom.cc:162
+ #: cmdline/apt-cdrom.cc:164
  msgid "Repeat this process for the rest of the CDs in your set."
  msgstr ""
  
- #: cmdline/apt-config.cc:44
+ #: cmdline/apt-config.cc:46
  msgid "Arguments not in pairs"
  msgstr ""
  
- #: cmdline/apt-config.cc:79
+ #: cmdline/apt-config.cc:81
  msgid ""
  "Usage: apt-config [options] command\n"
  "\n"
  "  -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  msgstr ""
  
- #: cmdline/apt-extracttemplates.cc:98
+ #: cmdline/apt-extracttemplates.cc:100
  #, c-format
  msgid "%s not a valid DEB package."
  msgstr ""
  
- #: cmdline/apt-extracttemplates.cc:232
+ #: cmdline/apt-extracttemplates.cc:234
  msgid ""
  "Usage: apt-extracttemplates file1 [file2 ...]\n"
  "\n"
  "  -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  msgstr ""
  
- #: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:1149
+ #: cmdline/apt-extracttemplates.cc:269 apt-pkg/pkgcachegen.cc:1269
  #, c-format
  msgid "Unable to write to %s"
  msgstr ""
  
- #: cmdline/apt-extracttemplates.cc:309
+ #: cmdline/apt-extracttemplates.cc:311
  msgid "Cannot get debconf version. Is debconf installed?"
  msgstr ""
  
- #: ftparchive/apt-ftparchive.cc:170 ftparchive/apt-ftparchive.cc:347
+ #: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:348
  msgid "Package extension list is too long"
  msgstr ""
  
- #: ftparchive/apt-ftparchive.cc:172 ftparchive/apt-ftparchive.cc:189
- #: ftparchive/apt-ftparchive.cc:212 ftparchive/apt-ftparchive.cc:262
- #: ftparchive/apt-ftparchive.cc:276 ftparchive/apt-ftparchive.cc:298
+ #: ftparchive/apt-ftparchive.cc:173 ftparchive/apt-ftparchive.cc:190
+ #: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:263
+ #: ftparchive/apt-ftparchive.cc:277 ftparchive/apt-ftparchive.cc:299
  #, c-format
  msgid "Error processing directory %s"
  msgstr ""
  
- #: ftparchive/apt-ftparchive.cc:260
+ #: ftparchive/apt-ftparchive.cc:261
  msgid "Source extension list is too long"
  msgstr ""
  
- #: ftparchive/apt-ftparchive.cc:377
+ #: ftparchive/apt-ftparchive.cc:378
  msgid "Error writing header to contents file"
  msgstr ""
  
- #: ftparchive/apt-ftparchive.cc:407
+ #: ftparchive/apt-ftparchive.cc:408
  #, c-format
  msgid "Error processing contents %s"
  msgstr ""
  
- #: ftparchive/apt-ftparchive.cc:595
+ #: ftparchive/apt-ftparchive.cc:596
  msgid ""
  "Usage: apt-ftparchive [options] command\n"
  "Commands: packages binarypath [overridefile [pathprefix]]\n"
  "  -o=?  Set an arbitrary configuration option"
  msgstr ""
  
- #: ftparchive/apt-ftparchive.cc:801
+ #: ftparchive/apt-ftparchive.cc:802
  msgid "No selections matched"
  msgstr ""
  
- #: ftparchive/apt-ftparchive.cc:879
+ #: ftparchive/apt-ftparchive.cc:880
  #, c-format
  msgid "Some files are missing in the package file group `%s'"
  msgstr ""
  
- #: ftparchive/cachedb.cc:43
+ #: ftparchive/cachedb.cc:46
  #, c-format
  msgid "DB was corrupted, file renamed to %s.old"
  msgstr ""
  
- #: ftparchive/cachedb.cc:61
+ #: ftparchive/cachedb.cc:64
  #, c-format
  msgid "DB is old, attempting to upgrade %s"
  msgstr ""
  
- #: ftparchive/cachedb.cc:72
+ #: ftparchive/cachedb.cc:75
  msgid ""
  "DB format is invalid. If you upgraded from an older version of apt, please "
  "remove and re-create the database."
  msgstr ""
  
- #: ftparchive/cachedb.cc:77
+ #: ftparchive/cachedb.cc:80
  #, c-format
  msgid "Unable to open DB file %s: %s"
  msgstr ""
  
- #: ftparchive/cachedb.cc:123 apt-inst/extract.cc:178 apt-inst/extract.cc:190
- #: apt-inst/extract.cc:207 apt-inst/deb/dpkgdb.cc:117
+ #: ftparchive/cachedb.cc:126 apt-inst/extract.cc:181 apt-inst/extract.cc:193
+ #: apt-inst/extract.cc:210 apt-inst/deb/dpkgdb.cc:121
  #, c-format
  msgid "Failed to stat %s"
  msgstr ""
  
- #: ftparchive/cachedb.cc:242
+ #: ftparchive/cachedb.cc:248
  msgid "Archive has no control record"
  msgstr ""
  
- #: ftparchive/cachedb.cc:448
+ #: ftparchive/cachedb.cc:489
  msgid "Unable to get a cursor"
  msgstr ""
  
- #: ftparchive/writer.cc:78
+ #: ftparchive/writer.cc:80
  #, c-format
  msgid "W: Unable to read directory %s\n"
  msgstr ""
  
- #: ftparchive/writer.cc:83
+ #: ftparchive/writer.cc:85
  #, c-format
  msgid "W: Unable to stat %s\n"
  msgstr ""
  
- #: ftparchive/writer.cc:139
+ #: ftparchive/writer.cc:141
  msgid "E: "
  msgstr ""
  
- #: ftparchive/writer.cc:141
+ #: ftparchive/writer.cc:143
  msgid "W: "
  msgstr ""
  
- #: ftparchive/writer.cc:148
+ #: ftparchive/writer.cc:150
  msgid "E: Errors apply to file "
  msgstr ""
  
- #: ftparchive/writer.cc:166 ftparchive/writer.cc:198
+ #: ftparchive/writer.cc:168 ftparchive/writer.cc:200
  #, c-format
  msgid "Failed to resolve %s"
  msgstr ""
  
- #: ftparchive/writer.cc:179
+ #: ftparchive/writer.cc:181
  msgid "Tree walking failed"
  msgstr ""
  
- #: ftparchive/writer.cc:206
+ #: ftparchive/writer.cc:208
  #, c-format
  msgid "Failed to open %s"
  msgstr ""
  
- #: ftparchive/writer.cc:265
+ #: ftparchive/writer.cc:267
  #, c-format
  msgid " DeLink %s [%s]\n"
  msgstr ""
  
- #: ftparchive/writer.cc:273
+ #: ftparchive/writer.cc:275
  #, c-format
  msgid "Failed to readlink %s"
  msgstr ""
  
- #: ftparchive/writer.cc:277
+ #: ftparchive/writer.cc:279
  #, c-format
  msgid "Failed to unlink %s"
  msgstr ""
  
- #: ftparchive/writer.cc:284
+ #: ftparchive/writer.cc:286
  #, c-format
  msgid "*** Failed to link %s to %s"
  msgstr ""
  
- #: ftparchive/writer.cc:294
+ #: ftparchive/writer.cc:296
  #, c-format
  msgid " DeLink limit of %sB hit.\n"
  msgstr ""
  
- #: ftparchive/writer.cc:398
+ #: ftparchive/writer.cc:401
  msgid "Archive had no package field"
  msgstr ""
  
- #: ftparchive/writer.cc:406 ftparchive/writer.cc:703
+ #: ftparchive/writer.cc:409 ftparchive/writer.cc:711
  #, c-format
  msgid "  %s has no override entry\n"
  msgstr ""
  
- #: ftparchive/writer.cc:472 ftparchive/writer.cc:811
+ #: ftparchive/writer.cc:477 ftparchive/writer.cc:827
  #, c-format
  msgid "  %s maintainer is %s not %s\n"
  msgstr ""
  
- #: ftparchive/writer.cc:713
+ #: ftparchive/writer.cc:721
  #, c-format
  msgid "  %s has no source override entry\n"
  msgstr ""
  
- #: ftparchive/writer.cc:717
+ #: ftparchive/writer.cc:725
  #, c-format
  msgid "  %s has no binary override entry either\n"
  msgstr ""
  
- #: ftparchive/contents.cc:337 ftparchive/contents.cc:368
+ #: ftparchive/contents.cc:339 ftparchive/contents.cc:370
  msgid "realloc - Failed to allocate memory"
  msgstr ""
  
@@@ -467,17 -468,17 +468,17 @@@ msgstr "
  
  #: ftparchive/override.cc:60 ftparchive/override.cc:166
  #, c-format
- msgid "Malformed override %s line %lu #1"
+ msgid "Malformed override %s line %llu #1"
  msgstr ""
  
  #: ftparchive/override.cc:74 ftparchive/override.cc:178
  #, c-format
- msgid "Malformed override %s line %lu #2"
+ msgid "Malformed override %s line %llu #2"
  msgstr ""
  
  #: ftparchive/override.cc:88 ftparchive/override.cc:191
  #, c-format
- msgid "Malformed override %s line %lu #3"
+ msgid "Malformed override %s line %llu #3"
  msgstr ""
  
  #: ftparchive/override.cc:127 ftparchive/override.cc:201
  msgid "Failed to read the override file %s"
  msgstr ""
  
- #: ftparchive/multicompress.cc:67
+ #: ftparchive/multicompress.cc:69
  #, c-format
  msgid "Unknown compression algorithm '%s'"
  msgstr ""
  
- #: ftparchive/multicompress.cc:97
+ #: ftparchive/multicompress.cc:99
  #, c-format
  msgid "Compressed output %s needs a compression set"
  msgstr ""
  
- #: ftparchive/multicompress.cc:165 methods/rsh.cc:91
+ #: ftparchive/multicompress.cc:167 methods/rsh.cc:97
  msgid "Failed to create IPC pipe to subprocess"
  msgstr ""
  
- #: ftparchive/multicompress.cc:191
+ #: ftparchive/multicompress.cc:193
  msgid "Failed to create FILE*"
  msgstr ""
  
- #: ftparchive/multicompress.cc:194
+ #: ftparchive/multicompress.cc:196
  msgid "Failed to fork"
  msgstr ""
  
- #: ftparchive/multicompress.cc:208
+ #: ftparchive/multicompress.cc:210
  msgid "Compress child"
  msgstr ""
  
- #: ftparchive/multicompress.cc:231
+ #: ftparchive/multicompress.cc:233
  #, c-format
  msgid "Internal error, failed to create %s"
  msgstr ""
  
- #: ftparchive/multicompress.cc:282
+ #: ftparchive/multicompress.cc:284
  msgid "Failed to create subprocess IPC"
  msgstr ""
  
- #: ftparchive/multicompress.cc:319
+ #: ftparchive/multicompress.cc:321
  msgid "Failed to exec compressor "
  msgstr ""
  
- #: ftparchive/multicompress.cc:358
+ #: ftparchive/multicompress.cc:360
  msgid "decompressor"
  msgstr ""
  
- #: ftparchive/multicompress.cc:401
+ #: ftparchive/multicompress.cc:403
  msgid "IO to subprocess/file failed"
  msgstr ""
  
- #: ftparchive/multicompress.cc:453
+ #: ftparchive/multicompress.cc:455
  msgid "Failed to read while computing MD5"
  msgstr ""
  
- #: ftparchive/multicompress.cc:470
+ #: ftparchive/multicompress.cc:472
  #, c-format
  msgid "Problem unlinking %s"
  msgstr ""
  
- #: ftparchive/multicompress.cc:485 apt-inst/extract.cc:185
+ #: ftparchive/multicompress.cc:487 apt-inst/extract.cc:188
  #, c-format
  msgid "Failed to rename %s to %s"
  msgstr ""
  msgid "Y"
  msgstr ""
  
- #: cmdline/apt-get.cc:157 apt-pkg/cachefilter.cc:29
+ #: cmdline/apt-get.cc:140
+ msgid "N"
+ msgstr ""
+ #: cmdline/apt-get.cc:162 apt-pkg/cachefilter.cc:31
  #, c-format
  msgid "Regex compilation error - %s"
  msgstr ""
  
- #: cmdline/apt-get.cc:252
+ #: cmdline/apt-get.cc:257
  msgid "The following packages have unmet dependencies:"
  msgstr ""
  
- #: cmdline/apt-get.cc:342
+ #: cmdline/apt-get.cc:347
  #, c-format
  msgid "but %s is installed"
  msgstr ""
  
- #: cmdline/apt-get.cc:344
+ #: cmdline/apt-get.cc:349
  #, c-format
  msgid "but %s is to be installed"
  msgstr ""
  
- #: cmdline/apt-get.cc:351
+ #: cmdline/apt-get.cc:356
  msgid "but it is not installable"
  msgstr ""
  
- #: cmdline/apt-get.cc:353
+ #: cmdline/apt-get.cc:358
  msgid "but it is a virtual package"
  msgstr ""
  
- #: cmdline/apt-get.cc:356
+ #: cmdline/apt-get.cc:361
  msgid "but it is not installed"
  msgstr ""
  
- #: cmdline/apt-get.cc:356
+ #: cmdline/apt-get.cc:361
  msgid "but it is not going to be installed"
  msgstr ""
  
- #: cmdline/apt-get.cc:361
+ #: cmdline/apt-get.cc:366
  msgid " or"
  msgstr ""
  
- #: cmdline/apt-get.cc:390
+ #: cmdline/apt-get.cc:395
  msgid "The following NEW packages will be installed:"
  msgstr ""
  
- #: cmdline/apt-get.cc:416
+ #: cmdline/apt-get.cc:421
  msgid "The following packages will be REMOVED:"
  msgstr ""
  
- #: cmdline/apt-get.cc:438
+ #: cmdline/apt-get.cc:443
  msgid "The following packages have been kept back:"
  msgstr ""
  
- #: cmdline/apt-get.cc:459
+ #: cmdline/apt-get.cc:464
  msgid "The following packages will be upgraded:"
  msgstr ""
  
- #: cmdline/apt-get.cc:480
+ #: cmdline/apt-get.cc:485
  msgid "The following packages will be DOWNGRADED:"
  msgstr ""
  
- #: cmdline/apt-get.cc:500
+ #: cmdline/apt-get.cc:505
  msgid "The following held packages will be changed:"
  msgstr ""
  
- #: cmdline/apt-get.cc:555
+ #: cmdline/apt-get.cc:560
  #, c-format
  msgid "%s (due to %s) "
  msgstr ""
  
- #: cmdline/apt-get.cc:563
+ #: cmdline/apt-get.cc:568
  msgid ""
  "WARNING: The following essential packages will be removed.\n"
  "This should NOT be done unless you know exactly what you are doing!"
  msgstr ""
  
- #: cmdline/apt-get.cc:594
+ #: cmdline/apt-get.cc:599
  #, c-format
  msgid "%lu upgraded, %lu newly installed, "
  msgstr ""
  
- #: cmdline/apt-get.cc:598
+ #: cmdline/apt-get.cc:603
  #, c-format
  msgid "%lu reinstalled, "
  msgstr ""
  
- #: cmdline/apt-get.cc:600
+ #: cmdline/apt-get.cc:605
  #, c-format
  msgid "%lu downgraded, "
  msgstr ""
  
- #: cmdline/apt-get.cc:602
+ #: cmdline/apt-get.cc:607
  #, c-format
  msgid "%lu to remove and %lu not upgraded.\n"
  msgstr ""
  
- #: cmdline/apt-get.cc:606
+ #: cmdline/apt-get.cc:611
  #, c-format
  msgid "%lu not fully installed or removed.\n"
  msgstr ""
  
- #: cmdline/apt-get.cc:628
+ #: cmdline/apt-get.cc:633
  #, c-format
  msgid "Note, selecting '%s' for task '%s'\n"
  msgstr ""
  
- #: cmdline/apt-get.cc:634
+ #: cmdline/apt-get.cc:639
  #, c-format
  msgid "Note, selecting '%s' for regex '%s'\n"
  msgstr ""
  
- #: cmdline/apt-get.cc:651
+ #: cmdline/apt-get.cc:656
  #, c-format
  msgid "Package %s is a virtual package provided by:\n"
  msgstr ""
  
- #: cmdline/apt-get.cc:662
+ #: cmdline/apt-get.cc:667
  msgid " [Installed]"
  msgstr ""
  
- #: cmdline/apt-get.cc:671
+ #: cmdline/apt-get.cc:676
  msgid " [Not candidate version]"
  msgstr ""
  
- #: cmdline/apt-get.cc:673
+ #: cmdline/apt-get.cc:678
  msgid "You should explicitly select one to install."
  msgstr ""
  
- #: cmdline/apt-get.cc:676
+ #: cmdline/apt-get.cc:681
  #, c-format
  msgid ""
  "Package %s is not available, but is referred to by another package.\n"
  "is only available from another source\n"
  msgstr ""
  
- #: cmdline/apt-get.cc:694
+ #: cmdline/apt-get.cc:699
  msgid "However the following packages replace it:"
  msgstr ""
  
- #: cmdline/apt-get.cc:706
+ #: cmdline/apt-get.cc:711
  #, c-format
  msgid "Package '%s' has no installation candidate"
  msgstr ""
  
- #: cmdline/apt-get.cc:717
+ #: cmdline/apt-get.cc:722
  #, c-format
  msgid "Virtual packages like '%s' can't be removed\n"
  msgstr ""
  
- #: cmdline/apt-get.cc:748
+ #: cmdline/apt-get.cc:753
  #, c-format
  msgid "Note, selecting '%s' instead of '%s'\n"
  msgstr ""
  
- #: cmdline/apt-get.cc:778
+ #: cmdline/apt-get.cc:783
  #, c-format
  msgid "Skipping %s, it is already installed and upgrade is not set.\n"
  msgstr ""
  
- #: cmdline/apt-get.cc:782
+ #: cmdline/apt-get.cc:787
  #, c-format
  msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
  msgstr ""
  
- #: cmdline/apt-get.cc:794
+ #: cmdline/apt-get.cc:799
  #, c-format
  msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
  msgstr ""
  
- #: cmdline/apt-get.cc:799
+ #: cmdline/apt-get.cc:804
  #, c-format
  msgid "%s is already the newest version.\n"
  msgstr ""
  
- #: cmdline/apt-get.cc:818 cmdline/apt-get.cc:2080 cmdline/apt-mark.cc:59
+ #: cmdline/apt-get.cc:823 cmdline/apt-get.cc:2103 cmdline/apt-mark.cc:61
  #, c-format
  msgid "%s set to manually installed.\n"
  msgstr ""
  
- #: cmdline/apt-get.cc:844
+ #: cmdline/apt-get.cc:849
  #, c-format
  msgid "Selected version '%s' (%s) for '%s'\n"
  msgstr ""
  
- #: cmdline/apt-get.cc:849
+ #: cmdline/apt-get.cc:854
  #, c-format
  msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
  msgstr ""
  
- #: cmdline/apt-get.cc:893
+ #: cmdline/apt-get.cc:896
  #, c-format
  msgid "Package %s is not installed, so not removed\n"
  msgstr ""
  
- #: cmdline/apt-get.cc:971
+ #: cmdline/apt-get.cc:974
  msgid "Correcting dependencies..."
  msgstr ""
  
- #: cmdline/apt-get.cc:974
+ #: cmdline/apt-get.cc:977
  msgid " failed."
  msgstr ""
  
- #: cmdline/apt-get.cc:977
+ #: cmdline/apt-get.cc:980
  msgid "Unable to correct dependencies"
  msgstr ""
  
- #: cmdline/apt-get.cc:980
+ #: cmdline/apt-get.cc:983
  msgid "Unable to minimize the upgrade set"
  msgstr ""
  
- #: cmdline/apt-get.cc:982
+ #: cmdline/apt-get.cc:985
  msgid " Done"
  msgstr ""
  
- #: cmdline/apt-get.cc:986
+ #: cmdline/apt-get.cc:989
  msgid "You might want to run 'apt-get -f install' to correct these."
  msgstr ""
  
- #: cmdline/apt-get.cc:989
+ #: cmdline/apt-get.cc:992
  msgid "Unmet dependencies. Try using -f."
  msgstr ""
  
- #: cmdline/apt-get.cc:1014
+ #: cmdline/apt-get.cc:1017
  msgid "WARNING: The following packages cannot be authenticated!"
  msgstr ""
  
- #: cmdline/apt-get.cc:1018
+ #: cmdline/apt-get.cc:1021
  msgid "Authentication warning overridden.\n"
  msgstr ""
  
- #: cmdline/apt-get.cc:1025
+ #: cmdline/apt-get.cc:1028
  msgid "Install these packages without verification [y/N]? "
  msgstr ""
  
- #: cmdline/apt-get.cc:1027
+ #: cmdline/apt-get.cc:1030
  msgid "Some packages could not be authenticated"
  msgstr ""
  
- #: cmdline/apt-get.cc:1036 cmdline/apt-get.cc:1197
+ #: cmdline/apt-get.cc:1039 cmdline/apt-get.cc:1200
  msgid "There are problems and -y was used without --force-yes"
  msgstr ""
  
- #: cmdline/apt-get.cc:1077
+ #: cmdline/apt-get.cc:1080
  msgid "Internal error, InstallPackages was called with broken packages!"
  msgstr ""
  
- #: cmdline/apt-get.cc:1086
+ #: cmdline/apt-get.cc:1089
  msgid "Packages need to be removed but remove is disabled."
  msgstr ""
  
- #: cmdline/apt-get.cc:1097
+ #: cmdline/apt-get.cc:1100
  msgid "Internal error, Ordering didn't finish"
  msgstr ""
  
- #: cmdline/apt-get.cc:1135
+ #: cmdline/apt-get.cc:1138
  msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
  msgstr ""
  
  #. TRANSLATOR: The required space between number and unit is already included
  #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
- #: cmdline/apt-get.cc:1142
+ #: cmdline/apt-get.cc:1145
  #, c-format
  msgid "Need to get %sB/%sB of archives.\n"
  msgstr ""
  
  #. TRANSLATOR: The required space between number and unit is already included
  #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
- #: cmdline/apt-get.cc:1147
+ #: cmdline/apt-get.cc:1150
  #, c-format
  msgid "Need to get %sB of archives.\n"
  msgstr ""
  
  #. TRANSLATOR: The required space between number and unit is already included
  #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
- #: cmdline/apt-get.cc:1154
+ #: cmdline/apt-get.cc:1157
  #, c-format
  msgid "After this operation, %sB of additional disk space will be used.\n"
  msgstr ""
  
  #. TRANSLATOR: The required space between number and unit is already included
  #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
- #: cmdline/apt-get.cc:1159
+ #: cmdline/apt-get.cc:1162
  #, c-format
  msgid "After this operation, %sB disk space will be freed.\n"
  msgstr ""
  
- #: cmdline/apt-get.cc:1174 cmdline/apt-get.cc:1177 cmdline/apt-get.cc:2492
- #: cmdline/apt-get.cc:2495
+ #: cmdline/apt-get.cc:1177 cmdline/apt-get.cc:1180 cmdline/apt-get.cc:2523
+ #: cmdline/apt-get.cc:2526
  #, c-format
  msgid "Couldn't determine free space in %s"
  msgstr ""
  
- #: cmdline/apt-get.cc:1187
+ #: cmdline/apt-get.cc:1190
  #, c-format
  msgid "You don't have enough free space in %s."
  msgstr ""
  
- #: cmdline/apt-get.cc:1203 cmdline/apt-get.cc:1223
+ #: cmdline/apt-get.cc:1206 cmdline/apt-get.cc:1226
  msgid "Trivial Only specified but this is not a trivial operation."
  msgstr ""
  
- #: cmdline/apt-get.cc:1205
+ #: cmdline/apt-get.cc:1208
  msgid "Yes, do as I say!"
  msgstr ""
  
- #: cmdline/apt-get.cc:1207
+ #: cmdline/apt-get.cc:1210
  #, c-format
  msgid ""
  "You are about to do something potentially harmful.\n"
  " ?] "
  msgstr ""
  
- #: cmdline/apt-get.cc:1213 cmdline/apt-get.cc:1232
+ #: cmdline/apt-get.cc:1216 cmdline/apt-get.cc:1235
  msgid "Abort."
  msgstr ""
  
- #: cmdline/apt-get.cc:1228
+ #: cmdline/apt-get.cc:1231
  msgid "Do you want to continue [Y/n]? "
  msgstr ""
  
- #: cmdline/apt-get.cc:1300 cmdline/apt-get.cc:2557 apt-pkg/algorithms.cc:1438
+ #: cmdline/apt-get.cc:1303 cmdline/apt-get.cc:2588 apt-pkg/algorithms.cc:1492
  #, c-format
  msgid "Failed to fetch %s  %s\n"
  msgstr ""
  
- #: cmdline/apt-get.cc:1318
+ #: cmdline/apt-get.cc:1321
  msgid "Some files failed to download"
  msgstr ""
  
- #: cmdline/apt-get.cc:1319 cmdline/apt-get.cc:2569
+ #: cmdline/apt-get.cc:1322 cmdline/apt-get.cc:2600
  msgid "Download complete and in download only mode"
  msgstr ""
  
- #: cmdline/apt-get.cc:1325
+ #: cmdline/apt-get.cc:1328
  msgid ""
  "Unable to fetch some archives, maybe run apt-get update or try with --fix-"
  "missing?"
  msgstr ""
  
- #: cmdline/apt-get.cc:1329
+ #: cmdline/apt-get.cc:1332
  msgid "--fix-missing and media swapping is not currently supported"
  msgstr ""
  
- #: cmdline/apt-get.cc:1334
+ #: cmdline/apt-get.cc:1337
  msgid "Unable to correct missing packages."
  msgstr ""
  
- #: cmdline/apt-get.cc:1335
+ #: cmdline/apt-get.cc:1338
  msgid "Aborting install."
  msgstr ""
  
- #: cmdline/apt-get.cc:1363
+ #: cmdline/apt-get.cc:1366
  msgid ""
  "The following package disappeared from your system as\n"
  "all files have been overwritten by other packages:"
@@@ -911,35 -916,35 +916,35 @@@ msgid_plural "
  msgstr[0] ""
  msgstr[1] ""
  
- #: cmdline/apt-get.cc:1367
+ #: cmdline/apt-get.cc:1370
  msgid "Note: This is done automatic and on purpose by dpkg."
  msgstr ""
  
- #: cmdline/apt-get.cc:1497
+ #: cmdline/apt-get.cc:1508
  #, c-format
  msgid "Ignore unavailable target release '%s' of package '%s'"
  msgstr ""
  
- #: cmdline/apt-get.cc:1529
+ #: cmdline/apt-get.cc:1540
  #, c-format
  msgid "Picking '%s' as source package instead of '%s'\n"
  msgstr ""
  
  #. if (VerTag.empty() == false && Last == 0)
- #: cmdline/apt-get.cc:1567
+ #: cmdline/apt-get.cc:1578
  #, c-format
  msgid "Ignore unavailable version '%s' of package '%s'"
  msgstr ""
  
- #: cmdline/apt-get.cc:1583
+ #: cmdline/apt-get.cc:1594
  msgid "The update command takes no arguments"
  msgstr ""
  
- #: cmdline/apt-get.cc:1645
+ #: cmdline/apt-get.cc:1657
  msgid "We are not supposed to delete stuff, can't start AutoRemover"
  msgstr ""
  
- #: cmdline/apt-get.cc:1740
+ #: cmdline/apt-get.cc:1761
  msgid ""
  "Hmm, seems like the AutoRemover destroyed something which really\n"
  "shouldn't happen. Please file a bug report against apt."
@@@ -955,15 -960,15 +960,15 @@@ msgstr "
  #. "that package should be filed.") << endl;
  #. }
  #.
- #: cmdline/apt-get.cc:1743 cmdline/apt-get.cc:1913
+ #: cmdline/apt-get.cc:1764 cmdline/apt-get.cc:1933
  msgid "The following information may help to resolve the situation:"
  msgstr ""
  
- #: cmdline/apt-get.cc:1747
+ #: cmdline/apt-get.cc:1768
  msgid "Internal Error, AutoRemover broke stuff"
  msgstr ""
  
- #: cmdline/apt-get.cc:1754
+ #: cmdline/apt-get.cc:1775
  msgid ""
  "The following package was automatically installed and is no longer required:"
  msgid_plural ""
  msgstr[0] ""
  msgstr[1] ""
  
- #: cmdline/apt-get.cc:1758
+ #: cmdline/apt-get.cc:1779
  #, c-format
  msgid "%lu package was automatically installed and is no longer required.\n"
  msgid_plural ""
  msgstr[0] ""
  msgstr[1] ""
  
- #: cmdline/apt-get.cc:1760
+ #: cmdline/apt-get.cc:1781
  msgid "Use 'apt-get autoremove' to remove them."
  msgstr ""
  
- #: cmdline/apt-get.cc:1779
+ #: cmdline/apt-get.cc:1800
  msgid "Internal error, AllUpgrade broke stuff"
  msgstr ""
  
- #: cmdline/apt-get.cc:1878
+ #: cmdline/apt-get.cc:1899
  msgid "You might want to run 'apt-get -f install' to correct these:"
  msgstr ""
  
- #: cmdline/apt-get.cc:1882
+ #: cmdline/apt-get.cc:1903
  msgid ""
  "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
  "solution)."
  msgstr ""
  
- #: cmdline/apt-get.cc:1898
+ #: cmdline/apt-get.cc:1918
  msgid ""
  "Some packages could not be installed. This may mean that you have\n"
  "requested an impossible situation or if you are using the unstable\n"
  "or been moved out of Incoming."
  msgstr ""
  
- #: cmdline/apt-get.cc:1916
+ #: cmdline/apt-get.cc:1939
  msgid "Broken packages"
  msgstr ""
  
- #: cmdline/apt-get.cc:1942
+ #: cmdline/apt-get.cc:1965
  msgid "The following extra packages will be installed:"
  msgstr ""
  
- #: cmdline/apt-get.cc:2032
+ #: cmdline/apt-get.cc:2055
  msgid "Suggested packages:"
  msgstr ""
  
- #: cmdline/apt-get.cc:2033
+ #: cmdline/apt-get.cc:2056
  msgid "Recommended packages:"
  msgstr ""
  
- #: cmdline/apt-get.cc:2075
+ #: cmdline/apt-get.cc:2098
  #, c-format
  msgid "Couldn't find package %s"
  msgstr ""
  
- #: cmdline/apt-get.cc:2082 cmdline/apt-mark.cc:61
+ #: cmdline/apt-get.cc:2105 cmdline/apt-mark.cc:63
  #, c-format
  msgid "%s set to automatically installed.\n"
  msgstr ""
  
- #: cmdline/apt-get.cc:2090 cmdline/apt-mark.cc:105
+ #: cmdline/apt-get.cc:2113 cmdline/apt-mark.cc:107
  msgid ""
  "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' "
  "instead."
  msgstr ""
  
- #: cmdline/apt-get.cc:2106
+ #: cmdline/apt-get.cc:2129
  msgid "Calculating upgrade... "
  msgstr ""
  
- #: cmdline/apt-get.cc:2109 methods/ftp.cc:707 methods/connect.cc:111
+ #: cmdline/apt-get.cc:2132 methods/ftp.cc:711 methods/connect.cc:115
  msgid "Failed"
  msgstr ""
  
- #: cmdline/apt-get.cc:2114
+ #: cmdline/apt-get.cc:2137
  msgid "Done"
  msgstr ""
  
- #: cmdline/apt-get.cc:2181 cmdline/apt-get.cc:2189
+ #: cmdline/apt-get.cc:2204 cmdline/apt-get.cc:2212
  msgid "Internal error, problem resolver broke stuff"
  msgstr ""
  
- #: cmdline/apt-get.cc:2213 cmdline/apt-get.cc:2246
+ #: cmdline/apt-get.cc:2240 cmdline/apt-get.cc:2276
  msgid "Unable to lock the download directory"
  msgstr ""
  
- #: cmdline/apt-get.cc:2297
+ #: cmdline/apt-get.cc:2327
  #, c-format
  msgid "Downloading %s %s"
  msgstr ""
  
- #: cmdline/apt-get.cc:2353
+ #: cmdline/apt-get.cc:2385
  msgid "Must specify at least one package to fetch source for"
  msgstr ""
  
- #: cmdline/apt-get.cc:2394 cmdline/apt-get.cc:2690
+ #: cmdline/apt-get.cc:2425 cmdline/apt-get.cc:2737
  #, c-format
  msgid "Unable to find a source package for %s"
  msgstr ""
  
- #: cmdline/apt-get.cc:2411
+ #: cmdline/apt-get.cc:2442
  #, c-format
  msgid ""
  "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n"
  "%s\n"
  msgstr ""
  
- #: cmdline/apt-get.cc:2416
+ #: cmdline/apt-get.cc:2447
  #, c-format
  msgid ""
  "Please use:\n"
--"bzr get %s\n"
++"bzr branch %s\n"
  "to retrieve the latest (possibly unreleased) updates to the package.\n"
  msgstr ""
  
- #: cmdline/apt-get.cc:2469
+ #: cmdline/apt-get.cc:2500
  #, c-format
  msgid "Skipping already downloaded file '%s'\n"
  msgstr ""
  
- #: cmdline/apt-get.cc:2506
+ #: cmdline/apt-get.cc:2537
  #, c-format
  msgid "You don't have enough free space in %s"
  msgstr ""
  
  #. TRANSLATOR: The required space between number and unit is already included
  #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
- #: cmdline/apt-get.cc:2515
+ #: cmdline/apt-get.cc:2546
  #, c-format
  msgid "Need to get %sB/%sB of source archives.\n"
  msgstr ""
  
  #. TRANSLATOR: The required space between number and unit is already included
  #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
- #: cmdline/apt-get.cc:2520
+ #: cmdline/apt-get.cc:2551
  #, c-format
  msgid "Need to get %sB of source archives.\n"
  msgstr ""
  
- #: cmdline/apt-get.cc:2526
+ #: cmdline/apt-get.cc:2557
  #, c-format
  msgid "Fetch source %s\n"
  msgstr ""
  
- #: cmdline/apt-get.cc:2564
+ #: cmdline/apt-get.cc:2595
  msgid "Failed to fetch some archives."
  msgstr ""
  
- #: cmdline/apt-get.cc:2595
+ #: cmdline/apt-get.cc:2626
  #, c-format
  msgid "Skipping unpack of already unpacked source in %s\n"
  msgstr ""
  
- #: cmdline/apt-get.cc:2607
+ #: cmdline/apt-get.cc:2638
  #, c-format
  msgid "Unpack command '%s' failed.\n"
  msgstr ""
  
- #: cmdline/apt-get.cc:2608
+ #: cmdline/apt-get.cc:2639
  #, c-format
  msgid "Check if the 'dpkg-dev' package is installed.\n"
  msgstr ""
  
- #: cmdline/apt-get.cc:2625
+ #: cmdline/apt-get.cc:2661
  #, c-format
  msgid "Build command '%s' failed.\n"
  msgstr ""
  
- #: cmdline/apt-get.cc:2645
+ #: cmdline/apt-get.cc:2681
  msgid "Child process failed"
  msgstr ""
  
- #: cmdline/apt-get.cc:2664
+ #: cmdline/apt-get.cc:2700
  msgid "Must specify at least one package to check builddeps for"
  msgstr ""
  
- #: cmdline/apt-get.cc:2695
+ #: cmdline/apt-get.cc:2725
+ #, c-format
+ msgid ""
+ "No architecture information available for %s. See apt.conf(5) APT::"
+ "Architectures for setup"
+ msgstr ""
+ #: cmdline/apt-get.cc:2742
  #, c-format
  msgid "Unable to get build-dependency information for %s"
  msgstr ""
  
- #: cmdline/apt-get.cc:2715
+ #: cmdline/apt-get.cc:2762
  #, c-format
  msgid "%s has no build depends.\n"
  msgstr ""
  
- #: cmdline/apt-get.cc:2766
+ #: cmdline/apt-get.cc:2892
+ #, c-format
+ msgid ""
+ "%s dependency for %s can't be satisfied because %s is not allowed on '%s' "
+ "packages"
+ msgstr ""
+ #: cmdline/apt-get.cc:2913
  #, c-format
  msgid ""
  "%s dependency for %s cannot be satisfied because the package %s cannot be "
  "found"
  msgstr ""
  
- #: cmdline/apt-get.cc:2819
+ #: cmdline/apt-get.cc:2936
+ #, c-format
+ msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
+ msgstr ""
+ #: cmdline/apt-get.cc:2975
  #, c-format
  msgid ""
- "%s dependency for %s cannot be satisfied because no available versions of "
- "package %s can satisfy version requirements"
+ "%s dependency for %s cannot be satisfied because candidate version of "
+ "package %s can't satisfy version requirements"
  msgstr ""
  
- #: cmdline/apt-get.cc:2855
+ #: cmdline/apt-get.cc:2981
  #, c-format
- msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
+ msgid ""
+ "%s dependency for %s cannot be satisfied because package %s has no candidate "
+ "version"
  msgstr ""
  
- #: cmdline/apt-get.cc:2882
+ #: cmdline/apt-get.cc:3004
  #, c-format
  msgid "Failed to satisfy %s dependency for %s: %s"
  msgstr ""
  
- #: cmdline/apt-get.cc:2898
+ #: cmdline/apt-get.cc:3020
  #, c-format
  msgid "Build-dependencies for %s could not be satisfied."
  msgstr ""
  
- #: cmdline/apt-get.cc:2903
+ #: cmdline/apt-get.cc:3025
  msgid "Failed to process build dependencies"
  msgstr ""
  
- #: cmdline/apt-get.cc:2996 cmdline/apt-get.cc:3008
+ #: cmdline/apt-get.cc:3118 cmdline/apt-get.cc:3130
  #, c-format
  msgid "Changelog for %s (%s)"
  msgstr ""
  
- #: cmdline/apt-get.cc:3130
 -#: cmdline/apt-get.cc:3249
++#: cmdline/apt-get.cc:3252
  msgid "Supported modules:"
  msgstr ""
  
- #: cmdline/apt-get.cc:3171
 -#: cmdline/apt-get.cc:3290
++#: cmdline/apt-get.cc:3293
  msgid ""
  "Usage: apt-get [options] command\n"
  "       apt-get [options] install|remove pkg1 [pkg2 ...]\n"
  "                       This APT has Super Cow Powers.\n"
  msgstr ""
  
- #: cmdline/apt-get.cc:3333
 -#: cmdline/apt-get.cc:3455
++#: cmdline/apt-get.cc:3458
  msgid ""
  "NOTE: This is only a simulation!\n"
  "      apt-get needs root privileges for real execution.\n"
  "      so don't depend on the relevance to the real current situation!"
  msgstr ""
  
- #: cmdline/acqprogress.cc:57
+ #: cmdline/acqprogress.cc:59
  msgid "Hit "
  msgstr ""
  
- #: cmdline/acqprogress.cc:81
+ #: cmdline/acqprogress.cc:83
  msgid "Get:"
  msgstr ""
  
- #: cmdline/acqprogress.cc:112
+ #: cmdline/acqprogress.cc:114
  msgid "Ign "
  msgstr ""
  
- #: cmdline/acqprogress.cc:116
+ #: cmdline/acqprogress.cc:118
  msgid "Err "
  msgstr ""
  
- #: cmdline/acqprogress.cc:137
+ #: cmdline/acqprogress.cc:139
  #, c-format
  msgid "Fetched %sB in %s (%sB/s)\n"
  msgstr ""
  
- #: cmdline/acqprogress.cc:227
+ #: cmdline/acqprogress.cc:229
  #, c-format
  msgid " [Working]"
  msgstr ""
  
- #: cmdline/acqprogress.cc:283
+ #: cmdline/acqprogress.cc:285
  #, c-format
  msgid ""
  "Media change: please insert the disc labeled\n"
  "in the drive '%s' and press enter\n"
  msgstr ""
  
- #: cmdline/apt-mark.cc:46
+ #: cmdline/apt-internal-solver.cc:36
+ msgid ""
+ "Usage: apt-internal-resolver\n"
+ "\n"
+ "apt-internal-resolver is an interface to use the current internal\n"
+ "like an external resolver for the APT family for debugging or alike\n"
+ "\n"
+ "Options:\n"
+ "  -h  This help text.\n"
+ "  -q  Loggable output - no progress indicator\n"
+ "  -c=? Read this configuration file\n"
+ "  -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
+ "apt.conf(5) manual pages for more information and options.\n"
+ "                       This APT has Super Cow Powers.\n"
+ msgstr ""
+ #: cmdline/apt-mark.cc:48
  #, c-format
  msgid "%s can not be marked as it is not installed.\n"
  msgstr ""
  
- #: cmdline/apt-mark.cc:52
+ #: cmdline/apt-mark.cc:54
  #, c-format
  msgid "%s was already set to manually installed.\n"
  msgstr ""
  
- #: cmdline/apt-mark.cc:54
+ #: cmdline/apt-mark.cc:56
  #, c-format
  msgid "%s was already set to automatically installed.\n"
  msgstr ""
  
- #: cmdline/apt-mark.cc:169
+ #: cmdline/apt-mark.cc:171
  #, c-format
  msgid "%s was already set on hold.\n"
  msgstr ""
  
- #: cmdline/apt-mark.cc:171
+ #: cmdline/apt-mark.cc:173
  #, c-format
  msgid "%s was already not hold.\n"
  msgstr ""
  
- #: cmdline/apt-mark.cc:185 cmdline/apt-mark.cc:207
+ #: cmdline/apt-mark.cc:187 cmdline/apt-mark.cc:209
  #, c-format
  msgid "%s set on hold.\n"
  msgstr ""
  
- #: cmdline/apt-mark.cc:187 cmdline/apt-mark.cc:212
+ #: cmdline/apt-mark.cc:189 cmdline/apt-mark.cc:214
  #, c-format
  msgid "Canceled hold on %s.\n"
  msgstr ""
  
- #: cmdline/apt-mark.cc:220
+ #: cmdline/apt-mark.cc:222
  msgid "Executing dpkg failed. Are you root?"
  msgstr ""
  
- #: cmdline/apt-mark.cc:268
+ #: cmdline/apt-mark.cc:270
  msgid ""
  "Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n"
  "\n"
  "See the apt-mark(8) and apt.conf(5) manual pages for more information."
  msgstr ""
  
- #: cmdline/apt-sortpkgs.cc:86
+ #: cmdline/apt-sortpkgs.cc:89
  msgid "Unknown package record!"
  msgstr ""
  
- #: cmdline/apt-sortpkgs.cc:150
+ #: cmdline/apt-sortpkgs.cc:153
  msgid ""
  "Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
  "\n"
@@@ -1401,196 -1443,196 +1443,196 @@@ msgstr "
  msgid "Merging available information"
  msgstr ""
  
- #: apt-inst/contrib/extracttar.cc:114
+ #: apt-inst/contrib/extracttar.cc:117
  msgid "Failed to create pipes"
  msgstr ""
  
- #: apt-inst/contrib/extracttar.cc:141
+ #: apt-inst/contrib/extracttar.cc:144
  msgid "Failed to exec gzip "
  msgstr ""
  
- #: apt-inst/contrib/extracttar.cc:178 apt-inst/contrib/extracttar.cc:208
+ #: apt-inst/contrib/extracttar.cc:181 apt-inst/contrib/extracttar.cc:211
  msgid "Corrupted archive"
  msgstr ""
  
- #: apt-inst/contrib/extracttar.cc:193
+ #: apt-inst/contrib/extracttar.cc:196
  msgid "Tar checksum failed, archive corrupted"
  msgstr ""
  
- #: apt-inst/contrib/extracttar.cc:300
+ #: apt-inst/contrib/extracttar.cc:303
  #, c-format
  msgid "Unknown TAR header type %u, member %s"
  msgstr ""
  
- #: apt-inst/contrib/arfile.cc:70
+ #: apt-inst/contrib/arfile.cc:74
  msgid "Invalid archive signature"
  msgstr ""
  
- #: apt-inst/contrib/arfile.cc:78
+ #: apt-inst/contrib/arfile.cc:82
  msgid "Error reading archive member header"
  msgstr ""
  
- #: apt-inst/contrib/arfile.cc:90
+ #: apt-inst/contrib/arfile.cc:94
  #, c-format
  msgid "Invalid archive member header %s"
  msgstr ""
  
- #: apt-inst/contrib/arfile.cc:102
+ #: apt-inst/contrib/arfile.cc:106
  msgid "Invalid archive member header"
  msgstr ""
  
- #: apt-inst/contrib/arfile.cc:128
+ #: apt-inst/contrib/arfile.cc:132
  msgid "Archive is too short"
  msgstr ""
  
- #: apt-inst/contrib/arfile.cc:132
+ #: apt-inst/contrib/arfile.cc:136
  msgid "Failed to read the archive headers"
  msgstr ""
  
- #: apt-inst/filelist.cc:380
+ #: apt-inst/filelist.cc:382
  msgid "DropNode called on still linked node"
  msgstr ""
  
- #: apt-inst/filelist.cc:412
+ #: apt-inst/filelist.cc:414
  msgid "Failed to locate the hash element!"
  msgstr ""
  
- #: apt-inst/filelist.cc:459
+ #: apt-inst/filelist.cc:461
  msgid "Failed to allocate diversion"
  msgstr ""
  
- #: apt-inst/filelist.cc:464
+ #: apt-inst/filelist.cc:466
  msgid "Internal error in AddDiversion"
  msgstr ""
  
- #: apt-inst/filelist.cc:477
+ #: apt-inst/filelist.cc:479
  #, c-format
  msgid "Trying to overwrite a diversion, %s -> %s and %s/%s"
  msgstr ""
  
- #: apt-inst/filelist.cc:506
+ #: apt-inst/filelist.cc:508
  #, c-format
  msgid "Double add of diversion %s -> %s"
  msgstr ""
  
- #: apt-inst/filelist.cc:549
+ #: apt-inst/filelist.cc:551
  #, c-format
  msgid "Duplicate conf file %s/%s"
  msgstr ""
  
- #: apt-inst/dirstream.cc:41 apt-inst/dirstream.cc:47 apt-inst/dirstream.cc:53
+ #: apt-inst/dirstream.cc:43 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:55
  #, c-format
  msgid "Failed to write file %s"
  msgstr ""
  
- #: apt-inst/dirstream.cc:98 apt-inst/dirstream.cc:106
+ #: apt-inst/dirstream.cc:100 apt-inst/dirstream.cc:108
  #, c-format
  msgid "Failed to close file %s"
  msgstr ""
  
- #: apt-inst/extract.cc:93 apt-inst/extract.cc:164
+ #: apt-inst/extract.cc:96 apt-inst/extract.cc:167
  #, c-format
  msgid "The path %s is too long"
  msgstr ""
  
- #: apt-inst/extract.cc:124
+ #: apt-inst/extract.cc:127
  #, c-format
  msgid "Unpacking %s more than once"
  msgstr ""
  
- #: apt-inst/extract.cc:134
+ #: apt-inst/extract.cc:137
  #, c-format
  msgid "The directory %s is diverted"
  msgstr ""
  
- #: apt-inst/extract.cc:144
+ #: apt-inst/extract.cc:147
  #, c-format
  msgid "The package is trying to write to the diversion target %s/%s"
  msgstr ""
  
- #: apt-inst/extract.cc:154 apt-inst/extract.cc:297
+ #: apt-inst/extract.cc:157 apt-inst/extract.cc:300
  msgid "The diversion path is too long"
  msgstr ""
  
- #: apt-inst/extract.cc:240
+ #: apt-inst/extract.cc:243
  #, c-format
  msgid "The directory %s is being replaced by a non-directory"
  msgstr ""
  
- #: apt-inst/extract.cc:280
+ #: apt-inst/extract.cc:283
  msgid "Failed to locate node in its hash bucket"
  msgstr ""
  
- #: apt-inst/extract.cc:284
+ #: apt-inst/extract.cc:287
  msgid "The path is too long"
  msgstr ""
  
- #: apt-inst/extract.cc:412
+ #: apt-inst/extract.cc:415
  #, c-format
  msgid "Overwrite package match with no version for %s"
  msgstr ""
  
- #: apt-inst/extract.cc:429
+ #: apt-inst/extract.cc:432
  #, c-format
  msgid "File %s/%s overwrites the one in the package %s"
  msgstr ""
  
  #. Only warn if there are no sources.list.d.
  #. Only warn if there is no sources.list file.
- #: apt-inst/extract.cc:462 apt-pkg/contrib/cdromutl.cc:179
- #: apt-pkg/contrib/fileutl.cc:343 apt-pkg/sourcelist.cc:204
- #: apt-pkg/sourcelist.cc:210 apt-pkg/acquire.cc:450 apt-pkg/init.cc:103
- #: apt-pkg/init.cc:111 apt-pkg/clean.cc:33 apt-pkg/policy.cc:338
- #: methods/mirror.cc:91
+ #: apt-inst/extract.cc:465 apt-pkg/contrib/cdromutl.cc:183
+ #: apt-pkg/contrib/fileutl.cc:344 apt-pkg/sourcelist.cc:208
+ #: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:456 apt-pkg/init.cc:108
+ #: apt-pkg/init.cc:116 apt-pkg/clean.cc:36 apt-pkg/policy.cc:359
+ #: methods/mirror.cc:95
  #, c-format
  msgid "Unable to read %s"
  msgstr ""
  
- #: apt-inst/extract.cc:489
+ #: apt-inst/extract.cc:492
  #, c-format
  msgid "Unable to stat %s"
  msgstr ""
  
- #: apt-inst/deb/dpkgdb.cc:51 apt-inst/deb/dpkgdb.cc:57
+ #: apt-inst/deb/dpkgdb.cc:55 apt-inst/deb/dpkgdb.cc:61
  #, c-format
  msgid "Failed to remove %s"
  msgstr ""
  
- #: apt-inst/deb/dpkgdb.cc:106 apt-inst/deb/dpkgdb.cc:108
+ #: apt-inst/deb/dpkgdb.cc:110 apt-inst/deb/dpkgdb.cc:112
  #, c-format
  msgid "Unable to create %s"
  msgstr ""
  
- #: apt-inst/deb/dpkgdb.cc:114
+ #: apt-inst/deb/dpkgdb.cc:118
  #, c-format
  msgid "Failed to stat %sinfo"
  msgstr ""
  
- #: apt-inst/deb/dpkgdb.cc:119
+ #: apt-inst/deb/dpkgdb.cc:123
  msgid "The info and temp directories need to be on the same filesystem"
  msgstr ""
  
- #: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:1048
- #: apt-pkg/pkgcachegen.cc:1152 apt-pkg/pkgcachegen.cc:1158
- #: apt-pkg/pkgcachegen.cc:1304
+ #: apt-inst/deb/dpkgdb.cc:139 apt-pkg/pkgcachegen.cc:1168
+ #: apt-pkg/pkgcachegen.cc:1272 apt-pkg/pkgcachegen.cc:1278
+ #: apt-pkg/pkgcachegen.cc:1434
  msgid "Reading package lists"
  msgstr ""
  
- #: apt-inst/deb/dpkgdb.cc:176
+ #: apt-inst/deb/dpkgdb.cc:180
  #, c-format
  msgid "Failed to change to the admin dir %sinfo"
  msgstr ""
  
- #: apt-inst/deb/dpkgdb.cc:197 apt-inst/deb/dpkgdb.cc:351
- #: apt-inst/deb/dpkgdb.cc:444
+ #: apt-inst/deb/dpkgdb.cc:201 apt-inst/deb/dpkgdb.cc:355
+ #: apt-inst/deb/dpkgdb.cc:448
  msgid "Internal error getting a package name"
  msgstr ""
  
- #: apt-inst/deb/dpkgdb.cc:201 apt-inst/deb/dpkgdb.cc:382
+ #: apt-inst/deb/dpkgdb.cc:205 apt-inst/deb/dpkgdb.cc:386
  msgid "Reading file listing"
  msgstr ""
  
- #: apt-inst/deb/dpkgdb.cc:212
+ #: apt-inst/deb/dpkgdb.cc:216
  #, c-format
  msgid ""
  "Failed to open the list file '%sinfo/%s'. If you cannot restore this file "
  "package!"
  msgstr ""
  
- #: apt-inst/deb/dpkgdb.cc:225 apt-inst/deb/dpkgdb.cc:238
+ #: apt-inst/deb/dpkgdb.cc:229 apt-inst/deb/dpkgdb.cc:242
  #, c-format
  msgid "Failed reading the list file %sinfo/%s"
  msgstr ""
  
- #: apt-inst/deb/dpkgdb.cc:262
+ #: apt-inst/deb/dpkgdb.cc:266
  msgid "Internal error getting a node"
  msgstr ""
  
- #: apt-inst/deb/dpkgdb.cc:305
+ #: apt-inst/deb/dpkgdb.cc:309
  #, c-format
  msgid "Failed to open the diversions file %sdiversions"
  msgstr ""
  
- #: apt-inst/deb/dpkgdb.cc:320
+ #: apt-inst/deb/dpkgdb.cc:324
  msgid "The diversion file is corrupted"
  msgstr ""
  
- #: apt-inst/deb/dpkgdb.cc:327 apt-inst/deb/dpkgdb.cc:332
- #: apt-inst/deb/dpkgdb.cc:337
+ #: apt-inst/deb/dpkgdb.cc:331 apt-inst/deb/dpkgdb.cc:336
+ #: apt-inst/deb/dpkgdb.cc:341
  #, c-format
  msgid "Invalid line in the diversion file: %s"
  msgstr ""
  
- #: apt-inst/deb/dpkgdb.cc:358
+ #: apt-inst/deb/dpkgdb.cc:362
  msgid "Internal error adding a diversion"
  msgstr ""
  
- #: apt-inst/deb/dpkgdb.cc:379
+ #: apt-inst/deb/dpkgdb.cc:383
  msgid "The pkg cache must be initialized first"
  msgstr ""
  
- #: apt-inst/deb/dpkgdb.cc:439
+ #: apt-inst/deb/dpkgdb.cc:443
  #, c-format
  msgid "Failed to find a Package: header, offset %lu"
  msgstr ""
  
- #: apt-inst/deb/dpkgdb.cc:461
+ #: apt-inst/deb/dpkgdb.cc:465
  #, c-format
  msgid "Bad ConfFile section in the status file. Offset %lu"
  msgstr ""
  
- #: apt-inst/deb/dpkgdb.cc:466
+ #: apt-inst/deb/dpkgdb.cc:470
  #, c-format
  msgid "Error parsing MD5. Offset %lu"
  msgstr ""
  
- #: apt-inst/deb/debfile.cc:39 apt-inst/deb/debfile.cc:44
+ #: apt-inst/deb/debfile.cc:42 apt-inst/deb/debfile.cc:47
  #, c-format
  msgid "This is not a valid DEB archive, missing '%s' member"
  msgstr ""
  
  #. FIXME: add data.tar.xz here - adding it now would require a Translation round for a very small gain
- #: apt-inst/deb/debfile.cc:53
+ #: apt-inst/deb/debfile.cc:56
  #, c-format
  msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
  msgstr ""
  
- #: apt-inst/deb/debfile.cc:113
+ #: apt-inst/deb/debfile.cc:116
  #, c-format
  msgid "Couldn't change to %s"
  msgstr ""
  
- #: apt-inst/deb/debfile.cc:154
+ #: apt-inst/deb/debfile.cc:157
  #, c-format
  msgid "Internal error, could not locate member %s"
  msgstr ""
  
- #: apt-inst/deb/debfile.cc:189
+ #: apt-inst/deb/debfile.cc:192
  msgid "Failed to locate a valid control file"
  msgstr ""
  
- #: apt-inst/deb/debfile.cc:274
+ #: apt-inst/deb/debfile.cc:277
  msgid "Unparsable control file"
  msgstr ""
  
- #: methods/bzip2.cc:60 methods/gzip.cc:52
+ #: methods/bzip2.cc:63 methods/gzip.cc:54
  msgid "Empty files can't be valid archives"
  msgstr ""
  
- #: methods/bzip2.cc:64
+ #: methods/bzip2.cc:67
  #, c-format
  msgid "Couldn't open pipe for %s"
  msgstr ""
  
- #: methods/bzip2.cc:108
+ #: methods/bzip2.cc:111
  #, c-format
  msgid "Read error from %s process"
  msgstr ""
  
- #: methods/bzip2.cc:140 methods/bzip2.cc:149 methods/copy.cc:43
- #: methods/gzip.cc:92 methods/gzip.cc:101 methods/rred.cc:524
- #: methods/rred.cc:533
+ #: methods/bzip2.cc:143 methods/bzip2.cc:152 methods/copy.cc:46
+ #: methods/gzip.cc:94 methods/gzip.cc:103 methods/rred.cc:530
+ #: methods/rred.cc:539
  msgid "Failed to stat"
  msgstr ""
  
- #: methods/bzip2.cc:146 methods/copy.cc:80 methods/gzip.cc:98
- #: methods/rred.cc:530
+ #: methods/bzip2.cc:149 methods/copy.cc:83 methods/gzip.cc:100
+ #: methods/rred.cc:536
  msgid "Failed to set modification time"
  msgstr ""
  
- #: methods/cdrom.cc:199
+ #: methods/cdrom.cc:203
  #, c-format
  msgid "Unable to read the cdrom database %s"
  msgstr ""
  
- #: methods/cdrom.cc:208
+ #: methods/cdrom.cc:212
  msgid ""
  "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
  "cannot be used to add new CD-ROMs"
  msgstr ""
  
- #: methods/cdrom.cc:218
+ #: methods/cdrom.cc:222
  msgid "Wrong CD-ROM"
  msgstr ""
  
- #: methods/cdrom.cc:245
+ #: methods/cdrom.cc:249
  #, c-format
  msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
  msgstr ""
  
- #: methods/cdrom.cc:250
+ #: methods/cdrom.cc:254
  msgid "Disk not found."
  msgstr ""
  
- #: methods/cdrom.cc:258 methods/file.cc:79 methods/rsh.cc:265
+ #: methods/cdrom.cc:262 methods/file.cc:82 methods/rsh.cc:271
  msgid "File not found"
  msgstr ""
  
- #: methods/file.cc:44
+ #: methods/file.cc:47
  msgid "Invalid URI, local URIS must not start with //"
  msgstr ""
  
  #. Login must be before getpeername otherwise dante won't work.
- #: methods/ftp.cc:168
+ #: methods/ftp.cc:172
  msgid "Logging in"
  msgstr ""
  
- #: methods/ftp.cc:174
+ #: methods/ftp.cc:178
  msgid "Unable to determine the peer name"
  msgstr ""
  
- #: methods/ftp.cc:179
+ #: methods/ftp.cc:183
  msgid "Unable to determine the local name"
  msgstr ""
  
- #: methods/ftp.cc:210 methods/ftp.cc:238
+ #: methods/ftp.cc:214 methods/ftp.cc:242
  #, c-format
  msgid "The server refused the connection and said: %s"
  msgstr ""
  
- #: methods/ftp.cc:216
+ #: methods/ftp.cc:220
  #, c-format
  msgid "USER failed, server said: %s"
  msgstr ""
  
- #: methods/ftp.cc:223
+ #: methods/ftp.cc:227
  #, c-format
  msgid "PASS failed, server said: %s"
  msgstr ""
  
- #: methods/ftp.cc:243
+ #: methods/ftp.cc:247
  msgid ""
  "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
  "is empty."
  msgstr ""
  
- #: methods/ftp.cc:271
+ #: methods/ftp.cc:275
  #, c-format
  msgid "Login script command '%s' failed, server said: %s"
  msgstr ""
  
- #: methods/ftp.cc:297
+ #: methods/ftp.cc:301
  #, c-format
  msgid "TYPE failed, server said: %s"
  msgstr ""
  
- #: methods/ftp.cc:335 methods/ftp.cc:446 methods/rsh.cc:184 methods/rsh.cc:227
+ #: methods/ftp.cc:339 methods/ftp.cc:450 methods/rsh.cc:190 methods/rsh.cc:233
  msgid "Connection timeout"
  msgstr ""
  
- #: methods/ftp.cc:341
+ #: methods/ftp.cc:345
  msgid "Server closed the connection"
  msgstr ""
  
- #: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:820 methods/rsh.cc:191
+ #: methods/ftp.cc:348 apt-pkg/contrib/fileutl.cc:832 methods/rsh.cc:197
  msgid "Read error"
  msgstr ""
  
- #: methods/ftp.cc:351 methods/rsh.cc:198
+ #: methods/ftp.cc:355 methods/rsh.cc:204
  msgid "A response overflowed the buffer."
  msgstr ""
  
- #: methods/ftp.cc:368 methods/ftp.cc:380
+ #: methods/ftp.cc:372 methods/ftp.cc:384
  msgid "Protocol corruption"
  msgstr ""
  
- #: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:862 methods/rsh.cc:233
+ #: methods/ftp.cc:456 apt-pkg/contrib/fileutl.cc:874 methods/rsh.cc:239
  msgid "Write error"
  msgstr ""
  
- #: methods/ftp.cc:692 methods/ftp.cc:698 methods/ftp.cc:734
+ #: methods/ftp.cc:696 methods/ftp.cc:702 methods/ftp.cc:738
  msgid "Could not create a socket"
  msgstr ""
  
- #: methods/ftp.cc:703
+ #: methods/ftp.cc:707
  msgid "Could not connect data socket, connection timed out"
  msgstr ""
  
- #: methods/ftp.cc:709
+ #: methods/ftp.cc:713
  msgid "Could not connect passive socket."
  msgstr ""
  
- #: methods/ftp.cc:727
+ #: methods/ftp.cc:731
  msgid "getaddrinfo was unable to get a listening socket"
  msgstr ""
  
- #: methods/ftp.cc:741
+ #: methods/ftp.cc:745
  msgid "Could not bind a socket"
  msgstr ""
  
- #: methods/ftp.cc:745
+ #: methods/ftp.cc:749
  msgid "Could not listen on the socket"
  msgstr ""
  
- #: methods/ftp.cc:752
+ #: methods/ftp.cc:756
  msgid "Could not determine the socket's name"
  msgstr ""
  
- #: methods/ftp.cc:784
+ #: methods/ftp.cc:788
  msgid "Unable to send PORT command"
  msgstr ""
  
- #: methods/ftp.cc:794
+ #: methods/ftp.cc:798
  #, c-format
  msgid "Unknown address family %u (AF_*)"
  msgstr ""
  
- #: methods/ftp.cc:803
+ #: methods/ftp.cc:807
  #, c-format
  msgid "EPRT failed, server said: %s"
  msgstr ""
  
- #: methods/ftp.cc:823
+ #: methods/ftp.cc:827
  msgid "Data socket connect timed out"
  msgstr ""
  
- #: methods/ftp.cc:830
+ #: methods/ftp.cc:834
  msgid "Unable to accept connection"
  msgstr ""
  
- #: methods/ftp.cc:869 methods/http.cc:1023 methods/rsh.cc:303
+ #: methods/ftp.cc:873 methods/http.cc:1031 methods/rsh.cc:309
  msgid "Problem hashing file"
  msgstr ""
  
- #: methods/ftp.cc:882
+ #: methods/ftp.cc:886
  #, c-format
  msgid "Unable to fetch file, server said '%s'"
  msgstr ""
  
- #: methods/ftp.cc:897 methods/rsh.cc:322
+ #: methods/ftp.cc:901 methods/rsh.cc:328
  msgid "Data socket timed out"
  msgstr ""
  
- #: methods/ftp.cc:927
+ #: methods/ftp.cc:931
  #, c-format
  msgid "Data transfer failed, server said '%s'"
  msgstr ""
  
  #. Get the files information
- #: methods/ftp.cc:1004
+ #: methods/ftp.cc:1008
  msgid "Query"
  msgstr ""
  
- #: methods/ftp.cc:1116
+ #: methods/ftp.cc:1120
  msgid "Unable to invoke "
  msgstr ""
  
- #: methods/connect.cc:71
+ #: methods/connect.cc:75
  #, c-format
  msgid "Connecting to %s (%s)"
  msgstr ""
  
- #: methods/connect.cc:82
+ #: methods/connect.cc:86
  #, c-format
  msgid "[IP: %s %s]"
  msgstr ""
  
- #: methods/connect.cc:89
+ #: methods/connect.cc:93
  #, c-format
  msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
  msgstr ""
  
- #: methods/connect.cc:95
+ #: methods/connect.cc:99
  #, c-format
  msgid "Cannot initiate the connection to %s:%s (%s)."
  msgstr ""
  
- #: methods/connect.cc:103
+ #: methods/connect.cc:107
  #, c-format
  msgid "Could not connect to %s:%s (%s), connection timed out"
  msgstr ""
  
- #: methods/connect.cc:121
+ #: methods/connect.cc:125
  #, c-format
  msgid "Could not connect to %s:%s (%s)."
  msgstr ""
  
  #. We say this mainly because the pause here is for the
  #. ssh connection that is still going
- #: methods/connect.cc:149 methods/rsh.cc:425
+ #: methods/connect.cc:153 methods/rsh.cc:431
  #, c-format
  msgid "Connecting to %s"
  msgstr ""
  
- #: methods/connect.cc:168 methods/connect.cc:187
+ #: methods/connect.cc:172 methods/connect.cc:191
  #, c-format
  msgid "Could not resolve '%s'"
  msgstr ""
  
- #: methods/connect.cc:193
+ #: methods/connect.cc:197
  #, c-format
  msgid "Temporary failure resolving '%s'"
  msgstr ""
  
- #: methods/connect.cc:196
+ #: methods/connect.cc:200
  #, c-format
  msgid "Something wicked happened resolving '%s:%s' (%i - %s)"
  msgstr ""
  
- #: methods/connect.cc:243
+ #: methods/connect.cc:247
  #, c-format
  msgid "Unable to connect to %s:%s:"
  msgstr ""
  
- #: methods/gpgv.cc:166
+ #: methods/gpgv.cc:172
  msgid ""
  "Internal error: Good signature, but could not determine key fingerprint?!"
  msgstr ""
  
- #: methods/gpgv.cc:171
+ #: methods/gpgv.cc:177
  msgid "At least one invalid signature was encountered."
  msgstr ""
  
- #: methods/gpgv.cc:175
+ #: methods/gpgv.cc:181
  msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)"
  msgstr ""
  
- #: methods/gpgv.cc:180
+ #: methods/gpgv.cc:186
  msgid "Unknown error executing gpgv"
  msgstr ""
  
- #: methods/gpgv.cc:214 methods/gpgv.cc:221
+ #: methods/gpgv.cc:220 methods/gpgv.cc:227
  msgid "The following signatures were invalid:\n"
  msgstr ""
  
- #: methods/gpgv.cc:228
+ #: methods/gpgv.cc:234
  msgid ""
  "The following signatures couldn't be verified because the public key is not "
  "available:\n"
  msgstr ""
  
- #: methods/http.cc:385
+ #: methods/http.cc:393
  msgid "Waiting for headers"
  msgstr ""
  
- #: methods/http.cc:531
+ #: methods/http.cc:539
  #, c-format
  msgid "Got a single header line over %u chars"
  msgstr ""
  
- #: methods/http.cc:539
+ #: methods/http.cc:547
  msgid "Bad header line"
  msgstr ""
  
- #: methods/http.cc:564 methods/http.cc:571
+ #: methods/http.cc:572 methods/http.cc:579
  msgid "The HTTP server sent an invalid reply header"
  msgstr ""
  
- #: methods/http.cc:600
+ #: methods/http.cc:608
  msgid "The HTTP server sent an invalid Content-Length header"
  msgstr ""
  
- #: methods/http.cc:615
+ #: methods/http.cc:623
  msgid "The HTTP server sent an invalid Content-Range header"
  msgstr ""
  
- #: methods/http.cc:617
+ #: methods/http.cc:625
  msgid "This HTTP server has broken range support"
  msgstr ""
  
- #: methods/http.cc:641
+ #: methods/http.cc:649
  msgid "Unknown date format"
  msgstr ""
  
- #: methods/http.cc:800
+ #: methods/http.cc:808
  msgid "Select failed"
  msgstr ""
  
- #: methods/http.cc:805
+ #: methods/http.cc:813
  msgid "Connection timed out"
  msgstr ""
  
- #: methods/http.cc:828
+ #: methods/http.cc:836
  msgid "Error writing to output file"
  msgstr ""
  
- #: methods/http.cc:859
+ #: methods/http.cc:867
  msgid "Error writing to file"
  msgstr ""
  
- #: methods/http.cc:887
+ #: methods/http.cc:895
  msgid "Error writing to the file"
  msgstr ""
  
- #: methods/http.cc:901
+ #: methods/http.cc:909
  msgid "Error reading from server. Remote end closed connection"
  msgstr ""
  
- #: methods/http.cc:903
+ #: methods/http.cc:911
  msgid "Error reading from server"
  msgstr ""
  
- #: methods/http.cc:1008 apt-pkg/contrib/mmap.cc:291
+ #: methods/http.cc:1016 apt-pkg/contrib/mmap.cc:293
  msgid "Failed to truncate file"
  msgstr ""
  
- #: methods/http.cc:1183
+ #: methods/http.cc:1191
  msgid "Bad header data"
  msgstr ""
  
- #: methods/http.cc:1200 methods/http.cc:1255
+ #: methods/http.cc:1208 methods/http.cc:1263
  msgid "Connection failed"
  msgstr ""
  
- #: methods/http.cc:1347
+ #: methods/http.cc:1355
  msgid "Internal error"
  msgstr ""
  
- #: apt-pkg/contrib/mmap.cc:77
+ #: apt-pkg/contrib/mmap.cc:79
  msgid "Can't mmap an empty file"
  msgstr ""
  
- #: apt-pkg/contrib/mmap.cc:89
+ #: apt-pkg/contrib/mmap.cc:91
  #, c-format
  msgid "Couldn't duplicate file descriptor %i"
  msgstr ""
  
- #: apt-pkg/contrib/mmap.cc:97 apt-pkg/contrib/mmap.cc:258
+ #: apt-pkg/contrib/mmap.cc:99
  #, c-format
- msgid "Couldn't make mmap of %lu bytes"
+ msgid "Couldn't make mmap of %llu bytes"
  msgstr ""
  
- #: apt-pkg/contrib/mmap.cc:124
+ #: apt-pkg/contrib/mmap.cc:126
  msgid "Unable to close mmap"
  msgstr ""
  
- #: apt-pkg/contrib/mmap.cc:152 apt-pkg/contrib/mmap.cc:180
+ #: apt-pkg/contrib/mmap.cc:154 apt-pkg/contrib/mmap.cc:182
  msgid "Unable to synchronize mmap"
  msgstr ""
  
- #: apt-pkg/contrib/mmap.cc:310
+ #: apt-pkg/contrib/mmap.cc:260
+ #, c-format
+ msgid "Couldn't make mmap of %lu bytes"
+ msgstr ""
+ #: apt-pkg/contrib/mmap.cc:312
  #, c-format
  msgid ""
  "Dynamic MMap ran out of room. Please increase the size of APT::Cache-Limit. "
  "Current value: %lu. (man 5 apt.conf)"
  msgstr ""
  
- #: apt-pkg/contrib/mmap.cc:409
+ #: apt-pkg/contrib/mmap.cc:411
  #, c-format
  msgid ""
  "Unable to increase the size of the MMap as the limit of %lu bytes is already "
  "reached."
  msgstr ""
  
- #: apt-pkg/contrib/mmap.cc:412
+ #: apt-pkg/contrib/mmap.cc:414
  msgid ""
  "Unable to increase size of the MMap as automatic growing is disabled by user."
  msgstr ""
@@@ -2102,93 -2149,93 +2149,93 @@@ msgstr "
  msgid "%lis"
  msgstr ""
  
- #: apt-pkg/contrib/strutl.cc:1138
+ #: apt-pkg/contrib/strutl.cc:1165
  #, c-format
  msgid "Selection %s not found"
  msgstr ""
  
- #: apt-pkg/contrib/configuration.cc:452
+ #: apt-pkg/contrib/configuration.cc:468
  #, c-format
  msgid "Unrecognized type abbreviation: '%c'"
  msgstr ""
  
- #: apt-pkg/contrib/configuration.cc:510
+ #: apt-pkg/contrib/configuration.cc:526
  #, c-format
  msgid "Opening configuration file %s"
  msgstr ""
  
- #: apt-pkg/contrib/configuration.cc:678
+ #: apt-pkg/contrib/configuration.cc:694
  #, c-format
  msgid "Syntax error %s:%u: Block starts with no name."
  msgstr ""
  
- #: apt-pkg/contrib/configuration.cc:697
+ #: apt-pkg/contrib/configuration.cc:713
  #, c-format
  msgid "Syntax error %s:%u: Malformed tag"
  msgstr ""
  
- #: apt-pkg/contrib/configuration.cc:714
+ #: apt-pkg/contrib/configuration.cc:730
  #, c-format
  msgid "Syntax error %s:%u: Extra junk after value"
  msgstr ""
  
- #: apt-pkg/contrib/configuration.cc:754
+ #: apt-pkg/contrib/configuration.cc:770
  #, c-format
  msgid "Syntax error %s:%u: Directives can only be done at the top level"
  msgstr ""
  
- #: apt-pkg/contrib/configuration.cc:761
+ #: apt-pkg/contrib/configuration.cc:777
  #, c-format
  msgid "Syntax error %s:%u: Too many nested includes"
  msgstr ""
  
- #: apt-pkg/contrib/configuration.cc:765 apt-pkg/contrib/configuration.cc:770
+ #: apt-pkg/contrib/configuration.cc:781 apt-pkg/contrib/configuration.cc:786
  #, c-format
  msgid "Syntax error %s:%u: Included from here"
  msgstr ""
  
- #: apt-pkg/contrib/configuration.cc:774
+ #: apt-pkg/contrib/configuration.cc:790
  #, c-format
  msgid "Syntax error %s:%u: Unsupported directive '%s'"
  msgstr ""
  
- #: apt-pkg/contrib/configuration.cc:777
+ #: apt-pkg/contrib/configuration.cc:793
  #, c-format
  msgid "Syntax error %s:%u: clear directive requires an option tree as argument"
  msgstr ""
  
- #: apt-pkg/contrib/configuration.cc:827
+ #: apt-pkg/contrib/configuration.cc:843
  #, c-format
  msgid "Syntax error %s:%u: Extra junk at end of file"
  msgstr ""
  
- #: apt-pkg/contrib/progress.cc:153
+ #: apt-pkg/contrib/progress.cc:146
  #, c-format
  msgid "%c%s... Error!"
  msgstr ""
  
- #: apt-pkg/contrib/progress.cc:155
+ #: apt-pkg/contrib/progress.cc:148
  #, c-format
  msgid "%c%s... Done"
  msgstr ""
  
- #: apt-pkg/contrib/cmndline.cc:77
+ #: apt-pkg/contrib/cmndline.cc:80
  #, c-format
  msgid "Command line option '%c' [from %s] is not known."
  msgstr ""
  
- #: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111
- #: apt-pkg/contrib/cmndline.cc:119
+ #: apt-pkg/contrib/cmndline.cc:104 apt-pkg/contrib/cmndline.cc:112
+ #: apt-pkg/contrib/cmndline.cc:120
  #, c-format
  msgid "Command line option %s is not understood"
  msgstr ""
  
- #: apt-pkg/contrib/cmndline.cc:124
+ #: apt-pkg/contrib/cmndline.cc:125
  #, c-format
  msgid "Command line option %s is not boolean"
  msgstr ""
  
- #: apt-pkg/contrib/cmndline.cc:165 apt-pkg/contrib/cmndline.cc:186
+ #: apt-pkg/contrib/cmndline.cc:166 apt-pkg/contrib/cmndline.cc:187
  #, c-format
  msgid "Option %s requires an argument."
  msgstr ""
  msgid "Option %s: Configuration item specification must have an =<val>."
  msgstr ""
  
- #: apt-pkg/contrib/cmndline.cc:236
+ #: apt-pkg/contrib/cmndline.cc:235
  #, c-format
  msgid "Option %s requires an integer argument, not '%s'"
  msgstr ""
  
- #: apt-pkg/contrib/cmndline.cc:267
+ #: apt-pkg/contrib/cmndline.cc:266
  #, c-format
  msgid "Option '%s' is too long"
  msgstr ""
  
- #: apt-pkg/contrib/cmndline.cc:300
+ #: apt-pkg/contrib/cmndline.cc:298
  #, c-format
  msgid "Sense %s is not understood, try true or false."
  msgstr ""
  
- #: apt-pkg/contrib/cmndline.cc:350
+ #: apt-pkg/contrib/cmndline.cc:348
  #, c-format
  msgid "Invalid operation %s"
  msgstr ""
  
- #: apt-pkg/contrib/cdromutl.cc:52
+ #: apt-pkg/contrib/cdromutl.cc:56
  #, c-format
  msgid "Unable to stat the mount point %s"
  msgstr ""
  
- #: apt-pkg/contrib/cdromutl.cc:175 apt-pkg/contrib/cdromutl.cc:209
- #: apt-pkg/acquire.cc:456 apt-pkg/acquire.cc:481 apt-pkg/clean.cc:39
- #: methods/mirror.cc:97
+ #: apt-pkg/contrib/cdromutl.cc:179 apt-pkg/contrib/cdromutl.cc:213
+ #: apt-pkg/acquire.cc:462 apt-pkg/acquire.cc:487 apt-pkg/clean.cc:42
+ #: methods/mirror.cc:101
  #, c-format
  msgid "Unable to change to %s"
  msgstr ""
  
- #: apt-pkg/contrib/cdromutl.cc:220
+ #: apt-pkg/contrib/cdromutl.cc:224
  msgid "Failed to stat the cdrom"
  msgstr ""
  
- #: apt-pkg/contrib/fileutl.cc:168
+ #: apt-pkg/contrib/fileutl.cc:169
  #, c-format
  msgid "Not using locking for read only lock file %s"
  msgstr ""
  
- #: apt-pkg/contrib/fileutl.cc:173
+ #: apt-pkg/contrib/fileutl.cc:174
  #, c-format
  msgid "Could not open lock file %s"
  msgstr ""
  
- #: apt-pkg/contrib/fileutl.cc:191
+ #: apt-pkg/contrib/fileutl.cc:192
  #, c-format
  msgid "Not using locking for nfs mounted lock file %s"
  msgstr ""
  
- #: apt-pkg/contrib/fileutl.cc:195
+ #: apt-pkg/contrib/fileutl.cc:196
  #, c-format
  msgid "Could not get lock %s"
  msgstr ""
  
- #: apt-pkg/contrib/fileutl.cc:335
+ #: apt-pkg/contrib/fileutl.cc:336
  #, c-format
  msgid "List of files can't be created as '%s' is not a directory"
  msgstr ""
  
- #: apt-pkg/contrib/fileutl.cc:362
+ #: apt-pkg/contrib/fileutl.cc:363
  #, c-format
  msgid "Ignoring '%s' in directory '%s' as it is not a regular file"
  msgstr ""
  
- #: apt-pkg/contrib/fileutl.cc:380
+ #: apt-pkg/contrib/fileutl.cc:381
  #, c-format
  msgid "Ignoring file '%s' in directory '%s' as it has no filename extension"
  msgstr ""
  
- #: apt-pkg/contrib/fileutl.cc:389
+ #: apt-pkg/contrib/fileutl.cc:390
  #, c-format
  msgid ""
  "Ignoring file '%s' in directory '%s' as it has an invalid filename extension"
  msgstr ""
  
- #: apt-pkg/contrib/fileutl.cc:679
+ #: apt-pkg/contrib/fileutl.cc:691
  #, c-format
  msgid "Waited for %s but it wasn't there"
  msgstr ""
  
- #: apt-pkg/contrib/fileutl.cc:691
+ #: apt-pkg/contrib/fileutl.cc:703
  #, c-format
  msgid "Sub-process %s received a segmentation fault."
  msgstr ""
  
- #: apt-pkg/contrib/fileutl.cc:693
+ #: apt-pkg/contrib/fileutl.cc:705
  #, c-format
  msgid "Sub-process %s received signal %u."
  msgstr ""
  
- #: apt-pkg/contrib/fileutl.cc:697
+ #: apt-pkg/contrib/fileutl.cc:709
  #, c-format
  msgid "Sub-process %s returned an error code (%u)"
  msgstr ""
  
- #: apt-pkg/contrib/fileutl.cc:699
+ #: apt-pkg/contrib/fileutl.cc:711
  #, c-format
  msgid "Sub-process %s exited unexpectedly"
  msgstr ""
  
- #: apt-pkg/contrib/fileutl.cc:764 apt-pkg/indexcopy.cc:673
+ #: apt-pkg/contrib/fileutl.cc:776 apt-pkg/indexcopy.cc:676
  #, c-format
  msgid "Could not open file %s"
  msgstr ""
  
- #: apt-pkg/contrib/fileutl.cc:781
+ #: apt-pkg/contrib/fileutl.cc:793
  #, c-format
  msgid "Could not open file descriptor %d"
  msgstr ""
  
- #: apt-pkg/contrib/fileutl.cc:841
+ #: apt-pkg/contrib/fileutl.cc:853
  #, c-format
- msgid "read, still have %lu to read but none left"
+ msgid "read, still have %llu to read but none left"
  msgstr ""
  
- #: apt-pkg/contrib/fileutl.cc:874
+ #: apt-pkg/contrib/fileutl.cc:886
  #, c-format
- msgid "write, still have %lu to write but couldn't"
+ msgid "write, still have %llu to write but couldn't"
  msgstr ""
  
- #: apt-pkg/contrib/fileutl.cc:1010
+ #: apt-pkg/contrib/fileutl.cc:1023
  #, c-format
  msgid "Problem closing the gzip file %s"
  msgstr ""
  
- #: apt-pkg/contrib/fileutl.cc:1013
+ #: apt-pkg/contrib/fileutl.cc:1026
  #, c-format
  msgid "Problem closing the file %s"
  msgstr ""
  
- #: apt-pkg/contrib/fileutl.cc:1018
+ #: apt-pkg/contrib/fileutl.cc:1031
  #, c-format
  msgid "Problem renaming the file %s to %s"
  msgstr ""
  
- #: apt-pkg/contrib/fileutl.cc:1029
+ #: apt-pkg/contrib/fileutl.cc:1042
  #, c-format
  msgid "Problem unlinking the file %s"
  msgstr ""
  
- #: apt-pkg/contrib/fileutl.cc:1042
+ #: apt-pkg/contrib/fileutl.cc:1055
  msgid "Problem syncing the file"
  msgstr ""
  
- #: apt-pkg/pkgcache.cc:145
+ #: apt-pkg/pkgcache.cc:148
  msgid "Empty package cache"
  msgstr ""
  
- #: apt-pkg/pkgcache.cc:151
+ #: apt-pkg/pkgcache.cc:154
  msgid "The package cache file is corrupted"
  msgstr ""
  
- #: apt-pkg/pkgcache.cc:156
+ #: apt-pkg/pkgcache.cc:159
  msgid "The package cache file is an incompatible version"
  msgstr ""
  
- #: apt-pkg/pkgcache.cc:161
+ #: apt-pkg/pkgcache.cc:162
+ msgid "The package cache file is corrupted, it is too small"
+ msgstr ""
+ #: apt-pkg/pkgcache.cc:167
  #, c-format
  msgid "This APT does not support the versioning system '%s'"
  msgstr ""
  
- #: apt-pkg/pkgcache.cc:166
+ #: apt-pkg/pkgcache.cc:172
  msgid "The package cache was built for a different architecture"
  msgstr ""
  
- #: apt-pkg/pkgcache.cc:299
+ #: apt-pkg/pkgcache.cc:305
  msgid "Depends"
  msgstr ""
  
- #: apt-pkg/pkgcache.cc:299
+ #: apt-pkg/pkgcache.cc:305
  msgid "PreDepends"
  msgstr ""
  
- #: apt-pkg/pkgcache.cc:299
+ #: apt-pkg/pkgcache.cc:305
  msgid "Suggests"
  msgstr ""
  
- #: apt-pkg/pkgcache.cc:300
+ #: apt-pkg/pkgcache.cc:306
  msgid "Recommends"
  msgstr ""
  
- #: apt-pkg/pkgcache.cc:300
+ #: apt-pkg/pkgcache.cc:306
  msgid "Conflicts"
  msgstr ""
  
- #: apt-pkg/pkgcache.cc:300
+ #: apt-pkg/pkgcache.cc:306
  msgid "Replaces"
  msgstr ""
  
- #: apt-pkg/pkgcache.cc:301
+ #: apt-pkg/pkgcache.cc:307
  msgid "Obsoletes"
  msgstr ""
  
- #: apt-pkg/pkgcache.cc:301
+ #: apt-pkg/pkgcache.cc:307
  msgid "Breaks"
  msgstr ""
  
- #: apt-pkg/pkgcache.cc:301
+ #: apt-pkg/pkgcache.cc:307
  msgid "Enhances"
  msgstr ""
  
- #: apt-pkg/pkgcache.cc:312
+ #: apt-pkg/pkgcache.cc:318
  msgid "important"
  msgstr ""
  
- #: apt-pkg/pkgcache.cc:312
+ #: apt-pkg/pkgcache.cc:318
  msgid "required"
  msgstr ""
  
- #: apt-pkg/pkgcache.cc:312
+ #: apt-pkg/pkgcache.cc:318
  msgid "standard"
  msgstr ""
  
- #: apt-pkg/pkgcache.cc:313
+ #: apt-pkg/pkgcache.cc:319
  msgid "optional"
  msgstr ""
  
- #: apt-pkg/pkgcache.cc:313
+ #: apt-pkg/pkgcache.cc:319
  msgid "extra"
  msgstr ""
  
- #: apt-pkg/depcache.cc:125 apt-pkg/depcache.cc:154
+ #: apt-pkg/depcache.cc:130 apt-pkg/depcache.cc:159
  msgid "Building dependency tree"
  msgstr ""
  
- #: apt-pkg/depcache.cc:126
+ #: apt-pkg/depcache.cc:131
  msgid "Candidate versions"
  msgstr ""
  
- #: apt-pkg/depcache.cc:155
+ #: apt-pkg/depcache.cc:160
  msgid "Dependency generation"
  msgstr ""
  
- #: apt-pkg/depcache.cc:175 apt-pkg/depcache.cc:208 apt-pkg/depcache.cc:212
+ #: apt-pkg/depcache.cc:180 apt-pkg/depcache.cc:213 apt-pkg/depcache.cc:217
  msgid "Reading state information"
  msgstr ""
  
- #: apt-pkg/depcache.cc:237
+ #: apt-pkg/depcache.cc:242
  #, c-format
  msgid "Failed to open StateFile %s"
  msgstr ""
  
- #: apt-pkg/depcache.cc:243
+ #: apt-pkg/depcache.cc:248
  #, c-format
  msgid "Failed to write temporary StateFile %s"
  msgstr ""
  
- #: apt-pkg/tagfile.cc:102
+ #: apt-pkg/tagfile.cc:126
  #, c-format
  msgid "Unable to parse package file %s (1)"
  msgstr ""
  
- #: apt-pkg/tagfile.cc:189
+ #: apt-pkg/tagfile.cc:213
  #, c-format
  msgid "Unable to parse package file %s (2)"
  msgstr ""
  
- #: apt-pkg/sourcelist.cc:92
+ #: apt-pkg/sourcelist.cc:96
  #, c-format
  msgid "Malformed line %lu in source list %s ([option] unparseable)"
  msgstr ""
  
- #: apt-pkg/sourcelist.cc:95
+ #: apt-pkg/sourcelist.cc:99
  #, c-format
  msgid "Malformed line %lu in source list %s ([option] too short)"
  msgstr ""
  
- #: apt-pkg/sourcelist.cc:106
+ #: apt-pkg/sourcelist.cc:110
  #, c-format
  msgid "Malformed line %lu in source list %s ([%s] is not an assignment)"
  msgstr ""
  
- #: apt-pkg/sourcelist.cc:112
+ #: apt-pkg/sourcelist.cc:116
  #, c-format
  msgid "Malformed line %lu in source list %s ([%s] has no key)"
  msgstr ""
  
- #: apt-pkg/sourcelist.cc:115
+ #: apt-pkg/sourcelist.cc:119
  #, c-format
  msgid "Malformed line %lu in source list %s ([%s] key %s has no value)"
  msgstr ""
  
- #: apt-pkg/sourcelist.cc:128
+ #: apt-pkg/sourcelist.cc:132
  #, c-format
  msgid "Malformed line %lu in source list %s (URI)"
  msgstr ""
  
- #: apt-pkg/sourcelist.cc:130
+ #: apt-pkg/sourcelist.cc:134
  #, c-format
  msgid "Malformed line %lu in source list %s (dist)"
  msgstr ""
  
- #: apt-pkg/sourcelist.cc:133
+ #: apt-pkg/sourcelist.cc:137
  #, c-format
  msgid "Malformed line %lu in source list %s (URI parse)"
  msgstr ""
  
- #: apt-pkg/sourcelist.cc:139
+ #: apt-pkg/sourcelist.cc:143
  #, c-format
  msgid "Malformed line %lu in source list %s (absolute dist)"
  msgstr ""
  
- #: apt-pkg/sourcelist.cc:146
+ #: apt-pkg/sourcelist.cc:150
  #, c-format
  msgid "Malformed line %lu in source list %s (dist parse)"
  msgstr ""
  
- #: apt-pkg/sourcelist.cc:244
+ #: apt-pkg/sourcelist.cc:248
  #, c-format
  msgid "Opening %s"
  msgstr ""
  
- #: apt-pkg/sourcelist.cc:261 apt-pkg/cdrom.cc:444
+ #: apt-pkg/sourcelist.cc:265 apt-pkg/cdrom.cc:447
  #, c-format
  msgid "Line %u too long in source list %s."
  msgstr ""
  
- #: apt-pkg/sourcelist.cc:281
+ #: apt-pkg/sourcelist.cc:285
  #, c-format
  msgid "Malformed line %u in source list %s (type)"
  msgstr ""
  
- #: apt-pkg/sourcelist.cc:285
+ #: apt-pkg/sourcelist.cc:289
  #, c-format
  msgid "Type '%s' is not known on line %u in source list %s"
  msgstr ""
  
- #: apt-pkg/packagemanager.cc:335 apt-pkg/packagemanager.cc:623
 -#: apt-pkg/packagemanager.cc:298 apt-pkg/packagemanager.cc:770
++#: apt-pkg/packagemanager.cc:298 apt-pkg/packagemanager.cc:775
  #, c-format
  msgid ""
  "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf "
  "under APT::Immediate-Configure for details. (%d)"
  msgstr ""
  
- #: apt-pkg/packagemanager.cc:456
 -#: apt-pkg/packagemanager.cc:432 apt-pkg/packagemanager.cc:462
++#: apt-pkg/packagemanager.cc:437 apt-pkg/packagemanager.cc:467
  #, c-format
- msgid ""
- "This installation run will require temporarily removing the essential "
- "package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
- "you really want to do it, activate the APT::Force-LoopBreak option."
+ msgid "Could not configure '%s'. "
  msgstr ""
  
- #: apt-pkg/packagemanager.cc:501
 -#: apt-pkg/packagemanager.cc:502
++#: apt-pkg/packagemanager.cc:507
  #, c-format
  msgid ""
- "Could not perform immediate configuration on already unpacked '%s'. Please "
- "see man 5 apt.conf under APT::Immediate-Configure for details."
+ "This installation run will require temporarily removing the essential "
+ "package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
+ "you really want to do it, activate the APT::Force-LoopBreak option."
  msgstr ""
  
- #: apt-pkg/pkgrecords.cc:32
+ #: apt-pkg/pkgrecords.cc:34
  #, c-format
  msgid "Index file type '%s' is not supported"
  msgstr ""
  
- #: apt-pkg/algorithms.cc:247
+ #: apt-pkg/algorithms.cc:255
  #, c-format
  msgid ""
  "The package %s needs to be reinstalled, but I can't find an archive for it."
  msgstr ""
  
- #: apt-pkg/algorithms.cc:1158
+ #: apt-pkg/algorithms.cc:1191
  msgid ""
  "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
  "held packages."
  msgstr ""
  
- #: apt-pkg/algorithms.cc:1160
+ #: apt-pkg/algorithms.cc:1193
  msgid "Unable to correct problems, you have held broken packages."
  msgstr ""
  
- #: apt-pkg/algorithms.cc:1464 apt-pkg/algorithms.cc:1466
+ #: apt-pkg/algorithms.cc:1518 apt-pkg/algorithms.cc:1520
  msgid ""
  "Some index files failed to download. They have been ignored, or old ones "
  "used instead."
  msgstr ""
  
- #: apt-pkg/acquire.cc:79
+ #: apt-pkg/acquire.cc:81
  #, c-format
  msgid "List directory %spartial is missing."
  msgstr ""
  
- #: apt-pkg/acquire.cc:83
+ #: apt-pkg/acquire.cc:85
  #, c-format
  msgid "Archives directory %spartial is missing."
  msgstr ""
  
- #: apt-pkg/acquire.cc:91
+ #: apt-pkg/acquire.cc:93
  #, c-format
  msgid "Unable to lock directory %s"
  msgstr ""
  
  #. only show the ETA if it makes sense
  #. two days
- #: apt-pkg/acquire.cc:857
+ #: apt-pkg/acquire.cc:864
  #, c-format
  msgid "Retrieving file %li of %li (%s remaining)"
  msgstr ""
  
- #: apt-pkg/acquire.cc:859
+ #: apt-pkg/acquire.cc:866
  #, c-format
  msgid "Retrieving file %li of %li"
  msgstr ""
  
- #: apt-pkg/acquire-worker.cc:110
+ #: apt-pkg/acquire-worker.cc:112
  #, c-format
  msgid "The method driver %s could not be found."
  msgstr ""
  
- #: apt-pkg/acquire-worker.cc:159
+ #: apt-pkg/acquire-worker.cc:161
  #, c-format
  msgid "Method %s did not start correctly"
  msgstr ""
  
- #: apt-pkg/acquire-worker.cc:423
+ #: apt-pkg/acquire-worker.cc:425
  #, c-format
  msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
  msgstr ""
  
- #: apt-pkg/init.cc:146
+ #: apt-pkg/init.cc:151
  #, c-format
  msgid "Packaging system '%s' is not supported"
  msgstr ""
  
- #: apt-pkg/init.cc:162
+ #: apt-pkg/init.cc:167
  msgid "Unable to determine a suitable packaging system type"
  msgstr ""
  
- #: apt-pkg/clean.cc:56
+ #: apt-pkg/clean.cc:59
  #, c-format
  msgid "Unable to stat %s."
  msgstr ""
  
- #: apt-pkg/srcrecords.cc:44
+ #: apt-pkg/srcrecords.cc:47
  msgid "You must put some 'source' URIs in your sources.list"
  msgstr ""
  
- #: apt-pkg/cachefile.cc:84
+ #: apt-pkg/cachefile.cc:87
  msgid "The package lists or status file could not be parsed or opened."
  msgstr ""
  
- #: apt-pkg/cachefile.cc:88
+ #: apt-pkg/cachefile.cc:91
  msgid "You may want to run apt-get update to correct these problems"
  msgstr ""
  
- #: apt-pkg/cachefile.cc:106
+ #: apt-pkg/cachefile.cc:109
  msgid "The list of sources could not be read."
  msgstr ""
  
- #: apt-pkg/policy.cc:375
+ #: apt-pkg/policy.cc:74
+ #, c-format
+ msgid ""
+ "The value '%s' is invalid for APT::Default-Release as such a release is not "
+ "available in the sources"
+ msgstr ""
+ #: apt-pkg/policy.cc:396
  #, c-format
  msgid "Invalid record in the preferences file %s, no Package header"
  msgstr ""
  
- #: apt-pkg/policy.cc:397
+ #: apt-pkg/policy.cc:418
  #, c-format
  msgid "Did not understand pin type %s"
  msgstr ""
  
- #: apt-pkg/policy.cc:405
+ #: apt-pkg/policy.cc:426
  msgid "No priority (or zero) specified for pin"
  msgstr ""
  
- #: apt-pkg/pkgcachegen.cc:80
+ #: apt-pkg/pkgcachegen.cc:83
  msgid "Cache has an incompatible versioning system"
  msgstr ""
  
- #: apt-pkg/pkgcachegen.cc:187
- #, c-format
- msgid "Error occurred while processing %s (NewPackage)"
- msgstr ""
- #: apt-pkg/pkgcachegen.cc:204
- #, c-format
- msgid "Error occurred while processing %s (UsePackage1)"
- msgstr ""
- #: apt-pkg/pkgcachegen.cc:242
- #, c-format
- msgid "Error occurred while processing %s (NewFileDesc1)"
- msgstr ""
- #: apt-pkg/pkgcachegen.cc:274
- #, c-format
- msgid "Error occurred while processing %s (UsePackage2)"
- msgstr ""
- #: apt-pkg/pkgcachegen.cc:278
- #, c-format
- msgid "Error occurred while processing %s (NewFileVer1)"
- msgstr ""
- #: apt-pkg/pkgcachegen.cc:295 apt-pkg/pkgcachegen.cc:305
- #: apt-pkg/pkgcachegen.cc:313
- #, c-format
- msgid "Error occurred while processing %s (NewVersion%d)"
- msgstr ""
- #: apt-pkg/pkgcachegen.cc:309
+ #. TRANSLATOR: The first placeholder is a package name,
+ #. the other two should be copied verbatim as they include debug info
+ #: apt-pkg/pkgcachegen.cc:209 apt-pkg/pkgcachegen.cc:275
+ #: apt-pkg/pkgcachegen.cc:311 apt-pkg/pkgcachegen.cc:353
+ #: apt-pkg/pkgcachegen.cc:357 apt-pkg/pkgcachegen.cc:374
+ #: apt-pkg/pkgcachegen.cc:384 apt-pkg/pkgcachegen.cc:388
+ #: apt-pkg/pkgcachegen.cc:392 apt-pkg/pkgcachegen.cc:413
+ #: apt-pkg/pkgcachegen.cc:418 apt-pkg/pkgcachegen.cc:463
+ #: apt-pkg/pkgcachegen.cc:494 apt-pkg/pkgcachegen.cc:508
  #, c-format
- msgid "Error occurred while processing %s (UsePackage3)"
+ msgid "Error occurred while processing %s (%s%d)"
  msgstr ""
  
- #: apt-pkg/pkgcachegen.cc:342
- #, c-format
- msgid "Error occurred while processing %s (NewFileDesc2)"
- msgstr ""
- #: apt-pkg/pkgcachegen.cc:348
+ #: apt-pkg/pkgcachegen.cc:232
  msgid "Wow, you exceeded the number of package names this APT is capable of."
  msgstr ""
  
- #: apt-pkg/pkgcachegen.cc:351
+ #: apt-pkg/pkgcachegen.cc:235
  msgid "Wow, you exceeded the number of versions this APT is capable of."
  msgstr ""
  
- #: apt-pkg/pkgcachegen.cc:354
+ #: apt-pkg/pkgcachegen.cc:238
  msgid "Wow, you exceeded the number of descriptions this APT is capable of."
  msgstr ""
  
- #: apt-pkg/pkgcachegen.cc:357
+ #: apt-pkg/pkgcachegen.cc:241
  msgid "Wow, you exceeded the number of dependencies this APT is capable of."
  msgstr ""
  
- #: apt-pkg/pkgcachegen.cc:386
- #, c-format
- msgid "Error occurred while processing %s (FindPkg)"
- msgstr ""
- #: apt-pkg/pkgcachegen.cc:400
- #, c-format
- msgid "Error occurred while processing %s (CollectFileProvides)"
- msgstr ""
- #: apt-pkg/pkgcachegen.cc:406
+ #: apt-pkg/pkgcachegen.cc:515
  #, c-format
  msgid "Package %s %s was not found while processing file dependencies"
  msgstr ""
  
- #: apt-pkg/pkgcachegen.cc:960
+ #: apt-pkg/pkgcachegen.cc:1080
  #, c-format
  msgid "Couldn't stat source package list %s"
  msgstr ""
  
- #: apt-pkg/pkgcachegen.cc:1065
+ #: apt-pkg/pkgcachegen.cc:1185
  msgid "Collecting File Provides"
  msgstr ""
  
- #: apt-pkg/pkgcachegen.cc:1243 apt-pkg/pkgcachegen.cc:1250
+ #: apt-pkg/pkgcachegen.cc:1376 apt-pkg/pkgcachegen.cc:1383
  msgid "IO Error saving source cache"
  msgstr ""
  
- #: apt-pkg/acquire-item.cc:135
+ #: apt-pkg/acquire-item.cc:139
  #, c-format
  msgid "rename failed, %s (%s -> %s)."
  msgstr ""
  
- #: apt-pkg/acquire-item.cc:636
+ #: apt-pkg/acquire-item.cc:640
  msgid "MD5Sum mismatch"
  msgstr ""
  
- #: apt-pkg/acquire-item.cc:900 apt-pkg/acquire-item.cc:1848
- #: apt-pkg/acquire-item.cc:1991
+ #: apt-pkg/acquire-item.cc:911 apt-pkg/acquire-item.cc:1863
+ #: apt-pkg/acquire-item.cc:2006
  msgid "Hash Sum mismatch"
  msgstr ""
  
- #: apt-pkg/acquire-item.cc:1388
+ #: apt-pkg/acquire-item.cc:1399
  #, c-format
  msgid ""
  "Unable to find expected entry '%s' in Release file (Wrong sources.list entry "
  "or malformed file)"
  msgstr ""
  
- #: apt-pkg/acquire-item.cc:1403
+ #: apt-pkg/acquire-item.cc:1415
  #, c-format
  msgid "Unable to find hash sum for '%s' in Release file"
  msgstr ""
  
- #: apt-pkg/acquire-item.cc:1439
+ #: apt-pkg/acquire-item.cc:1450
  msgid "There is no public key available for the following key IDs:\n"
  msgstr ""
  
- #: apt-pkg/acquire-item.cc:1477
+ #: apt-pkg/acquire-item.cc:1488
  #, c-format
  msgid ""
  "Release file for %s is expired (invalid since %s). Updates for this "
  "repository will not be applied."
  msgstr ""
  
- #: apt-pkg/acquire-item.cc:1499
+ #: apt-pkg/acquire-item.cc:1510
  #, c-format
  msgid "Conflicting distribution: %s (expected %s but got %s)"
  msgstr ""
  
- #: apt-pkg/acquire-item.cc:1532
+ #: apt-pkg/acquire-item.cc:1543
  #, c-format
  msgid ""
  "A error occurred during the signature verification. The repository is not "
  msgstr ""
  
  #. Invalid signature file, reject (LP: #346386) (Closes: #627642)
- #: apt-pkg/acquire-item.cc:1542 apt-pkg/acquire-item.cc:1547
+ #: apt-pkg/acquire-item.cc:1553 apt-pkg/acquire-item.cc:1558
  #, c-format
  msgid "GPG error: %s: %s"
  msgstr ""
  
- #: apt-pkg/acquire-item.cc:1639
+ #: apt-pkg/acquire-item.cc:1650
  #, c-format
  msgid ""
  "I wasn't able to locate a file for the %s package. This might mean you need "
  "to manually fix this package. (due to missing arch)"
  msgstr ""
  
- #: apt-pkg/acquire-item.cc:1698
+ #: apt-pkg/acquire-item.cc:1709
  #, c-format
  msgid ""
  "I wasn't able to locate a file for the %s package. This might mean you need "
  "to manually fix this package."
  msgstr ""
  
- #: apt-pkg/acquire-item.cc:1753
+ #: apt-pkg/acquire-item.cc:1768
  #, c-format
  msgid ""
  "The package index files are corrupted. No Filename: field for package %s."
  msgstr ""
  
- #: apt-pkg/acquire-item.cc:1840
+ #: apt-pkg/acquire-item.cc:1855
  msgid "Size mismatch"
  msgstr ""
  
- #: apt-pkg/indexrecords.cc:53
+ #: apt-pkg/indexrecords.cc:61
  #, c-format
  msgid "Unable to parse Release file %s"
  msgstr ""
  
- #: apt-pkg/indexrecords.cc:63
+ #: apt-pkg/indexrecords.cc:71
  #, c-format
  msgid "No sections in Release file %s"
  msgstr ""
  
- #: apt-pkg/indexrecords.cc:97
+ #: apt-pkg/indexrecords.cc:105
  #, c-format
  msgid "No Hash entry in Release file %s"
  msgstr ""
  
- #: apt-pkg/indexrecords.cc:110
+ #: apt-pkg/indexrecords.cc:118
  #, c-format
  msgid "Invalid 'Valid-Until' entry in Release file %s"
  msgstr ""
  
- #: apt-pkg/indexrecords.cc:125
+ #: apt-pkg/indexrecords.cc:137
  #, c-format
  msgid "Invalid 'Date' entry in Release file %s"
  msgstr ""
  
- #: apt-pkg/vendorlist.cc:71
+ #: apt-pkg/vendorlist.cc:78
  #, c-format
  msgid "Vendor block %s contains no fingerprint"
  msgstr ""
  
- #: apt-pkg/cdrom.cc:525
+ #: apt-pkg/cdrom.cc:528
  #, c-format
  msgid ""
  "Using CD-ROM mount point %s\n"
  "Mounting CD-ROM\n"
  msgstr ""
  
- #: apt-pkg/cdrom.cc:534 apt-pkg/cdrom.cc:631
+ #: apt-pkg/cdrom.cc:537 apt-pkg/cdrom.cc:634
  msgid "Identifying.. "
  msgstr ""
  
- #: apt-pkg/cdrom.cc:562
+ #: apt-pkg/cdrom.cc:565
  #, c-format
  msgid "Stored label: %s\n"
  msgstr ""
  
- #: apt-pkg/cdrom.cc:571 apt-pkg/cdrom.cc:847
+ #: apt-pkg/cdrom.cc:574 apt-pkg/cdrom.cc:850
  msgid "Unmounting CD-ROM...\n"
  msgstr ""
  
- #: apt-pkg/cdrom.cc:591
+ #: apt-pkg/cdrom.cc:594
  #, c-format
  msgid "Using CD-ROM mount point %s\n"
  msgstr ""
  
- #: apt-pkg/cdrom.cc:609
+ #: apt-pkg/cdrom.cc:612
  msgid "Unmounting CD-ROM\n"
  msgstr ""
  
- #: apt-pkg/cdrom.cc:614
+ #: apt-pkg/cdrom.cc:617
  msgid "Waiting for disc...\n"
  msgstr ""
  
- #: apt-pkg/cdrom.cc:623
+ #: apt-pkg/cdrom.cc:626
  msgid "Mounting CD-ROM...\n"
  msgstr ""
  
- #: apt-pkg/cdrom.cc:642
+ #: apt-pkg/cdrom.cc:645
  msgid "Scanning disc for index files..\n"
  msgstr ""
  
- #: apt-pkg/cdrom.cc:684
+ #: apt-pkg/cdrom.cc:687
  #, c-format
  msgid ""
  "Found %zu package indexes, %zu source indexes, %zu translation indexes and "
  "%zu signatures\n"
  msgstr ""
  
- #: apt-pkg/cdrom.cc:695
+ #: apt-pkg/cdrom.cc:698
  msgid ""
  "Unable to locate any package files, perhaps this is not a Debian Disc or the "
  "wrong architecture?"
  msgstr ""
  
- #: apt-pkg/cdrom.cc:722
+ #: apt-pkg/cdrom.cc:725
  #, c-format
  msgid "Found label '%s'\n"
  msgstr ""
  
- #: apt-pkg/cdrom.cc:751
+ #: apt-pkg/cdrom.cc:754
  msgid "That is not a valid name, try again.\n"
  msgstr ""
  
- #: apt-pkg/cdrom.cc:768
+ #: apt-pkg/cdrom.cc:771
  #, c-format
  msgid ""
  "This disc is called: \n"
  "'%s'\n"
  msgstr ""
  
- #: apt-pkg/cdrom.cc:770
+ #: apt-pkg/cdrom.cc:773
  msgid "Copying package lists..."
  msgstr ""
  
- #: apt-pkg/cdrom.cc:797
+ #: apt-pkg/cdrom.cc:800
  msgid "Writing new source list\n"
  msgstr ""
  
- #: apt-pkg/cdrom.cc:805
+ #: apt-pkg/cdrom.cc:808
  msgid "Source list entries for this disc are:\n"
  msgstr ""
  
- #: apt-pkg/indexcopy.cc:270 apt-pkg/indexcopy.cc:928
+ #: apt-pkg/indexcopy.cc:273 apt-pkg/indexcopy.cc:930
  #, c-format
  msgid "Wrote %i records.\n"
  msgstr ""
  
- #: apt-pkg/indexcopy.cc:272 apt-pkg/indexcopy.cc:930
+ #: apt-pkg/indexcopy.cc:275 apt-pkg/indexcopy.cc:932
  #, c-format
  msgid "Wrote %i records with %i missing files.\n"
  msgstr ""
  
- #: apt-pkg/indexcopy.cc:275 apt-pkg/indexcopy.cc:933
+ #: apt-pkg/indexcopy.cc:278 apt-pkg/indexcopy.cc:935
  #, c-format
  msgid "Wrote %i records with %i mismatched files\n"
  msgstr ""
  
- #: apt-pkg/indexcopy.cc:278 apt-pkg/indexcopy.cc:936
+ #: apt-pkg/indexcopy.cc:281 apt-pkg/indexcopy.cc:938
  #, c-format
  msgid "Wrote %i records with %i missing files and %i mismatched files\n"
  msgstr ""
  
- #: apt-pkg/indexcopy.cc:537
+ #: apt-pkg/indexcopy.cc:540
  #, c-format
  msgid "Skipping nonexistent file %s"
  msgstr ""
  
- #: apt-pkg/indexcopy.cc:543
+ #: apt-pkg/indexcopy.cc:546
  #, c-format
  msgid "Can't find authentication record for: %s"
  msgstr ""
  
- #: apt-pkg/indexcopy.cc:549
+ #: apt-pkg/indexcopy.cc:552
  #, c-format
  msgid "Hash mismatch for: %s"
  msgstr ""
  
- #: apt-pkg/indexcopy.cc:677
+ #: apt-pkg/indexcopy.cc:680
  #, c-format
  msgid "File %s doesn't start with a clearsigned message"
  msgstr ""
  
  #. TRANSLATOR: %s is the trusted keyring parts directory
- #: apt-pkg/indexcopy.cc:708
+ #: apt-pkg/indexcopy.cc:711
  #, c-format
  msgid "No keyring installed in %s."
  msgstr ""
  
- #: apt-pkg/cacheset.cc:337
+ #: apt-pkg/cacheset.cc:342
  #, c-format
  msgid "Release '%s' for '%s' was not found"
  msgstr ""
  
- #: apt-pkg/cacheset.cc:340
+ #: apt-pkg/cacheset.cc:345
  #, c-format
  msgid "Version '%s' for '%s' was not found"
  msgstr ""
  
- #: apt-pkg/cacheset.cc:447
+ #: apt-pkg/cacheset.cc:452
  #, c-format
  msgid "Couldn't find task '%s'"
  msgstr ""
  
- #: apt-pkg/cacheset.cc:454
+ #: apt-pkg/cacheset.cc:459
  #, c-format
  msgid "Couldn't find any package by regex '%s'"
  msgstr ""
  
- #: apt-pkg/cacheset.cc:467
+ #: apt-pkg/cacheset.cc:472
  #, c-format
  msgid "Can't select versions from package '%s' as it is purely virtual"
  msgstr ""
  
- #: apt-pkg/cacheset.cc:475 apt-pkg/cacheset.cc:483
+ #: apt-pkg/cacheset.cc:480 apt-pkg/cacheset.cc:488
  #, c-format
  msgid ""
  "Can't select installed nor candidate version from package '%s' as it has "
  "neither of them"
  msgstr ""
  
- #: apt-pkg/cacheset.cc:491
+ #: apt-pkg/cacheset.cc:496
  #, c-format
  msgid "Can't select newest version from package '%s' as it is purely virtual"
  msgstr ""
  
- #: apt-pkg/cacheset.cc:499
+ #: apt-pkg/cacheset.cc:504
  #, c-format
  msgid "Can't select candidate version from package %s as it has no candidate"
  msgstr ""
  
- #: apt-pkg/cacheset.cc:507
+ #: apt-pkg/cacheset.cc:512
  #, c-format
  msgid "Can't select installed version from package %s as it is not installed"
  msgstr ""
  
- #: apt-pkg/deb/dpkgpm.cc:53
+ #: apt-pkg/edsp.cc:41 apt-pkg/edsp.cc:61
+ msgid "Send scenario to solver"
+ msgstr ""
+ #: apt-pkg/edsp.cc:213
+ msgid "Send request to solver"
+ msgstr ""
+ #: apt-pkg/edsp.cc:281
+ msgid "Prepare for receiving solution"
+ msgstr ""
+ #: apt-pkg/edsp.cc:288
+ msgid "External solver failed without a proper error message"
+ msgstr ""
+ #: apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:562 apt-pkg/edsp.cc:567
+ msgid "Execute external solver"
+ msgstr ""
 -#: apt-pkg/deb/dpkgpm.cc:71
++#: apt-pkg/deb/dpkgpm.cc:70
  #, c-format
  msgid "Installing %s"
  msgstr ""
  
- #: apt-pkg/deb/dpkgpm.cc:54 apt-pkg/deb/dpkgpm.cc:847
 -#: apt-pkg/deb/dpkgpm.cc:72 apt-pkg/deb/dpkgpm.cc:866
++#: apt-pkg/deb/dpkgpm.cc:71 apt-pkg/deb/dpkgpm.cc:865
  #, c-format
  msgid "Configuring %s"
  msgstr ""
  
- #: apt-pkg/deb/dpkgpm.cc:55 apt-pkg/deb/dpkgpm.cc:854
 -#: apt-pkg/deb/dpkgpm.cc:73 apt-pkg/deb/dpkgpm.cc:873
++#: apt-pkg/deb/dpkgpm.cc:72 apt-pkg/deb/dpkgpm.cc:872
  #, c-format
  msgid "Removing %s"
  msgstr ""
  
- #: apt-pkg/deb/dpkgpm.cc:56
 -#: apt-pkg/deb/dpkgpm.cc:74
++#: apt-pkg/deb/dpkgpm.cc:73
  #, c-format
  msgid "Completely removing %s"
  msgstr ""
  
- #: apt-pkg/deb/dpkgpm.cc:57
 -#: apt-pkg/deb/dpkgpm.cc:75
++#: apt-pkg/deb/dpkgpm.cc:74
  #, c-format
  msgid "Noting disappearance of %s"
  msgstr ""
  
- #: apt-pkg/deb/dpkgpm.cc:58
 -#: apt-pkg/deb/dpkgpm.cc:76
++#: apt-pkg/deb/dpkgpm.cc:75
  #, c-format
  msgid "Running post-installation trigger %s"
  msgstr ""
  
  #. FIXME: use a better string after freeze
- #: apt-pkg/deb/dpkgpm.cc:653
 -#: apt-pkg/deb/dpkgpm.cc:672
++#: apt-pkg/deb/dpkgpm.cc:671
  #, c-format
  msgid "Directory '%s' missing"
  msgstr ""
  
- #: apt-pkg/deb/dpkgpm.cc:668 apt-pkg/deb/dpkgpm.cc:688
 -#: apt-pkg/deb/dpkgpm.cc:687 apt-pkg/deb/dpkgpm.cc:707
++#: apt-pkg/deb/dpkgpm.cc:686 apt-pkg/deb/dpkgpm.cc:706
  #, c-format
  msgid "Could not open file '%s'"
  msgstr ""
  
- #: apt-pkg/deb/dpkgpm.cc:840
 -#: apt-pkg/deb/dpkgpm.cc:859
++#: apt-pkg/deb/dpkgpm.cc:858
  #, c-format
  msgid "Preparing %s"
  msgstr ""
  
- #: apt-pkg/deb/dpkgpm.cc:841
 -#: apt-pkg/deb/dpkgpm.cc:860
++#: apt-pkg/deb/dpkgpm.cc:859
  #, c-format
  msgid "Unpacking %s"
  msgstr ""
  
- #: apt-pkg/deb/dpkgpm.cc:846
 -#: apt-pkg/deb/dpkgpm.cc:865
++#: apt-pkg/deb/dpkgpm.cc:864
  #, c-format
  msgid "Preparing to configure %s"
  msgstr ""
  
- #: apt-pkg/deb/dpkgpm.cc:848
 -#: apt-pkg/deb/dpkgpm.cc:867
++#: apt-pkg/deb/dpkgpm.cc:866
  #, c-format
  msgid "Installed %s"
  msgstr ""
  
- #: apt-pkg/deb/dpkgpm.cc:853
 -#: apt-pkg/deb/dpkgpm.cc:872
++#: apt-pkg/deb/dpkgpm.cc:871
  #, c-format
  msgid "Preparing for removal of %s"
  msgstr ""
  
- #: apt-pkg/deb/dpkgpm.cc:855
 -#: apt-pkg/deb/dpkgpm.cc:874
++#: apt-pkg/deb/dpkgpm.cc:873
  #, c-format
  msgid "Removed %s"
  msgstr ""
  
- #: apt-pkg/deb/dpkgpm.cc:860
 -#: apt-pkg/deb/dpkgpm.cc:879
++#: apt-pkg/deb/dpkgpm.cc:878
  #, c-format
  msgid "Preparing to completely remove %s"
  msgstr ""
  
- #: apt-pkg/deb/dpkgpm.cc:861
 -#: apt-pkg/deb/dpkgpm.cc:880
++#: apt-pkg/deb/dpkgpm.cc:879
  #, c-format
  msgid "Completely removed %s"
  msgstr ""
  
- #: apt-pkg/deb/dpkgpm.cc:1081
 -#: apt-pkg/deb/dpkgpm.cc:1111
++#: apt-pkg/deb/dpkgpm.cc:1110
  msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
  msgstr ""
  
- #: apt-pkg/deb/dpkgpm.cc:1112
 -#: apt-pkg/deb/dpkgpm.cc:1141
++#: apt-pkg/deb/dpkgpm.cc:1140
  msgid "Running dpkg"
  msgstr ""
  
- #: apt-pkg/deb/dpkgpm.cc:1337
 -#: apt-pkg/deb/dpkgpm.cc:1320
++#: apt-pkg/deb/dpkgpm.cc:1319
+ msgid "Operation was interrupted before it could finish"
+ msgstr ""
 -#: apt-pkg/deb/dpkgpm.cc:1377
++#: apt-pkg/deb/dpkgpm.cc:1376
  msgid "No apport report written because MaxReports is reached already"
  msgstr ""
  
  #. check if its not a follow up error
- #: apt-pkg/deb/dpkgpm.cc:1342
 -#: apt-pkg/deb/dpkgpm.cc:1382
++#: apt-pkg/deb/dpkgpm.cc:1381
  msgid "dependency problems - leaving unconfigured"
  msgstr ""
  
- #: apt-pkg/deb/dpkgpm.cc:1344
 -#: apt-pkg/deb/dpkgpm.cc:1384
++#: apt-pkg/deb/dpkgpm.cc:1383
  msgid ""
  "No apport report written because the error message indicates its a followup "
  "error from a previous failure."
  msgstr ""
  
- #: apt-pkg/deb/dpkgpm.cc:1350
 -#: apt-pkg/deb/dpkgpm.cc:1390
++#: apt-pkg/deb/dpkgpm.cc:1389
  msgid ""
  "No apport report written because the error message indicates a disk full "
  "error"
  msgstr ""
  
- #: apt-pkg/deb/dpkgpm.cc:1357
+ #: apt-pkg/deb/dpkgpm.cc:1396
  msgid ""
  "No apport report written because the error message indicates a out of memory "
  "error"
  msgstr ""
  
- #: apt-pkg/deb/dpkgpm.cc:1364 apt-pkg/deb/dpkgpm.cc:1370
 -#: apt-pkg/deb/dpkgpm.cc:1403
++#: apt-pkg/deb/dpkgpm.cc:1403 apt-pkg/deb/dpkgpm.cc:1409
 +msgid ""
 +"No apport report written because the error message indicates an issue on the "
 +"local system"
 +msgstr ""
 +
- #: apt-pkg/deb/dpkgpm.cc:1391
++#: apt-pkg/deb/dpkgpm.cc:1430
  msgid ""
  "No apport report written because the error message indicates a dpkg I/O error"
  msgstr ""
  
- #: apt-pkg/deb/debsystem.cc:69
+ #: apt-pkg/deb/debsystem.cc:84
  #, c-format
  msgid ""
  "Unable to lock the administration directory (%s), is another process using "
  "it?"
  msgstr ""
  
- #: apt-pkg/deb/debsystem.cc:72
+ #: apt-pkg/deb/debsystem.cc:87
  #, c-format
  msgid "Unable to lock the administration directory (%s), are you root?"
  msgstr ""
  
  #. TRANSLATORS: the %s contains the recovery command, usually
  #. dpkg --configure -a
- #: apt-pkg/deb/debsystem.cc:88
+ #: apt-pkg/deb/debsystem.cc:103
  #, c-format
  msgid ""
  "dpkg was interrupted, you must manually run '%s' to correct the problem. "
  msgstr ""
  
- #: apt-pkg/deb/debsystem.cc:106
+ #: apt-pkg/deb/debsystem.cc:121
  msgid "Not locked"
  msgstr ""
  
  #. FIXME: fallback to a default mirror here instead
  #. and provide a config option to define that default
- #: methods/mirror.cc:260
+ #: methods/mirror.cc:279
  #, c-format
  msgid "No mirror file '%s' found "
  msgstr ""
  
  #. FIXME: fallback to a default mirror here instead
  #. and provide a config option to define that default
- #: methods/mirror.cc:267
+ #: methods/mirror.cc:286
  #, c-format
  msgid "Can not read mirror file '%s'"
  msgstr ""
  
- #: methods/mirror.cc:422
+ #: methods/mirror.cc:441
  #, c-format
  msgid "[Mirror: %s]"
  msgstr ""
  
- #: methods/rred.cc:503
+ #: methods/rred.cc:509
  #, c-format
  msgid ""
  "Could not patch %s with mmap and with file operation usage - the patch seems "
  "to be corrupt."
  msgstr ""
  
- #: methods/rred.cc:508
+ #: methods/rred.cc:514
  #, c-format
  msgid ""
  "Could not patch %s with mmap (but no mmap specific fail) - the patch seems "
  "to be corrupt."
  msgstr ""
  
- #: methods/rsh.cc:330
+ #: methods/rsh.cc:336
  msgid "Connection closed prematurely"
  msgstr ""
index a05f03df4c39b76d8915aafa0adf2dfd792cb881,7333054cc11b47da54da8833793b413b390cc33d..432431212b6113cc0927943cc81589fbdeae7fa9
@@@ -17,13 -17,26 +17,26 @@@ buildsimplenativepackage 'apt2' 'amd64
  
  setupaptarchive
  
- testequal 'Reading package lists...
+ # order in switch libsame:{amd64,i386} are unpacked is irrelevant, as both are installed - but we need to do it together
+ testequalor2 'Reading package lists...
+ Building dependency tree...
+ The following packages will be upgraded:
+   apt:i386 apt2 libsame libsame:i386
+ 4 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
+ Inst libsame:i386 [1] (2 unstable [i386]) [libsame:amd64 on libsame:i386] [libsame:i386 on libsame:amd64] [libsame:amd64 apt:i386 ]
+ Inst libsame [1] (2 unstable [amd64]) [apt2:amd64 apt:i386 ]
+ Conf libsame:i386 (2 unstable [i386]) [apt2:amd64 apt:i386 ]
+ Conf libsame (2 unstable [amd64]) [apt2:amd64 apt:i386 ]
+ Inst apt2 [1] (2 unstable [amd64]) [apt:i386 ]
+ Conf apt2 (2 unstable [amd64]) [apt:i386 ]
+ Inst apt:i386 [1] (2 unstable [i386])
+ Conf apt:i386 (2 unstable [i386])' 'Reading package lists...
  Building dependency tree...
  The following packages will be upgraded:
    apt:i386 apt2 libsame libsame:i386
  4 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
 -Inst libsame [1] (2 unstable [amd64]) [libsame:amd64 on libsame:i386] [libsame:i386 on libsame:amd64] [libsame:i386 apt2:amd64 ]
 -Inst libsame:i386 [1] (2 unstable [i386]) [apt2:amd64 apt:i386 ]
 +Inst libsame:i386 [1] (2 unstable [i386]) [libsame:amd64 on libsame:i386] [libsame:i386 on libsame:amd64] [libsame:amd64 apt:i386 ]
 +Inst libsame [1] (2 unstable [amd64]) [apt2:amd64 apt:i386 ]
  Conf libsame:i386 (2 unstable [i386]) [apt2:amd64 apt:i386 ]
  Conf libsame (2 unstable [amd64]) [apt2:amd64 apt:i386 ]
  Inst apt2 [1] (2 unstable [amd64]) [apt:i386 ]