--- Begin Message ---
Package: release.debian.org
Severity: normal
Tags: stretch
User: release.debian....@packages.debian.org
Usertags: pu
Hi, I'd like to upload apt 1.4.8 to stretch.
It fixes a crash in the mirror method, reduces chances of
unattended-upgrades from being killed during shutdown
when installing updates, and fixes a complex boot performance regression
by moving the dependency of network-online.target from apt-daily.timer
to apt-daily.service (which is the one actually needing it).
Not technically qualifying, but a one-line change to not issue warnings
for multiple legacy Contents file targets is also included (see bug #839259
or launchpad #1697120), as this was really annoying some people.
A full diff against 1.4.7 (from the last point release) is attached.
diff -Nru apt-1.4.7/debian/changelog apt-1.4.8/debian/changelog
--- apt-1.4.7/debian/changelog 2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/debian/changelog 2017-09-13 18:47:33.000000000 +0200
@@ -1,3 +1,21 @@
+apt (1.4.8) stretch; urgency=medium
+
+ [ Balint Reczey ]
+ * Gracefully terminate process when stopping apt-daily-upgrade (LP: #1690980)
+
+ [ David Kalnischkies ]
+ * don't ask an uninit _system for supported archs, this
+ crashes the mirror method (LP: #1613184)
+
+ [ Julian Andres Klode ]
+ * Do not warn about duplicate "legacy" targets (Closes: #839259)
+ (LP: #1697120)
+ * apt-daily: Pull in network-online.target in service, not timer
+ - this can cause a severe boot performance regression / hang
+ (LP: #1716973)
+
+ -- Julian Andres Klode <j...@debian.org> Wed, 13 Sep 2017 18:47:33 +0200
+
-- System Information:
Debian Release: buster/sid
APT prefers unstable
APT policy: (900, 'unstable'), (900, 'testing'), (500, 'unstable-debug'),
(500, 'buildd-unstable'), (100, 'experimental'), (1, 'experimental-debug')
Architecture: amd64 (x86_64)
Foreign Architectures: i386
Kernel: Linux 4.12.0-1-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_IE.UTF-8, LC_CTYPE=en_IE.UTF-8 (charmap=UTF-8),
LANGUAGE=en_IE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
--
Debian Developer - deb.li/jak | jak-linux.org - free software dev
| Ubuntu Core Developer |
When replying, only quote what is necessary, and write each reply
directly below the part(s) it pertains to ('inline'). Thank you.
diff -Nru apt-1.4.7/apt-pkg/aptconfiguration.cc apt-1.4.8/apt-pkg/aptconfiguration.cc
--- apt-1.4.7/apt-pkg/aptconfiguration.cc 2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/apt-pkg/aptconfiguration.cc 2017-09-13 18:47:33.000000000 +0200
@@ -322,7 +322,7 @@
string const arch = _config->Find("APT::Architecture");
archs = _config->FindVector("APT::Architectures");
- if (archs.empty() == true)
+ if (archs.empty() == true && _system != nullptr)
archs = _system->ArchitecturesSupported();
if (archs.empty() == true ||
diff -Nru apt-1.4.7/apt-pkg/deb/debmetaindex.cc apt-1.4.8/apt-pkg/deb/debmetaindex.cc
--- apt-1.4.7/apt-pkg/deb/debmetaindex.cc 2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/apt-pkg/deb/debmetaindex.cc 2017-09-13 18:47:33.000000000 +0200
@@ -274,11 +274,14 @@
if (dup != IndexTargets.end())
{
std::string const dupEntry = dup->Option(IndexTarget::SOURCESENTRY);
- //TRANSLATOR: an identifier like Packages; Releasefile key indicating
- // a file like main/binary-amd64/Packages; filename and linenumber of
- // two sources.list entries
- _error->Warning(_("Target %s (%s) is configured multiple times in %s and %s"),
- T->c_str(), MetaKey.c_str(), dupEntry.c_str(), E->sourcesEntry.c_str());
+ if (T->find("legacy") == std::string::npos)
+ {
+ //TRANSLATOR: an identifier like Packages; Releasefile key indicating
+ // a file like main/binary-amd64/Packages; filename and linenumber of
+ // two sources.list entries
+ _error->Warning(_("Target %s (%s) is configured multiple times in %s and %s"),
+ T->c_str(), MetaKey.c_str(), dupEntry.c_str(), E->sourcesEntry.c_str());
+ }
if (tplMetaKey.find(BreakPoint) == std::string::npos)
break;
continue;
diff -Nru apt-1.4.7/CMakeLists.txt apt-1.4.8/CMakeLists.txt
--- apt-1.4.7/CMakeLists.txt 2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/CMakeLists.txt 2017-09-13 18:47:33.000000000 +0200
@@ -172,7 +172,7 @@
# Configure some variables like package, version and architecture.
set(PACKAGE ${PROJECT_NAME})
set(PACKAGE_MAIL "APT Development Team <de...@lists.debian.org>")
-set(PACKAGE_VERSION "1.4.7")
+set(PACKAGE_VERSION "1.4.8")
if (NOT DEFINED DPKG_DATADIR)
execute_process(COMMAND ${PERL_EXECUTABLE} -MDpkg -e "print $Dpkg::DATADIR;"
diff -Nru apt-1.4.7/debian/apt-daily.service apt-1.4.8/debian/apt-daily.service
--- apt-1.4.7/debian/apt-daily.service 2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/debian/apt-daily.service 2017-09-13 18:47:33.000000000 +0200
@@ -2,6 +2,8 @@
Description=Daily apt download activities
Documentation=man:apt(8)
ConditionACPower=true
+After=network-online.target
+Wants=network-online.target
[Service]
Type=oneshot
diff -Nru apt-1.4.7/debian/apt-daily.timer apt-1.4.8/debian/apt-daily.timer
--- apt-1.4.7/debian/apt-daily.timer 2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/debian/apt-daily.timer 2017-09-13 18:47:33.000000000 +0200
@@ -1,7 +1,5 @@
[Unit]
Description=Daily apt download activities
-After=network-online.target
-Wants=network-online.target
[Timer]
OnCalendar=*-*-* 6,18:00
diff -Nru apt-1.4.7/debian/apt-daily-upgrade.service apt-1.4.8/debian/apt-daily-upgrade.service
--- apt-1.4.7/debian/apt-daily-upgrade.service 2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/debian/apt-daily-upgrade.service 2017-09-13 18:47:33.000000000 +0200
@@ -7,3 +7,5 @@
[Service]
Type=oneshot
ExecStart=/usr/lib/apt/apt.systemd.daily install
+KillMode=process
+TimeoutStopSec=900
diff -Nru apt-1.4.7/debian/changelog apt-1.4.8/debian/changelog
--- apt-1.4.7/debian/changelog 2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/debian/changelog 2017-09-13 18:47:33.000000000 +0200
@@ -1,3 +1,21 @@
+apt (1.4.8) stretch; urgency=medium
+
+ [ Balint Reczey ]
+ * Gracefully terminate process when stopping apt-daily-upgrade (LP: #1690980)
+
+ [ David Kalnischkies ]
+ * don't ask an uninit _system for supported archs, this
+ crashes the mirror method (LP: #1613184)
+
+ [ Julian Andres Klode ]
+ * Do not warn about duplicate "legacy" targets (Closes: #839259)
+ (LP: #1697120)
+ * apt-daily: Pull in network-online.target in service, not timer
+ - this can cause a severe boot performance regression / hang
+ (LP: #1716973)
+
+ -- Julian Andres Klode <j...@debian.org> Wed, 13 Sep 2017 18:47:33 +0200
+
apt (1.4.7) stretch; urgency=medium
* New release with important fixes up to 1.5~beta1; also see LP: #1702326
diff -Nru apt-1.4.7/doc/apt-verbatim.ent apt-1.4.8/doc/apt-verbatim.ent
--- apt-1.4.7/doc/apt-verbatim.ent 2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/doc/apt-verbatim.ent 2017-09-13 18:47:33.000000000 +0200
@@ -239,7 +239,7 @@
">
<!-- this will be updated by 'prepare-release' -->
-<!ENTITY apt-product-version "1.4.7">
+<!ENTITY apt-product-version "1.4.8">
<!-- (Code)names for various things used all over the place -->
<!ENTITY debian-oldstable-codename "jessie">
diff -Nru apt-1.4.7/doc/po/apt-doc.pot apt-1.4.8/doc/po/apt-doc.pot
--- apt-1.4.7/doc/po/apt-doc.pot 2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/doc/po/apt-doc.pot 2017-09-13 18:47:33.000000000 +0200
@@ -5,9 +5,9 @@
#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: apt-doc 1.4.7\n"
+"Project-Id-Version: apt-doc 1.4.8\n"
"Report-Msgid-Bugs-To: APT Development Team <de...@lists.debian.org>\n"
-"POT-Creation-Date: 2017-07-13 23:47+0200\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <l...@li.org>\n"
diff -Nru apt-1.4.7/doc/po/de.po apt-1.4.8/doc/po/de.po
--- apt-1.4.7/doc/po/de.po 2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/doc/po/de.po 2017-09-13 18:47:33.000000000 +0200
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: apt-doc 1.3\n"
"Report-Msgid-Bugs-To: APT Development Team <de...@lists.debian.org>\n"
-"POT-Creation-Date: 2017-07-13 23:47+0200\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
"PO-Revision-Date: 2016-11-15 21:51+0200\n"
"Last-Translator: Chris Leick <c.le...@vollbio.de>\n"
"Language-Team: German <debian-l10n-ger...@lists.debian.org>\n"
diff -Nru apt-1.4.7/doc/po/es.po apt-1.4.8/doc/po/es.po
--- apt-1.4.7/doc/po/es.po 2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/doc/po/es.po 2017-09-13 18:47:33.000000000 +0200
@@ -38,7 +38,7 @@
msgstr ""
"Project-Id-Version: apt-doc 1.0.5\n"
"Report-Msgid-Bugs-To: APT Development Team <de...@lists.debian.org>\n"
-"POT-Creation-Date: 2017-07-13 23:47+0200\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
"PO-Revision-Date: 2014-07-04 01:31+0200\n"
"Last-Translator: Omar Campagne <ocampa...@gmail.com>\n"
"Language-Team: Debian l10n Spanish <debian-l10n-span...@lists.debian.org>\n"
diff -Nru apt-1.4.7/doc/po/fr.po apt-1.4.8/doc/po/fr.po
--- apt-1.4.7/doc/po/fr.po 2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/doc/po/fr.po 2017-09-13 18:47:33.000000000 +0200
@@ -12,7 +12,7 @@
msgstr ""
"Project-Id-Version: apt-doc 1.0.5\n"
"Report-Msgid-Bugs-To: APT Development Team <de...@lists.debian.org>\n"
-"POT-Creation-Date: 2017-07-13 23:47+0200\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
"PO-Revision-Date: 2017-01-24 22:43+0100\n"
"Last-Translator: Jean-Pierre Giraud <jean-pierregir...@neuf.fr>\n"
"Language-Team: French <debian-l10n-fre...@lists.debian.org>\n"
diff -Nru apt-1.4.7/doc/po/it.po apt-1.4.8/doc/po/it.po
--- apt-1.4.7/doc/po/it.po 2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/doc/po/it.po 2017-09-13 18:47:33.000000000 +0200
@@ -10,7 +10,7 @@
msgstr ""
"Project-Id-Version: apt-doc 1.0.5\n"
"Report-Msgid-Bugs-To: APT Development Team <de...@lists.debian.org>\n"
-"POT-Creation-Date: 2017-07-13 23:47+0200\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
"PO-Revision-Date: 2015-12-27 21:26+0200\n"
"Last-Translator: Beatrice Torracca <beatri...@libero.it>\n"
"Language-Team: Italian <debian-l10n-ital...@lists.debian.org>\n"
diff -Nru apt-1.4.7/doc/po/ja.po apt-1.4.8/doc/po/ja.po
--- apt-1.4.7/doc/po/ja.po 2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/doc/po/ja.po 2017-09-13 18:47:33.000000000 +0200
@@ -10,7 +10,7 @@
msgstr ""
"Project-Id-Version: apt-doc 1.4\n"
"Report-Msgid-Bugs-To: APT Development Team <de...@lists.debian.org>\n"
-"POT-Creation-Date: 2017-07-13 23:47+0200\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
"PO-Revision-Date: 2017-01-06 04:50+0900\n"
"Last-Translator: Takuma Yamada <tyam...@takumayamada.com>\n"
"Language-Team: Japanese <debian-japan...@lists.debian.org>\n"
diff -Nru apt-1.4.7/doc/po/nl.po apt-1.4.8/doc/po/nl.po
--- apt-1.4.7/doc/po/nl.po 2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/doc/po/nl.po 2017-09-13 18:47:33.000000000 +0200
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: apt-doc 1.4~beta4-nl\n"
"Report-Msgid-Bugs-To: APT Development Team <de...@lists.debian.org>\n"
-"POT-Creation-Date: 2017-07-13 23:47+0200\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
"PO-Revision-Date: 2017-01-19 17:53+0100\n"
"Last-Translator: Frans Spiesschaert <frans.spiesscha...@yucom.be>\n"
"Language-Team: Debian Dutch l10n Team <debian-l10n-du...@lists.debian.org>\n"
diff -Nru apt-1.4.7/doc/po/pl.po apt-1.4.8/doc/po/pl.po
--- apt-1.4.7/doc/po/pl.po 2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/doc/po/pl.po 2017-09-13 18:47:33.000000000 +0200
@@ -11,7 +11,7 @@
msgstr ""
"Project-Id-Version: apt-doc 1.0.5\n"
"Report-Msgid-Bugs-To: APT Development Team <de...@lists.debian.org>\n"
-"POT-Creation-Date: 2017-07-13 23:47+0200\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
"PO-Revision-Date: 2014-07-04 02:13+0200\n"
"Last-Translator: Robert Luberda <rob...@debian.org>\n"
"Language-Team: Polish <manpages-pl-l...@lists.sourceforge.net>\n"
diff -Nru apt-1.4.7/doc/po/pt_BR.po apt-1.4.8/doc/po/pt_BR.po
--- apt-1.4.7/doc/po/pt_BR.po 2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/doc/po/pt_BR.po 2017-09-13 18:47:33.000000000 +0200
@@ -9,7 +9,7 @@
msgstr ""
"Project-Id-Version: apt-doc 1.0.5\n"
"Report-Msgid-Bugs-To: APT Development Team <de...@lists.debian.org>\n"
-"POT-Creation-Date: 2017-07-13 23:47+0200\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
"PO-Revision-Date: 2004-09-20 17:02+0000\n"
"Last-Translator: André Luís Lopes <andre...@debian.org>\n"
"Language-Team: <debian-l10n-portugu...@lists.debian.org>\n"
diff -Nru apt-1.4.7/doc/po/pt.po apt-1.4.8/doc/po/pt.po
--- apt-1.4.7/doc/po/pt.po 2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/doc/po/pt.po 2017-09-13 18:47:33.000000000 +0200
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: apt-doc 1.0.7\n"
"Report-Msgid-Bugs-To: APT Development Team <de...@lists.debian.org>\n"
-"POT-Creation-Date: 2017-07-13 23:47+0200\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
"PO-Revision-Date: 2014-08-29 00:34+0100\n"
"Last-Translator: Américo Monteiro <a_monte...@gmx.com>\n"
"Language-Team: Portuguese <tra...@debianpt.org>\n"
diff -Nru apt-1.4.7/po/apt-all.pot apt-1.4.8/po/apt-all.pot
--- apt-1.4.7/po/apt-all.pot 2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/po/apt-all.pot 2017-09-13 18:47:33.000000000 +0200
@@ -5,9 +5,9 @@
#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: apt 1.4.7\n"
+"Project-Id-Version: apt 1.4.8\n"
"Report-Msgid-Bugs-To: APT Development Team <de...@lists.debian.org>\n"
-"POT-Creation-Date: 2017-07-13 23:47+0200\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <l...@li.org>\n"
diff -Nru apt-1.4.7/po/ar.po apt-1.4.8/po/ar.po
--- apt-1.4.7/po/ar.po 2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/po/ar.po 2017-09-13 18:47:33.000000000 +0200
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: apt 1.0.5\n"
"Report-Msgid-Bugs-To: APT Development Team <de...@lists.debian.org>\n"
-"POT-Creation-Date: 2017-02-06 14:41+0100\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
"PO-Revision-Date: 2006-10-20 21:28+0300\n"
"Last-Translator: Ossama M. Khayat <okha...@yahoo.com>\n"
"Language-Team: Arabic <supp...@arabeyes.org>\n"
diff -Nru apt-1.4.7/po/ast.po apt-1.4.8/po/ast.po
--- apt-1.4.7/po/ast.po 2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/po/ast.po 2017-09-13 18:47:33.000000000 +0200
@@ -4,7 +4,7 @@
msgstr ""
"Project-Id-Version: apt 0.7.18\n"
"Report-Msgid-Bugs-To: APT Development Team <de...@lists.debian.org>\n"
-"POT-Creation-Date: 2017-02-06 14:41+0100\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
"PO-Revision-Date: 2010-10-02 23:35+0100\n"
"Last-Translator: Iñigo Varela <ivar...@softastur.org>\n"
"Language-Team: Asturian (ast)\n"
diff -Nru apt-1.4.7/po/bg.po apt-1.4.8/po/bg.po
--- apt-1.4.7/po/bg.po 2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/po/bg.po 2017-09-13 18:47:33.000000000 +0200
@@ -10,7 +10,7 @@
msgstr ""
"Project-Id-Version: apt 0.7.21\n"
"Report-Msgid-Bugs-To: APT Development Team <de...@lists.debian.org>\n"
-"POT-Creation-Date: 2017-02-06 14:41+0100\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
"PO-Revision-Date: 2012-06-25 17:23+0300\n"
"Last-Translator: Damyan Ivanov <d...@debian.org>\n"
"Language-Team: Bulgarian <d...@fsa-bg.org>\n"
diff -Nru apt-1.4.7/po/bs.po apt-1.4.8/po/bs.po
--- apt-1.4.7/po/bs.po 2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/po/bs.po 2017-09-13 18:47:33.000000000 +0200
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: apt 0.5.26\n"
"Report-Msgid-Bugs-To: APT Development Team <de...@lists.debian.org>\n"
-"POT-Creation-Date: 2017-02-06 14:41+0100\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
"PO-Revision-Date: 2004-05-06 15:25+0100\n"
"Last-Translator: Safir Šećerović <sapph...@linux.org.ba>\n"
"Language-Team: Bosnian <lo...@lugbih.org>\n"
diff -Nru apt-1.4.7/po/ca.po apt-1.4.8/po/ca.po
--- apt-1.4.7/po/ca.po 2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/po/ca.po 2017-09-13 18:47:33.000000000 +0200
@@ -9,7 +9,7 @@
msgstr ""
"Project-Id-Version: apt 1.4~beta1\n"
"Report-Msgid-Bugs-To: APT Development Team <de...@lists.debian.org>\n"
-"POT-Creation-Date: 2017-02-06 14:41+0100\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
"PO-Revision-Date: 2016-12-05 21:09+0100\n"
"Last-Translator: Oriol Debian <oriol.deb...@gmail.com>\n"
"Language-Team: Catalan <debian-l10n-cata...@lists.debian.org>\n"
diff -Nru apt-1.4.7/po/cs.po apt-1.4.8/po/cs.po
--- apt-1.4.7/po/cs.po 2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/po/cs.po 2017-09-13 18:47:33.000000000 +0200
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: apt 1.4.2\n"
"Report-Msgid-Bugs-To: APT Development Team <de...@lists.debian.org>\n"
-"POT-Creation-Date: 2017-02-06 14:41+0100\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
"PO-Revision-Date: 2017-05-06 11:08+0200\n"
"Last-Translator: Miroslav Kure <ku...@debian.cz>\n"
"Language-Team: Czech <debian-l10n-cz...@lists.debian.org>\n"
@@ -208,8 +208,8 @@
"See apt-secure(8) manpage for repository creation and user configuration "
"details."
msgstr ""
-"Podrobnosti o vytváření a nastavení repositářů naleznete v manuálové "
-"stránce apt-secure(8)."
+"Podrobnosti o vytváření a nastavení repositářů naleznete v manuálové stránce "
+"apt-secure(8)."
#: apt-pkg/acquire-item.cc
#, c-format
@@ -1039,7 +1039,6 @@
"Release soubor %s neobsahuje Hash záznam, který by byl pro bezpečnost "
"považován za dostatečně silný"
-
#: apt-pkg/deb/debmetaindex.cc
#, c-format
msgid "Invalid '%s' entry in Release file %s"
diff -Nru apt-1.4.7/po/cy.po apt-1.4.8/po/cy.po
--- apt-1.4.7/po/cy.po 2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/po/cy.po 2017-09-13 18:47:33.000000000 +0200
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: apt 1.0.5\n"
"Report-Msgid-Bugs-To: APT Development Team <de...@lists.debian.org>\n"
-"POT-Creation-Date: 2017-02-06 14:41+0100\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
"PO-Revision-Date: 2005-06-06 13:46+0100\n"
"Last-Translator: Dafydd Harries <d...@muse.19inch.net>\n"
"Language-Team: Welsh <c...@pengwyn.linux.org.uk>\n"
diff -Nru apt-1.4.7/po/da.po apt-1.4.8/po/da.po
--- apt-1.4.7/po/da.po 2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/po/da.po 2017-09-13 18:47:33.000000000 +0200
@@ -12,7 +12,7 @@
msgstr ""
"Project-Id-Version: apt 1.4~rc2\n"
"Report-Msgid-Bugs-To: APT Development Team <de...@lists.debian.org>\n"
-"POT-Creation-Date: 2017-02-06 14:41+0100\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
"PO-Revision-Date: 2017-03-02 23:51+0200\n"
"Last-Translator: Joe Hansen <joedalt...@yahoo.dk>\n"
"Language-Team: Danish <debian-l10n-dan...@lists.debian.org>\n"
@@ -205,8 +205,8 @@
"Data from such a repository can't be authenticated and is therefore "
"potentially dangerous to use."
msgstr ""
-"Data, fra et sådant arkiv, kan ikke godkendes og er derfor potentielt "
-"farlig at anvende."
+"Data, fra et sådant arkiv, kan ikke godkendes og er derfor potentielt farlig "
+"at anvende."
#: apt-pkg/acquire-item.cc
msgid ""
@@ -260,7 +260,9 @@
#: apt-pkg/acquire-item.cc
msgid "Insufficient information available to perform this download securely"
-msgstr "Utilstrækkelig information er tilgængelig for at udføre denne overførsel sikkert"
+msgstr ""
+"Utilstrækkelig information er tilgængelig for at udføre denne overførsel "
+"sikkert"
#: apt-pkg/acquire-item.cc apt-pkg/contrib/fileutl.cc
#, c-format
@@ -295,8 +297,8 @@
"An error occurred during the signature verification. The repository is not "
"updated and the previous index files will be used. GPG error: %s: %s"
msgstr ""
-"Der opstod en fejl under signaturbekræftelse. Arkivet er ikke opdateret "
-"og den forrige indeksfil vil blive brugt. GPG-fejl: %s: %s"
+"Der opstod en fejl under signaturbekræftelse. Arkivet er ikke opdateret og "
+"den forrige indeksfil vil blive brugt. GPG-fejl: %s: %s"
#. Invalid signature file, reject (LP: #346386) (Closes: #627642)
#: apt-pkg/acquire-item.cc
@@ -310,8 +312,8 @@
"Skipping acquire of configured file '%s' as repository '%s' doesn't support "
"architecture '%s'"
msgstr ""
-"Udelader erhvervelse af konfigureret fil »%s«, da arkivet »%s« ikke understøtter "
-"arkitekturen »%s«"
+"Udelader erhvervelse af konfigureret fil »%s«, da arkivet »%s« ikke "
+"understøtter arkitekturen »%s«"
#: apt-pkg/acquire-item.cc
#, c-format
@@ -403,8 +405,7 @@
#, c-format
msgid ""
"Please insert the disc labeled: '%s' in the drive '%s' and press [Enter]."
-msgstr ""
-"Indsæt venligst disken med navnet: »%s« i drevet »%s« og tryk [Retur]."
+msgstr "Indsæt venligst disken med navnet: »%s« i drevet »%s« og tryk [Retur]."
#: apt-pkg/acquire.cc apt-pkg/cdrom.cc
#, c-format
@@ -667,8 +668,7 @@
"Command line option %s is not understood in combination with the other "
"options"
msgstr ""
-"Kommandolinjetilvalget %s forstås ikke i kombination med de andre "
-"tilvalg"
+"Kommandolinjetilvalget %s forstås ikke i kombination med de andre tilvalg"
#: apt-pkg/contrib/cmndline.cc
#, c-format
@@ -1056,7 +1056,8 @@
#: apt-pkg/deb/debmetaindex.cc
#, c-format
msgid "Conflicting values set for option %s regarding source %s %s"
-msgstr "Værdisæt er ikke i overensstemmelse for tilvalget %s jævnfør kilden %s %s"
+msgstr ""
+"Værdisæt er ikke i overensstemmelse for tilvalget %s jævnfør kilden %s %s"
#: apt-pkg/deb/debmetaindex.cc
#, c-format
@@ -1066,7 +1067,9 @@
#: apt-pkg/deb/debmetaindex.cc
#, c-format
msgid "Conflicting values set for option %s regarding source %s %s: %s != %s"
-msgstr "Værdisæt er ikke i overenstemmelse for tilvalget %s jævnfør kilden %s %s: %s != %s"
+msgstr ""
+"Værdisæt er ikke i overenstemmelse for tilvalget %s jævnfør kilden %s %s: "
+"%s != %s"
#: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
#, c-format
@@ -1522,7 +1525,9 @@
#: apt-pkg/policy.cc
#, c-format
msgid "%s: Value %s is outside the range of valid pin priorities (%d to %d)"
-msgstr "%s: Værdien %s er uden for intervallet med gyldige pin-prioriteringer (%d til %d)"
+msgstr ""
+"%s: Værdien %s er uden for intervallet med gyldige pin-prioriteringer (%d "
+"til %d)"
#: apt-pkg/policy.cc
msgid "No priority (or zero) specified for pin"
@@ -1734,7 +1739,8 @@
#: apt-private/private-cacheset.cc apt-private/private-install.cc
#, c-format
msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
-msgstr "Pakken »%s« er ikke installeret, så blev ikke fjernet. Mente du »%s«?\n"
+msgstr ""
+"Pakken »%s« er ikke installeret, så blev ikke fjernet. Mente du »%s«?\n"
#: apt-private/private-cacheset.cc apt-private/private-install.cc
#, c-format
@@ -1801,8 +1807,8 @@
"--force-yes is deprecated, use one of the options starting with --allow "
"instead."
msgstr ""
-"--force-yes er forældet, brug i stedet for et af tilvalgene startende "
-"med --allow"
+"--force-yes er forældet, brug i stedet for et af tilvalgene startende med --"
+"allow"
#: apt-private/private-download.cc
msgid ""
@@ -3835,4 +3841,3 @@
#: methods/store.cc
msgid "Empty files can't be valid archives"
msgstr "Tomme filer kan ikke være gyldige arkiver"
-
diff -Nru apt-1.4.7/po/de.po apt-1.4.8/po/de.po
--- apt-1.4.7/po/de.po 2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/po/de.po 2017-09-13 18:47:33.000000000 +0200
@@ -10,7 +10,7 @@
msgstr ""
"Project-Id-Version: apt 1.0.8\n"
"Report-Msgid-Bugs-To: APT Development Team <de...@lists.debian.org>\n"
-"POT-Creation-Date: 2017-02-06 14:41+0100\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
"PO-Revision-Date: 2014-09-19 13:04+0100\n"
"Last-Translator: Holger Wansing <li...@wansing-online.de>\n"
"Language-Team: Debian German <debian-l10n-ger...@lists.debian.org>\n"
diff -Nru apt-1.4.7/po/dz.po apt-1.4.8/po/dz.po
--- apt-1.4.7/po/dz.po 2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/po/dz.po 2017-09-13 18:47:33.000000000 +0200
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: apt 1.0.5\n"
"Report-Msgid-Bugs-To: APT Development Team <de...@lists.debian.org>\n"
-"POT-Creation-Date: 2017-02-06 14:41+0100\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
"PO-Revision-Date: 2006-09-19 09:49+0530\n"
"Last-Translator: Kinley Tshering <gasepkuenden...@hotmail.com>\n"
"Language-Team: Dzongkha <pgey...@dit.gov.bt>\n"
diff -Nru apt-1.4.7/po/el.po apt-1.4.8/po/el.po
--- apt-1.4.7/po/el.po 2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/po/el.po 2017-09-13 18:47:33.000000000 +0200
@@ -16,7 +16,7 @@
msgstr ""
"Project-Id-Version: apt 1.0.5\n"
"Report-Msgid-Bugs-To: APT Development Team <de...@lists.debian.org>\n"
-"POT-Creation-Date: 2017-02-06 14:41+0100\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
"PO-Revision-Date: 2008-08-26 18:25+0300\n"
"Last-Translator: Θανάσης Νάτσης <natsisthana...@gmail.com>\n"
"Language-Team: Greek <debian-l10n-gr...@lists.debian.org>\n"
diff -Nru apt-1.4.7/po/es.po apt-1.4.8/po/es.po
--- apt-1.4.7/po/es.po 2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/po/es.po 2017-09-13 18:47:33.000000000 +0200
@@ -34,7 +34,7 @@
msgstr ""
"Project-Id-Version: apt 0.8.10\n"
"Report-Msgid-Bugs-To: APT Development Team <de...@lists.debian.org>\n"
-"POT-Creation-Date: 2017-02-06 14:41+0100\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
"PO-Revision-Date: 2016-01-26 01:51+0100\n"
"Last-Translator: Manuel \"Venturi\" Porras Peralta <venturi@openmailbox."
"org>\n"
diff -Nru apt-1.4.7/po/eu.po apt-1.4.8/po/eu.po
--- apt-1.4.7/po/eu.po 2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/po/eu.po 2017-09-13 18:47:33.000000000 +0200
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: apt 1.0.5\n"
"Report-Msgid-Bugs-To: APT Development Team <de...@lists.debian.org>\n"
-"POT-Creation-Date: 2017-02-06 14:41+0100\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
"PO-Revision-Date: 2009-05-17 00:41+0200\n"
"Last-Translator: Piarres Beobide <p...@beobide.net>\n"
"Language-Team: Euskara <debian-l10n-bas...@lists.debian.org>\n"
diff -Nru apt-1.4.7/po/fi.po apt-1.4.8/po/fi.po
--- apt-1.4.7/po/fi.po 2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/po/fi.po 2017-09-13 18:47:33.000000000 +0200
@@ -8,7 +8,7 @@
msgstr ""
"Project-Id-Version: apt 0.5.26\n"
"Report-Msgid-Bugs-To: APT Development Team <de...@lists.debian.org>\n"
-"POT-Creation-Date: 2017-02-06 14:41+0100\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
"PO-Revision-Date: 2008-12-11 14:52+0200\n"
"Last-Translator: Tapio Lehtonen <t...@debian.org>\n"
"Language-Team: Finnish <debian-l10n-finn...@lists.debian.org>\n"
diff -Nru apt-1.4.7/po/fr.po apt-1.4.8/po/fr.po
--- apt-1.4.7/po/fr.po 2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/po/fr.po 2017-09-13 18:47:33.000000000 +0200
@@ -9,7 +9,7 @@
msgstr ""
"Project-Id-Version: apt 1.0.5\n"
"Report-Msgid-Bugs-To: APT Development Team <de...@lists.debian.org>\n"
-"POT-Creation-Date: 2017-02-06 14:41+0100\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
"PO-Revision-Date: 2013-12-15 16:45+0100\n"
"Last-Translator: Julien Patriarca <leatherf...@debian.org>\n"
"Language-Team: French <debian-l10n-fre...@lists.debian.org>\n"
diff -Nru apt-1.4.7/po/gl.po apt-1.4.8/po/gl.po
--- apt-1.4.7/po/gl.po 2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/po/gl.po 2017-09-13 18:47:33.000000000 +0200
@@ -10,7 +10,7 @@
msgstr ""
"Project-Id-Version: apt 1.0.5\n"
"Report-Msgid-Bugs-To: APT Development Team <de...@lists.debian.org>\n"
-"POT-Creation-Date: 2017-02-06 14:41+0100\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
"PO-Revision-Date: 2011-05-12 15:28+0100\n"
"Last-Translator: Miguel Anxo Bouzada <mbouz...@gmail.com>\n"
"Language-Team: galician <proxe...@trasno.net>\n"
diff -Nru apt-1.4.7/po/hu.po apt-1.4.8/po/hu.po
--- apt-1.4.7/po/hu.po 2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/po/hu.po 2017-09-13 18:47:33.000000000 +0200
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: apt 1.0.5\n"
"Report-Msgid-Bugs-To: APT Development Team <de...@lists.debian.org>\n"
-"POT-Creation-Date: 2017-02-06 14:41+0100\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
"PO-Revision-Date: 2016-04-10 19:46+0200\n"
"Last-Translator: Gabor Kelemen <kelem...@ubuntu.com>\n"
"Language-Team: Hungarian <gnome-hu-l...@gnome.org>\n"
diff -Nru apt-1.4.7/po/it.po apt-1.4.8/po/it.po
--- apt-1.4.7/po/it.po 2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/po/it.po 2017-09-13 18:47:33.000000000 +0200
@@ -8,7 +8,7 @@
msgstr ""
"Project-Id-Version: apt 1.0.5\n"
"Report-Msgid-Bugs-To: APT Development Team <de...@lists.debian.org>\n"
-"POT-Creation-Date: 2017-02-06 14:41+0100\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
"PO-Revision-Date: 2015-04-07 16:51+0100\n"
"Last-Translator: Milo Casagrande <m...@milo.name>\n"
"Language-Team: Italian <t...@lists.linux.it>\n"
diff -Nru apt-1.4.7/po/ja.po apt-1.4.8/po/ja.po
--- apt-1.4.7/po/ja.po 2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/po/ja.po 2017-09-13 18:47:33.000000000 +0200
@@ -10,7 +10,7 @@
msgstr ""
"Project-Id-Version: apt 1.4\n"
"Report-Msgid-Bugs-To: APT Development Team <de...@lists.debian.org>\n"
-"POT-Creation-Date: 2017-01-27 21:41+0100\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
"PO-Revision-Date: 2017-01-06 04:50+0900\n"
"Last-Translator: Takuma Yamada <tyam...@takumayamada.com>\n"
"Language-Team: Japanese <debian-japan...@lists.debian.org>\n"
diff -Nru apt-1.4.7/po/km.po apt-1.4.8/po/km.po
--- apt-1.4.7/po/km.po 2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/po/km.po 2017-09-13 18:47:33.000000000 +0200
@@ -10,7 +10,7 @@
msgstr ""
"Project-Id-Version: apt 1.0.5\n"
"Report-Msgid-Bugs-To: APT Development Team <de...@lists.debian.org>\n"
-"POT-Creation-Date: 2017-02-06 14:41+0100\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
"PO-Revision-Date: 2006-10-10 09:48+0700\n"
"Last-Translator: Khoem Sokhem <khoemsok...@khmeros.info>\n"
"Language-Team: Khmer <supp...@khmeros.info>\n"
diff -Nru apt-1.4.7/po/ko.po apt-1.4.8/po/ko.po
--- apt-1.4.7/po/ko.po 2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/po/ko.po 2017-09-13 18:47:33.000000000 +0200
@@ -5,7 +5,7 @@
msgstr ""
"Project-Id-Version: apt 1.0.5\n"
"Report-Msgid-Bugs-To: APT Development Team <de...@lists.debian.org>\n"
-"POT-Creation-Date: 2017-02-06 14:41+0100\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
"PO-Revision-Date: 2010-08-30 02:31+0900\n"
"Last-Translator: Changwoo Ryu <cw...@debian.org>\n"
"Language-Team: Korean <debian-l10n-kor...@lists.debian.org>\n"
diff -Nru apt-1.4.7/po/ku.po apt-1.4.8/po/ku.po
--- apt-1.4.7/po/ku.po 2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/po/ku.po 2017-09-13 18:47:33.000000000 +0200
@@ -8,7 +8,7 @@
msgstr ""
"Project-Id-Version: apt 1.0.5\n"
"Report-Msgid-Bugs-To: APT Development Team <de...@lists.debian.org>\n"
-"POT-Creation-Date: 2017-02-06 14:41+0100\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
"PO-Revision-Date: 2008-05-08 12:48+0200\n"
"Last-Translator: Erdal Ronahi <erdal.ron...@gmail.com>\n"
"Language-Team: ku <ubuntu-l10n-...@lists.ubuntu.com>\n"
diff -Nru apt-1.4.7/po/lt.po apt-1.4.8/po/lt.po
--- apt-1.4.7/po/lt.po 2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/po/lt.po 2017-09-13 18:47:33.000000000 +0200
@@ -8,7 +8,7 @@
msgstr ""
"Project-Id-Version: apt 1.0.5\n"
"Report-Msgid-Bugs-To: APT Development Team <de...@lists.debian.org>\n"
-"POT-Creation-Date: 2017-02-06 14:41+0100\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
"PO-Revision-Date: 2008-08-02 01:47-0400\n"
"Last-Translator: Gintautas Miliauskas <gin...@akl.lt>\n"
"Language-Team: Lithuanian <komp...@konferencijos.lt>\n"
diff -Nru apt-1.4.7/po/mr.po apt-1.4.8/po/mr.po
--- apt-1.4.7/po/mr.po 2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/po/mr.po 2017-09-13 18:47:33.000000000 +0200
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: apt 1.0.5\n"
"Report-Msgid-Bugs-To: APT Development Team <de...@lists.debian.org>\n"
-"POT-Creation-Date: 2017-02-06 14:41+0100\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
"PO-Revision-Date: 2008-11-20 23:27+0530\n"
"Last-Translator: Sampada <sampadanakh...@gmail.com>\n"
"Language-Team: Marathi, janabhaaratii, C-DAC, Mumbai, India "
diff -Nru apt-1.4.7/po/nb.po apt-1.4.8/po/nb.po
--- apt-1.4.7/po/nb.po 2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/po/nb.po 2017-09-13 18:47:33.000000000 +0200
@@ -12,7 +12,7 @@
msgstr ""
"Project-Id-Version: apt 1.0.5\n"
"Report-Msgid-Bugs-To: APT Development Team <de...@lists.debian.org>\n"
-"POT-Creation-Date: 2017-02-06 14:41+0100\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
"PO-Revision-Date: 2016-06-11 22:38+0200\n"
"Last-Translator: Petter Reinholdtsen <p...@hungry.com>\n"
"Language-Team: Norwegian Bokmål <i18n...@lister.ping.uio.no>\n"
diff -Nru apt-1.4.7/po/ne.po apt-1.4.8/po/ne.po
--- apt-1.4.7/po/ne.po 2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/po/ne.po 2017-09-13 18:47:33.000000000 +0200
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: apt 1.0.5\n"
"Report-Msgid-Bugs-To: APT Development Team <de...@lists.debian.org>\n"
-"POT-Creation-Date: 2017-02-06 14:41+0100\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
"PO-Revision-Date: 2006-06-12 14:35+0545\n"
"Last-Translator: Shiva Pokharel <pokharelsh...@hotmail.com>\n"
"Language-Team: Nepali <i...@mpp.org.np>\n"
diff -Nru apt-1.4.7/po/nl.po apt-1.4.8/po/nl.po
--- apt-1.4.7/po/nl.po 2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/po/nl.po 2017-09-13 18:47:33.000000000 +0200
@@ -12,7 +12,7 @@
msgstr ""
"Project-Id-Version: apt 1.4~beta4\n"
"Report-Msgid-Bugs-To: APT Development Team <de...@lists.debian.org>\n"
-"POT-Creation-Date: 2017-02-06 14:20+0100\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
"PO-Revision-Date: 2017-01-19 17:32+0100\n"
"Last-Translator: Frans Spiesschaert <frans.spiesscha...@yucom.be>\n"
"Language-Team: Debian Dutch l10n Team <debian-l10n-du...@lists.debian.org>\n"
diff -Nru apt-1.4.7/po/nn.po apt-1.4.8/po/nn.po
--- apt-1.4.7/po/nn.po 2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/po/nn.po 2017-09-13 18:47:33.000000000 +0200
@@ -9,7 +9,7 @@
msgstr ""
"Project-Id-Version: apt 1.0.5\n"
"Report-Msgid-Bugs-To: APT Development Team <de...@lists.debian.org>\n"
-"POT-Creation-Date: 2017-02-06 14:41+0100\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
"PO-Revision-Date: 2005-02-14 23:30+0100\n"
"Last-Translator: Havard Korsvoll <korsv...@skulelinux.no>\n"
"Language-Team: Norwegian nynorsk <i18n...@lister.ping.uio.no>\n"
diff -Nru apt-1.4.7/po/pl.po apt-1.4.8/po/pl.po
--- apt-1.4.7/po/pl.po 2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/po/pl.po 2017-09-13 18:47:33.000000000 +0200
@@ -11,7 +11,7 @@
msgstr ""
"Project-Id-Version: apt 0.9.7.3\n"
"Report-Msgid-Bugs-To: APT Development Team <de...@lists.debian.org>\n"
-"POT-Creation-Date: 2017-02-06 14:41+0100\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
"PO-Revision-Date: 2012-07-28 21:53+0200\n"
"Last-Translator: Michał Kułach <michal.kul...@gmail.com>\n"
"Language-Team: Polish <debian-l10n-pol...@lists.debian.org>\n"
diff -Nru apt-1.4.7/po/pt_BR.po apt-1.4.8/po/pt_BR.po
--- apt-1.4.7/po/pt_BR.po 2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/po/pt_BR.po 2017-09-13 18:47:33.000000000 +0200
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: apt 1.0.5\n"
"Report-Msgid-Bugs-To: APT Development Team <de...@lists.debian.org>\n"
-"POT-Creation-Date: 2017-02-06 14:41+0100\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
"PO-Revision-Date: 2008-11-17 02:33-0200\n"
"Last-Translator: Felipe Augusto van de Wiel (faw) <f...@debian.org>\n"
"Language-Team: Brazilian Portuguese <debian-l10n-portuguese@lists.debian."
diff -Nru apt-1.4.7/po/pt.po apt-1.4.8/po/pt.po
--- apt-1.4.7/po/pt.po 2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/po/pt.po 2017-09-13 18:47:33.000000000 +0200
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: apt 1.0.5\n"
"Report-Msgid-Bugs-To: APT Development Team <de...@lists.debian.org>\n"
-"POT-Creation-Date: 2017-02-06 14:41+0100\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
"PO-Revision-Date: 2012-06-29 15:45+0100\n"
"Last-Translator: Miguel Figueiredo <el...@debianpt.org>\n"
"Language-Team: Portuguese <tra...@debianpt.org>\n"
diff -Nru apt-1.4.7/po/ro.po apt-1.4.8/po/ro.po
--- apt-1.4.7/po/ro.po 2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/po/ro.po 2017-09-13 18:47:33.000000000 +0200
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: apt 1.0.5\n"
"Report-Msgid-Bugs-To: APT Development Team <de...@lists.debian.org>\n"
-"POT-Creation-Date: 2017-02-06 14:41+0100\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
"PO-Revision-Date: 2008-11-15 02:21+0200\n"
"Last-Translator: Eddy Petrișor <eddy.petri...@gmail.com>\n"
"Language-Team: Romanian <debian-l10n-roman...@lists.debian.org>\n"
diff -Nru apt-1.4.7/po/ru.po apt-1.4.8/po/ru.po
--- apt-1.4.7/po/ru.po 2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/po/ru.po 2017-09-13 18:47:33.000000000 +0200
@@ -12,7 +12,7 @@
msgstr ""
"Project-Id-Version: apt 1.2.12\n"
"Report-Msgid-Bugs-To: APT Development Team <de...@lists.debian.org>\n"
-"POT-Creation-Date: 2017-02-06 14:41+0100\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
"PO-Revision-Date: 2016-05-19 20:50+0300\n"
"Last-Translator: Yuri Kozlov <yu...@komyakino.ru>\n"
"Language-Team: Russian <debian-l10n-russ...@lists.debian.org>\n"
diff -Nru apt-1.4.7/po/sk.po apt-1.4.8/po/sk.po
--- apt-1.4.7/po/sk.po 2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/po/sk.po 2017-09-13 18:47:33.000000000 +0200
@@ -10,7 +10,7 @@
msgstr ""
"Project-Id-Version: apt 1.0.5\n"
"Report-Msgid-Bugs-To: APT Development Team <de...@lists.debian.org>\n"
-"POT-Creation-Date: 2017-02-06 14:41+0100\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
"PO-Revision-Date: 2012-06-28 20:49+0100\n"
"Last-Translator: Ivan Masár <heli...@centrum.sk>\n"
"Language-Team: Slovak <sk-i...@lists.linux.sk>\n"
diff -Nru apt-1.4.7/po/sl.po apt-1.4.8/po/sl.po
--- apt-1.4.7/po/sl.po 2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/po/sl.po 2017-09-13 18:47:33.000000000 +0200
@@ -4,7 +4,7 @@
msgstr ""
"Project-Id-Version: apt 0.5.5\n"
"Report-Msgid-Bugs-To: APT Development Team <de...@lists.debian.org>\n"
-"POT-Creation-Date: 2017-02-06 14:41+0100\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
"PO-Revision-Date: 2012-06-27 21:29+0000\n"
"Last-Translator: Andrej Znidarsic <andrej.znidar...@gmail.com>\n"
"Language-Team: Slovenian <s...@li.org>\n"
diff -Nru apt-1.4.7/po/sv.po apt-1.4.8/po/sv.po
--- apt-1.4.7/po/sv.po 2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/po/sv.po 2017-09-13 18:47:33.000000000 +0200
@@ -10,7 +10,7 @@
msgstr ""
"Project-Id-Version: apt\n"
"Report-Msgid-Bugs-To: APT Development Team <de...@lists.debian.org>\n"
-"POT-Creation-Date: 2017-02-06 14:41+0100\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
"PO-Revision-Date: 2015-08-19 21:33+0200\n"
"Last-Translator: Anders Jonsson <anders.jons...@norsjovallen.se>\n"
"Language-Team: Swedish <debian-l10n-swed...@debian.org>\n"
diff -Nru apt-1.4.7/po/th.po apt-1.4.8/po/th.po
--- apt-1.4.7/po/th.po 2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/po/th.po 2017-09-13 18:47:33.000000000 +0200
@@ -8,7 +8,7 @@
msgstr ""
"Project-Id-Version: apt 1.0.5\n"
"Report-Msgid-Bugs-To: APT Development Team <de...@lists.debian.org>\n"
-"POT-Creation-Date: 2017-02-06 14:41+0100\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
"PO-Revision-Date: 2014-12-12 13:00+0700\n"
"Last-Translator: Theppitak Karoonboonyanan <t...@debian.org>\n"
"Language-Team: Thai <thai-l...@googlegroups.com>\n"
diff -Nru apt-1.4.7/po/tl.po apt-1.4.8/po/tl.po
--- apt-1.4.7/po/tl.po 2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/po/tl.po 2017-09-13 18:47:33.000000000 +0200
@@ -10,7 +10,7 @@
msgstr ""
"Project-Id-Version: apt 1.0.5\n"
"Report-Msgid-Bugs-To: APT Development Team <de...@lists.debian.org>\n"
-"POT-Creation-Date: 2017-02-06 14:41+0100\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
"PO-Revision-Date: 2007-03-29 21:36+0800\n"
"Last-Translator: Eric Pareja <xe...@upm.edu.ph>\n"
"Language-Team: Tagalog <debian...@banwa.upm.edu.ph>\n"
diff -Nru apt-1.4.7/po/tr.po apt-1.4.8/po/tr.po
--- apt-1.4.7/po/tr.po 2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/po/tr.po 2017-09-13 18:47:33.000000000 +0200
@@ -8,7 +8,7 @@
msgstr ""
"Project-Id-Version: apt 1.0.5\n"
"Report-Msgid-Bugs-To: APT Development Team <de...@lists.debian.org>\n"
-"POT-Creation-Date: 2017-02-06 14:41+0100\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
"PO-Revision-Date: 2016-09-24 03:24+0300\n"
"Last-Translator: Mert Dirik <mertdi...@gmail.com>\n"
"Language-Team: Debian l10n Turkish <debian-l10n-turk...@lists.debian.org>\n"
diff -Nru apt-1.4.7/po/uk.po apt-1.4.8/po/uk.po
--- apt-1.4.7/po/uk.po 2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/po/uk.po 2017-09-13 18:47:33.000000000 +0200
@@ -12,7 +12,7 @@
msgstr ""
"Project-Id-Version: apt 1.0.5\n"
"Report-Msgid-Bugs-To: APT Development Team <de...@lists.debian.org>\n"
-"POT-Creation-Date: 2017-02-06 14:41+0100\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
"PO-Revision-Date: 2012-09-25 20:19+0300\n"
"Last-Translator: A. Bondarenko <artem....@gmail.com>\n"
"Language-Team: Українська <u...@li.org>\n"
diff -Nru apt-1.4.7/po/vi.po apt-1.4.8/po/vi.po
--- apt-1.4.7/po/vi.po 2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/po/vi.po 2017-09-13 18:47:33.000000000 +0200
@@ -8,7 +8,7 @@
msgstr ""
"Project-Id-Version: apt 1.0.8\n"
"Report-Msgid-Bugs-To: APT Development Team <de...@lists.debian.org>\n"
-"POT-Creation-Date: 2017-02-06 14:41+0100\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
"PO-Revision-Date: 2014-09-12 13:48+0700\n"
"Last-Translator: Trần Ngọc Quân <vnwild...@gmail.com>\n"
"Language-Team: Vietnamese <translation-team...@lists.sourceforge.net>\n"
diff -Nru apt-1.4.7/po/zh_CN.po apt-1.4.8/po/zh_CN.po
--- apt-1.4.7/po/zh_CN.po 2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/po/zh_CN.po 2017-09-13 18:47:33.000000000 +0200
@@ -10,7 +10,7 @@
msgstr ""
"Project-Id-Version: apt 1.4.x\n"
"Report-Msgid-Bugs-To: APT Development Team <de...@lists.debian.org>\n"
-"POT-Creation-Date: 2017-02-06 14:41+0100\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
"PO-Revision-Date: 2017-01-26 12:00+0000\n"
"Last-Translator: Zhou Mo <cdlumin...@gmail.com>\n"
"Language-Team: Chinese (simplified) <i18n...@googlegroups.com>\n"
diff -Nru apt-1.4.7/po/zh_TW.po apt-1.4.8/po/zh_TW.po
--- apt-1.4.7/po/zh_TW.po 2017-07-13 23:45:39.000000000 +0200
+++ apt-1.4.8/po/zh_TW.po 2017-09-13 18:47:33.000000000 +0200
@@ -10,7 +10,7 @@
msgstr ""
"Project-Id-Version: apt 1.2.X\n"
"Report-Msgid-Bugs-To: APT Development Team <de...@lists.debian.org>\n"
-"POT-Creation-Date: 2017-02-06 14:41+0100\n"
+"POT-Creation-Date: 2017-09-13 17:18+0000\n"
"PO-Revision-Date: 2009-01-28 10:41+0800\n"
"Last-Translator: Tetralet <tetra...@gmail.com>\n"
"Language-Team: Debian-user in Chinese [Big5] <debian-chinese-big5@lists."
--- End Message ---