]> git.saurik.com Git - apt.git/commitdiff
* build-depend on libdb4.3 now, fix for kFreeBSD (#317718)
authorMichael Vogt <michael.vogt@ubuntu.com>
Mon, 28 Nov 2005 22:27:06 +0000 (22:27 +0000)
committerMichael Vogt <michael.vogt@ubuntu.com>
Mon, 28 Nov 2005 22:27:06 +0000 (22:27 +0000)
34 files changed:
debian/changelog
debian/control
methods/http.cc
po/apt-all.pot
po/bs.po
po/ca.po
po/cs.po
po/da.po
po/de.po
po/el.po
po/en_GB.po
po/es.po
po/eu.po
po/fi.po
po/fr.po
po/he.po
po/hu.po
po/it.po
po/ja.po
po/ko.po
po/nb.po
po/nl.po
po/nn.po
po/pl.po
po/pt.po
po/pt_BR.po
po/ro.po
po/ru.po
po/sk.po
po/sl.po
po/sv.po
po/tl.po
po/zh_CN.po
po/zh_TW.po

index f7788534e884d87da205f932de9c94e52294772c..7745add68f18ff7741b8dac6f478034750c261d8 100644 (file)
@@ -13,6 +13,8 @@ apt (0.6.43) unstable; urgency=medium
   * included lots of the speedup changes from #319377
   * add stdint.h to contrib/md5.h (closes: #340448)
   * ABI change, library name changed (closes: #339147)
   * included lots of the speedup changes from #319377
   * add stdint.h to contrib/md5.h (closes: #340448)
   * ABI change, library name changed (closes: #339147)
+  * Fix GNU/kFreeBSD crash on non-existing server file (closes: #317718)
+  * switch to libdb4.3 in build-depends
   
  -- Michael Vogt <michael.vogt@ubuntu.com>  Fri, 25 Nov 2005 11:22:31 +0100
 
   
  -- Michael Vogt <michael.vogt@ubuntu.com>  Fri, 25 Nov 2005 11:22:31 +0100
 
index 4aa7b5aa26ad32fd47bb0d0df9a0ed635125da29..5c76a90ebb63aea4085ac494009788bcd1ad41c4 100644 (file)
@@ -4,7 +4,7 @@ Priority: important
 Maintainer: APT Development Team <deity@lists.debian.org>
 Uploaders: Jason Gunthorpe <jgg@debian.org>, Adam Heath <doogie@debian.org>, Matt Zimmerman <mdz@debian.org>, Michael Vogt <mvo@debian.org>
 Standards-Version: 3.6.1
 Maintainer: APT Development Team <deity@lists.debian.org>
 Uploaders: Jason Gunthorpe <jgg@debian.org>, Adam Heath <doogie@debian.org>, Matt Zimmerman <mdz@debian.org>, Michael Vogt <mvo@debian.org>
 Standards-Version: 3.6.1
-Build-Depends: debhelper (>= 4.1.62), libdb4.2-dev, gettext (>= 0.12)
+Build-Depends: debhelper (>= 4.1.62), libdb4.3-dev, gettext (>= 0.12)
 Build-Depends-Indep: debiandoc-sgml, docbook-utils (>= 0.6.12-1)
 
 Package: apt
 Build-Depends-Indep: debiandoc-sgml, docbook-utils (>= 0.6.12-1)
 
 Package: apt
index a5c9601e7c208471cc8952d156dedb923c8a15fe..dc3f0b7639f7d5f34530b65a1adea7bb5b0eddcc 100644 (file)
@@ -824,7 +824,10 @@ bool HttpMethod::Flush(ServerState *Srv)
 {
    if (File != 0)
    {
 {
    if (File != 0)
    {
-      SetNonBlock(File->Fd(),false);
+      // on GNU/kFreeBSD, apt dies on /dev/null because non-blocking
+      // can't be set
+      if (File->Name() != "/dev/null")
+        SetNonBlock(File->Fd(),false);
       if (Srv->In.WriteSpace() == false)
         return true;
       
       if (Srv->In.WriteSpace() == false)
         return true;
       
@@ -852,7 +855,10 @@ bool HttpMethod::ServerDie(ServerState *Srv)
    // Dump the buffer to the file
    if (Srv->State == ServerState::Data)
    {
    // Dump the buffer to the file
    if (Srv->State == ServerState::Data)
    {
-      SetNonBlock(File->Fd(),false);
+      // on GNU/kFreeBSD, apt dies on /dev/null because non-blocking
+      // can't be set
+      if (File->Name() != "/dev/null")
+        SetNonBlock(File->Fd(),false);
       while (Srv->In.WriteSpace() == true)
       {
         if (Srv->In.Write(File->Fd()) == false)
       while (Srv->In.WriteSpace() == true)
       {
         if (Srv->In.Write(File->Fd()) == false)
index f474c6a41d6a268ffefe1781b70103d260cdc17b..b57c993492127d41bbd61fdb75da202a53a1c9a8 100644 (file)
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2005-11-23 00:39+0100\n"
+"POT-Creation-Date: 2005-11-28 23:02+0100\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1609,7 +1609,7 @@ msgstr ""
 msgid "Unable to accept connection"
 msgstr ""
 
 msgid "Unable to accept connection"
 msgstr ""
 
-#: methods/ftp.cc:864 methods/http.cc:957 methods/rsh.cc:303
+#: methods/ftp.cc:864 methods/http.cc:963 methods/rsh.cc:303
 msgid "Problem hashing file"
 msgstr ""
 
 msgid "Problem hashing file"
 msgstr ""
 
@@ -1784,31 +1784,31 @@ msgstr ""
 msgid "Error writing to output file"
 msgstr ""
 
 msgid "Error writing to output file"
 msgstr ""
 
-#: methods/http.cc:834
+#: methods/http.cc:837
 msgid "Error writing to file"
 msgstr ""
 
 msgid "Error writing to file"
 msgstr ""
 
-#: methods/http.cc:859
+#: methods/http.cc:865
 msgid "Error writing to the file"
 msgstr ""
 
 msgid "Error writing to the file"
 msgstr ""
 
-#: methods/http.cc:873
+#: methods/http.cc:879
 msgid "Error reading from server. Remote end closed connection"
 msgstr ""
 
 msgid "Error reading from server. Remote end closed connection"
 msgstr ""
 
-#: methods/http.cc:875
+#: methods/http.cc:881
 msgid "Error reading from server"
 msgstr ""
 
 msgid "Error reading from server"
 msgstr ""
 
-#: methods/http.cc:1106
+#: methods/http.cc:1112
 msgid "Bad header data"
 msgstr ""
 
 msgid "Bad header data"
 msgstr ""
 
-#: methods/http.cc:1123
+#: methods/http.cc:1129
 msgid "Connection failed"
 msgstr ""
 
 msgid "Connection failed"
 msgstr ""
 
-#: methods/http.cc:1214
+#: methods/http.cc:1220
 msgid "Internal error"
 msgstr ""
 
 msgid "Internal error"
 msgstr ""
 
index b928190a832341cc4a6f5d14ed7521db54337cfe..d0f5d5cc885572561fe5ca06f4c5f68ef6ba14b9 100644 (file)
--- a/po/bs.po
+++ b/po/bs.po
@@ -6,7 +6,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: apt 0.5.26\n"
 "Report-Msgid-Bugs-To: \n"
 msgstr ""
 "Project-Id-Version: apt 0.5.26\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2005-11-23 00:39+0100\n"
+"POT-Creation-Date: 2005-11-28 23:02+0100\n"
 "PO-Revision-Date: 2004-05-06 15:25+0100\n"
 "Last-Translator: Safir Šećerović <sapphire@linux.org.ba>\n"
 "Language-Team: Bosnian <lokal@lugbih.org>\n"
 "PO-Revision-Date: 2004-05-06 15:25+0100\n"
 "Last-Translator: Safir Šećerović <sapphire@linux.org.ba>\n"
 "Language-Team: Bosnian <lokal@lugbih.org>\n"
@@ -1627,7 +1627,7 @@ msgstr ""
 msgid "Unable to accept connection"
 msgstr ""
 
 msgid "Unable to accept connection"
 msgstr ""
 
-#: methods/ftp.cc:864 methods/http.cc:957 methods/rsh.cc:303
+#: methods/ftp.cc:864 methods/http.cc:963 methods/rsh.cc:303
 msgid "Problem hashing file"
 msgstr ""
 
 msgid "Problem hashing file"
 msgstr ""
 
@@ -1803,31 +1803,31 @@ msgstr ""
 msgid "Error writing to output file"
 msgstr ""
 
 msgid "Error writing to output file"
 msgstr ""
 
-#: methods/http.cc:834
+#: methods/http.cc:837
 msgid "Error writing to file"
 msgstr ""
 
 msgid "Error writing to file"
 msgstr ""
 
-#: methods/http.cc:859
+#: methods/http.cc:865
 msgid "Error writing to the file"
 msgstr ""
 
 msgid "Error writing to the file"
 msgstr ""
 
-#: methods/http.cc:873
+#: methods/http.cc:879
 msgid "Error reading from server. Remote end closed connection"
 msgstr ""
 
 msgid "Error reading from server. Remote end closed connection"
 msgstr ""
 
-#: methods/http.cc:875
+#: methods/http.cc:881
 msgid "Error reading from server"
 msgstr ""
 
 msgid "Error reading from server"
 msgstr ""
 
-#: methods/http.cc:1106
+#: methods/http.cc:1112
 msgid "Bad header data"
 msgstr ""
 
 msgid "Bad header data"
 msgstr ""
 
-#: methods/http.cc:1123
+#: methods/http.cc:1129
 msgid "Connection failed"
 msgstr "Povezivanje neuspješno"
 
 msgid "Connection failed"
 msgstr "Povezivanje neuspješno"
 
-#: methods/http.cc:1214
+#: methods/http.cc:1220
 msgid "Internal error"
 msgstr "Unutrašnja greška"
 
 msgid "Internal error"
 msgstr "Unutrašnja greška"
 
index bd1f47988708f9a87654d592e9e218bdeee8ce01..985864a3e522e6093eab8b8f982fd4a8fba9a986 100644 (file)
--- a/po/ca.po
+++ b/po/ca.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: apt 0.6\n"
 "Report-Msgid-Bugs-To: \n"
 msgstr ""
 "Project-Id-Version: apt 0.6\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2005-11-23 00:39+0100\n"
+"POT-Creation-Date: 2005-11-28 23:02+0100\n"
 "PO-Revision-Date: 2005-07-19 01:31+0200\n"
 "Last-Translator: Jordi Mallach <jordi@debian.org>\n"
 "Language-Team: Catalan <debian-l10n-catalan@lists.debian.org>\n"
 "PO-Revision-Date: 2005-07-19 01:31+0200\n"
 "Last-Translator: Jordi Mallach <jordi@debian.org>\n"
 "Language-Team: Catalan <debian-l10n-catalan@lists.debian.org>\n"
@@ -1817,7 +1817,7 @@ msgstr "S'ha esgotat el temps de connexió al sòcol de dades"
 msgid "Unable to accept connection"
 msgstr "No es pot acceptar la connexió"
 
 msgid "Unable to accept connection"
 msgstr "No es pot acceptar la connexió"
 
-#: methods/ftp.cc:864 methods/http.cc:957 methods/rsh.cc:303
+#: methods/ftp.cc:864 methods/http.cc:963 methods/rsh.cc:303
 msgid "Problem hashing file"
 msgstr "Problema escollint el fitxer"
 
 msgid "Problem hashing file"
 msgstr "Problema escollint el fitxer"
 
@@ -1998,31 +1998,31 @@ msgstr "Connexió finalitzada"
 msgid "Error writing to output file"
 msgstr "Error escrivint en el fitxer d'eixida"
 
 msgid "Error writing to output file"
 msgstr "Error escrivint en el fitxer d'eixida"
 
-#: methods/http.cc:834
+#: methods/http.cc:837
 msgid "Error writing to file"
 msgstr "Error escrivint en el fitxer"
 
 msgid "Error writing to file"
 msgstr "Error escrivint en el fitxer"
 
-#: methods/http.cc:859
+#: methods/http.cc:865
 msgid "Error writing to the file"
 msgstr "Error escrivint en el fitxer"
 
 msgid "Error writing to the file"
 msgstr "Error escrivint en el fitxer"
 
-#: methods/http.cc:873
+#: methods/http.cc:879
 msgid "Error reading from server. Remote end closed connection"
 msgstr "Error llegint, el servidor remot ha tancat la connexió"
 
 msgid "Error reading from server. Remote end closed connection"
 msgstr "Error llegint, el servidor remot ha tancat la connexió"
 
-#: methods/http.cc:875
+#: methods/http.cc:881
 msgid "Error reading from server"
 msgstr "Error llegint des del servidor"
 
 msgid "Error reading from server"
 msgstr "Error llegint des del servidor"
 
-#: methods/http.cc:1106
+#: methods/http.cc:1112
 msgid "Bad header data"
 msgstr "Capçalera de dades no vàlida"
 
 msgid "Bad header data"
 msgstr "Capçalera de dades no vàlida"
 
-#: methods/http.cc:1123
+#: methods/http.cc:1129
 msgid "Connection failed"
 msgstr "Ha fallat la connexió"
 
 msgid "Connection failed"
 msgstr "Ha fallat la connexió"
 
-#: methods/http.cc:1214
+#: methods/http.cc:1220
 msgid "Internal error"
 msgstr "Error intern"
 
 msgid "Internal error"
 msgstr "Error intern"
 
index d7ccea80c8bd997b622e2f6fcd0f394526324506..d8cbc05e967f8ea1496eb81db262ea2e2e07b062 100644 (file)
--- a/po/cs.po
+++ b/po/cs.po
@@ -6,7 +6,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: apt\n"
 "Report-Msgid-Bugs-To: \n"
 msgstr ""
 "Project-Id-Version: apt\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2005-11-23 00:39+0100\n"
+"POT-Creation-Date: 2005-11-28 23:02+0100\n"
 "PO-Revision-Date: 2005-02-11 16:14+0100\n"
 "Last-Translator: Miroslav Kure <kurem@debian.cz>\n"
 "Language-Team: Czech <provoz@debian.cz>\n"
 "PO-Revision-Date: 2005-02-11 16:14+0100\n"
 "Last-Translator: Miroslav Kure <kurem@debian.cz>\n"
 "Language-Team: Czech <provoz@debian.cz>\n"
@@ -1793,7 +1793,7 @@ msgstr "Spojení datového socketu vypršelo"
 msgid "Unable to accept connection"
 msgstr "Nemohu přijmout spojení"
 
 msgid "Unable to accept connection"
 msgstr "Nemohu přijmout spojení"
 
-#: methods/ftp.cc:864 methods/http.cc:957 methods/rsh.cc:303
+#: methods/ftp.cc:864 methods/http.cc:963 methods/rsh.cc:303
 msgid "Problem hashing file"
 msgstr "Problém s hashováním souboru"
 
 msgid "Problem hashing file"
 msgstr "Problém s hashováním souboru"
 
@@ -1970,31 +1970,31 @@ msgstr "Čas spojení vypršel"
 msgid "Error writing to output file"
 msgstr "Chyba zápisu do výstupního souboru"
 
 msgid "Error writing to output file"
 msgstr "Chyba zápisu do výstupního souboru"
 
-#: methods/http.cc:834
+#: methods/http.cc:837
 msgid "Error writing to file"
 msgstr "Chyba zápisu do souboru"
 
 msgid "Error writing to file"
 msgstr "Chyba zápisu do souboru"
 
-#: methods/http.cc:859
+#: methods/http.cc:865
 msgid "Error writing to the file"
 msgstr "Chyba zápisu do souboru"
 
 msgid "Error writing to the file"
 msgstr "Chyba zápisu do souboru"
 
-#: methods/http.cc:873
+#: methods/http.cc:879
 msgid "Error reading from server. Remote end closed connection"
 msgstr "Chyba čtení ze serveru. Druhá strana zavřela spojení"
 
 msgid "Error reading from server. Remote end closed connection"
 msgstr "Chyba čtení ze serveru. Druhá strana zavřela spojení"
 
-#: methods/http.cc:875
+#: methods/http.cc:881
 msgid "Error reading from server"
 msgstr "Chyba čtení ze serveru"
 
 msgid "Error reading from server"
 msgstr "Chyba čtení ze serveru"
 
-#: methods/http.cc:1106
+#: methods/http.cc:1112
 msgid "Bad header data"
 msgstr "Špatné datové záhlaví"
 
 msgid "Bad header data"
 msgstr "Špatné datové záhlaví"
 
-#: methods/http.cc:1123
+#: methods/http.cc:1129
 msgid "Connection failed"
 msgstr "Spojení selhalo"
 
 msgid "Connection failed"
 msgstr "Spojení selhalo"
 
-#: methods/http.cc:1214
+#: methods/http.cc:1220
 msgid "Internal error"
 msgstr "Vnitřní chyba"
 
 msgid "Internal error"
 msgstr "Vnitřní chyba"
 
index 54fbdc88b8bc3c4e8fb74bfa84893a5e8bd76e08..8fbc6da85f8ebae5a822906b9094d3d065f82f6f 100644 (file)
--- a/po/da.po
+++ b/po/da.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: apt-da\n"
 "Report-Msgid-Bugs-To: \n"
 msgstr ""
 "Project-Id-Version: apt-da\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2005-11-23 00:39+0100\n"
+"POT-Creation-Date: 2005-11-28 23:02+0100\n"
 "PO-Revision-Date: 2005-11-07 15:28+0100\n"
 "Last-Translator: Claus Hindsgaul <claus_h@image.dk>\n"
 "Language-Team: Danish <dansk@klid.dk>\n"
 "PO-Revision-Date: 2005-11-07 15:28+0100\n"
 "Last-Translator: Claus Hindsgaul <claus_h@image.dk>\n"
 "Language-Team: Danish <dansk@klid.dk>\n"
@@ -1799,7 +1799,7 @@ msgstr "Tidsudl
 msgid "Unable to accept connection"
 msgstr "Kunne ikke acceptere forbindelse"
 
 msgid "Unable to accept connection"
 msgstr "Kunne ikke acceptere forbindelse"
 
-#: methods/ftp.cc:864 methods/http.cc:957 methods/rsh.cc:303
+#: methods/ftp.cc:864 methods/http.cc:963 methods/rsh.cc:303
 msgid "Problem hashing file"
 msgstr "Problem ved \"hashing\" af fil"
 
 msgid "Problem hashing file"
 msgstr "Problem ved \"hashing\" af fil"
 
@@ -1978,31 +1978,31 @@ msgstr "Tidsudl
 msgid "Error writing to output file"
 msgstr "Fejl ved skrivning af uddatafil"
 
 msgid "Error writing to output file"
 msgstr "Fejl ved skrivning af uddatafil"
 
-#: methods/http.cc:834
+#: methods/http.cc:837
 msgid "Error writing to file"
 msgstr "Fejl ved skrivning til fil"
 
 msgid "Error writing to file"
 msgstr "Fejl ved skrivning til fil"
 
-#: methods/http.cc:859
+#: methods/http.cc:865
 msgid "Error writing to the file"
 msgstr "Fejl ved skrivning til filen"
 
 msgid "Error writing to the file"
 msgstr "Fejl ved skrivning til filen"
 
-#: methods/http.cc:873
+#: methods/http.cc:879
 msgid "Error reading from server. Remote end closed connection"
 msgstr "Fejl ved læsning fra serveren. Den fjerne ende lukkede forbindelsen"
 
 msgid "Error reading from server. Remote end closed connection"
 msgstr "Fejl ved læsning fra serveren. Den fjerne ende lukkede forbindelsen"
 
-#: methods/http.cc:875
+#: methods/http.cc:881
 msgid "Error reading from server"
 msgstr "Fejl ved læsning fra server"
 
 msgid "Error reading from server"
 msgstr "Fejl ved læsning fra server"
 
-#: methods/http.cc:1106
+#: methods/http.cc:1112
 msgid "Bad header data"
 msgstr "Ugyldige hoved-data"
 
 msgid "Bad header data"
 msgstr "Ugyldige hoved-data"
 
-#: methods/http.cc:1123
+#: methods/http.cc:1129
 msgid "Connection failed"
 msgstr "Forbindelsen mislykkedes"
 
 msgid "Connection failed"
 msgstr "Forbindelsen mislykkedes"
 
-#: methods/http.cc:1214
+#: methods/http.cc:1220
 msgid "Internal error"
 msgstr "Intern fejl"
 
 msgid "Internal error"
 msgstr "Intern fejl"
 
index a28e3d9ca50b9f7e948f2dceb7ad392ab79c26f4..2f66c72320fcaf4b9e925214619ba5b715b55710 100644 (file)
--- a/po/de.po
+++ b/po/de.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: apt 0.5.26\n"
 "Report-Msgid-Bugs-To: \n"
 msgstr ""
 "Project-Id-Version: apt 0.5.26\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2005-11-23 00:39+0100\n"
+"POT-Creation-Date: 2005-11-28 23:02+0100\n"
 "PO-Revision-Date: 2005-06-15 18:22+0200\n"
 "Last-Translator: Michael Piefel <piefel@debian.org>\n"
 "Language-Team:  <de@li.org>\n"
 "PO-Revision-Date: 2005-06-15 18:22+0200\n"
 "Last-Translator: Michael Piefel <piefel@debian.org>\n"
 "Language-Team:  <de@li.org>\n"
@@ -1837,7 +1837,7 @@ msgstr "Datenverbindungsaufbau erlitt Zeitüberschreitung"
 msgid "Unable to accept connection"
 msgstr "Kann Verbindung nicht annehmen"
 
 msgid "Unable to accept connection"
 msgstr "Kann Verbindung nicht annehmen"
 
-#: methods/ftp.cc:864 methods/http.cc:957 methods/rsh.cc:303
+#: methods/ftp.cc:864 methods/http.cc:963 methods/rsh.cc:303
 msgid "Problem hashing file"
 msgstr "Bei Bestimmung des Hashwertes einer Datei trat ein Problem auf"
 
 msgid "Problem hashing file"
 msgstr "Bei Bestimmung des Hashwertes einer Datei trat ein Problem auf"
 
@@ -2015,33 +2015,33 @@ msgstr "Verbindung erlitt Zeitüberschreitung"
 msgid "Error writing to output file"
 msgstr "Fehler beim Schreiben einer Ausgabedatei"
 
 msgid "Error writing to output file"
 msgstr "Fehler beim Schreiben einer Ausgabedatei"
 
-#: methods/http.cc:834
+#: methods/http.cc:837
 msgid "Error writing to file"
 msgstr "Fehler beim Schreiben einer Datei"
 
 msgid "Error writing to file"
 msgstr "Fehler beim Schreiben einer Datei"
 
-#: methods/http.cc:859
+#: methods/http.cc:865
 msgid "Error writing to the file"
 msgstr "Fehler beim Schreiben der Datei"
 
 msgid "Error writing to the file"
 msgstr "Fehler beim Schreiben der Datei"
 
-#: methods/http.cc:873
+#: methods/http.cc:879
 msgid "Error reading from server. Remote end closed connection"
 msgstr ""
 "Fehler beim Lesen vom Server: Das entfernte Ende hat die Verbindung "
 "geschlossen"
 
 msgid "Error reading from server. Remote end closed connection"
 msgstr ""
 "Fehler beim Lesen vom Server: Das entfernte Ende hat die Verbindung "
 "geschlossen"
 
-#: methods/http.cc:875
+#: methods/http.cc:881
 msgid "Error reading from server"
 msgstr "Fehler beim Lesen vom Server"
 
 msgid "Error reading from server"
 msgstr "Fehler beim Lesen vom Server"
 
-#: methods/http.cc:1106
+#: methods/http.cc:1112
 msgid "Bad header data"
 msgstr "Fehlerhafte Kopfzeilendaten"
 
 msgid "Bad header data"
 msgstr "Fehlerhafte Kopfzeilendaten"
 
-#: methods/http.cc:1123
+#: methods/http.cc:1129
 msgid "Connection failed"
 msgstr "Verbindung fehlgeschlagen"
 
 msgid "Connection failed"
 msgstr "Verbindung fehlgeschlagen"
 
-#: methods/http.cc:1214
+#: methods/http.cc:1220
 msgid "Internal error"
 msgstr "Interner Fehler"
 
 msgid "Internal error"
 msgstr "Interner Fehler"
 
index 91b6a09f5b6aace9ef1b04f5c6e840fa35284d51..8f0ef4262820975a2f979213fa6c2dbb5b96520b 100644 (file)
--- a/po/el.po
+++ b/po/el.po
@@ -16,7 +16,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: apt_po_el\n"
 "Report-Msgid-Bugs-To: \n"
 msgstr ""
 "Project-Id-Version: apt_po_el\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2005-11-23 00:39+0100\n"
+"POT-Creation-Date: 2005-11-28 23:02+0100\n"
 "PO-Revision-Date: 2005-07-14 14:25EEST\n"
 "Last-Translator: Greek Translation Team <debian-l10n-greek@lists.debian."
 "org>\n"
 "PO-Revision-Date: 2005-07-14 14:25EEST\n"
 "Last-Translator: Greek Translation Team <debian-l10n-greek@lists.debian."
 "org>\n"
@@ -1832,7 +1832,7 @@ msgstr "Λήξη χρόνου σύνδεσης στην υποδοχή δεδο
 msgid "Unable to accept connection"
 msgstr "Αδύνατη η αποδοχή συνδέσεων"
 
 msgid "Unable to accept connection"
 msgstr "Αδύνατη η αποδοχή συνδέσεων"
 
-#: methods/ftp.cc:864 methods/http.cc:957 methods/rsh.cc:303
+#: methods/ftp.cc:864 methods/http.cc:963 methods/rsh.cc:303
 msgid "Problem hashing file"
 msgstr "Πρόβλημα κατά το hashing του αρχείου"
 
 msgid "Problem hashing file"
 msgstr "Πρόβλημα κατά το hashing του αρχείου"
 
@@ -2009,32 +2009,32 @@ msgstr "Λήξη χρόνου σύνδεσης"
 msgid "Error writing to output file"
 msgstr "Σφάλμα στην εγγραφή στο αρχείο εξόδου"
 
 msgid "Error writing to output file"
 msgstr "Σφάλμα στην εγγραφή στο αρχείο εξόδου"
 
-#: methods/http.cc:834
+#: methods/http.cc:837
 msgid "Error writing to file"
 msgstr "Σφάλμα στην εγγραφή στο αρχείο"
 
 msgid "Error writing to file"
 msgstr "Σφάλμα στην εγγραφή στο αρχείο"
 
-#: methods/http.cc:859
+#: methods/http.cc:865
 msgid "Error writing to the file"
 msgstr "Σφάλμα στην εγγραφή στο αρχείο"
 
 msgid "Error writing to the file"
 msgstr "Σφάλμα στην εγγραφή στο αρχείο"
 
-#: methods/http.cc:873
+#: methods/http.cc:879
 msgid "Error reading from server. Remote end closed connection"
 msgstr ""
 "Σφάλμα στην ανάγνωση από το διακομιστή, το άλλο άκρο έκλεισε τη σύνδεση"
 
 msgid "Error reading from server. Remote end closed connection"
 msgstr ""
 "Σφάλμα στην ανάγνωση από το διακομιστή, το άλλο άκρο έκλεισε τη σύνδεση"
 
-#: methods/http.cc:875
+#: methods/http.cc:881
 msgid "Error reading from server"
 msgstr "Σφάλμα στην ανάγνωση από το διακομιστή"
 
 msgid "Error reading from server"
 msgstr "Σφάλμα στην ανάγνωση από το διακομιστή"
 
-#: methods/http.cc:1106
+#: methods/http.cc:1112
 msgid "Bad header data"
 msgstr "Ελαττωματικά δεδομένα επικεφαλίδας"
 
 msgid "Bad header data"
 msgstr "Ελαττωματικά δεδομένα επικεφαλίδας"
 
-#: methods/http.cc:1123
+#: methods/http.cc:1129
 msgid "Connection failed"
 msgstr "Η σύνδεση απέτυχε"
 
 msgid "Connection failed"
 msgstr "Η σύνδεση απέτυχε"
 
-#: methods/http.cc:1214
+#: methods/http.cc:1220
 msgid "Internal error"
 msgstr "Εσωτερικό Σφάλμα"
 
 msgid "Internal error"
 msgstr "Εσωτερικό Σφάλμα"
 
index a8fee474264a8d2684869b9e0ef4bbc80adb169e..0eb77e1acc60b5a2c9c9cf0f8d0557119caf52db 100644 (file)
@@ -6,7 +6,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: apt 0.5.5\n"
 "Report-Msgid-Bugs-To: \n"
 msgstr ""
 "Project-Id-Version: apt 0.5.5\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2005-11-23 00:39+0100\n"
+"POT-Creation-Date: 2005-11-28 23:02+0100\n"
 "PO-Revision-Date: 2002-11-10 20:56+0100\n"
 "Last-Translator: Michael Piefel <piefel@debian.org>\n"
 "Language-Team: en_GB <en@li.org>\n"
 "PO-Revision-Date: 2002-11-10 20:56+0100\n"
 "Last-Translator: Michael Piefel <piefel@debian.org>\n"
 "Language-Team: en_GB <en@li.org>\n"
@@ -1663,7 +1663,7 @@ msgstr ""
 msgid "Unable to accept connection"
 msgstr ""
 
 msgid "Unable to accept connection"
 msgstr ""
 
-#: methods/ftp.cc:864 methods/http.cc:957 methods/rsh.cc:303
+#: methods/ftp.cc:864 methods/http.cc:963 methods/rsh.cc:303
 msgid "Problem hashing file"
 msgstr ""
 
 msgid "Problem hashing file"
 msgstr ""
 
@@ -1839,31 +1839,31 @@ msgstr ""
 msgid "Error writing to output file"
 msgstr ""
 
 msgid "Error writing to output file"
 msgstr ""
 
-#: methods/http.cc:834
+#: methods/http.cc:837
 msgid "Error writing to file"
 msgstr ""
 
 msgid "Error writing to file"
 msgstr ""
 
-#: methods/http.cc:859
+#: methods/http.cc:865
 msgid "Error writing to the file"
 msgstr ""
 
 msgid "Error writing to the file"
 msgstr ""
 
-#: methods/http.cc:873
+#: methods/http.cc:879
 msgid "Error reading from server. Remote end closed connection"
 msgstr ""
 
 msgid "Error reading from server. Remote end closed connection"
 msgstr ""
 
-#: methods/http.cc:875
+#: methods/http.cc:881
 msgid "Error reading from server"
 msgstr ""
 
 msgid "Error reading from server"
 msgstr ""
 
-#: methods/http.cc:1106
+#: methods/http.cc:1112
 msgid "Bad header data"
 msgstr ""
 
 msgid "Bad header data"
 msgstr ""
 
-#: methods/http.cc:1123
+#: methods/http.cc:1129
 msgid "Connection failed"
 msgstr ""
 
 msgid "Connection failed"
 msgstr ""
 
-#: methods/http.cc:1214
+#: methods/http.cc:1220
 msgid "Internal error"
 msgstr ""
 
 msgid "Internal error"
 msgstr ""
 
index fcc69804ccc3700b60edf81f42de20dfa7af2d29..0e68bde46af1825f104a97ecb925f85ad3fed046 100644 (file)
--- a/po/es.po
+++ b/po/es.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: apt 0.5.24\n"
 "Report-Msgid-Bugs-To: \n"
 msgstr ""
 "Project-Id-Version: apt 0.5.24\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2005-11-23 00:39+0100\n"
+"POT-Creation-Date: 2005-11-28 23:02+0100\n"
 "PO-Revision-Date: 2005-02-08 20:36+0100\n"
 "Last-Translator: Rubén Porras Campo <nahoo@inicia.es>\n"
 "Language-Team: Spanish <debian-l10n-spanish@lists.debian.org>\n"
 "PO-Revision-Date: 2005-02-08 20:36+0100\n"
 "Last-Translator: Rubén Porras Campo <nahoo@inicia.es>\n"
 "Language-Team: Spanish <debian-l10n-spanish@lists.debian.org>\n"
@@ -1822,7 +1822,7 @@ msgstr "Expir
 msgid "Unable to accept connection"
 msgstr "No pude aceptar la conexión"
 
 msgid "Unable to accept connection"
 msgstr "No pude aceptar la conexión"
 
-#: methods/ftp.cc:864 methods/http.cc:957 methods/rsh.cc:303
+#: methods/ftp.cc:864 methods/http.cc:963 methods/rsh.cc:303
 msgid "Problem hashing file"
 msgstr "Hay problemas enlazando fichero"
 
 msgid "Problem hashing file"
 msgstr "Hay problemas enlazando fichero"
 
@@ -1999,31 +1999,31 @@ msgstr "Expir
 msgid "Error writing to output file"
 msgstr "Error escribiendo al archivo de salida"
 
 msgid "Error writing to output file"
 msgstr "Error escribiendo al archivo de salida"
 
-#: methods/http.cc:834
+#: methods/http.cc:837
 msgid "Error writing to file"
 msgstr "Error escribiendo a archivo"
 
 msgid "Error writing to file"
 msgstr "Error escribiendo a archivo"
 
-#: methods/http.cc:859
+#: methods/http.cc:865
 msgid "Error writing to the file"
 msgstr "Error escribiendo al archivo"
 
 msgid "Error writing to the file"
 msgstr "Error escribiendo al archivo"
 
-#: methods/http.cc:873
+#: methods/http.cc:879
 msgid "Error reading from server. Remote end closed connection"
 msgstr "Error leyendo del servidor, el lado remoto cerró la conexión."
 
 msgid "Error reading from server. Remote end closed connection"
 msgstr "Error leyendo del servidor, el lado remoto cerró la conexión."
 
-#: methods/http.cc:875
+#: methods/http.cc:881
 msgid "Error reading from server"
 msgstr "Error leyendo del servidor"
 
 msgid "Error reading from server"
 msgstr "Error leyendo del servidor"
 
-#: methods/http.cc:1106
+#: methods/http.cc:1112
 msgid "Bad header data"
 msgstr "Mala cabecera Data"
 
 msgid "Bad header data"
 msgstr "Mala cabecera Data"
 
-#: methods/http.cc:1123
+#: methods/http.cc:1129
 msgid "Connection failed"
 msgstr "Fallo la conexión"
 
 msgid "Connection failed"
 msgstr "Fallo la conexión"
 
-#: methods/http.cc:1214
+#: methods/http.cc:1220
 msgid "Internal error"
 msgstr "Error interno"
 
 msgid "Internal error"
 msgstr "Error interno"
 
index 42fcecc3b2a0b0f4d5582fb7357c07b5f7cc112b..1ffcde824674a429c090f26fd28772e8a1cf3d77 100644 (file)
--- a/po/eu.po
+++ b/po/eu.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: apt_po_eu\n"
 "Report-Msgid-Bugs-To: \n"
 msgstr ""
 "Project-Id-Version: apt_po_eu\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2005-11-23 00:39+0100\n"
+"POT-Creation-Date: 2005-11-28 23:02+0100\n"
 "PO-Revision-Date: 2005-11-07 22:37+0100\n"
 "Last-Translator: Piarres Beobide <pi@beobide.net>\n"
 "Language-Team: librezale.org <librezale@librezale.org>\n"
 "PO-Revision-Date: 2005-11-07 22:37+0100\n"
 "Last-Translator: Piarres Beobide <pi@beobide.net>\n"
 "Language-Team: librezale.org <librezale@librezale.org>\n"
@@ -1802,7 +1802,7 @@ msgstr "Datu-socket konexioak denbora-muga gainditu du"
 msgid "Unable to accept connection"
 msgstr "Ezin da konexioa onartu"
 
 msgid "Unable to accept connection"
 msgstr "Ezin da konexioa onartu"
 
-#: methods/ftp.cc:864 methods/http.cc:957 methods/rsh.cc:303
+#: methods/ftp.cc:864 methods/http.cc:963 methods/rsh.cc:303
 msgid "Problem hashing file"
 msgstr "Arazoa fitxategiaren hash egitean"
 
 msgid "Problem hashing file"
 msgstr "Arazoa fitxategiaren hash egitean"
 
@@ -1980,31 +1980,31 @@ msgstr "Konexioaren denbora-muga gainditu da"
 msgid "Error writing to output file"
 msgstr "Errorea irteerako fitxategian idaztean"
 
 msgid "Error writing to output file"
 msgstr "Errorea irteerako fitxategian idaztean"
 
-#: methods/http.cc:834
+#: methods/http.cc:837
 msgid "Error writing to file"
 msgstr "Errorea fitxategian idaztean"
 
 msgid "Error writing to file"
 msgstr "Errorea fitxategian idaztean"
 
-#: methods/http.cc:859
+#: methods/http.cc:865
 msgid "Error writing to the file"
 msgstr "Errorea fitxategian idaztean"
 
 msgid "Error writing to the file"
 msgstr "Errorea fitxategian idaztean"
 
-#: methods/http.cc:873
+#: methods/http.cc:879
 msgid "Error reading from server. Remote end closed connection"
 msgstr "Errorea zerbitzaritik irakurtzen Urrunetik amaitutako konexio itxiera"
 
 msgid "Error reading from server. Remote end closed connection"
 msgstr "Errorea zerbitzaritik irakurtzen Urrunetik amaitutako konexio itxiera"
 
-#: methods/http.cc:875
+#: methods/http.cc:881
 msgid "Error reading from server"
 msgstr "Errorea zerbitzaritik irakurtzean"
 
 msgid "Error reading from server"
 msgstr "Errorea zerbitzaritik irakurtzean"
 
-#: methods/http.cc:1106
+#: methods/http.cc:1112
 msgid "Bad header data"
 msgstr "Goiburu data gaizki dago"
 
 msgid "Bad header data"
 msgstr "Goiburu data gaizki dago"
 
-#: methods/http.cc:1123
+#: methods/http.cc:1129
 msgid "Connection failed"
 msgstr "Konexioak huts egin du"
 
 msgid "Connection failed"
 msgstr "Konexioak huts egin du"
 
-#: methods/http.cc:1214
+#: methods/http.cc:1220
 msgid "Internal error"
 msgstr "Barne-errorea"
 
 msgid "Internal error"
 msgstr "Barne-errorea"
 
index 2388bf637491b289c7e238679d578a92a80d1b2a..a26cbe97e91271e1b70914afc04eefd94b0feaa0 100644 (file)
--- a/po/fi.po
+++ b/po/fi.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: apt 0.5.26\n"
 "Report-Msgid-Bugs-To: \n"
 msgstr ""
 "Project-Id-Version: apt 0.5.26\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2005-11-23 00:39+0100\n"
+"POT-Creation-Date: 2005-11-28 23:02+0100\n"
 "PO-Revision-Date: 2005-02-15 14:09+0200\n"
 "Last-Translator: Tapio Lehtonen <tale@debian.org>\n"
 "Language-Team: Finnish <debian-l10n-finnish@lists.debian.org>\n"
 "PO-Revision-Date: 2005-02-15 14:09+0200\n"
 "Last-Translator: Tapio Lehtonen <tale@debian.org>\n"
 "Language-Team: Finnish <debian-l10n-finnish@lists.debian.org>\n"
@@ -1804,7 +1804,7 @@ msgstr "Pistokkeen kytkeminen aikakatkaistiin"
 msgid "Unable to accept connection"
 msgstr "Yhteyttä ei voitu hyväksyä"
 
 msgid "Unable to accept connection"
 msgstr "Yhteyttä ei voitu hyväksyä"
 
-#: methods/ftp.cc:864 methods/http.cc:957 methods/rsh.cc:303
+#: methods/ftp.cc:864 methods/http.cc:963 methods/rsh.cc:303
 msgid "Problem hashing file"
 msgstr "Pulmia tiedoston hajautuksessa"
 
 msgid "Problem hashing file"
 msgstr "Pulmia tiedoston hajautuksessa"
 
@@ -1981,31 +1981,31 @@ msgstr "Yhteys aikakatkaistiin"
 msgid "Error writing to output file"
 msgstr "Tapahtui virhe kirjoitettaessa tulostustiedostoon"
 
 msgid "Error writing to output file"
 msgstr "Tapahtui virhe kirjoitettaessa tulostustiedostoon"
 
-#: methods/http.cc:834
+#: methods/http.cc:837
 msgid "Error writing to file"
 msgstr "Tapahtui virhe kirjoitettaessa tiedostoon"
 
 msgid "Error writing to file"
 msgstr "Tapahtui virhe kirjoitettaessa tiedostoon"
 
-#: methods/http.cc:859
+#: methods/http.cc:865
 msgid "Error writing to the file"
 msgstr "Tapahtui virhe kirjoitettaessa tiedostoon"
 
 msgid "Error writing to the file"
 msgstr "Tapahtui virhe kirjoitettaessa tiedostoon"
 
-#: methods/http.cc:873
+#: methods/http.cc:879
 msgid "Error reading from server. Remote end closed connection"
 msgstr "Tapahtui virhe luettaessa palvelimelta. Etäpää sulki yhteyden"
 
 msgid "Error reading from server. Remote end closed connection"
 msgstr "Tapahtui virhe luettaessa palvelimelta. Etäpää sulki yhteyden"
 
-#: methods/http.cc:875
+#: methods/http.cc:881
 msgid "Error reading from server"
 msgstr "Tapahtui virhe luettaessa palvelimelta"
 
 msgid "Error reading from server"
 msgstr "Tapahtui virhe luettaessa palvelimelta"
 
-#: methods/http.cc:1106
+#: methods/http.cc:1112
 msgid "Bad header data"
 msgstr "Virheellinen otsikkotieto"
 
 msgid "Bad header data"
 msgstr "Virheellinen otsikkotieto"
 
-#: methods/http.cc:1123
+#: methods/http.cc:1129
 msgid "Connection failed"
 msgstr "Yhteys ei toiminut"
 
 msgid "Connection failed"
 msgstr "Yhteys ei toiminut"
 
-#: methods/http.cc:1214
+#: methods/http.cc:1220
 msgid "Internal error"
 msgstr "Sisäinen virhe"
 
 msgid "Internal error"
 msgstr "Sisäinen virhe"
 
index f37e66292523b4c9c604bb708d485a808a1f496e..0df9cfcd3dbf930e8b2c352dc2f871713f8a50c6 100644 (file)
--- a/po/fr.po
+++ b/po/fr.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: fr\n"
 "Report-Msgid-Bugs-To: \n"
 msgstr ""
 "Project-Id-Version: fr\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2005-11-23 00:39+0100\n"
+"POT-Creation-Date: 2005-11-28 23:02+0100\n"
 "PO-Revision-Date: 2005-11-01 18:16+0100\n"
 "Last-Translator: Christian Perrier <bubulle@debian.org>\n"
 "Language-Team: French <debian-l10n-french@lists.debian.org>\n"
 "PO-Revision-Date: 2005-11-01 18:16+0100\n"
 "Last-Translator: Christian Perrier <bubulle@debian.org>\n"
 "Language-Team: French <debian-l10n-french@lists.debian.org>\n"
@@ -1836,7 +1836,7 @@ msgstr "D
 msgid "Unable to accept connection"
 msgstr "Impossible d'accepter une connexion"
 
 msgid "Unable to accept connection"
 msgstr "Impossible d'accepter une connexion"
 
-#: methods/ftp.cc:864 methods/http.cc:957 methods/rsh.cc:303
+#: methods/ftp.cc:864 methods/http.cc:963 methods/rsh.cc:303
 msgid "Problem hashing file"
 msgstr "Problème de hachage du fichier"
 
 msgid "Problem hashing file"
 msgstr "Problème de hachage du fichier"
 
@@ -2018,31 +2018,31 @@ msgstr "D
 msgid "Error writing to output file"
 msgstr "Erreur d'écriture du fichier de sortie"
 
 msgid "Error writing to output file"
 msgstr "Erreur d'écriture du fichier de sortie"
 
-#: methods/http.cc:834
+#: methods/http.cc:837
 msgid "Error writing to file"
 msgstr "Erreur d'écriture sur un fichier"
 
 msgid "Error writing to file"
 msgstr "Erreur d'écriture sur un fichier"
 
-#: methods/http.cc:859
+#: methods/http.cc:865
 msgid "Error writing to the file"
 msgstr "Erreur d'écriture sur le fichier"
 
 msgid "Error writing to the file"
 msgstr "Erreur d'écriture sur le fichier"
 
-#: methods/http.cc:873
+#: methods/http.cc:879
 msgid "Error reading from server. Remote end closed connection"
 msgstr "Erreur de lecture depuis le serveur distant et clôture de la connexion"
 
 msgid "Error reading from server. Remote end closed connection"
 msgstr "Erreur de lecture depuis le serveur distant et clôture de la connexion"
 
-#: methods/http.cc:875
+#: methods/http.cc:881
 msgid "Error reading from server"
 msgstr "Erreur de lecture du serveur"
 
 msgid "Error reading from server"
 msgstr "Erreur de lecture du serveur"
 
-#: methods/http.cc:1106
+#: methods/http.cc:1112
 msgid "Bad header data"
 msgstr "Mauvais en-tête de donnée"
 
 msgid "Bad header data"
 msgstr "Mauvais en-tête de donnée"
 
-#: methods/http.cc:1123
+#: methods/http.cc:1129
 msgid "Connection failed"
 msgstr "Échec de la connexion"
 
 msgid "Connection failed"
 msgstr "Échec de la connexion"
 
-#: methods/http.cc:1214
+#: methods/http.cc:1220
 msgid "Internal error"
 msgstr "Erreur interne"
 
 msgid "Internal error"
 msgstr "Erreur interne"
 
index 07848e46a7ac9ff68fde4e76319f1262e6d94a01..da106c60a9c3fbb05bb56b9b2ec011a37c2054aa 100644 (file)
--- a/po/he.po
+++ b/po/he.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: apt 0.5.25\n"
 "Report-Msgid-Bugs-To: \n"
 msgstr ""
 "Project-Id-Version: apt 0.5.25\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2005-11-23 00:39+0100\n"
+"POT-Creation-Date: 2005-11-28 23:02+0100\n"
 "PO-Revision-Date: 2004-06-10 19:58+0300\n"
 "Last-Translator: Lior Kaplan <webmaster@guides.co.il>\n"
 "Language-Team: Hebrew\n"
 "PO-Revision-Date: 2004-06-10 19:58+0300\n"
 "Last-Translator: Lior Kaplan <webmaster@guides.co.il>\n"
 "Language-Team: Hebrew\n"
@@ -1616,7 +1616,7 @@ msgstr ""
 msgid "Unable to accept connection"
 msgstr ""
 
 msgid "Unable to accept connection"
 msgstr ""
 
-#: methods/ftp.cc:864 methods/http.cc:957 methods/rsh.cc:303
+#: methods/ftp.cc:864 methods/http.cc:963 methods/rsh.cc:303
 msgid "Problem hashing file"
 msgstr ""
 
 msgid "Problem hashing file"
 msgstr ""
 
@@ -1792,31 +1792,31 @@ msgstr ""
 msgid "Error writing to output file"
 msgstr ""
 
 msgid "Error writing to output file"
 msgstr ""
 
-#: methods/http.cc:834
+#: methods/http.cc:837
 msgid "Error writing to file"
 msgstr ""
 
 msgid "Error writing to file"
 msgstr ""
 
-#: methods/http.cc:859
+#: methods/http.cc:865
 msgid "Error writing to the file"
 msgstr ""
 
 msgid "Error writing to the file"
 msgstr ""
 
-#: methods/http.cc:873
+#: methods/http.cc:879
 msgid "Error reading from server. Remote end closed connection"
 msgstr ""
 
 msgid "Error reading from server. Remote end closed connection"
 msgstr ""
 
-#: methods/http.cc:875
+#: methods/http.cc:881
 msgid "Error reading from server"
 msgstr ""
 
 msgid "Error reading from server"
 msgstr ""
 
-#: methods/http.cc:1106
+#: methods/http.cc:1112
 msgid "Bad header data"
 msgstr ""
 
 msgid "Bad header data"
 msgstr ""
 
-#: methods/http.cc:1123
+#: methods/http.cc:1129
 msgid "Connection failed"
 msgstr ""
 
 msgid "Connection failed"
 msgstr ""
 
-#: methods/http.cc:1214
+#: methods/http.cc:1220
 msgid "Internal error"
 msgstr ""
 
 msgid "Internal error"
 msgstr ""
 
index 731863ed49c74255ce3a45871cfeb151e3cd8599..093de288529f2b8f2efba4cdce4e70f9d8ba6720 100644 (file)
--- a/po/hu.po
+++ b/po/hu.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: hu\n"
 "Report-Msgid-Bugs-To: \n"
 msgstr ""
 "Project-Id-Version: hu\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2005-11-23 00:39+0100\n"
+"POT-Creation-Date: 2005-11-28 23:02+0100\n"
 "PO-Revision-Date: 2005-02-15 18:03+0100\n"
 "Last-Translator: Gabor Kelemen <kelemeng@gnome.hu>\n"
 "Language-Team: Hungarian <gnome@gnome.hu>\n"
 "PO-Revision-Date: 2005-02-15 18:03+0100\n"
 "Last-Translator: Gabor Kelemen <kelemeng@gnome.hu>\n"
 "Language-Team: Hungarian <gnome@gnome.hu>\n"
@@ -1811,7 +1811,7 @@ msgstr "Az adat sockethez kapcsolódás túllépte az időkeretet"
 msgid "Unable to accept connection"
 msgstr "Nem lehet elfogadni a kapcsolatot"
 
 msgid "Unable to accept connection"
 msgstr "Nem lehet elfogadni a kapcsolatot"
 
-#: methods/ftp.cc:864 methods/http.cc:957 methods/rsh.cc:303
+#: methods/ftp.cc:864 methods/http.cc:963 methods/rsh.cc:303
 msgid "Problem hashing file"
 msgstr "Probléma a fájl hash értékének meghatározásakor"
 
 msgid "Problem hashing file"
 msgstr "Probléma a fájl hash értékének meghatározásakor"
 
@@ -1988,31 +1988,31 @@ msgstr "Időtúllépés a kapcsolatban"
 msgid "Error writing to output file"
 msgstr "Hiba a kimeneti fájl írásakor"
 
 msgid "Error writing to output file"
 msgstr "Hiba a kimeneti fájl írásakor"
 
-#: methods/http.cc:834
+#: methods/http.cc:837
 msgid "Error writing to file"
 msgstr "Hiba fájl írásakor"
 
 msgid "Error writing to file"
 msgstr "Hiba fájl írásakor"
 
-#: methods/http.cc:859
+#: methods/http.cc:865
 msgid "Error writing to the file"
 msgstr "Hiba a fájl írásakor"
 
 msgid "Error writing to the file"
 msgstr "Hiba a fájl írásakor"
 
-#: methods/http.cc:873
+#: methods/http.cc:879
 msgid "Error reading from server. Remote end closed connection"
 msgstr "Hiba a kiszolgálóról olvasáskor, a túloldal lezárta a kapcsolatot"
 
 msgid "Error reading from server. Remote end closed connection"
 msgstr "Hiba a kiszolgálóról olvasáskor, a túloldal lezárta a kapcsolatot"
 
-#: methods/http.cc:875
+#: methods/http.cc:881
 msgid "Error reading from server"
 msgstr "Hiba a kiszolgálóról olvasáskor"
 
 msgid "Error reading from server"
 msgstr "Hiba a kiszolgálóról olvasáskor"
 
-#: methods/http.cc:1106
+#: methods/http.cc:1112
 msgid "Bad header data"
 msgstr "Rossz fejlécadat"
 
 msgid "Bad header data"
 msgstr "Rossz fejlécadat"
 
-#: methods/http.cc:1123
+#: methods/http.cc:1129
 msgid "Connection failed"
 msgstr "Kapcsolódás sikertelen"
 
 msgid "Connection failed"
 msgstr "Kapcsolódás sikertelen"
 
-#: methods/http.cc:1214
+#: methods/http.cc:1220
 msgid "Internal error"
 msgstr "Belső hiba"
 
 msgid "Internal error"
 msgstr "Belső hiba"
 
index 7aeeec87b310e64d0e900189cd4ec261fc755af8..49a3a580a18fe1161fc161f81d5f0567d2b46b86 100644 (file)
--- a/po/it.po
+++ b/po/it.po
@@ -5,7 +5,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: apt 0.5.5\n"
 "Report-Msgid-Bugs-To: \n"
 msgstr ""
 "Project-Id-Version: apt 0.5.5\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2005-11-23 00:39+0100\n"
+"POT-Creation-Date: 2005-11-28 23:02+0100\n"
 "PO-Revision-Date: 2005-10-05 17:38+0200\n"
 "Last-Translator: Samuele Giovanni Tonon <samu@debian.org>\n"
 "Language-Team: Italian <it@li.org>\n"
 "PO-Revision-Date: 2005-10-05 17:38+0200\n"
 "Last-Translator: Samuele Giovanni Tonon <samu@debian.org>\n"
 "Language-Team: Italian <it@li.org>\n"
@@ -1818,7 +1818,7 @@ msgstr "Tempo limite di connessione esaurito per il socket dati"
 msgid "Unable to accept connection"
 msgstr "Impossibile accettare connessioni"
 
 msgid "Unable to accept connection"
 msgstr "Impossibile accettare connessioni"
 
-#: methods/ftp.cc:864 methods/http.cc:957 methods/rsh.cc:303
+#: methods/ftp.cc:864 methods/http.cc:963 methods/rsh.cc:303
 msgid "Problem hashing file"
 msgstr "Problemi nella creazione dell'hash del file"
 
 msgid "Problem hashing file"
 msgstr "Problemi nella creazione dell'hash del file"
 
@@ -1999,32 +1999,32 @@ msgstr "Tempo limite per la connessione esaurito"
 msgid "Error writing to output file"
 msgstr "Errore nella scrittura del file di output"
 
 msgid "Error writing to output file"
 msgstr "Errore nella scrittura del file di output"
 
-#: methods/http.cc:834
+#: methods/http.cc:837
 msgid "Error writing to file"
 msgstr "Errore nella scrittura nel file"
 
 msgid "Error writing to file"
 msgstr "Errore nella scrittura nel file"
 
-#: methods/http.cc:859
+#: methods/http.cc:865
 msgid "Error writing to the file"
 msgstr "Errore nella scrittura nel file"
 
 msgid "Error writing to the file"
 msgstr "Errore nella scrittura nel file"
 
-#: methods/http.cc:873
+#: methods/http.cc:879
 msgid "Error reading from server. Remote end closed connection"
 msgstr ""
 "Errore nella lettura dal server. Il lato remoto ha chiuso la connessione"
 
 msgid "Error reading from server. Remote end closed connection"
 msgstr ""
 "Errore nella lettura dal server. Il lato remoto ha chiuso la connessione"
 
-#: methods/http.cc:875
+#: methods/http.cc:881
 msgid "Error reading from server"
 msgstr "Errore nella lettura dal server"
 
 msgid "Error reading from server"
 msgstr "Errore nella lettura dal server"
 
-#: methods/http.cc:1106
+#: methods/http.cc:1112
 msgid "Bad header data"
 msgstr "Header dei dati malformato"
 
 msgid "Bad header data"
 msgstr "Header dei dati malformato"
 
-#: methods/http.cc:1123
+#: methods/http.cc:1129
 msgid "Connection failed"
 msgstr "Connessione fallita"
 
 msgid "Connection failed"
 msgstr "Connessione fallita"
 
-#: methods/http.cc:1214
+#: methods/http.cc:1220
 msgid "Internal error"
 msgstr "Errore interno"
 
 msgid "Internal error"
 msgstr "Errore interno"
 
index 2feec2ce895821d398c2b08092cdd9d13a4d2657..69a69cb409b26982243bb0747e3f3ffd111c57d3 100644 (file)
--- a/po/ja.po
+++ b/po/ja.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: apt 0.6\n"
 "Report-Msgid-Bugs-To: \n"
 msgstr ""
 "Project-Id-Version: apt 0.6\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2005-11-23 00:39+0100\n"
+"POT-Creation-Date: 2005-11-28 23:02+0100\n"
 "PO-Revision-Date: 2005-02-09 12:54+0900\n"
 "Last-Translator: Kenshi Muto <kmuto@debian.org>\n"
 "Language-Team: Debian Japanese List <debian-japanese@lists.debian.org>\n"
 "PO-Revision-Date: 2005-02-09 12:54+0900\n"
 "Last-Translator: Kenshi Muto <kmuto@debian.org>\n"
 "Language-Team: Debian Japanese List <debian-japanese@lists.debian.org>\n"
@@ -1814,7 +1814,7 @@ msgstr "
 msgid "Unable to accept connection"
 msgstr "Àܳ¤ò accept ¤Ç¤­¤Þ¤»¤ó"
 
 msgid "Unable to accept connection"
 msgstr "Àܳ¤ò accept ¤Ç¤­¤Þ¤»¤ó"
 
-#: methods/ftp.cc:864 methods/http.cc:957 methods/rsh.cc:303
+#: methods/ftp.cc:864 methods/http.cc:963 methods/rsh.cc:303
 msgid "Problem hashing file"
 msgstr "¥Õ¥¡¥¤¥ë¤Î¥Ï¥Ã¥·¥å¤Ç¤ÎÌäÂê"
 
 msgid "Problem hashing file"
 msgstr "¥Õ¥¡¥¤¥ë¤Î¥Ï¥Ã¥·¥å¤Ç¤ÎÌäÂê"
 
@@ -1991,31 +1991,31 @@ msgstr "
 msgid "Error writing to output file"
 msgstr "½ÐÎÏ¥Õ¥¡¥¤¥ë¤Ø¤Î½ñ¤­¹þ¤ß¤Ç¥¨¥é¡¼¤¬È¯À¸¤·¤Þ¤·¤¿"
 
 msgid "Error writing to output file"
 msgstr "½ÐÎÏ¥Õ¥¡¥¤¥ë¤Ø¤Î½ñ¤­¹þ¤ß¤Ç¥¨¥é¡¼¤¬È¯À¸¤·¤Þ¤·¤¿"
 
-#: methods/http.cc:834
+#: methods/http.cc:837
 msgid "Error writing to file"
 msgstr "¥Õ¥¡¥¤¥ë¤Ø¤Î½ñ¤­¹þ¤ß¤Ç¥¨¥é¡¼¤¬È¯À¸¤·¤Þ¤·¤¿"
 
 msgid "Error writing to file"
 msgstr "¥Õ¥¡¥¤¥ë¤Ø¤Î½ñ¤­¹þ¤ß¤Ç¥¨¥é¡¼¤¬È¯À¸¤·¤Þ¤·¤¿"
 
-#: methods/http.cc:859
+#: methods/http.cc:865
 msgid "Error writing to the file"
 msgstr "¥Õ¥¡¥¤¥ë¤Ø¤Î½ñ¤­¹þ¤ß¤Ç¥¨¥é¡¼¤¬È¯À¸¤·¤Þ¤·¤¿"
 
 msgid "Error writing to the file"
 msgstr "¥Õ¥¡¥¤¥ë¤Ø¤Î½ñ¤­¹þ¤ß¤Ç¥¨¥é¡¼¤¬È¯À¸¤·¤Þ¤·¤¿"
 
-#: methods/http.cc:873
+#: methods/http.cc:879
 msgid "Error reading from server. Remote end closed connection"
 msgstr "¥ê¥â¡¼¥È¦¤ÇÀܳ¤¬¥¯¥í¡¼¥º¤µ¤ì¤Æ¥µ¡¼¥Ð¤«¤é¤ÎÆɤ߹þ¤ß¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
 
 msgid "Error reading from server. Remote end closed connection"
 msgstr "¥ê¥â¡¼¥È¦¤ÇÀܳ¤¬¥¯¥í¡¼¥º¤µ¤ì¤Æ¥µ¡¼¥Ð¤«¤é¤ÎÆɤ߹þ¤ß¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
 
-#: methods/http.cc:875
+#: methods/http.cc:881
 msgid "Error reading from server"
 msgstr "¥µ¡¼¥Ð¤«¤é¤ÎÆɤ߹þ¤ß¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
 
 msgid "Error reading from server"
 msgstr "¥µ¡¼¥Ð¤«¤é¤ÎÆɤ߹þ¤ß¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
 
-#: methods/http.cc:1106
+#: methods/http.cc:1112
 msgid "Bad header data"
 msgstr "ÉÔÀµ¤Ê¥Ø¥Ã¥À¤Ç¤¹"
 
 msgid "Bad header data"
 msgstr "ÉÔÀµ¤Ê¥Ø¥Ã¥À¤Ç¤¹"
 
-#: methods/http.cc:1123
+#: methods/http.cc:1129
 msgid "Connection failed"
 msgstr "Àܳ¼ºÇÔ"
 
 msgid "Connection failed"
 msgstr "Àܳ¼ºÇÔ"
 
-#: methods/http.cc:1214
+#: methods/http.cc:1220
 msgid "Internal error"
 msgstr "ÆâÉô¥¨¥é¡¼"
 
 msgid "Internal error"
 msgstr "ÆâÉô¥¨¥é¡¼"
 
index 23827460b22e623eb264ce949ef3f8380dd5d4f6..1691812bf628bd64bb2e2a5871fde077576eda29 100644 (file)
--- a/po/ko.po
+++ b/po/ko.po
@@ -4,7 +4,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: apt\n"
 "Report-Msgid-Bugs-To: \n"
 msgstr ""
 "Project-Id-Version: apt\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2005-11-23 00:39+0100\n"
+"POT-Creation-Date: 2005-11-28 23:02+0100\n"
 "PO-Revision-Date: 2005-02-10 21:56+0900\n"
 "Last-Translator: Changwoo Ryu <cwryu@debian.org>\n"
 "Language-Team: Korean <cwryu@debian.org>\n"
 "PO-Revision-Date: 2005-02-10 21:56+0900\n"
 "Last-Translator: Changwoo Ryu <cwryu@debian.org>\n"
 "Language-Team: Korean <cwryu@debian.org>\n"
@@ -1802,7 +1802,7 @@ msgstr "데이터 소켓 연결 시간 초과"
 msgid "Unable to accept connection"
 msgstr "연결을 받을 수 없습니다"
 
 msgid "Unable to accept connection"
 msgstr "연결을 받을 수 없습니다"
 
-#: methods/ftp.cc:864 methods/http.cc:957 methods/rsh.cc:303
+#: methods/ftp.cc:864 methods/http.cc:963 methods/rsh.cc:303
 msgid "Problem hashing file"
 msgstr "파일 해싱에 문제가 있습니다"
 
 msgid "Problem hashing file"
 msgstr "파일 해싱에 문제가 있습니다"
 
@@ -1979,31 +1979,31 @@ msgstr "연결 시간이 초과했습니다"
 msgid "Error writing to output file"
 msgstr "출력 파일에 쓰는 데 오류가 발생했습니다"
 
 msgid "Error writing to output file"
 msgstr "출력 파일에 쓰는 데 오류가 발생했습니다"
 
-#: methods/http.cc:834
+#: methods/http.cc:837
 msgid "Error writing to file"
 msgstr "파일에 쓰는 데 오류가 발생했습니다"
 
 msgid "Error writing to file"
 msgstr "파일에 쓰는 데 오류가 발생했습니다"
 
-#: methods/http.cc:859
+#: methods/http.cc:865
 msgid "Error writing to the file"
 msgstr "해당 파일에 쓰는 데 오류가 발생했습니다"
 
 msgid "Error writing to the file"
 msgstr "해당 파일에 쓰는 데 오류가 발생했습니다"
 
-#: methods/http.cc:873
+#: methods/http.cc:879
 msgid "Error reading from server. Remote end closed connection"
 msgstr "서버에서 읽고 연결을 닫는 데 오류가 발생했습니다"
 
 msgid "Error reading from server. Remote end closed connection"
 msgstr "서버에서 읽고 연결을 닫는 데 오류가 발생했습니다"
 
-#: methods/http.cc:875
+#: methods/http.cc:881
 msgid "Error reading from server"
 msgstr "서버에서 읽는 데 오류가 발생했습니다"
 
 msgid "Error reading from server"
 msgstr "서버에서 읽는 데 오류가 발생했습니다"
 
-#: methods/http.cc:1106
+#: methods/http.cc:1112
 msgid "Bad header data"
 msgstr "헤더 데이터가 잘못되었습니다"
 
 msgid "Bad header data"
 msgstr "헤더 데이터가 잘못되었습니다"
 
-#: methods/http.cc:1123
+#: methods/http.cc:1129
 msgid "Connection failed"
 msgstr "연결이 실패했습니다"
 
 msgid "Connection failed"
 msgstr "연결이 실패했습니다"
 
-#: methods/http.cc:1214
+#: methods/http.cc:1220
 msgid "Internal error"
 msgstr "내부 오류"
 
 msgid "Internal error"
 msgstr "내부 오류"
 
index 34cfc1d6ead568b05e0fcf4d0653692a5fa55b44..11eb54798b3e0603db8e2c0a07cc52eba39cc346 100644 (file)
--- a/po/nb.po
+++ b/po/nb.po
@@ -19,7 +19,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: apt\n"
 "Report-Msgid-Bugs-To: \n"
 msgstr ""
 "Project-Id-Version: apt\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2005-11-23 00:39+0100\n"
+"POT-Creation-Date: 2005-11-28 23:02+0100\n"
 "PO-Revision-Date: 2005-02-09 10:45+0100\n"
 "Last-Translator: Hans Fredrik Nordhaug <hans@nordhaug.priv.no>\n"
 "Language-Team: Norwegian Bokmål <i18n-nb@lister.ping.ui.no>\n"
 "PO-Revision-Date: 2005-02-09 10:45+0100\n"
 "Last-Translator: Hans Fredrik Nordhaug <hans@nordhaug.priv.no>\n"
 "Language-Team: Norwegian Bokmål <i18n-nb@lister.ping.ui.no>\n"
@@ -1823,7 +1823,7 @@ msgstr "Tidsavbrudd p
 msgid "Unable to accept connection"
 msgstr "Klarte ikke å godta tilkoblingen"
 
 msgid "Unable to accept connection"
 msgstr "Klarte ikke å godta tilkoblingen"
 
-#: methods/ftp.cc:864 methods/http.cc:957 methods/rsh.cc:303
+#: methods/ftp.cc:864 methods/http.cc:963 methods/rsh.cc:303
 msgid "Problem hashing file"
 msgstr "Problem ved oppretting av nøkkel for fil"
 
 msgid "Problem hashing file"
 msgstr "Problem ved oppretting av nøkkel for fil"
 
@@ -2000,31 +2000,31 @@ msgstr "Tidsavbrudd p
 msgid "Error writing to output file"
 msgstr "Feil ved skriving til utfil"
 
 msgid "Error writing to output file"
 msgstr "Feil ved skriving til utfil"
 
-#: methods/http.cc:834
+#: methods/http.cc:837
 msgid "Error writing to file"
 msgstr "Feil ved skriving til fil"
 
 msgid "Error writing to file"
 msgstr "Feil ved skriving til fil"
 
-#: methods/http.cc:859
+#: methods/http.cc:865
 msgid "Error writing to the file"
 msgstr "Feil ved skriving til fila"
 
 msgid "Error writing to the file"
 msgstr "Feil ved skriving til fila"
 
-#: methods/http.cc:873
+#: methods/http.cc:879
 msgid "Error reading from server. Remote end closed connection"
 msgstr "Feil ved lesing fra tjeneren. Forbindelsen ble lukket i andre enden"
 
 msgid "Error reading from server. Remote end closed connection"
 msgstr "Feil ved lesing fra tjeneren. Forbindelsen ble lukket i andre enden"
 
-#: methods/http.cc:875
+#: methods/http.cc:881
 msgid "Error reading from server"
 msgstr "Feil ved lesing fra tjeneren"
 
 msgid "Error reading from server"
 msgstr "Feil ved lesing fra tjeneren"
 
-#: methods/http.cc:1106
+#: methods/http.cc:1112
 msgid "Bad header data"
 msgstr "Ødelagte hodedata"
 
 msgid "Bad header data"
 msgstr "Ødelagte hodedata"
 
-#: methods/http.cc:1123
+#: methods/http.cc:1129
 msgid "Connection failed"
 msgstr "Forbindelsen mislykkes"
 
 msgid "Connection failed"
 msgstr "Forbindelsen mislykkes"
 
-#: methods/http.cc:1214
+#: methods/http.cc:1220
 msgid "Internal error"
 msgstr "Intern feil"
 
 msgid "Internal error"
 msgstr "Intern feil"
 
index 3dc814ea200a6aed46b92bf067841263c22eb468..501c3e42c79065a44a007c615b7f7e950c6879c2 100644 (file)
--- a/po/nl.po
+++ b/po/nl.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: apt\n"
 "Report-Msgid-Bugs-To: \n"
 msgstr ""
 "Project-Id-Version: apt\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2005-11-23 00:39+0100\n"
+"POT-Creation-Date: 2005-11-28 23:02+0100\n"
 "PO-Revision-Date: 2005-02-10 17:35+0100\n"
 "Last-Translator: Bart Cornelis <cobaco@linux.be>\n"
 "Language-Team: debian-l10n-dutch <debian-l10n-dutch@lists.debian.org>\n"
 "PO-Revision-Date: 2005-02-10 17:35+0100\n"
 "Last-Translator: Bart Cornelis <cobaco@linux.be>\n"
 "Language-Team: debian-l10n-dutch <debian-l10n-dutch@lists.debian.org>\n"
@@ -1831,7 +1831,7 @@ msgstr "Datasocket verbinding is verlopen"
 msgid "Unable to accept connection"
 msgstr "Kan de verbinding niet aanvaarden"
 
 msgid "Unable to accept connection"
 msgstr "Kan de verbinding niet aanvaarden"
 
-#: methods/ftp.cc:864 methods/http.cc:957 methods/rsh.cc:303
+#: methods/ftp.cc:864 methods/http.cc:963 methods/rsh.cc:303
 msgid "Problem hashing file"
 msgstr "Probleem bij het hashen van het bestand"
 
 msgid "Problem hashing file"
 msgstr "Probleem bij het hashen van het bestand"
 
@@ -2010,32 +2010,32 @@ msgstr "Verbinding verliep"
 msgid "Error writing to output file"
 msgstr "Fout bij het schrijven naar het uitvoerbestand"
 
 msgid "Error writing to output file"
 msgstr "Fout bij het schrijven naar het uitvoerbestand"
 
-#: methods/http.cc:834
+#: methods/http.cc:837
 msgid "Error writing to file"
 msgstr "Fout bij het schrijven naar bestand"
 
 msgid "Error writing to file"
 msgstr "Fout bij het schrijven naar bestand"
 
-#: methods/http.cc:859
+#: methods/http.cc:865
 msgid "Error writing to the file"
 msgstr "Fout bij het schrijven naar het bestand"
 
 msgid "Error writing to the file"
 msgstr "Fout bij het schrijven naar het bestand"
 
-#: methods/http.cc:873
+#: methods/http.cc:879
 msgid "Error reading from server. Remote end closed connection"
 msgstr ""
 "Fout bij het lezen van de server, andere kant heeft de verbinding gesloten"
 
 msgid "Error reading from server. Remote end closed connection"
 msgstr ""
 "Fout bij het lezen van de server, andere kant heeft de verbinding gesloten"
 
-#: methods/http.cc:875
+#: methods/http.cc:881
 msgid "Error reading from server"
 msgstr "Fout bij het lezen van de server"
 
 msgid "Error reading from server"
 msgstr "Fout bij het lezen van de server"
 
-#: methods/http.cc:1106
+#: methods/http.cc:1112
 msgid "Bad header data"
 msgstr "Foute koptekstdata"
 
 msgid "Bad header data"
 msgstr "Foute koptekstdata"
 
-#: methods/http.cc:1123
+#: methods/http.cc:1129
 msgid "Connection failed"
 msgstr "Verbinding mislukt"
 
 msgid "Connection failed"
 msgstr "Verbinding mislukt"
 
-#: methods/http.cc:1214
+#: methods/http.cc:1220
 msgid "Internal error"
 msgstr "Interne fout"
 
 msgid "Internal error"
 msgstr "Interne fout"
 
index f57bba2af1fac40191e7eda66bc713d13f952596..7bc37dc01c11e17be7631046b92d6c401c311692 100644 (file)
--- a/po/nn.po
+++ b/po/nn.po
@@ -9,7 +9,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: apt_nn\n"
 "Report-Msgid-Bugs-To: \n"
 msgstr ""
 "Project-Id-Version: apt_nn\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2005-11-23 00:39+0100\n"
+"POT-Creation-Date: 2005-11-28 23:02+0100\n"
 "PO-Revision-Date: 2005-02-14 23:30+0100\n"
 "Last-Translator: Håvard Korsvoll <korsvoll@skulelinux.no>\n"
 "Language-Team: Norwegian nynorsk <i18n-nn@lister.ping.uio.no>\n"
 "PO-Revision-Date: 2005-02-14 23:30+0100\n"
 "Last-Translator: Håvard Korsvoll <korsvoll@skulelinux.no>\n"
 "Language-Team: Norwegian nynorsk <i18n-nn@lister.ping.uio.no>\n"
@@ -1806,7 +1806,7 @@ msgstr "Tidsavbrot p
 msgid "Unable to accept connection"
 msgstr "Klarte ikkje godta tilkoplinga"
 
 msgid "Unable to accept connection"
 msgstr "Klarte ikkje godta tilkoplinga"
 
-#: methods/ftp.cc:864 methods/http.cc:957 methods/rsh.cc:303
+#: methods/ftp.cc:864 methods/http.cc:963 methods/rsh.cc:303
 msgid "Problem hashing file"
 msgstr "Problem ved oppretting av nøkkel for fil"
 
 msgid "Problem hashing file"
 msgstr "Problem ved oppretting av nøkkel for fil"
 
@@ -1983,31 +1983,31 @@ msgstr "Tidsavbrot p
 msgid "Error writing to output file"
 msgstr "Feil ved skriving til utfil"
 
 msgid "Error writing to output file"
 msgstr "Feil ved skriving til utfil"
 
-#: methods/http.cc:834
+#: methods/http.cc:837
 msgid "Error writing to file"
 msgstr "Feil ved skriving til fil"
 
 msgid "Error writing to file"
 msgstr "Feil ved skriving til fil"
 
-#: methods/http.cc:859
+#: methods/http.cc:865
 msgid "Error writing to the file"
 msgstr "Feil ved skriving til fila"
 
 msgid "Error writing to the file"
 msgstr "Feil ved skriving til fila"
 
-#: methods/http.cc:873
+#: methods/http.cc:879
 msgid "Error reading from server. Remote end closed connection"
 msgstr "Feil ved lesing frå tenaren. Sambandet vart lukka i andre enden"
 
 msgid "Error reading from server. Remote end closed connection"
 msgstr "Feil ved lesing frå tenaren. Sambandet vart lukka i andre enden"
 
-#: methods/http.cc:875
+#: methods/http.cc:881
 msgid "Error reading from server"
 msgstr "Feil ved lesing frå tenaren"
 
 msgid "Error reading from server"
 msgstr "Feil ved lesing frå tenaren"
 
-#: methods/http.cc:1106
+#: methods/http.cc:1112
 msgid "Bad header data"
 msgstr "Øydelagde hovuddata"
 
 msgid "Bad header data"
 msgstr "Øydelagde hovuddata"
 
-#: methods/http.cc:1123
+#: methods/http.cc:1129
 msgid "Connection failed"
 msgstr "Sambandet mislukkast"
 
 msgid "Connection failed"
 msgstr "Sambandet mislukkast"
 
-#: methods/http.cc:1214
+#: methods/http.cc:1220
 msgid "Internal error"
 msgstr "Intern feil"
 
 msgid "Internal error"
 msgstr "Intern feil"
 
index 54e94c641d4f5a6a2b11fdbeb4a79133a7566a93..47bce476bbecc0f1ca57cf49b766b63e6b781c21 100644 (file)
--- a/po/pl.po
+++ b/po/pl.po
@@ -6,7 +6,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: apt 0.5.5\n"
 "Report-Msgid-Bugs-To: \n"
 msgstr ""
 "Project-Id-Version: apt 0.5.5\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2005-11-23 00:39+0100\n"
+"POT-Creation-Date: 2005-11-28 23:02+0100\n"
 "PO-Revision-Date: 2005-02-11 11:47+0100\n"
 "Last-Translator: Bartosz Fenski <fenio@debian.org>\n"
 "Language-Team: Polish <pddp@debian.linux.org.pl>\n"
 "PO-Revision-Date: 2005-02-11 11:47+0100\n"
 "Last-Translator: Bartosz Fenski <fenio@debian.org>\n"
 "Language-Team: Polish <pddp@debian.linux.org.pl>\n"
@@ -1816,7 +1816,7 @@ msgstr "Przekroczony czas po
 msgid "Unable to accept connection"
 msgstr "Nie uda³o siê przyj±æ po³±czenia"
 
 msgid "Unable to accept connection"
 msgstr "Nie uda³o siê przyj±æ po³±czenia"
 
-#: methods/ftp.cc:864 methods/http.cc:957 methods/rsh.cc:303
+#: methods/ftp.cc:864 methods/http.cc:963 methods/rsh.cc:303
 msgid "Problem hashing file"
 msgstr "Nie uda³o siê obliczyæ skrótu pliku"
 
 msgid "Problem hashing file"
 msgstr "Nie uda³o siê obliczyæ skrótu pliku"
 
@@ -1993,31 +1993,31 @@ msgstr "Przekroczenie czasu po
 msgid "Error writing to output file"
 msgstr "B³±d przy pisaniu do pliku wyj¶ciowego"
 
 msgid "Error writing to output file"
 msgstr "B³±d przy pisaniu do pliku wyj¶ciowego"
 
-#: methods/http.cc:834
+#: methods/http.cc:837
 msgid "Error writing to file"
 msgstr "B³±d przy pisaniu do pliku"
 
 msgid "Error writing to file"
 msgstr "B³±d przy pisaniu do pliku"
 
-#: methods/http.cc:859
+#: methods/http.cc:865
 msgid "Error writing to the file"
 msgstr "B³±d przy pisaniu do pliku"
 
 msgid "Error writing to the file"
 msgstr "B³±d przy pisaniu do pliku"
 
-#: methods/http.cc:873
+#: methods/http.cc:879
 msgid "Error reading from server. Remote end closed connection"
 msgstr "B³±d czytania z serwera: Zdalna strona zamknê³a po³±czenie"
 
 msgid "Error reading from server. Remote end closed connection"
 msgstr "B³±d czytania z serwera: Zdalna strona zamknê³a po³±czenie"
 
-#: methods/http.cc:875
+#: methods/http.cc:881
 msgid "Error reading from server"
 msgstr "B³±d czytania z serwera"
 
 msgid "Error reading from server"
 msgstr "B³±d czytania z serwera"
 
-#: methods/http.cc:1106
+#: methods/http.cc:1112
 msgid "Bad header data"
 msgstr "B³êdne dane nag³ówka"
 
 msgid "Bad header data"
 msgstr "B³êdne dane nag³ówka"
 
-#: methods/http.cc:1123
+#: methods/http.cc:1129
 msgid "Connection failed"
 msgstr "Po³±czenie nie uda³o siê"
 
 msgid "Connection failed"
 msgstr "Po³±czenie nie uda³o siê"
 
-#: methods/http.cc:1214
+#: methods/http.cc:1220
 msgid "Internal error"
 msgstr "B³±d wewnêtrzny"
 
 msgid "Internal error"
 msgstr "B³±d wewnêtrzny"
 
index af44e7f15ae0c0c3ec1b24d35bbc88474cbe0f3e..0557a71fdc3fc634bb734b2ec14351ea81bbb916 100644 (file)
--- a/po/pt.po
+++ b/po/pt.po
@@ -6,7 +6,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: apt\n"
 "Report-Msgid-Bugs-To: \n"
 msgstr ""
 "Project-Id-Version: apt\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2005-11-23 00:39+0100\n"
+"POT-Creation-Date: 2005-11-28 23:02+0100\n"
 "PO-Revision-Date: 2005-03-07 22:20+0000\n"
 "Last-Translator: Miguel Figueiredo <elmig@debianpt.org>\n"
 "Language-Team: Portuguese <traduz@debianpt.org>\n"
 "PO-Revision-Date: 2005-03-07 22:20+0000\n"
 "Last-Translator: Miguel Figueiredo <elmig@debianpt.org>\n"
 "Language-Team: Portuguese <traduz@debianpt.org>\n"
@@ -1813,7 +1813,7 @@ msgstr "Ligação de socket de dados expirou"
 msgid "Unable to accept connection"
 msgstr "Impossível aceitar ligação"
 
 msgid "Unable to accept connection"
 msgstr "Impossível aceitar ligação"
 
-#: methods/ftp.cc:864 methods/http.cc:957 methods/rsh.cc:303
+#: methods/ftp.cc:864 methods/http.cc:963 methods/rsh.cc:303
 msgid "Problem hashing file"
 msgstr "Problema fazendo o hash do ficheiro"
 
 msgid "Problem hashing file"
 msgstr "Problema fazendo o hash do ficheiro"
 
@@ -1990,31 +1990,31 @@ msgstr "A ligação expirou"
 msgid "Error writing to output file"
 msgstr "Erro gravando para ficheiro de saída"
 
 msgid "Error writing to output file"
 msgstr "Erro gravando para ficheiro de saída"
 
-#: methods/http.cc:834
+#: methods/http.cc:837
 msgid "Error writing to file"
 msgstr "Erro gravando para ficheiro"
 
 msgid "Error writing to file"
 msgstr "Erro gravando para ficheiro"
 
-#: methods/http.cc:859
+#: methods/http.cc:865
 msgid "Error writing to the file"
 msgstr "Erro gravando para o ficheiro"
 
 msgid "Error writing to the file"
 msgstr "Erro gravando para o ficheiro"
 
-#: methods/http.cc:873
+#: methods/http.cc:879
 msgid "Error reading from server. Remote end closed connection"
 msgstr "Erro lendo do servidor. O Remoto fechou a ligação"
 
 msgid "Error reading from server. Remote end closed connection"
 msgstr "Erro lendo do servidor. O Remoto fechou a ligação"
 
-#: methods/http.cc:875
+#: methods/http.cc:881
 msgid "Error reading from server"
 msgstr "Erro lendo do servidor"
 
 msgid "Error reading from server"
 msgstr "Erro lendo do servidor"
 
-#: methods/http.cc:1106
+#: methods/http.cc:1112
 msgid "Bad header data"
 msgstr "Dados de cabeçalho errados"
 
 msgid "Bad header data"
 msgstr "Dados de cabeçalho errados"
 
-#: methods/http.cc:1123
+#: methods/http.cc:1129
 msgid "Connection failed"
 msgstr "Falhou a ligação"
 
 msgid "Connection failed"
 msgstr "Falhou a ligação"
 
-#: methods/http.cc:1214
+#: methods/http.cc:1220
 msgid "Internal error"
 msgstr "Erro interno"
 
 msgid "Internal error"
 msgstr "Erro interno"
 
index 54946a2c433908c721c03993782d8aa392cbb1b2..f50f8a1764df5fdda8f9f15430c36fe57fa6398f 100644 (file)
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: apt\n"
 "Report-Msgid-Bugs-To: \n"
 msgstr ""
 "Project-Id-Version: apt\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2005-11-23 00:39+0100\n"
+"POT-Creation-Date: 2005-11-28 23:02+0100\n"
 "PO-Revision-Date: 2005-06-16 10:24-0300\n"
 "Last-Translator: André Luís Lopes <andrelop@debian.org>\n"
 "Language-Team: Debian-BR Project <debian-l10n-portuguese@lists.debian.org>\n"
 "PO-Revision-Date: 2005-06-16 10:24-0300\n"
 "Last-Translator: André Luís Lopes <andrelop@debian.org>\n"
 "Language-Team: Debian-BR Project <debian-l10n-portuguese@lists.debian.org>\n"
@@ -1813,7 +1813,7 @@ msgstr "Conex
 msgid "Unable to accept connection"
 msgstr "Impossível aceitar conexão"
 
 msgid "Unable to accept connection"
 msgstr "Impossível aceitar conexão"
 
-#: methods/ftp.cc:864 methods/http.cc:957 methods/rsh.cc:303
+#: methods/ftp.cc:864 methods/http.cc:963 methods/rsh.cc:303
 msgid "Problem hashing file"
 msgstr "Problema fazendo o hash do arquivo"
 
 msgid "Problem hashing file"
 msgstr "Problema fazendo o hash do arquivo"
 
@@ -1990,31 +1990,31 @@ msgstr "Conex
 msgid "Error writing to output file"
 msgstr "Erro gravando para arquivo de saída"
 
 msgid "Error writing to output file"
 msgstr "Erro gravando para arquivo de saída"
 
-#: methods/http.cc:834
+#: methods/http.cc:837
 msgid "Error writing to file"
 msgstr "Erro gravando para arquivo"
 
 msgid "Error writing to file"
 msgstr "Erro gravando para arquivo"
 
-#: methods/http.cc:859
+#: methods/http.cc:865
 msgid "Error writing to the file"
 msgstr "Erro gravando para o arquivo"
 
 msgid "Error writing to the file"
 msgstr "Erro gravando para o arquivo"
 
-#: methods/http.cc:873
+#: methods/http.cc:879
 msgid "Error reading from server. Remote end closed connection"
 msgstr "Erro lendo do servidor Ponto remoto fechou a conexão"
 
 msgid "Error reading from server. Remote end closed connection"
 msgstr "Erro lendo do servidor Ponto remoto fechou a conexão"
 
-#: methods/http.cc:875
+#: methods/http.cc:881
 msgid "Error reading from server"
 msgstr "Erro lendo do servidor"
 
 msgid "Error reading from server"
 msgstr "Erro lendo do servidor"
 
-#: methods/http.cc:1106
+#: methods/http.cc:1112
 msgid "Bad header data"
 msgstr "Dados de cabeçalho ruins"
 
 msgid "Bad header data"
 msgstr "Dados de cabeçalho ruins"
 
-#: methods/http.cc:1123
+#: methods/http.cc:1129
 msgid "Connection failed"
 msgstr "Conexão falhou."
 
 msgid "Connection failed"
 msgstr "Conexão falhou."
 
-#: methods/http.cc:1214
+#: methods/http.cc:1220
 msgid "Internal error"
 msgstr "Erro interno"
 
 msgid "Internal error"
 msgstr "Erro interno"
 
index 9497f70b21c568f6987959c986047479dddcce44..cd2884b6a30ce592dd80dbb9fe9c909f136a3353 100644 (file)
--- a/po/ro.po
+++ b/po/ro.po
@@ -6,7 +6,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: apt_po_ro\n"
 "Report-Msgid-Bugs-To: \n"
 msgstr ""
 "Project-Id-Version: apt_po_ro\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2005-11-23 00:39+0100\n"
+"POT-Creation-Date: 2005-11-28 23:02+0100\n"
 "PO-Revision-Date: 2005-08-25 17:43+0300\n"
 "Last-Translator: Sorin Batariuc <sorin@bonbon.net>\n"
 "Language-Team: Romanian <debian-l10-romanian@lists.debian.org>\n"
 "PO-Revision-Date: 2005-08-25 17:43+0300\n"
 "Last-Translator: Sorin Batariuc <sorin@bonbon.net>\n"
 "Language-Team: Romanian <debian-l10-romanian@lists.debian.org>\n"
@@ -1821,7 +1821,7 @@ msgstr "Timp de conectare data socket expirat"
 msgid "Unable to accept connection"
 msgstr "Nu pot accepta conexiune"
 
 msgid "Unable to accept connection"
 msgstr "Nu pot accepta conexiune"
 
-#: methods/ftp.cc:864 methods/http.cc:957 methods/rsh.cc:303
+#: methods/ftp.cc:864 methods/http.cc:963 methods/rsh.cc:303
 msgid "Problem hashing file"
 msgstr "Problemă la indexarea fişierului"
 
 msgid "Problem hashing file"
 msgstr "Problemă la indexarea fişierului"
 
@@ -1998,32 +1998,32 @@ msgstr "Timp de conectare expirat"
 msgid "Error writing to output file"
 msgstr "Eroare la scrierea fişierului de rezultat"
 
 msgid "Error writing to output file"
 msgstr "Eroare la scrierea fişierului de rezultat"
 
-#: methods/http.cc:834
+#: methods/http.cc:837
 msgid "Error writing to file"
 msgstr "Eroare la scrierea în fişier"
 
 msgid "Error writing to file"
 msgstr "Eroare la scrierea în fişier"
 
-#: methods/http.cc:859
+#: methods/http.cc:865
 msgid "Error writing to the file"
 msgstr "Eroare la scrierea în fişierul"
 
 msgid "Error writing to the file"
 msgstr "Eroare la scrierea în fişierul"
 
-#: methods/http.cc:873
+#: methods/http.cc:879
 msgid "Error reading from server. Remote end closed connection"
 msgstr ""
 "Eroare la citirea de pe server, conexiunea a fost închisă de la distanţă"
 
 msgid "Error reading from server. Remote end closed connection"
 msgstr ""
 "Eroare la citirea de pe server, conexiunea a fost închisă de la distanţă"
 
-#: methods/http.cc:875
+#: methods/http.cc:881
 msgid "Error reading from server"
 msgstr "Eroare la citirea de pe server"
 
 msgid "Error reading from server"
 msgstr "Eroare la citirea de pe server"
 
-#: methods/http.cc:1106
+#: methods/http.cc:1112
 msgid "Bad header data"
 msgstr "Antet de date necorespunzător"
 
 msgid "Bad header data"
 msgstr "Antet de date necorespunzător"
 
-#: methods/http.cc:1123
+#: methods/http.cc:1129
 msgid "Connection failed"
 msgstr "Conectare eşuată"
 
 msgid "Connection failed"
 msgstr "Conectare eşuată"
 
-#: methods/http.cc:1214
+#: methods/http.cc:1220
 msgid "Internal error"
 msgstr "Eroare internă"
 
 msgid "Internal error"
 msgstr "Eroare internă"
 
index a9921de46ca78860cf33938f68e95c9588e2e4ad..82c158edf7cf06881b66fca37c3c76c6afcd7877 100644 (file)
--- a/po/ru.po
+++ b/po/ru.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: apt_po_ru\n"
 "Report-Msgid-Bugs-To: \n"
 msgstr ""
 "Project-Id-Version: apt_po_ru\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2005-11-23 00:39+0100\n"
+"POT-Creation-Date: 2005-11-28 23:02+0100\n"
 "PO-Revision-Date: 2005-10-22 12:24+0400\n"
 "Last-Translator: Yuri Kozlov <kozlov.y@gmail.com>\n"
 "Language-Team: Russian <debian-l10n-russian@lists.debian.org>\n"
 "PO-Revision-Date: 2005-10-22 12:24+0400\n"
 "Last-Translator: Yuri Kozlov <kozlov.y@gmail.com>\n"
 "Language-Team: Russian <debian-l10n-russian@lists.debian.org>\n"
@@ -1833,7 +1833,7 @@ msgstr "Время установления соединения для соке
 msgid "Unable to accept connection"
 msgstr "Невозможно принять соединение"
 
 msgid "Unable to accept connection"
 msgstr "Невозможно принять соединение"
 
-#: methods/ftp.cc:864 methods/http.cc:957 methods/rsh.cc:303
+#: methods/ftp.cc:864 methods/http.cc:963 methods/rsh.cc:303
 msgid "Problem hashing file"
 msgstr "Проблема при хэшировании файла"
 
 msgid "Problem hashing file"
 msgstr "Проблема при хэшировании файла"
 
@@ -2014,31 +2014,31 @@ msgstr "Время ожидания для соединения истекло"
 msgid "Error writing to output file"
 msgstr "Ошибка записи в выходной файл"
 
 msgid "Error writing to output file"
 msgstr "Ошибка записи в выходной файл"
 
-#: methods/http.cc:834
+#: methods/http.cc:837
 msgid "Error writing to file"
 msgstr "Ошибка записи в файл"
 
 msgid "Error writing to file"
 msgstr "Ошибка записи в файл"
 
-#: methods/http.cc:859
+#: methods/http.cc:865
 msgid "Error writing to the file"
 msgstr "Ошибка записи в файл"
 
 msgid "Error writing to the file"
 msgstr "Ошибка записи в файл"
 
-#: methods/http.cc:873
+#: methods/http.cc:879
 msgid "Error reading from server. Remote end closed connection"
 msgstr "Ошибка чтения, удалённый сервер прервал соединение"
 
 msgid "Error reading from server. Remote end closed connection"
 msgstr "Ошибка чтения, удалённый сервер прервал соединение"
 
-#: methods/http.cc:875
+#: methods/http.cc:881
 msgid "Error reading from server"
 msgstr "Ошибка чтения с сервера"
 
 msgid "Error reading from server"
 msgstr "Ошибка чтения с сервера"
 
-#: methods/http.cc:1106
+#: methods/http.cc:1112
 msgid "Bad header data"
 msgstr "Неверный заголовок данных"
 
 msgid "Bad header data"
 msgstr "Неверный заголовок данных"
 
-#: methods/http.cc:1123
+#: methods/http.cc:1129
 msgid "Connection failed"
 msgstr "Соединение разорвано"
 
 msgid "Connection failed"
 msgstr "Соединение разорвано"
 
-#: methods/http.cc:1214
+#: methods/http.cc:1220
 msgid "Internal error"
 msgstr "Внутренняя ошибка"
 
 msgid "Internal error"
 msgstr "Внутренняя ошибка"
 
index 451d2379e469ff5dcb2d709f6cbaec222d7bc251..4c5c03fbf3a4c5a8f8b96889d99d8f108154efd1 100644 (file)
--- a/po/sk.po
+++ b/po/sk.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: apt\n"
 "Report-Msgid-Bugs-To: \n"
 msgstr ""
 "Project-Id-Version: apt\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2005-11-23 00:39+0100\n"
+"POT-Creation-Date: 2005-11-28 23:02+0100\n"
 "PO-Revision-Date: 2005-07-01 09:34+0200\n"
 "Last-Translator: Peter Mann <Peter.Mann@tuke.sk>\n"
 "Language-Team: Slovak <sk-i18n@lists.linux.sk>\n"
 "PO-Revision-Date: 2005-07-01 09:34+0200\n"
 "Last-Translator: Peter Mann <Peter.Mann@tuke.sk>\n"
 "Language-Team: Slovak <sk-i18n@lists.linux.sk>\n"
@@ -1797,7 +1797,7 @@ msgstr "Uplynulo spojenie dátového socketu"
 msgid "Unable to accept connection"
 msgstr "Spojenie sa nedá prijať"
 
 msgid "Unable to accept connection"
 msgstr "Spojenie sa nedá prijať"
 
-#: methods/ftp.cc:864 methods/http.cc:957 methods/rsh.cc:303
+#: methods/ftp.cc:864 methods/http.cc:963 methods/rsh.cc:303
 msgid "Problem hashing file"
 msgstr "Problém s hashovaním súboru"
 
 msgid "Problem hashing file"
 msgstr "Problém s hashovaním súboru"
 
@@ -1974,31 +1974,31 @@ msgstr "Uplynul čas spojenia"
 msgid "Error writing to output file"
 msgstr "Chyba zápisu do výstupného súboru"
 
 msgid "Error writing to output file"
 msgstr "Chyba zápisu do výstupného súboru"
 
-#: methods/http.cc:834
+#: methods/http.cc:837
 msgid "Error writing to file"
 msgstr "Chyba zápisu do súboru"
 
 msgid "Error writing to file"
 msgstr "Chyba zápisu do súboru"
 
-#: methods/http.cc:859
+#: methods/http.cc:865
 msgid "Error writing to the file"
 msgstr "Chyba zápisu do súboru"
 
 msgid "Error writing to the file"
 msgstr "Chyba zápisu do súboru"
 
-#: methods/http.cc:873
+#: methods/http.cc:879
 msgid "Error reading from server. Remote end closed connection"
 msgstr "Chyba pri čítaní zo servera. Druhá strana ukončila spojenie"
 
 msgid "Error reading from server. Remote end closed connection"
 msgstr "Chyba pri čítaní zo servera. Druhá strana ukončila spojenie"
 
-#: methods/http.cc:875
+#: methods/http.cc:881
 msgid "Error reading from server"
 msgstr "Chyba pri čítaní zo servera"
 
 msgid "Error reading from server"
 msgstr "Chyba pri čítaní zo servera"
 
-#: methods/http.cc:1106
+#: methods/http.cc:1112
 msgid "Bad header data"
 msgstr "Zlé dátové záhlavie"
 
 msgid "Bad header data"
 msgstr "Zlé dátové záhlavie"
 
-#: methods/http.cc:1123
+#: methods/http.cc:1129
 msgid "Connection failed"
 msgstr "Spojenie zlyhalo"
 
 msgid "Connection failed"
 msgstr "Spojenie zlyhalo"
 
-#: methods/http.cc:1214
+#: methods/http.cc:1220
 msgid "Internal error"
 msgstr "Vnútorná chyba"
 
 msgid "Internal error"
 msgstr "Vnútorná chyba"
 
index 92fbaaa4ab40f07e242871a93aa0f97ff6798067..92bfd0f716c6bceaf6a13f37d4a3ce33447da9ec 100644 (file)
--- a/po/sl.po
+++ b/po/sl.po
@@ -4,7 +4,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: apt 0.5.5\n"
 "Report-Msgid-Bugs-To: \n"
 msgstr ""
 "Project-Id-Version: apt 0.5.5\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2005-11-23 00:39+0100\n"
+"POT-Creation-Date: 2005-11-28 23:02+0100\n"
 "PO-Revision-Date: 2005-02-16 22:18+0100\n"
 "Last-Translator: Jure Èuhalev <gandalf@owca.info>\n"
 "Language-Team: Slovenian <sl@li.org>\n"
 "PO-Revision-Date: 2005-02-16 22:18+0100\n"
 "Last-Translator: Jure Èuhalev <gandalf@owca.info>\n"
 "Language-Team: Slovenian <sl@li.org>\n"
@@ -1796,7 +1796,7 @@ msgstr "Povezava podatkovne vti
 msgid "Unable to accept connection"
 msgstr "Ni mogoèe sprejeti povezave"
 
 msgid "Unable to accept connection"
 msgstr "Ni mogoèe sprejeti povezave"
 
-#: methods/ftp.cc:864 methods/http.cc:957 methods/rsh.cc:303
+#: methods/ftp.cc:864 methods/http.cc:963 methods/rsh.cc:303
 msgid "Problem hashing file"
 msgstr "Te¾ava pri razpr¹evanju datoteke"
 
 msgid "Problem hashing file"
 msgstr "Te¾ava pri razpr¹evanju datoteke"
 
@@ -1973,31 +1973,31 @@ msgstr "
 msgid "Error writing to output file"
 msgstr "Napaka pri pisanju v izhodno datoteko"
 
 msgid "Error writing to output file"
 msgstr "Napaka pri pisanju v izhodno datoteko"
 
-#: methods/http.cc:834
+#: methods/http.cc:837
 msgid "Error writing to file"
 msgstr "Napaka pri pisanju v datoteko"
 
 msgid "Error writing to file"
 msgstr "Napaka pri pisanju v datoteko"
 
-#: methods/http.cc:859
+#: methods/http.cc:865
 msgid "Error writing to the file"
 msgstr "Napaka pri pisanju v datoteko"
 
 msgid "Error writing to the file"
 msgstr "Napaka pri pisanju v datoteko"
 
-#: methods/http.cc:873
+#: methods/http.cc:879
 msgid "Error reading from server. Remote end closed connection"
 msgstr "Napaka pri branju oddaljene in zaprte povezave s stre¾nika "
 
 msgid "Error reading from server. Remote end closed connection"
 msgstr "Napaka pri branju oddaljene in zaprte povezave s stre¾nika "
 
-#: methods/http.cc:875
+#: methods/http.cc:881
 msgid "Error reading from server"
 msgstr "Napaka pri branju s stre¾nika"
 
 msgid "Error reading from server"
 msgstr "Napaka pri branju s stre¾nika"
 
-#: methods/http.cc:1106
+#: methods/http.cc:1112
 msgid "Bad header data"
 msgstr "Napaèni podatki glave"
 
 msgid "Bad header data"
 msgstr "Napaèni podatki glave"
 
-#: methods/http.cc:1123
+#: methods/http.cc:1129
 msgid "Connection failed"
 msgstr "Povezava ni uspela"
 
 msgid "Connection failed"
 msgstr "Povezava ni uspela"
 
-#: methods/http.cc:1214
+#: methods/http.cc:1220
 msgid "Internal error"
 msgstr "Notranja napaka"
 
 msgid "Internal error"
 msgstr "Notranja napaka"
 
index b0d1e03ac25040c22a47cf3443bf070421b629d0..56770b0669d4c3c9b19228d6fa2a11579a70d86a 100644 (file)
--- a/po/sv.po
+++ b/po/sv.po
@@ -6,7 +6,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: apt\n"
 "Report-Msgid-Bugs-To: \n"
 msgstr ""
 "Project-Id-Version: apt\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2005-11-23 00:39+0100\n"
+"POT-Creation-Date: 2005-11-28 23:02+0100\n"
 "PO-Revision-Date: 2005-11-02 23:56+0100\n"
 "Last-Translator: Daniel Nylander <po@danielnylander.se>\n"
 "Language-Team: Swedish <sv@li.org>\n"
 "PO-Revision-Date: 2005-11-02 23:56+0100\n"
 "Last-Translator: Daniel Nylander <po@danielnylander.se>\n"
 "Language-Team: Swedish <sv@li.org>\n"
@@ -1809,7 +1809,7 @@ msgstr "Anslutet datauttag (socket) fick inte svar inom tidsgr
 msgid "Unable to accept connection"
 msgstr "Kunde inte ta emot anslutning"
 
 msgid "Unable to accept connection"
 msgstr "Kunde inte ta emot anslutning"
 
-#: methods/ftp.cc:864 methods/http.cc:957 methods/rsh.cc:303
+#: methods/ftp.cc:864 methods/http.cc:963 methods/rsh.cc:303
 msgid "Problem hashing file"
 msgstr "Problem med att lägga filen till hashtabellen"
 
 msgid "Problem hashing file"
 msgstr "Problem med att lägga filen till hashtabellen"
 
@@ -1992,31 +1992,31 @@ msgstr "Tidsgr
 msgid "Error writing to output file"
 msgstr "Fel vid skrivning till utdatafil"
 
 msgid "Error writing to output file"
 msgstr "Fel vid skrivning till utdatafil"
 
-#: methods/http.cc:834
+#: methods/http.cc:837
 msgid "Error writing to file"
 msgstr "Fel vid skrivning till fil"
 
 msgid "Error writing to file"
 msgstr "Fel vid skrivning till fil"
 
-#: methods/http.cc:859
+#: methods/http.cc:865
 msgid "Error writing to the file"
 msgstr "Fel vid skrivning till filen"
 
 msgid "Error writing to the file"
 msgstr "Fel vid skrivning till filen"
 
-#: methods/http.cc:873
+#: methods/http.cc:879
 msgid "Error reading from server. Remote end closed connection"
 msgstr "Fel vid läsning från server: Andra änden stängde förbindelsen"
 
 msgid "Error reading from server. Remote end closed connection"
 msgstr "Fel vid läsning från server: Andra änden stängde förbindelsen"
 
-#: methods/http.cc:875
+#: methods/http.cc:881
 msgid "Error reading from server"
 msgstr "Fel vid läsning från server"
 
 msgid "Error reading from server"
 msgstr "Fel vid läsning från server"
 
-#: methods/http.cc:1106
+#: methods/http.cc:1112
 msgid "Bad header data"
 msgstr "Trasigt data i huvud"
 
 msgid "Bad header data"
 msgstr "Trasigt data i huvud"
 
-#: methods/http.cc:1123
+#: methods/http.cc:1129
 msgid "Connection failed"
 msgstr "Anslutning misslyckades"
 
 msgid "Connection failed"
 msgstr "Anslutning misslyckades"
 
-#: methods/http.cc:1214
+#: methods/http.cc:1220
 msgid "Internal error"
 msgstr "Internt fel"
 
 msgid "Internal error"
 msgstr "Internt fel"
 
index 18f664fafcc3d6de08823f8c80c63cfa84839eeb..55d8106d1159d28538097505bca710c323063dcf 100644 (file)
--- a/po/tl.po
+++ b/po/tl.po
@@ -10,7 +10,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: apt\n"
 "Report-Msgid-Bugs-To: \n"
 msgstr ""
 "Project-Id-Version: apt\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2005-11-23 00:39+0100\n"
+"POT-Creation-Date: 2005-11-28 23:02+0100\n"
 "PO-Revision-Date: 2005-11-03 03:35+0800\n"
 "Last-Translator: Eric Pareja <xenos@upm.edu.ph>\n"
 "Language-Team: Tagalog <debian-tl@banwa.upm.edu.ph>\n"
 "PO-Revision-Date: 2005-11-03 03:35+0800\n"
 "Last-Translator: Eric Pareja <xenos@upm.edu.ph>\n"
 "Language-Team: Tagalog <debian-tl@banwa.upm.edu.ph>\n"
@@ -1814,7 +1814,7 @@ msgstr "Nag-timeout ang socket ng datos"
 msgid "Unable to accept connection"
 msgstr "Hindi makatanggap ng koneksyon"
 
 msgid "Unable to accept connection"
 msgstr "Hindi makatanggap ng koneksyon"
 
-#: methods/ftp.cc:864 methods/http.cc:957 methods/rsh.cc:303
+#: methods/ftp.cc:864 methods/http.cc:963 methods/rsh.cc:303
 msgid "Problem hashing file"
 msgstr "Problema sa pag-hash ng talaksan"
 
 msgid "Problem hashing file"
 msgstr "Problema sa pag-hash ng talaksan"
 
@@ -1995,31 +1995,31 @@ msgstr "Nag-timeout ang koneksyon"
 msgid "Error writing to output file"
 msgstr "Error sa pagsulat ng talaksang output"
 
 msgid "Error writing to output file"
 msgstr "Error sa pagsulat ng talaksang output"
 
-#: methods/http.cc:834
+#: methods/http.cc:837
 msgid "Error writing to file"
 msgstr "Error sa pagsulat sa talaksan"
 
 msgid "Error writing to file"
 msgstr "Error sa pagsulat sa talaksan"
 
-#: methods/http.cc:859
+#: methods/http.cc:865
 msgid "Error writing to the file"
 msgstr "Error sa pagsusulat sa talaksan"
 
 msgid "Error writing to the file"
 msgstr "Error sa pagsusulat sa talaksan"
 
-#: methods/http.cc:873
+#: methods/http.cc:879
 msgid "Error reading from server. Remote end closed connection"
 msgstr "Error sa pagbasa mula sa server, sinarhan ng remote ang koneksyon"
 
 msgid "Error reading from server. Remote end closed connection"
 msgstr "Error sa pagbasa mula sa server, sinarhan ng remote ang koneksyon"
 
-#: methods/http.cc:875
+#: methods/http.cc:881
 msgid "Error reading from server"
 msgstr "Error sa pagbasa mula sa server"
 
 msgid "Error reading from server"
 msgstr "Error sa pagbasa mula sa server"
 
-#: methods/http.cc:1106
+#: methods/http.cc:1112
 msgid "Bad header data"
 msgstr "Maling datos sa header"
 
 msgid "Bad header data"
 msgstr "Maling datos sa header"
 
-#: methods/http.cc:1123
+#: methods/http.cc:1129
 msgid "Connection failed"
 msgstr "Bigo ang koneksyon"
 
 msgid "Connection failed"
 msgstr "Bigo ang koneksyon"
 
-#: methods/http.cc:1214
+#: methods/http.cc:1220
 msgid "Internal error"
 msgstr "Internal na error"
 
 msgid "Internal error"
 msgstr "Internal na error"
 
index 6501190a16003edab5b855d90100442d25769f24..24569e23ee37f30e3b270664eab28e6309995f71 100644 (file)
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: apt 0.5.23\n"
 "Report-Msgid-Bugs-To: \n"
 msgstr ""
 "Project-Id-Version: apt 0.5.23\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2005-11-23 00:39+0100\n"
+"POT-Creation-Date: 2005-11-28 23:02+0100\n"
 "PO-Revision-Date: 2005-11-15 00:05+0800\n"
 "Last-Translator: Tchaikov <tchaikov@sjtu.edu.cn>\n"
 "Language-Team: Debian Chinese [GB] <debian-chinese-gb@lists.debian.org>\n"
 "PO-Revision-Date: 2005-11-15 00:05+0800\n"
 "Last-Translator: Tchaikov <tchaikov@sjtu.edu.cn>\n"
 "Language-Team: Debian Chinese [GB] <debian-chinese-gb@lists.debian.org>\n"
@@ -1778,7 +1778,7 @@ msgstr "数据套接字连接超时"
 msgid "Unable to accept connection"
 msgstr "无法接受连接"
 
 msgid "Unable to accept connection"
 msgstr "无法接受连接"
 
-#: methods/ftp.cc:864 methods/http.cc:957 methods/rsh.cc:303
+#: methods/ftp.cc:864 methods/http.cc:963 methods/rsh.cc:303
 msgid "Problem hashing file"
 msgstr "把文件加入散列表时出错"
 
 msgid "Problem hashing file"
 msgstr "把文件加入散列表时出错"
 
@@ -1953,31 +1953,31 @@ msgstr "连接服务器超时"
 msgid "Error writing to output file"
 msgstr "写输出文件时出错"
 
 msgid "Error writing to output file"
 msgstr "写输出文件时出错"
 
-#: methods/http.cc:834
+#: methods/http.cc:837
 msgid "Error writing to file"
 msgstr "写文件时出错"
 
 msgid "Error writing to file"
 msgstr "写文件时出错"
 
-#: methods/http.cc:859
+#: methods/http.cc:865
 msgid "Error writing to the file"
 msgstr "写文件时出错"
 
 msgid "Error writing to the file"
 msgstr "写文件时出错"
 
-#: methods/http.cc:873
+#: methods/http.cc:879
 msgid "Error reading from server. Remote end closed connection"
 msgstr "从服务器读取数据时出错,对方关闭了连接"
 
 msgid "Error reading from server. Remote end closed connection"
 msgstr "从服务器读取数据时出错,对方关闭了连接"
 
-#: methods/http.cc:875
+#: methods/http.cc:881
 msgid "Error reading from server"
 msgstr "从服务器读取数据出错"
 
 msgid "Error reading from server"
 msgstr "从服务器读取数据出错"
 
-#: methods/http.cc:1106
+#: methods/http.cc:1112
 msgid "Bad header data"
 msgstr "错误的报头数据"
 
 msgid "Bad header data"
 msgstr "错误的报头数据"
 
-#: methods/http.cc:1123
+#: methods/http.cc:1129
 msgid "Connection failed"
 msgstr "连接失败"
 
 msgid "Connection failed"
 msgstr "连接失败"
 
-#: methods/http.cc:1214
+#: methods/http.cc:1220
 msgid "Internal error"
 msgstr "内部错误"
 
 msgid "Internal error"
 msgstr "内部错误"
 
index f405147f8099a018080c271e8d944b7ce2a2fd75..739c14d3eda4857bc2b29c9ccdcbc15138f10635 100644 (file)
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: 0.5.4\n"
 "Report-Msgid-Bugs-To: \n"
 msgstr ""
 "Project-Id-Version: 0.5.4\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2005-11-23 00:39+0100\n"
+"POT-Creation-Date: 2005-11-28 23:02+0100\n"
 "PO-Revision-Date: 2005-02-19 22:24+0800\n"
 "Last-Translator: Asho Yeh <asho@debian.org.tw>\n"
 "Language-Team: Chinese/Traditional <zh-l10n@linux.org.tw>\n"
 "PO-Revision-Date: 2005-02-19 22:24+0800\n"
 "Last-Translator: Asho Yeh <asho@debian.org.tw>\n"
 "Language-Team: Chinese/Traditional <zh-l10n@linux.org.tw>\n"
@@ -1789,7 +1789,7 @@ msgstr "Data socket 連線逾時"
 msgid "Unable to accept connection"
 msgstr "無法允許連線"
 
 msgid "Unable to accept connection"
 msgstr "無法允許連線"
 
-#: methods/ftp.cc:864 methods/http.cc:957 methods/rsh.cc:303
+#: methods/ftp.cc:864 methods/http.cc:963 methods/rsh.cc:303
 msgid "Problem hashing file"
 msgstr "問題雜湊表"
 
 msgid "Problem hashing file"
 msgstr "問題雜湊表"
 
@@ -1966,31 +1966,31 @@ msgstr "連線逾時"
 msgid "Error writing to output file"
 msgstr "寫入輸出檔時發生錯誤"
 
 msgid "Error writing to output file"
 msgstr "寫入輸出檔時發生錯誤"
 
-#: methods/http.cc:834
+#: methods/http.cc:837
 msgid "Error writing to file"
 msgstr "寫入檔案時發生錯誤"
 
 msgid "Error writing to file"
 msgstr "寫入檔案時發生錯誤"
 
-#: methods/http.cc:859
+#: methods/http.cc:865
 msgid "Error writing to the file"
 msgstr "寫入檔案時發生錯誤"
 
 msgid "Error writing to the file"
 msgstr "寫入檔案時發生錯誤"
 
-#: methods/http.cc:873
+#: methods/http.cc:879
 msgid "Error reading from server. Remote end closed connection"
 msgstr "從遠端主機讀取錯誤,關閉連線"
 
 msgid "Error reading from server. Remote end closed connection"
 msgstr "從遠端主機讀取錯誤,關閉連線"
 
-#: methods/http.cc:875
+#: methods/http.cc:881
 msgid "Error reading from server"
 msgstr "從伺服器讀取發生錯誤"
 
 msgid "Error reading from server"
 msgstr "從伺服器讀取發生錯誤"
 
-#: methods/http.cc:1106
+#: methods/http.cc:1112
 msgid "Bad header data"
 msgstr "壞的標頭資料"
 
 msgid "Bad header data"
 msgstr "壞的標頭資料"
 
-#: methods/http.cc:1123
+#: methods/http.cc:1129
 msgid "Connection failed"
 msgstr "連線失敗"
 
 msgid "Connection failed"
 msgstr "連線失敗"
 
-#: methods/http.cc:1214
+#: methods/http.cc:1220
 msgid "Internal error"
 msgstr "內部錯誤"
 
 msgid "Internal error"
 msgstr "內部錯誤"