diff -Nru /tmp/VaZhVirAmV/apt-0.6.45ubuntu14.1/apt-pkg/deb/dpkgpm.cc /tmp/aXa9dIZCe0/apt-0.6.45ubuntu14.2/apt-pkg/deb/dpkgpm.cc --- /tmp/VaZhVirAmV/apt-0.6.45ubuntu14.1/apt-pkg/deb/dpkgpm.cc 2006-08-15 12:46:54.000000000 +0200 +++ /tmp/aXa9dIZCe0/apt-0.6.45ubuntu14.2/apt-pkg/deb/dpkgpm.cc 2007-02-16 16:43:30.000000000 +0100 @@ -706,14 +706,21 @@ // Check for an error code. if (WIFEXITED(Status) == 0 || WEXITSTATUS(Status) != 0) { - RunScripts("DPkg::Post-Invoke"); + // if it was set to "keep-dpkg-runing" then we won't return + // here but keep the loop going and just report it as a error + // for later + bool stopOnError = _config->FindB("Dpkg::StopOnError",true); + + if(stopOnError) + RunScripts("DPkg::Post-Invoke"); if (WIFSIGNALED(Status) != 0 && WTERMSIG(Status) == SIGSEGV) return _error->Error("Sub-process %s received a segmentation fault.",Args[0]); - - if (WIFEXITED(Status) != 0) + else if (WIFEXITED(Status) != 0) return _error->Error("Sub-process %s returned an error code (%u)",Args[0],WEXITSTATUS(Status)); - - return _error->Error("Sub-process %s exited unexpectedly",Args[0]); + else _error->Error("Sub-process %s exited unexpectedly",Args[0]); + + if (stopOnError) + return false; } } diff -Nru /tmp/VaZhVirAmV/apt-0.6.45ubuntu14.1/configure /tmp/aXa9dIZCe0/apt-0.6.45ubuntu14.2/configure --- /tmp/VaZhVirAmV/apt-0.6.45ubuntu14.1/configure 2007-01-22 17:34:50.000000000 +0100 +++ /tmp/aXa9dIZCe0/apt-0.6.45ubuntu14.2/configure 2007-02-16 16:44:21.000000000 +0100 @@ -1770,7 +1770,7 @@ cat >>confdefs.h <<_ACEOF -#define VERSION "0.6.45ubuntu14.1" +#define VERSION "0.6.45ubuntu14.2" _ACEOF PACKAGE="apt" diff -Nru /tmp/VaZhVirAmV/apt-0.6.45ubuntu14.1/configure.in /tmp/aXa9dIZCe0/apt-0.6.45ubuntu14.2/configure.in --- /tmp/VaZhVirAmV/apt-0.6.45ubuntu14.1/configure.in 2007-01-22 17:34:50.000000000 +0100 +++ /tmp/aXa9dIZCe0/apt-0.6.45ubuntu14.2/configure.in 2007-02-16 16:44:20.000000000 +0100 @@ -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.6.45ubuntu14.1") +AC_DEFINE_UNQUOTED(VERSION,"0.6.45ubuntu14.2") PACKAGE="apt" AC_DEFINE_UNQUOTED(PACKAGE,"$PACKAGE") AC_SUBST(PACKAGE) diff -Nru /tmp/VaZhVirAmV/apt-0.6.45ubuntu14.1/debian/changelog /tmp/aXa9dIZCe0/apt-0.6.45ubuntu14.2/debian/changelog --- /tmp/VaZhVirAmV/apt-0.6.45ubuntu14.1/debian/changelog 2007-01-22 17:34:50.000000000 +0100 +++ /tmp/aXa9dIZCe0/apt-0.6.45ubuntu14.2/debian/changelog 2007-02-16 16:44:17.000000000 +0100 @@ -1,3 +1,10 @@ +apt (0.6.45ubuntu14.2) edgy-proposed; urgency=low + + * added DPkg::StopOnError variable that is used in the release-upgrader + (LP:#85207) + + -- Michael Vogt Fri, 16 Feb 2007 16:43:41 +0100 + apt (0.6.45ubuntu14.1) edgy-proposed; urgency=low * fix segfault when reading package lists (lp: #75273) diff -Nru /tmp/VaZhVirAmV/apt-0.6.45ubuntu14.1/po/apt-all.pot /tmp/aXa9dIZCe0/apt-0.6.45ubuntu14.2/po/apt-all.pot --- /tmp/VaZhVirAmV/apt-0.6.45ubuntu14.1/po/apt-all.pot 2007-01-22 17:35:07.000000000 +0100 +++ /tmp/aXa9dIZCe0/apt-0.6.45ubuntu14.2/po/apt-all.pot 2007-02-16 16:44:26.000000000 +0100 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-01-22 17:35+0100\n" +"POT-Creation-Date: 2007-02-16 16:44+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru /tmp/VaZhVirAmV/apt-0.6.45ubuntu14.1/po/bg.po /tmp/aXa9dIZCe0/apt-0.6.45ubuntu14.2/po/bg.po --- /tmp/VaZhVirAmV/apt-0.6.45ubuntu14.1/po/bg.po 2007-01-22 17:35:07.000000000 +0100 +++ /tmp/aXa9dIZCe0/apt-0.6.45ubuntu14.2/po/bg.po 2007-02-16 16:44:26.000000000 +0100 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: apt 0.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-01-22 17:35+0100\n" +"POT-Creation-Date: 2007-02-16 16:44+0100\n" "PO-Revision-Date: 2006-03-31 22:05+0300\n" "Last-Translator: Yavor Doganov \n" "Language-Team: Bulgarian \n" diff -Nru /tmp/VaZhVirAmV/apt-0.6.45ubuntu14.1/po/bs.po /tmp/aXa9dIZCe0/apt-0.6.45ubuntu14.2/po/bs.po --- /tmp/VaZhVirAmV/apt-0.6.45ubuntu14.1/po/bs.po 2007-01-22 17:35:07.000000000 +0100 +++ /tmp/aXa9dIZCe0/apt-0.6.45ubuntu14.2/po/bs.po 2007-02-16 16:44:26.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: apt 0.5.26\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-01-22 17:35+0100\n" +"POT-Creation-Date: 2007-02-16 16:44+0100\n" "PO-Revision-Date: 2004-05-06 15:25+0100\n" "Last-Translator: Safir Å ećerović \n" "Language-Team: Bosnian \n" diff -Nru /tmp/VaZhVirAmV/apt-0.6.45ubuntu14.1/po/ca.po /tmp/aXa9dIZCe0/apt-0.6.45ubuntu14.2/po/ca.po --- /tmp/VaZhVirAmV/apt-0.6.45ubuntu14.1/po/ca.po 2007-01-22 17:35:07.000000000 +0100 +++ /tmp/aXa9dIZCe0/apt-0.6.45ubuntu14.2/po/ca.po 2007-02-16 16:44:26.000000000 +0100 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: apt 0.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-01-22 17:35+0100\n" +"POT-Creation-Date: 2007-02-16 16:44+0100\n" "PO-Revision-Date: 2006-02-05 22:00+0100\n" "Last-Translator: Jordi Mallach \n" "Language-Team: Catalan \n" diff -Nru /tmp/VaZhVirAmV/apt-0.6.45ubuntu14.1/po/cs.po /tmp/aXa9dIZCe0/apt-0.6.45ubuntu14.2/po/cs.po --- /tmp/VaZhVirAmV/apt-0.6.45ubuntu14.1/po/cs.po 2007-01-22 17:35:07.000000000 +0100 +++ /tmp/aXa9dIZCe0/apt-0.6.45ubuntu14.2/po/cs.po 2007-02-16 16:44:26.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-01-22 17:35+0100\n" +"POT-Creation-Date: 2007-02-16 16:44+0100\n" "PO-Revision-Date: 2006-05-14 18:36+0200\n" "Last-Translator: Miroslav Kure \n" "Language-Team: Czech \n" diff -Nru /tmp/VaZhVirAmV/apt-0.6.45ubuntu14.1/po/cy.po /tmp/aXa9dIZCe0/apt-0.6.45ubuntu14.2/po/cy.po --- /tmp/VaZhVirAmV/apt-0.6.45ubuntu14.1/po/cy.po 2007-01-22 17:35:07.000000000 +0100 +++ /tmp/aXa9dIZCe0/apt-0.6.45ubuntu14.2/po/cy.po 2007-02-16 16:44:27.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: APT\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-01-22 17:35+0100\n" +"POT-Creation-Date: 2007-02-16 16:44+0100\n" "PO-Revision-Date: 2005-06-06 13:46+0100\n" "Last-Translator: Dafydd Harries \n" "Language-Team: Welsh \n" diff -Nru /tmp/VaZhVirAmV/apt-0.6.45ubuntu14.1/po/da.po /tmp/aXa9dIZCe0/apt-0.6.45ubuntu14.2/po/da.po --- /tmp/VaZhVirAmV/apt-0.6.45ubuntu14.1/po/da.po 2007-01-22 17:35:07.000000000 +0100 +++ /tmp/aXa9dIZCe0/apt-0.6.45ubuntu14.2/po/da.po 2007-02-16 16:44:27.000000000 +0100 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: apt-da\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-01-22 17:35+0100\n" +"POT-Creation-Date: 2007-02-16 16:44+0100\n" "PO-Revision-Date: 2006-01-20 22:23+0100\n" "Last-Translator: Claus Hindsgaul \n" "Language-Team: Danish \n" diff -Nru /tmp/VaZhVirAmV/apt-0.6.45ubuntu14.1/po/de.po /tmp/aXa9dIZCe0/apt-0.6.45ubuntu14.2/po/de.po --- /tmp/VaZhVirAmV/apt-0.6.45ubuntu14.1/po/de.po 2007-01-22 17:35:08.000000000 +0100 +++ /tmp/aXa9dIZCe0/apt-0.6.45ubuntu14.2/po/de.po 2007-02-16 16:44:27.000000000 +0100 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: apt 0.5.26\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-01-22 17:35+0100\n" +"POT-Creation-Date: 2007-02-16 16:44+0100\n" "PO-Revision-Date: 2005-06-15 18:22+0200\n" "Last-Translator: Michael Piefel \n" "Language-Team: \n" diff -Nru /tmp/VaZhVirAmV/apt-0.6.45ubuntu14.1/po/el.po /tmp/aXa9dIZCe0/apt-0.6.45ubuntu14.2/po/el.po --- /tmp/VaZhVirAmV/apt-0.6.45ubuntu14.1/po/el.po 2007-01-22 17:35:08.000000000 +0100 +++ /tmp/aXa9dIZCe0/apt-0.6.45ubuntu14.2/po/el.po 2007-02-16 16:44:27.000000000 +0100 @@ -18,7 +18,7 @@ msgstr "" "Project-Id-Version: apt_po_el_new\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-01-22 17:35+0100\n" +"POT-Creation-Date: 2007-02-16 16:44+0100\n" "PO-Revision-Date: 2006-01-18 15:16+0200\n" "Last-Translator: Konstantinos Margaritis \n" "Language-Team: Greek \n" diff -Nru /tmp/VaZhVirAmV/apt-0.6.45ubuntu14.1/po/en_GB.po /tmp/aXa9dIZCe0/apt-0.6.45ubuntu14.2/po/en_GB.po --- /tmp/VaZhVirAmV/apt-0.6.45ubuntu14.1/po/en_GB.po 2007-01-22 17:35:08.000000000 +0100 +++ /tmp/aXa9dIZCe0/apt-0.6.45ubuntu14.2/po/en_GB.po 2007-02-16 16:44:27.000000000 +0100 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: apt 0.5.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-01-22 17:35+0100\n" +"POT-Creation-Date: 2007-02-16 16:44+0100\n" "PO-Revision-Date: 2002-11-10 20:56+0100\n" "Last-Translator: Neil Williams \n" "Language-Team: en_GB \n" diff -Nru /tmp/VaZhVirAmV/apt-0.6.45ubuntu14.1/po/es.po /tmp/aXa9dIZCe0/apt-0.6.45ubuntu14.2/po/es.po --- /tmp/VaZhVirAmV/apt-0.6.45ubuntu14.1/po/es.po 2007-01-22 17:35:08.000000000 +0100 +++ /tmp/aXa9dIZCe0/apt-0.6.45ubuntu14.2/po/es.po 2007-02-16 16:44:27.000000000 +0100 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: apt 0.6.42.3exp1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-01-22 17:35+0100\n" +"POT-Creation-Date: 2007-02-16 16:44+0100\n" "PO-Revision-Date: 2005-11-16 17:37+0100\n" "Last-Translator: Rubén Porras Campo \n" "Language-Team: Spanish \n" diff -Nru /tmp/VaZhVirAmV/apt-0.6.45ubuntu14.1/po/eu.po /tmp/aXa9dIZCe0/apt-0.6.45ubuntu14.2/po/eu.po --- /tmp/VaZhVirAmV/apt-0.6.45ubuntu14.1/po/eu.po 2007-01-22 17:35:08.000000000 +0100 +++ /tmp/aXa9dIZCe0/apt-0.6.45ubuntu14.2/po/eu.po 2007-02-16 16:44:27.000000000 +0100 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: apt_po_eu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-01-22 17:35+0100\n" +"POT-Creation-Date: 2007-02-16 16:44+0100\n" "PO-Revision-Date: 2006-06-17 00:10+0200\n" "Last-Translator: Piarres Beobide \n" "Language-Team: librezale \n" diff -Nru /tmp/VaZhVirAmV/apt-0.6.45ubuntu14.1/po/fi.po /tmp/aXa9dIZCe0/apt-0.6.45ubuntu14.2/po/fi.po --- /tmp/VaZhVirAmV/apt-0.6.45ubuntu14.1/po/fi.po 2007-01-22 17:35:08.000000000 +0100 +++ /tmp/aXa9dIZCe0/apt-0.6.45ubuntu14.2/po/fi.po 2007-02-16 16:44:27.000000000 +0100 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: apt 0.5.26\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-01-22 17:35+0100\n" +"POT-Creation-Date: 2007-02-16 16:44+0100\n" "PO-Revision-Date: 2005-02-15 14:09+0200\n" "Last-Translator: Tapio Lehtonen \n" "Language-Team: Finnish \n" diff -Nru /tmp/VaZhVirAmV/apt-0.6.45ubuntu14.1/po/fr.po /tmp/aXa9dIZCe0/apt-0.6.45ubuntu14.2/po/fr.po --- /tmp/VaZhVirAmV/apt-0.6.45ubuntu14.1/po/fr.po 2007-01-22 17:35:08.000000000 +0100 +++ /tmp/aXa9dIZCe0/apt-0.6.45ubuntu14.2/po/fr.po 2007-02-16 16:44:27.000000000 +0100 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: fr\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-01-22 17:35+0100\n" +"POT-Creation-Date: 2007-02-16 16:44+0100\n" "PO-Revision-Date: 2006-05-18 09:31-0500\n" "Last-Translator: Christian Perrier \n" "Language-Team: French \n" diff -Nru /tmp/VaZhVirAmV/apt-0.6.45ubuntu14.1/po/gl.po /tmp/aXa9dIZCe0/apt-0.6.45ubuntu14.2/po/gl.po --- /tmp/VaZhVirAmV/apt-0.6.45ubuntu14.1/po/gl.po 2007-01-22 17:35:08.000000000 +0100 +++ /tmp/aXa9dIZCe0/apt-0.6.45ubuntu14.2/po/gl.po 2007-02-16 16:44:27.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-01-22 17:35+0100\n" +"POT-Creation-Date: 2007-02-16 16:44+0100\n" "PO-Revision-Date: 2006-05-11 18:09+0200\n" "Last-Translator: Jacobo Tarrío \n" "Language-Team: Galician \n" diff -Nru /tmp/VaZhVirAmV/apt-0.6.45ubuntu14.1/po/he.po /tmp/aXa9dIZCe0/apt-0.6.45ubuntu14.2/po/he.po --- /tmp/VaZhVirAmV/apt-0.6.45ubuntu14.1/po/he.po 2007-01-22 17:35:08.000000000 +0100 +++ /tmp/aXa9dIZCe0/apt-0.6.45ubuntu14.2/po/he.po 2007-02-16 16:44:27.000000000 +0100 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: apt 0.5.25\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-01-22 17:35+0100\n" +"POT-Creation-Date: 2007-02-16 16:44+0100\n" "PO-Revision-Date: 2004-06-10 19:58+0300\n" "Last-Translator: Lior Kaplan \n" "Language-Team: Hebrew\n" diff -Nru /tmp/VaZhVirAmV/apt-0.6.45ubuntu14.1/po/hu.po /tmp/aXa9dIZCe0/apt-0.6.45ubuntu14.2/po/hu.po --- /tmp/VaZhVirAmV/apt-0.6.45ubuntu14.1/po/hu.po 2007-01-22 17:35:08.000000000 +0100 +++ /tmp/aXa9dIZCe0/apt-0.6.45ubuntu14.2/po/hu.po 2007-02-16 16:44:27.000000000 +0100 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: hu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-01-22 17:35+0100\n" +"POT-Creation-Date: 2007-02-16 16:44+0100\n" "PO-Revision-Date: 2006-07-02 07:34+0100\n" "Last-Translator: SZERVÑC Attila \n" "Language-Team: Hungarian \n" diff -Nru /tmp/VaZhVirAmV/apt-0.6.45ubuntu14.1/po/it.po /tmp/aXa9dIZCe0/apt-0.6.45ubuntu14.2/po/it.po --- /tmp/VaZhVirAmV/apt-0.6.45ubuntu14.1/po/it.po 2007-01-22 17:35:08.000000000 +0100 +++ /tmp/aXa9dIZCe0/apt-0.6.45ubuntu14.2/po/it.po 2007-02-16 16:44:27.000000000 +0100 @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: apt 0.5.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-01-22 17:35+0100\n" +"POT-Creation-Date: 2007-02-16 16:44+0100\n" "PO-Revision-Date: 2006-02-14 11:41+0100\n" "Last-Translator: Samuele Giovanni Tonon \n" "Language-Team: Italian \n" diff -Nru /tmp/VaZhVirAmV/apt-0.6.45ubuntu14.1/po/ja.po /tmp/aXa9dIZCe0/apt-0.6.45ubuntu14.2/po/ja.po --- /tmp/VaZhVirAmV/apt-0.6.45ubuntu14.1/po/ja.po 2007-01-22 17:35:08.000000000 +0100 +++ /tmp/aXa9dIZCe0/apt-0.6.45ubuntu14.2/po/ja.po 2007-02-16 16:44:28.000000000 +0100 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: apt 0.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-01-22 17:35+0100\n" +"POT-Creation-Date: 2007-02-16 16:44+0100\n" "PO-Revision-Date: 2006-01-25 20:55+0900\n" "Last-Translator: Kenshi Muto \n" "Language-Team: Debian Japanese List \n" diff -Nru /tmp/VaZhVirAmV/apt-0.6.45ubuntu14.1/po/ko.po /tmp/aXa9dIZCe0/apt-0.6.45ubuntu14.2/po/ko.po --- /tmp/VaZhVirAmV/apt-0.6.45ubuntu14.1/po/ko.po 2007-01-22 17:35:08.000000000 +0100 +++ /tmp/aXa9dIZCe0/apt-0.6.45ubuntu14.2/po/ko.po 2007-02-16 16:44:28.000000000 +0100 @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-01-22 17:35+0100\n" +"POT-Creation-Date: 2007-02-16 16:44+0100\n" "PO-Revision-Date: 2006-07-20 00:28+0900\n" "Last-Translator: Sunjae Park \n" "Language-Team: Korean \n" diff -Nru /tmp/VaZhVirAmV/apt-0.6.45ubuntu14.1/po/nb.po /tmp/aXa9dIZCe0/apt-0.6.45ubuntu14.2/po/nb.po --- /tmp/VaZhVirAmV/apt-0.6.45ubuntu14.1/po/nb.po 2007-01-22 17:35:09.000000000 +0100 +++ /tmp/aXa9dIZCe0/apt-0.6.45ubuntu14.2/po/nb.po 2007-02-16 16:44:28.000000000 +0100 @@ -19,7 +19,7 @@ msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-01-22 17:35+0100\n" +"POT-Creation-Date: 2007-02-16 16:44+0100\n" "PO-Revision-Date: 2005-02-09 10:45+0100\n" "Last-Translator: Hans Fredrik Nordhaug \n" "Language-Team: Norwegian Bokmål \n" diff -Nru /tmp/VaZhVirAmV/apt-0.6.45ubuntu14.1/po/nl.po /tmp/aXa9dIZCe0/apt-0.6.45ubuntu14.2/po/nl.po --- /tmp/VaZhVirAmV/apt-0.6.45ubuntu14.1/po/nl.po 2007-01-22 17:35:09.000000000 +0100 +++ /tmp/aXa9dIZCe0/apt-0.6.45ubuntu14.2/po/nl.po 2007-02-16 16:44:28.000000000 +0100 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-01-22 17:35+0100\n" +"POT-Creation-Date: 2007-02-16 16:44+0100\n" "PO-Revision-Date: 2005-02-10 17:35+0100\n" "Last-Translator: Bart Cornelis \n" "Language-Team: debian-l10n-dutch \n" diff -Nru /tmp/VaZhVirAmV/apt-0.6.45ubuntu14.1/po/nn.po /tmp/aXa9dIZCe0/apt-0.6.45ubuntu14.2/po/nn.po --- /tmp/VaZhVirAmV/apt-0.6.45ubuntu14.1/po/nn.po 2007-01-22 17:35:09.000000000 +0100 +++ /tmp/aXa9dIZCe0/apt-0.6.45ubuntu14.2/po/nn.po 2007-02-16 16:44:28.000000000 +0100 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: apt_nn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-01-22 17:35+0100\n" +"POT-Creation-Date: 2007-02-16 16:44+0100\n" "PO-Revision-Date: 2005-02-14 23:30+0100\n" "Last-Translator: Håvard Korsvoll \n" "Language-Team: Norwegian nynorsk \n" diff -Nru /tmp/VaZhVirAmV/apt-0.6.45ubuntu14.1/po/pl.po /tmp/aXa9dIZCe0/apt-0.6.45ubuntu14.2/po/pl.po --- /tmp/VaZhVirAmV/apt-0.6.45ubuntu14.1/po/pl.po 2007-01-22 17:35:09.000000000 +0100 +++ /tmp/aXa9dIZCe0/apt-0.6.45ubuntu14.2/po/pl.po 2007-02-16 16:44:28.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: apt 0.5.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-01-22 17:35+0100\n" +"POT-Creation-Date: 2007-02-16 16:44+0100\n" "PO-Revision-Date: 2006-01-23 15:32+0100\n" "Last-Translator: Bartosz Fenski \n" "Language-Team: Polish \n" diff -Nru /tmp/VaZhVirAmV/apt-0.6.45ubuntu14.1/po/pt_BR.po /tmp/aXa9dIZCe0/apt-0.6.45ubuntu14.2/po/pt_BR.po --- /tmp/VaZhVirAmV/apt-0.6.45ubuntu14.1/po/pt_BR.po 2007-01-22 17:35:09.000000000 +0100 +++ /tmp/aXa9dIZCe0/apt-0.6.45ubuntu14.2/po/pt_BR.po 2007-02-16 16:44:28.000000000 +0100 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-01-22 17:35+0100\n" +"POT-Creation-Date: 2007-02-16 16:44+0100\n" "PO-Revision-Date: 2006-02-11 17:57-0200\n" "Last-Translator: André Luís Lopes \n" "Language-Team: Debian-BR Project \n" diff -Nru /tmp/VaZhVirAmV/apt-0.6.45ubuntu14.1/po/pt.po /tmp/aXa9dIZCe0/apt-0.6.45ubuntu14.2/po/pt.po --- /tmp/VaZhVirAmV/apt-0.6.45ubuntu14.1/po/pt.po 2007-01-22 17:35:09.000000000 +0100 +++ /tmp/aXa9dIZCe0/apt-0.6.45ubuntu14.2/po/pt.po 2007-02-16 16:44:28.000000000 +0100 @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-01-22 17:35+0100\n" +"POT-Creation-Date: 2007-02-16 16:44+0100\n" "PO-Revision-Date: 2005-03-07 22:20+0000\n" "Last-Translator: Rui Az. \n" "Language-Team: Portuguese \n" diff -Nru /tmp/VaZhVirAmV/apt-0.6.45ubuntu14.1/po/ro.po /tmp/aXa9dIZCe0/apt-0.6.45ubuntu14.2/po/ro.po --- /tmp/VaZhVirAmV/apt-0.6.45ubuntu14.1/po/ro.po 2007-01-22 17:35:09.000000000 +0100 +++ /tmp/aXa9dIZCe0/apt-0.6.45ubuntu14.2/po/ro.po 2007-02-16 16:44:28.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: apt_po_ro\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-01-22 17:35+0100\n" +"POT-Creation-Date: 2007-02-16 16:44+0100\n" "PO-Revision-Date: 2006-06-25 12:58+0300\n" "Last-Translator: Sorin Batariuc \n" "Language-Team: Romanian \n" diff -Nru /tmp/VaZhVirAmV/apt-0.6.45ubuntu14.1/po/ru.po /tmp/aXa9dIZCe0/apt-0.6.45ubuntu14.2/po/ru.po --- /tmp/VaZhVirAmV/apt-0.6.45ubuntu14.1/po/ru.po 2007-01-22 17:35:09.000000000 +0100 +++ /tmp/aXa9dIZCe0/apt-0.6.45ubuntu14.2/po/ru.po 2007-02-16 16:44:28.000000000 +0100 @@ -12,7 +12,7 @@ msgstr "" "Project-Id-Version: apt_po_ru\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-01-22 17:35+0100\n" +"POT-Creation-Date: 2007-02-16 16:44+0100\n" "PO-Revision-Date: 2006-01-21 14:55+0300\n" "Last-Translator: Yuri Kozlov \n" "Language-Team: Russian \n" diff -Nru /tmp/VaZhVirAmV/apt-0.6.45ubuntu14.1/po/sk.po /tmp/aXa9dIZCe0/apt-0.6.45ubuntu14.2/po/sk.po --- /tmp/VaZhVirAmV/apt-0.6.45ubuntu14.1/po/sk.po 2007-01-22 17:35:09.000000000 +0100 +++ /tmp/aXa9dIZCe0/apt-0.6.45ubuntu14.2/po/sk.po 2007-02-16 16:44:28.000000000 +0100 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-01-22 17:35+0100\n" +"POT-Creation-Date: 2007-02-16 16:44+0100\n" "PO-Revision-Date: 2006-05-29 15:33+0200\n" "Last-Translator: Peter Mann \n" "Language-Team: Slovak \n" diff -Nru /tmp/VaZhVirAmV/apt-0.6.45ubuntu14.1/po/sl.po /tmp/aXa9dIZCe0/apt-0.6.45ubuntu14.2/po/sl.po --- /tmp/VaZhVirAmV/apt-0.6.45ubuntu14.1/po/sl.po 2007-01-22 17:35:09.000000000 +0100 +++ /tmp/aXa9dIZCe0/apt-0.6.45ubuntu14.2/po/sl.po 2007-02-16 16:44:29.000000000 +0100 @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: apt 0.5.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-01-22 17:35+0100\n" +"POT-Creation-Date: 2007-02-16 16:44+0100\n" "PO-Revision-Date: 2005-02-16 22:18+0100\n" "Last-Translator: Jure Èuhalev \n" "Language-Team: Slovenian \n" diff -Nru /tmp/VaZhVirAmV/apt-0.6.45ubuntu14.1/po/sv.po /tmp/aXa9dIZCe0/apt-0.6.45ubuntu14.2/po/sv.po --- /tmp/VaZhVirAmV/apt-0.6.45ubuntu14.1/po/sv.po 2007-01-22 17:35:09.000000000 +0100 +++ /tmp/aXa9dIZCe0/apt-0.6.45ubuntu14.2/po/sv.po 2007-02-16 16:44:29.000000000 +0100 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-01-22 17:35+0100\n" +"POT-Creation-Date: 2007-02-16 16:44+0100\n" "PO-Revision-Date: 2006-05-18 08:35+0100\n" "Last-Translator: Daniel Nylander \n" "Language-Team: Swedish \n" diff -Nru /tmp/VaZhVirAmV/apt-0.6.45ubuntu14.1/po/tl.po /tmp/aXa9dIZCe0/apt-0.6.45ubuntu14.2/po/tl.po --- /tmp/VaZhVirAmV/apt-0.6.45ubuntu14.1/po/tl.po 2007-01-22 17:35:09.000000000 +0100 +++ /tmp/aXa9dIZCe0/apt-0.6.45ubuntu14.2/po/tl.po 2007-02-16 16:44:29.000000000 +0100 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-01-22 17:35+0100\n" +"POT-Creation-Date: 2007-02-16 16:44+0100\n" "PO-Revision-Date: 2006-03-16 15:53+0800\n" "Last-Translator: Eric Pareja \n" "Language-Team: Tagalog \n" diff -Nru /tmp/VaZhVirAmV/apt-0.6.45ubuntu14.1/po/vi.po /tmp/aXa9dIZCe0/apt-0.6.45ubuntu14.2/po/vi.po --- /tmp/VaZhVirAmV/apt-0.6.45ubuntu14.1/po/vi.po 2007-01-22 17:35:09.000000000 +0100 +++ /tmp/aXa9dIZCe0/apt-0.6.45ubuntu14.2/po/vi.po 2007-02-16 16:44:29.000000000 +0100 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-01-22 17:35+0100\n" +"POT-Creation-Date: 2007-02-16 16:44+0100\n" "PO-Revision-Date: 2006-05-19 22:19+0930\n" "Last-Translator: Clytie Siddall \n" "Language-Team: Vietnamese \n" diff -Nru /tmp/VaZhVirAmV/apt-0.6.45ubuntu14.1/po/zh_CN.po /tmp/aXa9dIZCe0/apt-0.6.45ubuntu14.2/po/zh_CN.po --- /tmp/VaZhVirAmV/apt-0.6.45ubuntu14.1/po/zh_CN.po 2007-01-22 17:35:09.000000000 +0100 +++ /tmp/aXa9dIZCe0/apt-0.6.45ubuntu14.2/po/zh_CN.po 2007-02-16 16:44:29.000000000 +0100 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: apt 0.5.23\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-01-22 17:35+0100\n" +"POT-Creation-Date: 2007-02-16 16:44+0100\n" "PO-Revision-Date: 2006-02-22 14:20+1300\n" "Last-Translator: Carlos Z.F. Liu \n" "Language-Team: Debian Chinese [GB] \n" diff -Nru /tmp/VaZhVirAmV/apt-0.6.45ubuntu14.1/po/zh_TW.po /tmp/aXa9dIZCe0/apt-0.6.45ubuntu14.2/po/zh_TW.po --- /tmp/VaZhVirAmV/apt-0.6.45ubuntu14.1/po/zh_TW.po 2007-01-22 17:35:10.000000000 +0100 +++ /tmp/aXa9dIZCe0/apt-0.6.45ubuntu14.2/po/zh_TW.po 2007-02-16 16:44:29.000000000 +0100 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: 0.5.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-01-22 17:35+0100\n" +"POT-Creation-Date: 2007-02-16 16:44+0100\n" "PO-Revision-Date: 2005-02-19 22:24+0800\n" "Last-Translator: Asho Yeh \n" "Language-Team: Chinese/Traditional \n"