Your message dated Sat, 07 Oct 2017 11:33:55 +0100
with message-id <[email protected]>
and subject line Closing bugs for 9.2 point release
has caused the Debian Bug report #875695,
regarding stretch-pu: package apt/1.4.8
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)


-- 
875695: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=875695
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: release.debian.org
Severity: normal
Tags: stretch
User: [email protected]
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 <[email protected]>  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 <[email protected]>")
-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 <[email protected]>  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 <[email protected]>\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 <[email protected]>\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 <[email protected]>\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 <[email protected]>\n"
 "Language-Team: German <[email protected]>\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 <[email protected]>\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 <[email protected]>\n"
 "Language-Team: Debian l10n Spanish <[email protected]>\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 <[email protected]>\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 <[email protected]>\n"
 "Language-Team: French <[email protected]>\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 <[email protected]>\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 <[email protected]>\n"
 "Language-Team: Italian <[email protected]>\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 <[email protected]>\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 <[email protected]>\n"
 "Language-Team: Japanese <[email protected]>\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 <[email protected]>\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 <[email protected]>\n"
 "Language-Team: Debian Dutch l10n Team <[email protected]>\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 <[email protected]>\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 <[email protected]>\n"
 "Language-Team: Polish <[email protected]>\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 <[email protected]>\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 <[email protected]>\n"
 "Language-Team: <[email protected]>\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 <[email protected]>\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 <[email protected]>\n"
 "Language-Team: Portuguese <[email protected]>\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 <[email protected]>\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 <[email protected]>\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 <[email protected]>\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 <[email protected]>\n"
 "Language-Team: Arabic <[email protected]>\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 <[email protected]>\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 <[email protected]>\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 <[email protected]>\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 <[email protected]>\n"
 "Language-Team: Bulgarian <[email protected]>\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 <[email protected]>\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ć <[email protected]>\n"
 "Language-Team: Bosnian <[email protected]>\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 <[email protected]>\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 <[email protected]>\n"
 "Language-Team: Catalan <[email protected]>\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 <[email protected]>\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 <[email protected]>\n"
 "Language-Team: Czech <[email protected]>\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 <[email protected]>\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 <[email protected]>\n"
 "Language-Team: Welsh <[email protected]>\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 <[email protected]>\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 <[email protected]>\n"
 "Language-Team: Danish <[email protected]>\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 <[email protected]>\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 <[email protected]>\n"
 "Language-Team: Debian German <[email protected]>\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 <[email protected]>\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 <[email protected]>\n"
 "Language-Team: Dzongkha <[email protected]>\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 <[email protected]>\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: Θανάσης Νάτσης <[email protected]>\n"
 "Language-Team: Greek <[email protected]>\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 <[email protected]>\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 <[email protected]>\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 <[email protected]>\n"
 "Language-Team: Euskara <[email protected]>\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 <[email protected]>\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 <[email protected]>\n"
 "Language-Team: Finnish <[email protected]>\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 <[email protected]>\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 <[email protected]>\n"
 "Language-Team: French <[email protected]>\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 <[email protected]>\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 <[email protected]>\n"
 "Language-Team: galician <[email protected]>\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 <[email protected]>\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 <[email protected]>\n"
 "Language-Team: Hungarian <[email protected]>\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 <[email protected]>\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 <[email protected]>\n"
 "Language-Team: Italian <[email protected]>\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 <[email protected]>\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 <[email protected]>\n"
 "Language-Team: Japanese <[email protected]>\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 <[email protected]>\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 <[email protected]>\n"
 "Language-Team: Khmer <[email protected]>\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 <[email protected]>\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 <[email protected]>\n"
 "Language-Team: Korean <[email protected]>\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 <[email protected]>\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 <[email protected]>\n"
 "Language-Team: ku <[email protected]>\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 <[email protected]>\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 <[email protected]>\n"
 "Language-Team: Lithuanian <[email protected]>\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 <[email protected]>\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 <[email protected]>\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 <[email protected]>\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 <[email protected]>\n"
 "Language-Team: Norwegian Bokmål <[email protected]>\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 <[email protected]>\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 <[email protected]>\n"
 "Language-Team: Nepali <[email protected]>\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 <[email protected]>\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 <[email protected]>\n"
 "Language-Team: Debian Dutch l10n Team <[email protected]>\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 <[email protected]>\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 <[email protected]>\n"
 "Language-Team: Norwegian nynorsk <[email protected]>\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 <[email protected]>\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 <[email protected]>\n"
 "Language-Team: Polish <[email protected]>\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 <[email protected]>\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) <[email protected]>\n"
 "Language-Team: Brazilian Portuguese <[email protected]."
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 <[email protected]>\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 <[email protected]>\n"
 "Language-Team: Portuguese <[email protected]>\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 <[email protected]>\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 <[email protected]>\n"
 "Language-Team: Romanian <[email protected]>\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 <[email protected]>\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 <[email protected]>\n"
 "Language-Team: Russian <[email protected]>\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 <[email protected]>\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 <[email protected]>\n"
 "Language-Team: Slovak <[email protected]>\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 <[email protected]>\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 <[email protected]>\n"
 "Language-Team: Slovenian <[email protected]>\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 <[email protected]>\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 <[email protected]>\n"
 "Language-Team: Swedish <[email protected]>\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 <[email protected]>\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 <[email protected]>\n"
 "Language-Team: Thai <[email protected]>\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 <[email protected]>\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 <[email protected]>\n"
 "Language-Team: Tagalog <[email protected]>\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 <[email protected]>\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 <[email protected]>\n"
 "Language-Team: Debian l10n Turkish <[email protected]>\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 <[email protected]>\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 <[email protected]>\n"
 "Language-Team: Українська <[email protected]>\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 <[email protected]>\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 <[email protected]>\n"
 "Language-Team: Vietnamese <[email protected]>\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 <[email protected]>\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 <[email protected]>\n"
 "Language-Team: Chinese (simplified) <[email protected]>\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 <[email protected]>\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 <[email protected]>\n"
 "Language-Team: Debian-user in Chinese [Big5] <debian-chinese-big5@lists."

--- End Message ---
--- Begin Message ---
Version: 9.2

Hi.

The updates referenced by each of these bugs was included in today's
point release of stretch.

Regards,

Adam

--- End Message ---

Reply via email to