diff -Nru apt-0.8.16~exp12ubuntu10.27/apt-inst/contrib/arfile.cc apt-0.8.16~exp12ubuntu10.29/apt-inst/contrib/arfile.cc --- apt-0.8.16~exp12ubuntu10.27/apt-inst/contrib/arfile.cc 2013-04-10 20:31:54.000000000 +0000 +++ apt-0.8.16~exp12ubuntu10.29/apt-inst/contrib/arfile.cc 2020-05-28 14:43:14.000000000 +0000 @@ -91,7 +91,7 @@ StrToNum(Head.Size,Memb->Size,sizeof(Head.Size)) == false) { delete Memb; - return _error->Error(_("Invalid archive member header %s"), Head.Name); + return _error->Error(_("Invalid archive member header")); } // Check for an extra long name string @@ -115,7 +115,14 @@ else { unsigned int I = sizeof(Head.Name) - 1; - for (; Head.Name[I] == ' ' || Head.Name[I] == '/'; I--); + for (; Head.Name[I] == ' ' || Head.Name[I] == '/'; I--) + { + if (I == 0) + { + delete Memb; + return _error->Error(_("Invalid archive member header")); + } + } Memb->Name = std::string(Head.Name,I+1); } diff -Nru apt-0.8.16~exp12ubuntu10.27/apt-inst/contrib/extracttar.cc apt-0.8.16~exp12ubuntu10.29/apt-inst/contrib/extracttar.cc --- apt-0.8.16~exp12ubuntu10.27/apt-inst/contrib/extracttar.cc 2013-04-10 20:31:54.000000000 +0000 +++ apt-0.8.16~exp12ubuntu10.29/apt-inst/contrib/extracttar.cc 2020-05-28 14:43:14.000000000 +0000 @@ -300,7 +300,7 @@ default: BadRecord = true; - _error->Warning(_("Unknown TAR header type %u, member %s"),(unsigned)Tar->LinkFlag,Tar->Name); + _error->Warning(_("Unknown TAR header type %u"), (unsigned)Tar->LinkFlag); break; } diff -Nru apt-0.8.16~exp12ubuntu10.27/apt-pkg/acquire-method.cc apt-0.8.16~exp12ubuntu10.29/apt-pkg/acquire-method.cc --- apt-0.8.16~exp12ubuntu10.27/apt-pkg/acquire-method.cc 2013-04-10 20:31:54.000000000 +0000 +++ apt-0.8.16~exp12ubuntu10.29/apt-pkg/acquire-method.cc 2019-01-18 16:09:40.000000000 +0000 @@ -427,6 +427,12 @@ to keep the pipeline synchronized. */ void pkgAcqMethod::Redirect(const string &NewURI) { + if (NewURI.find_first_not_of(" !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~") != std::string::npos) + { + _error->Error("SECURITY: URL redirect target contains control characters, rejecting."); + Fail(); + return; + } std::cout << "103 Redirect\nURI: " << Queue->Uri << "\n" << "New-URI: " << NewURI << "\n" << "\n" << std::flush; diff -Nru apt-0.8.16~exp12ubuntu10.27/autom4te.cache/output.1 apt-0.8.16~exp12ubuntu10.29/autom4te.cache/output.1 --- apt-0.8.16~exp12ubuntu10.27/autom4te.cache/output.1 2015-05-20 14:49:11.000000000 +0000 +++ apt-0.8.16~exp12ubuntu10.29/autom4te.cache/output.1 2020-05-28 14:47:59.000000000 +0000 @@ -2467,7 +2467,7 @@ cat >>confdefs.h <<_ACEOF -@%:@define VERSION "0.8.16~exp12ubuntu10.24" +@%:@define VERSION "0.8.16~exp12ubuntu10.29" _ACEOF PACKAGE="apt" diff -Nru apt-0.8.16~exp12ubuntu10.27/configure apt-0.8.16~exp12ubuntu10.29/configure --- apt-0.8.16~exp12ubuntu10.27/configure 2015-05-20 14:49:11.000000000 +0000 +++ apt-0.8.16~exp12ubuntu10.29/configure 2020-05-28 14:47:59.000000000 +0000 @@ -2467,7 +2467,7 @@ cat >>confdefs.h <<_ACEOF -#define VERSION "0.8.16~exp12ubuntu10.24" +#define VERSION "0.8.16~exp12ubuntu10.29" _ACEOF PACKAGE="apt" diff -Nru apt-0.8.16~exp12ubuntu10.27/configure.in apt-0.8.16~exp12ubuntu10.29/configure.in --- apt-0.8.16~exp12ubuntu10.27/configure.in 2015-05-20 14:49:11.000000000 +0000 +++ apt-0.8.16~exp12ubuntu10.29/configure.in 2020-05-28 14:47:59.000000000 +0000 @@ -18,7 +18,7 @@ AC_CONFIG_HEADER(include/config.h:buildlib/config.h.in include/apti18n.h:buildlib/apti18n.h.in) dnl -- SET THIS TO THE RELEASE VERSION -- -AC_DEFINE_UNQUOTED(VERSION,"0.8.16~exp12ubuntu10.24") +AC_DEFINE_UNQUOTED(VERSION,"0.8.16~exp12ubuntu10.29") PACKAGE="apt" AC_DEFINE_UNQUOTED(PACKAGE,"$PACKAGE") AC_SUBST(PACKAGE) diff -Nru apt-0.8.16~exp12ubuntu10.27/debian/changelog apt-0.8.16~exp12ubuntu10.29/debian/changelog --- apt-0.8.16~exp12ubuntu10.27/debian/changelog 2016-05-17 20:49:45.000000000 +0000 +++ apt-0.8.16~exp12ubuntu10.29/debian/changelog 2020-05-28 14:43:54.000000000 +0000 @@ -1,3 +1,22 @@ +apt (0.8.16~exp12ubuntu10.29) precise-security; urgency=medium + + * SECURITY UPDATE: Out of bounds read in ar, tar implementations (LP: #1878177) + - apt-pkg/contrib/arfile.cc: Fix out-of-bounds read in member name + - apt-pkg/contrib/arfile.cc: Fix out-of-bounds read on unterminated + member names in error path + - apt-pkg/contrib/extracttar.cc: Fix out-of-bounds read on unterminated + member names in error path + - CVE-2020-3810 + + -- Leonidas S. Barbosa Thu, 28 May 2020 11:43:20 -0300 + +apt (0.8.16~exp12ubuntu10.28) precise-security; urgency=medium + + * SECURITY UPDATE: content injection in http method (CVE-2019-3462) + (LP: #1812353) + + -- Julian Andres Klode Fri, 18 Jan 2019 16:35:08 +0100 + apt (0.8.16~exp12ubuntu10.27) precise; urgency=low * When using the https transport mechanism, $no_proxy is ignored if apt is diff -Nru apt-0.8.16~exp12ubuntu10.27/po/apt-all.pot apt-0.8.16~exp12ubuntu10.29/po/apt-all.pot --- apt-0.8.16~exp12ubuntu10.27/po/apt-all.pot 2015-05-20 14:49:14.000000000 +0000 +++ apt-0.8.16~exp12ubuntu10.29/po/apt-all.pot 2020-05-28 14:48:03.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: apt \n" "Report-Msgid-Bugs-To: deity@lists.debian.org\n" -"POT-Creation-Date: 2015-05-20 16:49+0200\n" +"POT-Creation-Date: 2020-05-28 11:48-0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -1448,7 +1448,7 @@ #: apt-inst/contrib/extracttar.cc:303 #, c-format -msgid "Unknown TAR header type %u, member %s" +msgid "Unknown TAR header type %u" msgstr "" #: apt-inst/contrib/arfile.cc:74 @@ -1459,20 +1459,16 @@ msgid "Error reading archive member header" msgstr "" -#: apt-inst/contrib/arfile.cc:94 -#, c-format -msgid "Invalid archive member header %s" -msgstr "" - -#: apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:94 apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:123 msgid "Invalid archive member header" msgstr "" -#: apt-inst/contrib/arfile.cc:132 +#: apt-inst/contrib/arfile.cc:139 msgid "Archive is too short" msgstr "" -#: apt-inst/contrib/arfile.cc:136 +#: apt-inst/contrib/arfile.cc:143 msgid "Failed to read the archive headers" msgstr "" diff -Nru apt-0.8.16~exp12ubuntu10.27/po/ar.po apt-0.8.16~exp12ubuntu10.29/po/ar.po --- apt-0.8.16~exp12ubuntu10.27/po/ar.po 2015-05-20 14:49:14.000000000 +0000 +++ apt-0.8.16~exp12ubuntu10.29/po/ar.po 2020-05-28 14:48:03.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: apt_po\n" "Report-Msgid-Bugs-To: deity@lists.debian.org\n" -"POT-Creation-Date: 2015-05-20 16:49+0200\n" +"POT-Creation-Date: 2020-05-28 11:48-0300\n" "PO-Revision-Date: 2006-10-20 21:28+0300\n" "Last-Translator: Ossama M. Khayat \n" "Language-Team: Arabic \n" @@ -1471,7 +1471,7 @@ #: apt-inst/contrib/extracttar.cc:303 #, c-format -msgid "Unknown TAR header type %u, member %s" +msgid "Unknown TAR header type %u" msgstr "" #: apt-inst/contrib/arfile.cc:74 @@ -1482,20 +1482,16 @@ msgid "Error reading archive member header" msgstr "" -#: apt-inst/contrib/arfile.cc:94 -#, fuzzy, c-format -msgid "Invalid archive member header %s" -msgstr "توقيع الأرشيف غير صالح" - -#: apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:94 apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:123 msgid "Invalid archive member header" msgstr "" -#: apt-inst/contrib/arfile.cc:132 +#: apt-inst/contrib/arfile.cc:139 msgid "Archive is too short" msgstr "الأرشيف قصير جداً" -#: apt-inst/contrib/arfile.cc:136 +#: apt-inst/contrib/arfile.cc:143 msgid "Failed to read the archive headers" msgstr "فشلت قراءة ترويسات الأرشيف" @@ -3296,6 +3292,10 @@ msgid "Connection closed prematurely" msgstr "" +#, fuzzy +#~ msgid "Invalid archive member header %s" +#~ msgstr "توقيع الأرشيف غير صالح" + #~ msgid "Error occurred while processing %s (NewPackage)" #~ msgstr "حدث خطأ أثناء معالجة %s (NewPackage)" diff -Nru apt-0.8.16~exp12ubuntu10.27/po/ast.po apt-0.8.16~exp12ubuntu10.29/po/ast.po --- apt-0.8.16~exp12ubuntu10.27/po/ast.po 2015-05-20 14:49:14.000000000 +0000 +++ apt-0.8.16~exp12ubuntu10.29/po/ast.po 2020-05-28 14:48:03.000000000 +0000 @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: apt 0.7.18\n" "Report-Msgid-Bugs-To: deity@lists.debian.org\n" -"POT-Creation-Date: 2015-05-20 16:49+0200\n" +"POT-Creation-Date: 2020-05-28 11:48-0300\n" "PO-Revision-Date: 2010-10-02 23:35+0100\n" "Last-Translator: Iñigo Varela \n" "Language-Team: Asturian (ast)\n" @@ -1662,8 +1662,8 @@ msgstr "Falló la suma de control de tar, ficheru tollíu" #: apt-inst/contrib/extracttar.cc:303 -#, c-format -msgid "Unknown TAR header type %u, member %s" +#, fuzzy, c-format +msgid "Unknown TAR header type %u" msgstr "Testera del TAR triba %u desconocida, miembru %s" #: apt-inst/contrib/arfile.cc:74 @@ -1674,20 +1674,16 @@ msgid "Error reading archive member header" msgstr "Fallu al lleer la testera de miembru del ficheru" -#: apt-inst/contrib/arfile.cc:94 -#, c-format -msgid "Invalid archive member header %s" -msgstr "Testera de miembru del archivu %s inválida" - -#: apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:94 apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:123 msgid "Invalid archive member header" msgstr "Testera de miembru del ficheru inválida" -#: apt-inst/contrib/arfile.cc:132 +#: apt-inst/contrib/arfile.cc:139 msgid "Archive is too short" msgstr "El ficheru ye perpequeñu" -#: apt-inst/contrib/arfile.cc:136 +#: apt-inst/contrib/arfile.cc:143 msgid "Failed to read the archive headers" msgstr "Falló al lleer les testeres del ficheru" @@ -3560,6 +3556,9 @@ msgid "Connection closed prematurely" msgstr "Conexón encaboxada prematuramente" +#~ msgid "Invalid archive member header %s" +#~ msgstr "Testera de miembru del archivu %s inválida" + #~ msgid "decompressor" #~ msgstr "descompresor" diff -Nru apt-0.8.16~exp12ubuntu10.27/po/bg.po apt-0.8.16~exp12ubuntu10.29/po/bg.po --- apt-0.8.16~exp12ubuntu10.27/po/bg.po 2015-05-20 14:49:14.000000000 +0000 +++ apt-0.8.16~exp12ubuntu10.29/po/bg.po 2020-05-28 14:48:03.000000000 +0000 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: apt 0.7.21\n" "Report-Msgid-Bugs-To: deity@lists.debian.org\n" -"POT-Creation-Date: 2015-05-20 16:49+0200\n" +"POT-Creation-Date: 2020-05-28 11:48-0300\n" "PO-Revision-Date: 2010-08-27 22:33+0300\n" "Last-Translator: Damyan Ivanov \n" "Language-Team: Bulgarian \n" @@ -1678,8 +1678,8 @@ msgstr "Невярна контролна сума на tar, развален архив" #: apt-inst/contrib/extracttar.cc:303 -#, c-format -msgid "Unknown TAR header type %u, member %s" +#, fuzzy, c-format +msgid "Unknown TAR header type %u" msgstr "Непозната заглавна част на TAR тип %u, елемент %s" #: apt-inst/contrib/arfile.cc:74 @@ -1690,20 +1690,16 @@ msgid "Error reading archive member header" msgstr "Грешка при четене на заглавната част на елемента на архива" -#: apt-inst/contrib/arfile.cc:94 -#, c-format -msgid "Invalid archive member header %s" -msgstr "Невалидна заглавна част %s на елемента на архива" - -#: apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:94 apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:123 msgid "Invalid archive member header" msgstr "Невалидна заглавна част на елемента на архива" -#: apt-inst/contrib/arfile.cc:132 +#: apt-inst/contrib/arfile.cc:139 msgid "Archive is too short" msgstr "Архивът е твърде кратък" -#: apt-inst/contrib/arfile.cc:136 +#: apt-inst/contrib/arfile.cc:143 msgid "Failed to read the archive headers" msgstr "Неуспех при четенето на заглавните части на архива" @@ -3597,6 +3593,9 @@ msgid "Connection closed prematurely" msgstr "Връзката прекъсна преждевременно" +#~ msgid "Invalid archive member header %s" +#~ msgstr "Невалидна заглавна част %s на елемента на архива" + #~ msgid "decompressor" #~ msgstr "декомпресираща програма" diff -Nru apt-0.8.16~exp12ubuntu10.27/po/bs.po apt-0.8.16~exp12ubuntu10.29/po/bs.po --- apt-0.8.16~exp12ubuntu10.27/po/bs.po 2015-05-20 14:49:14.000000000 +0000 +++ apt-0.8.16~exp12ubuntu10.29/po/bs.po 2020-05-28 14:48:03.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: apt 0.5.26\n" "Report-Msgid-Bugs-To: deity@lists.debian.org\n" -"POT-Creation-Date: 2015-05-20 16:49+0200\n" +"POT-Creation-Date: 2020-05-28 11:48-0300\n" "PO-Revision-Date: 2004-05-06 15:25+0100\n" "Last-Translator: Safir Šećerović \n" "Language-Team: Bosnian \n" @@ -1468,7 +1468,7 @@ #: apt-inst/contrib/extracttar.cc:303 #, c-format -msgid "Unknown TAR header type %u, member %s" +msgid "Unknown TAR header type %u" msgstr "" #: apt-inst/contrib/arfile.cc:74 @@ -1479,20 +1479,16 @@ msgid "Error reading archive member header" msgstr "" -#: apt-inst/contrib/arfile.cc:94 -#, c-format -msgid "Invalid archive member header %s" -msgstr "" - -#: apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:94 apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:123 msgid "Invalid archive member header" msgstr "" -#: apt-inst/contrib/arfile.cc:132 +#: apt-inst/contrib/arfile.cc:139 msgid "Archive is too short" msgstr "Arhiva je prekratka" -#: apt-inst/contrib/arfile.cc:136 +#: apt-inst/contrib/arfile.cc:143 msgid "Failed to read the archive headers" msgstr "" diff -Nru apt-0.8.16~exp12ubuntu10.27/po/ca.po apt-0.8.16~exp12ubuntu10.29/po/ca.po --- apt-0.8.16~exp12ubuntu10.27/po/ca.po 2015-05-20 14:49:14.000000000 +0000 +++ apt-0.8.16~exp12ubuntu10.29/po/ca.po 2020-05-28 14:48:03.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: apt 0.8.15\n" "Report-Msgid-Bugs-To: deity@lists.debian.org\n" -"POT-Creation-Date: 2015-05-20 16:49+0200\n" +"POT-Creation-Date: 2020-05-28 11:48-0300\n" "PO-Revision-Date: 2011-06-16 01:41+0200\n" "Last-Translator: Jordi Mallach \n" "Language-Team: Catalan \n" @@ -1694,8 +1694,8 @@ msgstr "La suma de comprovació de tar ha fallat, arxiu corromput" #: apt-inst/contrib/extracttar.cc:303 -#, c-format -msgid "Unknown TAR header type %u, member %s" +#, fuzzy, c-format +msgid "Unknown TAR header type %u" msgstr "Capçalera TAR desconeguda del tipus %u, membre %s" #: apt-inst/contrib/arfile.cc:74 @@ -1706,20 +1706,16 @@ msgid "Error reading archive member header" msgstr "S'ha produït un error en llegir la capçalera del membre de l'arxiu" -#: apt-inst/contrib/arfile.cc:94 -#, c-format -msgid "Invalid archive member header %s" -msgstr "La capçalera %s del membre de l'arxiu no és vàlida" - -#: apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:94 apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:123 msgid "Invalid archive member header" msgstr "La capçalera del membre de l'arxiu no és vàlida" -#: apt-inst/contrib/arfile.cc:132 +#: apt-inst/contrib/arfile.cc:139 msgid "Archive is too short" msgstr "L'arxiu és massa petit" -#: apt-inst/contrib/arfile.cc:136 +#: apt-inst/contrib/arfile.cc:143 msgid "Failed to read the archive headers" msgstr "Ha fallat la lectura de les capçaleres de l'arxiu" @@ -3618,6 +3614,9 @@ msgid "Connection closed prematurely" msgstr "La connexió s'ha tancat prematurament" +#~ msgid "Invalid archive member header %s" +#~ msgstr "La capçalera %s del membre de l'arxiu no és vàlida" + #~ msgid "decompressor" #~ msgstr "decompressor" diff -Nru apt-0.8.16~exp12ubuntu10.27/po/cs.po apt-0.8.16~exp12ubuntu10.29/po/cs.po --- apt-0.8.16~exp12ubuntu10.27/po/cs.po 2015-05-20 14:49:14.000000000 +0000 +++ apt-0.8.16~exp12ubuntu10.29/po/cs.po 2020-05-28 14:48:03.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: deity@lists.debian.org\n" -"POT-Creation-Date: 2015-05-20 16:49+0200\n" +"POT-Creation-Date: 2020-05-28 11:48-0300\n" "PO-Revision-Date: 2010-11-27 13:54+0100\n" "Last-Translator: Miroslav Kure \n" "Language-Team: Czech \n" @@ -1646,8 +1646,8 @@ msgstr "Kontrolní součet taru selhal, archiv je poškozený" #: apt-inst/contrib/extracttar.cc:303 -#, c-format -msgid "Unknown TAR header type %u, member %s" +#, fuzzy, c-format +msgid "Unknown TAR header type %u" msgstr "Neznámá hlavička TARu typ %u, člen %s" #: apt-inst/contrib/arfile.cc:74 @@ -1658,20 +1658,16 @@ msgid "Error reading archive member header" msgstr "Chyba při čtení záhlaví prvku archivu" -#: apt-inst/contrib/arfile.cc:94 -#, c-format -msgid "Invalid archive member header %s" -msgstr "Neplatné záhlaví prvku archivu %s" - -#: apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:94 apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:123 msgid "Invalid archive member header" msgstr "Neplatné záhlaví prvku archivu" -#: apt-inst/contrib/arfile.cc:132 +#: apt-inst/contrib/arfile.cc:139 msgid "Archive is too short" msgstr "Archiv je příliš krátký" -#: apt-inst/contrib/arfile.cc:136 +#: apt-inst/contrib/arfile.cc:143 msgid "Failed to read the archive headers" msgstr "Chyba při čtení hlaviček archivu" @@ -3521,6 +3517,9 @@ msgid "Connection closed prematurely" msgstr "Spojení bylo předčasně ukončeno" +#~ msgid "Invalid archive member header %s" +#~ msgstr "Neplatné záhlaví prvku archivu %s" + #~ msgid "decompressor" #~ msgstr "dekompresor" diff -Nru apt-0.8.16~exp12ubuntu10.27/po/cy.po apt-0.8.16~exp12ubuntu10.29/po/cy.po --- apt-0.8.16~exp12ubuntu10.27/po/cy.po 2015-05-20 14:49:14.000000000 +0000 +++ apt-0.8.16~exp12ubuntu10.29/po/cy.po 2020-05-28 14:48:03.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: APT\n" "Report-Msgid-Bugs-To: deity@lists.debian.org\n" -"POT-Creation-Date: 2015-05-20 16:49+0200\n" +"POT-Creation-Date: 2020-05-28 11:48-0300\n" "PO-Revision-Date: 2005-06-06 13:46+0100\n" "Last-Translator: Dafydd Harries \n" "Language-Team: Welsh \n" @@ -1686,8 +1686,8 @@ msgstr "Methodd swm gwirio Tar, archif llygredig" #: apt-inst/contrib/extracttar.cc:303 -#, c-format -msgid "Unknown TAR header type %u, member %s" +#, fuzzy, c-format +msgid "Unknown TAR header type %u" msgstr "Math pennawd TAR anhysbys %u, aelod %s" #: apt-inst/contrib/arfile.cc:74 @@ -1698,20 +1698,16 @@ msgid "Error reading archive member header" msgstr "Gwall wrth ddarllen pennawd aelod archif" -#: apt-inst/contrib/arfile.cc:94 -#, fuzzy, c-format -msgid "Invalid archive member header %s" -msgstr "Pennawd aelod archif annilys" - -#: apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:94 apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:123 msgid "Invalid archive member header" msgstr "Pennawd aelod archif annilys" -#: apt-inst/contrib/arfile.cc:132 +#: apt-inst/contrib/arfile.cc:139 msgid "Archive is too short" msgstr "Mae'r archif yn rhy fyr" -#: apt-inst/contrib/arfile.cc:136 +#: apt-inst/contrib/arfile.cc:143 msgid "Failed to read the archive headers" msgstr "Methwyd darllen pennawdau'r archif" @@ -3594,6 +3590,10 @@ msgid "Connection closed prematurely" msgstr "Caewyd y cysylltiad yn gynnar" +#, fuzzy +#~ msgid "Invalid archive member header %s" +#~ msgstr "Pennawd aelod archif annilys" + #~ msgid "decompressor" #~ msgstr "datgywasgydd" diff -Nru apt-0.8.16~exp12ubuntu10.27/po/da.po apt-0.8.16~exp12ubuntu10.29/po/da.po --- apt-0.8.16~exp12ubuntu10.27/po/da.po 2015-05-20 14:49:14.000000000 +0000 +++ apt-0.8.16~exp12ubuntu10.29/po/da.po 2020-05-28 14:48:03.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: deity@lists.debian.org\n" -"POT-Creation-Date: 2015-05-20 16:49+0200\n" +"POT-Creation-Date: 2020-05-28 11:48-0300\n" "PO-Revision-Date: 2012-02-04 23:51+0200\n" "Last-Translator: Joe Hansen \n" "Language-Team: Danish \n" @@ -1681,8 +1681,8 @@ msgstr "Tar-tjeksum fejlede, arkivet er ødelagt" #: apt-inst/contrib/extracttar.cc:303 -#, c-format -msgid "Unknown TAR header type %u, member %s" +#, fuzzy, c-format +msgid "Unknown TAR header type %u" msgstr "Ukendt TAR-hovedtype %u, element %s" #: apt-inst/contrib/arfile.cc:74 @@ -1693,20 +1693,16 @@ msgid "Error reading archive member header" msgstr "Fejl under læsning af arkivelements hoved" -#: apt-inst/contrib/arfile.cc:94 -#, c-format -msgid "Invalid archive member header %s" -msgstr "Ugyldigt arkivelementhoved %s" - -#: apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:94 apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:123 msgid "Invalid archive member header" msgstr "Ugyldigt arkivelementhoved" -#: apt-inst/contrib/arfile.cc:132 +#: apt-inst/contrib/arfile.cc:139 msgid "Archive is too short" msgstr "Arkivet er for kort" -#: apt-inst/contrib/arfile.cc:136 +#: apt-inst/contrib/arfile.cc:143 msgid "Failed to read the archive headers" msgstr "Kunne ikke læse arkivhovederne" @@ -3568,6 +3564,9 @@ msgid "Connection closed prematurely" msgstr "Forbindelsen lukkedes for hurtigt" +#~ msgid "Invalid archive member header %s" +#~ msgstr "Ugyldigt arkivelementhoved %s" + #~ msgid "decompressor" #~ msgstr "dekomprimerings-program" diff -Nru apt-0.8.16~exp12ubuntu10.27/po/de.po apt-0.8.16~exp12ubuntu10.29/po/de.po --- apt-0.8.16~exp12ubuntu10.27/po/de.po 2015-05-20 14:49:14.000000000 +0000 +++ apt-0.8.16~exp12ubuntu10.29/po/de.po 2020-05-28 14:48:03.000000000 +0000 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: apt 0.8.8\n" "Report-Msgid-Bugs-To: deity@lists.debian.org\n" -"POT-Creation-Date: 2015-05-20 16:49+0200\n" +"POT-Creation-Date: 2020-05-28 11:48-0300\n" "PO-Revision-Date: 2010-11-15 21:42+0100\n" "Last-Translator: Holger Wansing \n" "Language-Team: Debian German \n" @@ -1699,8 +1699,8 @@ msgstr "Tar-Prüfsumme fehlgeschlagen, Archiv beschädigt" #: apt-inst/contrib/extracttar.cc:303 -#, c-format -msgid "Unknown TAR header type %u, member %s" +#, fuzzy, c-format +msgid "Unknown TAR header type %u" msgstr "Unbekannter Tar-Kopfzeilen-Typ %u, Bestandteil %s" #: apt-inst/contrib/arfile.cc:74 @@ -1711,20 +1711,16 @@ msgid "Error reading archive member header" msgstr "Fehler beim Lesen der Archivdatei-Kopfzeilen" -#: apt-inst/contrib/arfile.cc:94 -#, c-format -msgid "Invalid archive member header %s" -msgstr "Ungültige Archivbestandteil-Kopfzeile %s" - -#: apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:94 apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:123 msgid "Invalid archive member header" msgstr "Ungültige Archivdatei-Kopfzeilen" -#: apt-inst/contrib/arfile.cc:132 +#: apt-inst/contrib/arfile.cc:139 msgid "Archive is too short" msgstr "Archiv ist zu kurz" -#: apt-inst/contrib/arfile.cc:136 +#: apt-inst/contrib/arfile.cc:143 msgid "Failed to read the archive headers" msgstr "Archiv-Kopfzeilen konnten nicht gelesen werden" @@ -3639,6 +3635,9 @@ msgid "Connection closed prematurely" msgstr "Verbindung vorzeitig beendet" +#~ msgid "Invalid archive member header %s" +#~ msgstr "Ungültige Archivbestandteil-Kopfzeile %s" + #~ msgid "decompressor" #~ msgstr "Dekomprimierer" diff -Nru apt-0.8.16~exp12ubuntu10.27/po/dz.po apt-0.8.16~exp12ubuntu10.29/po/dz.po --- apt-0.8.16~exp12ubuntu10.27/po/dz.po 2015-05-20 14:49:14.000000000 +0000 +++ apt-0.8.16~exp12ubuntu10.29/po/dz.po 2020-05-28 14:48:03.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: apt_po.pot\n" "Report-Msgid-Bugs-To: deity@lists.debian.org\n" -"POT-Creation-Date: 2015-05-20 16:49+0200\n" +"POT-Creation-Date: 2020-05-28 11:48-0300\n" "PO-Revision-Date: 2006-09-19 09:49+0530\n" "Last-Translator: Kinley Tshering \n" "Language-Team: Dzongkha \n" @@ -1655,8 +1655,8 @@ msgstr "ཊར་ཅེག་སམ་དེ་འཐུས་ཤོར་བྱུང་ཡོད་ ཡིག་མཛོད་ངན་ཅན་བྱུང་ནུག" #: apt-inst/contrib/extracttar.cc:303 -#, c-format -msgid "Unknown TAR header type %u, member %s" +#, fuzzy, c-format +msgid "Unknown TAR header type %u" msgstr "མ་ཤེས་པའི་ ཊཱར་་མགོ་ཡིག་་དབྱེ་བ་ %u་ འཐུས་མི་ %s།" #: apt-inst/contrib/arfile.cc:74 @@ -1667,20 +1667,16 @@ msgid "Error reading archive member header" msgstr "ཡིག་མཛོད་འཐུས་མི་མགོ་ཡིག་ལྷག་ནིའི་འཛོལ་བ།" -#: apt-inst/contrib/arfile.cc:94 -#, fuzzy, c-format -msgid "Invalid archive member header %s" -msgstr "ནུས་མེད་ཡིག་མཛོད་འཐུས་མི་གི་མགོ་ཡིག་" - -#: apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:94 apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:123 msgid "Invalid archive member header" msgstr "ནུས་མེད་ཡིག་མཛོད་འཐུས་མི་གི་མགོ་ཡིག་" -#: apt-inst/contrib/arfile.cc:132 +#: apt-inst/contrib/arfile.cc:139 msgid "Archive is too short" msgstr "ཡིག་མཛོད་འདི་གནམ་མེད་ས་མེད་ཐུང་ཀུ་འདུག" -#: apt-inst/contrib/arfile.cc:136 +#: apt-inst/contrib/arfile.cc:143 msgid "Failed to read the archive headers" msgstr "ཡིག་མཛོད་མགོ་ཡིག་ཚུ་ལྷག་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" @@ -3513,6 +3509,10 @@ msgid "Connection closed prematurely" msgstr "དུས་སུ་མ་འབབ་པ་རང་མཐུད་ལམ་འདི་ག་བསྡམས་ཡོད།" +#, fuzzy +#~ msgid "Invalid archive member header %s" +#~ msgstr "ནུས་མེད་ཡིག་མཛོད་འཐུས་མི་གི་མགོ་ཡིག་" + #~ msgid "decompressor" #~ msgstr "ཨེབ་བཤོལ་འཕྲུལ་ཆས།" diff -Nru apt-0.8.16~exp12ubuntu10.27/po/el.po apt-0.8.16~exp12ubuntu10.29/po/el.po --- apt-0.8.16~exp12ubuntu10.27/po/el.po 2015-05-20 14:49:14.000000000 +0000 +++ apt-0.8.16~exp12ubuntu10.29/po/el.po 2020-05-28 14:48:03.000000000 +0000 @@ -15,7 +15,7 @@ msgstr "" "Project-Id-Version: apt_po_el\n" "Report-Msgid-Bugs-To: deity@lists.debian.org\n" -"POT-Creation-Date: 2015-05-20 16:49+0200\n" +"POT-Creation-Date: 2020-05-28 11:48-0300\n" "PO-Revision-Date: 2008-08-26 18:25+0300\n" "Last-Translator: quad-nrg.net \n" "Language-Team: Greek \n" @@ -1677,8 +1677,8 @@ msgstr "Το Checksum του tar απέτυχε, η αρχείοθήκη είναι κατεστραμμένη" #: apt-inst/contrib/extracttar.cc:303 -#, c-format -msgid "Unknown TAR header type %u, member %s" +#, fuzzy, c-format +msgid "Unknown TAR header type %u" msgstr "Άγνωστη επικεφαλίδα TAR τύπος %u, μέλος %s" #: apt-inst/contrib/arfile.cc:74 @@ -1689,20 +1689,16 @@ msgid "Error reading archive member header" msgstr "Σφάλμα κατά την ανάγνωση της επικεφαλίδας του μέλους της αρχειοθήκης" -#: apt-inst/contrib/arfile.cc:94 -#, fuzzy, c-format -msgid "Invalid archive member header %s" -msgstr "Μη έγκυρη επικεφαλίδα μέλος της αρχειοθήκης" - -#: apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:94 apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:123 msgid "Invalid archive member header" msgstr "Μη έγκυρη επικεφαλίδα μέλος της αρχειοθήκης" -#: apt-inst/contrib/arfile.cc:132 +#: apt-inst/contrib/arfile.cc:139 msgid "Archive is too short" msgstr "Η αρχειοθήκη είναι πολύ μικρή" -#: apt-inst/contrib/arfile.cc:136 +#: apt-inst/contrib/arfile.cc:143 msgid "Failed to read the archive headers" msgstr "Αποτυχία ανάγνωσης των επικεφαλίδων της αρχειοθήκης" @@ -3551,6 +3547,10 @@ msgid "Connection closed prematurely" msgstr "Η σύνδεση έκλεισε πρόωρα" +#, fuzzy +#~ msgid "Invalid archive member header %s" +#~ msgstr "Μη έγκυρη επικεφαλίδα μέλος της αρχειοθήκης" + #~ msgid "decompressor" #~ msgstr "αποσυμπιεστής" diff -Nru apt-0.8.16~exp12ubuntu10.27/po/es.po apt-0.8.16~exp12ubuntu10.29/po/es.po --- apt-0.8.16~exp12ubuntu10.27/po/es.po 2015-05-20 14:49:15.000000000 +0000 +++ apt-0.8.16~exp12ubuntu10.29/po/es.po 2020-05-28 14:48:03.000000000 +0000 @@ -33,7 +33,7 @@ msgstr "" "Project-Id-Version: apt 0.8.10\n" "Report-Msgid-Bugs-To: deity@lists.debian.org\n" -"POT-Creation-Date: 2015-05-20 16:49+0200\n" +"POT-Creation-Date: 2020-05-28 11:48-0300\n" "PO-Revision-Date: 2011-01-24 11:47+0100\n" "Last-Translator: Javier Fernández-Sanguino Peña \n" "Language-Team: Debian Spanish \n" @@ -1741,8 +1741,8 @@ "Se produjo un fallo al calcular la suma de control de tar, archive dañado" #: apt-inst/contrib/extracttar.cc:303 -#, c-format -msgid "Unknown TAR header type %u, member %s" +#, fuzzy, c-format +msgid "Unknown TAR header type %u" msgstr "Cabecera del TAR tipo %u desconocida, miembro %s" #: apt-inst/contrib/arfile.cc:74 @@ -1753,20 +1753,16 @@ msgid "Error reading archive member header" msgstr "Error leyendo la cabecera de miembro del archivo" -#: apt-inst/contrib/arfile.cc:94 -#, c-format -msgid "Invalid archive member header %s" -msgstr "Cabecera de miembro del archivo inválida %s" - -#: apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:94 apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:123 msgid "Invalid archive member header" msgstr "Cabecera de miembro del archivo inválida" -#: apt-inst/contrib/arfile.cc:132 +#: apt-inst/contrib/arfile.cc:139 msgid "Archive is too short" msgstr "El archivo es muy pequeño" -#: apt-inst/contrib/arfile.cc:136 +#: apt-inst/contrib/arfile.cc:143 msgid "Failed to read the archive headers" msgstr "No pude leer las cabeceras del archivo" @@ -3664,6 +3660,9 @@ msgid "Connection closed prematurely" msgstr "La conexión se cerró prematuramente" +#~ msgid "Invalid archive member header %s" +#~ msgstr "Cabecera de miembro del archivo inválida %s" + #~ msgid "decompressor" #~ msgstr "decompresor" diff -Nru apt-0.8.16~exp12ubuntu10.27/po/eu.po apt-0.8.16~exp12ubuntu10.29/po/eu.po --- apt-0.8.16~exp12ubuntu10.27/po/eu.po 2015-05-20 14:49:15.000000000 +0000 +++ apt-0.8.16~exp12ubuntu10.29/po/eu.po 2020-05-28 14:48:03.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: apt_po_eu\n" "Report-Msgid-Bugs-To: deity@lists.debian.org\n" -"POT-Creation-Date: 2015-05-20 16:49+0200\n" +"POT-Creation-Date: 2020-05-28 11:48-0300\n" "PO-Revision-Date: 2009-05-17 00:41+0200\n" "Last-Translator: Piarres Beobide \n" "Language-Team: Euskara \n" @@ -1649,8 +1649,8 @@ msgstr "Tar egiaztapenak huts egin, hondatutakofitxategia" #: apt-inst/contrib/extracttar.cc:303 -#, c-format -msgid "Unknown TAR header type %u, member %s" +#, fuzzy, c-format +msgid "Unknown TAR header type %u" msgstr "%u TAR goiburu mota ezezaguna, %s kidea" #: apt-inst/contrib/arfile.cc:74 @@ -1661,20 +1661,16 @@ msgid "Error reading archive member header" msgstr "Errorea artxiboko kidearen goiburua irakurtzean" -#: apt-inst/contrib/arfile.cc:94 -#, fuzzy, c-format -msgid "Invalid archive member header %s" -msgstr "Artxiboko kidearen goiburua baliogabea da" - -#: apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:94 apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:123 msgid "Invalid archive member header" msgstr "Artxiboko kidearen goiburua baliogabea da" -#: apt-inst/contrib/arfile.cc:132 +#: apt-inst/contrib/arfile.cc:139 msgid "Archive is too short" msgstr "Artxiboa laburregia da" -#: apt-inst/contrib/arfile.cc:136 +#: apt-inst/contrib/arfile.cc:143 msgid "Failed to read the archive headers" msgstr "Huts egin artxibo goiburuak irakurtzean" @@ -3513,6 +3509,10 @@ msgid "Connection closed prematurely" msgstr "Konexioa behar baino lehenago itxi da" +#, fuzzy +#~ msgid "Invalid archive member header %s" +#~ msgstr "Artxiboko kidearen goiburua baliogabea da" + #~ msgid "decompressor" #~ msgstr "deskonpresorea" diff -Nru apt-0.8.16~exp12ubuntu10.27/po/fi.po apt-0.8.16~exp12ubuntu10.29/po/fi.po --- apt-0.8.16~exp12ubuntu10.27/po/fi.po 2015-05-20 14:49:15.000000000 +0000 +++ apt-0.8.16~exp12ubuntu10.29/po/fi.po 2020-05-28 14:48:03.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: apt 0.5.26\n" "Report-Msgid-Bugs-To: deity@lists.debian.org\n" -"POT-Creation-Date: 2015-05-20 16:49+0200\n" +"POT-Creation-Date: 2020-05-28 11:48-0300\n" "PO-Revision-Date: 2008-12-11 14:52+0200\n" "Last-Translator: Tapio Lehtonen \n" "Language-Team: Finnish \n" @@ -1649,8 +1649,8 @@ msgstr "Tar-ohjelman laskema tarkistussumma ei täsmää, arkisto on turmeltunut" #: apt-inst/contrib/extracttar.cc:303 -#, c-format -msgid "Unknown TAR header type %u, member %s" +#, fuzzy, c-format +msgid "Unknown TAR header type %u" msgstr "Tuntematon TAR-otsikon tyyppi %u, tiedosto %s" #: apt-inst/contrib/arfile.cc:74 @@ -1661,20 +1661,16 @@ msgid "Error reading archive member header" msgstr "Tapahtui virhe luettaessa arkiston tiedoston otsikkoa" -#: apt-inst/contrib/arfile.cc:94 -#, fuzzy, c-format -msgid "Invalid archive member header %s" -msgstr "Arkiston tiedoston otsikko on virheellinen" - -#: apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:94 apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:123 msgid "Invalid archive member header" msgstr "Arkiston tiedoston otsikko on virheellinen" -#: apt-inst/contrib/arfile.cc:132 +#: apt-inst/contrib/arfile.cc:139 msgid "Archive is too short" msgstr "Arkisto on pienempi kuin pitäisi" -#: apt-inst/contrib/arfile.cc:136 +#: apt-inst/contrib/arfile.cc:143 msgid "Failed to read the archive headers" msgstr "Arkiston otsikoiden luku ei onnistunut" @@ -3506,6 +3502,10 @@ msgid "Connection closed prematurely" msgstr "Yhteys katkesi ennenaikaisesti" +#, fuzzy +#~ msgid "Invalid archive member header %s" +#~ msgstr "Arkiston tiedoston otsikko on virheellinen" + #~ msgid "decompressor" #~ msgstr "purkaja" diff -Nru apt-0.8.16~exp12ubuntu10.27/po/fr.po apt-0.8.16~exp12ubuntu10.29/po/fr.po --- apt-0.8.16~exp12ubuntu10.27/po/fr.po 2015-05-20 14:49:15.000000000 +0000 +++ apt-0.8.16~exp12ubuntu10.29/po/fr.po 2020-05-28 14:48:03.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: fr\n" "Report-Msgid-Bugs-To: deity@lists.debian.org\n" -"POT-Creation-Date: 2015-05-20 16:49+0200\n" +"POT-Creation-Date: 2020-05-28 11:48-0300\n" "PO-Revision-Date: 2011-10-24 22:52+0100\n" "Last-Translator: Christian Perrier \n" "Language-Team: French \n" @@ -1704,8 +1704,8 @@ msgstr "Échec dans la somme de contrôle de tar, l'archive est corrompue" #: apt-inst/contrib/extracttar.cc:303 -#, c-format -msgid "Unknown TAR header type %u, member %s" +#, fuzzy, c-format +msgid "Unknown TAR header type %u" msgstr "Type d'en-tête %u inconnu pour TAR, partie %s" #: apt-inst/contrib/arfile.cc:74 @@ -1716,20 +1716,16 @@ msgid "Error reading archive member header" msgstr "Erreur de lecture de l'en-tête du membre d'archive" -#: apt-inst/contrib/arfile.cc:94 -#, c-format -msgid "Invalid archive member header %s" -msgstr "En-tête du membre d'archive %s non valable" - -#: apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:94 apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:123 msgid "Invalid archive member header" msgstr "En-tête du membre d'archive non-valable" -#: apt-inst/contrib/arfile.cc:132 +#: apt-inst/contrib/arfile.cc:139 msgid "Archive is too short" msgstr "L'archive est trop petite" -#: apt-inst/contrib/arfile.cc:136 +#: apt-inst/contrib/arfile.cc:143 msgid "Failed to read the archive headers" msgstr "Échec de la lecture des en-têtes d'archive" @@ -3664,6 +3660,9 @@ msgid "Connection closed prematurely" msgstr "Connexion fermée prématurément" +#~ msgid "Invalid archive member header %s" +#~ msgstr "En-tête du membre d'archive %s non valable" + #~ msgid "decompressor" #~ msgstr "décompacteur" diff -Nru apt-0.8.16~exp12ubuntu10.27/po/gl.po apt-0.8.16~exp12ubuntu10.29/po/gl.po --- apt-0.8.16~exp12ubuntu10.27/po/gl.po 2015-05-20 14:49:15.000000000 +0000 +++ apt-0.8.16~exp12ubuntu10.29/po/gl.po 2020-05-28 14:48:03.000000000 +0000 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: apt_po_gl\n" "Report-Msgid-Bugs-To: deity@lists.debian.org\n" -"POT-Creation-Date: 2015-05-20 16:49+0200\n" +"POT-Creation-Date: 2020-05-28 11:48-0300\n" "PO-Revision-Date: 2011-05-12 15:28+0100\n" "Last-Translator: Miguel Anxo Bouzada \n" "Language-Team: galician \n" @@ -1680,8 +1680,8 @@ msgstr "A suma de comprobación do arquivo tar non coincide, está danado" #: apt-inst/contrib/extracttar.cc:303 -#, c-format -msgid "Unknown TAR header type %u, member %s" +#, fuzzy, c-format +msgid "Unknown TAR header type %u" msgstr "Tipo de cabeceira TAR %u descoñecido, membro %s" #: apt-inst/contrib/arfile.cc:74 @@ -1692,20 +1692,16 @@ msgid "Error reading archive member header" msgstr "Produciuse un erro ao ler a cabeceira do membro do arquivo" -#: apt-inst/contrib/arfile.cc:94 -#, c-format -msgid "Invalid archive member header %s" -msgstr "Cabeceira do membro do arquivo incorrecta %s" - -#: apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:94 apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:123 msgid "Invalid archive member header" msgstr "Cabeceira do membro do arquivo incorrecta" -#: apt-inst/contrib/arfile.cc:132 +#: apt-inst/contrib/arfile.cc:139 msgid "Archive is too short" msgstr "O arquivo é curto de máis" -#: apt-inst/contrib/arfile.cc:136 +#: apt-inst/contrib/arfile.cc:143 msgid "Failed to read the archive headers" msgstr "Non foi posíbel ler as cabeceiras dos arquivos" @@ -3605,6 +3601,9 @@ msgid "Connection closed prematurely" msgstr "A conexión pechouse prematuramente" +#~ msgid "Invalid archive member header %s" +#~ msgstr "Cabeceira do membro do arquivo incorrecta %s" + #~ msgid "decompressor" #~ msgstr "descompresor" diff -Nru apt-0.8.16~exp12ubuntu10.27/po/hu.po apt-0.8.16~exp12ubuntu10.29/po/hu.po --- apt-0.8.16~exp12ubuntu10.27/po/hu.po 2015-05-20 14:49:15.000000000 +0000 +++ apt-0.8.16~exp12ubuntu10.29/po/hu.po 2020-05-28 14:48:03.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: apt trunk\n" "Report-Msgid-Bugs-To: deity@lists.debian.org\n" -"POT-Creation-Date: 2015-05-20 16:49+0200\n" +"POT-Creation-Date: 2020-05-28 11:48-0300\n" "PO-Revision-Date: 2012-01-06 22:03+0100\n" "Last-Translator: Gabor Kelemen \n" "Language-Team: Hungarian \n" @@ -1701,8 +1701,8 @@ msgstr "Tar ellenőrzőösszeg nem egyezik, az archívum megsérült" #: apt-inst/contrib/extracttar.cc:303 -#, c-format -msgid "Unknown TAR header type %u, member %s" +#, fuzzy, c-format +msgid "Unknown TAR header type %u" msgstr "Ismeretlen a(z) %u TAR fejléctípus, %s tag" #: apt-inst/contrib/arfile.cc:74 @@ -1713,20 +1713,16 @@ msgid "Error reading archive member header" msgstr "Hiba az archívumtag-fejléc olvasásakor" -#: apt-inst/contrib/arfile.cc:94 -#, c-format -msgid "Invalid archive member header %s" -msgstr "Érvénytelen archívumtag-fejléc: %s" - -#: apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:94 apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:123 msgid "Invalid archive member header" msgstr "Érvénytelen archívumtag-fejléc" -#: apt-inst/contrib/arfile.cc:132 +#: apt-inst/contrib/arfile.cc:139 msgid "Archive is too short" msgstr "Az archívum túl rövid" -#: apt-inst/contrib/arfile.cc:136 +#: apt-inst/contrib/arfile.cc:143 msgid "Failed to read the archive headers" msgstr "Nem sikerült olvasni az archívumfejléceket" @@ -3615,6 +3611,9 @@ msgid "Connection closed prematurely" msgstr "A kapcsolat idő előtt lezárult" +#~ msgid "Invalid archive member header %s" +#~ msgstr "Érvénytelen archívumtag-fejléc: %s" + #~ msgid "decompressor" #~ msgstr "kicsomagoló" diff -Nru apt-0.8.16~exp12ubuntu10.27/po/it.po apt-0.8.16~exp12ubuntu10.29/po/it.po --- apt-0.8.16~exp12ubuntu10.27/po/it.po 2015-05-20 14:49:15.000000000 +0000 +++ apt-0.8.16~exp12ubuntu10.29/po/it.po 2020-05-28 14:48:03.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: deity@lists.debian.org\n" -"POT-Creation-Date: 2015-05-20 16:49+0200\n" +"POT-Creation-Date: 2020-05-28 11:48-0300\n" "PO-Revision-Date: 2011-05-16 21:38+0200\n" "Last-Translator: Milo Casagrande \n" "Language-Team: Italian \n" @@ -1689,8 +1689,8 @@ msgstr "Checksum di tar non riuscito, archivio danneggiato" #: apt-inst/contrib/extracttar.cc:303 -#, c-format -msgid "Unknown TAR header type %u, member %s" +#, fuzzy, c-format +msgid "Unknown TAR header type %u" msgstr "Intestazione TAR di tipo %u sconosciuta, member %s" #: apt-inst/contrib/arfile.cc:74 @@ -1701,20 +1701,16 @@ msgid "Error reading archive member header" msgstr "Errore nel leggere l'intestazione member dell'archivio" -#: apt-inst/contrib/arfile.cc:94 -#, c-format -msgid "Invalid archive member header %s" -msgstr "Intestazione member dell'archivio %s non valida" - -#: apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:94 apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:123 msgid "Invalid archive member header" msgstr "Intestazione member dell'archivio non valida" -#: apt-inst/contrib/arfile.cc:132 +#: apt-inst/contrib/arfile.cc:139 msgid "Archive is too short" msgstr "L'archivio è troppo piccolo" -#: apt-inst/contrib/arfile.cc:136 +#: apt-inst/contrib/arfile.cc:143 msgid "Failed to read the archive headers" msgstr "Lettura delle intestazioni dell'archivio non riuscita" @@ -3636,6 +3632,9 @@ msgid "Connection closed prematurely" msgstr "Connessione chiusa prematuramente" +#~ msgid "Invalid archive member header %s" +#~ msgstr "Intestazione member dell'archivio %s non valida" + #~ msgid "decompressor" #~ msgstr "de-compressore" diff -Nru apt-0.8.16~exp12ubuntu10.27/po/ja.po apt-0.8.16~exp12ubuntu10.29/po/ja.po --- apt-0.8.16~exp12ubuntu10.27/po/ja.po 2015-05-20 14:49:15.000000000 +0000 +++ apt-0.8.16~exp12ubuntu10.29/po/ja.po 2020-05-28 14:48:03.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: apt 0.8.0~pre1\n" "Report-Msgid-Bugs-To: deity@lists.debian.org\n" -"POT-Creation-Date: 2015-05-20 16:49+0200\n" +"POT-Creation-Date: 2020-05-28 11:48-0300\n" "PO-Revision-Date: 2010-08-25 09:33+0900\n" "Last-Translator: Kenshi Muto \n" "Language-Team: Debian Japanese List \n" @@ -1675,8 +1675,8 @@ msgstr "tar チェックサムが失敗しました。アーカイブが壊れています" #: apt-inst/contrib/extracttar.cc:303 -#, c-format -msgid "Unknown TAR header type %u, member %s" +#, fuzzy, c-format +msgid "Unknown TAR header type %u" msgstr "未知の TAR ヘッダタイプ %u、メンバー %s" #: apt-inst/contrib/arfile.cc:74 @@ -1687,20 +1687,16 @@ msgid "Error reading archive member header" msgstr "アーカイブメンバーヘッダの読み込みに失敗しました" -#: apt-inst/contrib/arfile.cc:94 -#, c-format -msgid "Invalid archive member header %s" -msgstr "不正なアーカイブメンバーヘッダ %s" - -#: apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:94 apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:123 msgid "Invalid archive member header" msgstr "不正なアーカイブメンバーヘッダ" -#: apt-inst/contrib/arfile.cc:132 +#: apt-inst/contrib/arfile.cc:139 msgid "Archive is too short" msgstr "アーカイブが不足しています" -#: apt-inst/contrib/arfile.cc:136 +#: apt-inst/contrib/arfile.cc:143 msgid "Failed to read the archive headers" msgstr "アーカイブヘッダの読み込みに失敗しました" @@ -3578,6 +3574,9 @@ msgid "Connection closed prematurely" msgstr "途中で接続がクローズされました" +#~ msgid "Invalid archive member header %s" +#~ msgstr "不正なアーカイブメンバーヘッダ %s" + #~ msgid "decompressor" #~ msgstr "展開ツール" diff -Nru apt-0.8.16~exp12ubuntu10.27/po/km.po apt-0.8.16~exp12ubuntu10.29/po/km.po --- apt-0.8.16~exp12ubuntu10.27/po/km.po 2015-05-20 14:49:15.000000000 +0000 +++ apt-0.8.16~exp12ubuntu10.29/po/km.po 2020-05-28 14:48:03.000000000 +0000 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: apt_po_km\n" "Report-Msgid-Bugs-To: deity@lists.debian.org\n" -"POT-Creation-Date: 2015-05-20 16:49+0200\n" +"POT-Creation-Date: 2020-05-28 11:48-0300\n" "PO-Revision-Date: 2006-10-10 09:48+0700\n" "Last-Translator: Khoem Sokhem \n" "Language-Team: Khmer \n" @@ -1630,8 +1630,8 @@ msgstr "Tar ឆេកសាំ​បាន​បរាជ័យ ប័ណ្ណសារ​បាន​ខូច" #: apt-inst/contrib/extracttar.cc:303 -#, c-format -msgid "Unknown TAR header type %u, member %s" +#, fuzzy, c-format +msgid "Unknown TAR header type %u" msgstr "មិន​ស្គាល់​ប្រភេទ​បឋមកថា​ TAR %u ដែលជា​សមាជិក​ %s" #: apt-inst/contrib/arfile.cc:74 @@ -1642,20 +1642,16 @@ msgid "Error reading archive member header" msgstr "កំហុស​ក្នុងការ​អានបឋមកថា​សមាជិក​ប័ណ្ណសារ" -#: apt-inst/contrib/arfile.cc:94 -#, fuzzy, c-format -msgid "Invalid archive member header %s" -msgstr "បឋមកថា​សមាជិក​ប័ណ្ណសារ" - -#: apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:94 apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:123 msgid "Invalid archive member header" msgstr "បឋមកថា​សមាជិក​ប័ណ្ណសារ" -#: apt-inst/contrib/arfile.cc:132 +#: apt-inst/contrib/arfile.cc:139 msgid "Archive is too short" msgstr "ប័ណ្ណសារ ខ្លីពេក" -#: apt-inst/contrib/arfile.cc:136 +#: apt-inst/contrib/arfile.cc:143 msgid "Failed to read the archive headers" msgstr "បរាជ័យ​ក្នុងការ​អាន​បឋមកថា​ប័ណ្ណសារ" @@ -3472,6 +3468,10 @@ msgid "Connection closed prematurely" msgstr "បាន​បិទ​ការ​តភ្ជាប់​មុន​ពេល" +#, fuzzy +#~ msgid "Invalid archive member header %s" +#~ msgstr "បឋមកថា​សមាជិក​ប័ណ្ណសារ" + #~ msgid "decompressor" #~ msgstr "កម្មវិធី​ពន្លា" diff -Nru apt-0.8.16~exp12ubuntu10.27/po/ko.po apt-0.8.16~exp12ubuntu10.29/po/ko.po --- apt-0.8.16~exp12ubuntu10.27/po/ko.po 2015-05-20 14:49:15.000000000 +0000 +++ apt-0.8.16~exp12ubuntu10.29/po/ko.po 2020-05-28 14:48:03.000000000 +0000 @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: deity@lists.debian.org\n" -"POT-Creation-Date: 2015-05-20 16:49+0200\n" +"POT-Creation-Date: 2020-05-28 11:48-0300\n" "PO-Revision-Date: 2010-08-30 02:31+0900\n" "Last-Translator: Changwoo Ryu \n" "Language-Team: Korean \n" @@ -1648,8 +1648,8 @@ msgstr "tar 체크섬 실패, 아카이브가 손상되었습니다" #: apt-inst/contrib/extracttar.cc:303 -#, c-format -msgid "Unknown TAR header type %u, member %s" +#, fuzzy, c-format +msgid "Unknown TAR header type %u" msgstr "알 수 없는 TAR 헤더 타입 %u, 멤버 %s" #: apt-inst/contrib/arfile.cc:74 @@ -1660,20 +1660,16 @@ msgid "Error reading archive member header" msgstr "아카이브 멤버 헤더를 읽는데 오류가 발생했습니다" -#: apt-inst/contrib/arfile.cc:94 -#, c-format -msgid "Invalid archive member header %s" -msgstr "아카이브 멤버 헤더 %s이(가) 잘못되었습니다" - -#: apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:94 apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:123 msgid "Invalid archive member header" msgstr "아카이브 멤버 헤더가 잘못되었습니다" -#: apt-inst/contrib/arfile.cc:132 +#: apt-inst/contrib/arfile.cc:139 msgid "Archive is too short" msgstr "아카이브 길이가 너무 짧습니다" -#: apt-inst/contrib/arfile.cc:136 +#: apt-inst/contrib/arfile.cc:143 msgid "Failed to read the archive headers" msgstr "아카이브 헤더를 읽는데 실패했습니다" @@ -3515,6 +3511,9 @@ msgid "Connection closed prematurely" msgstr "연결이 너무 빨리 끊어졌습니다" +#~ msgid "Invalid archive member header %s" +#~ msgstr "아카이브 멤버 헤더 %s이(가) 잘못되었습니다" + #~ msgid "decompressor" #~ msgstr "압축 해제 프로그램" diff -Nru apt-0.8.16~exp12ubuntu10.27/po/ku.po apt-0.8.16~exp12ubuntu10.29/po/ku.po --- apt-0.8.16~exp12ubuntu10.27/po/ku.po 2015-05-20 14:49:15.000000000 +0000 +++ apt-0.8.16~exp12ubuntu10.29/po/ku.po 2020-05-28 14:48:03.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: apt-ku\n" "Report-Msgid-Bugs-To: deity@lists.debian.org\n" -"POT-Creation-Date: 2015-05-20 16:49+0200\n" +"POT-Creation-Date: 2020-05-28 11:48-0300\n" "PO-Revision-Date: 2008-05-08 12:48+0200\n" "Last-Translator: Erdal Ronahi \n" "Language-Team: ku \n" @@ -1471,7 +1471,7 @@ #: apt-inst/contrib/extracttar.cc:303 #, c-format -msgid "Unknown TAR header type %u, member %s" +msgid "Unknown TAR header type %u" msgstr "" #: apt-inst/contrib/arfile.cc:74 @@ -1482,20 +1482,16 @@ msgid "Error reading archive member header" msgstr "" -#: apt-inst/contrib/arfile.cc:94 -#, c-format -msgid "Invalid archive member header %s" -msgstr "" - -#: apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:94 apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:123 msgid "Invalid archive member header" msgstr "" -#: apt-inst/contrib/arfile.cc:132 +#: apt-inst/contrib/arfile.cc:139 msgid "Archive is too short" msgstr "Arşîv zêde kin e" -#: apt-inst/contrib/arfile.cc:136 +#: apt-inst/contrib/arfile.cc:143 msgid "Failed to read the archive headers" msgstr "" diff -Nru apt-0.8.16~exp12ubuntu10.27/po/lt.po apt-0.8.16~exp12ubuntu10.29/po/lt.po --- apt-0.8.16~exp12ubuntu10.27/po/lt.po 2015-05-20 14:49:15.000000000 +0000 +++ apt-0.8.16~exp12ubuntu10.29/po/lt.po 2020-05-28 14:48:03.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: deity@lists.debian.org\n" -"POT-Creation-Date: 2015-05-20 16:49+0200\n" +"POT-Creation-Date: 2020-05-28 11:48-0300\n" "PO-Revision-Date: 2008-08-02 01:47-0400\n" "Last-Translator: Gintautas Miliauskas \n" "Language-Team: Lithuanian \n" @@ -1570,8 +1570,8 @@ msgstr "Tar kontrolinė suma klaidinga, archyvas sugadintas" #: apt-inst/contrib/extracttar.cc:303 -#, c-format -msgid "Unknown TAR header type %u, member %s" +#, fuzzy, c-format +msgid "Unknown TAR header type %u" msgstr "Nežinomas TAR antraštės tipas %u. narys %s" #: apt-inst/contrib/arfile.cc:74 @@ -1582,20 +1582,16 @@ msgid "Error reading archive member header" msgstr "" -#: apt-inst/contrib/arfile.cc:94 -#, c-format -msgid "Invalid archive member header %s" -msgstr "" - -#: apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:94 apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:123 msgid "Invalid archive member header" msgstr "" -#: apt-inst/contrib/arfile.cc:132 +#: apt-inst/contrib/arfile.cc:139 msgid "Archive is too short" msgstr "Archyvas per trumpas" -#: apt-inst/contrib/arfile.cc:136 +#: apt-inst/contrib/arfile.cc:143 msgid "Failed to read the archive headers" msgstr "Nepavyko perskaityti archyvo antraščių" diff -Nru apt-0.8.16~exp12ubuntu10.27/po/mr.po apt-0.8.16~exp12ubuntu10.29/po/mr.po --- apt-0.8.16~exp12ubuntu10.27/po/mr.po 2015-05-20 14:49:15.000000000 +0000 +++ apt-0.8.16~exp12ubuntu10.29/po/mr.po 2020-05-28 14:48:03.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: deity@lists.debian.org\n" -"POT-Creation-Date: 2015-05-20 16:49+0200\n" +"POT-Creation-Date: 2020-05-28 11:48-0300\n" "PO-Revision-Date: 2008-11-20 23:27+0530\n" "Last-Translator: Sampada \n" "Language-Team: Marathi, janabhaaratii, C-DAC, Mumbai, India " @@ -1633,8 +1633,8 @@ msgstr "टार(टेपअर्काईव्ह) चेकसम चुकला, बिघडलेली अर्काईव्ह" #: apt-inst/contrib/extracttar.cc:303 -#, c-format -msgid "Unknown TAR header type %u, member %s" +#, fuzzy, c-format +msgid "Unknown TAR header type %u" msgstr "अपरिचित TAR शीर्षक प्रकार %u, मेंबर %s" #: apt-inst/contrib/arfile.cc:74 @@ -1645,20 +1645,16 @@ msgid "Error reading archive member header" msgstr "अर्काईव्ह मेंबर शीर्षक वाचण्यास त्रुटी" -#: apt-inst/contrib/arfile.cc:94 -#, fuzzy, c-format -msgid "Invalid archive member header %s" -msgstr "अयोग्य अर्काईव्ह मेंबर शीर्षक" - -#: apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:94 apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:123 msgid "Invalid archive member header" msgstr "अयोग्य अर्काईव्ह मेंबर शीर्षक" -#: apt-inst/contrib/arfile.cc:132 +#: apt-inst/contrib/arfile.cc:139 msgid "Archive is too short" msgstr "अर्काईव्ह खूप छोटे आहे" -#: apt-inst/contrib/arfile.cc:136 +#: apt-inst/contrib/arfile.cc:143 msgid "Failed to read the archive headers" msgstr "अर्काईव्ह शीर्षके वाचणे असफल" @@ -3484,6 +3480,10 @@ msgid "Connection closed prematurely" msgstr "जोडणी अकाली बंद झाली" +#, fuzzy +#~ msgid "Invalid archive member header %s" +#~ msgstr "अयोग्य अर्काईव्ह मेंबर शीर्षक" + #~ msgid "decompressor" #~ msgstr "असंकलितकर्ता " diff -Nru apt-0.8.16~exp12ubuntu10.27/po/nb.po apt-0.8.16~exp12ubuntu10.29/po/nb.po --- apt-0.8.16~exp12ubuntu10.27/po/nb.po 2015-05-20 14:49:15.000000000 +0000 +++ apt-0.8.16~exp12ubuntu10.29/po/nb.po 2020-05-28 14:48:03.000000000 +0000 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: deity@lists.debian.org\n" -"POT-Creation-Date: 2015-05-20 16:49+0200\n" +"POT-Creation-Date: 2020-05-28 11:48-0300\n" "PO-Revision-Date: 2010-09-01 21:10+0200\n" "Last-Translator: Hans Fredrik Nordhaug \n" "Language-Team: Norwegian Bokmål \n" @@ -1659,8 +1659,8 @@ msgstr "Tar-sjekksummen mislykkes, arkivet er ødelagt" #: apt-inst/contrib/extracttar.cc:303 -#, c-format -msgid "Unknown TAR header type %u, member %s" +#, fuzzy, c-format +msgid "Unknown TAR header type %u" msgstr "Ukjent TAR-hode: type %u, medlem %s" #: apt-inst/contrib/arfile.cc:74 @@ -1671,20 +1671,16 @@ msgid "Error reading archive member header" msgstr "Feil ved lesing av arkivmedlemshode" -#: apt-inst/contrib/arfile.cc:94 -#, c-format -msgid "Invalid archive member header %s" -msgstr "Ugyldig arkivmedlemshode %s" - -#: apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:94 apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:123 msgid "Invalid archive member header" msgstr "Ugyldig arkivmedlemshode" -#: apt-inst/contrib/arfile.cc:132 +#: apt-inst/contrib/arfile.cc:139 msgid "Archive is too short" msgstr "Arkivet er for kort" -#: apt-inst/contrib/arfile.cc:136 +#: apt-inst/contrib/arfile.cc:143 msgid "Failed to read the archive headers" msgstr "Klarte ikke å lese arkivhodene" @@ -3545,6 +3541,9 @@ msgid "Connection closed prematurely" msgstr "Forbindelsen ble uventet stengt" +#~ msgid "Invalid archive member header %s" +#~ msgstr "Ugyldig arkivmedlemshode %s" + #~ msgid "decompressor" #~ msgstr "dekomprimering" diff -Nru apt-0.8.16~exp12ubuntu10.27/po/ne.po apt-0.8.16~exp12ubuntu10.29/po/ne.po --- apt-0.8.16~exp12ubuntu10.27/po/ne.po 2015-05-20 14:49:15.000000000 +0000 +++ apt-0.8.16~exp12ubuntu10.29/po/ne.po 2020-05-28 14:48:04.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: apt_po\n" "Report-Msgid-Bugs-To: deity@lists.debian.org\n" -"POT-Creation-Date: 2015-05-20 16:49+0200\n" +"POT-Creation-Date: 2020-05-28 11:48-0300\n" "PO-Revision-Date: 2006-06-12 14:35+0545\n" "Last-Translator: Shiva Pokharel \n" "Language-Team: Nepali \n" @@ -1631,8 +1631,8 @@ msgstr "टार चेकसम असफल भयो, संग्रह दूषित भयो" #: apt-inst/contrib/extracttar.cc:303 -#, c-format -msgid "Unknown TAR header type %u, member %s" +#, fuzzy, c-format +msgid "Unknown TAR header type %u" msgstr "अज्ञात टार हेडर प्रकार %u, सदस्य %s" #: apt-inst/contrib/arfile.cc:74 @@ -1643,20 +1643,16 @@ msgid "Error reading archive member header" msgstr "संग्रह सदस्य हेडर पढ्दा त्रुटि " -#: apt-inst/contrib/arfile.cc:94 -#, fuzzy, c-format -msgid "Invalid archive member header %s" -msgstr "अवैध संग्रह सदस्य हेडर" - -#: apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:94 apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:123 msgid "Invalid archive member header" msgstr "अवैध संग्रह सदस्य हेडर" -#: apt-inst/contrib/arfile.cc:132 +#: apt-inst/contrib/arfile.cc:139 msgid "Archive is too short" msgstr "संग्रह अति छोटो छ" -#: apt-inst/contrib/arfile.cc:136 +#: apt-inst/contrib/arfile.cc:143 msgid "Failed to read the archive headers" msgstr "संग्रह हेडरहरू पढ्न असफल" @@ -3476,6 +3472,10 @@ msgid "Connection closed prematurely" msgstr "जडान असमायिक बन्द भयो" +#, fuzzy +#~ msgid "Invalid archive member header %s" +#~ msgstr "अवैध संग्रह सदस्य हेडर" + #~ msgid "decompressor" #~ msgstr "सङ्कुचनविहिन कर्ता" diff -Nru apt-0.8.16~exp12ubuntu10.27/po/nl.po apt-0.8.16~exp12ubuntu10.29/po/nl.po --- apt-0.8.16~exp12ubuntu10.27/po/nl.po 2015-05-20 14:49:15.000000000 +0000 +++ apt-0.8.16~exp12ubuntu10.29/po/nl.po 2020-05-28 14:48:04.000000000 +0000 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: apt 0.8.15.9\n" "Report-Msgid-Bugs-To: deity@lists.debian.org\n" -"POT-Creation-Date: 2015-05-20 16:49+0200\n" +"POT-Creation-Date: 2020-05-28 11:48-0300\n" "PO-Revision-Date: 2011-12-05 17:10+0100\n" "Last-Translator: Jeroen Schot \n" "Language-Team: Debian l10n Dutch \n" @@ -1682,8 +1682,8 @@ msgstr "Tar controlesom klopt niet, het pakket is beschadigd" #: apt-inst/contrib/extracttar.cc:303 -#, c-format -msgid "Unknown TAR header type %u, member %s" +#, fuzzy, c-format +msgid "Unknown TAR header type %u" msgstr "Onbekende TAR-kopteksttype %u, onderdeel %s" #: apt-inst/contrib/arfile.cc:74 @@ -1694,20 +1694,16 @@ msgid "Error reading archive member header" msgstr "Fout bij het lezen van de koptekst van het archiefonderdeel" -#: apt-inst/contrib/arfile.cc:94 -#, c-format -msgid "Invalid archive member header %s" -msgstr "Ongeldige koptekst voor archiefonderdeel: %s" - -#: apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:94 apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:123 msgid "Invalid archive member header" msgstr "Ongeldige koptekst in archiefonderdeel" -#: apt-inst/contrib/arfile.cc:132 +#: apt-inst/contrib/arfile.cc:139 msgid "Archive is too short" msgstr "Archief is te kort" -#: apt-inst/contrib/arfile.cc:136 +#: apt-inst/contrib/arfile.cc:143 msgid "Failed to read the archive headers" msgstr "Lezen van de archiefkopteksten is mislukt" @@ -3607,6 +3603,9 @@ msgid "Connection closed prematurely" msgstr "Verbinding werd voortijdig afgebroken" +#~ msgid "Invalid archive member header %s" +#~ msgstr "Ongeldige koptekst voor archiefonderdeel: %s" + #~ msgid "decompressor" #~ msgstr "decompressor" diff -Nru apt-0.8.16~exp12ubuntu10.27/po/nn.po apt-0.8.16~exp12ubuntu10.29/po/nn.po --- apt-0.8.16~exp12ubuntu10.27/po/nn.po 2015-05-20 14:49:15.000000000 +0000 +++ apt-0.8.16~exp12ubuntu10.29/po/nn.po 2020-05-28 14:48:04.000000000 +0000 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: apt_nn\n" "Report-Msgid-Bugs-To: deity@lists.debian.org\n" -"POT-Creation-Date: 2015-05-20 16:49+0200\n" +"POT-Creation-Date: 2020-05-28 11:48-0300\n" "PO-Revision-Date: 2005-02-14 23:30+0100\n" "Last-Translator: Havard Korsvoll \n" "Language-Team: Norwegian nynorsk \n" @@ -1641,8 +1641,8 @@ msgstr "Tar-sjekksummen mislukkast, arkivet er ydelagt" #: apt-inst/contrib/extracttar.cc:303 -#, c-format -msgid "Unknown TAR header type %u, member %s" +#, fuzzy, c-format +msgid "Unknown TAR header type %u" msgstr "Ukjend TAR-hovud type %u, medlem %s" #: apt-inst/contrib/arfile.cc:74 @@ -1653,20 +1653,16 @@ msgid "Error reading archive member header" msgstr "Feil ved lesing av arkivmedlemshovud" -#: apt-inst/contrib/arfile.cc:94 -#, fuzzy, c-format -msgid "Invalid archive member header %s" -msgstr "Ugyldig arkivmedlemshovud" - -#: apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:94 apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:123 msgid "Invalid archive member header" msgstr "Ugyldig arkivmedlemshovud" -#: apt-inst/contrib/arfile.cc:132 +#: apt-inst/contrib/arfile.cc:139 msgid "Archive is too short" msgstr "Arkivet er for kort" -#: apt-inst/contrib/arfile.cc:136 +#: apt-inst/contrib/arfile.cc:143 msgid "Failed to read the archive headers" msgstr "Klarte ikkje lesa arkivhovuda" @@ -3497,6 +3493,10 @@ msgid "Connection closed prematurely" msgstr "Sambandet vart uventa stengd" +#, fuzzy +#~ msgid "Invalid archive member header %s" +#~ msgstr "Ugyldig arkivmedlemshovud" + #~ msgid "decompressor" #~ msgstr "dekomprimering" diff -Nru apt-0.8.16~exp12ubuntu10.27/po/pl.po apt-0.8.16~exp12ubuntu10.29/po/pl.po --- apt-0.8.16~exp12ubuntu10.27/po/pl.po 2015-05-20 14:49:15.000000000 +0000 +++ apt-0.8.16~exp12ubuntu10.29/po/pl.po 2020-05-28 14:48:04.000000000 +0000 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: apt 0.7.23.1\n" "Report-Msgid-Bugs-To: deity@lists.debian.org\n" -"POT-Creation-Date: 2015-05-20 16:49+0200\n" +"POT-Creation-Date: 2020-05-28 11:48-0300\n" "PO-Revision-Date: 2012-01-22 20:35+0100\n" "Last-Translator: Michał Kułach \n" "Language-Team: Polish \n" @@ -1716,8 +1716,8 @@ msgstr "Niepoprawna suma kontrolna tar, archiwum jest uszkodzone" #: apt-inst/contrib/extracttar.cc:303 -#, c-format -msgid "Unknown TAR header type %u, member %s" +#, fuzzy, c-format +msgid "Unknown TAR header type %u" msgstr "Nieznany typ nagłówka TAR %u, składnik %s" #: apt-inst/contrib/arfile.cc:74 @@ -1728,20 +1728,16 @@ msgid "Error reading archive member header" msgstr "Błąd przy czytaniu nagłówka składnika archiwum" -#: apt-inst/contrib/arfile.cc:94 -#, c-format -msgid "Invalid archive member header %s" -msgstr "Nieprawidłowy nagłówek składnika archiwum: %s" - -#: apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:94 apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:123 msgid "Invalid archive member header" msgstr "Nieprawidłowy nagłówek składnika archiwum" -#: apt-inst/contrib/arfile.cc:132 +#: apt-inst/contrib/arfile.cc:139 msgid "Archive is too short" msgstr "Archiwum jest za krótkie" -#: apt-inst/contrib/arfile.cc:136 +#: apt-inst/contrib/arfile.cc:143 msgid "Failed to read the archive headers" msgstr "Nie udało się odczytać nagłówków archiwum" @@ -3631,6 +3627,9 @@ msgid "Connection closed prematurely" msgstr "Połączenie zostało przedwcześnie zamknięte" +#~ msgid "Invalid archive member header %s" +#~ msgstr "Nieprawidłowy nagłówek składnika archiwum: %s" + #~ msgid "decompressor" #~ msgstr "dekompresor" diff -Nru apt-0.8.16~exp12ubuntu10.27/po/pt_BR.po apt-0.8.16~exp12ubuntu10.29/po/pt_BR.po --- apt-0.8.16~exp12ubuntu10.27/po/pt_BR.po 2015-05-20 14:49:15.000000000 +0000 +++ apt-0.8.16~exp12ubuntu10.29/po/pt_BR.po 2020-05-28 14:48:04.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: deity@lists.debian.org\n" -"POT-Creation-Date: 2015-05-20 16:49+0200\n" +"POT-Creation-Date: 2020-05-28 11:48-0300\n" "PO-Revision-Date: 2008-11-17 02:33-0200\n" "Last-Translator: Felipe Augusto van de Wiel (faw) \n" "Language-Team: Brazilian Portuguese \n" "Language-Team: Portuguese \n" @@ -1673,8 +1673,8 @@ msgstr "A soma de controlo do tar falhou, arquivo corrompido" #: apt-inst/contrib/extracttar.cc:303 -#, c-format -msgid "Unknown TAR header type %u, member %s" +#, fuzzy, c-format +msgid "Unknown TAR header type %u" msgstr "Tipo de cabeçalho TAR %u desconhecido, membro %s" #: apt-inst/contrib/arfile.cc:74 @@ -1685,20 +1685,16 @@ msgid "Error reading archive member header" msgstr "Erro na leitura de cabeçalho membro de arquivo" -#: apt-inst/contrib/arfile.cc:94 -#, c-format -msgid "Invalid archive member header %s" -msgstr "Cabeçalho membro de arquivo inválido %s" - -#: apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:94 apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:123 msgid "Invalid archive member header" msgstr "Cabeçalho membro de arquivo inválido" -#: apt-inst/contrib/arfile.cc:132 +#: apt-inst/contrib/arfile.cc:139 msgid "Archive is too short" msgstr "Arquivo é demasiado pequeno" -#: apt-inst/contrib/arfile.cc:136 +#: apt-inst/contrib/arfile.cc:143 msgid "Failed to read the archive headers" msgstr "Falha ao ler os cabeçalhos do arquivo" @@ -3596,6 +3592,9 @@ msgid "Connection closed prematurely" msgstr "Ligação encerrada prematuramente" +#~ msgid "Invalid archive member header %s" +#~ msgstr "Cabeçalho membro de arquivo inválido %s" + #~ msgid "decompressor" #~ msgstr "descompactador" diff -Nru apt-0.8.16~exp12ubuntu10.27/po/ro.po apt-0.8.16~exp12ubuntu10.29/po/ro.po --- apt-0.8.16~exp12ubuntu10.27/po/ro.po 2015-05-20 14:49:15.000000000 +0000 +++ apt-0.8.16~exp12ubuntu10.29/po/ro.po 2020-05-28 14:48:04.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: ro\n" "Report-Msgid-Bugs-To: deity@lists.debian.org\n" -"POT-Creation-Date: 2015-05-20 16:49+0200\n" +"POT-Creation-Date: 2020-05-28 11:48-0300\n" "PO-Revision-Date: 2008-11-15 02:21+0200\n" "Last-Translator: Eddy Petrișor \n" "Language-Team: Romanian \n" @@ -1672,8 +1672,8 @@ "Suma de control a arhivei tar nu s-a verificat, arhiva este deteriorată" #: apt-inst/contrib/extracttar.cc:303 -#, c-format -msgid "Unknown TAR header type %u, member %s" +#, fuzzy, c-format +msgid "Unknown TAR header type %u" msgstr "Tip antet TAR %u necunoscut, membrul %s" #: apt-inst/contrib/arfile.cc:74 @@ -1684,20 +1684,16 @@ msgid "Error reading archive member header" msgstr "Eroare la citirea antetului membrului arhivei" -#: apt-inst/contrib/arfile.cc:94 -#, fuzzy, c-format -msgid "Invalid archive member header %s" -msgstr "Antet de membru de arhivă necorespunzător" - -#: apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:94 apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:123 msgid "Invalid archive member header" msgstr "Antet de membru de arhivă necorespunzător" -#: apt-inst/contrib/arfile.cc:132 +#: apt-inst/contrib/arfile.cc:139 msgid "Archive is too short" msgstr "Arhiva este prea scurtă" -#: apt-inst/contrib/arfile.cc:136 +#: apt-inst/contrib/arfile.cc:143 msgid "Failed to read the archive headers" msgstr "Eșec la citirea antetelor arhivei" @@ -3553,6 +3549,10 @@ msgid "Connection closed prematurely" msgstr "Conexiune închisă prematur" +#, fuzzy +#~ msgid "Invalid archive member header %s" +#~ msgstr "Antet de membru de arhivă necorespunzător" + #~ msgid "decompressor" #~ msgstr "decompresor" diff -Nru apt-0.8.16~exp12ubuntu10.27/po/ru.po apt-0.8.16~exp12ubuntu10.29/po/ru.po --- apt-0.8.16~exp12ubuntu10.27/po/ru.po 2015-05-20 14:49:15.000000000 +0000 +++ apt-0.8.16~exp12ubuntu10.29/po/ru.po 2020-05-28 14:48:04.000000000 +0000 @@ -13,7 +13,7 @@ msgstr "" "Project-Id-Version: apt 0.8.15.9\n" "Report-Msgid-Bugs-To: deity@lists.debian.org\n" -"POT-Creation-Date: 2015-05-20 16:49+0200\n" +"POT-Creation-Date: 2020-05-28 11:48-0300\n" "PO-Revision-Date: 2012-01-06 10:36+0400\n" "Last-Translator: Yuri Kozlov \n" "Language-Team: Russian \n" @@ -1714,8 +1714,8 @@ msgstr "Неправильная контрольная сумма Tar, архив повреждён" #: apt-inst/contrib/extracttar.cc:303 -#, c-format -msgid "Unknown TAR header type %u, member %s" +#, fuzzy, c-format +msgid "Unknown TAR header type %u" msgstr "Неизвестный заголовок в архиве TAR. Тип %u, элемент %s" #: apt-inst/contrib/arfile.cc:74 @@ -1726,20 +1726,16 @@ msgid "Error reading archive member header" msgstr "Ошибка чтения заголовка элемента архива" -#: apt-inst/contrib/arfile.cc:94 -#, c-format -msgid "Invalid archive member header %s" -msgstr "Неправильный заголовок элемента архива %s" - -#: apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:94 apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:123 msgid "Invalid archive member header" msgstr "Неправильный заголовок элемента архива" -#: apt-inst/contrib/arfile.cc:132 +#: apt-inst/contrib/arfile.cc:139 msgid "Archive is too short" msgstr "Слишком короткий архив" -#: apt-inst/contrib/arfile.cc:136 +#: apt-inst/contrib/arfile.cc:143 msgid "Failed to read the archive headers" msgstr "Не удалось прочитать заголовки архива" @@ -3633,6 +3629,9 @@ msgid "Connection closed prematurely" msgstr "Соединение закрыто преждевременно" +#~ msgid "Invalid archive member header %s" +#~ msgstr "Неправильный заголовок элемента архива %s" + #~ msgid "decompressor" #~ msgstr "декомпрессор" diff -Nru apt-0.8.16~exp12ubuntu10.27/po/sk.po apt-0.8.16~exp12ubuntu10.29/po/sk.po --- apt-0.8.16~exp12ubuntu10.27/po/sk.po 2015-05-20 14:49:15.000000000 +0000 +++ apt-0.8.16~exp12ubuntu10.29/po/sk.po 2020-05-28 14:48:04.000000000 +0000 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: deity@lists.debian.org\n" -"POT-Creation-Date: 2015-05-20 16:49+0200\n" +"POT-Creation-Date: 2020-05-28 11:48-0300\n" "PO-Revision-Date: 2011-12-22 14:58+0100\n" "Last-Translator: Ivan Masár \n" "Language-Team: Slovak \n" @@ -1683,8 +1683,8 @@ msgstr "Kontrolný súčet pre tar zlyhal, archív je poškodený" #: apt-inst/contrib/extracttar.cc:303 -#, c-format -msgid "Unknown TAR header type %u, member %s" +#, fuzzy, c-format +msgid "Unknown TAR header type %u" msgstr "Neznáma TAR hlavička typu %u, člen %s" #: apt-inst/contrib/arfile.cc:74 @@ -1695,20 +1695,16 @@ msgid "Error reading archive member header" msgstr "Chyba pri čítaní záhlavia prvku archívu" -#: apt-inst/contrib/arfile.cc:94 -#, c-format -msgid "Invalid archive member header %s" -msgstr "Neplatná hlavička prvku archívu %s" - -#: apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:94 apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:123 msgid "Invalid archive member header" msgstr "Neplatné záhlavie prvku archívu" -#: apt-inst/contrib/arfile.cc:132 +#: apt-inst/contrib/arfile.cc:139 msgid "Archive is too short" msgstr "Archív je príliš krátky" -#: apt-inst/contrib/arfile.cc:136 +#: apt-inst/contrib/arfile.cc:143 msgid "Failed to read the archive headers" msgstr "Chyba pri čítaní hlavičiek archívu" @@ -3570,6 +3566,9 @@ msgid "Connection closed prematurely" msgstr "Spojenie bolo predčasne ukončené" +#~ msgid "Invalid archive member header %s" +#~ msgstr "Neplatná hlavička prvku archívu %s" + #~ msgid "decompressor" #~ msgstr "dekompresor" diff -Nru apt-0.8.16~exp12ubuntu10.27/po/sl.po apt-0.8.16~exp12ubuntu10.29/po/sl.po --- apt-0.8.16~exp12ubuntu10.27/po/sl.po 2015-05-20 14:49:15.000000000 +0000 +++ apt-0.8.16~exp12ubuntu10.29/po/sl.po 2020-05-28 14:48:04.000000000 +0000 @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: apt 0.5.5\n" "Report-Msgid-Bugs-To: deity@lists.debian.org\n" -"POT-Creation-Date: 2015-05-20 16:49+0200\n" +"POT-Creation-Date: 2020-05-28 11:48-0300\n" "PO-Revision-Date: 2011-03-06 15:47+0000\n" "Last-Translator: Andrej Znidarsic \n" "Language-Team: Slovenian \n" @@ -1663,8 +1663,8 @@ msgstr "Nadzorna vsota tar ni uspela, arhiv je pokvarjen" #: apt-inst/contrib/extracttar.cc:303 -#, c-format -msgid "Unknown TAR header type %u, member %s" +#, fuzzy, c-format +msgid "Unknown TAR header type %u" msgstr "Neznana vrsta glave TAR %u, član %s" #: apt-inst/contrib/arfile.cc:74 @@ -1675,20 +1675,16 @@ msgid "Error reading archive member header" msgstr "Napaka med branjem glave člana arhiva" -#: apt-inst/contrib/arfile.cc:94 -#, c-format -msgid "Invalid archive member header %s" -msgstr "Neveljavna glava arhiva člana %s" - -#: apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:94 apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:123 msgid "Invalid archive member header" msgstr "Neveljavna glava člana arhiva" -#: apt-inst/contrib/arfile.cc:132 +#: apt-inst/contrib/arfile.cc:139 msgid "Archive is too short" msgstr "Arhiv je prekratek" -#: apt-inst/contrib/arfile.cc:136 +#: apt-inst/contrib/arfile.cc:143 msgid "Failed to read the archive headers" msgstr "Glav arhiva ni mogoče brati" @@ -3551,6 +3547,9 @@ msgid "Connection closed prematurely" msgstr "Povezava se je prezgodaj zaprla" +#~ msgid "Invalid archive member header %s" +#~ msgstr "Neveljavna glava arhiva člana %s" + #~ msgid "decompressor" #~ msgstr "program za razširjanje" diff -Nru apt-0.8.16~exp12ubuntu10.27/po/sv.po apt-0.8.16~exp12ubuntu10.29/po/sv.po --- apt-0.8.16~exp12ubuntu10.27/po/sv.po 2015-05-20 14:49:15.000000000 +0000 +++ apt-0.8.16~exp12ubuntu10.29/po/sv.po 2020-05-28 14:48:04.000000000 +0000 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: deity@lists.debian.org\n" -"POT-Creation-Date: 2015-05-20 16:49+0200\n" +"POT-Creation-Date: 2020-05-28 11:48-0300\n" "PO-Revision-Date: 2010-08-24 21:18+0100\n" "Last-Translator: Daniel Nylander \n" "Language-Team: Swedish \n" @@ -1675,8 +1675,8 @@ msgstr "Tar-kontrollsumma misslyckades, arkivet skadat" #: apt-inst/contrib/extracttar.cc:303 -#, c-format -msgid "Unknown TAR header type %u, member %s" +#, fuzzy, c-format +msgid "Unknown TAR header type %u" msgstr "Okänd TAR-rubriktyp %u, del %s" #: apt-inst/contrib/arfile.cc:74 @@ -1687,20 +1687,16 @@ msgid "Error reading archive member header" msgstr "Fel vid läsning av rubrik för arkivdel" -#: apt-inst/contrib/arfile.cc:94 -#, c-format -msgid "Invalid archive member header %s" -msgstr "Ogiltig arkivdelsrubrik %s" - -#: apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:94 apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:123 msgid "Invalid archive member header" msgstr "Ogiltigt arkivdelsrubrik" -#: apt-inst/contrib/arfile.cc:132 +#: apt-inst/contrib/arfile.cc:139 msgid "Archive is too short" msgstr "Arkivet är för kort" -#: apt-inst/contrib/arfile.cc:136 +#: apt-inst/contrib/arfile.cc:143 msgid "Failed to read the archive headers" msgstr "Misslyckades med att läsa arkivrubriker" @@ -3578,6 +3574,9 @@ msgid "Connection closed prematurely" msgstr "Anslutningen stängdes i förtid" +#~ msgid "Invalid archive member header %s" +#~ msgstr "Ogiltig arkivdelsrubrik %s" + #~ msgid "decompressor" #~ msgstr "uppackare" diff -Nru apt-0.8.16~exp12ubuntu10.27/po/th.po apt-0.8.16~exp12ubuntu10.29/po/th.po --- apt-0.8.16~exp12ubuntu10.27/po/th.po 2015-05-20 14:49:15.000000000 +0000 +++ apt-0.8.16~exp12ubuntu10.29/po/th.po 2020-05-28 14:48:04.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: deity@lists.debian.org\n" -"POT-Creation-Date: 2015-05-20 16:49+0200\n" +"POT-Creation-Date: 2020-05-28 11:48-0300\n" "PO-Revision-Date: 2008-11-06 15:54+0700\n" "Last-Translator: Theppitak Karoonboonyanan \n" "Language-Team: Thai \n" @@ -1620,8 +1620,8 @@ msgstr "checksum ของแฟ้ม tar ผิดพลาด แฟ้มจัดเก็บเสียหาย" #: apt-inst/contrib/extracttar.cc:303 -#, c-format -msgid "Unknown TAR header type %u, member %s" +#, fuzzy, c-format +msgid "Unknown TAR header type %u" msgstr "พบชนิด %u ของข้อมูลส่วนหัว TAR ที่ไม่รู้จัก ที่สมาชิก %s" #: apt-inst/contrib/arfile.cc:74 @@ -1632,20 +1632,16 @@ msgid "Error reading archive member header" msgstr "เกิดข้อผิดพลาดขณะอ่านข้อมูลส่วนหัวของสมาชิก archive" -#: apt-inst/contrib/arfile.cc:94 -#, fuzzy, c-format -msgid "Invalid archive member header %s" -msgstr "ข้อมูลส่วนหัวของสมาชิก archive ไม่ถูกต้อง" - -#: apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:94 apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:123 msgid "Invalid archive member header" msgstr "ข้อมูลส่วนหัวของสมาชิก archive ไม่ถูกต้อง" -#: apt-inst/contrib/arfile.cc:132 +#: apt-inst/contrib/arfile.cc:139 msgid "Archive is too short" msgstr "archive สั้นเกินไป" -#: apt-inst/contrib/arfile.cc:136 +#: apt-inst/contrib/arfile.cc:143 msgid "Failed to read the archive headers" msgstr "อ่านข้อมูลส่วนหัวของ archive ไม่สำเร็จ" @@ -3456,6 +3452,10 @@ msgid "Connection closed prematurely" msgstr "การเชื่อมต่อถูกปิดก่อนเวลาอันควร" +#, fuzzy +#~ msgid "Invalid archive member header %s" +#~ msgstr "ข้อมูลส่วนหัวของสมาชิก archive ไม่ถูกต้อง" + #~ msgid "decompressor" #~ msgstr "ตัวคลายบีบอัด" diff -Nru apt-0.8.16~exp12ubuntu10.27/po/tl.po apt-0.8.16~exp12ubuntu10.29/po/tl.po --- apt-0.8.16~exp12ubuntu10.27/po/tl.po 2015-05-20 14:49:15.000000000 +0000 +++ apt-0.8.16~exp12ubuntu10.29/po/tl.po 2020-05-28 14:48:04.000000000 +0000 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: deity@lists.debian.org\n" -"POT-Creation-Date: 2015-05-20 16:49+0200\n" +"POT-Creation-Date: 2020-05-28 11:48-0300\n" "PO-Revision-Date: 2007-03-29 21:36+0800\n" "Last-Translator: Eric Pareja \n" "Language-Team: Tagalog \n" @@ -1660,8 +1660,8 @@ msgstr "Bigo ang checksum ng tar, sira ang arkibo" #: apt-inst/contrib/extracttar.cc:303 -#, c-format -msgid "Unknown TAR header type %u, member %s" +#, fuzzy, c-format +msgid "Unknown TAR header type %u" msgstr "Hindi kilalang uri ng TAR header %u, miyembrong %s" #: apt-inst/contrib/arfile.cc:74 @@ -1672,20 +1672,16 @@ msgid "Error reading archive member header" msgstr "Error sa pagbasa ng header ng miyembro ng arkibo" -#: apt-inst/contrib/arfile.cc:94 -#, fuzzy, c-format -msgid "Invalid archive member header %s" -msgstr "Hindi tanggap na header ng miyembro ng arkibo" - -#: apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:94 apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:123 msgid "Invalid archive member header" msgstr "Hindi tanggap na header ng miyembro ng arkibo" -#: apt-inst/contrib/arfile.cc:132 +#: apt-inst/contrib/arfile.cc:139 msgid "Archive is too short" msgstr "Bitin ang arkibo. Sobrang iksi." -#: apt-inst/contrib/arfile.cc:136 +#: apt-inst/contrib/arfile.cc:143 msgid "Failed to read the archive headers" msgstr "Bigo ang pagbasa ng header ng arkibo" @@ -3535,6 +3531,10 @@ msgid "Connection closed prematurely" msgstr "Nagsara ng maaga ang koneksyon" +#, fuzzy +#~ msgid "Invalid archive member header %s" +#~ msgstr "Hindi tanggap na header ng miyembro ng arkibo" + #~ msgid "decompressor" #~ msgstr "taga-decompress" diff -Nru apt-0.8.16~exp12ubuntu10.27/po/uk.po apt-0.8.16~exp12ubuntu10.29/po/uk.po --- apt-0.8.16~exp12ubuntu10.27/po/uk.po 2015-05-20 14:49:15.000000000 +0000 +++ apt-0.8.16~exp12ubuntu10.29/po/uk.po 2020-05-28 14:48:04.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: apt-all\n" "Report-Msgid-Bugs-To: deity@lists.debian.org\n" -"POT-Creation-Date: 2015-05-20 16:49+0200\n" +"POT-Creation-Date: 2020-05-28 11:48-0300\n" "PO-Revision-Date: 2006-07-29 15:57+0300\n" "Last-Translator: Artem Bondarenko \n" "Language-Team: Українська \n" @@ -1668,8 +1668,8 @@ msgstr "Контрольна сума tar архіва невірна, архів пошкоджений" #: apt-inst/contrib/extracttar.cc:303 -#, c-format -msgid "Unknown TAR header type %u, member %s" +#, fuzzy, c-format +msgid "Unknown TAR header type %u" msgstr "Невідомий тип заголовку TAR %u, член %s" #: apt-inst/contrib/arfile.cc:74 @@ -1680,20 +1680,16 @@ msgid "Error reading archive member header" msgstr "Неможливо прочитати заголовок \"member\" архіву" -#: apt-inst/contrib/arfile.cc:94 -#, fuzzy, c-format -msgid "Invalid archive member header %s" -msgstr "Невірний заголовок \"member\" архіву" - -#: apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:94 apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:123 msgid "Invalid archive member header" msgstr "Невірний заголовок \"member\" архіву" -#: apt-inst/contrib/arfile.cc:132 +#: apt-inst/contrib/arfile.cc:139 msgid "Archive is too short" msgstr "Архів занадто малий" -#: apt-inst/contrib/arfile.cc:136 +#: apt-inst/contrib/arfile.cc:143 msgid "Failed to read the archive headers" msgstr "Не вдалося прочитати заголовки архіву" @@ -3548,6 +3544,10 @@ msgid "Connection closed prematurely" msgstr "З'єднання завершено передчасно" +#, fuzzy +#~ msgid "Invalid archive member header %s" +#~ msgstr "Невірний заголовок \"member\" архіву" + #~ msgid "decompressor" #~ msgstr "декомпресор" diff -Nru apt-0.8.16~exp12ubuntu10.27/po/vi.po apt-0.8.16~exp12ubuntu10.29/po/vi.po --- apt-0.8.16~exp12ubuntu10.27/po/vi.po 2015-05-20 14:49:15.000000000 +0000 +++ apt-0.8.16~exp12ubuntu10.29/po/vi.po 2020-05-28 14:48:04.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: apt 0.8.0~pre1\n" "Report-Msgid-Bugs-To: deity@lists.debian.org\n" -"POT-Creation-Date: 2015-05-20 16:49+0200\n" +"POT-Creation-Date: 2020-05-28 11:48-0300\n" "PO-Revision-Date: 2010-09-29 21:36+0930\n" "Last-Translator: Clytie Siddall \n" "Language-Team: Vietnamese \n" @@ -1683,8 +1683,8 @@ msgstr "Lỗi kiểm tổng tar, kho bị hỏng" #: apt-inst/contrib/extracttar.cc:303 -#, c-format -msgid "Unknown TAR header type %u, member %s" +#, fuzzy, c-format +msgid "Unknown TAR header type %u" msgstr "Không rõ kiểu phần đầu tar %u, bộ phạn %s" #: apt-inst/contrib/arfile.cc:74 @@ -1695,20 +1695,16 @@ msgid "Error reading archive member header" msgstr "Gặp lỗi khi đọc phần đầu bộ phạn kho" -#: apt-inst/contrib/arfile.cc:94 -#, c-format -msgid "Invalid archive member header %s" -msgstr "Phần đầu bộ phận kho lưu không hợp lệ %s" - -#: apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:94 apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:123 msgid "Invalid archive member header" msgstr "Phần đầu bộ phạn kho không hợp lê" -#: apt-inst/contrib/arfile.cc:132 +#: apt-inst/contrib/arfile.cc:139 msgid "Archive is too short" msgstr "Kho quá ngắn" -#: apt-inst/contrib/arfile.cc:136 +#: apt-inst/contrib/arfile.cc:143 msgid "Failed to read the archive headers" msgstr "Việc đọc phần đầu kho bị lỗi" @@ -3583,6 +3579,9 @@ msgid "Connection closed prematurely" msgstr "Kết nối bị đóng quá sớm." +#~ msgid "Invalid archive member header %s" +#~ msgstr "Phần đầu bộ phận kho lưu không hợp lệ %s" + #~ msgid "decompressor" #~ msgstr "bộ giải nén" diff -Nru apt-0.8.16~exp12ubuntu10.27/po/zh_CN.po apt-0.8.16~exp12ubuntu10.29/po/zh_CN.po --- apt-0.8.16~exp12ubuntu10.27/po/zh_CN.po 2015-05-20 14:49:15.000000000 +0000 +++ apt-0.8.16~exp12ubuntu10.29/po/zh_CN.po 2020-05-28 14:48:04.000000000 +0000 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: apt 0.8.0~pre1\n" "Report-Msgid-Bugs-To: deity@lists.debian.org\n" -"POT-Creation-Date: 2015-05-20 16:49+0200\n" +"POT-Creation-Date: 2020-05-28 11:48-0300\n" "PO-Revision-Date: 2010-08-26 14:42+0800\n" "Last-Translator: Aron Xu \n" "Language-Team: Chinese (simplified) \n" @@ -1625,8 +1625,8 @@ msgstr "Tar 的校验和不符,文件已损坏" #: apt-inst/contrib/extracttar.cc:303 -#, c-format -msgid "Unknown TAR header type %u, member %s" +#, fuzzy, c-format +msgid "Unknown TAR header type %u" msgstr "未知的 TAR 数据头类型 %u,成员 %s" #: apt-inst/contrib/arfile.cc:74 @@ -1637,20 +1637,16 @@ msgid "Error reading archive member header" msgstr "读取归档成员文件头出错" -#: apt-inst/contrib/arfile.cc:94 -#, c-format -msgid "Invalid archive member header %s" -msgstr "归档文件中成员文件头 %s 无效" - -#: apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:94 apt-inst/contrib/arfile.cc:106 +#: apt-inst/contrib/arfile.cc:123 msgid "Invalid archive member header" msgstr "归档文件中成员文件头无效" -#: apt-inst/contrib/arfile.cc:132 +#: apt-inst/contrib/arfile.cc:139 msgid "Archive is too short" msgstr "归档文件太短" -#: apt-inst/contrib/arfile.cc:136 +#: apt-inst/contrib/arfile.cc:143 msgid "Failed to read the archive headers" msgstr "无法读取归档文件的数据头" @@ -3471,6 +3467,9 @@ msgid "Connection closed prematurely" msgstr "连接被永久关闭" +#~ msgid "Invalid archive member header %s" +#~ msgstr "归档文件中成员文件头 %s 无效" + #~ msgid "decompressor" #~ msgstr "解压程序" diff -Nru apt-0.8.16~exp12ubuntu10.27/po/zh_TW.po apt-0.8.16~exp12ubuntu10.29/po/zh_TW.po --- apt-0.8.16~exp12ubuntu10.27/po/zh_TW.po 2015-05-20 14:49:15.000000000 +0000 +++ apt-0.8.16~exp12ubuntu10.29/po/zh_TW.po 2020-05-28 14:48:04.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: 0.5.4\n" "Report-Msgid-Bugs-To: deity@lists.debian.org\n" -"POT-Creation-Date: 2015-05-20 16:49+0200\n" +"POT-Creation-Date: 2020-05-28 11:48-0300\n" "PO-Revision-Date: 2009-01-28 10:41+0800\n" "Last-Translator: Tetralet \n" "Language-Team: Debian-user in Chinese [Big5] [ other fields] - name is not nul terminated here, it ends in . +msgmsg "Unterminated ar member name" +printf '!\0120123456789ABCDE.A123456789A.01234.01234.0123456.012345678.0.' > test.deb +testsuccessequal "E: Invalid archive member header" ${BUILDDIRECTORY}/../test/interactive-helper/testdeb test.deb + + +# unused source code for generating $tar below +maketar() { + cat > maketar.c << EOF + #include + #include + struct tar { + char Name[100]; + char Mode[8]; + char UserID[8]; + char GroupID[8]; + char Size[12]; + char MTime[12]; + char Checksum[8]; + char LinkFlag; + char LinkName[100]; + char MagicNumber[8]; + char UserName[32]; + char GroupName[32]; + char Major[8]; + char Minor[8]; + }; + + int main(void) + { + union { + struct tar t; + char buf[512]; + } t; + for (int i = 0; i < sizeof(t.buf); i++) + t.buf[i] = '7'; + memcpy(t.t.Name, "unterminatedName", 16); + memcpy(t.t.UserName, "userName", 8); + memcpy(t.t.GroupName, "thisIsAGroupNamethisIsAGroupName", 32); + t.t.LinkFlag = 'X'; // I AM BROKEN + memcpy(t.t.Size, "000000000000", sizeof(t.t.Size)); + memset(t.t.Checksum,' ',sizeof(t.t.Checksum)); + + unsigned long sum = 0; + for (int i = 0; i < sizeof(t.buf); i++) + sum += t.buf[i]; + + int written = sprintf(t.t.Checksum, "%lo", sum); + for (int i = written; i < sizeof(t.t.Checksum); i++) + t.t.Checksum[i] = ' '; + fwrite(t.buf, sizeof(t.buf), 1, stdout); + } +EOF + + gcc maketar.c -o maketar -Wall + ./maketar +} + + +# +tar="unterminatedName77777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777700000000000077777777777773544 X777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777userName777777777777777777777777thisIsAGroupNamethisIsAGroupName777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777" +printf '%s' "$tar" | gzip > control.tar.gz +cp control.tar.gz data.tar.gz +touch debian-binary +rm test.deb +ar -q test.deb debian-binary control.tar.gz data.tar.gz +testsuccessequal "W: Unknown TAR header type 88" ${BUILDDIRECTORY}/../test/interactive-helper/testdeb test.deb