summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CMakeLists.txt2
-rw-r--r--debian/changelog39
-rw-r--r--doc/apt-verbatim.ent2
-rw-r--r--doc/po/apt-doc.pot4
-rw-r--r--po/apt-all.pot17
-rw-r--r--po/ar.po17
-rw-r--r--po/ast.po23
-rw-r--r--po/bg.po23
-rw-r--r--po/bs.po17
-rw-r--r--po/ca.po28
-rw-r--r--po/cs.po28
-rw-r--r--po/cy.po17
-rw-r--r--po/da.po28
-rw-r--r--po/de.po28
-rw-r--r--po/dz.po17
-rw-r--r--po/el.po17
-rw-r--r--po/es.po28
-rw-r--r--po/eu.po17
-rw-r--r--po/fi.po17
-rw-r--r--po/fr.po28
-rw-r--r--po/gl.po23
-rw-r--r--po/hu.po28
-rw-r--r--po/it.po28
-rw-r--r--po/ja.po28
-rw-r--r--po/km.po17
-rw-r--r--po/ko.po23
-rw-r--r--po/ku.po17
-rw-r--r--po/lt.po23
-rw-r--r--po/mr.po17
-rw-r--r--po/nb.po23
-rw-r--r--po/ne.po17
-rw-r--r--po/nl.po28
-rw-r--r--po/nn.po17
-rw-r--r--po/pl.po28
-rw-r--r--po/pt.po23
-rw-r--r--po/pt_BR.po28
-rw-r--r--po/ro.po28
-rw-r--r--po/ru.po64
-rw-r--r--po/sk.po23
-rw-r--r--po/sl.po23
-rw-r--r--po/sv.po28
-rw-r--r--po/th.po23
-rw-r--r--po/tl.po17
-rw-r--r--po/tr.po28
-rw-r--r--po/uk.po23
-rw-r--r--po/vi.po23
-rw-r--r--po/zh_CN.po28
-rw-r--r--po/zh_TW.po17
48 files changed, 889 insertions, 201 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index ad84710a0..575c6a470 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -204,7 +204,7 @@ endif()
# Configure some variables like package, version and architecture.
set(PACKAGE ${PROJECT_NAME})
set(PACKAGE_MAIL "APT Development Team <deity@lists.debian.org>")
-set(PACKAGE_VERSION "2.9.31")
+set(PACKAGE_VERSION "2.9.32")
string(REGEX MATCH "^[0-9.]+" PROJECT_VERSION ${PACKAGE_VERSION})
if (NOT DEFINED DPKG_DATADIR)
diff --git a/debian/changelog b/debian/changelog
index 0511fb704..3ebbfde56 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,42 @@
+apt (2.9.32) unstable; urgency=medium
+
+ * Rewordings and documentation updates:
+ - Add doc/design/install.md: Installation design
+ - Replace "GPG error" with "OpenPGP signature verification failed"
+ * Bug fix: Correctly detect obsolete packages in EDSP
+ - refactor obsolete checks to use VerFileIterator::Downloadable()
+ - Consider 0-size debs not downloadable, set a size in EDSP
+ - edsp: Write 'Size' to the EDSP files
+ * UX: Produce more human-readable dependency errors in 3.0 solver.
+ - test: Grep continuation lines in error messages
+ - solver3: Simplify Var pointer tagging
+ - solver3: cleanup operators for Var
+ - solver3: Support pretty printing clauses
+ - solver3: Verbose error messages
+ The output now has multiple lines, prints the underlying concrete
+ dependency (foo Depends bar), and prints paths not taken.
+ * Bug fixes:
+ - solver3: bestReason: Only find actual assignments [i.e. when the
+ path to a decision is determined for printing, we sometimes picked
+ assignments with the wrong polarity, e.g. when determining "why not foo"
+ in "foo Conflicts mail-transport-agent" we might have picked a
+ decision "not exim4" rather than a choice "postfix"].
+ - solver3: Do not prefer new installs over manually installed obsoletes.
+ (LP: #2100247) - We still try dependencies with obsolete packages
+ last, even if manual, so a "Depends: new" is processed before
+ "Depends: new | obsolete" either way.
+ * Feature: Introduce transaction support and upgrade count for pkgDepCache.
+ - Introduce pkgDepCache::Transaction for transactional depcache updates
+ - depcache: Add a new UpgradeCount() member
+ * Feature: Fall back to the 3.0 solver if internal failed, or apport is
+ installed.
+ - Evaluate and fall back to the 3.0 solver
+ - Print --solver 3.0 explanation if both internal and it failed
+ * Both features have been shipped for several weeks in Ubuntu already and
+ received minor bug fixes and additional test cases.
+
+ -- Julian Andres Klode <jak@debian.org> Sun, 09 Mar 2025 18:19:14 +0100
+
apt (2.9.31) unstable; urgency=medium
[ Julian Andres Klode ]
diff --git a/doc/apt-verbatim.ent b/doc/apt-verbatim.ent
index fec96d48e..64d6aebeb 100644
--- a/doc/apt-verbatim.ent
+++ b/doc/apt-verbatim.ent
@@ -268,7 +268,7 @@
">
<!-- this will be updated by 'prepare-release' -->
-<!ENTITY apt-product-version "2.9.31">
+<!ENTITY apt-product-version "2.9.32">
<!-- (Code)names for various things used all over the place -->
<!ENTITY debian-oldstable-codename "bookworm">
diff --git a/doc/po/apt-doc.pot b/doc/po/apt-doc.pot
index 723ebd143..4d47aebc0 100644
--- a/doc/po/apt-doc.pot
+++ b/doc/po/apt-doc.pot
@@ -5,9 +5,9 @@
#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: apt-doc 2.9.31\n"
+"Project-Id-Version: apt-doc 2.9.32\n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2025-02-28 16:50+0000\n"
+"POT-Creation-Date: 2025-03-09 17:32+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
diff --git a/po/apt-all.pot b/po/apt-all.pot
index 1dd685909..d84971911 100644
--- a/po/apt-all.pot
+++ b/po/apt-all.pot
@@ -5,9 +5,9 @@
#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: apt 2.9.31\n"
+"Project-Id-Version: apt 2.9.32\n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2025-02-28 16:50+0000\n"
+"POT-Creation-Date: 2025-03-09 17:32+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -112,13 +112,14 @@ msgstr ""
#, c-format
msgid ""
"An error occurred during the signature verification. The repository is not "
-"updated and the previous index files will be used. GPG error: %s: %s"
+"updated and the previous index files will be used. OpenPGP signature "
+"verification failed: %s: %s"
msgstr ""
#. Invalid signature file, reject (LP: #346386) (Closes: #627642)
#: apt-pkg/acquire-item.cc
#, c-format
-msgid "GPG error: %s: %s"
+msgid "OpenPGP signature verification failed: %s: %s"
msgstr ""
#: apt-pkg/acquire-item.cc
@@ -1780,6 +1781,10 @@ msgid "Broken packages"
msgstr ""
#: apt-private/private-install.cc
+msgid "Writing error report"
+msgstr ""
+
+#: apt-private/private-install.cc
msgid ""
"Unmerged usr is no longer supported, use usrmerge to convert to a merged-usr "
"system."
@@ -2007,6 +2012,10 @@ msgstr[0] ""
msgstr[1] ""
#: apt-private/private-install.cc
+msgid "Result calculated by the 3.0 solver."
+msgstr ""
+
+#: apt-private/private-install.cc
msgid "Suggested packages:"
msgstr ""
diff --git a/po/ar.po b/po/ar.po
index c7da68086..81a29f02d 100644
--- a/po/ar.po
+++ b/po/ar.po
@@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: apt 1.0.5\n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2025-02-16 16:59+0000\n"
+"POT-Creation-Date: 2025-03-09 17:32+0000\n"
"PO-Revision-Date: 2006-10-20 21:28+0300\n"
"Last-Translator: Ossama M. Khayat <okhayat@yahoo.com>\n"
"Language-Team: Arabic <support@arabeyes.org>\n"
@@ -125,13 +125,14 @@ msgstr ""
#, c-format
msgid ""
"An error occurred during the signature verification. The repository is not "
-"updated and the previous index files will be used. GPG error: %s: %s"
+"updated and the previous index files will be used. OpenPGP signature "
+"verification failed: %s: %s"
msgstr ""
#. Invalid signature file, reject (LP: #346386) (Closes: #627642)
#: apt-pkg/acquire-item.cc
#, c-format
-msgid "GPG error: %s: %s"
+msgid "OpenPGP signature verification failed: %s: %s"
msgstr ""
#: apt-pkg/acquire-item.cc
@@ -1810,6 +1811,12 @@ msgid "Broken packages"
msgstr "حزم معطوبة"
#: apt-private/private-install.cc
+#, fuzzy
+#| msgid "Write error"
+msgid "Writing error report"
+msgstr "خطأ في الكتابة"
+
+#: apt-private/private-install.cc
msgid ""
"Unmerged usr is no longer supported, use usrmerge to convert to a merged-usr "
"system."
@@ -2044,6 +2051,10 @@ msgstr[0] "سيتم تثبيت الحزم الجديدة التالية:"
msgstr[1] "سيتم تثبيت الحزم الجديدة التالية:"
#: apt-private/private-install.cc
+msgid "Result calculated by the 3.0 solver."
+msgstr ""
+
+#: apt-private/private-install.cc
msgid "Suggested packages:"
msgstr "الحزم المقترحة:"
diff --git a/po/ast.po b/po/ast.po
index a9432862c..579c3c469 100644
--- a/po/ast.po
+++ b/po/ast.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: apt 0.7.18\n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2025-02-16 16:59+0000\n"
+"POT-Creation-Date: 2025-03-09 17:32+0000\n"
"PO-Revision-Date: 2010-10-02 23:35+0100\n"
"Last-Translator: Iñigo Varela <ivarela@softastur.org>\n"
"Language-Team: Asturian (ast)\n"
@@ -117,7 +117,8 @@ msgstr ""
#, fuzzy, c-format
msgid ""
"An error occurred during the signature verification. The repository is not "
-"updated and the previous index files will be used. GPG error: %s: %s"
+"updated and the previous index files will be used. OpenPGP signature "
+"verification failed: %s: %s"
msgstr ""
"Hebo un fallu durante la verificación de la robla. El repositoriu nun ta "
"anováu y va usase un ficheru índiz. Fallu GPG: %s: %s\n"
@@ -125,8 +126,8 @@ msgstr ""
#. Invalid signature file, reject (LP: #346386) (Closes: #627642)
#: apt-pkg/acquire-item.cc
#, c-format
-msgid "GPG error: %s: %s"
-msgstr "Fallu GPG: %s: %s"
+msgid "OpenPGP signature verification failed: %s: %s"
+msgstr ""
#: apt-pkg/acquire-item.cc
#, c-format
@@ -1871,6 +1872,12 @@ msgid "Broken packages"
msgstr "Paquetes frañaos"
#: apt-private/private-install.cc
+#, fuzzy
+#| msgid "Write error"
+msgid "Writing error report"
+msgstr "Fallu d'escritura"
+
+#: apt-private/private-install.cc
msgid ""
"Unmerged usr is no longer supported, use usrmerge to convert to a merged-usr "
"system."
@@ -2114,6 +2121,10 @@ msgstr[1] ""
"Los paquetes %lu instaláronse de manera automática y ya nun se necesiten\n"
#: apt-private/private-install.cc
+msgid "Result calculated by the 3.0 solver."
+msgstr ""
+
+#: apt-private/private-install.cc
msgid "Suggested packages:"
msgstr "Paquetes afalaos:"
@@ -3935,6 +3946,10 @@ msgstr "Nun se pudo afitar la hora de modificación"
msgid "Empty files can't be valid archives"
msgstr ""
+#, c-format
+#~ msgid "GPG error: %s: %s"
+#~ msgstr "Fallu GPG: %s: %s"
+
#~ msgid "Logging in"
#~ msgstr "Entrando"
diff --git a/po/bg.po b/po/bg.po
index a13842538..11f28075d 100644
--- a/po/bg.po
+++ b/po/bg.po
@@ -14,7 +14,7 @@ msgid ""
msgstr ""
"Project-Id-Version: apt 0.7.21\n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2025-02-16 16:59+0000\n"
+"POT-Creation-Date: 2025-03-09 17:32+0000\n"
"PO-Revision-Date: 2012-06-25 17:23+0300\n"
"Last-Translator: Damyan Ivanov <dmn@debian.org>\n"
"Language-Team: Bulgarian <dict@fsa-bg.org>\n"
@@ -123,7 +123,8 @@ msgstr ""
#, fuzzy, c-format
msgid ""
"An error occurred during the signature verification. The repository is not "
-"updated and the previous index files will be used. GPG error: %s: %s"
+"updated and the previous index files will be used. OpenPGP signature "
+"verification failed: %s: %s"
msgstr ""
"Грешка при проверка на цифровия подпис. Хранилището не е обновено и ще се "
"използват старите индексни файлове. Грешка от GPG: %s: %s\n"
@@ -131,8 +132,8 @@ msgstr ""
#. Invalid signature file, reject (LP: #346386) (Closes: #627642)
#: apt-pkg/acquire-item.cc
#, c-format
-msgid "GPG error: %s: %s"
-msgstr "Грешка от GPG: %s: %s"
+msgid "OpenPGP signature verification failed: %s: %s"
+msgstr ""
#: apt-pkg/acquire-item.cc
#, c-format
@@ -1913,6 +1914,12 @@ msgid "Broken packages"
msgstr "Счупени пакети"
#: apt-private/private-install.cc
+#, fuzzy
+#| msgid "Write error"
+msgid "Writing error report"
+msgstr "Грешка при запис"
+
+#: apt-private/private-install.cc
msgid ""
"Unmerged usr is no longer supported, use usrmerge to convert to a merged-usr "
"system."
@@ -2158,6 +2165,10 @@ msgstr[1] ""
"%lu пакета са били инсталирани автоматично и вече не са необходими:\n"
#: apt-private/private-install.cc
+msgid "Result calculated by the 3.0 solver."
+msgstr ""
+
+#: apt-private/private-install.cc
msgid "Suggested packages:"
msgstr "Предложени пакети:"
@@ -3991,6 +4002,10 @@ msgstr "Неуспех при задаването на време на пром
msgid "Empty files can't be valid archives"
msgstr "Празни файлове не могат да бъдат валидни архиви"
+#, c-format
+#~ msgid "GPG error: %s: %s"
+#~ msgstr "Грешка от GPG: %s: %s"
+
#~ msgid "Logging in"
#~ msgstr "Влизане"
diff --git a/po/bs.po b/po/bs.po
index 6c77be890..65666f00c 100644
--- a/po/bs.po
+++ b/po/bs.po
@@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: apt 0.5.26\n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2025-02-16 16:59+0000\n"
+"POT-Creation-Date: 2025-03-09 17:32+0000\n"
"PO-Revision-Date: 2004-05-06 15:25+0100\n"
"Last-Translator: Safir Šećerović <sapphire@linux.org.ba>\n"
"Language-Team: Bosnian <lokal@lugbih.org>\n"
@@ -119,13 +119,14 @@ msgstr ""
#, c-format
msgid ""
"An error occurred during the signature verification. The repository is not "
-"updated and the previous index files will be used. GPG error: %s: %s"
+"updated and the previous index files will be used. OpenPGP signature "
+"verification failed: %s: %s"
msgstr ""
#. Invalid signature file, reject (LP: #346386) (Closes: #627642)
#: apt-pkg/acquire-item.cc
#, c-format
-msgid "GPG error: %s: %s"
+msgid "OpenPGP signature verification failed: %s: %s"
msgstr ""
#: apt-pkg/acquire-item.cc
@@ -1801,6 +1802,12 @@ msgid "Broken packages"
msgstr "Oštećeni paketi"
#: apt-private/private-install.cc
+#, fuzzy
+#| msgid "Write error"
+msgid "Writing error report"
+msgstr "Greška pri pisanju"
+
+#: apt-private/private-install.cc
msgid ""
"Unmerged usr is no longer supported, use usrmerge to convert to a merged-usr "
"system."
@@ -2030,6 +2037,10 @@ msgstr[0] "Slijedeći NOVI paketi će biti instalirani:"
msgstr[1] "Slijedeći NOVI paketi će biti instalirani:"
#: apt-private/private-install.cc
+msgid "Result calculated by the 3.0 solver."
+msgstr ""
+
+#: apt-private/private-install.cc
msgid "Suggested packages:"
msgstr "Predloženi paketi:"
diff --git a/po/ca.po b/po/ca.po
index 44fd87dad..97d0bec01 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -14,7 +14,7 @@ msgid ""
msgstr ""
"Project-Id-Version: apt 1.4~beta1\n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2025-02-16 16:59+0000\n"
+"POT-Creation-Date: 2025-03-09 17:32+0000\n"
"PO-Revision-Date: 2024-08-08 22:47+0100\n"
"Last-Translator: Carles Pina i Estany <cpina@debian.org>\n"
"Language-Team: Catalan <debian-l10n-catalan@lists.debian.org>\n"
@@ -129,10 +129,14 @@ msgstr ""
"autenticació?)"
#: apt-pkg/acquire-item.cc
-#, c-format
+#, fuzzy, c-format
+#| msgid ""
+#| "An error occurred during the signature verification. The repository is "
+#| "not updated and the previous index files will be used. GPG error: %s: %s"
msgid ""
"An error occurred during the signature verification. The repository is not "
-"updated and the previous index files will be used. GPG error: %s: %s"
+"updated and the previous index files will be used. OpenPGP signature "
+"verification failed: %s: %s"
msgstr ""
"S'ha produït un error durant la verificació de la signatura. El dipòsit no "
"està actualitzat i s'empraran els fitxers d'índex anteriors. Error GPG: %s: "
@@ -141,8 +145,8 @@ msgstr ""
#. Invalid signature file, reject (LP: #346386) (Closes: #627642)
#: apt-pkg/acquire-item.cc
#, c-format
-msgid "GPG error: %s: %s"
-msgstr "Error GPG: %s: %s"
+msgid "OpenPGP signature verification failed: %s: %s"
+msgstr ""
#: apt-pkg/acquire-item.cc
#, c-format
@@ -1951,6 +1955,12 @@ msgid "Broken packages"
msgstr "Paquets trencats"
#: apt-private/private-install.cc
+#, fuzzy
+#| msgid "Write error"
+msgid "Writing error report"
+msgstr "Error d'escriptura"
+
+#: apt-private/private-install.cc
msgid ""
"Unmerged usr is no longer supported, use usrmerge to convert to a merged-usr "
"system."
@@ -2209,6 +2219,10 @@ msgstr[1] ""
"Els paquets %lu es van instal·lar automàticament i ja no són necessaris:\n"
#: apt-private/private-install.cc
+msgid "Result calculated by the 3.0 solver."
+msgstr ""
+
+#: apt-private/private-install.cc
msgid "Suggested packages:"
msgstr "Paquets suggerits:"
@@ -4076,6 +4090,10 @@ msgstr "No s'ha pogut establir l'hora de modificació"
msgid "Empty files can't be valid archives"
msgstr "Els fitxers buits no poden ser arxius vàlids"
+#, c-format
+#~ msgid "GPG error: %s: %s"
+#~ msgstr "Error GPG: %s: %s"
+
# Si mai es tradueix el «apt-key»(8) canviar de DEPRECATION a la paraula feta servir al manual.
#, fuzzy, c-format
#~| msgid ""
diff --git a/po/cs.po b/po/cs.po
index 8922b7f42..a89a18903 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -12,7 +12,7 @@ msgid ""
msgstr ""
"Project-Id-Version: apt 2.9.28\n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2025-02-16 16:59+0000\n"
+"POT-Creation-Date: 2025-03-09 17:32+0000\n"
"PO-Revision-Date: 2025-02-14 14:54+0100\n"
"Last-Translator: Miroslav Kure <kurem@debian.cz>\n"
"Language-Team: Czech <debian-l10n-czech@lists.debian.org>\n"
@@ -125,10 +125,14 @@ msgstr ""
"ověření?)"
#: apt-pkg/acquire-item.cc
-#, c-format
+#, fuzzy, c-format
+#| msgid ""
+#| "An error occurred during the signature verification. The repository is "
+#| "not updated and the previous index files will be used. GPG error: %s: %s"
msgid ""
"An error occurred during the signature verification. The repository is not "
-"updated and the previous index files will be used. GPG error: %s: %s"
+"updated and the previous index files will be used. OpenPGP signature "
+"verification failed: %s: %s"
msgstr ""
"Při ověřování podpisů se objevila chyba. Repozitář není aktualizovaný, tudíž "
"se použijí předchozí indexové soubory. Chyba GPG: %s: %s"
@@ -136,8 +140,8 @@ msgstr ""
#. Invalid signature file, reject (LP: #346386) (Closes: #627642)
#: apt-pkg/acquire-item.cc
#, c-format
-msgid "GPG error: %s: %s"
-msgstr "Chyba GPG: %s: %s"
+msgid "OpenPGP signature verification failed: %s: %s"
+msgstr ""
#: apt-pkg/acquire-item.cc
#, c-format
@@ -1884,6 +1888,12 @@ msgid "Broken packages"
msgstr "Poškozené balíky"
#: apt-private/private-install.cc
+#, fuzzy
+#| msgid "Write error"
+msgid "Writing error report"
+msgstr "Chyba zápisu"
+
+#: apt-private/private-install.cc
msgid ""
"Unmerged usr is no longer supported, use usrmerge to convert to a merged-usr "
"system."
@@ -2139,6 +2149,10 @@ msgstr[1] "%lu balíky byly nainstalovány automaticky a již nejsou potřeba.\n
msgstr[2] "%lu balíků bylo nainstalováno automaticky a již nejsou potřeba.\n"
#: apt-private/private-install.cc
+msgid "Result calculated by the 3.0 solver."
+msgstr ""
+
+#: apt-private/private-install.cc
msgid "Suggested packages:"
msgstr "Navrhované balíky:"
@@ -3947,6 +3961,10 @@ msgid "Empty files can't be valid archives"
msgstr "Prázdné soubory nejsou platnými archivy"
#, c-format
+#~ msgid "GPG error: %s: %s"
+#~ msgstr "Chyba GPG: %s: %s"
+
+#, c-format
#~ msgid ""
#~ "Key is stored in legacy trusted.gpg keyring (%s). Use Signed-By instead. "
#~ "See the USER CONFIGURATION section in apt-secure(8) for details."
diff --git a/po/cy.po b/po/cy.po
index 38de67b85..f4ff496d3 100644
--- a/po/cy.po
+++ b/po/cy.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: apt 1.0.5\n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2025-02-16 16:59+0000\n"
+"POT-Creation-Date: 2025-03-09 17:32+0000\n"
"PO-Revision-Date: 2005-06-06 13:46+0100\n"
"Last-Translator: Dafydd Harries <daf@muse.19inch.net>\n"
"Language-Team: Welsh <cy@pengwyn.linux.org.uk>\n"
@@ -119,13 +119,14 @@ msgstr ""
#, c-format
msgid ""
"An error occurred during the signature verification. The repository is not "
-"updated and the previous index files will be used. GPG error: %s: %s"
+"updated and the previous index files will be used. OpenPGP signature "
+"verification failed: %s: %s"
msgstr ""
#. Invalid signature file, reject (LP: #346386) (Closes: #627642)
#: apt-pkg/acquire-item.cc
#, c-format
-msgid "GPG error: %s: %s"
+msgid "OpenPGP signature verification failed: %s: %s"
msgstr ""
#: apt-pkg/acquire-item.cc
@@ -1867,6 +1868,12 @@ msgid "Broken packages"
msgstr "Pecynnau wedi torri"
#: apt-private/private-install.cc
+#, fuzzy
+#| msgid "Write error"
+msgid "Writing error report"
+msgstr "Gwall ysgrifennu"
+
+#: apt-private/private-install.cc
msgid ""
"Unmerged usr is no longer supported, use usrmerge to convert to a merged-usr "
"system."
@@ -2104,6 +2111,10 @@ msgstr[0] "Caiff y pecynnau NEWYDD canlynol eu sefydlu:"
msgstr[1] "Caiff y pecynnau NEWYDD canlynol eu sefydlu:"
#: apt-private/private-install.cc
+msgid "Result calculated by the 3.0 solver."
+msgstr ""
+
+#: apt-private/private-install.cc
msgid "Suggested packages:"
msgstr "Pecynnau a awgrymmir:"
diff --git a/po/da.po b/po/da.po
index 49c142502..7cea9b0e2 100644
--- a/po/da.po
+++ b/po/da.po
@@ -16,7 +16,7 @@ msgid ""
msgstr ""
"Project-Id-Version: apt 1.4~rc2\n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2025-02-16 16:59+0000\n"
+"POT-Creation-Date: 2025-03-09 17:32+0000\n"
"PO-Revision-Date: 2017-03-02 23:51+0200\n"
"Last-Translator: Joe Hansen <joedalton2@yahoo.dk>\n"
"Language-Team: Danish <debian-l10n-danish@lists.debian.org>\n"
@@ -131,10 +131,14 @@ msgstr ""
"autentificering?)"
#: apt-pkg/acquire-item.cc
-#, c-format
+#, fuzzy, c-format
+#| msgid ""
+#| "An error occurred during the signature verification. The repository is "
+#| "not updated and the previous index files will be used. GPG error: %s: %s"
msgid ""
"An error occurred during the signature verification. The repository is not "
-"updated and the previous index files will be used. GPG error: %s: %s"
+"updated and the previous index files will be used. OpenPGP signature "
+"verification failed: %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"
@@ -142,8 +146,8 @@ msgstr ""
#. Invalid signature file, reject (LP: #346386) (Closes: #627642)
#: apt-pkg/acquire-item.cc
#, c-format
-msgid "GPG error: %s: %s"
-msgstr "GPG-fejl: %s: %s"
+msgid "OpenPGP signature verification failed: %s: %s"
+msgstr ""
#: apt-pkg/acquire-item.cc
#, fuzzy, c-format
@@ -1915,6 +1919,12 @@ msgid "Broken packages"
msgstr "Ødelagte pakker"
#: apt-private/private-install.cc
+#, fuzzy
+#| msgid "Write error"
+msgid "Writing error report"
+msgstr "Skrivefejl"
+
+#: apt-private/private-install.cc
msgid ""
"Unmerged usr is no longer supported, use usrmerge to convert to a merged-usr "
"system."
@@ -2164,6 +2174,10 @@ msgstr[1] ""
"Pakkerne %lu blev installeret automatisk, og behøves ikke længere.\n"
#: apt-private/private-install.cc
+msgid "Result calculated by the 3.0 solver."
+msgstr ""
+
+#: apt-private/private-install.cc
msgid "Suggested packages:"
msgstr "Foreslåede pakker:"
@@ -4027,6 +4041,10 @@ msgstr "Kunne ikke angive ændringstidspunkt"
msgid "Empty files can't be valid archives"
msgstr "Tomme filer kan ikke være gyldige arkiver"
+#, c-format
+#~ msgid "GPG error: %s: %s"
+#~ msgstr "GPG-fejl: %s: %s"
+
#~ msgid "Logging in"
#~ msgstr "Logget på"
diff --git a/po/de.po b/po/de.po
index 420565335..a71079c14 100644
--- a/po/de.po
+++ b/po/de.po
@@ -15,7 +15,7 @@ msgid ""
msgstr ""
"Project-Id-Version: apt 2.9.30\n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2025-02-16 16:59+0000\n"
+"POT-Creation-Date: 2025-03-09 17:32+0000\n"
"PO-Revision-Date: 2025-02-20 19:57+0100\n"
"Last-Translator: Helge Kreutzmann <debian@helgefjell.de>\n"
"Language-Team: German <debian-l10n-german@lists.debian.org>\n"
@@ -131,10 +131,14 @@ msgstr ""
"das Netzwerk eine Authentifizierung?)"
#: apt-pkg/acquire-item.cc
-#, c-format
+#, fuzzy, c-format
+#| msgid ""
+#| "An error occurred during the signature verification. The repository is "
+#| "not updated and the previous index files will be used. GPG error: %s: %s"
msgid ""
"An error occurred during the signature verification. The repository is not "
-"updated and the previous index files will be used. GPG error: %s: %s"
+"updated and the previous index files will be used. OpenPGP signature "
+"verification failed: %s: %s"
msgstr ""
"Während der Überprüfung der Signatur trat ein Fehler auf. Das Depot wurde "
"nicht aktualisiert und die vorherigen Indexdateien werden verwendet. GPG-"
@@ -143,8 +147,8 @@ msgstr ""
#. Invalid signature file, reject (LP: #346386) (Closes: #627642)
#: apt-pkg/acquire-item.cc
#, c-format
-msgid "GPG error: %s: %s"
-msgstr "GPG-Fehler: %s: %s"
+msgid "OpenPGP signature verification failed: %s: %s"
+msgstr ""
#: apt-pkg/acquire-item.cc
#, c-format
@@ -1982,6 +1986,12 @@ msgid "Broken packages"
msgstr "Beschädigte Pakete"
#: apt-private/private-install.cc
+#, fuzzy
+#| msgid "Write error"
+msgid "Writing error report"
+msgstr "Schreibfehler"
+
+#: apt-private/private-install.cc
msgid ""
"Unmerged usr is no longer supported, use usrmerge to convert to a merged-usr "
"system."
@@ -2241,6 +2251,10 @@ msgstr[1] ""
"%lu Pakete wurden automatisch installiert und werden nicht mehr benötigt.\n"
#: apt-private/private-install.cc
+msgid "Result calculated by the 3.0 solver."
+msgstr ""
+
+#: apt-private/private-install.cc
msgid "Suggested packages:"
msgstr "Vorgeschlagene Pakete:"
@@ -4144,6 +4158,10 @@ msgid "Empty files can't be valid archives"
msgstr "Leere Dateien können kein gültiges Archiv sein."
#, c-format
+#~ msgid "GPG error: %s: %s"
+#~ msgstr "GPG-Fehler: %s: %s"
+
+#, c-format
#~ msgid ""
#~ "The method '%s' is unsupported and disabled by default. Consider "
#~ "switching to http(s). Set Dir::Bin::Methods::%s to \"%s\" to enable it "
diff --git a/po/dz.po b/po/dz.po
index 51cc84450..48080a18c 100644
--- a/po/dz.po
+++ b/po/dz.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: apt 1.0.5\n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2025-02-16 16:59+0000\n"
+"POT-Creation-Date: 2025-03-09 17:32+0000\n"
"PO-Revision-Date: 2006-09-19 09:49+0530\n"
"Last-Translator: Kinley Tshering <gasepkuenden2k3@hotmail.com>\n"
"Language-Team: Dzongkha <pgeyleg@dit.gov.bt>\n"
@@ -121,13 +121,14 @@ msgstr ""
#, c-format
msgid ""
"An error occurred during the signature verification. The repository is not "
-"updated and the previous index files will be used. GPG error: %s: %s"
+"updated and the previous index files will be used. OpenPGP signature "
+"verification failed: %s: %s"
msgstr ""
#. Invalid signature file, reject (LP: #346386) (Closes: #627642)
#: apt-pkg/acquire-item.cc
#, c-format
-msgid "GPG error: %s: %s"
+msgid "OpenPGP signature verification failed: %s: %s"
msgstr ""
#: apt-pkg/acquire-item.cc
@@ -1839,6 +1840,12 @@ msgid "Broken packages"
msgstr "ཆད་པ་ཡོད་པའི་ཐུམ་སྒྲིལ་ཚུ།"
#: apt-private/private-install.cc
+#, fuzzy
+#| msgid "Write error"
+msgid "Writing error report"
+msgstr "འཛོལ་བ་འབྲི།"
+
+#: apt-private/private-install.cc
msgid ""
"Unmerged usr is no longer supported, use usrmerge to convert to a merged-usr "
"system."
@@ -2079,6 +2086,10 @@ msgstr[0] "འོག་གི་ཐུམ་སྒྲིས་གསརཔ་འ
msgstr[1] "འོག་གི་ཐུམ་སྒྲིས་གསརཔ་འདི་ཚུ་ཁཞི་བཙུགས་འབད་འོང་:"
#: apt-private/private-install.cc
+msgid "Result calculated by the 3.0 solver."
+msgstr ""
+
+#: apt-private/private-install.cc
msgid "Suggested packages:"
msgstr "བསམ་འཆར་བཀོད་ཡོད་པའི་ཐུམ་སྒྲིལ་ཚུ:"
diff --git a/po/el.po b/po/el.po
index 2a549e07b..1b6b104b4 100644
--- a/po/el.po
+++ b/po/el.po
@@ -22,7 +22,7 @@ msgid ""
msgstr ""
"Project-Id-Version: apt 1.0.5\n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2025-02-16 16:59+0000\n"
+"POT-Creation-Date: 2025-03-09 17:32+0000\n"
"PO-Revision-Date: 2020-12-30 12:20+0200\n"
"Last-Translator: Vangelis Skarmoutsos <skarmoutsosv@gmail.com>\n"
"Language-Team: Greek <debian-l10n-greek@lists.debian.org>\n"
@@ -133,13 +133,14 @@ msgstr ""
#, c-format
msgid ""
"An error occurred during the signature verification. The repository is not "
-"updated and the previous index files will be used. GPG error: %s: %s"
+"updated and the previous index files will be used. OpenPGP signature "
+"verification failed: %s: %s"
msgstr ""
#. Invalid signature file, reject (LP: #346386) (Closes: #627642)
#: apt-pkg/acquire-item.cc
#, c-format
-msgid "GPG error: %s: %s"
+msgid "OpenPGP signature verification failed: %s: %s"
msgstr ""
#: apt-pkg/acquire-item.cc
@@ -1861,6 +1862,12 @@ msgid "Broken packages"
msgstr "Χαλασμένα πακέτα"
#: apt-private/private-install.cc
+#, fuzzy
+#| msgid "Write error"
+msgid "Writing error report"
+msgstr "Σφάλμα εγγραφής"
+
+#: apt-private/private-install.cc
msgid ""
"Unmerged usr is no longer supported, use usrmerge to convert to a merged-usr "
"system."
@@ -2108,6 +2115,10 @@ msgstr[0] "%lu πακέτο εγκαταστάθηκε αυτόματα και
msgstr[1] "%lu πακέτα εγκαταστάθηκαν αυτόματα και δεν χρειάζονται πλέον.\n"
#: apt-private/private-install.cc
+msgid "Result calculated by the 3.0 solver."
+msgstr ""
+
+#: apt-private/private-install.cc
msgid "Suggested packages:"
msgstr "Προτεινόμενα πακέτα:"
diff --git a/po/es.po b/po/es.po
index c7546e8eb..09e93b51f 100644
--- a/po/es.po
+++ b/po/es.po
@@ -37,7 +37,7 @@ msgid ""
msgstr ""
"Project-Id-Version: apt 0.8.10\n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2025-02-16 16:59+0000\n"
+"POT-Creation-Date: 2025-03-09 17:32+0000\n"
"PO-Revision-Date: 2016-01-26 01:51+0100\n"
"Last-Translator: Manuel \"Venturi\" Porras Peralta "
"<venturi@openmailbox.org>\n"
@@ -183,10 +183,14 @@ msgstr ""
"autenticación?)"
#: apt-pkg/acquire-item.cc
-#, c-format
+#, fuzzy, c-format
+#| msgid ""
+#| "An error occurred during the signature verification. The repository is "
+#| "not updated and the previous index files will be used. GPG error: %s: %s"
msgid ""
"An error occurred during the signature verification. The repository is not "
-"updated and the previous index files will be used. GPG error: %s: %s"
+"updated and the previous index files will be used. OpenPGP signature "
+"verification failed: %s: %s"
msgstr ""
"Se produjo un error durante la verificación de las firmas. El repositorio no "
"está actualizado y se utilizarán los ficheros de índice antiguos. Error de "
@@ -195,8 +199,8 @@ msgstr ""
#. Invalid signature file, reject (LP: #346386) (Closes: #627642)
#: apt-pkg/acquire-item.cc
#, c-format
-msgid "GPG error: %s: %s"
-msgstr "Error de GPG: %s: %s"
+msgid "OpenPGP signature verification failed: %s: %s"
+msgstr ""
#: apt-pkg/acquire-item.cc
#, fuzzy, c-format
@@ -2021,6 +2025,12 @@ msgid "Broken packages"
msgstr "Paquetes rotos"
#: apt-private/private-install.cc
+#, fuzzy
+#| msgid "Write error"
+msgid "Writing error report"
+msgstr "Error de escritura"
+
+#: apt-private/private-install.cc
msgid ""
"Unmerged usr is no longer supported, use usrmerge to convert to a merged-usr "
"system."
@@ -2277,6 +2287,10 @@ msgstr[1] ""
"Se instalaron %lu paquetes de forma automática y ya no son necesarios.\n"
#: apt-private/private-install.cc
+msgid "Result calculated by the 3.0 solver."
+msgstr ""
+
+#: apt-private/private-install.cc
msgid "Suggested packages:"
msgstr "Paquetes sugeridos:"
@@ -4150,6 +4164,10 @@ msgstr "Fallo al establecer el tiempo de modificación"
msgid "Empty files can't be valid archives"
msgstr "Los ficheros vacíos no pueden ser archivos válidos"
+#, c-format
+#~ msgid "GPG error: %s: %s"
+#~ msgstr "Error de GPG: %s: %s"
+
#~ msgid "Logging in"
#~ msgstr "Ingresando"
diff --git a/po/eu.po b/po/eu.po
index eeb83e42b..11bbeb0c4 100644
--- a/po/eu.po
+++ b/po/eu.po
@@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: apt 1.0.5\n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2025-02-16 16:59+0000\n"
+"POT-Creation-Date: 2025-03-09 17:32+0000\n"
"PO-Revision-Date: 2009-05-17 00:41+0200\n"
"Last-Translator: Piarres Beobide <pi@beobide.net>\n"
"Language-Team: Euskara <debian-l10n-basque@lists.debian.org>\n"
@@ -120,13 +120,14 @@ msgstr ""
#, c-format
msgid ""
"An error occurred during the signature verification. The repository is not "
-"updated and the previous index files will be used. GPG error: %s: %s"
+"updated and the previous index files will be used. OpenPGP signature "
+"verification failed: %s: %s"
msgstr ""
#. Invalid signature file, reject (LP: #346386) (Closes: #627642)
#: apt-pkg/acquire-item.cc
#, c-format
-msgid "GPG error: %s: %s"
+msgid "OpenPGP signature verification failed: %s: %s"
msgstr ""
#: apt-pkg/acquire-item.cc
@@ -1837,6 +1838,12 @@ msgid "Broken packages"
msgstr "Hautsitako paketeak"
#: apt-private/private-install.cc
+#, fuzzy
+#| msgid "Write error"
+msgid "Writing error report"
+msgstr "Idazketa errorea"
+
+#: apt-private/private-install.cc
msgid ""
"Unmerged usr is no longer supported, use usrmerge to convert to a merged-usr "
"system."
@@ -2083,6 +2090,10 @@ msgstr[1] ""
"behar."
#: apt-private/private-install.cc
+msgid "Result calculated by the 3.0 solver."
+msgstr ""
+
+#: apt-private/private-install.cc
msgid "Suggested packages:"
msgstr "Iradokitako paketeak:"
diff --git a/po/fi.po b/po/fi.po
index d97a02c0a..58d0e40e4 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -13,7 +13,7 @@ msgid ""
msgstr ""
"Project-Id-Version: apt 0.5.26\n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2025-02-16 16:59+0000\n"
+"POT-Creation-Date: 2025-03-09 17:32+0000\n"
"PO-Revision-Date: 2008-12-11 14:52+0200\n"
"Last-Translator: Tapio Lehtonen <tale@debian.org>\n"
"Language-Team: Finnish <debian-l10n-finnish@lists.debian.org>\n"
@@ -121,13 +121,14 @@ msgstr ""
#, c-format
msgid ""
"An error occurred during the signature verification. The repository is not "
-"updated and the previous index files will be used. GPG error: %s: %s"
+"updated and the previous index files will be used. OpenPGP signature "
+"verification failed: %s: %s"
msgstr ""
#. Invalid signature file, reject (LP: #346386) (Closes: #627642)
#: apt-pkg/acquire-item.cc
#, c-format
-msgid "GPG error: %s: %s"
+msgid "OpenPGP signature verification failed: %s: %s"
msgstr ""
#: apt-pkg/acquire-item.cc
@@ -1832,6 +1833,12 @@ msgid "Broken packages"
msgstr "Rikkinäiset paketit"
#: apt-private/private-install.cc
+#, fuzzy
+#| msgid "Write error"
+msgid "Writing error report"
+msgstr "Virhe kirjoitettaessa"
+
+#: apt-private/private-install.cc
msgid ""
"Unmerged usr is no longer supported, use usrmerge to convert to a merged-usr "
"system."
@@ -2079,6 +2086,10 @@ msgstr[1] ""
"vaadittuja:"
#: apt-private/private-install.cc
+msgid "Result calculated by the 3.0 solver."
+msgstr ""
+
+#: apt-private/private-install.cc
msgid "Suggested packages:"
msgstr "Ehdotetut paketit:"
diff --git a/po/fr.po b/po/fr.po
index 996d756bb..54f7a0836 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -13,7 +13,7 @@ msgid ""
msgstr ""
"Project-Id-Version: apt 1.0.5\n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2025-02-16 16:59+0000\n"
+"POT-Creation-Date: 2025-03-09 17:32+0000\n"
"PO-Revision-Date: 2019-01-21 09:19+0100\n"
"Last-Translator: Julien Patriarca <leatherface@debian.org>\n"
"Language-Team: French <debian-l10n-french@lists.debian.org>\n"
@@ -130,10 +130,14 @@ msgstr ""
"Peut-être le réseau nécessite-t-il une authentification."
#: apt-pkg/acquire-item.cc
-#, c-format
+#, fuzzy, c-format
+#| msgid ""
+#| "An error occurred during the signature verification. The repository is "
+#| "not updated and the previous index files will be used. GPG error: %s: %s"
msgid ""
"An error occurred during the signature verification. The repository is not "
-"updated and the previous index files will be used. GPG error: %s: %s"
+"updated and the previous index files will be used. OpenPGP signature "
+"verification failed: %s: %s"
msgstr ""
"Une erreur s'est produite lors du contrôle de la signature. Le dépôt n'est "
"pas mis à jour et les fichiers d'index précédents seront utilisés. Erreur de "
@@ -142,8 +146,8 @@ msgstr ""
#. Invalid signature file, reject (LP: #346386) (Closes: #627642)
#: apt-pkg/acquire-item.cc
#, c-format
-msgid "GPG error: %s: %s"
-msgstr "Erreur de GPG : %s : %s"
+msgid "OpenPGP signature verification failed: %s: %s"
+msgstr ""
#: apt-pkg/acquire-item.cc
#, c-format
@@ -1990,6 +1994,12 @@ msgid "Broken packages"
msgstr "Paquets défectueux"
#: apt-private/private-install.cc
+#, fuzzy
+#| msgid "Write error"
+msgid "Writing error report"
+msgstr "Erreur d'écriture"
+
+#: apt-private/private-install.cc
msgid ""
"Unmerged usr is no longer supported, use usrmerge to convert to a merged-usr "
"system."
@@ -2251,6 +2261,10 @@ msgstr[1] ""
"%lu paquets ont été installés automatiquement et ne sont plus nécessaires.\n"
#: apt-private/private-install.cc
+msgid "Result calculated by the 3.0 solver."
+msgstr ""
+
+#: apt-private/private-install.cc
msgid "Suggested packages:"
msgstr "Paquets suggérés :"
@@ -4170,6 +4184,10 @@ msgstr "Impossible de modifier l'heure "
msgid "Empty files can't be valid archives"
msgstr "Les fichiers vides ne peuvent être des archives valables"
+#, c-format
+#~ msgid "GPG error: %s: %s"
+#~ msgstr "Erreur de GPG : %s : %s"
+
#~ msgid "Logging in"
#~ msgstr "Connexion en cours"
diff --git a/po/gl.po b/po/gl.po
index 36e864c4b..cced2f9e7 100644
--- a/po/gl.po
+++ b/po/gl.po
@@ -15,7 +15,7 @@ msgid ""
msgstr ""
"Project-Id-Version: apt 1.0.5\n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2025-02-16 16:59+0000\n"
+"POT-Creation-Date: 2025-03-09 17:32+0000\n"
"PO-Revision-Date: 2011-05-12 15:28+0100\n"
"Last-Translator: Miguel Anxo Bouzada <mbouzada@gmail.com>\n"
"Language-Team: galician <proxecto@trasno.net>\n"
@@ -125,7 +125,8 @@ msgstr ""
#, fuzzy, c-format
msgid ""
"An error occurred during the signature verification. The repository is not "
-"updated and the previous index files will be used. GPG error: %s: %s"
+"updated and the previous index files will be used. OpenPGP signature "
+"verification failed: %s: %s"
msgstr ""
"Produciuse un erro durante a verificación da sinatura. O repositorio non foi "
"actualizado, empregaranse os ficheiros de índice anteriores. Erro de GPG: "
@@ -134,8 +135,8 @@ msgstr ""
#. Invalid signature file, reject (LP: #346386) (Closes: #627642)
#: apt-pkg/acquire-item.cc
#, c-format
-msgid "GPG error: %s: %s"
-msgstr "Produciuse un erro de GPG: %s %s"
+msgid "OpenPGP signature verification failed: %s: %s"
+msgstr ""
#: apt-pkg/acquire-item.cc
#, c-format
@@ -1897,6 +1898,12 @@ msgid "Broken packages"
msgstr "Paquetes estragados"
#: apt-private/private-install.cc
+#, fuzzy
+#| msgid "Write error"
+msgid "Writing error report"
+msgstr "Produciuse un erro de escritura"
+
+#: apt-private/private-install.cc
msgid ""
"Unmerged usr is no longer supported, use usrmerge to convert to a merged-usr "
"system."
@@ -2148,6 +2155,10 @@ msgstr[1] ""
"%lu paquetes foron instalados automaticamente e xa non son necesarios.\n"
#: apt-private/private-install.cc
+msgid "Result calculated by the 3.0 solver."
+msgstr ""
+
+#: apt-private/private-install.cc
msgid "Suggested packages:"
msgstr "Paquetes suxeridos:"
@@ -3974,6 +3985,10 @@ msgstr "Non foi posíbel estabelecer a hora de modificación"
msgid "Empty files can't be valid archives"
msgstr "Os ficheiros baleiros non poden ser arquivadores válidos"
+#, c-format
+#~ msgid "GPG error: %s: %s"
+#~ msgstr "Produciuse un erro de GPG: %s %s"
+
#~ msgid "Logging in"
#~ msgstr "Identificándose"
diff --git a/po/hu.po b/po/hu.po
index d27682a3d..1dde90cf8 100644
--- a/po/hu.po
+++ b/po/hu.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: apt 1.0.5\n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2025-02-16 16:59+0000\n"
+"POT-Creation-Date: 2025-03-09 17:32+0000\n"
"PO-Revision-Date: 2016-04-10 19:46+0200\n"
"Last-Translator: Gabor Kelemen <kelemeng@ubuntu.com>\n"
"Language-Team: Hungarian <gnome-hu-list@gnome.org>\n"
@@ -128,10 +128,14 @@ msgstr ""
"hitelesítést?)"
#: apt-pkg/acquire-item.cc
-#, c-format
+#, fuzzy, c-format
+#| msgid ""
+#| "An error occurred during the signature verification. The repository is "
+#| "not updated and the previous index files will be used. GPG error: %s: %s"
msgid ""
"An error occurred during the signature verification. The repository is not "
-"updated and the previous index files will be used. GPG error: %s: %s"
+"updated and the previous index files will be used. OpenPGP signature "
+"verification failed: %s: %s"
msgstr ""
"Hiba történt az aláírás ellenőrzése közben. A tároló nem frissült, és az "
"előző indexfájl lesz használva. GPG hiba: %s: %s"
@@ -139,8 +143,8 @@ msgstr ""
#. Invalid signature file, reject (LP: #346386) (Closes: #627642)
#: apt-pkg/acquire-item.cc
#, c-format
-msgid "GPG error: %s: %s"
-msgstr "GPG hiba: %s: %s"
+msgid "OpenPGP signature verification failed: %s: %s"
+msgstr ""
#: apt-pkg/acquire-item.cc
#, fuzzy, c-format
@@ -1943,6 +1947,12 @@ msgid "Broken packages"
msgstr "Törött csomagok"
#: apt-private/private-install.cc
+#, fuzzy
+#| msgid "Write error"
+msgid "Writing error report"
+msgstr "Írási hiba"
+
+#: apt-private/private-install.cc
msgid ""
"Unmerged usr is no longer supported, use usrmerge to convert to a merged-usr "
"system."
@@ -2192,6 +2202,10 @@ msgstr[1] ""
"%lu csomag automatikusan lett telepítve, és már nincs rájuk szükség.\n"
#: apt-private/private-install.cc
+msgid "Result calculated by the 3.0 solver."
+msgstr ""
+
+#: apt-private/private-install.cc
msgid "Suggested packages:"
msgstr "Javasolt csomagok:"
@@ -4047,6 +4061,10 @@ msgstr "A módosítási idő beállítása sikertelen"
msgid "Empty files can't be valid archives"
msgstr "Az üres fájlok biztosan nem érvényes csomagok"
+#, c-format
+#~ msgid "GPG error: %s: %s"
+#~ msgstr "GPG hiba: %s: %s"
+
#~ msgid "Logging in"
#~ msgstr "Bejelentkezés"
diff --git a/po/it.po b/po/it.po
index 2a2d7c553..30f839df9 100644
--- a/po/it.po
+++ b/po/it.po
@@ -13,7 +13,7 @@ msgid ""
msgstr ""
"Project-Id-Version: apt\n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2025-02-16 16:59+0000\n"
+"POT-Creation-Date: 2025-03-09 17:32+0000\n"
"PO-Revision-Date: 2024-09-06 10:21+0100\n"
"Last-Translator: Luca Vercelli <luca.vercelli.to@gmail.com>\n"
"Language-Team: Italian <debian-l10n-italian@lists.debian.org>\n"
@@ -130,10 +130,14 @@ msgstr ""
"richiede autenticazione?)"
#: apt-pkg/acquire-item.cc
-#, c-format
+#, fuzzy, c-format
+#| msgid ""
+#| "An error occurred during the signature verification. The repository is "
+#| "not updated and the previous index files will be used. GPG error: %s: %s"
msgid ""
"An error occurred during the signature verification. The repository is not "
-"updated and the previous index files will be used. GPG error: %s: %s"
+"updated and the previous index files will be used. OpenPGP signature "
+"verification failed: %s: %s"
msgstr ""
"Si è verificato un errore nel verificare la firma. Il repository non è "
"aggiornato e verranno usati i file indice precedenti. Errore GPG: %s: %s"
@@ -141,8 +145,8 @@ msgstr ""
#. Invalid signature file, reject (LP: #346386) (Closes: #627642)
#: apt-pkg/acquire-item.cc
#, c-format
-msgid "GPG error: %s: %s"
-msgstr "Errore GPG: %s: %s"
+msgid "OpenPGP signature verification failed: %s: %s"
+msgstr ""
#: apt-pkg/acquire-item.cc
#, c-format
@@ -1968,6 +1972,12 @@ msgid "Broken packages"
msgstr "Pacchetti danneggiati"
#: apt-private/private-install.cc
+#, fuzzy
+#| msgid "Write error"
+msgid "Writing error report"
+msgstr "Errore di scrittura"
+
+#: apt-private/private-install.cc
msgid ""
"Unmerged usr is no longer supported, use usrmerge to convert to a merged-usr "
"system."
@@ -2230,6 +2240,10 @@ msgstr[1] ""
"richiesti.\n"
#: apt-private/private-install.cc
+msgid "Result calculated by the 3.0 solver."
+msgstr ""
+
+#: apt-private/private-install.cc
msgid "Suggested packages:"
msgstr "Pacchetti suggeriti:"
@@ -4103,6 +4117,10 @@ msgstr "Impostazione della data di modifica non riuscita"
msgid "Empty files can't be valid archives"
msgstr "File vuoti non possono essere archivi validi"
+#, c-format
+#~ msgid "GPG error: %s: %s"
+#~ msgstr "Errore GPG: %s: %s"
+
#, fuzzy, c-format
#~| msgid ""
#~| "Key is stored in legacy trusted.gpg keyring (%s), see the DEPRECATION "
diff --git a/po/ja.po b/po/ja.po
index 7ad200078..f734a4ee9 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -14,7 +14,7 @@ msgid ""
msgstr ""
"Project-Id-Version: apt 2.5\n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2025-02-16 16:59+0000\n"
+"POT-Creation-Date: 2025-03-09 17:32+0000\n"
"PO-Revision-Date: 2022-08-14 14:30+0900\n"
"Last-Translator: Hideki Yamane <henrich@debian.org>\n"
"Language-Team: Japanese <debian-japanese@lists.debian.org>\n"
@@ -128,10 +128,14 @@ msgstr ""
"が必要?)"
#: apt-pkg/acquire-item.cc
-#, c-format
+#, fuzzy, c-format
+#| msgid ""
+#| "An error occurred during the signature verification. The repository is "
+#| "not updated and the previous index files will be used. GPG error: %s: %s"
msgid ""
"An error occurred during the signature verification. The repository is not "
-"updated and the previous index files will be used. GPG error: %s: %s"
+"updated and the previous index files will be used. OpenPGP signature "
+"verification failed: %s: %s"
msgstr ""
"署名照合中にエラーが発生しました。リポジトリは更新されず、過去のインデックス"
"ファイルが使われます。GPG エラー: %s: %s"
@@ -139,8 +143,8 @@ msgstr ""
#. Invalid signature file, reject (LP: #346386) (Closes: #627642)
#: apt-pkg/acquire-item.cc
#, c-format
-msgid "GPG error: %s: %s"
-msgstr "GPG エラー: %s: %s"
+msgid "OpenPGP signature verification failed: %s: %s"
+msgstr ""
#: apt-pkg/acquire-item.cc
#, fuzzy, c-format
@@ -1939,6 +1943,12 @@ msgid "Broken packages"
msgstr "壊れたパッケージ"
#: apt-private/private-install.cc
+#, fuzzy
+#| msgid "Write error"
+msgid "Writing error report"
+msgstr "書き込みエラー"
+
+#: apt-private/private-install.cc
msgid ""
"Unmerged usr is no longer supported, use usrmerge to convert to a merged-usr "
"system."
@@ -2183,6 +2193,10 @@ msgstr[0] ""
"ん:\n"
#: apt-private/private-install.cc
+msgid "Result calculated by the 3.0 solver."
+msgstr ""
+
+#: apt-private/private-install.cc
msgid "Suggested packages:"
msgstr "提案パッケージ:"
@@ -4034,6 +4048,10 @@ msgstr "変更時刻の設定に失敗しました"
msgid "Empty files can't be valid archives"
msgstr "空のファイルは有効なアーカイブと認められません"
+#, c-format
+#~ msgid "GPG error: %s: %s"
+#~ msgstr "GPG エラー: %s: %s"
+
#~ msgid "Logging in"
#~ msgstr "ログインしています"
diff --git a/po/km.po b/po/km.po
index 45a93e342..be415e450 100644
--- a/po/km.po
+++ b/po/km.po
@@ -14,7 +14,7 @@ msgid ""
msgstr ""
"Project-Id-Version: apt 1.0.5\n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2025-02-16 16:59+0000\n"
+"POT-Creation-Date: 2025-03-09 17:32+0000\n"
"PO-Revision-Date: 2006-10-10 09:48+0700\n"
"Last-Translator: Khoem Sokhem <khoemsokhem@khmeros.info>\n"
"Language-Team: Khmer <support@khmeros.info>\n"
@@ -124,13 +124,14 @@ msgstr ""
#, c-format
msgid ""
"An error occurred during the signature verification. The repository is not "
-"updated and the previous index files will be used. GPG error: %s: %s"
+"updated and the previous index files will be used. OpenPGP signature "
+"verification failed: %s: %s"
msgstr ""
#. Invalid signature file, reject (LP: #346386) (Closes: #627642)
#: apt-pkg/acquire-item.cc
#, c-format
-msgid "GPG error: %s: %s"
+msgid "OpenPGP signature verification failed: %s: %s"
msgstr ""
#: apt-pkg/acquire-item.cc
@@ -1834,6 +1835,12 @@ msgid "Broken packages"
msgstr "កញ្ចប់​ដែល​បាន​ខូច​"
#: apt-private/private-install.cc
+#, fuzzy
+#| msgid "Write error"
+msgid "Writing error report"
+msgstr "ការសរសេរ​មានកំហុស"
+
+#: apt-private/private-install.cc
msgid ""
"Unmerged usr is no longer supported, use usrmerge to convert to a merged-usr "
"system."
@@ -2070,6 +2077,10 @@ msgstr[0] "កញ្ចប់​ថ្មី​ខាងក្រោម​នឹ
msgstr[1] "កញ្ចប់​ថ្មី​ខាងក្រោម​នឹង​ត្រូវ​បាន​ដំឡើង​ ៖"
#: apt-private/private-install.cc
+msgid "Result calculated by the 3.0 solver."
+msgstr ""
+
+#: apt-private/private-install.cc
msgid "Suggested packages:"
msgstr "កញ្ចប់​ដែល​បាន​ផ្ដល់​យោបល់ ៖"
diff --git a/po/ko.po b/po/ko.po
index 6b969d6f0..c33ed1287 100644
--- a/po/ko.po
+++ b/po/ko.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: apt 1.0.5\n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2025-02-16 16:59+0000\n"
+"POT-Creation-Date: 2025-03-09 17:32+0000\n"
"PO-Revision-Date: 2010-08-30 02:31+0900\n"
"Last-Translator: Changwoo Ryu <cwryu@debian.org>\n"
"Language-Team: Korean <debian-l10n-korean@lists.debian.org>\n"
@@ -116,7 +116,8 @@ msgstr ""
#, fuzzy, c-format
msgid ""
"An error occurred during the signature verification. The repository is not "
-"updated and the previous index files will be used. GPG error: %s: %s"
+"updated and the previous index files will be used. OpenPGP signature "
+"verification failed: %s: %s"
msgstr ""
"디지털 서명 확인에 오류가 발생했습니다. 저장고를 업데이트하지 않고\n"
"예전의 인덱스 파일을 사용합니다. GPG 오류: %s: %s\n"
@@ -124,8 +125,8 @@ msgstr ""
#. Invalid signature file, reject (LP: #346386) (Closes: #627642)
#: apt-pkg/acquire-item.cc
#, c-format
-msgid "GPG error: %s: %s"
-msgstr "GPG 오류: %s: %s"
+msgid "OpenPGP signature verification failed: %s: %s"
+msgstr ""
#: apt-pkg/acquire-item.cc
#, c-format
@@ -1849,6 +1850,12 @@ msgid "Broken packages"
msgstr "망가진 패키지"
#: apt-private/private-install.cc
+#, fuzzy
+#| msgid "Write error"
+msgid "Writing error report"
+msgstr "쓰기 오류"
+
+#: apt-private/private-install.cc
msgid ""
"Unmerged usr is no longer supported, use usrmerge to convert to a merged-usr "
"system."
@@ -2086,6 +2093,10 @@ msgid_plural ""
msgstr[0] "패키지 %lu개가 자동으로 설치되었지만 더 이상 필요하지 않습니다.\n"
#: apt-private/private-install.cc
+msgid "Result calculated by the 3.0 solver."
+msgstr ""
+
+#: apt-private/private-install.cc
msgid "Suggested packages:"
msgstr "제안하는 패키지:"
@@ -3892,6 +3903,10 @@ msgstr "파일 변경 시각을 설정하는데 실패했습니다"
msgid "Empty files can't be valid archives"
msgstr ""
+#, c-format
+#~ msgid "GPG error: %s: %s"
+#~ msgstr "GPG 오류: %s: %s"
+
#~ msgid "Logging in"
#~ msgstr "로그인하는 중입니다"
diff --git a/po/ku.po b/po/ku.po
index 651b568dd..1a5f04658 100644
--- a/po/ku.po
+++ b/po/ku.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: apt 1.0.5\n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2025-02-16 16:59+0000\n"
+"POT-Creation-Date: 2025-03-09 17:32+0000\n"
"PO-Revision-Date: 2008-05-08 12:48+0200\n"
"Last-Translator: Erdal Ronahi <erdal.ronahi@gmail.com>\n"
"Language-Team: ku <ubuntu-l10n-kur@lists.ubuntu.com>\n"
@@ -117,13 +117,14 @@ msgstr ""
#, c-format
msgid ""
"An error occurred during the signature verification. The repository is not "
-"updated and the previous index files will be used. GPG error: %s: %s"
+"updated and the previous index files will be used. OpenPGP signature "
+"verification failed: %s: %s"
msgstr ""
#. Invalid signature file, reject (LP: #346386) (Closes: #627642)
#: apt-pkg/acquire-item.cc
#, c-format
-msgid "GPG error: %s: %s"
+msgid "OpenPGP signature verification failed: %s: %s"
msgstr ""
#: apt-pkg/acquire-item.cc
@@ -1796,6 +1797,12 @@ msgid "Broken packages"
msgstr "Paketên şikestî"
#: apt-private/private-install.cc
+#, fuzzy
+#| msgid "Write error"
+msgid "Writing error report"
+msgstr "Çewtiya nivîsînê"
+
+#: apt-private/private-install.cc
msgid ""
"Unmerged usr is no longer supported, use usrmerge to convert to a merged-usr "
"system."
@@ -2025,6 +2032,10 @@ msgstr[0] "Ev pakêtên NÛ dê werine sazkirin:"
msgstr[1] "Ev pakêtên NÛ dê werine sazkirin:"
#: apt-private/private-install.cc
+msgid "Result calculated by the 3.0 solver."
+msgstr ""
+
+#: apt-private/private-install.cc
msgid "Suggested packages:"
msgstr "Paketên tên pêşniyaz kirin:"
diff --git a/po/lt.po b/po/lt.po
index 54f5e384f..f8e5cb0a8 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: apt 1.0.5\n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2025-02-16 16:59+0000\n"
+"POT-Creation-Date: 2025-03-09 17:32+0000\n"
"PO-Revision-Date: 2008-08-02 01:47-0400\n"
"Last-Translator: Gintautas Miliauskas <gintas@akl.lt>\n"
"Language-Team: Lithuanian <komp_lt@konferencijos.lt>\n"
@@ -121,14 +121,15 @@ msgstr ""
#, c-format
msgid ""
"An error occurred during the signature verification. The repository is not "
-"updated and the previous index files will be used. GPG error: %s: %s"
+"updated and the previous index files will be used. OpenPGP signature "
+"verification failed: %s: %s"
msgstr ""
#. Invalid signature file, reject (LP: #346386) (Closes: #627642)
#: apt-pkg/acquire-item.cc
#, c-format
-msgid "GPG error: %s: %s"
-msgstr "GPG klaida: %s: %s"
+msgid "OpenPGP signature verification failed: %s: %s"
+msgstr ""
#: apt-pkg/acquire-item.cc
#, c-format
@@ -1822,6 +1823,12 @@ msgid "Broken packages"
msgstr "Sugadinti paketai"
#: apt-private/private-install.cc
+#, fuzzy
+#| msgid "Write error"
+msgid "Writing error report"
+msgstr "Rašymo klaida"
+
+#: apt-private/private-install.cc
msgid ""
"Unmerged usr is no longer supported, use usrmerge to convert to a merged-usr "
"system."
@@ -2055,6 +2062,10 @@ msgstr[0] "Šie paketai buvo automatiškai įdiegti ir daugiau nebėra reikaling
msgstr[1] "Šie paketai buvo automatiškai įdiegti ir daugiau nebėra reikalingi:"
#: apt-private/private-install.cc
+msgid "Result calculated by the 3.0 solver."
+msgstr ""
+
+#: apt-private/private-install.cc
msgid "Suggested packages:"
msgstr "Siūlomi paketai:"
@@ -3855,6 +3866,10 @@ msgstr ""
msgid "Empty files can't be valid archives"
msgstr ""
+#, c-format
+#~ msgid "GPG error: %s: %s"
+#~ msgstr "GPG klaida: %s: %s"
+
#~ msgid "Logging in"
#~ msgstr "Jungiamasi"
diff --git a/po/mr.po b/po/mr.po
index 5be31265b..4f06f33de 100644
--- a/po/mr.po
+++ b/po/mr.po
@@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: apt 1.0.5\n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2025-02-16 16:59+0000\n"
+"POT-Creation-Date: 2025-03-09 17:32+0000\n"
"PO-Revision-Date: 2008-11-20 23:27+0530\n"
"Last-Translator: Sampada <sampadanakhare@gmail.com>\n"
"Language-Team: Marathi, janabhaaratii, C-DAC, Mumbai, India "
@@ -120,13 +120,14 @@ msgstr ""
#, c-format
msgid ""
"An error occurred during the signature verification. The repository is not "
-"updated and the previous index files will be used. GPG error: %s: %s"
+"updated and the previous index files will be used. OpenPGP signature "
+"verification failed: %s: %s"
msgstr ""
#. Invalid signature file, reject (LP: #346386) (Closes: #627642)
#: apt-pkg/acquire-item.cc
#, c-format
-msgid "GPG error: %s: %s"
+msgid "OpenPGP signature verification failed: %s: %s"
msgstr ""
#: apt-pkg/acquire-item.cc
@@ -1835,6 +1836,12 @@ msgid "Broken packages"
msgstr "तुटलेली पॅकेजेस"
#: apt-private/private-install.cc
+#, fuzzy
+#| msgid "Write error"
+msgid "Writing error report"
+msgstr "लिहिण्यात त्रुटी"
+
+#: apt-private/private-install.cc
msgid ""
"Unmerged usr is no longer supported, use usrmerge to convert to a merged-usr "
"system."
@@ -2073,6 +2080,10 @@ msgstr[0] "खालील नवीन पॅकेजेस स्वयंच
msgstr[1] "खालील नवीन पॅकेजेस स्वयंचलितपणे संस्थापित झाली होती व आता आवश्यक नाहीत:"
#: apt-private/private-install.cc
+msgid "Result calculated by the 3.0 solver."
+msgstr ""
+
+#: apt-private/private-install.cc
msgid "Suggested packages:"
msgstr "सुचवलेली पॅकेजेस:"
diff --git a/po/nb.po b/po/nb.po
index 074f2f5eb..1dfe7de8a 100644
--- a/po/nb.po
+++ b/po/nb.po
@@ -17,7 +17,7 @@ msgid ""
msgstr ""
"Project-Id-Version: apt 1.0.5\n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2025-02-16 16:59+0000\n"
+"POT-Creation-Date: 2025-03-09 17:32+0000\n"
"PO-Revision-Date: 2018-10-30 20:53+0100\n"
"Last-Translator: Petter Reinholdtsen <pere@hungry.com>\n"
"Language-Team: Norwegian Bokmål <i18n-no@lister.ping.uio.no>\n"
@@ -132,7 +132,8 @@ msgstr ""
#, fuzzy, c-format
msgid ""
"An error occurred during the signature verification. The repository is not "
-"updated and the previous index files will be used. GPG error: %s: %s"
+"updated and the previous index files will be used. OpenPGP signature "
+"verification failed: %s: %s"
msgstr ""
"En feil oppstod under signaturverifisering. Depotet er ikke oppdatert og den "
"forrige indeksfilen vil bli brukt. GPG-feil: %s: %s\n"
@@ -140,8 +141,8 @@ msgstr ""
#. Invalid signature file, reject (LP: #346386) (Closes: #627642)
#: apt-pkg/acquire-item.cc
#, c-format
-msgid "GPG error: %s: %s"
-msgstr "GPG-feil: %s: %s"
+msgid "OpenPGP signature verification failed: %s: %s"
+msgstr ""
#: apt-pkg/acquire-item.cc
#, c-format
@@ -1884,6 +1885,12 @@ msgid "Broken packages"
msgstr "Ødelagte pakker"
#: apt-private/private-install.cc
+#, fuzzy
+#| msgid "Write error"
+msgid "Writing error report"
+msgstr "Skrivefeil"
+
+#: apt-private/private-install.cc
msgid ""
"Unmerged usr is no longer supported, use usrmerge to convert to a merged-usr "
"system."
@@ -2132,6 +2139,10 @@ msgstr[0] "%lu pakke ble automatisk installert og er ikke lenger påkrevet.\n"
msgstr[1] "%lu pakker ble automatisk installert og er ikke lenger påkrevet.\n"
#: apt-private/private-install.cc
+msgid "Result calculated by the 3.0 solver."
+msgstr ""
+
+#: apt-private/private-install.cc
msgid "Suggested packages:"
msgstr "Foreslåtte pakker:"
@@ -3972,6 +3983,10 @@ msgstr "Klarte ikke å sette endringstidspunkt"
msgid "Empty files can't be valid archives"
msgstr "Tomme filer kan ikke være gyldige arkiver"
+#, c-format
+#~ msgid "GPG error: %s: %s"
+#~ msgstr "GPG-feil: %s: %s"
+
#~ msgid "Logging in"
#~ msgstr "Logger inn"
diff --git a/po/ne.po b/po/ne.po
index 8e8ca1875..de15006b8 100644
--- a/po/ne.po
+++ b/po/ne.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: apt 1.0.5\n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2025-02-16 16:59+0000\n"
+"POT-Creation-Date: 2025-03-09 17:32+0000\n"
"PO-Revision-Date: 2006-06-12 14:35+0545\n"
"Last-Translator: Shiva Pokharel <pokharelshiva@hotmail.com>\n"
"Language-Team: Nepali <info@mpp.org.np>\n"
@@ -119,13 +119,14 @@ msgstr ""
#, c-format
msgid ""
"An error occurred during the signature verification. The repository is not "
-"updated and the previous index files will be used. GPG error: %s: %s"
+"updated and the previous index files will be used. OpenPGP signature "
+"verification failed: %s: %s"
msgstr ""
#. Invalid signature file, reject (LP: #346386) (Closes: #627642)
#: apt-pkg/acquire-item.cc
#, c-format
-msgid "GPG error: %s: %s"
+msgid "OpenPGP signature verification failed: %s: %s"
msgstr ""
#: apt-pkg/acquire-item.cc
@@ -1831,6 +1832,12 @@ msgid "Broken packages"
msgstr "भाँचिएका प्याकेजहरू"
#: apt-private/private-install.cc
+#, fuzzy
+#| msgid "Write error"
+msgid "Writing error report"
+msgstr "त्रुटि लेख्नुहोस्"
+
+#: apt-private/private-install.cc
msgid ""
"Unmerged usr is no longer supported, use usrmerge to convert to a merged-usr "
"system."
@@ -2067,6 +2074,10 @@ msgstr[0] "निम्न नयाँ प्याकेजहरू स्थ
msgstr[1] "निम्न नयाँ प्याकेजहरू स्थापना हुनेछन्:"
#: apt-private/private-install.cc
+msgid "Result calculated by the 3.0 solver."
+msgstr ""
+
+#: apt-private/private-install.cc
msgid "Suggested packages:"
msgstr "सुझाव दिएका प्याकेजहरू:"
diff --git a/po/nl.po b/po/nl.po
index ae52ad502..49d69a3bf 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -15,7 +15,7 @@ msgid ""
msgstr ""
"Project-Id-Version: apt 2.9.23\n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2025-02-16 16:59+0000\n"
+"POT-Creation-Date: 2025-03-09 17:32+0000\n"
"PO-Revision-Date: 2025-01-21 20:32+0100\n"
"Last-Translator: Frans Spiesschaert <Frans.Spiesschaert@yucom.be>\n"
"Language-Team: Debian Dutch l10n Team <debian-l10n-dutch@lists.debian.org>\n"
@@ -132,10 +132,14 @@ msgstr ""
"het netwerk authenticatie?)"
#: apt-pkg/acquire-item.cc
-#, c-format
+#, fuzzy, c-format
+#| msgid ""
+#| "An error occurred during the signature verification. The repository is "
+#| "not updated and the previous index files will be used. GPG error: %s: %s"
msgid ""
"An error occurred during the signature verification. The repository is not "
-"updated and the previous index files will be used. GPG error: %s: %s"
+"updated and the previous index files will be used. OpenPGP signature "
+"verification failed: %s: %s"
msgstr ""
"Er is een fout opgetreden bij de controle van de ondertekening. De "
"pakketbron is niet bijgewerkt en de oude indexbestanden zullen worden "
@@ -144,8 +148,8 @@ msgstr ""
#. Invalid signature file, reject (LP: #346386) (Closes: #627642)
#: apt-pkg/acquire-item.cc
#, c-format
-msgid "GPG error: %s: %s"
-msgstr "GPG-fout: %s: %s"
+msgid "OpenPGP signature verification failed: %s: %s"
+msgstr ""
#: apt-pkg/acquire-item.cc
#, c-format
@@ -1964,6 +1968,12 @@ msgid "Broken packages"
msgstr "Niet-werkende pakketten"
#: apt-private/private-install.cc
+#, fuzzy
+#| msgid "Write error"
+msgid "Writing error report"
+msgstr "Schrijffout"
+
+#: apt-private/private-install.cc
msgid ""
"Unmerged usr is no longer supported, use usrmerge to convert to a merged-usr "
"system."
@@ -2218,6 +2228,10 @@ msgstr[1] ""
"%lu pakketten waren automatisch geïnstalleerd en zijn niet langer nodig.\n"
#: apt-private/private-install.cc
+msgid "Result calculated by the 3.0 solver."
+msgstr ""
+
+#: apt-private/private-install.cc
msgid "Suggested packages:"
msgstr "Voorgestelde pakketten:"
@@ -4076,6 +4090,10 @@ msgid "Empty files can't be valid archives"
msgstr "Lege bestanden kunnen geen geldige archieven zijn"
#, c-format
+#~ msgid "GPG error: %s: %s"
+#~ msgstr "GPG-fout: %s: %s"
+
+#, c-format
#~ msgid ""
#~ "Key is stored in legacy trusted.gpg keyring (%s). Use Signed-By instead. "
#~ "See the USER CONFIGURATION section in apt-secure(8) for details."
diff --git a/po/nn.po b/po/nn.po
index e397249b2..0b2e11fa7 100644
--- a/po/nn.po
+++ b/po/nn.po
@@ -13,7 +13,7 @@ msgid ""
msgstr ""
"Project-Id-Version: apt 1.0.5\n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2025-02-16 16:59+0000\n"
+"POT-Creation-Date: 2025-03-09 17:32+0000\n"
"PO-Revision-Date: 2005-02-14 23:30+0100\n"
"Last-Translator: Havard Korsvoll <korsvoll@skulelinux.no>\n"
"Language-Team: Norwegian nynorsk <i18n-nn@lister.ping.uio.no>\n"
@@ -123,13 +123,14 @@ msgstr ""
#, c-format
msgid ""
"An error occurred during the signature verification. The repository is not "
-"updated and the previous index files will be used. GPG error: %s: %s"
+"updated and the previous index files will be used. OpenPGP signature "
+"verification failed: %s: %s"
msgstr ""
#. Invalid signature file, reject (LP: #346386) (Closes: #627642)
#: apt-pkg/acquire-item.cc
#, c-format
-msgid "GPG error: %s: %s"
+msgid "OpenPGP signature verification failed: %s: %s"
msgstr ""
#: apt-pkg/acquire-item.cc
@@ -1839,6 +1840,12 @@ msgid "Broken packages"
msgstr "ydelagde pakkar"
#: apt-private/private-install.cc
+#, fuzzy
+#| msgid "Write error"
+msgid "Writing error report"
+msgstr "Skrivefeil"
+
+#: apt-private/private-install.cc
msgid ""
"Unmerged usr is no longer supported, use usrmerge to convert to a merged-usr "
"system."
@@ -2076,6 +2083,10 @@ msgstr[0] "Dei flgjande NYE pakkane vil verta installerte:"
msgstr[1] "Dei flgjande NYE pakkane vil verta installerte:"
#: apt-private/private-install.cc
+msgid "Result calculated by the 3.0 solver."
+msgstr ""
+
+#: apt-private/private-install.cc
msgid "Suggested packages:"
msgstr "Fresltte pakkar:"
diff --git a/po/pl.po b/po/pl.po
index 1a8c4ad22..7b1b46814 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -14,7 +14,7 @@ msgid ""
msgstr ""
"Project-Id-Version: apt 0.9.7.3\n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2025-02-16 16:59+0000\n"
+"POT-Creation-Date: 2025-03-09 17:32+0000\n"
"PO-Revision-Date: 2024-07-08 17:53+0200\n"
"Last-Translator: Michał Kułach <michal.kulach@gmail.com>\n"
"Language-Team: Polish <debian-l10n-polish@lists.debian.org>\n"
@@ -130,10 +130,14 @@ msgstr ""
"sieć wymaga uwierzytelnienia?)"
#: apt-pkg/acquire-item.cc
-#, c-format
+#, fuzzy, c-format
+#| msgid ""
+#| "An error occurred during the signature verification. The repository is "
+#| "not updated and the previous index files will be used. GPG error: %s: %s"
msgid ""
"An error occurred during the signature verification. The repository is not "
-"updated and the previous index files will be used. GPG error: %s: %s"
+"updated and the previous index files will be used. OpenPGP signature "
+"verification failed: %s: %s"
msgstr ""
"Podczas weryfikacji podpisu wystąpił błąd. Nie zaktualizowano repozytorium i "
"w dalszym ciągu będą używane poprzednie pliki indeksu. Błąd GPG %s: %s"
@@ -141,8 +145,8 @@ msgstr ""
#. Invalid signature file, reject (LP: #346386) (Closes: #627642)
#: apt-pkg/acquire-item.cc
#, c-format
-msgid "GPG error: %s: %s"
-msgstr "Błąd GPG: %s: %s"
+msgid "OpenPGP signature verification failed: %s: %s"
+msgstr ""
#: apt-pkg/acquire-item.cc
#, c-format
@@ -1955,6 +1959,12 @@ msgid "Broken packages"
msgstr "Pakiety są uszkodzone lub mają niespełnione zależności"
#: apt-private/private-install.cc
+#, fuzzy
+#| msgid "Write error"
+msgid "Writing error report"
+msgstr "Błąd zapisu"
+
+#: apt-private/private-install.cc
msgid ""
"Unmerged usr is no longer supported, use usrmerge to convert to a merged-usr "
"system."
@@ -2223,6 +2233,10 @@ msgstr[2] ""
"wymagane.\n"
#: apt-private/private-install.cc
+msgid "Result calculated by the 3.0 solver."
+msgstr ""
+
+#: apt-private/private-install.cc
msgid "Suggested packages:"
msgstr "Sugerowane pakiety:"
@@ -4084,6 +4098,10 @@ msgstr "Nie udało się ustawić czasu modyfikacji"
msgid "Empty files can't be valid archives"
msgstr "Puste pliki nie mogą być prawidłowymi archiwami"
+#, c-format
+#~ msgid "GPG error: %s: %s"
+#~ msgstr "Błąd GPG: %s: %s"
+
# FIXME: Skoordynować tłumaczenie DEPRECATION z apt-key(8)
#, fuzzy, c-format
#~| msgid ""
diff --git a/po/pt.po b/po/pt.po
index cac972c96..45d0effb2 100644
--- a/po/pt.po
+++ b/po/pt.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: apt 1.0.5\n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2025-02-16 16:59+0000\n"
+"POT-Creation-Date: 2025-03-09 17:32+0000\n"
"PO-Revision-Date: 2012-06-29 15:45+0100\n"
"Last-Translator: Miguel Figueiredo <elmig@debianpt.org>\n"
"Language-Team: Portuguese <traduz@debianpt.org>\n"
@@ -119,7 +119,8 @@ msgstr ""
#, fuzzy, c-format
msgid ""
"An error occurred during the signature verification. The repository is not "
-"updated and the previous index files will be used. GPG error: %s: %s"
+"updated and the previous index files will be used. OpenPGP signature "
+"verification failed: %s: %s"
msgstr ""
"Ocorreu um erro durante a verificação da assinatura. O repositório não está "
"actualizado e serão utilizados os ficheiros anteriores de índice. Erro do "
@@ -128,8 +129,8 @@ msgstr ""
#. Invalid signature file, reject (LP: #346386) (Closes: #627642)
#: apt-pkg/acquire-item.cc
#, c-format
-msgid "GPG error: %s: %s"
-msgstr "Erro GPG: %s: %s"
+msgid "OpenPGP signature verification failed: %s: %s"
+msgstr ""
#: apt-pkg/acquire-item.cc
#, c-format
@@ -1914,6 +1915,12 @@ msgid "Broken packages"
msgstr "Pacotes estragados"
#: apt-private/private-install.cc
+#, fuzzy
+#| msgid "Write error"
+msgid "Writing error report"
+msgstr "Erro de escrita"
+
+#: apt-private/private-install.cc
msgid ""
"Unmerged usr is no longer supported, use usrmerge to convert to a merged-usr "
"system."
@@ -2160,6 +2167,10 @@ msgstr[1] ""
"Os pacotes %lu foram instalados automaticamente e já não são necessários.\n"
#: apt-private/private-install.cc
+msgid "Result calculated by the 3.0 solver."
+msgstr ""
+
+#: apt-private/private-install.cc
msgid "Suggested packages:"
msgstr "Pacotes sugeridos:"
@@ -3996,6 +4007,10 @@ msgstr "Falhou definir hora de modificação"
msgid "Empty files can't be valid archives"
msgstr "Ficheiros vazios não podem ser arquivos válidos"
+#, c-format
+#~ msgid "GPG error: %s: %s"
+#~ msgstr "Erro GPG: %s: %s"
+
#~ msgid "Logging in"
#~ msgstr "A identificar-se no sistema"
diff --git a/po/pt_BR.po b/po/pt_BR.po
index 7225a654d..a8fd8f4a2 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -12,7 +12,7 @@ msgid ""
msgstr ""
"Project-Id-Version: apt 2.9.21\n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2025-02-16 16:59+0000\n"
+"POT-Creation-Date: 2025-03-09 17:32+0000\n"
"PO-Revision-Date: 2024-12-26 14:38+0000\n"
"Last-Translator: Rafael Fontenelle <rafaelff@gnome.org>\n"
"Language-Team: Brazilian Portuguese <debian-l10n-"
@@ -129,10 +129,14 @@ msgstr ""
"O arquivo clearsigned não é válido, obteve '%s' (a rede requer autenticação?)"
#: apt-pkg/acquire-item.cc
-#, c-format
+#, fuzzy, c-format
+#| msgid ""
+#| "An error occurred during the signature verification. The repository is "
+#| "not updated and the previous index files will be used. GPG error: %s: %s"
msgid ""
"An error occurred during the signature verification. The repository is not "
-"updated and the previous index files will be used. GPG error: %s: %s"
+"updated and the previous index files will be used. OpenPGP signature "
+"verification failed: %s: %s"
msgstr ""
"Ocorreu um erro durante a verificação da assinatura. O repositório não é "
"atualizado e os arquivos de índice anteriores serão usados. Erro GPG: %s: %s"
@@ -140,8 +144,8 @@ msgstr ""
#. Invalid signature file, reject (LP: #346386) (Closes: #627642)
#: apt-pkg/acquire-item.cc
#, c-format
-msgid "GPG error: %s: %s"
-msgstr "Erro de GPG: %s: %s"
+msgid "OpenPGP signature verification failed: %s: %s"
+msgstr ""
#: apt-pkg/acquire-item.cc
#, c-format
@@ -1946,6 +1950,12 @@ msgid "Broken packages"
msgstr "Pacotes quebrados"
#: apt-private/private-install.cc
+#, fuzzy
+#| msgid "Write error"
+msgid "Writing error report"
+msgstr "Erro de escrita"
+
+#: apt-private/private-install.cc
msgid ""
"Unmerged usr is no longer supported, use usrmerge to convert to a merged-usr "
"system."
@@ -2200,6 +2210,10 @@ msgstr[1] ""
"%lu pacotes foram automaticamente instalados e não são mais requeridos.\n"
#: apt-private/private-install.cc
+msgid "Result calculated by the 3.0 solver."
+msgstr ""
+
+#: apt-private/private-install.cc
msgid "Suggested packages:"
msgstr "Pacotes sugeridos:"
@@ -4036,6 +4050,10 @@ msgid "Empty files can't be valid archives"
msgstr "Arquivos vazios não podem ser arquivos válidos"
#, c-format
+#~ msgid "GPG error: %s: %s"
+#~ msgstr "Erro de GPG: %s: %s"
+
+#, c-format
#~ msgid ""
#~ "Key is stored in legacy trusted.gpg keyring (%s). Use Signed-By instead. "
#~ "See the USER CONFIGURATION section in apt-secure(8) for details."
diff --git a/po/ro.po b/po/ro.po
index dc11703cd..c9991771d 100644
--- a/po/ro.po
+++ b/po/ro.po
@@ -27,7 +27,7 @@ msgid ""
msgstr ""
"Project-Id-Version: apt 2.9.8\n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2025-02-16 16:59+0000\n"
+"POT-Creation-Date: 2025-03-09 17:32+0000\n"
"PO-Revision-Date: 2024-09-02 00:21+0200\n"
"Last-Translator: Remus-Gabriel Chelu <remusgabriel.chelu@disroot.org>\n"
"Language-Team: Romanian <debian-l10n-romanian@lists.debian.org>\n"
@@ -146,10 +146,14 @@ msgstr ""
"autentificare?)"
#: apt-pkg/acquire-item.cc
-#, c-format
+#, fuzzy, c-format
+#| msgid ""
+#| "An error occurred during the signature verification. The repository is "
+#| "not updated and the previous index files will be used. GPG error: %s: %s"
msgid ""
"An error occurred during the signature verification. The repository is not "
-"updated and the previous index files will be used. GPG error: %s: %s"
+"updated and the previous index files will be used. OpenPGP signature "
+"verification failed: %s: %s"
msgstr ""
"S-a produs o eroare în timpul verificării semnăturii. Depozitul nu este "
"actualizat și vor fi utilizate fișierele de index anterioare. Eroare GPG: "
@@ -158,8 +162,8 @@ msgstr ""
#. Invalid signature file, reject (LP: #346386) (Closes: #627642)
#: apt-pkg/acquire-item.cc
#, c-format
-msgid "GPG error: %s: %s"
-msgstr "Eroare GPG: %s: %s"
+msgid "OpenPGP signature verification failed: %s: %s"
+msgstr ""
#: apt-pkg/acquire-item.cc
#, c-format
@@ -2012,6 +2016,12 @@ msgid "Broken packages"
msgstr "Pachete deteriorate"
#: apt-private/private-install.cc
+#, fuzzy
+#| msgid "Write error"
+msgid "Writing error report"
+msgstr "Eroare de scriere"
+
+#: apt-private/private-install.cc
msgid ""
"Unmerged usr is no longer supported, use usrmerge to convert to a merged-usr "
"system."
@@ -2296,6 +2306,10 @@ msgstr[1] "%lu pachete au fost instalate automat și nu mai sunt necesare:\n"
msgstr[2] "%lu de pachete au fost instalate automat și nu mai sunt necesare:\n"
#: apt-private/private-install.cc
+msgid "Result calculated by the 3.0 solver."
+msgstr ""
+
+#: apt-private/private-install.cc
msgid "Suggested packages:"
msgstr "Pachete sugerate:"
@@ -4176,6 +4190,10 @@ msgstr "Eșec la ajustarea timpului de modificare"
msgid "Empty files can't be valid archives"
msgstr "Fișierele goale nu pot fi arhive valide"
+#, c-format
+#~ msgid "GPG error: %s: %s"
+#~ msgstr "Eroare GPG: %s: %s"
+
#, fuzzy, c-format
#~| msgid ""
#~| "Key is stored in legacy trusted.gpg keyring (%s), see the DEPRECATION "
diff --git a/po/ru.po b/po/ru.po
index 1e73e44fd..347122352 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -18,7 +18,7 @@ msgid ""
msgstr ""
"Project-Id-Version: apt 2.9.30\n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2025-02-16 16:59+0000\n"
+"POT-Creation-Date: 2025-03-09 17:32+0000\n"
"PO-Revision-Date: 2025-02-26 11:30+0300\n"
"Last-Translator: Алексей Шилин <shilin.aleksej@gmail.com>\n"
"Language-Team: Russian <debian-l10n-russian@lists.debian.org>\n"
@@ -66,11 +66,11 @@ msgstr "Репозиторий «%s» больше не содержит фай
#: apt-pkg/acquire-item.cc
msgid ""
-"This is normally not allowed, but the option Acquire::"
-"AllowDowngradeToInsecureRepositories was given to override it."
+"This is normally not allowed, but the option "
+"Acquire::AllowDowngradeToInsecureRepositories was given to override it."
msgstr ""
-"Обычно это не разрешается, однако указан параметр Acquire::"
-"AllowDowngradeToInsecureRepositories для продолжения."
+"Обычно это не разрешается, однако указан параметр "
+"Acquire::AllowDowngradeToInsecureRepositories для продолжения."
#: apt-pkg/acquire-item.cc
#, c-format
@@ -133,10 +133,14 @@ msgstr ""
"аутентификация?)"
#: apt-pkg/acquire-item.cc
-#, c-format
+#, fuzzy, c-format
+#| msgid ""
+#| "An error occurred during the signature verification. The repository is "
+#| "not updated and the previous index files will be used. GPG error: %s: %s"
msgid ""
"An error occurred during the signature verification. The repository is not "
-"updated and the previous index files will be used. GPG error: %s: %s"
+"updated and the previous index files will be used. OpenPGP signature "
+"verification failed: %s: %s"
msgstr ""
"Произошла ошибка при проверке подписи. Репозиторий не обновлён, и будут "
"использованы предыдущие индексные файлы. Ошибка GPG: %s: %s"
@@ -144,8 +148,8 @@ msgstr ""
#. Invalid signature file, reject (LP: #346386) (Closes: #627642)
#: apt-pkg/acquire-item.cc
#, c-format
-msgid "GPG error: %s: %s"
-msgstr "Ошибка GPG: %s: %s"
+msgid "OpenPGP signature verification failed: %s: %s"
+msgstr ""
#: apt-pkg/acquire-item.cc
#, c-format
@@ -154,8 +158,8 @@ msgid ""
"component '%s' (component misspelt in sources.list?)"
msgstr ""
"Пропускается получение настроенного файла «%s», так как в репозитории «%s» "
-"отсутствует компонент «%s» (возможно, компонент указан с ошибкой в sources."
-"list?)"
+"отсутствует компонент «%s» (возможно, компонент указан с ошибкой в "
+"sources.list?)"
#: apt-pkg/acquire-item.cc
#, c-format
@@ -1951,6 +1955,12 @@ msgid "Broken packages"
msgstr "Сломанные пакеты"
#: apt-private/private-install.cc
+#, fuzzy
+#| msgid "Write error"
+msgid "Writing error report"
+msgstr "Ошибка записи"
+
+#: apt-private/private-install.cc
msgid ""
"Unmerged usr is no longer supported, use usrmerge to convert to a merged-usr "
"system."
@@ -2216,6 +2226,10 @@ msgstr[1] "%lu пакета было установлено автоматиче
msgstr[2] "%lu пакетов было установлено автоматически и больше не требуется.\n"
#: apt-private/private-install.cc
+msgid "Result calculated by the 3.0 solver."
+msgstr ""
+
+#: apt-private/private-install.cc
msgid "Suggested packages:"
msgstr "Предлагаемые пакеты:"
@@ -2688,11 +2702,11 @@ msgstr "%s не имеет сборочных зависимостей.\n"
#: apt-private/private-source.cc
#, c-format
msgid ""
-"No architecture information available for %s. See apt.conf(5) APT::"
-"Architectures for setup"
+"No architecture information available for %s. See apt.conf(5) "
+"APT::Architectures for setup"
msgstr ""
-"Отсутствует информация об архитектуре %s. Для её настройки смотрите apt."
-"conf(5) об APT::Architectures"
+"Отсутствует информация об архитектуре %s. Для её настройки смотрите "
+"apt.conf(5) об APT::Architectures"
#: apt-private/private-source.cc
msgid "Must specify at least one package to check builddeps for"
@@ -3102,14 +3116,14 @@ msgstr "выполнить обновление"
#: cmdline/apt-get.cc
msgid "Install new packages (pkg is libc6 not libc6.deb)"
msgstr ""
-"установить новые пакеты (указывается имя пакета libc6, а не имя файла libc6."
-"deb)"
+"установить новые пакеты (указывается имя пакета libc6, а не имя файла "
+"libc6.deb)"
#: cmdline/apt-get.cc
msgid "Reinstall packages (pkg is libc6 not libc6.deb)"
msgstr ""
-"переустановить пакеты (указывается имя пакета libc6, а не имя файла libc6."
-"deb)"
+"переустановить пакеты (указывается имя пакета libc6, а не имя файла "
+"libc6.deb)"
#: cmdline/apt-get.cc
msgid "Remove packages"
@@ -4066,6 +4080,10 @@ msgstr "Не удалось установить время модификаци
msgid "Empty files can't be valid archives"
msgstr "Пустые файлы не могут быть допустимыми архивами"
+#, c-format
+#~ msgid "GPG error: %s: %s"
+#~ msgstr "Ошибка GPG: %s: %s"
+
#, fuzzy, c-format
#~| msgid ""
#~| "Key is stored in legacy trusted.gpg keyring (%s), see the DEPRECATION "
@@ -4110,11 +4128,11 @@ msgstr "Пустые файлы не могут быть допустимыми
#~ msgstr "Команда PASS не выполнена, сервер сообщил: %s"
#~ msgid ""
-#~ "A proxy server was specified but no login script, Acquire::ftp::"
-#~ "ProxyLogin is empty."
+#~ "A proxy server was specified but no login script, "
+#~ "Acquire::ftp::ProxyLogin is empty."
#~ msgstr ""
-#~ "Прокси-сервер указан, однако нет сценария входа в систему: Acquire::ftp::"
-#~ "ProxyLogin пуст."
+#~ "Прокси-сервер указан, однако нет сценария входа в систему: "
+#~ "Acquire::ftp::ProxyLogin пуст."
#, c-format
#~ msgid "Login script command '%s' failed, server said: %s"
diff --git a/po/sk.po b/po/sk.po
index d75f5868e..4e3091fa4 100644
--- a/po/sk.po
+++ b/po/sk.po
@@ -13,7 +13,7 @@ msgid ""
msgstr ""
"Project-Id-Version: apt 1.0.5\n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2025-02-16 16:59+0000\n"
+"POT-Creation-Date: 2025-03-09 17:32+0000\n"
"PO-Revision-Date: 2012-06-28 20:49+0100\n"
"Last-Translator: Ivan Masár <helix84@centrum.sk>\n"
"Language-Team: Slovak <sk-i18n@lists.linux.sk>\n"
@@ -121,7 +121,8 @@ msgstr ""
#, fuzzy, c-format
msgid ""
"An error occurred during the signature verification. The repository is not "
-"updated and the previous index files will be used. GPG error: %s: %s"
+"updated and the previous index files will be used. OpenPGP signature "
+"verification failed: %s: %s"
msgstr ""
"Počas overovania podpisu sa vyskytla chyba. Repozitár nie je aktualizovaný a "
"použijú sa predošlé indexové súbory. Chyba GPG: %s: %s\n"
@@ -129,8 +130,8 @@ msgstr ""
#. Invalid signature file, reject (LP: #346386) (Closes: #627642)
#: apt-pkg/acquire-item.cc
#, c-format
-msgid "GPG error: %s: %s"
-msgstr "Chyba GPG: %s: %s"
+msgid "OpenPGP signature verification failed: %s: %s"
+msgstr ""
#: apt-pkg/acquire-item.cc
#, c-format
@@ -1876,6 +1877,12 @@ msgid "Broken packages"
msgstr "Poškodené balíky"
#: apt-private/private-install.cc
+#, fuzzy
+#| msgid "Write error"
+msgid "Writing error report"
+msgstr "Chyba pri zápise"
+
+#: apt-private/private-install.cc
msgid ""
"Unmerged usr is no longer supported, use usrmerge to convert to a merged-usr "
"system."
@@ -2130,6 +2137,10 @@ msgstr[2] ""
"%lu balíkov bolo nainštalovaných automaticky a už viac nie sú potrebné.\n"
#: apt-private/private-install.cc
+msgid "Result calculated by the 3.0 solver."
+msgstr ""
+
+#: apt-private/private-install.cc
msgid "Suggested packages:"
msgstr "Navrhované balíky:"
@@ -3955,6 +3966,10 @@ msgstr "Zlyhalo nastavenie času zmeny"
msgid "Empty files can't be valid archives"
msgstr "Prázdne súbory nemôžu byť platné archívy"
+#, c-format
+#~ msgid "GPG error: %s: %s"
+#~ msgstr "Chyba GPG: %s: %s"
+
#~ msgid "Logging in"
#~ msgstr "Prihlasovanie"
diff --git a/po/sl.po b/po/sl.po
index 91204ad74..a6322b75e 100644
--- a/po/sl.po
+++ b/po/sl.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: apt 0.5.5\n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2025-02-16 16:59+0000\n"
+"POT-Creation-Date: 2025-03-09 17:32+0000\n"
"PO-Revision-Date: 2012-06-27 21:29+0000\n"
"Last-Translator: Andrej Znidarsic <andrej.znidarsic@gmail.com>\n"
"Language-Team: Slovenian <sl@li.org>\n"
@@ -121,7 +121,8 @@ msgstr ""
#, fuzzy, c-format
msgid ""
"An error occurred during the signature verification. The repository is not "
-"updated and the previous index files will be used. GPG error: %s: %s"
+"updated and the previous index files will be used. OpenPGP signature "
+"verification failed: %s: %s"
msgstr ""
"Med preverjanjem podpisa je prišlo do napake. Skladišče ni bilo posodobljeno "
"zato bodo uporabljene predhodne datoteke kazal. Napaka GPG: %s: %s\n"
@@ -129,8 +130,8 @@ msgstr ""
#. Invalid signature file, reject (LP: #346386) (Closes: #627642)
#: apt-pkg/acquire-item.cc
#, c-format
-msgid "GPG error: %s: %s"
-msgstr "Napaka GPG: %s: %s"
+msgid "OpenPGP signature verification failed: %s: %s"
+msgstr ""
#: apt-pkg/acquire-item.cc
#, c-format
@@ -1876,6 +1877,12 @@ msgid "Broken packages"
msgstr "Pokvarjeni paketi"
#: apt-private/private-install.cc
+#, fuzzy
+#| msgid "Write error"
+msgid "Writing error report"
+msgstr "Napaka pisanja"
+
+#: apt-private/private-install.cc
msgid ""
"Unmerged usr is no longer supported, use usrmerge to convert to a merged-usr "
"system."
@@ -2134,6 +2141,10 @@ msgstr[2] "%lu paketa sta bila samodejno nameščena in nista več zahtevana.\n"
msgstr[3] "%lu paketi so bili samodejno nameščeni in niso več zahtevani.\n"
#: apt-private/private-install.cc
+msgid "Result calculated by the 3.0 solver."
+msgstr ""
+
+#: apt-private/private-install.cc
msgid "Suggested packages:"
msgstr "Predlagani paketi:"
@@ -3961,6 +3972,10 @@ msgstr "Nastavitev časa spremembe je spodletela"
msgid "Empty files can't be valid archives"
msgstr "Prazne datoteke ne morejo biti veljavni arhivi"
+#, c-format
+#~ msgid "GPG error: %s: %s"
+#~ msgstr "Napaka GPG: %s: %s"
+
#~ msgid "Logging in"
#~ msgstr "Prijavljanje"
diff --git a/po/sv.po b/po/sv.po
index 23534383b..26bc611b0 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -13,7 +13,7 @@ msgid ""
msgstr ""
"Project-Id-Version: apt 2.9.2\n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2025-02-16 16:59+0000\n"
+"POT-Creation-Date: 2025-03-09 17:32+0000\n"
"PO-Revision-Date: 2025-02-12 22:07+0100\n"
"Last-Translator: Peter Krefting <peter@softwolves.pp.se>\n"
"Language-Team: Swedish <debian-l10n-swedish@lists.debian.org>\n"
@@ -127,10 +127,14 @@ msgstr ""
"autentisering?)"
#: apt-pkg/acquire-item.cc
-#, c-format
+#, fuzzy, c-format
+#| msgid ""
+#| "An error occurred during the signature verification. The repository is "
+#| "not updated and the previous index files will be used. GPG error: %s: %s"
msgid ""
"An error occurred during the signature verification. The repository is not "
-"updated and the previous index files will be used. GPG error: %s: %s"
+"updated and the previous index files will be used. OpenPGP signature "
+"verification failed: %s: %s"
msgstr ""
"Ett fel inträffade vid verifiering av signaturen. Förrådet har inte "
"uppdaterats och de tidigare indexfilerna kommer att användas. GPG-fel: %s: %s"
@@ -138,8 +142,8 @@ msgstr ""
#. Invalid signature file, reject (LP: #346386) (Closes: #627642)
#: apt-pkg/acquire-item.cc
#, c-format
-msgid "GPG error: %s: %s"
-msgstr "GPG-fel: %s: %s"
+msgid "OpenPGP signature verification failed: %s: %s"
+msgstr ""
#: apt-pkg/acquire-item.cc
#, c-format
@@ -1917,6 +1921,12 @@ msgid "Broken packages"
msgstr "Trasiga paket"
#: apt-private/private-install.cc
+#, fuzzy
+#| msgid "Write error"
+msgid "Writing error report"
+msgstr "Skrivfel"
+
+#: apt-private/private-install.cc
msgid ""
"Unmerged usr is no longer supported, use usrmerge to convert to a merged-usr "
"system."
@@ -2170,6 +2180,10 @@ msgstr[1] ""
"%lu paket blev installerade automatiskt och är inte längre nödvändiga.\n"
#: apt-private/private-install.cc
+msgid "Result calculated by the 3.0 solver."
+msgstr ""
+
+#: apt-private/private-install.cc
msgid "Suggested packages:"
msgstr "Föreslagna paket:"
@@ -4007,6 +4021,10 @@ msgid "Empty files can't be valid archives"
msgstr "Tomma filer kan inte vara giltiga arkiv"
#, c-format
+#~ msgid "GPG error: %s: %s"
+#~ msgstr "GPG-fel: %s: %s"
+
+#, c-format
#~ msgid ""
#~ "The method '%s' is unsupported and disabled by default. Consider "
#~ "switching to http(s). Set Dir::Bin::Methods::%s to \"%s\" to enable it "
diff --git a/po/th.po b/po/th.po
index b0e040820..21058c175 100644
--- a/po/th.po
+++ b/po/th.po
@@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: apt 1.0.5\n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2025-02-16 16:59+0000\n"
+"POT-Creation-Date: 2025-03-09 17:32+0000\n"
"PO-Revision-Date: 2014-12-12 13:00+0700\n"
"Last-Translator: Theppitak Karoonboonyanan <thep@debian.org>\n"
"Language-Team: Thai <thai-l10n@googlegroups.com>\n"
@@ -120,7 +120,8 @@ msgstr ""
#, fuzzy, c-format
msgid ""
"An error occurred during the signature verification. The repository is not "
-"updated and the previous index files will be used. GPG error: %s: %s"
+"updated and the previous index files will be used. OpenPGP signature "
+"verification failed: %s: %s"
msgstr ""
"เกิดข้อผิดพลาดขณะตรวจสอบลายเซ็น จะไม่ปรับข้อมูลคลังแพกเกจนี้ และจะใช้แฟ้มดัชนีเก่า "
"ข้อผิดพลาดจาก GPG: %s: %s\n"
@@ -128,8 +129,8 @@ msgstr ""
#. Invalid signature file, reject (LP: #346386) (Closes: #627642)
#: apt-pkg/acquire-item.cc
#, c-format
-msgid "GPG error: %s: %s"
-msgstr "ข้อผิดพลาดจาก GPG: %s: %s"
+msgid "OpenPGP signature verification failed: %s: %s"
+msgstr ""
#: apt-pkg/acquire-item.cc
#, c-format
@@ -1846,6 +1847,12 @@ msgid "Broken packages"
msgstr "แพกเกจมีปัญหา"
#: apt-private/private-install.cc
+#, fuzzy
+#| msgid "Write error"
+msgid "Writing error report"
+msgstr "การเขียนข้อมูลผิดพลาด"
+
+#: apt-private/private-install.cc
msgid ""
"Unmerged usr is no longer supported, use usrmerge to convert to a merged-usr "
"system."
@@ -2080,6 +2087,10 @@ msgid_plural ""
msgstr[0] "มีแพกเกจ %lu แพกเกจถูกติดตั้งแบบอัตโนมัติไว้ และไม่ต้องใช้อีกต่อไปแล้ว\n"
#: apt-private/private-install.cc
+msgid "Result calculated by the 3.0 solver."
+msgstr ""
+
+#: apt-private/private-install.cc
msgid "Suggested packages:"
msgstr "แพกเกจที่แนะนำ:"
@@ -3881,6 +3892,10 @@ msgstr "กำหนดเวลาแก้ไขไม่สำเร็จ"
msgid "Empty files can't be valid archives"
msgstr "แฟ้มว่างเปล่าไม่สามารถเป็นแฟ้มจัดเก็บที่ใช้การได้"
+#, c-format
+#~ msgid "GPG error: %s: %s"
+#~ msgstr "ข้อผิดพลาดจาก GPG: %s: %s"
+
#~ msgid "Logging in"
#~ msgstr "เข้าระบบ"
diff --git a/po/tl.po b/po/tl.po
index 6e554344d..dff723879 100644
--- a/po/tl.po
+++ b/po/tl.po
@@ -13,7 +13,7 @@ msgid ""
msgstr ""
"Project-Id-Version: apt 1.0.5\n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2025-02-16 16:59+0000\n"
+"POT-Creation-Date: 2025-03-09 17:32+0000\n"
"PO-Revision-Date: 2007-03-29 21:36+0800\n"
"Last-Translator: Eric Pareja <xenos@upm.edu.ph>\n"
"Language-Team: Tagalog <debian-tl@banwa.upm.edu.ph>\n"
@@ -122,13 +122,14 @@ msgstr ""
#, c-format
msgid ""
"An error occurred during the signature verification. The repository is not "
-"updated and the previous index files will be used. GPG error: %s: %s"
+"updated and the previous index files will be used. OpenPGP signature "
+"verification failed: %s: %s"
msgstr ""
#. Invalid signature file, reject (LP: #346386) (Closes: #627642)
#: apt-pkg/acquire-item.cc
#, c-format
-msgid "GPG error: %s: %s"
+msgid "OpenPGP signature verification failed: %s: %s"
msgstr ""
#: apt-pkg/acquire-item.cc
@@ -1854,6 +1855,12 @@ msgid "Broken packages"
msgstr "Sirang mga pakete"
#: apt-private/private-install.cc
+#, fuzzy
+#| msgid "Write error"
+msgid "Writing error report"
+msgstr "Error sa pagsulat"
+
+#: apt-private/private-install.cc
msgid ""
"Unmerged usr is no longer supported, use usrmerge to convert to a merged-usr "
"system."
@@ -2094,6 +2101,10 @@ msgstr[0] "Ang sumusunod na mga paketeng BAGO ay iluluklok:"
msgstr[1] "Ang sumusunod na mga paketeng BAGO ay iluluklok:"
#: apt-private/private-install.cc
+msgid "Result calculated by the 3.0 solver."
+msgstr ""
+
+#: apt-private/private-install.cc
msgid "Suggested packages:"
msgstr "Mga paketeng mungkahi:"
diff --git a/po/tr.po b/po/tr.po
index 0cdd7fb6e..0a4dd6c82 100644
--- a/po/tr.po
+++ b/po/tr.po
@@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: apt 2.6.0\n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2025-02-16 16:59+0000\n"
+"POT-Creation-Date: 2025-03-09 17:32+0000\n"
"PO-Revision-Date: 2023-04-19 15:15+0300\n"
"Last-Translator: Mert Dirik <mertdirik@gmail.com>\n"
"Language-Team: Debian l10n Turkish <debian-l10n-turkish@lists.debian.org>\n"
@@ -130,10 +130,14 @@ msgstr ""
"gerektiriyor mu?)"
#: apt-pkg/acquire-item.cc
-#, c-format
+#, fuzzy, c-format
+#| msgid ""
+#| "An error occurred during the signature verification. The repository is "
+#| "not updated and the previous index files will be used. GPG error: %s: %s"
msgid ""
"An error occurred during the signature verification. The repository is not "
-"updated and the previous index files will be used. GPG error: %s: %s"
+"updated and the previous index files will be used. OpenPGP signature "
+"verification failed: %s: %s"
msgstr ""
"İmza doğrulama sırasında bir hata meydana geldi. Depo güncel değil ve önceki "
"indeks dosyaları kullanılacak. GPG hatası: %s: %s"
@@ -141,8 +145,8 @@ msgstr ""
#. Invalid signature file, reject (LP: #346386) (Closes: #627642)
#: apt-pkg/acquire-item.cc
#, c-format
-msgid "GPG error: %s: %s"
-msgstr "GPG hatası: %s: %s"
+msgid "OpenPGP signature verification failed: %s: %s"
+msgstr ""
#: apt-pkg/acquire-item.cc
#, c-format
@@ -1923,6 +1927,12 @@ msgid "Broken packages"
msgstr "Bozuk paketler"
#: apt-private/private-install.cc
+#, fuzzy
+#| msgid "Write error"
+msgid "Writing error report"
+msgstr "Yazma hatası"
+
+#: apt-private/private-install.cc
msgid ""
"Unmerged usr is no longer supported, use usrmerge to convert to a merged-usr "
"system."
@@ -2177,6 +2187,10 @@ msgstr[0] "%lu paket otomatik olarak kurulmuş ve artık gerekli değil.\n"
msgstr[1] "%lu paket otomatik olarak kurulmuş ve artık gerekli değil.\n"
#: apt-private/private-install.cc
+msgid "Result calculated by the 3.0 solver."
+msgstr ""
+
+#: apt-private/private-install.cc
msgid "Suggested packages:"
msgstr "Önerilen paketler:"
@@ -4024,6 +4038,10 @@ msgstr "Değişiklik zamanı ayarlanamadı"
msgid "Empty files can't be valid archives"
msgstr "Boş dosyalar geçerli birer arşiv dosyası olamazlar"
+#, c-format
+#~ msgid "GPG error: %s: %s"
+#~ msgstr "GPG hatası: %s: %s"
+
#, fuzzy, c-format
#~| msgid ""
#~| "Key is stored in legacy trusted.gpg keyring (%s), see the DEPRECATION "
diff --git a/po/uk.po b/po/uk.po
index 0abd56ff9..1a8744aec 100644
--- a/po/uk.po
+++ b/po/uk.po
@@ -17,7 +17,7 @@ msgid ""
msgstr ""
"Project-Id-Version: apt 1.0.5\n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2025-02-16 16:59+0000\n"
+"POT-Creation-Date: 2025-03-09 17:32+0000\n"
"PO-Revision-Date: 2012-09-25 20:19+0300\n"
"Last-Translator: A. Bondarenko <artem.brz@gmail.com>\n"
"Language-Team: Українська <uk@li.org>\n"
@@ -127,7 +127,8 @@ msgstr ""
#, fuzzy, c-format
msgid ""
"An error occurred during the signature verification. The repository is not "
-"updated and the previous index files will be used. GPG error: %s: %s"
+"updated and the previous index files will be used. OpenPGP signature "
+"verification failed: %s: %s"
msgstr ""
"Виникла помилка під час перевірки підпису. Репозиторій не оновлено, "
"попередні індексні файли будуть використані. Помилка GPG: %s: %s\n"
@@ -135,8 +136,8 @@ msgstr ""
#. Invalid signature file, reject (LP: #346386) (Closes: #627642)
#: apt-pkg/acquire-item.cc
#, c-format
-msgid "GPG error: %s: %s"
-msgstr "Помилка GPG: %s: %s"
+msgid "OpenPGP signature verification failed: %s: %s"
+msgstr ""
#: apt-pkg/acquire-item.cc
#, c-format
@@ -1910,6 +1911,12 @@ msgid "Broken packages"
msgstr "Зламані пакунки"
#: apt-private/private-install.cc
+#, fuzzy
+#| msgid "Write error"
+msgid "Writing error report"
+msgstr "Помилка запису"
+
+#: apt-private/private-install.cc
msgid ""
"Unmerged usr is no longer supported, use usrmerge to convert to a merged-usr "
"system."
@@ -2164,6 +2171,10 @@ msgstr[2] ""
"%lu пакунків було встановлено автоматично і вони більше не потрібні.\n"
#: apt-private/private-install.cc
+msgid "Result calculated by the 3.0 solver."
+msgstr ""
+
+#: apt-private/private-install.cc
msgid "Suggested packages:"
msgstr "Пропоновані пакунки:"
@@ -4018,6 +4029,10 @@ msgstr "Не вдалося встановити час модифікації"
msgid "Empty files can't be valid archives"
msgstr "Пусті файли не можуть бути правильними архівами"
+#, c-format
+#~ msgid "GPG error: %s: %s"
+#~ msgstr "Помилка GPG: %s: %s"
+
#~ msgid "Logging in"
#~ msgstr "Логінюсь в"
diff --git a/po/vi.po b/po/vi.po
index 7fb350bc3..3fc581fda 100644
--- a/po/vi.po
+++ b/po/vi.po
@@ -13,7 +13,7 @@ msgid ""
msgstr ""
"Project-Id-Version: apt 1.0.8\n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2025-02-16 16:59+0000\n"
+"POT-Creation-Date: 2025-03-09 17:32+0000\n"
"PO-Revision-Date: 2014-09-12 13:48+0700\n"
"Last-Translator: Trần Ngọc Quân <vnwildman@gmail.com>\n"
"Language-Team: Vietnamese <translation-team-vi@lists.sourceforge.net>\n"
@@ -126,7 +126,8 @@ msgstr ""
#, fuzzy, c-format
msgid ""
"An error occurred during the signature verification. The repository is not "
-"updated and the previous index files will be used. GPG error: %s: %s"
+"updated and the previous index files will be used. OpenPGP signature "
+"verification failed: %s: %s"
msgstr ""
"Gặp lỗi trong khi thẩm tra chữ ký.\n"
"Kho lưu chưa được cập nhật nên dùng những tập tin chỉ mục trước.\n"
@@ -135,8 +136,8 @@ msgstr ""
#. Invalid signature file, reject (LP: #346386) (Closes: #627642)
#: apt-pkg/acquire-item.cc
#, c-format
-msgid "GPG error: %s: %s"
-msgstr "Lỗi GPG: %s: %s"
+msgid "OpenPGP signature verification failed: %s: %s"
+msgstr ""
#: apt-pkg/acquire-item.cc
#, c-format
@@ -1893,6 +1894,12 @@ msgid "Broken packages"
msgstr "Gói bị hỏng"
#: apt-private/private-install.cc
+#, fuzzy
+#| msgid "Write error"
+msgid "Writing error report"
+msgstr "Lỗi ghi"
+
+#: apt-private/private-install.cc
msgid ""
"Unmerged usr is no longer supported, use usrmerge to convert to a merged-usr "
"system."
@@ -2134,6 +2141,10 @@ msgid_plural ""
msgstr[0] "%lu gói đã được tự động cài đặt nên không còn cần yêu cầu lại.\n"
#: apt-private/private-install.cc
+msgid "Result calculated by the 3.0 solver."
+msgstr ""
+
+#: apt-private/private-install.cc
msgid "Suggested packages:"
msgstr "Các gói đề nghị:"
@@ -3991,6 +4002,10 @@ msgstr "Gặp lỗi khi đặt giờ sửa đổi"
msgid "Empty files can't be valid archives"
msgstr "Các tập tin trống rỗng không phải là kho lưu hợp lệ"
+#, c-format
+#~ msgid "GPG error: %s: %s"
+#~ msgstr "Lỗi GPG: %s: %s"
+
#~ msgid "Logging in"
#~ msgstr "Đang đăng nhập vào"
diff --git a/po/zh_CN.po b/po/zh_CN.po
index edcadd76d..89101f4dd 100644
--- a/po/zh_CN.po
+++ b/po/zh_CN.po
@@ -16,7 +16,7 @@ msgid ""
msgstr ""
"Project-Id-Version: apt 2.9.26\n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2025-02-16 16:59+0000\n"
+"POT-Creation-Date: 2025-03-09 17:32+0000\n"
"PO-Revision-Date: 2025-01-28 16:26-0500\n"
"Last-Translator: Boyuan Yang <073plan@gmail.com>\n"
"Language-Team: Chinese (simplified) <debian-l10n-chinese@lists.debian.org>\n"
@@ -122,10 +122,14 @@ msgid ""
msgstr "明文签署文件不可用,结果为‘%s’(您的网络需要认证吗?)"
#: apt-pkg/acquire-item.cc
-#, c-format
+#, fuzzy, c-format
+#| msgid ""
+#| "An error occurred during the signature verification. The repository is "
+#| "not updated and the previous index files will be used. GPG error: %s: %s"
msgid ""
"An error occurred during the signature verification. The repository is not "
-"updated and the previous index files will be used. GPG error: %s: %s"
+"updated and the previous index files will be used. OpenPGP signature "
+"verification failed: %s: %s"
msgstr ""
"校验数字签名时出错。此仓库未被更新,所以仍然使用此前的索引文件。GPG 错误:"
"%s: %s"
@@ -133,8 +137,8 @@ msgstr ""
#. Invalid signature file, reject (LP: #346386) (Closes: #627642)
#: apt-pkg/acquire-item.cc
#, c-format
-msgid "GPG error: %s: %s"
-msgstr "GPG 错误:%s: %s"
+msgid "OpenPGP signature verification failed: %s: %s"
+msgstr ""
#: apt-pkg/acquire-item.cc
#, c-format
@@ -1839,6 +1843,12 @@ msgid "Broken packages"
msgstr "破损的软件包"
#: apt-private/private-install.cc
+#, fuzzy
+#| msgid "Write error"
+msgid "Writing error report"
+msgstr "写出错"
+
+#: apt-private/private-install.cc
msgid ""
"Unmerged usr is no longer supported, use usrmerge to convert to a merged-usr "
"system."
@@ -2069,6 +2079,10 @@ msgid_plural ""
msgstr[0] "%lu 个自动安装的的软件包现在已不再需要了。\n"
#: apt-private/private-install.cc
+msgid "Result calculated by the 3.0 solver."
+msgstr ""
+
+#: apt-private/private-install.cc
msgid "Suggested packages:"
msgstr "建议安装:"
@@ -3837,6 +3851,10 @@ msgstr "无法设置文件的修改日期"
msgid "Empty files can't be valid archives"
msgstr "空文件不是有效归档"
+#, c-format
+#~ msgid "GPG error: %s: %s"
+#~ msgstr "GPG 错误:%s: %s"
+
#, fuzzy, c-format
#~| msgid ""
#~| "Key is stored in legacy trusted.gpg keyring (%s), see the DEPRECATION "
diff --git a/po/zh_TW.po b/po/zh_TW.po
index e1ad2bfbf..8ba29f72d 100644
--- a/po/zh_TW.po
+++ b/po/zh_TW.po
@@ -12,7 +12,7 @@ msgid ""
msgstr ""
"Project-Id-Version: apt 1.2.X\n"
"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
-"POT-Creation-Date: 2025-02-16 16:59+0000\n"
+"POT-Creation-Date: 2025-03-09 17:32+0000\n"
"PO-Revision-Date: 2009-01-28 10:41+0800\n"
"Last-Translator: Tetralet <tetralet@gmail.com>\n"
"Language-Team: Debian-user in Chinese [Big5] <debian-chinese-"
@@ -121,13 +121,14 @@ msgstr ""
#, c-format
msgid ""
"An error occurred during the signature verification. The repository is not "
-"updated and the previous index files will be used. GPG error: %s: %s"
+"updated and the previous index files will be used. OpenPGP signature "
+"verification failed: %s: %s"
msgstr ""
#. Invalid signature file, reject (LP: #346386) (Closes: #627642)
#: apt-pkg/acquire-item.cc
#, c-format
-msgid "GPG error: %s: %s"
+msgid "OpenPGP signature verification failed: %s: %s"
msgstr ""
#: apt-pkg/acquire-item.cc
@@ -1821,6 +1822,12 @@ msgid "Broken packages"
msgstr "損毀的套件"
#: apt-private/private-install.cc
+#, fuzzy
+#| msgid "Write error"
+msgid "Writing error report"
+msgstr "寫入錯誤"
+
+#: apt-private/private-install.cc
msgid ""
"Unmerged usr is no longer supported, use usrmerge to convert to a merged-usr "
"system."
@@ -2057,6 +2064,10 @@ msgstr[0] "以下套件是被自動安裝進來的,且已不再會被用到了
msgstr[1] "以下套件是被自動安裝進來的,且已不再會被用到了:"
#: apt-private/private-install.cc
+msgid "Result calculated by the 3.0 solver."
+msgstr ""
+
+#: apt-private/private-install.cc
msgid "Suggested packages:"
msgstr "建議套件:"