Sfoglia il codice sorgente

cleanup commit for trigger processing:
- remove the DPkg::NoConfTriggers - absolutely useless as we need
TriggersPending already so we can use --no-triggers.
- remove the Immediate-option from the example, it doesn't help much.
- UnpackCritical uses DepUnPackPre with a D (on simple letter...)
- the "smart" optimisation to skip A was not so smart - revert.

David Kalnischkies 17 anni fa
parent
commit
d5081aeeb0
6 ha cambiato i file con 275 aggiunte e 338 eliminazioni
  1. 1 3
      apt-pkg/deb/dpkgpm.cc
  2. 5 10
      apt-pkg/orderlist.cc
  3. 2 10
      doc/apt.conf.5.xml
  4. 89 105
      doc/po/apt-doc.pot
  5. 89 105
      doc/po/fr.po
  6. 89 105
      doc/po/ja.po

+ 1 - 3
apt-pkg/deb/dpkgpm.cc

@@ -631,7 +631,6 @@ bool pkgDPkgPM::Go(int OutStatusFd)
    unsigned int const MaxArgs = _config->FindI("Dpkg::MaxArgs",8*1024);
    unsigned int const MaxArgs = _config->FindI("Dpkg::MaxArgs",8*1024);
    unsigned int const MaxArgBytes = _config->FindI("Dpkg::MaxArgBytes",32*1024);
    unsigned int const MaxArgBytes = _config->FindI("Dpkg::MaxArgBytes",32*1024);
    bool const NoTriggers = _config->FindB("DPkg::NoTriggers", false);
    bool const NoTriggers = _config->FindB("DPkg::NoTriggers", false);
-   bool const NoConfTriggers = _config->FindB("DPkg::NoConfTriggers", NoTriggers);
 
 
    if (RunScripts("DPkg::Pre-Invoke") == false)
    if (RunScripts("DPkg::Pre-Invoke") == false)
       return false;
       return false;
@@ -797,8 +796,7 @@ bool pkgDPkgPM::Go(int OutStatusFd)
       }
       }
 
 
       if (NoTriggers == true && I->Op != Item::TriggersPending &&
       if (NoTriggers == true && I->Op != Item::TriggersPending &&
-	  I->Op != Item::ConfigurePending &&
-	  (I->Op != Item::Configure || NoConfTriggers == true))
+	  I->Op != Item::ConfigurePending)
       {
       {
 	 Args[n++] = "--no-triggers";
 	 Args[n++] = "--no-triggers";
 	 Size += strlen(Args[n-1]);
 	 Size += strlen(Args[n-1]);

+ 5 - 10
apt-pkg/orderlist.cc

@@ -175,7 +175,7 @@ bool pkgOrderList::OrderCritical()
 {
 {
    FileList = 0;
    FileList = 0;
 
 
-   Primary = &pkgOrderList::DepUnPackPre;
+   Primary = &pkgOrderList::DepUnPackPreD;
    Secondary = 0;
    Secondary = 0;
    RevDepends = 0;
    RevDepends = 0;
    Remove = 0;
    Remove = 0;
@@ -238,15 +238,10 @@ bool pkgOrderList::OrderUnpack(string *FileList)
    Me = this;
    Me = this;
    qsort(List,End - List,sizeof(*List),&OrderCompareA);
    qsort(List,End - List,sizeof(*List),&OrderCompareA);
 
 
-   if (_config->Find("PackageManager::Configure","all") == "all")
-   {
-      if (Debug == true)
-	 clog << "** Pass A" << endl;
-      if (DoRun() == false)
-	 return false;
-   }
-   else if (Debug == true)
-      clog << "** Skip A (same as B for non-all Configure)" << endl;
+   if (Debug == true)
+      clog << "** Pass A" << endl;
+   if (DoRun() == false)
+      return false;
 
 
    if (Debug == true)
    if (Debug == true)
       clog << "** Pass B" << endl;
       clog << "** Pass B" << endl;

+ 2 - 10
doc/apt.conf.5.xml

@@ -21,7 +21,7 @@
    &apt-email;
    &apt-email;
    &apt-product;
    &apt-product;
    <!-- The last update date -->
    <!-- The last update date -->
-   <date>10 December 2008</date>
+   <date>18 September 2009</date>
  </refentryinfo>
  </refentryinfo>
  
  
  <refmeta>
  <refmeta>
@@ -484,8 +484,7 @@ DPkg::Pre-Install-Pkgs {"/usr/sbin/dpkg-preconfigure --apt";};
 <literallayout>DPkg::NoTriggers "true";
 <literallayout>DPkg::NoTriggers "true";
 PackageManager::Configure "smart";
 PackageManager::Configure "smart";
 DPkg::ConfigurePending "true";
 DPkg::ConfigurePending "true";
-DPkg::TriggersPending "true";
-OrderList::Score::Immediate 100;</literallayout></para>
+DPkg::TriggersPending "true";</literallayout></para>
 
 
      <variablelist>
      <variablelist>
        <varlistentry><term>DPkg::NoTriggers</term>
        <varlistentry><term>DPkg::NoTriggers</term>
@@ -520,13 +519,6 @@ OrderList::Score::Immediate 100;</literallayout></para>
        currently which is a dealbreaker for Pre-Dependencies (see debbugs #526774). Note that this will
        currently which is a dealbreaker for Pre-Dependencies (see debbugs #526774). Note that this will
        process all triggers, not only the triggers needed to configure this package.</para></listitem>
        process all triggers, not only the triggers needed to configure this package.</para></listitem>
        </varlistentry>
        </varlistentry>
-       <varlistentry><term>Dpkg::NoConfTriggers</term>
-       <listitem><para>DPkg currently will ignore the --triggers or --no-triggers flag if the trigger
-       is already pending. This option therefore has no real effect as long as dpkg doesn't change
-       his behavior. The option is automatical activated if <literal>DPkg::NoTriggers</literal> is
-       activated. You should use <literal>DPkg::TriggersPending</literal> to take care of these pending
-       triggers.</para></listitem>
-       </varlistentry>
        <varlistentry><term>PackageManager::UnpackAll</term>
        <varlistentry><term>PackageManager::UnpackAll</term>
        <listitem><para>As the configuration can be deferred to be done at the end by dpkg it can be
        <listitem><para>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-Depends. Default is true
        tried to order the unpack series only by critical needs, e.g. by Pre-Depends. Default is true

+ 89 - 105
doc/po/apt-doc.pot

@@ -7,7 +7,7 @@
 msgid ""
 msgid ""
 msgstr ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2009-09-15 22:56+0300\n"
+"POT-Creation-Date: 2009-09-18 16:44+0300\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1408,7 +1408,7 @@ msgid "&apt-commonoptions;"
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><title>
 #. type: Content of: <refentry><refsect1><title>
-#: apt-cache.8.xml:358 apt-get.8.xml:559 apt-key.8.xml:138 apt-mark.8.xml:122 apt.conf.5.xml:948 apt_preferences.5.xml:615
+#: apt-cache.8.xml:358 apt-get.8.xml:559 apt-key.8.xml:138 apt-mark.8.xml:122 apt.conf.5.xml:940 apt_preferences.5.xml:615
 msgid "Files"
 msgid "Files"
 msgstr ""
 msgstr ""
 
 
@@ -1418,7 +1418,7 @@ msgid "&file-sourceslist; &file-statelists;"
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><title>
 #. type: Content of: <refentry><refsect1><title>
-#: apt-cache.8.xml:365 apt-cdrom.8.xml:155 apt-config.8.xml:103 apt-extracttemplates.1.xml:74 apt-ftparchive.1.xml:563 apt-get.8.xml:569 apt-key.8.xml:162 apt-mark.8.xml:133 apt-secure.8.xml:181 apt-sortpkgs.1.xml:69 apt.conf.5.xml:954 apt_preferences.5.xml:622 sources.list.5.xml:221
+#: apt-cache.8.xml:365 apt-cdrom.8.xml:155 apt-config.8.xml:103 apt-extracttemplates.1.xml:74 apt-ftparchive.1.xml:563 apt-get.8.xml:569 apt-key.8.xml:162 apt-mark.8.xml:133 apt-secure.8.xml:181 apt-sortpkgs.1.xml:69 apt.conf.5.xml:946 apt_preferences.5.xml:622 sources.list.5.xml:221
 msgid "See Also"
 msgid "See Also"
 msgstr ""
 msgstr ""
 
 
@@ -2673,7 +2673,7 @@ msgid ""
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><title>
 #. type: Content of: <refentry><refsect1><title>
-#: apt-ftparchive.1.xml:552 apt.conf.5.xml:942 apt_preferences.5.xml:462 sources.list.5.xml:181
+#: apt-ftparchive.1.xml:552 apt.conf.5.xml:934 apt_preferences.5.xml:462 sources.list.5.xml:181
 msgid "Examples"
 msgid "Examples"
 msgstr ""
 msgstr ""
 
 
@@ -5015,8 +5015,7 @@ msgid ""
 "DPkg::NoTriggers \"true\";\n"
 "DPkg::NoTriggers \"true\";\n"
 "PackageManager::Configure \"smart\";\n"
 "PackageManager::Configure \"smart\";\n"
 "DPkg::ConfigurePending \"true\";\n"
 "DPkg::ConfigurePending \"true\";\n"
-"DPkg::TriggersPending \"true\";\n"
-"OrderList::Score::Immediate 100;"
+"DPkg::TriggersPending \"true\";"
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><refsect2><para>
 #. type: Content of: <refentry><refsect1><refsect2><para>
@@ -5034,12 +5033,12 @@ msgid ""
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
-#: apt.conf.5.xml:491
+#: apt.conf.5.xml:490
 msgid "DPkg::NoTriggers"
 msgid "DPkg::NoTriggers"
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:492
+#: apt.conf.5.xml:491
 msgid ""
 msgid ""
 "Add the no triggers flag to all dpkg calls (expect the ConfigurePending "
 "Add the no triggers flag to all dpkg calls (expect the ConfigurePending "
 "call).  See &dpkg; if you are interested in what this actually means. In "
 "call).  See &dpkg; if you are interested in what this actually means. In "
@@ -5051,12 +5050,12 @@ msgid ""
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
-#: apt.conf.5.xml:499
+#: apt.conf.5.xml:498
 msgid "PackageManager::Configure"
 msgid "PackageManager::Configure"
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:500
+#: apt.conf.5.xml:499
 msgid ""
 msgid ""
 "Valid values are \"<literal>all</literal>\", \"<literal>smart</literal>\" "
 "Valid values are \"<literal>all</literal>\", \"<literal>smart</literal>\" "
 "and \"<literal>no</literal>\".  \"<literal>all</literal>\" is the default "
 "and \"<literal>no</literal>\".  \"<literal>all</literal>\" is the default "
@@ -5073,12 +5072,12 @@ msgid ""
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
-#: apt.conf.5.xml:510
+#: apt.conf.5.xml:509
 msgid "DPkg::ConfigurePending"
 msgid "DPkg::ConfigurePending"
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:511
+#: apt.conf.5.xml:510
 msgid ""
 msgid ""
 "If this option is set apt will call <command>dpkg --configure "
 "If this option is set apt will call <command>dpkg --configure "
 "--pending</command> to let dpkg handle all required configurations and "
 "--pending</command> to let dpkg handle all required configurations and "
@@ -5090,43 +5089,28 @@ msgid ""
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
-#: apt.conf.5.xml:517
+#: apt.conf.5.xml:516
 msgid "DPkg::TriggersPending"
 msgid "DPkg::TriggersPending"
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:518
+#: apt.conf.5.xml:517
 msgid ""
 msgid ""
 "Useful for <literal>smart</literal> configuration as a package which has "
 "Useful for <literal>smart</literal> configuration as a package which has "
-"pending triggers is not considered as <literal>installed</literal> and dpkg "
-"treats them as <literal>unpacked</literal> currently which is a dealbreaker "
-"for Pre-Dependencies (see debbugs #526774). Note that this will process all "
-"triggers, not only the triggers needed to configure this package."
-msgstr ""
-
-#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
-#: apt.conf.5.xml:523
-msgid "Dpkg::NoConfTriggers"
-msgstr ""
-
-#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:524
-msgid ""
-"DPkg currently will ignore the --triggers or --no-triggers flag if the "
-"trigger is already pending. This option therefore has no real effect as long "
-"as dpkg doesn't change his behavior. The option is automatical activated if "
-"<literal>DPkg::NoTriggers</literal> is activated. You should use "
-"<literal>DPkg::TriggersPending</literal> to take care of these pending "
-"triggers."
+"pending triggers is not considered as \"<literal>installed</literal>\" and "
+"dpkg treats them as \"<literal>unpacked</literal>\" currently which is a "
+"dealbreaker for Pre-Dependencies (see also debbugs #526774). Note that this "
+"will process all triggers, not only the triggers needed to configure this "
+"package."
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
-#: apt.conf.5.xml:530
+#: apt.conf.5.xml:522
 msgid "PackageManager::UnpackAll"
 msgid "PackageManager::UnpackAll"
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:531
+#: apt.conf.5.xml:523
 msgid ""
 msgid ""
 "As the configuration can be deferred to be done at the end by dpkg it can be "
 "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 "
 "tried to order the unpack series only by critical needs, e.g. by "
@@ -5138,12 +5122,12 @@ msgid ""
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
-#: apt.conf.5.xml:538
+#: apt.conf.5.xml:530
 msgid "OrderList::Score::Immediate"
 msgid "OrderList::Score::Immediate"
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para><literallayout>
 #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para><literallayout>
-#: apt.conf.5.xml:546
+#: apt.conf.5.xml:538
 #, no-wrap
 #, no-wrap
 msgid ""
 msgid ""
 "OrderList::Score {\n"
 "OrderList::Score {\n"
@@ -5155,7 +5139,7 @@ msgid ""
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:539
+#: apt.conf.5.xml:531
 msgid ""
 msgid ""
 "Essential packages (and there dependencies) should be configured immediately "
 "Essential packages (and there dependencies) should be configured immediately "
 "after unpacking. It will be a good idea to do this quite early in the "
 "after unpacking. It will be a good idea to do this quite early in the "
@@ -5169,12 +5153,12 @@ msgid ""
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><title>
 #. type: Content of: <refentry><refsect1><title>
-#: apt.conf.5.xml:559
+#: apt.conf.5.xml:551
 msgid "Periodic and Archives options"
 msgid "Periodic and Archives options"
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><para>
 #. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:560
+#: apt.conf.5.xml:552
 msgid ""
 msgid ""
 "<literal>APT::Periodic</literal> and <literal>APT::Archives</literal> groups "
 "<literal>APT::Periodic</literal> and <literal>APT::Archives</literal> groups "
 "of options configure behavior of apt periodic updates, which is done by "
 "of options configure behavior of apt periodic updates, which is done by "
@@ -5183,12 +5167,12 @@ msgid ""
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><title>
 #. type: Content of: <refentry><refsect1><title>
-#: apt.conf.5.xml:568
+#: apt.conf.5.xml:560
 msgid "Debug options"
 msgid "Debug options"
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><para>
 #. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:570
+#: apt.conf.5.xml:562
 msgid ""
 msgid ""
 "Enabling options in the <literal>Debug::</literal> section will cause "
 "Enabling options in the <literal>Debug::</literal> section will cause "
 "debugging information to be sent to the standard error stream of the program "
 "debugging information to be sent to the standard error stream of the program "
@@ -5199,7 +5183,7 @@ msgid ""
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
 #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
-#: apt.conf.5.xml:581
+#: apt.conf.5.xml:573
 msgid ""
 msgid ""
 "<literal>Debug::pkgProblemResolver</literal> enables output about the "
 "<literal>Debug::pkgProblemResolver</literal> enables output about the "
 "decisions made by <literal>dist-upgrade, upgrade, install, remove, "
 "decisions made by <literal>dist-upgrade, upgrade, install, remove, "
@@ -5207,7 +5191,7 @@ msgid ""
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
 #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
-#: apt.conf.5.xml:589
+#: apt.conf.5.xml:581
 msgid ""
 msgid ""
 "<literal>Debug::NoLocking</literal> disables all file locking.  This can be "
 "<literal>Debug::NoLocking</literal> disables all file locking.  This can be "
 "used to run some operations (for instance, <literal>apt-get -s "
 "used to run some operations (for instance, <literal>apt-get -s "
@@ -5215,7 +5199,7 @@ msgid ""
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
 #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
-#: apt.conf.5.xml:598
+#: apt.conf.5.xml:590
 msgid ""
 msgid ""
 "<literal>Debug::pkgDPkgPM</literal> prints out the actual command line each "
 "<literal>Debug::pkgDPkgPM</literal> prints out the actual command line each "
 "time that <literal>apt</literal> invokes &dpkg;."
 "time that <literal>apt</literal> invokes &dpkg;."
@@ -5225,110 +5209,110 @@ msgstr ""
 #. 	   motivating example, except I haven't a clue why you'd want
 #. 	   motivating example, except I haven't a clue why you'd want
 #. 	   to do this. 
 #. 	   to do this. 
 #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
 #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
-#: apt.conf.5.xml:606
+#: apt.conf.5.xml:598
 msgid ""
 msgid ""
 "<literal>Debug::IdentCdrom</literal> disables the inclusion of statfs data "
 "<literal>Debug::IdentCdrom</literal> disables the inclusion of statfs data "
 "in CDROM IDs."
 "in CDROM IDs."
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><para>
 #. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:616
+#: apt.conf.5.xml:608
 msgid "A full list of debugging options to apt follows."
 msgid "A full list of debugging options to apt follows."
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt.conf.5.xml:621
+#: apt.conf.5.xml:613
 msgid "<literal>Debug::Acquire::cdrom</literal>"
 msgid "<literal>Debug::Acquire::cdrom</literal>"
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:625
+#: apt.conf.5.xml:617
 msgid "Print information related to accessing <literal>cdrom://</literal> sources."
 msgid "Print information related to accessing <literal>cdrom://</literal> sources."
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt.conf.5.xml:632
+#: apt.conf.5.xml:624
 msgid "<literal>Debug::Acquire::ftp</literal>"
 msgid "<literal>Debug::Acquire::ftp</literal>"
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:636
+#: apt.conf.5.xml:628
 msgid "Print information related to downloading packages using FTP."
 msgid "Print information related to downloading packages using FTP."
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt.conf.5.xml:643
+#: apt.conf.5.xml:635
 msgid "<literal>Debug::Acquire::http</literal>"
 msgid "<literal>Debug::Acquire::http</literal>"
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:647
+#: apt.conf.5.xml:639
 msgid "Print information related to downloading packages using HTTP."
 msgid "Print information related to downloading packages using HTTP."
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt.conf.5.xml:654
+#: apt.conf.5.xml:646
 msgid "<literal>Debug::Acquire::https</literal>"
 msgid "<literal>Debug::Acquire::https</literal>"
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:658
+#: apt.conf.5.xml:650
 msgid "Print information related to downloading packages using HTTPS."
 msgid "Print information related to downloading packages using HTTPS."
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt.conf.5.xml:665
+#: apt.conf.5.xml:657
 msgid "<literal>Debug::Acquire::gpgv</literal>"
 msgid "<literal>Debug::Acquire::gpgv</literal>"
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:669
+#: apt.conf.5.xml:661
 msgid ""
 msgid ""
 "Print information related to verifying cryptographic signatures using "
 "Print information related to verifying cryptographic signatures using "
 "<literal>gpg</literal>."
 "<literal>gpg</literal>."
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt.conf.5.xml:676
+#: apt.conf.5.xml:668
 msgid "<literal>Debug::aptcdrom</literal>"
 msgid "<literal>Debug::aptcdrom</literal>"
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:680
+#: apt.conf.5.xml:672
 msgid ""
 msgid ""
 "Output information about the process of accessing collections of packages "
 "Output information about the process of accessing collections of packages "
 "stored on CD-ROMs."
 "stored on CD-ROMs."
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt.conf.5.xml:687
+#: apt.conf.5.xml:679
 msgid "<literal>Debug::BuildDeps</literal>"
 msgid "<literal>Debug::BuildDeps</literal>"
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:690
+#: apt.conf.5.xml:682
 msgid "Describes the process of resolving build-dependencies in &apt-get;."
 msgid "Describes the process of resolving build-dependencies in &apt-get;."
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt.conf.5.xml:697
+#: apt.conf.5.xml:689
 msgid "<literal>Debug::Hashes</literal>"
 msgid "<literal>Debug::Hashes</literal>"
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:700
+#: apt.conf.5.xml:692
 msgid ""
 msgid ""
 "Output each cryptographic hash that is generated by the "
 "Output each cryptographic hash that is generated by the "
 "<literal>apt</literal> libraries."
 "<literal>apt</literal> libraries."
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt.conf.5.xml:707
+#: apt.conf.5.xml:699
 msgid "<literal>Debug::IdentCDROM</literal>"
 msgid "<literal>Debug::IdentCDROM</literal>"
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:710
+#: apt.conf.5.xml:702
 msgid ""
 msgid ""
 "Do not include information from <literal>statfs</literal>, namely the number "
 "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 "
 "of used and free blocks on the CD-ROM filesystem, when generating an ID for "
@@ -5336,92 +5320,92 @@ msgid ""
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt.conf.5.xml:718
+#: apt.conf.5.xml:710
 msgid "<literal>Debug::NoLocking</literal>"
 msgid "<literal>Debug::NoLocking</literal>"
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:721
+#: apt.conf.5.xml:713
 msgid ""
 msgid ""
 "Disable all file locking.  For instance, this will allow two instances of "
 "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."
 "<quote><literal>apt-get update</literal></quote> to run at the same time."
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt.conf.5.xml:729
+#: apt.conf.5.xml:721
 msgid "<literal>Debug::pkgAcquire</literal>"
 msgid "<literal>Debug::pkgAcquire</literal>"
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:733
+#: apt.conf.5.xml:725
 msgid "Log when items are added to or removed from the global download queue."
 msgid "Log when items are added to or removed from the global download queue."
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt.conf.5.xml:740
+#: apt.conf.5.xml:732
 msgid "<literal>Debug::pkgAcquire::Auth</literal>"
 msgid "<literal>Debug::pkgAcquire::Auth</literal>"
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:743
+#: apt.conf.5.xml:735
 msgid ""
 msgid ""
 "Output status messages and errors related to verifying checksums and "
 "Output status messages and errors related to verifying checksums and "
 "cryptographic signatures of downloaded files."
 "cryptographic signatures of downloaded files."
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt.conf.5.xml:750
+#: apt.conf.5.xml:742
 msgid "<literal>Debug::pkgAcquire::Diffs</literal>"
 msgid "<literal>Debug::pkgAcquire::Diffs</literal>"
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:753
+#: apt.conf.5.xml:745
 msgid ""
 msgid ""
 "Output information about downloading and applying package index list diffs, "
 "Output information about downloading and applying package index list diffs, "
 "and errors relating to package index list diffs."
 "and errors relating to package index list diffs."
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt.conf.5.xml:761
+#: apt.conf.5.xml:753
 msgid "<literal>Debug::pkgAcquire::RRed</literal>"
 msgid "<literal>Debug::pkgAcquire::RRed</literal>"
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:765
+#: apt.conf.5.xml:757
 msgid ""
 msgid ""
 "Output information related to patching apt package lists when downloading "
 "Output information related to patching apt package lists when downloading "
 "index diffs instead of full indices."
 "index diffs instead of full indices."
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt.conf.5.xml:772
+#: apt.conf.5.xml:764
 msgid "<literal>Debug::pkgAcquire::Worker</literal>"
 msgid "<literal>Debug::pkgAcquire::Worker</literal>"
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:776
+#: apt.conf.5.xml:768
 msgid "Log all interactions with the sub-processes that actually perform downloads."
 msgid "Log all interactions with the sub-processes that actually perform downloads."
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt.conf.5.xml:783
+#: apt.conf.5.xml:775
 msgid "<literal>Debug::pkgAutoRemove</literal>"
 msgid "<literal>Debug::pkgAutoRemove</literal>"
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:787
+#: apt.conf.5.xml:779
 msgid ""
 msgid ""
 "Log events related to the automatically-installed status of packages and to "
 "Log events related to the automatically-installed status of packages and to "
 "the removal of unused packages."
 "the removal of unused packages."
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt.conf.5.xml:794
+#: apt.conf.5.xml:786
 msgid "<literal>Debug::pkgDepCache::AutoInstall</literal>"
 msgid "<literal>Debug::pkgDepCache::AutoInstall</literal>"
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:797
+#: apt.conf.5.xml:789
 msgid ""
 msgid ""
 "Generate debug messages describing which packages are being automatically "
 "Generate debug messages describing which packages are being automatically "
 "installed to resolve dependencies.  This corresponds to the initial "
 "installed to resolve dependencies.  This corresponds to the initial "
@@ -5431,12 +5415,12 @@ msgid ""
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt.conf.5.xml:808
+#: apt.conf.5.xml:800
 msgid "<literal>Debug::pkgDepCache::Marker</literal>"
 msgid "<literal>Debug::pkgDepCache::Marker</literal>"
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:811
+#: apt.conf.5.xml:803
 msgid ""
 msgid ""
 "Generate debug messages describing which package is marked as "
 "Generate debug messages describing which package is marked as "
 "keep/install/remove while the ProblemResolver does his work.  Each addition "
 "keep/install/remove while the ProblemResolver does his work.  Each addition "
@@ -5454,90 +5438,90 @@ msgid ""
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt.conf.5.xml:830
+#: apt.conf.5.xml:822
 msgid "<literal>Debug::pkgInitConfig</literal>"
 msgid "<literal>Debug::pkgInitConfig</literal>"
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:833
+#: apt.conf.5.xml:825
 msgid "Dump the default configuration to standard error on startup."
 msgid "Dump the default configuration to standard error on startup."
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt.conf.5.xml:840
+#: apt.conf.5.xml:832
 msgid "<literal>Debug::pkgDPkgPM</literal>"
 msgid "<literal>Debug::pkgDPkgPM</literal>"
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:843
+#: apt.conf.5.xml:835
 msgid ""
 msgid ""
 "When invoking &dpkg;, output the precise command line with which it is being "
 "When invoking &dpkg;, output the precise command line with which it is being "
 "invoked, with arguments separated by a single space character."
 "invoked, with arguments separated by a single space character."
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt.conf.5.xml:851
+#: apt.conf.5.xml:843
 msgid "<literal>Debug::pkgDPkgProgressReporting</literal>"
 msgid "<literal>Debug::pkgDPkgProgressReporting</literal>"
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:854
+#: apt.conf.5.xml:846
 msgid ""
 msgid ""
 "Output all the data received from &dpkg; on the status file descriptor and "
 "Output all the data received from &dpkg; on the status file descriptor and "
 "any errors encountered while parsing it."
 "any errors encountered while parsing it."
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt.conf.5.xml:861
+#: apt.conf.5.xml:853
 msgid "<literal>Debug::pkgOrderList</literal>"
 msgid "<literal>Debug::pkgOrderList</literal>"
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:865
+#: apt.conf.5.xml:857
 msgid ""
 msgid ""
 "Generate a trace of the algorithm that decides the order in which "
 "Generate a trace of the algorithm that decides the order in which "
 "<literal>apt</literal> should pass packages to &dpkg;."
 "<literal>apt</literal> should pass packages to &dpkg;."
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt.conf.5.xml:873
+#: apt.conf.5.xml:865
 msgid "<literal>Debug::pkgPackageManager</literal>"
 msgid "<literal>Debug::pkgPackageManager</literal>"
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:877
+#: apt.conf.5.xml:869
 msgid "Output status messages tracing the steps performed when invoking &dpkg;."
 msgid "Output status messages tracing the steps performed when invoking &dpkg;."
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt.conf.5.xml:884
+#: apt.conf.5.xml:876
 msgid "<literal>Debug::pkgPolicy</literal>"
 msgid "<literal>Debug::pkgPolicy</literal>"
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:888
+#: apt.conf.5.xml:880
 msgid "Output the priority of each package list on startup."
 msgid "Output the priority of each package list on startup."
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt.conf.5.xml:894
+#: apt.conf.5.xml:886
 msgid "<literal>Debug::pkgProblemResolver</literal>"
 msgid "<literal>Debug::pkgProblemResolver</literal>"
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:898
+#: apt.conf.5.xml:890
 msgid ""
 msgid ""
 "Trace the execution of the dependency resolver (this applies only to what "
 "Trace the execution of the dependency resolver (this applies only to what "
 "happens when a complex dependency problem is encountered)."
 "happens when a complex dependency problem is encountered)."
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt.conf.5.xml:906
+#: apt.conf.5.xml:898
 msgid "<literal>Debug::pkgProblemResolver::ShowScores</literal>"
 msgid "<literal>Debug::pkgProblemResolver::ShowScores</literal>"
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:909
+#: apt.conf.5.xml:901
 msgid ""
 msgid ""
 "Display a list of all installed packages with their calculated score used by "
 "Display a list of all installed packages with their calculated score used by "
 "the pkgProblemResolver. The description of the package is the same as "
 "the pkgProblemResolver. The description of the package is the same as "
@@ -5545,32 +5529,32 @@ msgid ""
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt.conf.5.xml:917
+#: apt.conf.5.xml:909
 msgid "<literal>Debug::sourceList</literal>"
 msgid "<literal>Debug::sourceList</literal>"
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:921
+#: apt.conf.5.xml:913
 msgid ""
 msgid ""
 "Print information about the vendors read from "
 "Print information about the vendors read from "
 "<filename>/etc/apt/vendors.list</filename>."
 "<filename>/etc/apt/vendors.list</filename>."
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><para>
 #. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:943
+#: apt.conf.5.xml:935
 msgid ""
 msgid ""
 "&configureindex; is a configuration file showing example values for all "
 "&configureindex; is a configuration file showing example values for all "
 "possible options."
 "possible options."
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><variablelist>
 #. type: Content of: <refentry><refsect1><variablelist>
-#: apt.conf.5.xml:950
+#: apt.conf.5.xml:942
 msgid "&file-aptconf;"
 msgid "&file-aptconf;"
 msgstr ""
 msgstr ""
 
 
 #.  ? reading apt.conf 
 #.  ? reading apt.conf 
 #. type: Content of: <refentry><refsect1><para>
 #. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:955
+#: apt.conf.5.xml:947
 msgid "&apt-cache;, &apt-config;, &apt-preferences;."
 msgid "&apt-cache;, &apt-config;, &apt-preferences;."
 msgstr ""
 msgstr ""
 
 

+ 89 - 105
doc/po/fr.po

@@ -9,7 +9,7 @@
 msgid ""
 msgid ""
 msgstr ""
 msgstr ""
 "Project-Id-Version: \n"
 "Project-Id-Version: \n"
-"POT-Creation-Date: 2009-09-15 22:56+0300\n"
+"POT-Creation-Date: 2009-09-18 16:44+0300\n"
 "PO-Revision-Date: 2009-09-04 20:23+0200\n"
 "PO-Revision-Date: 2009-09-04 20:23+0200\n"
 "Last-Translator: Christian Perrier <bubulle@debian.org>\n"
 "Last-Translator: Christian Perrier <bubulle@debian.org>\n"
 "Language-Team: French <debian-l10n-french@lists.debian.org>\n"
 "Language-Team: French <debian-l10n-french@lists.debian.org>\n"
@@ -1882,7 +1882,7 @@ msgstr "&apt-commonoptions;"
 
 
 #. type: Content of: <refentry><refsect1><title>
 #. type: Content of: <refentry><refsect1><title>
 #: apt-cache.8.xml:358 apt-get.8.xml:559 apt-key.8.xml:138 apt-mark.8.xml:122
 #: apt-cache.8.xml:358 apt-get.8.xml:559 apt-key.8.xml:138 apt-mark.8.xml:122
-#: apt.conf.5.xml:948 apt_preferences.5.xml:615
+#: apt.conf.5.xml:940 apt_preferences.5.xml:615
 msgid "Files"
 msgid "Files"
 msgstr "Fichiers"
 msgstr "Fichiers"
 
 
@@ -1895,7 +1895,7 @@ msgstr ""
 #: apt-cache.8.xml:365 apt-cdrom.8.xml:155 apt-config.8.xml:103
 #: apt-cache.8.xml:365 apt-cdrom.8.xml:155 apt-config.8.xml:103
 #: apt-extracttemplates.1.xml:74 apt-ftparchive.1.xml:563 apt-get.8.xml:569
 #: apt-extracttemplates.1.xml:74 apt-ftparchive.1.xml:563 apt-get.8.xml:569
 #: apt-key.8.xml:162 apt-mark.8.xml:133 apt-secure.8.xml:181
 #: apt-key.8.xml:162 apt-mark.8.xml:133 apt-secure.8.xml:181
-#: apt-sortpkgs.1.xml:69 apt.conf.5.xml:954 apt_preferences.5.xml:622
+#: apt-sortpkgs.1.xml:69 apt.conf.5.xml:946 apt_preferences.5.xml:622
 #: sources.list.5.xml:221
 #: sources.list.5.xml:221
 msgid "See Also"
 msgid "See Also"
 msgstr "Voir aussi"
 msgstr "Voir aussi"
@@ -3481,7 +3481,7 @@ msgstr ""
 "configuration : <literal>APT::FTPArchive::ReadOnlyDB</literal>."
 "configuration : <literal>APT::FTPArchive::ReadOnlyDB</literal>."
 
 
 #. type: Content of: <refentry><refsect1><title>
 #. type: Content of: <refentry><refsect1><title>
-#: apt-ftparchive.1.xml:552 apt.conf.5.xml:942 apt_preferences.5.xml:462
+#: apt-ftparchive.1.xml:552 apt.conf.5.xml:934 apt_preferences.5.xml:462
 #: sources.list.5.xml:181
 #: sources.list.5.xml:181
 msgid "Examples"
 msgid "Examples"
 msgstr "Exemples"
 msgstr "Exemples"
@@ -6820,8 +6820,7 @@ msgid ""
 "DPkg::NoTriggers \"true\";\n"
 "DPkg::NoTriggers \"true\";\n"
 "PackageManager::Configure \"smart\";\n"
 "PackageManager::Configure \"smart\";\n"
 "DPkg::ConfigurePending \"true\";\n"
 "DPkg::ConfigurePending \"true\";\n"
-"DPkg::TriggersPending \"true\";\n"
-"OrderList::Score::Immediate 100;"
+"DPkg::TriggersPending \"true\";"
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><refsect2><para>
 #. type: Content of: <refentry><refsect1><refsect2><para>
@@ -6839,12 +6838,12 @@ msgid ""
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
-#: apt.conf.5.xml:491
+#: apt.conf.5.xml:490
 msgid "DPkg::NoTriggers"
 msgid "DPkg::NoTriggers"
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:492
+#: apt.conf.5.xml:491
 msgid ""
 msgid ""
 "Add the no triggers flag to all dpkg calls (expect the ConfigurePending "
 "Add the no triggers flag to all dpkg calls (expect the ConfigurePending "
 "call).  See &dpkg; if you are interested in what this actually means. In "
 "call).  See &dpkg; if you are interested in what this actually means. In "
@@ -6856,14 +6855,14 @@ msgid ""
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
-#: apt.conf.5.xml:499
+#: apt.conf.5.xml:498
 #, fuzzy
 #, fuzzy
 #| msgid "Packages::Compress"
 #| msgid "Packages::Compress"
 msgid "PackageManager::Configure"
 msgid "PackageManager::Configure"
 msgstr "Packages::Compress"
 msgstr "Packages::Compress"
 
 
 #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:500
+#: apt.conf.5.xml:499
 msgid ""
 msgid ""
 "Valid values are \"<literal>all</literal>\", \"<literal>smart</literal>\" "
 "Valid values are \"<literal>all</literal>\", \"<literal>smart</literal>\" "
 "and \"<literal>no</literal>\".  \"<literal>all</literal>\" is the default "
 "and \"<literal>no</literal>\".  \"<literal>all</literal>\" is the default "
@@ -6879,12 +6878,12 @@ msgid ""
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
-#: apt.conf.5.xml:510
+#: apt.conf.5.xml:509
 msgid "DPkg::ConfigurePending"
 msgid "DPkg::ConfigurePending"
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:511
+#: apt.conf.5.xml:510
 msgid ""
 msgid ""
 "If this option is set apt will call <command>dpkg --configure --pending</"
 "If this option is set apt will call <command>dpkg --configure --pending</"
 "command> to let dpkg handle all required configurations and triggers. This "
 "command> to let dpkg handle all required configurations and triggers. This "
@@ -6895,43 +6894,28 @@ msgid ""
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
-#: apt.conf.5.xml:517
+#: apt.conf.5.xml:516
 msgid "DPkg::TriggersPending"
 msgid "DPkg::TriggersPending"
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:518
+#: apt.conf.5.xml:517
 msgid ""
 msgid ""
 "Useful for <literal>smart</literal> configuration as a package which has "
 "Useful for <literal>smart</literal> configuration as a package which has "
-"pending triggers is not considered as <literal>installed</literal> and dpkg "
-"treats them as <literal>unpacked</literal> currently which is a dealbreaker "
-"for Pre-Dependencies (see debbugs #526774). Note that this will process all "
-"triggers, not only the triggers needed to configure this package."
-msgstr ""
-
-#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
-#: apt.conf.5.xml:523
-msgid "Dpkg::NoConfTriggers"
-msgstr ""
-
-#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:524
-msgid ""
-"DPkg currently will ignore the --triggers or --no-triggers flag if the "
-"trigger is already pending. This option therefore has no real effect as long "
-"as dpkg doesn't change his behavior. The option is automatical activated if "
-"<literal>DPkg::NoTriggers</literal> is activated. You should use "
-"<literal>DPkg::TriggersPending</literal> to take care of these pending "
-"triggers."
+"pending triggers is not considered as \"<literal>installed</literal>\" and "
+"dpkg treats them as \"<literal>unpacked</literal>\" currently which is a "
+"dealbreaker for Pre-Dependencies (see also debbugs #526774). Note that this "
+"will process all triggers, not only the triggers needed to configure this "
+"package."
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
-#: apt.conf.5.xml:530
+#: apt.conf.5.xml:522
 msgid "PackageManager::UnpackAll"
 msgid "PackageManager::UnpackAll"
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:531
+#: apt.conf.5.xml:523
 msgid ""
 msgid ""
 "As the configuration can be deferred to be done at the end by dpkg it can be "
 "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-"
 "tried to order the unpack series only by critical needs, e.g. by Pre-"
@@ -6943,12 +6927,12 @@ msgid ""
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
-#: apt.conf.5.xml:538
+#: apt.conf.5.xml:530
 msgid "OrderList::Score::Immediate"
 msgid "OrderList::Score::Immediate"
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para><literallayout>
 #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para><literallayout>
-#: apt.conf.5.xml:546
+#: apt.conf.5.xml:538
 #, no-wrap
 #, no-wrap
 msgid ""
 msgid ""
 "OrderList::Score {\n"
 "OrderList::Score {\n"
@@ -6960,7 +6944,7 @@ msgid ""
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:539
+#: apt.conf.5.xml:531
 msgid ""
 msgid ""
 "Essential packages (and there dependencies) should be configured immediately "
 "Essential packages (and there dependencies) should be configured immediately "
 "after unpacking. It will be a good idea to do this quite early in the "
 "after unpacking. It will be a good idea to do this quite early in the "
@@ -6974,13 +6958,13 @@ msgid ""
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><title>
 #. type: Content of: <refentry><refsect1><title>
-#: apt.conf.5.xml:559
+#: apt.conf.5.xml:551
 #, fuzzy
 #, fuzzy
 msgid "Periodic and Archives options"
 msgid "Periodic and Archives options"
 msgstr "Options « Periodic » et « Archive »"
 msgstr "Options « Periodic » et « Archive »"
 
 
 #. type: Content of: <refentry><refsect1><para>
 #. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:560
+#: apt.conf.5.xml:552
 #, fuzzy
 #, fuzzy
 msgid ""
 msgid ""
 "<literal>APT::Periodic</literal> and <literal>APT::Archives</literal> groups "
 "<literal>APT::Periodic</literal> and <literal>APT::Archives</literal> groups "
@@ -6993,13 +6977,13 @@ msgstr ""
 "script <literal>/etc/cron.daily/apt</literal>, lancé quotidiennement."
 "script <literal>/etc/cron.daily/apt</literal>, lancé quotidiennement."
 
 
 #. type: Content of: <refentry><refsect1><title>
 #. type: Content of: <refentry><refsect1><title>
-#: apt.conf.5.xml:568
+#: apt.conf.5.xml:560
 #, fuzzy
 #, fuzzy
 msgid "Debug options"
 msgid "Debug options"
 msgstr "Les options de débogage"
 msgstr "Les options de débogage"
 
 
 #. type: Content of: <refentry><refsect1><para>
 #. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:570
+#: apt.conf.5.xml:562
 #, fuzzy
 #, fuzzy
 msgid ""
 msgid ""
 "Enabling options in the <literal>Debug::</literal> section will cause "
 "Enabling options in the <literal>Debug::</literal> section will cause "
@@ -7018,7 +7002,7 @@ msgstr ""
 "peuvent tout de même être utiles :"
 "peuvent tout de même être utiles :"
 
 
 #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
 #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
-#: apt.conf.5.xml:581
+#: apt.conf.5.xml:573
 #, fuzzy
 #, fuzzy
 msgid ""
 msgid ""
 "<literal>Debug::pkgProblemResolver</literal> enables output about the "
 "<literal>Debug::pkgProblemResolver</literal> enables output about the "
@@ -7030,7 +7014,7 @@ msgstr ""
 "upgrade, upgrade, install, remove et purge</literal>."
 "upgrade, upgrade, install, remove et purge</literal>."
 
 
 #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
 #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
-#: apt.conf.5.xml:589
+#: apt.conf.5.xml:581
 #, fuzzy
 #, fuzzy
 msgid ""
 msgid ""
 "<literal>Debug::NoLocking</literal> disables all file locking.  This can be "
 "<literal>Debug::NoLocking</literal> disables all file locking.  This can be "
@@ -7042,7 +7026,7 @@ msgstr ""
 "<literal>apt-get -s install</literal>) sans être « root »."
 "<literal>apt-get -s install</literal>) sans être « root »."
 
 
 #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
 #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
-#: apt.conf.5.xml:598
+#: apt.conf.5.xml:590
 #, fuzzy
 #, fuzzy
 msgid ""
 msgid ""
 "<literal>Debug::pkgDPkgPM</literal> prints out the actual command line each "
 "<literal>Debug::pkgDPkgPM</literal> prints out the actual command line each "
@@ -7055,7 +7039,7 @@ msgstr ""
 #. 	   motivating example, except I haven't a clue why you'd want
 #. 	   motivating example, except I haven't a clue why you'd want
 #. 	   to do this. 
 #. 	   to do this. 
 #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
 #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
-#: apt.conf.5.xml:606
+#: apt.conf.5.xml:598
 #, fuzzy
 #, fuzzy
 msgid ""
 msgid ""
 "<literal>Debug::IdentCdrom</literal> disables the inclusion of statfs data "
 "<literal>Debug::IdentCdrom</literal> disables the inclusion of statfs data "
@@ -7065,71 +7049,71 @@ msgstr ""
 "type statfs dans les ID de cédérom."
 "type statfs dans les ID de cédérom."
 
 
 #. type: Content of: <refentry><refsect1><para>
 #. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:616
+#: apt.conf.5.xml:608
 #, fuzzy
 #, fuzzy
 msgid "A full list of debugging options to apt follows."
 msgid "A full list of debugging options to apt follows."
 msgstr "Voici une liste complète des options de débogage de APT."
 msgstr "Voici une liste complète des options de débogage de APT."
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt.conf.5.xml:621
+#: apt.conf.5.xml:613
 #, fuzzy
 #, fuzzy
 msgid "<literal>Debug::Acquire::cdrom</literal>"
 msgid "<literal>Debug::Acquire::cdrom</literal>"
 msgstr "Debug::Acquire::cdrom"
 msgstr "Debug::Acquire::cdrom"
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:625
+#: apt.conf.5.xml:617
 #, fuzzy
 #, fuzzy
 msgid ""
 msgid ""
 "Print information related to accessing <literal>cdrom://</literal> sources."
 "Print information related to accessing <literal>cdrom://</literal> sources."
 msgstr "Affiche les informations concernant les sources de type cdrom://"
 msgstr "Affiche les informations concernant les sources de type cdrom://"
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt.conf.5.xml:632
+#: apt.conf.5.xml:624
 #, fuzzy
 #, fuzzy
 msgid "<literal>Debug::Acquire::ftp</literal>"
 msgid "<literal>Debug::Acquire::ftp</literal>"
 msgstr "Debug::Acquire::ftp"
 msgstr "Debug::Acquire::ftp"
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:636
+#: apt.conf.5.xml:628
 #, fuzzy
 #, fuzzy
 msgid "Print information related to downloading packages using FTP."
 msgid "Print information related to downloading packages using FTP."
 msgstr ""
 msgstr ""
 "Affiche les informations concernant le téléchargement de paquets par FTP."
 "Affiche les informations concernant le téléchargement de paquets par FTP."
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt.conf.5.xml:643
+#: apt.conf.5.xml:635
 #, fuzzy
 #, fuzzy
 msgid "<literal>Debug::Acquire::http</literal>"
 msgid "<literal>Debug::Acquire::http</literal>"
 msgstr "Debug::Acquire::http"
 msgstr "Debug::Acquire::http"
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:647
+#: apt.conf.5.xml:639
 #, fuzzy
 #, fuzzy
 msgid "Print information related to downloading packages using HTTP."
 msgid "Print information related to downloading packages using HTTP."
 msgstr ""
 msgstr ""
 "Affiche les informations concernant le téléchargement de paquets par HTTP."
 "Affiche les informations concernant le téléchargement de paquets par HTTP."
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt.conf.5.xml:654
+#: apt.conf.5.xml:646
 #, fuzzy
 #, fuzzy
 msgid "<literal>Debug::Acquire::https</literal>"
 msgid "<literal>Debug::Acquire::https</literal>"
 msgstr "Debug::Acquire::https"
 msgstr "Debug::Acquire::https"
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:658
+#: apt.conf.5.xml:650
 #, fuzzy
 #, fuzzy
 msgid "Print information related to downloading packages using HTTPS."
 msgid "Print information related to downloading packages using HTTPS."
 msgstr ""
 msgstr ""
 "Affiche les informations concernant le téléchargement de paquets par HTTPS."
 "Affiche les informations concernant le téléchargement de paquets par HTTPS."
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt.conf.5.xml:665
+#: apt.conf.5.xml:657
 #, fuzzy
 #, fuzzy
 msgid "<literal>Debug::Acquire::gpgv</literal>"
 msgid "<literal>Debug::Acquire::gpgv</literal>"
 msgstr "Debug::Acquire::gpgv"
 msgstr "Debug::Acquire::gpgv"
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:669
+#: apt.conf.5.xml:661
 #, fuzzy
 #, fuzzy
 msgid ""
 msgid ""
 "Print information related to verifying cryptographic signatures using "
 "Print information related to verifying cryptographic signatures using "
@@ -7139,13 +7123,13 @@ msgstr ""
 "cryptographiques avec <literal>gpg</literal>."
 "cryptographiques avec <literal>gpg</literal>."
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt.conf.5.xml:676
+#: apt.conf.5.xml:668
 #, fuzzy
 #, fuzzy
 msgid "<literal>Debug::aptcdrom</literal>"
 msgid "<literal>Debug::aptcdrom</literal>"
 msgstr "Debug::aptcdrom"
 msgstr "Debug::aptcdrom"
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:680
+#: apt.conf.5.xml:672
 #, fuzzy
 #, fuzzy
 msgid ""
 msgid ""
 "Output information about the process of accessing collections of packages "
 "Output information about the process of accessing collections of packages "
@@ -7155,13 +7139,13 @@ msgstr ""
 "stockées sur cédérom."
 "stockées sur cédérom."
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt.conf.5.xml:687
+#: apt.conf.5.xml:679
 #, fuzzy
 #, fuzzy
 msgid "<literal>Debug::BuildDeps</literal>"
 msgid "<literal>Debug::BuildDeps</literal>"
 msgstr "Debug::BuildDeps"
 msgstr "Debug::BuildDeps"
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:690
+#: apt.conf.5.xml:682
 #, fuzzy
 #, fuzzy
 msgid "Describes the process of resolving build-dependencies in &apt-get;."
 msgid "Describes the process of resolving build-dependencies in &apt-get;."
 msgstr ""
 msgstr ""
@@ -7169,13 +7153,13 @@ msgstr ""
 "paquets source ( « build-dependencies » ) par &apt-get;."
 "paquets source ( « build-dependencies » ) par &apt-get;."
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt.conf.5.xml:697
+#: apt.conf.5.xml:689
 #, fuzzy
 #, fuzzy
 msgid "<literal>Debug::Hashes</literal>"
 msgid "<literal>Debug::Hashes</literal>"
 msgstr "Debug::Hashes"
 msgstr "Debug::Hashes"
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:700
+#: apt.conf.5.xml:692
 #, fuzzy
 #, fuzzy
 msgid ""
 msgid ""
 "Output each cryptographic hash that is generated by the <literal>apt</"
 "Output each cryptographic hash that is generated by the <literal>apt</"
@@ -7185,13 +7169,13 @@ msgstr ""
 "librairies APT."
 "librairies APT."
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt.conf.5.xml:707
+#: apt.conf.5.xml:699
 #, fuzzy
 #, fuzzy
 msgid "<literal>Debug::IdentCDROM</literal>"
 msgid "<literal>Debug::IdentCDROM</literal>"
 msgstr "Debug::IdentCdrom"
 msgstr "Debug::IdentCdrom"
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:710
+#: apt.conf.5.xml:702
 #, fuzzy
 #, fuzzy
 msgid ""
 msgid ""
 "Do not include information from <literal>statfs</literal>, namely the number "
 "Do not include information from <literal>statfs</literal>, namely the number "
@@ -7203,13 +7187,13 @@ msgstr ""
 "sur le système de fichier du cédérom."
 "sur le système de fichier du cédérom."
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt.conf.5.xml:718
+#: apt.conf.5.xml:710
 #, fuzzy
 #, fuzzy
 msgid "<literal>Debug::NoLocking</literal>"
 msgid "<literal>Debug::NoLocking</literal>"
 msgstr "Debug::NoLocking"
 msgstr "Debug::NoLocking"
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:721
+#: apt.conf.5.xml:713
 #, fuzzy
 #, fuzzy
 msgid ""
 msgid ""
 "Disable all file locking.  For instance, this will allow two instances of "
 "Disable all file locking.  For instance, this will allow two instances of "
@@ -7219,13 +7203,13 @@ msgstr ""
 "deux instances de « apt-get update » en même temps."
 "deux instances de « apt-get update » en même temps."
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt.conf.5.xml:729
+#: apt.conf.5.xml:721
 #, fuzzy
 #, fuzzy
 msgid "<literal>Debug::pkgAcquire</literal>"
 msgid "<literal>Debug::pkgAcquire</literal>"
 msgstr "Debug::pkgAcquire"
 msgstr "Debug::pkgAcquire"
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:733
+#: apt.conf.5.xml:725
 #, fuzzy
 #, fuzzy
 msgid "Log when items are added to or removed from the global download queue."
 msgid "Log when items are added to or removed from the global download queue."
 msgstr ""
 msgstr ""
@@ -7233,13 +7217,13 @@ msgstr ""
 "téléchargement."
 "téléchargement."
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt.conf.5.xml:740
+#: apt.conf.5.xml:732
 #, fuzzy
 #, fuzzy
 msgid "<literal>Debug::pkgAcquire::Auth</literal>"
 msgid "<literal>Debug::pkgAcquire::Auth</literal>"
 msgstr "Debug::pkgAcquire::Auth"
 msgstr "Debug::pkgAcquire::Auth"
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:743
+#: apt.conf.5.xml:735
 #, fuzzy
 #, fuzzy
 msgid ""
 msgid ""
 "Output status messages and errors related to verifying checksums and "
 "Output status messages and errors related to verifying checksums and "
@@ -7250,13 +7234,13 @@ msgstr ""
 "éventuelles."
 "éventuelles."
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt.conf.5.xml:750
+#: apt.conf.5.xml:742
 #, fuzzy
 #, fuzzy
 msgid "<literal>Debug::pkgAcquire::Diffs</literal>"
 msgid "<literal>Debug::pkgAcquire::Diffs</literal>"
 msgstr "Debug::pkgAcquire::Diffs"
 msgstr "Debug::pkgAcquire::Diffs"
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:753
+#: apt.conf.5.xml:745
 #, fuzzy
 #, fuzzy
 msgid ""
 msgid ""
 "Output information about downloading and applying package index list diffs, "
 "Output information about downloading and applying package index list diffs, "
@@ -7267,13 +7251,13 @@ msgstr ""
 "éventuelles."
 "éventuelles."
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt.conf.5.xml:761
+#: apt.conf.5.xml:753
 #, fuzzy
 #, fuzzy
 msgid "<literal>Debug::pkgAcquire::RRed</literal>"
 msgid "<literal>Debug::pkgAcquire::RRed</literal>"
 msgstr "Debug::pkgAcquire::RRed"
 msgstr "Debug::pkgAcquire::RRed"
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:765
+#: apt.conf.5.xml:757
 #, fuzzy
 #, fuzzy
 msgid ""
 msgid ""
 "Output information related to patching apt package lists when downloading "
 "Output information related to patching apt package lists when downloading "
@@ -7284,13 +7268,13 @@ msgstr ""
 "éventuelles."
 "éventuelles."
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt.conf.5.xml:772
+#: apt.conf.5.xml:764
 #, fuzzy
 #, fuzzy
 msgid "<literal>Debug::pkgAcquire::Worker</literal>"
 msgid "<literal>Debug::pkgAcquire::Worker</literal>"
 msgstr "Debug::pkgAcquire::Worker"
 msgstr "Debug::pkgAcquire::Worker"
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:776
+#: apt.conf.5.xml:768
 #, fuzzy
 #, fuzzy
 msgid ""
 msgid ""
 "Log all interactions with the sub-processes that actually perform downloads."
 "Log all interactions with the sub-processes that actually perform downloads."
@@ -7299,13 +7283,13 @@ msgstr ""
 "effectivement des téléchargements."
 "effectivement des téléchargements."
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt.conf.5.xml:783
+#: apt.conf.5.xml:775
 #, fuzzy
 #, fuzzy
 msgid "<literal>Debug::pkgAutoRemove</literal>"
 msgid "<literal>Debug::pkgAutoRemove</literal>"
 msgstr "Debug::pkgAcquire::pkgAutoRemove"
 msgstr "Debug::pkgAcquire::pkgAutoRemove"
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:787
+#: apt.conf.5.xml:779
 #, fuzzy
 #, fuzzy
 msgid ""
 msgid ""
 "Log events related to the automatically-installed status of packages and to "
 "Log events related to the automatically-installed status of packages and to "
@@ -7315,13 +7299,13 @@ msgstr ""
 "automatiquement, et la suppression des paquets inutiles."
 "automatiquement, et la suppression des paquets inutiles."
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt.conf.5.xml:794
+#: apt.conf.5.xml:786
 #, fuzzy
 #, fuzzy
 msgid "<literal>Debug::pkgDepCache::AutoInstall</literal>"
 msgid "<literal>Debug::pkgDepCache::AutoInstall</literal>"
 msgstr "Debug::pkgDepCache::AutoInstall"
 msgstr "Debug::pkgDepCache::AutoInstall"
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:797
+#: apt.conf.5.xml:789
 #, fuzzy
 #, fuzzy
 msgid ""
 msgid ""
 "Generate debug messages describing which packages are being automatically "
 "Generate debug messages describing which packages are being automatically "
@@ -7337,13 +7321,13 @@ msgstr ""
 "de APT ; voir <literal>Debug::pkgProblemResolver</literal> pour ce dernier."
 "de APT ; voir <literal>Debug::pkgProblemResolver</literal> pour ce dernier."
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt.conf.5.xml:808
+#: apt.conf.5.xml:800
 #, fuzzy
 #, fuzzy
 msgid "<literal>Debug::pkgDepCache::Marker</literal>"
 msgid "<literal>Debug::pkgDepCache::Marker</literal>"
 msgstr "Debug::pkgDepCache::AutoInstall"
 msgstr "Debug::pkgDepCache::AutoInstall"
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:811
+#: apt.conf.5.xml:803
 msgid ""
 msgid ""
 "Generate debug messages describing which package is marked as keep/install/"
 "Generate debug messages describing which package is marked as keep/install/"
 "remove while the ProblemResolver does his work.  Each addition or deletion "
 "remove while the ProblemResolver does his work.  Each addition or deletion "
@@ -7360,13 +7344,13 @@ msgid ""
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt.conf.5.xml:830
+#: apt.conf.5.xml:822
 #, fuzzy
 #, fuzzy
 msgid "<literal>Debug::pkgInitConfig</literal>"
 msgid "<literal>Debug::pkgInitConfig</literal>"
 msgstr "Debug::pkgInitConfig"
 msgstr "Debug::pkgInitConfig"
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:833
+#: apt.conf.5.xml:825
 #, fuzzy
 #, fuzzy
 msgid "Dump the default configuration to standard error on startup."
 msgid "Dump the default configuration to standard error on startup."
 msgstr ""
 msgstr ""
@@ -7374,13 +7358,13 @@ msgstr ""
 "standard."
 "standard."
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt.conf.5.xml:840
+#: apt.conf.5.xml:832
 #, fuzzy
 #, fuzzy
 msgid "<literal>Debug::pkgDPkgPM</literal>"
 msgid "<literal>Debug::pkgDPkgPM</literal>"
 msgstr "Debug::pkgDPkgPM"
 msgstr "Debug::pkgDPkgPM"
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:843
+#: apt.conf.5.xml:835
 #, fuzzy
 #, fuzzy
 msgid ""
 msgid ""
 "When invoking &dpkg;, output the precise command line with which it is being "
 "When invoking &dpkg;, output the precise command line with which it is being "
@@ -7390,13 +7374,13 @@ msgstr ""
 "arguments sont séparés par des espaces."
 "arguments sont séparés par des espaces."
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt.conf.5.xml:851
+#: apt.conf.5.xml:843
 #, fuzzy
 #, fuzzy
 msgid "<literal>Debug::pkgDPkgProgressReporting</literal>"
 msgid "<literal>Debug::pkgDPkgProgressReporting</literal>"
 msgstr "Debug::pkgDPkgProgressReporting"
 msgstr "Debug::pkgDPkgProgressReporting"
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:854
+#: apt.conf.5.xml:846
 #, fuzzy
 #, fuzzy
 msgid ""
 msgid ""
 "Output all the data received from &dpkg; on the status file descriptor and "
 "Output all the data received from &dpkg; on the status file descriptor and "
@@ -7407,13 +7391,13 @@ msgstr ""
 "fichier."
 "fichier."
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt.conf.5.xml:861
+#: apt.conf.5.xml:853
 #, fuzzy
 #, fuzzy
 msgid "<literal>Debug::pkgOrderList</literal>"
 msgid "<literal>Debug::pkgOrderList</literal>"
 msgstr "Debug::pkgOrderList"
 msgstr "Debug::pkgOrderList"
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:865
+#: apt.conf.5.xml:857
 #, fuzzy
 #, fuzzy
 msgid ""
 msgid ""
 "Generate a trace of the algorithm that decides the order in which "
 "Generate a trace of the algorithm that decides the order in which "
@@ -7423,38 +7407,38 @@ msgstr ""
 "APT passe les paquets à &dpkg;."
 "APT passe les paquets à &dpkg;."
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt.conf.5.xml:873
+#: apt.conf.5.xml:865
 #, fuzzy
 #, fuzzy
 msgid "<literal>Debug::pkgPackageManager</literal>"
 msgid "<literal>Debug::pkgPackageManager</literal>"
 msgstr "Debug::pkgPackageManager"
 msgstr "Debug::pkgPackageManager"
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:877
+#: apt.conf.5.xml:869
 #, fuzzy
 #, fuzzy
 msgid ""
 msgid ""
 "Output status messages tracing the steps performed when invoking &dpkg;."
 "Output status messages tracing the steps performed when invoking &dpkg;."
 msgstr "Affiche le détail des opérations liées à l'invocation de &dpkg;."
 msgstr "Affiche le détail des opérations liées à l'invocation de &dpkg;."
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt.conf.5.xml:884
+#: apt.conf.5.xml:876
 #, fuzzy
 #, fuzzy
 msgid "<literal>Debug::pkgPolicy</literal>"
 msgid "<literal>Debug::pkgPolicy</literal>"
 msgstr "Debug::pkgPolicy"
 msgstr "Debug::pkgPolicy"
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:888
+#: apt.conf.5.xml:880
 #, fuzzy
 #, fuzzy
 msgid "Output the priority of each package list on startup."
 msgid "Output the priority of each package list on startup."
 msgstr "Au lancement, affiche la priorité de chaque liste de paquets."
 msgstr "Au lancement, affiche la priorité de chaque liste de paquets."
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt.conf.5.xml:894
+#: apt.conf.5.xml:886
 #, fuzzy
 #, fuzzy
 msgid "<literal>Debug::pkgProblemResolver</literal>"
 msgid "<literal>Debug::pkgProblemResolver</literal>"
 msgstr "Debug::pkgProblemResolver"
 msgstr "Debug::pkgProblemResolver"
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:898
+#: apt.conf.5.xml:890
 #, fuzzy
 #, fuzzy
 msgid ""
 msgid ""
 "Trace the execution of the dependency resolver (this applies only to what "
 "Trace the execution of the dependency resolver (this applies only to what "
@@ -7464,13 +7448,13 @@ msgstr ""
 "concerne que les cas où un problème de dépendances complexe se présente)."
 "concerne que les cas où un problème de dépendances complexe se présente)."
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt.conf.5.xml:906
+#: apt.conf.5.xml:898
 #, fuzzy
 #, fuzzy
 msgid "<literal>Debug::pkgProblemResolver::ShowScores</literal>"
 msgid "<literal>Debug::pkgProblemResolver::ShowScores</literal>"
 msgstr "Debug::pkgProblemResolver"
 msgstr "Debug::pkgProblemResolver"
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:909
+#: apt.conf.5.xml:901
 msgid ""
 msgid ""
 "Display a list of all installed packages with their calculated score used by "
 "Display a list of all installed packages with their calculated score used by "
 "the pkgProblemResolver. The description of the package is the same as "
 "the pkgProblemResolver. The description of the package is the same as "
@@ -7478,13 +7462,13 @@ msgid ""
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt.conf.5.xml:917
+#: apt.conf.5.xml:909
 #, fuzzy
 #, fuzzy
 msgid "<literal>Debug::sourceList</literal>"
 msgid "<literal>Debug::sourceList</literal>"
 msgstr "Debug::sourceList"
 msgstr "Debug::sourceList"
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:921
+#: apt.conf.5.xml:913
 #, fuzzy
 #, fuzzy
 msgid ""
 msgid ""
 "Print information about the vendors read from <filename>/etc/apt/vendors."
 "Print information about the vendors read from <filename>/etc/apt/vendors."
@@ -7494,7 +7478,7 @@ msgstr ""
 "list</filename>."
 "list</filename>."
 
 
 #. type: Content of: <refentry><refsect1><para>
 #. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:943
+#: apt.conf.5.xml:935
 #, fuzzy
 #, fuzzy
 msgid ""
 msgid ""
 "&configureindex; is a configuration file showing example values for all "
 "&configureindex; is a configuration file showing example values for all "
@@ -7504,7 +7488,7 @@ msgstr ""
 "exemples pour toutes les options existantes."
 "exemples pour toutes les options existantes."
 
 
 #. type: Content of: <refentry><refsect1><variablelist>
 #. type: Content of: <refentry><refsect1><variablelist>
-#: apt.conf.5.xml:950
+#: apt.conf.5.xml:942
 #, fuzzy
 #, fuzzy
 #| msgid "&apt-conf;"
 #| msgid "&apt-conf;"
 msgid "&file-aptconf;"
 msgid "&file-aptconf;"
@@ -7512,7 +7496,7 @@ msgstr "&apt-conf;"
 
 
 #.  ? reading apt.conf 
 #.  ? reading apt.conf 
 #. type: Content of: <refentry><refsect1><para>
 #. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:955
+#: apt.conf.5.xml:947
 #, fuzzy
 #, fuzzy
 msgid "&apt-cache;, &apt-config;, &apt-preferences;."
 msgid "&apt-cache;, &apt-config;, &apt-preferences;."
 msgstr "&apt-cache; &apt-conf;"
 msgstr "&apt-cache; &apt-conf;"

+ 89 - 105
doc/po/ja.po

@@ -6,7 +6,7 @@
 msgid ""
 msgid ""
 msgstr ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2009-09-15 22:56+0300\n"
+"POT-Creation-Date: 2009-09-18 16:44+0300\n"
 "PO-Revision-Date: 2009-07-30 22:55+0900\n"
 "PO-Revision-Date: 2009-07-30 22:55+0900\n"
 "Last-Translator: KURASAWA Nozomu <nabetaro@caldron.jp>\n"
 "Last-Translator: KURASAWA Nozomu <nabetaro@caldron.jp>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1928,7 +1928,7 @@ msgstr "&apt-commonoptions;"
 # type: Content of: <refentry><refsect1><title>
 # type: Content of: <refentry><refsect1><title>
 #. type: Content of: <refentry><refsect1><title>
 #. type: Content of: <refentry><refsect1><title>
 #: apt-cache.8.xml:358 apt-get.8.xml:559 apt-key.8.xml:138 apt-mark.8.xml:122
 #: apt-cache.8.xml:358 apt-get.8.xml:559 apt-key.8.xml:138 apt-mark.8.xml:122
-#: apt.conf.5.xml:948 apt_preferences.5.xml:615
+#: apt.conf.5.xml:940 apt_preferences.5.xml:615
 msgid "Files"
 msgid "Files"
 msgstr "ファイル"
 msgstr "ファイル"
 
 
@@ -1942,7 +1942,7 @@ msgstr ""
 #: apt-cache.8.xml:365 apt-cdrom.8.xml:155 apt-config.8.xml:103
 #: apt-cache.8.xml:365 apt-cdrom.8.xml:155 apt-config.8.xml:103
 #: apt-extracttemplates.1.xml:74 apt-ftparchive.1.xml:563 apt-get.8.xml:569
 #: apt-extracttemplates.1.xml:74 apt-ftparchive.1.xml:563 apt-get.8.xml:569
 #: apt-key.8.xml:162 apt-mark.8.xml:133 apt-secure.8.xml:181
 #: apt-key.8.xml:162 apt-mark.8.xml:133 apt-secure.8.xml:181
-#: apt-sortpkgs.1.xml:69 apt.conf.5.xml:954 apt_preferences.5.xml:622
+#: apt-sortpkgs.1.xml:69 apt.conf.5.xml:946 apt_preferences.5.xml:622
 #: sources.list.5.xml:221
 #: sources.list.5.xml:221
 msgid "See Also"
 msgid "See Also"
 msgstr "関連項目"
 msgstr "関連項目"
@@ -3630,7 +3630,7 @@ msgstr ""
 
 
 # type: Content of: <refentry><refsect1><title>
 # type: Content of: <refentry><refsect1><title>
 #. type: Content of: <refentry><refsect1><title>
 #. type: Content of: <refentry><refsect1><title>
-#: apt-ftparchive.1.xml:552 apt.conf.5.xml:942 apt_preferences.5.xml:462
+#: apt-ftparchive.1.xml:552 apt.conf.5.xml:934 apt_preferences.5.xml:462
 #: sources.list.5.xml:181
 #: sources.list.5.xml:181
 msgid "Examples"
 msgid "Examples"
 msgstr "サンプル"
 msgstr "サンプル"
@@ -6878,8 +6878,7 @@ msgid ""
 "DPkg::NoTriggers \"true\";\n"
 "DPkg::NoTriggers \"true\";\n"
 "PackageManager::Configure \"smart\";\n"
 "PackageManager::Configure \"smart\";\n"
 "DPkg::ConfigurePending \"true\";\n"
 "DPkg::ConfigurePending \"true\";\n"
-"DPkg::TriggersPending \"true\";\n"
-"OrderList::Score::Immediate 100;"
+"DPkg::TriggersPending \"true\";"
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><refsect2><para>
 #. type: Content of: <refentry><refsect1><refsect2><para>
@@ -6897,12 +6896,12 @@ msgid ""
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
-#: apt.conf.5.xml:491
+#: apt.conf.5.xml:490
 msgid "DPkg::NoTriggers"
 msgid "DPkg::NoTriggers"
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:492
+#: apt.conf.5.xml:491
 msgid ""
 msgid ""
 "Add the no triggers flag to all dpkg calls (expect the ConfigurePending "
 "Add the no triggers flag to all dpkg calls (expect the ConfigurePending "
 "call).  See &dpkg; if you are interested in what this actually means. In "
 "call).  See &dpkg; if you are interested in what this actually means. In "
@@ -6915,14 +6914,14 @@ msgstr ""
 
 
 # type: <tag></tag>
 # type: <tag></tag>
 #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
-#: apt.conf.5.xml:499
+#: apt.conf.5.xml:498
 #, fuzzy
 #, fuzzy
 #| msgid "Packages::Compress"
 #| msgid "Packages::Compress"
 msgid "PackageManager::Configure"
 msgid "PackageManager::Configure"
 msgstr "Packages::Compress"
 msgstr "Packages::Compress"
 
 
 #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:500
+#: apt.conf.5.xml:499
 msgid ""
 msgid ""
 "Valid values are \"<literal>all</literal>\", \"<literal>smart</literal>\" "
 "Valid values are \"<literal>all</literal>\", \"<literal>smart</literal>\" "
 "and \"<literal>no</literal>\".  \"<literal>all</literal>\" is the default "
 "and \"<literal>no</literal>\".  \"<literal>all</literal>\" is the default "
@@ -6939,13 +6938,13 @@ msgstr ""
 
 
 # type: Content of: <refentry><refsect1><title>
 # type: Content of: <refentry><refsect1><title>
 #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
-#: apt.conf.5.xml:510
+#: apt.conf.5.xml:509
 #, fuzzy
 #, fuzzy
 msgid "DPkg::ConfigurePending"
 msgid "DPkg::ConfigurePending"
 msgstr "ユーザの設定"
 msgstr "ユーザの設定"
 
 
 #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:511
+#: apt.conf.5.xml:510
 msgid ""
 msgid ""
 "If this option is set apt will call <command>dpkg --configure --pending</"
 "If this option is set apt will call <command>dpkg --configure --pending</"
 "command> to let dpkg handle all required configurations and triggers. This "
 "command> to let dpkg handle all required configurations and triggers. This "
@@ -6956,43 +6955,28 @@ msgid ""
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
-#: apt.conf.5.xml:517
+#: apt.conf.5.xml:516
 msgid "DPkg::TriggersPending"
 msgid "DPkg::TriggersPending"
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:518
+#: apt.conf.5.xml:517
 msgid ""
 msgid ""
 "Useful for <literal>smart</literal> configuration as a package which has "
 "Useful for <literal>smart</literal> configuration as a package which has "
-"pending triggers is not considered as <literal>installed</literal> and dpkg "
-"treats them as <literal>unpacked</literal> currently which is a dealbreaker "
-"for Pre-Dependencies (see debbugs #526774). Note that this will process all "
-"triggers, not only the triggers needed to configure this package."
-msgstr ""
-
-#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
-#: apt.conf.5.xml:523
-msgid "Dpkg::NoConfTriggers"
-msgstr ""
-
-#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:524
-msgid ""
-"DPkg currently will ignore the --triggers or --no-triggers flag if the "
-"trigger is already pending. This option therefore has no real effect as long "
-"as dpkg doesn't change his behavior. The option is automatical activated if "
-"<literal>DPkg::NoTriggers</literal> is activated. You should use "
-"<literal>DPkg::TriggersPending</literal> to take care of these pending "
-"triggers."
+"pending triggers is not considered as \"<literal>installed</literal>\" and "
+"dpkg treats them as \"<literal>unpacked</literal>\" currently which is a "
+"dealbreaker for Pre-Dependencies (see also debbugs #526774). Note that this "
+"will process all triggers, not only the triggers needed to configure this "
+"package."
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
-#: apt.conf.5.xml:530
+#: apt.conf.5.xml:522
 msgid "PackageManager::UnpackAll"
 msgid "PackageManager::UnpackAll"
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:531
+#: apt.conf.5.xml:523
 msgid ""
 msgid ""
 "As the configuration can be deferred to be done at the end by dpkg it can be "
 "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-"
 "tried to order the unpack series only by critical needs, e.g. by Pre-"
@@ -7004,12 +6988,12 @@ msgid ""
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term>
-#: apt.conf.5.xml:538
+#: apt.conf.5.xml:530
 msgid "OrderList::Score::Immediate"
 msgid "OrderList::Score::Immediate"
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para><literallayout>
 #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para><literallayout>
-#: apt.conf.5.xml:546
+#: apt.conf.5.xml:538
 #, no-wrap
 #, no-wrap
 msgid ""
 msgid ""
 "OrderList::Score {\n"
 "OrderList::Score {\n"
@@ -7021,7 +7005,7 @@ msgid ""
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:539
+#: apt.conf.5.xml:531
 msgid ""
 msgid ""
 "Essential packages (and there dependencies) should be configured immediately "
 "Essential packages (and there dependencies) should be configured immediately "
 "after unpacking. It will be a good idea to do this quite early in the "
 "after unpacking. It will be a good idea to do this quite early in the "
@@ -7035,12 +7019,12 @@ msgid ""
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><title>
 #. type: Content of: <refentry><refsect1><title>
-#: apt.conf.5.xml:559
+#: apt.conf.5.xml:551
 msgid "Periodic and Archives options"
 msgid "Periodic and Archives options"
 msgstr "Periodic オプションと Archives オプション"
 msgstr "Periodic オプションと Archives オプション"
 
 
 #. type: Content of: <refentry><refsect1><para>
 #. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:560
+#: apt.conf.5.xml:552
 msgid ""
 msgid ""
 "<literal>APT::Periodic</literal> and <literal>APT::Archives</literal> groups "
 "<literal>APT::Periodic</literal> and <literal>APT::Archives</literal> groups "
 "of options configure behavior of apt periodic updates, which is done by "
 "of options configure behavior of apt periodic updates, which is done by "
@@ -7054,12 +7038,12 @@ msgstr ""
 
 
 # type: Content of: <refentry><refsect1><title>
 # type: Content of: <refentry><refsect1><title>
 #. type: Content of: <refentry><refsect1><title>
 #. type: Content of: <refentry><refsect1><title>
-#: apt.conf.5.xml:568
+#: apt.conf.5.xml:560
 msgid "Debug options"
 msgid "Debug options"
 msgstr "デバッグオプション"
 msgstr "デバッグオプション"
 
 
 #. type: Content of: <refentry><refsect1><para>
 #. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:570
+#: apt.conf.5.xml:562
 msgid ""
 msgid ""
 "Enabling options in the <literal>Debug::</literal> section will cause "
 "Enabling options in the <literal>Debug::</literal> section will cause "
 "debugging information to be sent to the standard error stream of the program "
 "debugging information to be sent to the standard error stream of the program "
@@ -7070,7 +7054,7 @@ msgid ""
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
 #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
-#: apt.conf.5.xml:581
+#: apt.conf.5.xml:573
 msgid ""
 msgid ""
 "<literal>Debug::pkgProblemResolver</literal> enables output about the "
 "<literal>Debug::pkgProblemResolver</literal> enables output about the "
 "decisions made by <literal>dist-upgrade, upgrade, install, remove, purge</"
 "decisions made by <literal>dist-upgrade, upgrade, install, remove, purge</"
@@ -7081,7 +7065,7 @@ msgstr ""
 "にします。"
 "にします。"
 
 
 #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
 #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
-#: apt.conf.5.xml:589
+#: apt.conf.5.xml:581
 msgid ""
 msgid ""
 "<literal>Debug::NoLocking</literal> disables all file locking.  This can be "
 "<literal>Debug::NoLocking</literal> disables all file locking.  This can be "
 "used to run some operations (for instance, <literal>apt-get -s install</"
 "used to run some operations (for instance, <literal>apt-get -s install</"
@@ -7092,7 +7076,7 @@ msgstr ""
 "literal>) を行う場合に使用します。"
 "literal>) を行う場合に使用します。"
 
 
 #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
 #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
-#: apt.conf.5.xml:598
+#: apt.conf.5.xml:590
 msgid ""
 msgid ""
 "<literal>Debug::pkgDPkgPM</literal> prints out the actual command line each "
 "<literal>Debug::pkgDPkgPM</literal> prints out the actual command line each "
 "time that <literal>apt</literal> invokes &dpkg;."
 "time that <literal>apt</literal> invokes &dpkg;."
@@ -7102,66 +7086,66 @@ msgstr ""
 #. 	   motivating example, except I haven't a clue why you'd want
 #. 	   motivating example, except I haven't a clue why you'd want
 #. 	   to do this. 
 #. 	   to do this. 
 #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
 #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para>
-#: apt.conf.5.xml:606
+#: apt.conf.5.xml:598
 msgid ""
 msgid ""
 "<literal>Debug::IdentCdrom</literal> disables the inclusion of statfs data "
 "<literal>Debug::IdentCdrom</literal> disables the inclusion of statfs data "
 "in CDROM IDs."
 "in CDROM IDs."
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><para>
 #. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:616
+#: apt.conf.5.xml:608
 msgid "A full list of debugging options to apt follows."
 msgid "A full list of debugging options to apt follows."
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt.conf.5.xml:621
+#: apt.conf.5.xml:613
 msgid "<literal>Debug::Acquire::cdrom</literal>"
 msgid "<literal>Debug::Acquire::cdrom</literal>"
 msgstr "<literal>Debug::Acquire::cdrom</literal>"
 msgstr "<literal>Debug::Acquire::cdrom</literal>"
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:625
+#: apt.conf.5.xml:617
 msgid ""
 msgid ""
 "Print information related to accessing <literal>cdrom://</literal> sources."
 "Print information related to accessing <literal>cdrom://</literal> sources."
 msgstr ""
 msgstr ""
 "<literal>cdrom://</literal> ソースへのアクセスに関する情報を出力します。"
 "<literal>cdrom://</literal> ソースへのアクセスに関する情報を出力します。"
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt.conf.5.xml:632
+#: apt.conf.5.xml:624
 msgid "<literal>Debug::Acquire::ftp</literal>"
 msgid "<literal>Debug::Acquire::ftp</literal>"
 msgstr "<literal>Debug::Acquire::ftp</literal>"
 msgstr "<literal>Debug::Acquire::ftp</literal>"
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:636
+#: apt.conf.5.xml:628
 msgid "Print information related to downloading packages using FTP."
 msgid "Print information related to downloading packages using FTP."
 msgstr "FTP を用いたパッケージのダウンロードに関する情報を出力します。"
 msgstr "FTP を用いたパッケージのダウンロードに関する情報を出力します。"
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt.conf.5.xml:643
+#: apt.conf.5.xml:635
 msgid "<literal>Debug::Acquire::http</literal>"
 msgid "<literal>Debug::Acquire::http</literal>"
 msgstr "<literal>Debug::Acquire::http</literal>"
 msgstr "<literal>Debug::Acquire::http</literal>"
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:647
+#: apt.conf.5.xml:639
 msgid "Print information related to downloading packages using HTTP."
 msgid "Print information related to downloading packages using HTTP."
 msgstr "HTTP を用いたパッケージのダウンロードに関する情報を出力します。"
 msgstr "HTTP を用いたパッケージのダウンロードに関する情報を出力します。"
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt.conf.5.xml:654
+#: apt.conf.5.xml:646
 msgid "<literal>Debug::Acquire::https</literal>"
 msgid "<literal>Debug::Acquire::https</literal>"
 msgstr "<literal>Debug::Acquire::https</literal>"
 msgstr "<literal>Debug::Acquire::https</literal>"
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:658
+#: apt.conf.5.xml:650
 msgid "Print information related to downloading packages using HTTPS."
 msgid "Print information related to downloading packages using HTTPS."
 msgstr "HTTPS を用いたパッケージのダウンロードに関する情報を出力します。"
 msgstr "HTTPS を用いたパッケージのダウンロードに関する情報を出力します。"
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt.conf.5.xml:665
+#: apt.conf.5.xml:657
 msgid "<literal>Debug::Acquire::gpgv</literal>"
 msgid "<literal>Debug::Acquire::gpgv</literal>"
 msgstr "<literal>Debug::Acquire::gpgv</literal>"
 msgstr "<literal>Debug::Acquire::gpgv</literal>"
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:669
+#: apt.conf.5.xml:661
 msgid ""
 msgid ""
 "Print information related to verifying cryptographic signatures using "
 "Print information related to verifying cryptographic signatures using "
 "<literal>gpg</literal>."
 "<literal>gpg</literal>."
@@ -7169,46 +7153,46 @@ msgstr ""
 "<literal>gpg</literal> を用いた暗号署名の検証に関する情報を出力します。"
 "<literal>gpg</literal> を用いた暗号署名の検証に関する情報を出力します。"
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt.conf.5.xml:676
+#: apt.conf.5.xml:668
 msgid "<literal>Debug::aptcdrom</literal>"
 msgid "<literal>Debug::aptcdrom</literal>"
 msgstr "<literal>Debug::aptcdrom</literal>"
 msgstr "<literal>Debug::aptcdrom</literal>"
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:680
+#: apt.conf.5.xml:672
 msgid ""
 msgid ""
 "Output information about the process of accessing collections of packages "
 "Output information about the process of accessing collections of packages "
 "stored on CD-ROMs."
 "stored on CD-ROMs."
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt.conf.5.xml:687
+#: apt.conf.5.xml:679
 msgid "<literal>Debug::BuildDeps</literal>"
 msgid "<literal>Debug::BuildDeps</literal>"
 msgstr "<literal>Debug::BuildDeps</literal>"
 msgstr "<literal>Debug::BuildDeps</literal>"
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:690
+#: apt.conf.5.xml:682
 msgid "Describes the process of resolving build-dependencies in &apt-get;."
 msgid "Describes the process of resolving build-dependencies in &apt-get;."
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt.conf.5.xml:697
+#: apt.conf.5.xml:689
 msgid "<literal>Debug::Hashes</literal>"
 msgid "<literal>Debug::Hashes</literal>"
 msgstr "<literal>Debug::Hashes</literal>"
 msgstr "<literal>Debug::Hashes</literal>"
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:700
+#: apt.conf.5.xml:692
 msgid ""
 msgid ""
 "Output each cryptographic hash that is generated by the <literal>apt</"
 "Output each cryptographic hash that is generated by the <literal>apt</"
 "literal> libraries."
 "literal> libraries."
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt.conf.5.xml:707
+#: apt.conf.5.xml:699
 msgid "<literal>Debug::IdentCDROM</literal>"
 msgid "<literal>Debug::IdentCDROM</literal>"
 msgstr "<literal>Debug::IdentCDROM</literal>"
 msgstr "<literal>Debug::IdentCDROM</literal>"
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:710
+#: apt.conf.5.xml:702
 msgid ""
 msgid ""
 "Do not include information from <literal>statfs</literal>, namely the number "
 "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 "
 "of used and free blocks on the CD-ROM filesystem, when generating an ID for "
@@ -7216,93 +7200,93 @@ msgid ""
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt.conf.5.xml:718
+#: apt.conf.5.xml:710
 msgid "<literal>Debug::NoLocking</literal>"
 msgid "<literal>Debug::NoLocking</literal>"
 msgstr "<literal>Debug::NoLocking</literal>"
 msgstr "<literal>Debug::NoLocking</literal>"
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:721
+#: apt.conf.5.xml:713
 msgid ""
 msgid ""
 "Disable all file locking.  For instance, this will allow two instances of "
 "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."
 "<quote><literal>apt-get update</literal></quote> to run at the same time."
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt.conf.5.xml:729
+#: apt.conf.5.xml:721
 msgid "<literal>Debug::pkgAcquire</literal>"
 msgid "<literal>Debug::pkgAcquire</literal>"
 msgstr "<literal>Debug::pkgAcquire</literal>"
 msgstr "<literal>Debug::pkgAcquire</literal>"
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:733
+#: apt.conf.5.xml:725
 msgid "Log when items are added to or removed from the global download queue."
 msgid "Log when items are added to or removed from the global download queue."
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt.conf.5.xml:740
+#: apt.conf.5.xml:732
 msgid "<literal>Debug::pkgAcquire::Auth</literal>"
 msgid "<literal>Debug::pkgAcquire::Auth</literal>"
 msgstr "<literal>Debug::pkgAcquire::Auth</literal>"
 msgstr "<literal>Debug::pkgAcquire::Auth</literal>"
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:743
+#: apt.conf.5.xml:735
 msgid ""
 msgid ""
 "Output status messages and errors related to verifying checksums and "
 "Output status messages and errors related to verifying checksums and "
 "cryptographic signatures of downloaded files."
 "cryptographic signatures of downloaded files."
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt.conf.5.xml:750
+#: apt.conf.5.xml:742
 msgid "<literal>Debug::pkgAcquire::Diffs</literal>"
 msgid "<literal>Debug::pkgAcquire::Diffs</literal>"
 msgstr "<literal>Debug::pkgAcquire::Diffs</literal>"
 msgstr "<literal>Debug::pkgAcquire::Diffs</literal>"
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:753
+#: apt.conf.5.xml:745
 msgid ""
 msgid ""
 "Output information about downloading and applying package index list diffs, "
 "Output information about downloading and applying package index list diffs, "
 "and errors relating to package index list diffs."
 "and errors relating to package index list diffs."
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt.conf.5.xml:761
+#: apt.conf.5.xml:753
 msgid "<literal>Debug::pkgAcquire::RRed</literal>"
 msgid "<literal>Debug::pkgAcquire::RRed</literal>"
 msgstr "<literal>Debug::pkgAcquire::RRed</literal>"
 msgstr "<literal>Debug::pkgAcquire::RRed</literal>"
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:765
+#: apt.conf.5.xml:757
 msgid ""
 msgid ""
 "Output information related to patching apt package lists when downloading "
 "Output information related to patching apt package lists when downloading "
 "index diffs instead of full indices."
 "index diffs instead of full indices."
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt.conf.5.xml:772
+#: apt.conf.5.xml:764
 msgid "<literal>Debug::pkgAcquire::Worker</literal>"
 msgid "<literal>Debug::pkgAcquire::Worker</literal>"
 msgstr "<literal>Debug::pkgAcquire::Worker</literal>"
 msgstr "<literal>Debug::pkgAcquire::Worker</literal>"
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:776
+#: apt.conf.5.xml:768
 msgid ""
 msgid ""
 "Log all interactions with the sub-processes that actually perform downloads."
 "Log all interactions with the sub-processes that actually perform downloads."
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt.conf.5.xml:783
+#: apt.conf.5.xml:775
 msgid "<literal>Debug::pkgAutoRemove</literal>"
 msgid "<literal>Debug::pkgAutoRemove</literal>"
 msgstr "<literal>Debug::pkgAutoRemove</literal>"
 msgstr "<literal>Debug::pkgAutoRemove</literal>"
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:787
+#: apt.conf.5.xml:779
 msgid ""
 msgid ""
 "Log events related to the automatically-installed status of packages and to "
 "Log events related to the automatically-installed status of packages and to "
 "the removal of unused packages."
 "the removal of unused packages."
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt.conf.5.xml:794
+#: apt.conf.5.xml:786
 msgid "<literal>Debug::pkgDepCache::AutoInstall</literal>"
 msgid "<literal>Debug::pkgDepCache::AutoInstall</literal>"
 msgstr "<literal>Debug::pkgDepCache::AutoInstall</literal>"
 msgstr "<literal>Debug::pkgDepCache::AutoInstall</literal>"
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:797
+#: apt.conf.5.xml:789
 msgid ""
 msgid ""
 "Generate debug messages describing which packages are being automatically "
 "Generate debug messages describing which packages are being automatically "
 "installed to resolve dependencies.  This corresponds to the initial auto-"
 "installed to resolve dependencies.  This corresponds to the initial auto-"
@@ -7312,12 +7296,12 @@ msgid ""
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt.conf.5.xml:808
+#: apt.conf.5.xml:800
 msgid "<literal>Debug::pkgDepCache::Marker</literal>"
 msgid "<literal>Debug::pkgDepCache::Marker</literal>"
 msgstr "<literal>Debug::pkgDepCache::Marker</literal>"
 msgstr "<literal>Debug::pkgDepCache::Marker</literal>"
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:811
+#: apt.conf.5.xml:803
 msgid ""
 msgid ""
 "Generate debug messages describing which package is marked as keep/install/"
 "Generate debug messages describing which package is marked as keep/install/"
 "remove while the ProblemResolver does his work.  Each addition or deletion "
 "remove while the ProblemResolver does his work.  Each addition or deletion "
@@ -7334,91 +7318,91 @@ msgid ""
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt.conf.5.xml:830
+#: apt.conf.5.xml:822
 msgid "<literal>Debug::pkgInitConfig</literal>"
 msgid "<literal>Debug::pkgInitConfig</literal>"
 msgstr "<literal>Debug::pkgInitConfig</literal>"
 msgstr "<literal>Debug::pkgInitConfig</literal>"
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:833
+#: apt.conf.5.xml:825
 msgid "Dump the default configuration to standard error on startup."
 msgid "Dump the default configuration to standard error on startup."
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt.conf.5.xml:840
+#: apt.conf.5.xml:832
 msgid "<literal>Debug::pkgDPkgPM</literal>"
 msgid "<literal>Debug::pkgDPkgPM</literal>"
 msgstr "<literal>Debug::pkgDPkgPM</literal>"
 msgstr "<literal>Debug::pkgDPkgPM</literal>"
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:843
+#: apt.conf.5.xml:835
 msgid ""
 msgid ""
 "When invoking &dpkg;, output the precise command line with which it is being "
 "When invoking &dpkg;, output the precise command line with which it is being "
 "invoked, with arguments separated by a single space character."
 "invoked, with arguments separated by a single space character."
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt.conf.5.xml:851
+#: apt.conf.5.xml:843
 msgid "<literal>Debug::pkgDPkgProgressReporting</literal>"
 msgid "<literal>Debug::pkgDPkgProgressReporting</literal>"
 msgstr "<literal>Debug::pkgDPkgProgressReporting</literal>"
 msgstr "<literal>Debug::pkgDPkgProgressReporting</literal>"
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:854
+#: apt.conf.5.xml:846
 msgid ""
 msgid ""
 "Output all the data received from &dpkg; on the status file descriptor and "
 "Output all the data received from &dpkg; on the status file descriptor and "
 "any errors encountered while parsing it."
 "any errors encountered while parsing it."
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt.conf.5.xml:861
+#: apt.conf.5.xml:853
 msgid "<literal>Debug::pkgOrderList</literal>"
 msgid "<literal>Debug::pkgOrderList</literal>"
 msgstr "<literal>Debug::pkgOrderList</literal>"
 msgstr "<literal>Debug::pkgOrderList</literal>"
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:865
+#: apt.conf.5.xml:857
 msgid ""
 msgid ""
 "Generate a trace of the algorithm that decides the order in which "
 "Generate a trace of the algorithm that decides the order in which "
 "<literal>apt</literal> should pass packages to &dpkg;."
 "<literal>apt</literal> should pass packages to &dpkg;."
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt.conf.5.xml:873
+#: apt.conf.5.xml:865
 msgid "<literal>Debug::pkgPackageManager</literal>"
 msgid "<literal>Debug::pkgPackageManager</literal>"
 msgstr "<literal>Debug::pkgPackageManager</literal>"
 msgstr "<literal>Debug::pkgPackageManager</literal>"
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:877
+#: apt.conf.5.xml:869
 msgid ""
 msgid ""
 "Output status messages tracing the steps performed when invoking &dpkg;."
 "Output status messages tracing the steps performed when invoking &dpkg;."
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt.conf.5.xml:884
+#: apt.conf.5.xml:876
 msgid "<literal>Debug::pkgPolicy</literal>"
 msgid "<literal>Debug::pkgPolicy</literal>"
 msgstr "<literal>Debug::pkgPolicy</literal>"
 msgstr "<literal>Debug::pkgPolicy</literal>"
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:888
+#: apt.conf.5.xml:880
 msgid "Output the priority of each package list on startup."
 msgid "Output the priority of each package list on startup."
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt.conf.5.xml:894
+#: apt.conf.5.xml:886
 msgid "<literal>Debug::pkgProblemResolver</literal>"
 msgid "<literal>Debug::pkgProblemResolver</literal>"
 msgstr "<literal>Debug::pkgProblemResolver</literal>"
 msgstr "<literal>Debug::pkgProblemResolver</literal>"
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:898
+#: apt.conf.5.xml:890
 msgid ""
 msgid ""
 "Trace the execution of the dependency resolver (this applies only to what "
 "Trace the execution of the dependency resolver (this applies only to what "
 "happens when a complex dependency problem is encountered)."
 "happens when a complex dependency problem is encountered)."
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt.conf.5.xml:906
+#: apt.conf.5.xml:898
 msgid "<literal>Debug::pkgProblemResolver::ShowScores</literal>"
 msgid "<literal>Debug::pkgProblemResolver::ShowScores</literal>"
 msgstr "<literal>Debug::pkgProblemResolver::ShowScores</literal>"
 msgstr "<literal>Debug::pkgProblemResolver::ShowScores</literal>"
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:909
+#: apt.conf.5.xml:901
 msgid ""
 msgid ""
 "Display a list of all installed packages with their calculated score used by "
 "Display a list of all installed packages with their calculated score used by "
 "the pkgProblemResolver. The description of the package is the same as "
 "the pkgProblemResolver. The description of the package is the same as "
@@ -7426,12 +7410,12 @@ msgid ""
 msgstr ""
 msgstr ""
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term>
-#: apt.conf.5.xml:917
+#: apt.conf.5.xml:909
 msgid "<literal>Debug::sourceList</literal>"
 msgid "<literal>Debug::sourceList</literal>"
 msgstr "<literal>Debug::sourceList</literal>"
 msgstr "<literal>Debug::sourceList</literal>"
 
 
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
 #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para>
-#: apt.conf.5.xml:921
+#: apt.conf.5.xml:913
 msgid ""
 msgid ""
 "Print information about the vendors read from <filename>/etc/apt/vendors."
 "Print information about the vendors read from <filename>/etc/apt/vendors."
 "list</filename>."
 "list</filename>."
@@ -7439,7 +7423,7 @@ msgstr ""
 
 
 # type: Content of: <refentry><refsect1><para>
 # type: Content of: <refentry><refsect1><para>
 #. type: Content of: <refentry><refsect1><para>
 #. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:943
+#: apt.conf.5.xml:935
 msgid ""
 msgid ""
 "&configureindex; is a configuration file showing example values for all "
 "&configureindex; is a configuration file showing example values for all "
 "possible options."
 "possible options."
@@ -7449,7 +7433,7 @@ msgstr ""
 
 
 # type: Content of: <refentry><refsect1><para>
 # type: Content of: <refentry><refsect1><para>
 #. type: Content of: <refentry><refsect1><variablelist>
 #. type: Content of: <refentry><refsect1><variablelist>
-#: apt.conf.5.xml:950
+#: apt.conf.5.xml:942
 #, fuzzy
 #, fuzzy
 #| msgid "&apt-conf;"
 #| msgid "&apt-conf;"
 msgid "&file-aptconf;"
 msgid "&file-aptconf;"
@@ -7458,7 +7442,7 @@ msgstr "&apt-conf;"
 # type: Content of: <refentry><refsect1><para>
 # type: Content of: <refentry><refsect1><para>
 #.  ? reading apt.conf 
 #.  ? reading apt.conf 
 #. type: Content of: <refentry><refsect1><para>
 #. type: Content of: <refentry><refsect1><para>
-#: apt.conf.5.xml:955
+#: apt.conf.5.xml:947
 msgid "&apt-cache;, &apt-config;, &apt-preferences;."
 msgid "&apt-cache;, &apt-config;, &apt-preferences;."
 msgstr "&apt-cache;, &apt-config;, &apt-preferences;."
 msgstr "&apt-cache;, &apt-config;, &apt-preferences;."