From c9390165718d4cf0ec43a0af01f06d6628717905 Mon Sep 17 00:00:00 2001 From: Julian Andres Klode Date: Wed, 28 Jun 2017 19:53:45 +0200 Subject: Upload 1.5~alpha1 to experimental --- CMakeLists.txt | 2 +- debian/NEWS | 19 ++++++- debian/changelog | 41 ++++++++++++++ doc/apt-get.8.xml | 2 +- doc/apt-verbatim.ent | 2 +- doc/apt.conf.5.xml | 2 +- doc/po/apt-doc.pot | 103 +++++++++++++++++++++++++--------- doc/po/de.po | 153 +++++++++++++++++++++++++++++++++++++------------- doc/po/es.po | 119 ++++++++++++++++++++++++++++----------- doc/po/fr.po | 151 +++++++++++++++++++++++++++++++++++++------------ doc/po/it.po | 117 ++++++++++++++++++++++++++++---------- doc/po/ja.po | 149 +++++++++++++++++++++++++++++++++++++------------ doc/po/nl.po | 155 ++++++++++++++++++++++++++++++++++++++------------- doc/po/pl.po | 121 +++++++++++++++++++++++++++++----------- doc/po/pt.po | 119 ++++++++++++++++++++++++++++----------- doc/po/pt_BR.po | 98 ++++++++++++++++++++++++-------- po/apt-all.pot | 59 ++++++++++++++++---- po/ar.po | 57 +++++++++++++++---- po/ast.po | 57 +++++++++++++++---- po/bg.po | 66 ++++++++++++++++++---- po/bs.po | 57 +++++++++++++++---- po/ca.po | 78 +++++++++++++++++++++----- po/cs.po | 83 +++++++++++++++++++++------ po/cy.po | 57 +++++++++++++++---- po/da.po | 117 ++++++++++++++++++++++++++++---------- po/de.po | 66 ++++++++++++++++++---- po/dz.po | 57 +++++++++++++++---- po/el.po | 57 +++++++++++++++---- po/es.po | 78 +++++++++++++++++++++----- po/eu.po | 57 +++++++++++++++---- po/fi.po | 57 +++++++++++++++---- po/fr.po | 66 ++++++++++++++++++---- po/gl.po | 66 ++++++++++++++++++---- po/hu.po | 78 +++++++++++++++++++++----- po/it.po | 66 ++++++++++++++++++---- po/ja.po | 78 +++++++++++++++++++++----- po/km.po | 57 +++++++++++++++---- po/ko.po | 57 +++++++++++++++---- po/ku.po | 57 +++++++++++++++---- po/lt.po | 57 +++++++++++++++---- po/mr.po | 57 +++++++++++++++---- po/nb.po | 57 +++++++++++++++---- po/ne.po | 57 +++++++++++++++---- po/nl.po | 78 +++++++++++++++++++++----- po/nn.po | 57 +++++++++++++++---- po/pl.po | 66 ++++++++++++++++++---- po/pt.po | 66 ++++++++++++++++++---- po/pt_BR.po | 57 +++++++++++++++---- po/ro.po | 57 +++++++++++++++---- po/ru.po | 78 +++++++++++++++++++++----- po/sk.po | 66 ++++++++++++++++++---- po/sl.po | 66 ++++++++++++++++++---- po/sv.po | 68 +++++++++++++++++----- po/th.po | 66 ++++++++++++++++++---- po/tl.po | 57 +++++++++++++++---- po/tr.po | 78 +++++++++++++++++++++----- po/uk.po | 66 ++++++++++++++++++---- po/vi.po | 66 ++++++++++++++++++---- po/zh_CN.po | 74 +++++++++++++++++++----- po/zh_TW.po | 57 +++++++++++++++---- 60 files changed, 3385 insertions(+), 847 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index a0690923c..fbed3180a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -182,7 +182,7 @@ endif() # Configure some variables like package, version and architecture. set(PACKAGE ${PROJECT_NAME}) set(PACKAGE_MAIL "APT Development Team ") -set(PACKAGE_VERSION "1.4.6") +set(PACKAGE_VERSION "1.5~alpha1") if (NOT DEFINED DPKG_DATADIR) execute_process(COMMAND ${PERL_EXECUTABLE} -MDpkg -e "print $Dpkg::DATADIR;" diff --git a/debian/NEWS b/debian/NEWS index 00cb9be46..5722ca0c5 100644 --- a/debian/NEWS +++ b/debian/NEWS @@ -1,5 +1,6 @@ -apt (1.5~) UNRELEASED; urgency=medium +apt (1.5~alpha1) experimental; urgency=medium + [ Changes to unauthenticated repositories ] The security exception for apt-get to only raise warnings if it encounters unauthenticated repositories in the "update" command is gone now, so that it will raise errors just like apt and all other apt-based front-ends do since @@ -10,7 +11,21 @@ apt (1.5~) UNRELEASED; urgency=medium Binary::apt-get::Acquire::AllowInsecureRepositories "true"; See apt-secure(8) manpage for configuration details. - -- David Kalnischkies Wed, 28 Jun 2017 12:37:12 +0200 + [ Experimental https support in http ] + The http method will eventually replace the curl-based https method, but for + now, this is an opt-in experiment that can be enabled by setting + Dir::Bin::Methods::https to "http". Known issues: + - We do not support HTTPS proxies yet + - We do not support proxying HTTPS connections yet (CONNECT) + - IssuerCert and SslForceVersion are unsupported + TLS code paths can be disabled by setting Acquire::AllowTLS to "false". + + [ Release Info Changes ] + If values like Origin, Label, and Codename change in a Release file, + update fails, or asks a user (if interactive). Various + --allow-releaseinfo-change are provided for non-interactive use. + + -- Julian Andres Klode Wed, 28 Jun 2017 19:49:30 +0200 apt (1.4.2) unstable; urgency=medium diff --git a/debian/changelog b/debian/changelog index f19355c35..db6fe935f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,44 @@ +apt (1.5~alpha1) experimental; urgency=medium + + [ Julian Andres Klode ] + * pkgcache: Bump major version to 12 + * Squashed 'triehash/' changes from 565fde4e7..0ca66b761 + * methods: Add HTTPS support to http method, using GnuTLS. + The http method will eventually replace the curl-based + https method, but for now, this is an opt-in experiment + that can be enabled by setting Dir::Bin::Methods::https + to "http". + Known issues: + - We do not support HTTPS proxies yet + - We do not support proxying HTTPS connections yet (CONNECT) + - IssuerCert and SslForceVersion are unsupported + * Allow building without curl + * Introduce Acquire::AllowTLS to turn off TLS support + * Skip test-apt-download-progress + * Strip 0: epochs from the version hash + + [ David Kalnischkies ] + * schedule the correct side of the conflict for removal. + Thanks to Michael Biebl for helping find this with countless tests + * don't show incorrect 'How odd' errror in no-download mode (Closes: 863635) + * Show permission error if ProxyAutoDetect cmd can't be executed + (Closes: 857885) + * Avoid chdir in acquire clean with unlinkat (Closes: 860738) + * ident a CD without changing directory + * clean archives without changing directory + * avoid changing directory in mirror method + * warn if an expected file can't be acquired + * show .diff/Index properly as ignored if we fallback + * fail InRelease on non-404 HTTP errorcodes + * deal with 3xx httpcodes as required by HTTP/1.1 spec + * fail instead of warn on insecure repositories in apt-get + * error in update on Release information changes + * show a Release-Notes URI if infos were changed + * allow frontends to override releaseinfo change behaviour + * ask for releaseinfo change interactively in apt + + -- Julian Andres Klode Wed, 28 Jun 2017 19:52:24 +0200 + apt (1.4.6) unstable; urgency=medium * apt.systemd.daily: Do not pass -d to unattended-upgrade for the download diff --git a/doc/apt-get.8.xml b/doc/apt-get.8.xml index a38a14e0c..080ddf353 100644 --- a/doc/apt-get.8.xml +++ b/doc/apt-get.8.xml @@ -14,7 +14,7 @@ &apt-email; &apt-product; - 2017-02-22T00:00:00Z + 2017-04-12T00:00:00Z diff --git a/doc/apt-verbatim.ent b/doc/apt-verbatim.ent index 7d36648be..11951bdb4 100644 --- a/doc/apt-verbatim.ent +++ b/doc/apt-verbatim.ent @@ -239,7 +239,7 @@ "> - + diff --git a/doc/apt.conf.5.xml b/doc/apt.conf.5.xml index 54ed78c95..6f47bb029 100644 --- a/doc/apt.conf.5.xml +++ b/doc/apt.conf.5.xml @@ -19,7 +19,7 @@ &apt-email; &apt-product; - 2016-11-25T00:00:00Z + 2017-06-28T00:00:00Z diff --git a/doc/po/apt-doc.pot b/doc/po/apt-doc.pot index e5d9cf9de..8751bce5f 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 1.4.6\n" +"Project-Id-Version: apt-doc 1.5~alpha1\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2017-06-01 10:51+0200\n" +"POT-Creation-Date: 2017-06-28 19:53+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -1411,6 +1411,30 @@ msgid "" "Acquire::AllowInsecureRepositories." msgstr "" +#. type: Content of: +#: apt-get.8.xml:1 +msgid "" +"Allow the update command to continue downloading data from a repository " +"which changed its information of the release contained in the repository " +"indicating e.g a new major release. APT will fail at the update command for " +"such repositories until the change is confirmed to ensure the user is " +"prepared for the change. See also &apt-secure; for details on the concept " +"and configuration." +msgstr "" + +#. type: Content of: +#: apt-get.8.xml:1 +msgid "" +"Specialist options " +"(--allow-releaseinfo-changes-field) " +"exist to allow changes only for certain fields like " +"origin, label, " +"codename, suite, " +"version and defaultpin. See also " +"&apt-preferences;. Configuration Item: " +"Acquire::AllowReleaseInfoChanges." +msgstr "" + #. type: Content of: #: apt-get.8.xml:1 msgid "" @@ -2229,7 +2253,23 @@ msgid "" "that data like packages in the archive can't be modified by people who have " "no access to the Release file signing key. Starting with version 1.1 " "APT requires repositories to provide recent " -"authentication information for unimpeded usage of the repository." +"authentication information for unimpeded usage of the repository. Since " +"version 1.5 changes in the information contained in the Release file about " +"the repository need to be confirmed before APT continues to apply updates " +"from this repository." +msgstr "" + +#. type: Content of: +#: apt-secure.8.xml:1 +msgid "" +"Note: All APT-based package management front-ends like &apt-get;, &aptitude; " +"and &synaptic; support this authentication feature, so this manpage uses " +"APT to refer to them all for simplicity only." +msgstr "" + +#. type: Content of: +#: apt-secure.8.xml:1 +msgid "Unsigned Repositories" msgstr "" #. type: Content of: <refentry><refsect1><para> @@ -2243,19 +2283,6 @@ msgid "" "archive." msgstr "" -#. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:1 -msgid "" -"As a temporary exception &apt-get; (not &apt;!) raises warnings only if it " -"encounters unauthenticated archives to give a slightly longer grace period " -"on this backward compatibility effecting change. This exception will be " -"removed in future releases and you can opt-out of this grace period by " -"setting the configuration option " -"<option>Binary::apt-get::Acquire::AllowInsecureRepositories</option> to " -"<literal>false</literal> or " -"<option>--no-allow-insecure-repositories</option> on the command line." -msgstr "" - #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml:1 msgid "" @@ -2282,17 +2309,9 @@ msgid "" "&sources-list; option <literal>allow-downgrade-to-insecure=yes</literal>." msgstr "" -#. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml:1 -msgid "" -"Note: All APT-based package management front-ends like &apt-get;, &aptitude; " -"and &synaptic; support this authentication feature, so this manpage uses " -"<literal>APT</literal> to refer to them all for simplicity only." -msgstr "" - #. type: Content of: <refentry><refsect1><title> #: apt-secure.8.xml:1 -msgid "Trusted Repositories" +msgid "Signed Repositories" msgstr "" #. type: Content of: <refentry><refsect1><para> @@ -2383,6 +2402,30 @@ msgid "" "signature." msgstr "" +#. type: Content of: <refentry><refsect1><title> +#: apt-secure.8.xml:1 +msgid "Information changes" +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt-secure.8.xml:1 +msgid "" +"A Release file contains beside the checksums for the files in the repository " +"also general information about the repository like the origin, codename or " +"version number of the release." +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt-secure.8.xml:1 +msgid "" +"This information is shown in various places so a repository owner should " +"always ensure correctness. Further more user configuration like " +"&apt-preferences; can depend and make use of this information. Since version " +"1.5 the user must therefore explicitly confirm changes to signal that the " +"user is sufficently prepared e.g. for the new major release of the " +"distribution shipped in the repository (as e.g. indicated by the codename)." +msgstr "" + #. type: Content of: <refentry><refsect1><title> #: apt-secure.8.xml:1 msgid "User Configuration" @@ -2419,7 +2462,7 @@ msgstr "" #. type: Content of: <refentry><refsect1><title> #: apt-secure.8.xml:1 -msgid "Archive Configuration" +msgid "Repository Configuration" msgstr "" #. type: Content of: <refentry><refsect1><para> @@ -3168,6 +3211,14 @@ msgid "" "<option>Valid-Until-Min</option> option there." msgstr "" +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:1 +msgid "" +"Allow use of the internal TLS support in the http method. If set to false, " +"this completely disables support for TLS in apt's own methods (excluding the " +"curl-based https method). No TLS-related functions will be called anymore." +msgstr "" + #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:1 msgid "" diff --git a/doc/po/de.po b/doc/po/de.po index 211026f79..8e8ee0b7d 100644 --- a/doc/po/de.po +++ b/doc/po/de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: apt-doc 1.3\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2017-06-01 10:51+0200\n" +"POT-Creation-Date: 2017-06-28 19:53+0200\n" "PO-Revision-Date: 2016-11-15 21:51+0200\n" "Last-Translator: Chris Leick <c.leick@vollbio.de>\n" "Language-Team: German <debian-l10n-german@lists.debian.org>\n" @@ -1977,6 +1977,28 @@ msgstr "" "das Konzept und was daraus folgt, finden Sie unter &apt-secure;. " "Konfigurationselement: <literal>Acquire::AllowInsecureRepositories</literal>." +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml +msgid "" +"Allow the update command to continue downloading data from a repository " +"which changed its information of the release contained in the repository " +"indicating e.g a new major release. APT will fail at the update command for " +"such repositories until the change is confirmed to ensure the user is " +"prepared for the change. See also &apt-secure; for details on the concept " +"and configuration." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml +msgid "" +"Specialist options (<literal>--allow-releaseinfo-changes-</" +"literal><replaceable>field</replaceable>) exist to allow changes only for " +"certain fields like <literal>origin</literal>, <literal>label</literal>, " +"<literal>codename</literal>, <literal>suite</literal>, <literal>version</" +"literal> and <literal>defaultpin</literal>. See also &apt-preferences;. " +"Configuration Item: <literal>Acquire::AllowReleaseInfoChanges</literal>." +msgstr "" + #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml msgid "" @@ -3127,13 +3149,24 @@ msgstr "Archivauthentifizierungsunterstützung für APT" #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml +#, fuzzy +#| msgid "" +#| "Starting with version 0.6, <command>APT</command> contains code that does " +#| "signature checking of the Release file for all repositories. This ensures " +#| "that data like packages in the archive can't be modified by people who " +#| "have no access to the Release file signing key. Starting with version 1.1 " +#| "<command>APT</command> requires repositories to provide recent " +#| "authentication information for unimpeded usage of the repository." msgid "" "Starting with version 0.6, <command>APT</command> contains code that does " "signature checking of the Release file for all repositories. This ensures " "that data like packages in the archive can't be modified by people who have " "no access to the Release file signing key. Starting with version 1.1 " "<command>APT</command> requires repositories to provide recent " -"authentication information for unimpeded usage of the repository." +"authentication information for unimpeded usage of the repository. Since " +"version 1.5 changes in the information contained in the Release file about " +"the repository need to be confirmed before APT continues to apply updates " +"from this repository." msgstr "" "Beginnend mit Version 0.6 enthält <command>APT</command> Code, der die " "Signatur der Release-Datei für alle Depots prüft. Dies stellt sicher, dass " @@ -3143,6 +3176,25 @@ msgstr "" "Authentifizierungsinformationen für den ungestörten Gebrauch des Depots " "bereitzustellen." +#. type: Content of: <refentry><refsect1><para> +#: apt-secure.8.xml +msgid "" +"Note: All APT-based package management front-ends like &apt-get;, &aptitude; " +"and &synaptic; support this authentication feature, so this manpage uses " +"<literal>APT</literal> to refer to them all for simplicity only." +msgstr "" +"Hinweis: Alle APT-basierten Paketverwaltungsoberflächen wie &apt-get;, " +"&aptitude; und &synaptic; unterstützen diese " +"Authentifizierungsfunktionalität, daher verwendet diese Handbuchseite der " +"Einfachheit halber exemplarisch für alle <literal>APT</literal>." + +#. type: Content of: <refentry><refsect1><title> +#: apt-secure.8.xml +#, fuzzy +#| msgid "Trusted Repositories" +msgid "Unsigned Repositories" +msgstr "Vertrauenswürdige Depots" + #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml msgid "" @@ -3159,27 +3211,6 @@ msgstr "" "wird eine explizite Bestätigung benötigt, falls eine Installationsanfrage " "ein Paket aus einem derartigen nicht authentifizierten Archiv enthält." -#. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml -msgid "" -"As a temporary exception &apt-get; (not &apt;!) raises warnings only if it " -"encounters unauthenticated archives to give a slightly longer grace period " -"on this backward compatibility effecting change. This exception will be " -"removed in future releases and you can opt-out of this grace period by " -"setting the configuration option <option>Binary::apt-get::Acquire::" -"AllowInsecureRepositories</option> to <literal>false</literal> or <option>--" -"no-allow-insecure-repositories</option> on the command line." -msgstr "" -"Als befristete Ausnahme gibt &apt-get; (nicht &apt;!) Warnungen nur dann " -"aus, falls es nicht authentifizierte Archive vorfindet, um eine etwas " -"längere Übergangsfrist für die Änderung zu geben, die die " -"Rückwärtskompatibilität beeinflusst. Diese Ausnahme wird in zukünftigen " -"Veröffentlichungen entfernt und sie können sich von dieser Übergangsfrist " -"abmelden, indem Sie die Konfigurationsoption <option>Binary::apt-get::" -"Acquire::AllowInsecureRepositories</option> auf <literal>false</literal> " -"oder <option>--no-allow-insecure-repositories</option> auf der Befehlszeile " -"setzen." - #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml msgid "" @@ -3223,21 +3254,11 @@ msgstr "" "<literal>true</literal> oder für individuelle Depots mit der &sources-list;-" "Option <literal>allow-downgrade-to-insecure=yes</literal> übergangen werden." -#. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml -msgid "" -"Note: All APT-based package management front-ends like &apt-get;, &aptitude; " -"and &synaptic; support this authentication feature, so this manpage uses " -"<literal>APT</literal> to refer to them all for simplicity only." -msgstr "" -"Hinweis: Alle APT-basierten Paketverwaltungsoberflächen wie &apt-get;, " -"&aptitude; und &synaptic; unterstützen diese " -"Authentifizierungsfunktionalität, daher verwendet diese Handbuchseite der " -"Einfachheit halber exemplarisch für alle <literal>APT</literal>." - #. type: Content of: <refentry><refsect1><title> #: apt-secure.8.xml -msgid "Trusted Repositories" +#, fuzzy +#| msgid "Trusted Repositories" +msgid "Signed Repositories" msgstr "Vertrauenswürdige Depots" #. type: Content of: <refentry><refsect1><para> @@ -3375,6 +3396,30 @@ msgstr "" "der zum Signieren der Release-Dateien benutzt wird. In jedem Fall kann " "dieser Mechanismus eine Signatur pro Paket ergänzen." +#. type: Content of: <refentry><refsect1><title> +#: apt-secure.8.xml +msgid "Information changes" +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt-secure.8.xml +msgid "" +"A Release file contains beside the checksums for the files in the repository " +"also general information about the repository like the origin, codename or " +"version number of the release." +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt-secure.8.xml +msgid "" +"This information is shown in various places so a repository owner should " +"always ensure correctness. Further more user configuration like &apt-" +"preferences; can depend and make use of this information. Since version 1.5 " +"the user must therefore explicitly confirm changes to signal that the user " +"is sufficently prepared e.g. for the new major release of the distribution " +"shipped in the repository (as e.g. indicated by the codename)." +msgstr "" + #. type: Content of: <refentry><refsect1><title> #: apt-secure.8.xml msgid "User Configuration" @@ -3428,8 +3473,10 @@ msgstr "" #. type: Content of: <refentry><refsect1><title> #: apt-secure.8.xml -msgid "Archive Configuration" -msgstr "Archivkonfiguration" +#, fuzzy +#| msgid "User Configuration" +msgid "Repository Configuration" +msgstr "Benutzerkonfiguration" #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml @@ -4539,6 +4586,14 @@ msgstr "" "&sources-list;-Einträge erreicht werden, indem dort die Option <option>Valid-" "Until-Min</option> benutzt wird." +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml +msgid "" +"Allow use of the internal TLS support in the http method. If set to false, " +"this completely disables support for TLS in apt's own methods (excluding the " +"curl-based https method). No TLS-related functions will be called anymore." +msgstr "" + #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml msgid "" @@ -11334,3 +11389,25 @@ msgstr " # apt-get -o dir::cache::archives=\"/Platte/\" dist-upgrade\n" #: offline.dbk msgid "Which will use the already fetched archives on the disc." msgstr "Es wird die bereits auf die Platte heruntergeladenen Archive benutzen." + +#~ msgid "" +#~ "As a temporary exception &apt-get; (not &apt;!) raises warnings only if " +#~ "it encounters unauthenticated archives to give a slightly longer grace " +#~ "period on this backward compatibility effecting change. This exception " +#~ "will be removed in future releases and you can opt-out of this grace " +#~ "period by setting the configuration option <option>Binary::apt-get::" +#~ "Acquire::AllowInsecureRepositories</option> to <literal>false</literal> " +#~ "or <option>--no-allow-insecure-repositories</option> on the command line." +#~ msgstr "" +#~ "Als befristete Ausnahme gibt &apt-get; (nicht &apt;!) Warnungen nur dann " +#~ "aus, falls es nicht authentifizierte Archive vorfindet, um eine etwas " +#~ "längere Übergangsfrist für die Änderung zu geben, die die " +#~ "Rückwärtskompatibilität beeinflusst. Diese Ausnahme wird in zukünftigen " +#~ "Veröffentlichungen entfernt und sie können sich von dieser Übergangsfrist " +#~ "abmelden, indem Sie die Konfigurationsoption <option>Binary::apt-get::" +#~ "Acquire::AllowInsecureRepositories</option> auf <literal>false</literal> " +#~ "oder <option>--no-allow-insecure-repositories</option> auf der " +#~ "Befehlszeile setzen." + +#~ msgid "Archive Configuration" +#~ msgstr "Archivkonfiguration" diff --git a/doc/po/es.po b/doc/po/es.po index f2f54f198..590befbc4 100644 --- a/doc/po/es.po +++ b/doc/po/es.po @@ -38,7 +38,7 @@ msgid "" msgstr "" "Project-Id-Version: apt-doc 1.0.5\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2017-06-01 10:51+0200\n" +"POT-Creation-Date: 2017-06-28 19:53+0200\n" "PO-Revision-Date: 2014-07-04 01:31+0200\n" "Last-Translator: Omar Campagne <ocampagne@gmail.com>\n" "Language-Team: Debian l10n Spanish <debian-l10n-spanish@lists.debian.org>\n" @@ -2050,6 +2050,28 @@ msgid "" "AllowInsecureRepositories</literal>." msgstr "" +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml +msgid "" +"Allow the update command to continue downloading data from a repository " +"which changed its information of the release contained in the repository " +"indicating e.g a new major release. APT will fail at the update command for " +"such repositories until the change is confirmed to ensure the user is " +"prepared for the change. See also &apt-secure; for details on the concept " +"and configuration." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml +msgid "" +"Specialist options (<literal>--allow-releaseinfo-changes-</" +"literal><replaceable>field</replaceable>) exist to allow changes only for " +"certain fields like <literal>origin</literal>, <literal>label</literal>, " +"<literal>codename</literal>, <literal>suite</literal>, <literal>version</" +"literal> and <literal>defaultpin</literal>. See also &apt-preferences;. " +"Configuration Item: <literal>Acquire::AllowReleaseInfoChanges</literal>." +msgstr "" + #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml msgid "" @@ -3177,7 +3199,10 @@ msgid "" "that data like packages in the archive can't be modified by people who have " "no access to the Release file signing key. Starting with version 1.1 " "<command>APT</command> requires repositories to provide recent " -"authentication information for unimpeded usage of the repository." +"authentication information for unimpeded usage of the repository. Since " +"version 1.5 changes in the information contained in the Release file about " +"the repository need to be confirmed before APT continues to apply updates " +"from this repository." msgstr "" "Desde la versión 0.6, <command>apt</command> contiene el código que realiza " "la comprobación de la firma del fichero «Release» para todos los archivos. " @@ -3186,24 +3211,33 @@ msgstr "" #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml +#, fuzzy +#| msgid "" +#| "The package front-ends &apt-get;, &aptitude; and &synaptic; support this " +#| "new authentication feature." msgid "" -"If an archive has an unsigned Release file or no Release file at all current " -"APT versions will refuse to download data from them by default in " -"<command>update</command> operations and even if forced to download front-" -"ends like &apt-get; will require explicit confirmation if an installation " -"request includes a package from such an unauthenticated archive." +"Note: All APT-based package management front-ends like &apt-get;, &aptitude; " +"and &synaptic; support this authentication feature, so this manpage uses " +"<literal>APT</literal> to refer to them all for simplicity only." msgstr "" +"Las interfaces de gestión de paquetes &apt-get;, &aptitude; y &synaptic; " +"pueden usar esta nueva funcionalidad de autenticación." + +#. type: Content of: <refentry><refsect1><title> +#: apt-secure.8.xml +#, fuzzy +#| msgid "Trusted archives" +msgid "Unsigned Repositories" +msgstr "Archivos de confianza" #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml msgid "" -"As a temporary exception &apt-get; (not &apt;!) raises warnings only if it " -"encounters unauthenticated archives to give a slightly longer grace period " -"on this backward compatibility effecting change. This exception will be " -"removed in future releases and you can opt-out of this grace period by " -"setting the configuration option <option>Binary::apt-get::Acquire::" -"AllowInsecureRepositories</option> to <literal>false</literal> or <option>--" -"no-allow-insecure-repositories</option> on the command line." +"If an archive has an unsigned Release file or no Release file at all current " +"APT versions will refuse to download data from them by default in " +"<command>update</command> operations and even if forced to download front-" +"ends like &apt-get; will require explicit confirmation if an installation " +"request includes a package from such an unauthenticated archive." msgstr "" #. type: Content of: <refentry><refsect1><para> @@ -3232,25 +3266,11 @@ msgid "" "list; option <literal>allow-downgrade-to-insecure=yes</literal>." msgstr "" -#. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml -#, fuzzy -#| msgid "" -#| "The package front-ends &apt-get;, &aptitude; and &synaptic; support this " -#| "new authentication feature." -msgid "" -"Note: All APT-based package management front-ends like &apt-get;, &aptitude; " -"and &synaptic; support this authentication feature, so this manpage uses " -"<literal>APT</literal> to refer to them all for simplicity only." -msgstr "" -"Las interfaces de gestión de paquetes &apt-get;, &aptitude; y &synaptic; " -"pueden usar esta nueva funcionalidad de autenticación." - #. type: Content of: <refentry><refsect1><title> #: apt-secure.8.xml #, fuzzy #| msgid "Trusted archives" -msgid "Trusted Repositories" +msgid "Signed Repositories" msgstr "Archivos de confianza" #. type: Content of: <refentry><refsect1><para> @@ -3409,6 +3429,30 @@ msgstr "" "«Release» comprometida. En cualquier caso, este mecanismo puede complementar " "una firma por paquete." +#. type: Content of: <refentry><refsect1><title> +#: apt-secure.8.xml +msgid "Information changes" +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt-secure.8.xml +msgid "" +"A Release file contains beside the checksums for the files in the repository " +"also general information about the repository like the origin, codename or " +"version number of the release." +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt-secure.8.xml +msgid "" +"This information is shown in various places so a repository owner should " +"always ensure correctness. Further more user configuration like &apt-" +"preferences; can depend and make use of this information. Since version 1.5 " +"the user must therefore explicitly confirm changes to signal that the user " +"is sufficently prepared e.g. for the new major release of the distribution " +"shipped in the repository (as e.g. indicated by the codename)." +msgstr "" + #. type: Content of: <refentry><refsect1><title> #: apt-secure.8.xml msgid "User Configuration" @@ -3462,8 +3506,10 @@ msgstr "" #. type: Content of: <refentry><refsect1><title> #: apt-secure.8.xml -msgid "Archive Configuration" -msgstr "Configuración del archivo" +#, fuzzy +#| msgid "User Configuration" +msgid "Repository Configuration" +msgstr "Configuración de usuario" #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml @@ -4554,6 +4600,14 @@ msgstr "" "vencimiento. Las opciones de configuración específicas del archivo se pueden " "y deben utilizar añadiendo la etiqueta del archivo al nombre de opción." +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml +msgid "" +"Allow use of the internal TLS support in the http method. If set to false, " +"this completely disables support for TLS in apt's own methods (excluding the " +"curl-based https method). No TLS-related functions will be called anymore." +msgstr "" + #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml #, fuzzy @@ -11164,6 +11218,9 @@ msgstr " # apt-get -o dir::cache::archives=\"/disc/\" dist-upgrade\n" msgid "Which will use the already fetched archives on the disc." msgstr "Esto utiliza los archivos del disco previamente obtenidos." +#~ msgid "Archive Configuration" +#~ msgstr "Configuración del archivo" + #~ msgid "dpkg trigger usage (and related options)" #~ msgstr "Uso del disparador de dpkg (y de las opciones relacionadas)" diff --git a/doc/po/fr.po b/doc/po/fr.po index 56bded828..1a157fc23 100644 --- a/doc/po/fr.po +++ b/doc/po/fr.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: apt-doc 1.0.5\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2017-06-01 10:51+0200\n" +"POT-Creation-Date: 2017-06-28 19:53+0200\n" "PO-Revision-Date: 2017-01-24 22:43+0100\n" "Last-Translator: Jean-Pierre Giraud <jean-pierregiraud@neuf.fr>\n" "Language-Team: French <debian-l10n-french@lists.debian.org>\n" @@ -1972,6 +1972,28 @@ msgstr "" "détails sur le concept et ses implications. Élément de configuration : " "<literal>Acquire::AllowInsecureRepositories</literal>." +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml +msgid "" +"Allow the update command to continue downloading data from a repository " +"which changed its information of the release contained in the repository " +"indicating e.g a new major release. APT will fail at the update command for " +"such repositories until the change is confirmed to ensure the user is " +"prepared for the change. See also &apt-secure; for details on the concept " +"and configuration." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml +msgid "" +"Specialist options (<literal>--allow-releaseinfo-changes-</" +"literal><replaceable>field</replaceable>) exist to allow changes only for " +"certain fields like <literal>origin</literal>, <literal>label</literal>, " +"<literal>codename</literal>, <literal>suite</literal>, <literal>version</" +"literal> and <literal>defaultpin</literal>. See also &apt-preferences;. " +"Configuration Item: <literal>Acquire::AllowReleaseInfoChanges</literal>." +msgstr "" + #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml msgid "" @@ -3129,13 +3151,24 @@ msgstr "Gestion de l'authentification d'archive avec APT" #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml +#, fuzzy +#| msgid "" +#| "Starting with version 0.6, <command>APT</command> contains code that does " +#| "signature checking of the Release file for all repositories. This ensures " +#| "that data like packages in the archive can't be modified by people who " +#| "have no access to the Release file signing key. Starting with version 1.1 " +#| "<command>APT</command> requires repositories to provide recent " +#| "authentication information for unimpeded usage of the repository." msgid "" "Starting with version 0.6, <command>APT</command> contains code that does " "signature checking of the Release file for all repositories. This ensures " "that data like packages in the archive can't be modified by people who have " "no access to the Release file signing key. Starting with version 1.1 " "<command>APT</command> requires repositories to provide recent " -"authentication information for unimpeded usage of the repository." +"authentication information for unimpeded usage of the repository. Since " +"version 1.5 changes in the information contained in the Release file about " +"the repository need to be confirmed before APT continues to apply updates " +"from this repository." msgstr "" "Depuis sa version 0.6, <command>apt</command> sait vérifier la signature du " "fichier Release de chaque archive. On s'assure ainsi que les paquets de " @@ -3144,6 +3177,25 @@ msgstr "" "<command>apt</command> exige que les dépôts fournissent des informations " "récentes d'authentification pour une utilisation libre du dépôt." +#. type: Content of: <refentry><refsect1><para> +#: apt-secure.8.xml +msgid "" +"Note: All APT-based package management front-ends like &apt-get;, &aptitude; " +"and &synaptic; support this authentication feature, so this manpage uses " +"<literal>APT</literal> to refer to them all for simplicity only." +msgstr "" +"Attention : toutes les interfaces de gestion de paquets comme &apt-get;, " +"&aptitude; et &synaptic; possèdent cette fonction de certification, aussi " +"cette page de manuel utilise <literal>APT</literal> pour se référer à " +"l'ensemble d'entre elles, pour des raisons de simplicité." + +#. type: Content of: <refentry><refsect1><title> +#: apt-secure.8.xml +#, fuzzy +#| msgid "Trusted Repositories" +msgid "Unsigned Repositories" +msgstr "Archives de confiance" + #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml msgid "" @@ -3160,26 +3212,6 @@ msgstr "" "confirmation explicite si une installation inclut un paquet d'une archive " "non authentifiée." -#. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml -msgid "" -"As a temporary exception &apt-get; (not &apt;!) raises warnings only if it " -"encounters unauthenticated archives to give a slightly longer grace period " -"on this backward compatibility effecting change. This exception will be " -"removed in future releases and you can opt-out of this grace period by " -"setting the configuration option <option>Binary::apt-get::Acquire::" -"AllowInsecureRepositories</option> to <literal>false</literal> or <option>--" -"no-allow-insecure-repositories</option> on the command line." -msgstr "" -"Comme exception temporaire, &apt-get; (pas &apt; !) émet seulement une mise " -"en garde s'il rencontre des archives non authentifiées pour accorder une " -"période de grâce un peu plus longue à cette modification affectant la " -"compatibilité ascendante. Cette exception disparaîtra dans les futures " -"versions et vous pouvez renoncer à ce délai de grâce en configurant l'option " -"<option>Binary::apt-get::Acquire::AllowInsecureRepositories</option> à " -"<literal>false</literal> ou en passant l'option <option>--no-allow-insecure-" -"repositories</option> sur la ligne de commande." - #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml msgid "" @@ -3224,21 +3256,11 @@ msgstr "" "pour des dépôts individuels avec l'option <literal>allow-downgrade-to-" "insecure=yes</literal> de &sources-list;." -#. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml -msgid "" -"Note: All APT-based package management front-ends like &apt-get;, &aptitude; " -"and &synaptic; support this authentication feature, so this manpage uses " -"<literal>APT</literal> to refer to them all for simplicity only." -msgstr "" -"Attention : toutes les interfaces de gestion de paquets comme &apt-get;, " -"&aptitude; et &synaptic; possèdent cette fonction de certification, aussi " -"cette page de manuel utilise <literal>APT</literal> pour se référer à " -"l'ensemble d'entre elles, pour des raisons de simplicité." - #. type: Content of: <refentry><refsect1><title> #: apt-secure.8.xml -msgid "Trusted Repositories" +#, fuzzy +#| msgid "Trusted Repositories" +msgid "Signed Repositories" msgstr "Archives de confiance" #. type: Content of: <refentry><refsect1><para> @@ -3375,6 +3397,30 @@ msgstr "" "clé qui sert à signer les fichiers Release. Mais elle peut compléter la " "signature des paquets." +#. type: Content of: <refentry><refsect1><title> +#: apt-secure.8.xml +msgid "Information changes" +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt-secure.8.xml +msgid "" +"A Release file contains beside the checksums for the files in the repository " +"also general information about the repository like the origin, codename or " +"version number of the release." +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt-secure.8.xml +msgid "" +"This information is shown in various places so a repository owner should " +"always ensure correctness. Further more user configuration like &apt-" +"preferences; can depend and make use of this information. Since version 1.5 " +"the user must therefore explicitly confirm changes to signal that the user " +"is sufficently prepared e.g. for the new major release of the distribution " +"shipped in the repository (as e.g. indicated by the codename)." +msgstr "" + #. type: Content of: <refentry><refsect1><title> #: apt-secure.8.xml msgid "User Configuration" @@ -3427,8 +3473,10 @@ msgstr "" #. type: Content of: <refentry><refsect1><title> #: apt-secure.8.xml -msgid "Archive Configuration" -msgstr "Configuration d'une archive" +#, fuzzy +#| msgid "User Configuration" +msgid "Repository Configuration" +msgstr "Configuration utilisateur" #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml @@ -4539,6 +4587,14 @@ msgstr "" "particulières de &sources-list; en utilisant ici l'option <option>Valid-" "Until-Min</option>." +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml +msgid "" +"Allow use of the internal TLS support in the http method. If set to false, " +"this completely disables support for TLS in apt's own methods (excluding the " +"curl-based https method). No TLS-related functions will be called anymore." +msgstr "" + #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml msgid "" @@ -11301,6 +11357,27 @@ msgstr " # apt-get -o dir::cache::archives=\"/disc/\" dist-upgrade\n" msgid "Which will use the already fetched archives on the disc." msgstr "Cette commande utilisera les fichiers récupérés sur le disque." +#~ msgid "" +#~ "As a temporary exception &apt-get; (not &apt;!) raises warnings only if " +#~ "it encounters unauthenticated archives to give a slightly longer grace " +#~ "period on this backward compatibility effecting change. This exception " +#~ "will be removed in future releases and you can opt-out of this grace " +#~ "period by setting the configuration option <option>Binary::apt-get::" +#~ "Acquire::AllowInsecureRepositories</option> to <literal>false</literal> " +#~ "or <option>--no-allow-insecure-repositories</option> on the command line." +#~ msgstr "" +#~ "Comme exception temporaire, &apt-get; (pas &apt; !) émet seulement une " +#~ "mise en garde s'il rencontre des archives non authentifiées pour accorder " +#~ "une période de grâce un peu plus longue à cette modification affectant la " +#~ "compatibilité ascendante. Cette exception disparaîtra dans les futures " +#~ "versions et vous pouvez renoncer à ce délai de grâce en configurant " +#~ "l'option <option>Binary::apt-get::Acquire::AllowInsecureRepositories</" +#~ "option> à <literal>false</literal> ou en passant l'option <option>--no-" +#~ "allow-insecure-repositories</option> sur la ligne de commande." + +#~ msgid "Archive Configuration" +#~ msgstr "Configuration d'une archive" + #~ msgid "dpkg trigger usage (and related options)" #~ msgstr "" #~ "utilisation des actions différées (« triggers ») de dpkg (et options " diff --git a/doc/po/it.po b/doc/po/it.po index 98d5a0784..209760f13 100644 --- a/doc/po/it.po +++ b/doc/po/it.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: apt-doc 1.0.5\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2017-06-01 10:51+0200\n" +"POT-Creation-Date: 2017-06-28 19:53+0200\n" "PO-Revision-Date: 2015-12-27 21:26+0200\n" "Last-Translator: Beatrice Torracca <beatricet@libero.it>\n" "Language-Team: Italian <debian-l10n-italian@lists.debian.org>\n" @@ -2036,6 +2036,28 @@ msgstr "" "crittografiche valide. Voce di configurazione: <literal>Acquire::" "AllowInsecureRepositories</literal>." +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml +msgid "" +"Allow the update command to continue downloading data from a repository " +"which changed its information of the release contained in the repository " +"indicating e.g a new major release. APT will fail at the update command for " +"such repositories until the change is confirmed to ensure the user is " +"prepared for the change. See also &apt-secure; for details on the concept " +"and configuration." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml +msgid "" +"Specialist options (<literal>--allow-releaseinfo-changes-</" +"literal><replaceable>field</replaceable>) exist to allow changes only for " +"certain fields like <literal>origin</literal>, <literal>label</literal>, " +"<literal>codename</literal>, <literal>suite</literal>, <literal>version</" +"literal> and <literal>defaultpin</literal>. See also &apt-preferences;. " +"Configuration Item: <literal>Acquire::AllowReleaseInfoChanges</literal>." +msgstr "" + #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml msgid "" @@ -3156,13 +3178,35 @@ msgid "" "that data like packages in the archive can't be modified by people who have " "no access to the Release file signing key. Starting with version 1.1 " "<command>APT</command> requires repositories to provide recent " -"authentication information for unimpeded usage of the repository." +"authentication information for unimpeded usage of the repository. Since " +"version 1.5 changes in the information contained in the Release file about " +"the repository need to be confirmed before APT continues to apply updates " +"from this repository." msgstr "" "A partire dalla versione 0.6, <command>APT</command> contiene del codice che " "controlla le firme dei file Release per tutti i repository. Ciò assicura che " "dati quali i pacchetti nell'archivio non possano essere modificati da " "persone che non hanno accesso alla chiave di firma dei file Release." +#. type: Content of: <refentry><refsect1><para> +#: apt-secure.8.xml +msgid "" +"Note: All APT-based package management front-ends like &apt-get;, &aptitude; " +"and &synaptic; support this authentication feature, so this manpage uses " +"<literal>APT</literal> to refer to them all for simplicity only." +msgstr "" +"Nota: tutti i front-end di gestione dei pacchetti basati su APT, come &apt-" +"get;, &aptitude; e &synaptic;, supportano questa funzionalità di " +"autenticazione, perciò questa pagina di manuale usa <literal>APT</literal> " +"per fare riferimento a tutti loro solo per ragioni di semplicità." + +#. type: Content of: <refentry><refsect1><title> +#: apt-secure.8.xml +#, fuzzy +#| msgid "Trusted Repositories" +msgid "Unsigned Repositories" +msgstr "Repository fidati" + #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml #, fuzzy @@ -3185,18 +3229,6 @@ msgstr "" "command> richiedono una conferma esplicita se una richiesta di installazione " "include un pacchetto da un archivio non autenticato di questo tipo." -#. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml -msgid "" -"As a temporary exception &apt-get; (not &apt;!) raises warnings only if it " -"encounters unauthenticated archives to give a slightly longer grace period " -"on this backward compatibility effecting change. This exception will be " -"removed in future releases and you can opt-out of this grace period by " -"setting the configuration option <option>Binary::apt-get::Acquire::" -"AllowInsecureRepositories</option> to <literal>false</literal> or <option>--" -"no-allow-insecure-repositories</option> on the command line." -msgstr "" - #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml msgid "" @@ -3223,21 +3255,11 @@ msgid "" "list; option <literal>allow-downgrade-to-insecure=yes</literal>." msgstr "" -#. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml -msgid "" -"Note: All APT-based package management front-ends like &apt-get;, &aptitude; " -"and &synaptic; support this authentication feature, so this manpage uses " -"<literal>APT</literal> to refer to them all for simplicity only." -msgstr "" -"Nota: tutti i front-end di gestione dei pacchetti basati su APT, come &apt-" -"get;, &aptitude; e &synaptic;, supportano questa funzionalità di " -"autenticazione, perciò questa pagina di manuale usa <literal>APT</literal> " -"per fare riferimento a tutti loro solo per ragioni di semplicità." - #. type: Content of: <refentry><refsect1><title> #: apt-secure.8.xml -msgid "Trusted Repositories" +#, fuzzy +#| msgid "Trusted Repositories" +msgid "Signed Repositories" msgstr "Repository fidati" #. type: Content of: <refentry><refsect1><para> @@ -3375,6 +3397,30 @@ msgstr "" "file Release. In ogni caso, questo meccanismo può complementare le firme a " "livello di singolo pacchetto." +#. type: Content of: <refentry><refsect1><title> +#: apt-secure.8.xml +msgid "Information changes" +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt-secure.8.xml +msgid "" +"A Release file contains beside the checksums for the files in the repository " +"also general information about the repository like the origin, codename or " +"version number of the release." +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt-secure.8.xml +msgid "" +"This information is shown in various places so a repository owner should " +"always ensure correctness. Further more user configuration like &apt-" +"preferences; can depend and make use of this information. Since version 1.5 " +"the user must therefore explicitly confirm changes to signal that the user " +"is sufficently prepared e.g. for the new major release of the distribution " +"shipped in the repository (as e.g. indicated by the codename)." +msgstr "" + #. type: Content of: <refentry><refsect1><title> #: apt-secure.8.xml msgid "User Configuration" @@ -3426,8 +3472,10 @@ msgstr "" #. type: Content of: <refentry><refsect1><title> #: apt-secure.8.xml -msgid "Archive Configuration" -msgstr "Configurazione dell'archivio" +#, fuzzy +#| msgid "User Configuration" +msgid "Repository Configuration" +msgstr "Configurazione utente" #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml @@ -4509,6 +4557,14 @@ msgstr "" "dell'opzione. È preferibile ottenere la stessa cosa per voci specifiche in " "&sources-list; usando lì l'opzione <option>Valid-Until-Min</option>." +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml +msgid "" +"Allow use of the internal TLS support in the http method. If set to false, " +"this completely disables support for TLS in apt's own methods (excluding the " +"curl-based https method). No TLS-related functions will be called anymore." +msgstr "" + #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml msgid "" @@ -11312,6 +11368,9 @@ msgstr " # apt-get -o dir::cache::archives=\"/disc/\" dist-upgrade\n" msgid "Which will use the already fetched archives on the disc." msgstr "che userà gli archivi già scaricati e presenti sul disco." +#~ msgid "Archive Configuration" +#~ msgstr "Configurazione dell'archivio" + #~ msgid "dpkg trigger usage (and related options)" #~ msgstr "Uso dei trigger di dpkg (e relative opzioni)" diff --git a/doc/po/ja.po b/doc/po/ja.po index 05b1e2dcb..ae9bf31b7 100644 --- a/doc/po/ja.po +++ b/doc/po/ja.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: apt-doc 1.4\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2017-06-01 10:51+0200\n" +"POT-Creation-Date: 2017-06-28 19:53+0200\n" "PO-Revision-Date: 2017-01-06 04:50+0900\n" "Last-Translator: Takuma Yamada <tyamada@takumayamada.com>\n" "Language-Team: Japanese <debian-japanese@lists.debian.org>\n" @@ -1945,6 +1945,28 @@ msgstr "" "ます。概念と影響の詳細については &apt-secure; も参照してください。設定項目: " "<literal>Acquire::AllowInsecureRepositories</literal>" +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml +msgid "" +"Allow the update command to continue downloading data from a repository " +"which changed its information of the release contained in the repository " +"indicating e.g a new major release. APT will fail at the update command for " +"such repositories until the change is confirmed to ensure the user is " +"prepared for the change. See also &apt-secure; for details on the concept " +"and configuration." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml +msgid "" +"Specialist options (<literal>--allow-releaseinfo-changes-</" +"literal><replaceable>field</replaceable>) exist to allow changes only for " +"certain fields like <literal>origin</literal>, <literal>label</literal>, " +"<literal>codename</literal>, <literal>suite</literal>, <literal>version</" +"literal> and <literal>defaultpin</literal>. See also &apt-preferences;. " +"Configuration Item: <literal>Acquire::AllowReleaseInfoChanges</literal>." +msgstr "" + #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml msgid "" @@ -3049,13 +3071,24 @@ msgstr "APT アーカイブ認証サポート" #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml +#, fuzzy +#| msgid "" +#| "Starting with version 0.6, <command>APT</command> contains code that does " +#| "signature checking of the Release file for all repositories. This ensures " +#| "that data like packages in the archive can't be modified by people who " +#| "have no access to the Release file signing key. Starting with version 1.1 " +#| "<command>APT</command> requires repositories to provide recent " +#| "authentication information for unimpeded usage of the repository." msgid "" "Starting with version 0.6, <command>APT</command> contains code that does " "signature checking of the Release file for all repositories. This ensures " "that data like packages in the archive can't be modified by people who have " "no access to the Release file signing key. Starting with version 1.1 " "<command>APT</command> requires repositories to provide recent " -"authentication information for unimpeded usage of the repository." +"authentication information for unimpeded usage of the repository. Since " +"version 1.5 changes in the information contained in the Release file about " +"the repository need to be confirmed before APT continues to apply updates " +"from this repository." msgstr "" "バージョン 0.6 より、<command>APT</command> は全リポジトリに対する Release " "ファイルの署名チェックコードを収録しています。これにより、アーカイブのパッ" @@ -3064,6 +3097,25 @@ msgstr "" "command> はリポジトリに対し、そのリポジトリが最近遅滞なく使えていることを証明" "する情報の提供を要求します。" +#. type: Content of: <refentry><refsect1><para> +#: apt-secure.8.xml +msgid "" +"Note: All APT-based package management front-ends like &apt-get;, &aptitude; " +"and &synaptic; support this authentication feature, so this manpage uses " +"<literal>APT</literal> to refer to them all for simplicity only." +msgstr "" +"注意: &apt-get;、&aptitude;、&synaptic; といった APT ベースのパッケージ管理フ" +"ロントエンドは全てこの新しい証明機能をサポートしています。この man ページでは" +"単純化するためだけに、その全てを参照するのに <literal>APT</literal> を使って" +"います。" + +#. type: Content of: <refentry><refsect1><title> +#: apt-secure.8.xml +#, fuzzy +#| msgid "Trusted Repositories" +msgid "Unsigned Repositories" +msgstr "信頼済リポジトリ" + #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml msgid "" @@ -3080,25 +3132,6 @@ msgstr "" "合には <command>apt-get</command> のようなフロントエンドは明示的な確認を要求" "します。" -#. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml -msgid "" -"As a temporary exception &apt-get; (not &apt;!) raises warnings only if it " -"encounters unauthenticated archives to give a slightly longer grace period " -"on this backward compatibility effecting change. This exception will be " -"removed in future releases and you can opt-out of this grace period by " -"setting the configuration option <option>Binary::apt-get::Acquire::" -"AllowInsecureRepositories</option> to <literal>false</literal> or <option>--" -"no-allow-insecure-repositories</option> on the command line." -msgstr "" -"一時的な例外として &apt-get; (not &apt;!) はこの後方互換性に影響のある変更に" -"対応するための少しばかり長い猶予期間として、証明されていないアーカイブについ" -"てのみ警告します。この例外は将来のリリースでは削除され、設定オプション " -"<option>Binary::apt-get::Acquire::AllowInsecureRepositories</option> に " -"<literal>false</literal> を設定するかコマンドラインで <option>--no-allow-" -"insecure-repositories</option> を指定することでこの猶予期間を無効化することも" -"できます。" - #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml msgid "" @@ -3141,21 +3174,11 @@ msgstr "" "<literal>allow-downgrade-to-insecure=yes</literal> を個々のリポジトリに設定す" "ることでこのエラーを無視させることもできます。" -#. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml -msgid "" -"Note: All APT-based package management front-ends like &apt-get;, &aptitude; " -"and &synaptic; support this authentication feature, so this manpage uses " -"<literal>APT</literal> to refer to them all for simplicity only." -msgstr "" -"注意: &apt-get;、&aptitude;、&synaptic; といった APT ベースのパッケージ管理フ" -"ロントエンドは全てこの新しい証明機能をサポートしています。この man ページでは" -"単純化するためだけに、その全てを参照するのに <literal>APT</literal> を使って" -"います。" - #. type: Content of: <refentry><refsect1><title> #: apt-secure.8.xml -msgid "Trusted Repositories" +#, fuzzy +#| msgid "Trusted Repositories" +msgid "Signed Repositories" msgstr "信頼済リポジトリ" #. type: Content of: <refentry><refsect1><para> @@ -3287,6 +3310,30 @@ msgstr "" "イルに署名するのに使用したキーの漏洩を防げません。いずれにせよ、この機構は" "パッケージごとの署名を補完することができます。" +#. type: Content of: <refentry><refsect1><title> +#: apt-secure.8.xml +msgid "Information changes" +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt-secure.8.xml +msgid "" +"A Release file contains beside the checksums for the files in the repository " +"also general information about the repository like the origin, codename or " +"version number of the release." +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt-secure.8.xml +msgid "" +"This information is shown in various places so a repository owner should " +"always ensure correctness. Further more user configuration like &apt-" +"preferences; can depend and make use of this information. Since version 1.5 " +"the user must therefore explicitly confirm changes to signal that the user " +"is sufficently prepared e.g. for the new major release of the distribution " +"shipped in the repository (as e.g. indicated by the codename)." +msgstr "" + #. type: Content of: <refentry><refsect1><title> #: apt-secure.8.xml msgid "User Configuration" @@ -3337,8 +3384,10 @@ msgstr "" #. type: Content of: <refentry><refsect1><title> #: apt-secure.8.xml -msgid "Archive Configuration" -msgstr "アーカイブ設定" +#, fuzzy +#| msgid "User Configuration" +msgid "Repository Configuration" +msgstr "ユーザ設定" #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml @@ -4376,6 +4425,14 @@ msgstr "" "定を作成できます。または、<option>Valid-Until-Min</option> オプションを使用し" "て特定の &sources-list; エントリで同じことを達成できます。" +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml +msgid "" +"Allow use of the internal TLS support in the http method. If set to false, " +"this completely disables support for TLS in apt's own methods (excluding the " +"curl-based https method). No TLS-related functions will be called anymore." +msgstr "" + #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml msgid "" @@ -10824,3 +10881,23 @@ msgstr " # apt-get -o dir::cache::archives=\"/disc/\" dist-upgrade\n" #: offline.dbk msgid "Which will use the already fetched archives on the disc." msgstr "これで、ディスクにある取得済みのアーカイブを使用するようになります。" + +#~ msgid "" +#~ "As a temporary exception &apt-get; (not &apt;!) raises warnings only if " +#~ "it encounters unauthenticated archives to give a slightly longer grace " +#~ "period on this backward compatibility effecting change. This exception " +#~ "will be removed in future releases and you can opt-out of this grace " +#~ "period by setting the configuration option <option>Binary::apt-get::" +#~ "Acquire::AllowInsecureRepositories</option> to <literal>false</literal> " +#~ "or <option>--no-allow-insecure-repositories</option> on the command line." +#~ msgstr "" +#~ "一時的な例外として &apt-get; (not &apt;!) はこの後方互換性に影響のある変更" +#~ "に対応するための少しばかり長い猶予期間として、証明されていないアーカイブに" +#~ "ついてのみ警告します。この例外は将来のリリースでは削除され、設定オプショ" +#~ "ン <option>Binary::apt-get::Acquire::AllowInsecureRepositories</option> " +#~ "に <literal>false</literal> を設定するかコマンドラインで <option>--no-" +#~ "allow-insecure-repositories</option> を指定することでこの猶予期間を無効化" +#~ "することもできます。" + +#~ msgid "Archive Configuration" +#~ msgstr "アーカイブ設定" diff --git a/doc/po/nl.po b/doc/po/nl.po index fead991a3..df004d228 100644 --- a/doc/po/nl.po +++ b/doc/po/nl.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: apt-doc 1.4~beta4-nl\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2017-06-01 10:51+0200\n" +"POT-Creation-Date: 2017-06-28 19:53+0200\n" "PO-Revision-Date: 2017-01-19 17:53+0100\n" "Last-Translator: Frans Spiesschaert <Frans.Spiesschaert@yucom.be>\n" "Language-Team: Debian Dutch l10n Team <debian-l10n-dutch@lists.debian.org>\n" @@ -2044,6 +2044,28 @@ msgstr "" "secure; voor meer informatie over het concept en de implicaties. " "Configuratie-item: <literal>Acquire::AllowInsecureRepositories</literal>." +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml +msgid "" +"Allow the update command to continue downloading data from a repository " +"which changed its information of the release contained in the repository " +"indicating e.g a new major release. APT will fail at the update command for " +"such repositories until the change is confirmed to ensure the user is " +"prepared for the change. See also &apt-secure; for details on the concept " +"and configuration." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml +msgid "" +"Specialist options (<literal>--allow-releaseinfo-changes-</" +"literal><replaceable>field</replaceable>) exist to allow changes only for " +"certain fields like <literal>origin</literal>, <literal>label</literal>, " +"<literal>codename</literal>, <literal>suite</literal>, <literal>version</" +"literal> and <literal>defaultpin</literal>. See also &apt-preferences;. " +"Configuration Item: <literal>Acquire::AllowReleaseInfoChanges</literal>." +msgstr "" + #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml msgid "" @@ -3210,13 +3232,24 @@ msgstr "Ondersteuning in APT voor de authenticatie van archieven" #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml +#, fuzzy +#| msgid "" +#| "Starting with version 0.6, <command>APT</command> contains code that does " +#| "signature checking of the Release file for all repositories. This ensures " +#| "that data like packages in the archive can't be modified by people who " +#| "have no access to the Release file signing key. Starting with version 1.1 " +#| "<command>APT</command> requires repositories to provide recent " +#| "authentication information for unimpeded usage of the repository." msgid "" "Starting with version 0.6, <command>APT</command> contains code that does " "signature checking of the Release file for all repositories. This ensures " "that data like packages in the archive can't be modified by people who have " "no access to the Release file signing key. Starting with version 1.1 " "<command>APT</command> requires repositories to provide recent " -"authentication information for unimpeded usage of the repository." +"authentication information for unimpeded usage of the repository. Since " +"version 1.5 changes in the information contained in the Release file about " +"the repository need to be confirmed before APT continues to apply updates " +"from this repository." msgstr "" "Met ingang van versie 0.6 bevat <command>APT</command> code die voor alle " "pakketbronnen de ondertekening controleert van het bestand Release. Dit " @@ -3226,6 +3259,26 @@ msgstr "" "vereist <command>APT</command> dat pakketbronnen recente authenticatie-" "informatie verstrekken om die pakketbron ongehinderd te kunnen gebruiken." +#. type: Content of: <refentry><refsect1><para> +#: apt-secure.8.xml +msgid "" +"Note: All APT-based package management front-ends like &apt-get;, &aptitude; " +"and &synaptic; support this authentication feature, so this manpage uses " +"<literal>APT</literal> to refer to them all for simplicity only." +msgstr "" +"Opmerking: Alle op APT gebaseerde front-ends voor pakketbeheer, zoals &apt-" +"get;, &aptitude; en &synaptic;, ondersteunen deze " +"authenticatiefunctionaliteit. Het is enkel om het eenvoudig te houden dat " +"deze man-pagina van <literal>APT</literal> gebruikt wordt om die " +"functionaliteit aan ze allemaal toe te schrijven." + +#. type: Content of: <refentry><refsect1><title> +#: apt-secure.8.xml +#, fuzzy +#| msgid "Trusted Repositories" +msgid "Unsigned Repositories" +msgstr "Betrouwbare pakketarchieven" + #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml msgid "" @@ -3243,27 +3296,6 @@ msgstr "" "installatieverzoek een pakket uit een dergelijk niet-geauthenticeerd archief " "betrokken is." -#. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml -msgid "" -"As a temporary exception &apt-get; (not &apt;!) raises warnings only if it " -"encounters unauthenticated archives to give a slightly longer grace period " -"on this backward compatibility effecting change. This exception will be " -"removed in future releases and you can opt-out of this grace period by " -"setting the configuration option <option>Binary::apt-get::Acquire::" -"AllowInsecureRepositories</option> to <literal>false</literal> or <option>--" -"no-allow-insecure-repositories</option> on the command line." -msgstr "" -"Bij wijze van tijdelijke uitzondering geeft &apt-get; (niet &apt;!) enkel " -"waarschuwingen als het niet-geauthenticeerde archieven tegenkomt om zo deze " -"wijziging die de compatibiliteit aantast, enigszins langer uit te stellen. " -"Deze uitzondering zal uit toekomstige uitgaven verwijderd worden en u kunt " -"nu reeds kiezen om geen gebruik te maken van dit uitstel door de " -"configuratie-optie <option>Binary::apt-get::Acquire::" -"AllowInsecureRepositories</option> op <literal>false</literal> in te stellen " -"of door aan de commandoregel de optie <option>--no-allow-insecure-" -"repositories</option> te gebruiken." - #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml msgid "" @@ -3308,22 +3340,11 @@ msgstr "" "te stellen of voor individuele pakketbronnen door de optie <literal>allow-" "downgrade-to-insecure=yes</literal> te gebruiken in &sources-list;." -#. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml -msgid "" -"Note: All APT-based package management front-ends like &apt-get;, &aptitude; " -"and &synaptic; support this authentication feature, so this manpage uses " -"<literal>APT</literal> to refer to them all for simplicity only." -msgstr "" -"Opmerking: Alle op APT gebaseerde front-ends voor pakketbeheer, zoals &apt-" -"get;, &aptitude; en &synaptic;, ondersteunen deze " -"authenticatiefunctionaliteit. Het is enkel om het eenvoudig te houden dat " -"deze man-pagina van <literal>APT</literal> gebruikt wordt om die " -"functionaliteit aan ze allemaal toe te schrijven." - #. type: Content of: <refentry><refsect1><title> #: apt-secure.8.xml -msgid "Trusted Repositories" +#, fuzzy +#| msgid "Trusted Repositories" +msgid "Signed Repositories" msgstr "Betrouwbare pakketarchieven" #. type: Content of: <refentry><refsect1><para> @@ -3466,6 +3487,30 @@ msgstr "" "ondertekenen. In elk geval biedt dit mechanisme wel een aanvulling op een " "ondertekening op pakketniveau." +#. type: Content of: <refentry><refsect1><title> +#: apt-secure.8.xml +msgid "Information changes" +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt-secure.8.xml +msgid "" +"A Release file contains beside the checksums for the files in the repository " +"also general information about the repository like the origin, codename or " +"version number of the release." +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt-secure.8.xml +msgid "" +"This information is shown in various places so a repository owner should " +"always ensure correctness. Further more user configuration like &apt-" +"preferences; can depend and make use of this information. Since version 1.5 " +"the user must therefore explicitly confirm changes to signal that the user " +"is sufficently prepared e.g. for the new major release of the distribution " +"shipped in the repository (as e.g. indicated by the codename)." +msgstr "" + #. type: Content of: <refentry><refsect1><title> #: apt-secure.8.xml msgid "User Configuration" @@ -3519,8 +3564,10 @@ msgstr "" #. type: Content of: <refentry><refsect1><title> #: apt-secure.8.xml -msgid "Archive Configuration" -msgstr "Configuratie op archiefniveau" +#, fuzzy +#| msgid "User Configuration" +msgid "Repository Configuration" +msgstr "Configuratie op gebruikersniveau" #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml @@ -4635,6 +4682,14 @@ msgstr "" "regels uit &sources-list; bereikt worden door daar de optie <option>Valid-" "Until-Min</option> te gebruiken, wat bij voorkeur gedaan zou moeten worden." +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml +msgid "" +"Allow use of the internal TLS support in the http method. If set to false, " +"this completely disables support for TLS in apt's own methods (excluding the " +"curl-based https method). No TLS-related functions will be called anymore." +msgstr "" + #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml msgid "" @@ -11508,6 +11563,28 @@ msgid "Which will use the already fetched archives on the disc." msgstr "" "En dit zal gebruik maken van de reeds opgehaalde archieven op de schijf." +#~ msgid "" +#~ "As a temporary exception &apt-get; (not &apt;!) raises warnings only if " +#~ "it encounters unauthenticated archives to give a slightly longer grace " +#~ "period on this backward compatibility effecting change. This exception " +#~ "will be removed in future releases and you can opt-out of this grace " +#~ "period by setting the configuration option <option>Binary::apt-get::" +#~ "Acquire::AllowInsecureRepositories</option> to <literal>false</literal> " +#~ "or <option>--no-allow-insecure-repositories</option> on the command line." +#~ msgstr "" +#~ "Bij wijze van tijdelijke uitzondering geeft &apt-get; (niet &apt;!) enkel " +#~ "waarschuwingen als het niet-geauthenticeerde archieven tegenkomt om zo " +#~ "deze wijziging die de compatibiliteit aantast, enigszins langer uit te " +#~ "stellen. Deze uitzondering zal uit toekomstige uitgaven verwijderd worden " +#~ "en u kunt nu reeds kiezen om geen gebruik te maken van dit uitstel door " +#~ "de configuratie-optie <option>Binary::apt-get::Acquire::" +#~ "AllowInsecureRepositories</option> op <literal>false</literal> in te " +#~ "stellen of door aan de commandoregel de optie <option>--no-allow-insecure-" +#~ "repositories</option> te gebruiken." + +#~ msgid "Archive Configuration" +#~ msgstr "Configuratie op archiefniveau" + #~ msgid "dpkg trigger usage (and related options)" #~ msgstr "het gebruik van triggers door dpkg (en gerelateerde opties)" diff --git a/doc/po/pl.po b/doc/po/pl.po index d588fa8ec..b54fd98e7 100644 --- a/doc/po/pl.po +++ b/doc/po/pl.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: apt-doc 1.0.5\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2017-06-01 10:51+0200\n" +"POT-Creation-Date: 2017-06-28 19:53+0200\n" "PO-Revision-Date: 2014-07-04 02:13+0200\n" "Last-Translator: Robert Luberda <robert@debian.org>\n" "Language-Team: Polish <manpages-pl-list@lists.sourceforge.net>\n" @@ -2059,6 +2059,28 @@ msgid "" "AllowInsecureRepositories</literal>." msgstr "" +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml +msgid "" +"Allow the update command to continue downloading data from a repository " +"which changed its information of the release contained in the repository " +"indicating e.g a new major release. APT will fail at the update command for " +"such repositories until the change is confirmed to ensure the user is " +"prepared for the change. See also &apt-secure; for details on the concept " +"and configuration." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml +msgid "" +"Specialist options (<literal>--allow-releaseinfo-changes-</" +"literal><replaceable>field</replaceable>) exist to allow changes only for " +"certain fields like <literal>origin</literal>, <literal>label</literal>, " +"<literal>codename</literal>, <literal>suite</literal>, <literal>version</" +"literal> and <literal>defaultpin</literal>. See also &apt-preferences;. " +"Configuration Item: <literal>Acquire::AllowReleaseInfoChanges</literal>." +msgstr "" + #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml msgid "" @@ -3227,7 +3249,10 @@ msgid "" "that data like packages in the archive can't be modified by people who have " "no access to the Release file signing key. Starting with version 1.1 " "<command>APT</command> requires repositories to provide recent " -"authentication information for unimpeded usage of the repository." +"authentication information for unimpeded usage of the repository. Since " +"version 1.5 changes in the information contained in the Release file about " +"the repository need to be confirmed before APT continues to apply updates " +"from this repository." msgstr "" "Począwszy od wersji 0.6 <command>apt</command> zawiera kod sprawdzający " "sygnatury plików \"Release\" wszystkich archiwów. Zapewnia to, że pakiety w " @@ -3236,24 +3261,33 @@ msgstr "" #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml +#, fuzzy +#| msgid "" +#| "The package front-ends &apt-get;, &aptitude; and &synaptic; support this " +#| "new authentication feature." msgid "" -"If an archive has an unsigned Release file or no Release file at all current " -"APT versions will refuse to download data from them by default in " -"<command>update</command> operations and even if forced to download front-" -"ends like &apt-get; will require explicit confirmation if an installation " -"request includes a package from such an unauthenticated archive." +"Note: All APT-based package management front-ends like &apt-get;, &aptitude; " +"and &synaptic; support this authentication feature, so this manpage uses " +"<literal>APT</literal> to refer to them all for simplicity only." msgstr "" +"Nakładki na APT typu &apt-get;, &aptitude; i &synaptic; obsługują ten nowy " +"sposób autoryzacji pakietów." + +#. type: Content of: <refentry><refsect1><title> +#: apt-secure.8.xml +#, fuzzy +#| msgid "Trusted archives" +msgid "Unsigned Repositories" +msgstr "Zaufane archiwa" #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml msgid "" -"As a temporary exception &apt-get; (not &apt;!) raises warnings only if it " -"encounters unauthenticated archives to give a slightly longer grace period " -"on this backward compatibility effecting change. This exception will be " -"removed in future releases and you can opt-out of this grace period by " -"setting the configuration option <option>Binary::apt-get::Acquire::" -"AllowInsecureRepositories</option> to <literal>false</literal> or <option>--" -"no-allow-insecure-repositories</option> on the command line." +"If an archive has an unsigned Release file or no Release file at all current " +"APT versions will refuse to download data from them by default in " +"<command>update</command> operations and even if forced to download front-" +"ends like &apt-get; will require explicit confirmation if an installation " +"request includes a package from such an unauthenticated archive." msgstr "" #. type: Content of: <refentry><refsect1><para> @@ -3282,25 +3316,11 @@ msgid "" "list; option <literal>allow-downgrade-to-insecure=yes</literal>." msgstr "" -#. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml -#, fuzzy -#| msgid "" -#| "The package front-ends &apt-get;, &aptitude; and &synaptic; support this " -#| "new authentication feature." -msgid "" -"Note: All APT-based package management front-ends like &apt-get;, &aptitude; " -"and &synaptic; support this authentication feature, so this manpage uses " -"<literal>APT</literal> to refer to them all for simplicity only." -msgstr "" -"Nakładki na APT typu &apt-get;, &aptitude; i &synaptic; obsługują ten nowy " -"sposób autoryzacji pakietów." - #. type: Content of: <refentry><refsect1><title> #: apt-secure.8.xml #, fuzzy #| msgid "Trusted archives" -msgid "Trusted Repositories" +msgid "Signed Repositories" msgstr "Zaufane archiwa" #. type: Content of: <refentry><refsect1><para> @@ -3459,6 +3479,30 @@ msgstr "" "używanego do podpisywania plików Release. Mechanizm ten stanowi uzupełnienie " "dla sprawdzania sygnatur poszczególnych pakietów." +#. type: Content of: <refentry><refsect1><title> +#: apt-secure.8.xml +msgid "Information changes" +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt-secure.8.xml +msgid "" +"A Release file contains beside the checksums for the files in the repository " +"also general information about the repository like the origin, codename or " +"version number of the release." +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt-secure.8.xml +msgid "" +"This information is shown in various places so a repository owner should " +"always ensure correctness. Further more user configuration like &apt-" +"preferences; can depend and make use of this information. Since version 1.5 " +"the user must therefore explicitly confirm changes to signal that the user " +"is sufficently prepared e.g. for the new major release of the distribution " +"shipped in the repository (as e.g. indicated by the codename)." +msgstr "" + #. type: Content of: <refentry><refsect1><title> #: apt-secure.8.xml #, fuzzy @@ -3514,9 +3558,9 @@ msgstr "" #. type: Content of: <refentry><refsect1><title> #: apt-secure.8.xml #, fuzzy -#| msgid "Archive configuration" -msgid "Archive Configuration" -msgstr "Konfiguracja archiwum" +#| msgid "User configuration" +msgid "Repository Configuration" +msgstr "Konfiguracja użytkownika" #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml @@ -4423,6 +4467,14 @@ msgid "" "Until-Min</option> option there." msgstr "" +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml +msgid "" +"Allow use of the internal TLS support in the http method. If set to false, " +"this completely disables support for TLS in apt's own methods (excluding the " +"curl-based https method). No TLS-related functions will be called anymore." +msgstr "" + #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml msgid "" @@ -10332,6 +10384,11 @@ msgstr " # apt-get -o dir::cache::archives=\"/disc/\" dist-upgrade\n" msgid "Which will use the already fetched archives on the disc." msgstr "Które użyje pobranych uprzednio archiwów z dysku." +#, fuzzy +#~| msgid "Archive configuration" +#~ msgid "Archive Configuration" +#~ msgstr "Konfiguracja archiwum" + #~ msgid "" #~ "DPkg::NoTriggers \"true\";\n" #~ "PackageManager::Configure \"smart\";\n" diff --git a/doc/po/pt.po b/doc/po/pt.po index 704b02b84..cbee3ab53 100644 --- a/doc/po/pt.po +++ b/doc/po/pt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: apt-doc 1.0.7\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2017-06-01 10:51+0200\n" +"POT-Creation-Date: 2017-06-28 19:53+0200\n" "PO-Revision-Date: 2014-08-29 00:34+0100\n" "Last-Translator: Américo Monteiro <a_monteiro@gmx.com>\n" "Language-Team: Portuguese <traduz@debianpt.org>\n" @@ -1993,6 +1993,28 @@ msgid "" "AllowInsecureRepositories</literal>." msgstr "" +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml +msgid "" +"Allow the update command to continue downloading data from a repository " +"which changed its information of the release contained in the repository " +"indicating e.g a new major release. APT will fail at the update command for " +"such repositories until the change is confirmed to ensure the user is " +"prepared for the change. See also &apt-secure; for details on the concept " +"and configuration." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml +msgid "" +"Specialist options (<literal>--allow-releaseinfo-changes-</" +"literal><replaceable>field</replaceable>) exist to allow changes only for " +"certain fields like <literal>origin</literal>, <literal>label</literal>, " +"<literal>codename</literal>, <literal>suite</literal>, <literal>version</" +"literal> and <literal>defaultpin</literal>. See also &apt-preferences;. " +"Configuration Item: <literal>Acquire::AllowReleaseInfoChanges</literal>." +msgstr "" + #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml msgid "" @@ -3118,7 +3140,10 @@ msgid "" "that data like packages in the archive can't be modified by people who have " "no access to the Release file signing key. Starting with version 1.1 " "<command>APT</command> requires repositories to provide recent " -"authentication information for unimpeded usage of the repository." +"authentication information for unimpeded usage of the repository. Since " +"version 1.5 changes in the information contained in the Release file about " +"the repository need to be confirmed before APT continues to apply updates " +"from this repository." msgstr "" "A partir da versão 0.6, o <command>apt</command> contém código que faz " "verificação de assinaturas do ficheiro Release para todos os arquivos. Isto " @@ -3127,24 +3152,33 @@ msgstr "" #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml +#, fuzzy +#| msgid "" +#| "The package front-ends &apt-get;, &aptitude; and &synaptic; support this " +#| "new authentication feature." msgid "" -"If an archive has an unsigned Release file or no Release file at all current " -"APT versions will refuse to download data from them by default in " -"<command>update</command> operations and even if forced to download front-" -"ends like &apt-get; will require explicit confirmation if an installation " -"request includes a package from such an unauthenticated archive." +"Note: All APT-based package management front-ends like &apt-get;, &aptitude; " +"and &synaptic; support this authentication feature, so this manpage uses " +"<literal>APT</literal> to refer to them all for simplicity only." msgstr "" +"Os front-ends de pacotes &apt-get;, &aptitude; e &synaptic; suportam esta " +"nova funcionalidade de autenticação." + +#. type: Content of: <refentry><refsect1><title> +#: apt-secure.8.xml +#, fuzzy +#| msgid "Trusted archives" +msgid "Unsigned Repositories" +msgstr "Arquivos de confiança" #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml msgid "" -"As a temporary exception &apt-get; (not &apt;!) raises warnings only if it " -"encounters unauthenticated archives to give a slightly longer grace period " -"on this backward compatibility effecting change. This exception will be " -"removed in future releases and you can opt-out of this grace period by " -"setting the configuration option <option>Binary::apt-get::Acquire::" -"AllowInsecureRepositories</option> to <literal>false</literal> or <option>--" -"no-allow-insecure-repositories</option> on the command line." +"If an archive has an unsigned Release file or no Release file at all current " +"APT versions will refuse to download data from them by default in " +"<command>update</command> operations and even if forced to download front-" +"ends like &apt-get; will require explicit confirmation if an installation " +"request includes a package from such an unauthenticated archive." msgstr "" #. type: Content of: <refentry><refsect1><para> @@ -3173,25 +3207,11 @@ msgid "" "list; option <literal>allow-downgrade-to-insecure=yes</literal>." msgstr "" -#. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml -#, fuzzy -#| msgid "" -#| "The package front-ends &apt-get;, &aptitude; and &synaptic; support this " -#| "new authentication feature." -msgid "" -"Note: All APT-based package management front-ends like &apt-get;, &aptitude; " -"and &synaptic; support this authentication feature, so this manpage uses " -"<literal>APT</literal> to refer to them all for simplicity only." -msgstr "" -"Os front-ends de pacotes &apt-get;, &aptitude; e &synaptic; suportam esta " -"nova funcionalidade de autenticação." - #. type: Content of: <refentry><refsect1><title> #: apt-secure.8.xml #, fuzzy #| msgid "Trusted archives" -msgid "Trusted Repositories" +msgid "Signed Repositories" msgstr "Arquivos de confiança" #. type: Content of: <refentry><refsect1><para> @@ -3349,6 +3369,30 @@ msgstr "" "chave usada para assinar os ficheiros Release. Em qualquer caso, este " "mecanismo pode complementar uma assinatura por-pacote." +#. type: Content of: <refentry><refsect1><title> +#: apt-secure.8.xml +msgid "Information changes" +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt-secure.8.xml +msgid "" +"A Release file contains beside the checksums for the files in the repository " +"also general information about the repository like the origin, codename or " +"version number of the release." +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt-secure.8.xml +msgid "" +"This information is shown in various places so a repository owner should " +"always ensure correctness. Further more user configuration like &apt-" +"preferences; can depend and make use of this information. Since version 1.5 " +"the user must therefore explicitly confirm changes to signal that the user " +"is sufficently prepared e.g. for the new major release of the distribution " +"shipped in the repository (as e.g. indicated by the codename)." +msgstr "" + #. type: Content of: <refentry><refsect1><title> #: apt-secure.8.xml msgid "User Configuration" @@ -3402,8 +3446,10 @@ msgstr "" #. type: Content of: <refentry><refsect1><title> #: apt-secure.8.xml -msgid "Archive Configuration" -msgstr "Configuração de arquivos" +#, fuzzy +#| msgid "User Configuration" +msgid "Repository Configuration" +msgstr "Configuração do utilizador" #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml @@ -4490,6 +4536,14 @@ msgstr "" "ser usadas definições especificas do arquivo ao acrescentar a etiqueta do " "arquivo ao nome da opção." +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml +msgid "" +"Allow use of the internal TLS support in the http method. If set to false, " +"this completely disables support for TLS in apt's own methods (excluding the " +"curl-based https method). No TLS-related functions will be called anymore." +msgstr "" + #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml #, fuzzy @@ -11082,6 +11136,9 @@ msgstr " # apt-get -o dir::cache::archives=\"/disc/\" dist-upgrade\n" msgid "Which will use the already fetched archives on the disc." msgstr "O qual irá usar os arquivos já obtidos e que estão no disco." +#~ msgid "Archive Configuration" +#~ msgstr "Configuração de arquivos" + #~ msgid "dpkg trigger usage (and related options)" #~ msgstr "Utilização trigger do dpkg (e opções relacionadas)" diff --git a/doc/po/pt_BR.po b/doc/po/pt_BR.po index 82ac7ff97..488e0e21d 100644 --- a/doc/po/pt_BR.po +++ b/doc/po/pt_BR.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: apt-doc 1.0.5\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2017-06-01 10:51+0200\n" +"POT-Creation-Date: 2017-06-28 19:53+0200\n" "PO-Revision-Date: 2004-09-20 17:02+0000\n" "Last-Translator: André Luís Lopes <andrelop@debian.org>\n" "Language-Team: <debian-l10n-portuguese@lists.debian.org>\n" @@ -1385,6 +1385,28 @@ msgid "" "AllowInsecureRepositories</literal>." msgstr "" +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml +msgid "" +"Allow the update command to continue downloading data from a repository " +"which changed its information of the release contained in the repository " +"indicating e.g a new major release. APT will fail at the update command for " +"such repositories until the change is confirmed to ensure the user is " +"prepared for the change. See also &apt-secure; for details on the concept " +"and configuration." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml +msgid "" +"Specialist options (<literal>--allow-releaseinfo-changes-</" +"literal><replaceable>field</replaceable>) exist to allow changes only for " +"certain fields like <literal>origin</literal>, <literal>label</literal>, " +"<literal>codename</literal>, <literal>suite</literal>, <literal>version</" +"literal> and <literal>defaultpin</literal>. See also &apt-preferences;. " +"Configuration Item: <literal>Acquire::AllowReleaseInfoChanges</literal>." +msgstr "" + #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml msgid "" @@ -2195,29 +2217,33 @@ msgid "" "that data like packages in the archive can't be modified by people who have " "no access to the Release file signing key. Starting with version 1.1 " "<command>APT</command> requires repositories to provide recent " -"authentication information for unimpeded usage of the repository." +"authentication information for unimpeded usage of the repository. Since " +"version 1.5 changes in the information contained in the Release file about " +"the repository need to be confirmed before APT continues to apply updates " +"from this repository." msgstr "" #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml msgid "" -"If an archive has an unsigned Release file or no Release file at all current " -"APT versions will refuse to download data from them by default in " -"<command>update</command> operations and even if forced to download front-" -"ends like &apt-get; will require explicit confirmation if an installation " -"request includes a package from such an unauthenticated archive." +"Note: All APT-based package management front-ends like &apt-get;, &aptitude; " +"and &synaptic; support this authentication feature, so this manpage uses " +"<literal>APT</literal> to refer to them all for simplicity only." +msgstr "" + +#. type: Content of: <refentry><refsect1><title> +#: apt-secure.8.xml +msgid "Unsigned Repositories" msgstr "" #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml msgid "" -"As a temporary exception &apt-get; (not &apt;!) raises warnings only if it " -"encounters unauthenticated archives to give a slightly longer grace period " -"on this backward compatibility effecting change. This exception will be " -"removed in future releases and you can opt-out of this grace period by " -"setting the configuration option <option>Binary::apt-get::Acquire::" -"AllowInsecureRepositories</option> to <literal>false</literal> or <option>--" -"no-allow-insecure-repositories</option> on the command line." +"If an archive has an unsigned Release file or no Release file at all current " +"APT versions will refuse to download data from them by default in " +"<command>update</command> operations and even if forced to download front-" +"ends like &apt-get; will require explicit confirmation if an installation " +"request includes a package from such an unauthenticated archive." msgstr "" #. type: Content of: <refentry><refsect1><para> @@ -2246,17 +2272,9 @@ msgid "" "list; option <literal>allow-downgrade-to-insecure=yes</literal>." msgstr "" -#. type: Content of: <refentry><refsect1><para> -#: apt-secure.8.xml -msgid "" -"Note: All APT-based package management front-ends like &apt-get;, &aptitude; " -"and &synaptic; support this authentication feature, so this manpage uses " -"<literal>APT</literal> to refer to them all for simplicity only." -msgstr "" - #. type: Content of: <refentry><refsect1><title> #: apt-secure.8.xml -msgid "Trusted Repositories" +msgid "Signed Repositories" msgstr "" #. type: Content of: <refentry><refsect1><para> @@ -2347,6 +2365,30 @@ msgid "" "signature." msgstr "" +#. type: Content of: <refentry><refsect1><title> +#: apt-secure.8.xml +msgid "Information changes" +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt-secure.8.xml +msgid "" +"A Release file contains beside the checksums for the files in the repository " +"also general information about the repository like the origin, codename or " +"version number of the release." +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt-secure.8.xml +msgid "" +"This information is shown in various places so a repository owner should " +"always ensure correctness. Further more user configuration like &apt-" +"preferences; can depend and make use of this information. Since version 1.5 " +"the user must therefore explicitly confirm changes to signal that the user " +"is sufficently prepared e.g. for the new major release of the distribution " +"shipped in the repository (as e.g. indicated by the codename)." +msgstr "" + #. type: Content of: <refentry><refsect1><title> #: apt-secure.8.xml msgid "User Configuration" @@ -2383,7 +2425,7 @@ msgstr "" #. type: Content of: <refentry><refsect1><title> #: apt-secure.8.xml -msgid "Archive Configuration" +msgid "Repository Configuration" msgstr "" #. type: Content of: <refentry><refsect1><para> @@ -3131,6 +3173,14 @@ msgid "" "Until-Min</option> option there." msgstr "" +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml +msgid "" +"Allow use of the internal TLS support in the http method. If set to false, " +"this completely disables support for TLS in apt's own methods (excluding the " +"curl-based https method). No TLS-related functions will be called anymore." +msgstr "" + #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml msgid "" diff --git a/po/apt-all.pot b/po/apt-all.pot index b9169ee9a..39a1942af 100644 --- a/po/apt-all.pot +++ b/po/apt-all.pot @@ -5,9 +5,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: apt 1.4.6\n" +"Project-Id-Version: apt 1.5~alpha1\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2017-06-01 10:51+0200\n" +"POT-Creation-Date: 2017-06-28 19:53+0200\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" @@ -286,6 +286,13 @@ msgstr "" msgid "GPG error: %s: %s" msgstr "" +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"Skipping acquire of configured file '%s' as repository '%s' doesn't have the " +"component '%s' (component misspelt in sources.list?)" +msgstr "" + #: apt-pkg/acquire-item.cc #, c-format msgid "" @@ -296,8 +303,8 @@ msgstr "" #: apt-pkg/acquire-item.cc #, c-format msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" +"Skipping acquire of configured file '%s' as repository '%s' does not seem to " +"provide it (sources.list entry misspelt?)" msgstr "" #: apt-pkg/acquire-item.cc @@ -322,6 +329,31 @@ msgstr "" msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" +#: apt-pkg/acquire-item.cc +#, c-format +msgid "Repository '%s' changed its '%s' value from '%s' to '%s'" +msgstr "" + +#: apt-pkg/acquire-item.cc +#, c-format +msgid "Repository '%s' changed its default priority for %s from %hi to %hi." +msgstr "" + +#. TRANSLATOR: the "this" refers to changes in the repository like a new release or owner change +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"More information about this can be found online in the Release notes at: %s" +msgstr "" + +#. TRANSLATOR: %s is the name of the manpage in question, e.g. apt-secure(8) +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"This must be accepted explicitly before updates for this repository can be " +"applied. See %s manpage for details." +msgstr "" + #: apt-pkg/acquire-item.cc #, c-format msgid "" @@ -409,12 +441,6 @@ msgstr "" msgid "Clean of %s is not supported" msgstr "" -#: apt-pkg/acquire.cc apt-pkg/clean.cc apt-pkg/contrib/cdromutl.cc -#: methods/mirror.cc -#, c-format -msgid "Unable to change to %s" -msgstr "" - #. only show the ETA if it makes sense #. two days #: apt-pkg/acquire.cc @@ -593,6 +619,11 @@ msgstr "" msgid "Source list entries for this disc are:\n" msgstr "" +#: apt-pkg/clean.cc +#, c-format +msgid "Unable to change to %s" +msgstr "" + #: apt-pkg/clean.cc #, c-format msgid "Unable to stat %s." @@ -1556,6 +1587,12 @@ msgid "" "in the drive '%s' and press [Enter]\n" msgstr "" +#: apt-private/acqprogress.cc +msgid "" +"Do you want to accept these changes and continue updating from this " +"repository?" +msgstr "" + #: apt-private/private-cachefile.cc msgid "Correcting dependencies..." msgstr "" @@ -3236,7 +3273,7 @@ msgstr "" msgid "Direct connection to %s domains is blocked by default." msgstr "" -#: methods/connect.cc methods/http.cc +#: methods/connect.cc #, c-format msgid "Connecting to %s (%s)" msgstr "" diff --git a/po/ar.po b/po/ar.po index a6498fa6c..d13c78133 100644 --- a/po/ar.po +++ b/po/ar.po @@ -6,7 +6,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: 2017-02-06 14:41+0100\n" +"POT-Creation-Date: 2017-06-28 19:53+0200\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" @@ -292,6 +292,13 @@ msgstr "" msgid "GPG error: %s: %s" msgstr "" +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"Skipping acquire of configured file '%s' as repository '%s' doesn't have the " +"component '%s' (component misspelt in sources.list?)" +msgstr "" + #: apt-pkg/acquire-item.cc #, c-format msgid "" @@ -302,8 +309,8 @@ msgstr "" #: apt-pkg/acquire-item.cc #, c-format msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" +"Skipping acquire of configured file '%s' as repository '%s' does not seem to " +"provide it (sources.list entry misspelt?)" msgstr "" #: apt-pkg/acquire-item.cc @@ -328,6 +335,31 @@ msgstr "" msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" +#: apt-pkg/acquire-item.cc +#, c-format +msgid "Repository '%s' changed its '%s' value from '%s' to '%s'" +msgstr "" + +#: apt-pkg/acquire-item.cc +#, c-format +msgid "Repository '%s' changed its default priority for %s from %hi to %hi." +msgstr "" + +#. TRANSLATOR: the "this" refers to changes in the repository like a new release or owner change +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"More information about this can be found online in the Release notes at: %s" +msgstr "" + +#. TRANSLATOR: %s is the name of the manpage in question, e.g. apt-secure(8) +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"This must be accepted explicitly before updates for this repository can be " +"applied. See %s manpage for details." +msgstr "" + #: apt-pkg/acquire-item.cc #, c-format msgid "" @@ -415,12 +447,6 @@ msgstr "" msgid "Clean of %s is not supported" msgstr "نظام الحزم '%s' غير مدعوم" -#: apt-pkg/acquire.cc apt-pkg/clean.cc apt-pkg/contrib/cdromutl.cc -#: methods/mirror.cc -#, c-format -msgid "Unable to change to %s" -msgstr "" - #. only show the ETA if it makes sense #. two days #: apt-pkg/acquire.cc @@ -601,6 +627,11 @@ msgstr "كتابة لائحة المصادر الجديدة\n" msgid "Source list entries for this disc are:\n" msgstr "" +#: apt-pkg/clean.cc +#, c-format +msgid "Unable to change to %s" +msgstr "" + #: apt-pkg/clean.cc #, c-format msgid "Unable to stat %s." @@ -1571,6 +1602,12 @@ msgstr "" " '%s'\n" "في السوّاقة '%s' وضغط مفتاح الإدخال\n" +#: apt-private/acqprogress.cc +msgid "" +"Do you want to accept these changes and continue updating from this " +"repository?" +msgstr "" + #: apt-private/private-cachefile.cc msgid "Correcting dependencies..." msgstr "تصحيح المعتمدات..." @@ -3297,7 +3334,7 @@ msgstr "لم يُعثر على الملف" msgid "Direct connection to %s domains is blocked by default." msgstr "" -#: methods/connect.cc methods/http.cc +#: methods/connect.cc #, c-format msgid "Connecting to %s (%s)" msgstr "الاتصال بـ%s (%s)" diff --git a/po/ast.po b/po/ast.po index f0b5e37c6..019628d72 100644 --- a/po/ast.po +++ b/po/ast.po @@ -4,7 +4,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: 2017-02-06 14:41+0100\n" +"POT-Creation-Date: 2017-06-28 19:53+0200\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" @@ -289,6 +289,13 @@ msgstr "" msgid "GPG error: %s: %s" msgstr "Fallu GPG: %s: %s" +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"Skipping acquire of configured file '%s' as repository '%s' doesn't have the " +"component '%s' (component misspelt in sources.list?)" +msgstr "" + #: apt-pkg/acquire-item.cc #, c-format msgid "" @@ -299,8 +306,8 @@ msgstr "" #: apt-pkg/acquire-item.cc #, c-format msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" +"Skipping acquire of configured file '%s' as repository '%s' does not seem to " +"provide it (sources.list entry misspelt?)" msgstr "" #: apt-pkg/acquire-item.cc @@ -325,6 +332,31 @@ msgstr "" msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "Conflictu de distribución: %s (esperábase %s pero obtúvose %s)" +#: apt-pkg/acquire-item.cc +#, c-format +msgid "Repository '%s' changed its '%s' value from '%s' to '%s'" +msgstr "" + +#: apt-pkg/acquire-item.cc +#, c-format +msgid "Repository '%s' changed its default priority for %s from %hi to %hi." +msgstr "" + +#. TRANSLATOR: the "this" refers to changes in the repository like a new release or owner change +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"More information about this can be found online in the Release notes at: %s" +msgstr "" + +#. TRANSLATOR: %s is the name of the manpage in question, e.g. apt-secure(8) +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"This must be accepted explicitly before updates for this repository can be " +"applied. See %s manpage for details." +msgstr "" + #: apt-pkg/acquire-item.cc #, c-format msgid "" @@ -416,12 +448,6 @@ msgstr "" msgid "Clean of %s is not supported" msgstr "La triba de ficheru d'indiz '%s' nun ta sofitada" -#: apt-pkg/acquire.cc apt-pkg/clean.cc apt-pkg/contrib/cdromutl.cc -#: methods/mirror.cc -#, c-format -msgid "Unable to change to %s" -msgstr "Nun se pudo cambiar a %s" - #. only show the ETA if it makes sense #. two days #: apt-pkg/acquire.cc @@ -618,6 +644,11 @@ msgstr "Escribiendo llista nueva d'oríxenes\n" msgid "Source list entries for this disc are:\n" msgstr "Les entraes de la llista d'oríxenes pa esti discu son:\n" +#: apt-pkg/clean.cc +#, c-format +msgid "Unable to change to %s" +msgstr "Nun se pudo cambiar a %s" + #: apt-pkg/clean.cc #, c-format msgid "Unable to stat %s." @@ -1620,6 +1651,12 @@ msgstr "" " '%s'\n" "na unidá '%s' y calca Intro\n" +#: apt-private/acqprogress.cc +msgid "" +"Do you want to accept these changes and continue updating from this " +"repository?" +msgstr "" + #: apt-private/private-cachefile.cc msgid "Correcting dependencies..." msgstr "Iguando dependencies..." @@ -3458,7 +3495,7 @@ msgstr "Nun s'atopa'l ficheru." msgid "Direct connection to %s domains is blocked by default." msgstr "" -#: methods/connect.cc methods/http.cc +#: methods/connect.cc #, c-format msgid "Connecting to %s (%s)" msgstr "Coneutando a %s (%s)" diff --git a/po/bg.po b/po/bg.po index 2bba14258..e27f15d4c 100644 --- a/po/bg.po +++ b/po/bg.po @@ -10,7 +10,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: 2017-02-06 14:41+0100\n" +"POT-Creation-Date: 2017-06-28 19:53+0200\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" @@ -295,6 +295,13 @@ msgstr "" msgid "GPG error: %s: %s" msgstr "Грешка от GPG: %s: %s" +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"Skipping acquire of configured file '%s' as repository '%s' doesn't have the " +"component '%s' (component misspelt in sources.list?)" +msgstr "" + #: apt-pkg/acquire-item.cc #, c-format msgid "" @@ -305,11 +312,9 @@ msgstr "" #: apt-pkg/acquire-item.cc #, c-format msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" +"Skipping acquire of configured file '%s' as repository '%s' does not seem to " +"provide it (sources.list entry misspelt?)" msgstr "" -"Не може да се открие елемент „%s“ във файла Release (объркан ред в sources." -"list или повреден файл)" #: apt-pkg/acquire-item.cc #, c-format @@ -335,6 +340,31 @@ msgstr "" msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "Конфликт в дистрибуцията: %s (очаквана: %s, намерена: %s)" +#: apt-pkg/acquire-item.cc +#, c-format +msgid "Repository '%s' changed its '%s' value from '%s' to '%s'" +msgstr "" + +#: apt-pkg/acquire-item.cc +#, c-format +msgid "Repository '%s' changed its default priority for %s from %hi to %hi." +msgstr "" + +#. TRANSLATOR: the "this" refers to changes in the repository like a new release or owner change +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"More information about this can be found online in the Release notes at: %s" +msgstr "" + +#. TRANSLATOR: %s is the name of the manpage in question, e.g. apt-secure(8) +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"This must be accepted explicitly before updates for this repository can be " +"applied. See %s manpage for details." +msgstr "" + #: apt-pkg/acquire-item.cc #, c-format msgid "" @@ -425,12 +455,6 @@ msgstr "" msgid "Clean of %s is not supported" msgstr "Не се поддържа индексен файл от типа „%s“" -#: apt-pkg/acquire.cc apt-pkg/clean.cc apt-pkg/contrib/cdromutl.cc -#: methods/mirror.cc -#, c-format -msgid "Unable to change to %s" -msgstr "Неуспех при преминаването в %s" - #. only show the ETA if it makes sense #. two days #: apt-pkg/acquire.cc @@ -631,6 +655,11 @@ msgstr "Запазване на новия списък с източници\n" msgid "Source list entries for this disc are:\n" msgstr "Записите в списъка с източници за този диск са:\n" +#: apt-pkg/clean.cc +#, c-format +msgid "Unable to change to %s" +msgstr "Неуспех при преминаването в %s" + #: apt-pkg/clean.cc #, c-format msgid "Unable to stat %s." @@ -1651,6 +1680,12 @@ msgstr "" " „%s“\n" "в устройството „%s“ и натиснете „Enter“\n" +#: apt-private/acqprogress.cc +msgid "" +"Do you want to accept these changes and continue updating from this " +"repository?" +msgstr "" + #: apt-private/private-cachefile.cc msgid "Correcting dependencies..." msgstr "Коригиране на зависимостите..." @@ -3503,7 +3538,7 @@ msgstr "Файлът не е намерен" msgid "Direct connection to %s domains is blocked by default." msgstr "" -#: methods/connect.cc methods/http.cc +#: methods/connect.cc #, c-format msgid "Connecting to %s (%s)" msgstr "Свързване с %s (%s)" @@ -3828,6 +3863,13 @@ msgstr "Връзката прекъсна преждевременно" msgid "Empty files can't be valid archives" msgstr "Празни файлове не могат да бъдат валидни архиви" +#~ msgid "" +#~ "Unable to find expected entry '%s' in Release file (Wrong sources.list " +#~ "entry or malformed file)" +#~ msgstr "" +#~ "Не може да се открие елемент „%s“ във файла Release (объркан ред в " +#~ "sources.list или повреден файл)" + #~ msgid "Unmet dependencies. Try using --fix-broken." #~ msgstr "Неудовлетворени зависимости. Опитайте с „--fix-broken“." diff --git a/po/bs.po b/po/bs.po index 3f8bb87f1..8c3385af9 100644 --- a/po/bs.po +++ b/po/bs.po @@ -6,7 +6,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: 2017-02-06 14:41+0100\n" +"POT-Creation-Date: 2017-06-28 19:53+0200\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" @@ -288,6 +288,13 @@ msgstr "" msgid "GPG error: %s: %s" msgstr "" +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"Skipping acquire of configured file '%s' as repository '%s' doesn't have the " +"component '%s' (component misspelt in sources.list?)" +msgstr "" + #: apt-pkg/acquire-item.cc #, c-format msgid "" @@ -298,8 +305,8 @@ msgstr "" #: apt-pkg/acquire-item.cc #, c-format msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" +"Skipping acquire of configured file '%s' as repository '%s' does not seem to " +"provide it (sources.list entry misspelt?)" msgstr "" #: apt-pkg/acquire-item.cc @@ -324,6 +331,31 @@ msgstr "" msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" +#: apt-pkg/acquire-item.cc +#, c-format +msgid "Repository '%s' changed its '%s' value from '%s' to '%s'" +msgstr "" + +#: apt-pkg/acquire-item.cc +#, c-format +msgid "Repository '%s' changed its default priority for %s from %hi to %hi." +msgstr "" + +#. TRANSLATOR: the "this" refers to changes in the repository like a new release or owner change +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"More information about this can be found online in the Release notes at: %s" +msgstr "" + +#. TRANSLATOR: %s is the name of the manpage in question, e.g. apt-secure(8) +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"This must be accepted explicitly before updates for this repository can be " +"applied. See %s manpage for details." +msgstr "" + #: apt-pkg/acquire-item.cc #, c-format msgid "" @@ -411,12 +443,6 @@ msgstr "" msgid "Clean of %s is not supported" msgstr "" -#: apt-pkg/acquire.cc apt-pkg/clean.cc apt-pkg/contrib/cdromutl.cc -#: methods/mirror.cc -#, c-format -msgid "Unable to change to %s" -msgstr "" - #. only show the ETA if it makes sense #. two days #: apt-pkg/acquire.cc @@ -598,6 +624,11 @@ msgstr "" msgid "Source list entries for this disc are:\n" msgstr "" +#: apt-pkg/clean.cc +#, c-format +msgid "Unable to change to %s" +msgstr "" + #: apt-pkg/clean.cc #, c-format msgid "Unable to stat %s." @@ -1566,6 +1597,12 @@ msgid "" "in the drive '%s' and press [Enter]\n" msgstr "" +#: apt-private/acqprogress.cc +msgid "" +"Do you want to accept these changes and continue updating from this " +"repository?" +msgstr "" + #: apt-private/private-cachefile.cc msgid "Correcting dependencies..." msgstr "Ispravljam zavisnosti..." @@ -3279,7 +3316,7 @@ msgstr "Datoteka nije pronađena" msgid "Direct connection to %s domains is blocked by default." msgstr "" -#: methods/connect.cc methods/http.cc +#: methods/connect.cc #, c-format msgid "Connecting to %s (%s)" msgstr "" diff --git a/po/ca.po b/po/ca.po index ad1a63a3c..430f7c568 100644 --- a/po/ca.po +++ b/po/ca.po @@ -9,7 +9,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: 2017-02-06 14:41+0100\n" +"POT-Creation-Date: 2017-06-28 19:53+0200\n" "PO-Revision-Date: 2016-12-05 21:09+0100\n" "Last-Translator: Oriol Debian <oriol.debian@gmail.com>\n" "Language-Team: Catalan <debian-l10n-catalan@lists.debian.org>\n" @@ -305,6 +305,18 @@ msgstr "" msgid "GPG error: %s: %s" msgstr "S'ha produït un error amb el GPG: %s: %s" +#: apt-pkg/acquire-item.cc +#, fuzzy, c-format +#| msgid "" +#| "Skipping acquire of configured file '%s' as repository '%s' doesn't " +#| "support architecture '%s'" +msgid "" +"Skipping acquire of configured file '%s' as repository '%s' doesn't have the " +"component '%s' (component misspelt in sources.list?)" +msgstr "" +"S'omet l'ús del fitxer configurat «%s» ja que el repositori «%s» no admet " +"l'arquitectura «%s»" + #: apt-pkg/acquire-item.cc #, c-format msgid "" @@ -315,13 +327,16 @@ msgstr "" "l'arquitectura «%s»" #: apt-pkg/acquire-item.cc -#, c-format +#, fuzzy, c-format +#| msgid "" +#| "Skipping acquire of configured file '%s' as repository '%s' doesn't " +#| "support architecture '%s'" msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" +"Skipping acquire of configured file '%s' as repository '%s' does not seem to " +"provide it (sources.list entry misspelt?)" msgstr "" -"No s'ha trobat l'entrada «%s» esperada, al fitxer Release (entrada errònia " -"al sources.list o fitxer malformat)" +"S'omet l'ús del fitxer configurat «%s» ja que el repositori «%s» no admet " +"l'arquitectura «%s»" #: apt-pkg/acquire-item.cc #, c-format @@ -349,6 +364,31 @@ msgstr "" msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "Distribució en conflicte: %s (s'esperava %s però s'ha obtingut %s)" +#: apt-pkg/acquire-item.cc +#, c-format +msgid "Repository '%s' changed its '%s' value from '%s' to '%s'" +msgstr "" + +#: apt-pkg/acquire-item.cc +#, c-format +msgid "Repository '%s' changed its default priority for %s from %hi to %hi." +msgstr "" + +#. TRANSLATOR: the "this" refers to changes in the repository like a new release or owner change +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"More information about this can be found online in the Release notes at: %s" +msgstr "" + +#. TRANSLATOR: %s is the name of the manpage in question, e.g. apt-secure(8) +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"This must be accepted explicitly before updates for this repository can be " +"applied. See %s manpage for details." +msgstr "" + #: apt-pkg/acquire-item.cc #, c-format msgid "" @@ -448,12 +488,6 @@ msgstr "" msgid "Clean of %s is not supported" msgstr "No està suportada la neteja de «%s» " -#: apt-pkg/acquire.cc apt-pkg/clean.cc apt-pkg/contrib/cdromutl.cc -#: methods/mirror.cc -#, c-format -msgid "Unable to change to %s" -msgstr "No es pot canviar a %s" - #. only show the ETA if it makes sense #. two days #: apt-pkg/acquire.cc @@ -655,6 +689,11 @@ msgstr "S'està escrivint una nova llista de fonts\n" msgid "Source list entries for this disc are:\n" msgstr "Les entrades de la llista de fonts per a aquest disc són:\n" +#: apt-pkg/clean.cc +#, c-format +msgid "Unable to change to %s" +msgstr "No es pot canviar a %s" + #: apt-pkg/clean.cc #, c-format msgid "Unable to stat %s." @@ -1680,6 +1719,12 @@ msgstr "" " «%s»\n" "en la unitat «%s» i premeu [Intro]\n" +#: apt-private/acqprogress.cc +msgid "" +"Do you want to accept these changes and continue updating from this " +"repository?" +msgstr "" + #: apt-private/private-cachefile.cc msgid "Correcting dependencies..." msgstr "S'estan corregint les dependències…" @@ -3580,7 +3625,7 @@ msgstr "Fitxer no trobat" msgid "Direct connection to %s domains is blocked by default." msgstr "Les connexions directes als dominis %s estan bloquejades per defecte." -#: methods/connect.cc methods/http.cc +#: methods/connect.cc #, c-format msgid "Connecting to %s (%s)" msgstr "S'està connectant amb %s (%s)" @@ -3907,6 +3952,13 @@ msgstr "La connexió s'ha tancat prematurament" msgid "Empty files can't be valid archives" msgstr "Els fitxers buits no poden ser arxius vàlids" +#~ msgid "" +#~ "Unable to find expected entry '%s' in Release file (Wrong sources.list " +#~ "entry or malformed file)" +#~ msgstr "" +#~ "No s'ha trobat l'entrada «%s» esperada, al fitxer Release (entrada " +#~ "errònia al sources.list o fitxer malformat)" + #~ msgid "Unmet dependencies. Try using --fix-broken." #~ msgstr "Dependències sense satisfer. Proveu-ho emprant --fix-broken." diff --git a/po/cs.po b/po/cs.po index 5a6807d6a..d837dadec 100644 --- a/po/cs.po +++ b/po/cs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 1.4.2\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2017-02-06 14:41+0100\n" +"POT-Creation-Date: 2017-06-28 19:53+0200\n" "PO-Revision-Date: 2017-05-06 11:08+0200\n" "Last-Translator: Miroslav Kure <kurem@debian.cz>\n" "Language-Team: Czech <debian-l10n-czech@lists.debian.org>\n" @@ -208,8 +208,8 @@ msgid "" "See apt-secure(8) manpage for repository creation and user configuration " "details." msgstr "" -"Podrobnosti o vytváření a nastavení repositářů naleznete v manuálové " -"stránce apt-secure(8)." +"Podrobnosti o vytváření a nastavení repositářů naleznete v manuálové stránce " +"apt-secure(8)." #: apt-pkg/acquire-item.cc #, c-format @@ -299,6 +299,18 @@ msgstr "" msgid "GPG error: %s: %s" msgstr "Chyba GPG: %s: %s" +#: apt-pkg/acquire-item.cc +#, fuzzy, c-format +#| msgid "" +#| "Skipping acquire of configured file '%s' as repository '%s' doesn't " +#| "support architecture '%s'" +msgid "" +"Skipping acquire of configured file '%s' as repository '%s' doesn't have the " +"component '%s' (component misspelt in sources.list?)" +msgstr "" +"Přeskakuje se stažení souboru „%s“, protože repositář „%s“ nepodporuje " +"architekturu „%s“" + #: apt-pkg/acquire-item.cc #, c-format msgid "" @@ -309,13 +321,16 @@ msgstr "" "architekturu „%s“" #: apt-pkg/acquire-item.cc -#, c-format +#, fuzzy, c-format +#| msgid "" +#| "Skipping acquire of configured file '%s' as repository '%s' doesn't " +#| "support architecture '%s'" msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" +"Skipping acquire of configured file '%s' as repository '%s' does not seem to " +"provide it (sources.list entry misspelt?)" msgstr "" -"V souboru Release nelze najít očekávanou položku „%s“ (chybný sources.list " -"nebo porušený soubor)" +"Přeskakuje se stažení souboru „%s“, protože repositář „%s“ nepodporuje " +"architekturu „%s“" #: apt-pkg/acquire-item.cc #, c-format @@ -343,6 +358,31 @@ msgstr "" msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "Konfliktní distribuce: %s (očekáváno %s, obdrženo %s)" +#: apt-pkg/acquire-item.cc +#, c-format +msgid "Repository '%s' changed its '%s' value from '%s' to '%s'" +msgstr "" + +#: apt-pkg/acquire-item.cc +#, c-format +msgid "Repository '%s' changed its default priority for %s from %hi to %hi." +msgstr "" + +#. TRANSLATOR: the "this" refers to changes in the repository like a new release or owner change +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"More information about this can be found online in the Release notes at: %s" +msgstr "" + +#. TRANSLATOR: %s is the name of the manpage in question, e.g. apt-secure(8) +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"This must be accepted explicitly before updates for this repository can be " +"applied. See %s manpage for details." +msgstr "" + #: apt-pkg/acquire-item.cc #, c-format msgid "" @@ -435,12 +475,6 @@ msgstr "" msgid "Clean of %s is not supported" msgstr "Vyčištění %s není podporováno" -#: apt-pkg/acquire.cc apt-pkg/clean.cc apt-pkg/contrib/cdromutl.cc -#: methods/mirror.cc -#, c-format -msgid "Unable to change to %s" -msgstr "Nelze přejít do %s" - #. only show the ETA if it makes sense #. two days #: apt-pkg/acquire.cc @@ -630,6 +664,11 @@ msgstr "Zapisuje se nový seznam balíků\n" msgid "Source list entries for this disc are:\n" msgstr "Seznamy zdrojů na tomto disku jsou:\n" +#: apt-pkg/clean.cc +#, c-format +msgid "Unable to change to %s" +msgstr "Nelze přejít do %s" + #: apt-pkg/clean.cc #, c-format msgid "Unable to stat %s." @@ -1039,7 +1078,6 @@ msgstr "" "Release soubor %s neobsahuje Hash záznam, který by byl pro bezpečnost " "považován za dostatečně silný" - #: apt-pkg/deb/debmetaindex.cc #, c-format msgid "Invalid '%s' entry in Release file %s" @@ -1629,6 +1667,12 @@ msgstr "" " „%s“\n" "do mechaniky „%s“ a stiskněte [Enter]\n" +#: apt-private/acqprogress.cc +msgid "" +"Do you want to accept these changes and continue updating from this " +"repository?" +msgstr "" + #: apt-private/private-cachefile.cc msgid "Correcting dependencies..." msgstr "Opravují se závislosti…" @@ -3485,7 +3529,7 @@ msgstr "Soubor nebyl nalezen" msgid "Direct connection to %s domains is blocked by default." msgstr "Přímé spojení k doménám %s je implicitně blokováno." -#: methods/connect.cc methods/http.cc +#: methods/connect.cc #, c-format msgid "Connecting to %s (%s)" msgstr "Připojování k %s (%s)" @@ -3806,6 +3850,13 @@ msgstr "Spojení bylo předčasně ukončeno" msgid "Empty files can't be valid archives" msgstr "Prázdné soubory nejsou platnými archivy" +#~ msgid "" +#~ "Unable to find expected entry '%s' in Release file (Wrong sources.list " +#~ "entry or malformed file)" +#~ msgstr "" +#~ "V souboru Release nelze najít očekávanou položku „%s“ (chybný sources." +#~ "list nebo porušený soubor)" + #~ msgid "Unmet dependencies. Try using --fix-broken." #~ msgstr "Nesplněné závislosti. Zkuste použít --fix-broken." diff --git a/po/cy.po b/po/cy.po index 72f5307ea..1b99cac6b 100644 --- a/po/cy.po +++ b/po/cy.po @@ -6,7 +6,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: 2017-02-06 14:41+0100\n" +"POT-Creation-Date: 2017-06-28 19:53+0200\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" @@ -294,6 +294,13 @@ msgstr "" msgid "GPG error: %s: %s" msgstr "" +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"Skipping acquire of configured file '%s' as repository '%s' doesn't have the " +"component '%s' (component misspelt in sources.list?)" +msgstr "" + #: apt-pkg/acquire-item.cc #, c-format msgid "" @@ -304,8 +311,8 @@ msgstr "" #: apt-pkg/acquire-item.cc #, c-format msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" +"Skipping acquire of configured file '%s' as repository '%s' does not seem to " +"provide it (sources.list entry misspelt?)" msgstr "" #: apt-pkg/acquire-item.cc @@ -330,6 +337,31 @@ msgstr "" msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" +#: apt-pkg/acquire-item.cc +#, c-format +msgid "Repository '%s' changed its '%s' value from '%s' to '%s'" +msgstr "" + +#: apt-pkg/acquire-item.cc +#, c-format +msgid "Repository '%s' changed its default priority for %s from %hi to %hi." +msgstr "" + +#. TRANSLATOR: the "this" refers to changes in the repository like a new release or owner change +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"More information about this can be found online in the Release notes at: %s" +msgstr "" + +#. TRANSLATOR: %s is the name of the manpage in question, e.g. apt-secure(8) +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"This must be accepted explicitly before updates for this repository can be " +"applied. See %s manpage for details." +msgstr "" + # FIXME: case #: apt-pkg/acquire-item.cc #, c-format @@ -424,12 +456,6 @@ msgstr "" msgid "Clean of %s is not supported" msgstr "Ni chynhelir y math ffeil mynegai '%s'" -#: apt-pkg/acquire.cc apt-pkg/clean.cc apt-pkg/contrib/cdromutl.cc -#: methods/mirror.cc -#, c-format -msgid "Unable to change to %s" -msgstr "Ni ellir newid i %s" - #. only show the ETA if it makes sense #. two days #: apt-pkg/acquire.cc @@ -617,6 +643,11 @@ msgstr "Llinell %u yn rhy hir yn y rhestr ffynhonell %s." msgid "Source list entries for this disc are:\n" msgstr "" +#: apt-pkg/clean.cc +#, c-format +msgid "Unable to change to %s" +msgstr "Ni ellir newid i %s" + #: apt-pkg/clean.cc #, c-format msgid "Unable to stat %s." @@ -1617,6 +1648,12 @@ msgstr "" " '%s'\n" "yn y gyrriant '%s' a gwasgwch Enter\n" +#: apt-private/acqprogress.cc +msgid "" +"Do you want to accept these changes and continue updating from this " +"repository?" +msgstr "" + #: apt-private/private-cachefile.cc msgid "Correcting dependencies..." msgstr "Yn cywiro dibyniaethau..." @@ -3487,7 +3524,7 @@ msgstr "Ffeil heb ei ganfod" msgid "Direct connection to %s domains is blocked by default." msgstr "" -#: methods/connect.cc methods/http.cc +#: methods/connect.cc #, c-format msgid "Connecting to %s (%s)" msgstr "Yn cysylltu i %s (%s)" diff --git a/po/da.po b/po/da.po index 9f1028042..a7b1ad13b 100644 --- a/po/da.po +++ b/po/da.po @@ -12,7 +12,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: 2017-02-06 14:41+0100\n" +"POT-Creation-Date: 2017-06-28 19:53+0200\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" @@ -205,8 +205,8 @@ msgid "" "Data from such a repository can't be authenticated and is therefore " "potentially dangerous to use." msgstr "" -"Data, fra et sådant arkiv, kan ikke godkendes og er derfor potentielt " -"farlig at anvende." +"Data, fra et sådant arkiv, kan ikke godkendes og er derfor potentielt farlig " +"at anvende." #: apt-pkg/acquire-item.cc msgid "" @@ -260,7 +260,9 @@ msgstr "Hashsum stemmer ikke" #: apt-pkg/acquire-item.cc msgid "Insufficient information available to perform this download securely" -msgstr "Utilstrækkelig information er tilgængelig for at udføre denne overførsel sikkert" +msgstr "" +"Utilstrækkelig information er tilgængelig for at udføre denne overførsel " +"sikkert" #: apt-pkg/acquire-item.cc apt-pkg/contrib/fileutl.cc #, c-format @@ -295,8 +297,8 @@ 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" msgstr "" -"Der opstod en fejl under signaturbekræftelse. Arkivet er ikke opdateret " -"og den forrige indeksfil vil blive brugt. GPG-fejl: %s: %s" +"Der opstod en fejl under signaturbekræftelse. Arkivet er ikke opdateret og " +"den forrige indeksfil vil blive brugt. GPG-fejl: %s: %s" #. Invalid signature file, reject (LP: #346386) (Closes: #627642) #: apt-pkg/acquire-item.cc @@ -304,23 +306,38 @@ msgstr "" msgid "GPG error: %s: %s" msgstr "GPG-fejl: %s: %s" +#: apt-pkg/acquire-item.cc +#, fuzzy, c-format +#| msgid "" +#| "Skipping acquire of configured file '%s' as repository '%s' doesn't " +#| "support architecture '%s'" +msgid "" +"Skipping acquire of configured file '%s' as repository '%s' doesn't have the " +"component '%s' (component misspelt in sources.list?)" +msgstr "" +"Udelader erhvervelse af konfigureret fil »%s«, da arkivet »%s« ikke " +"understøtter arkitekturen »%s«" + #: apt-pkg/acquire-item.cc #, c-format msgid "" "Skipping acquire of configured file '%s' as repository '%s' doesn't support " "architecture '%s'" msgstr "" -"Udelader erhvervelse af konfigureret fil »%s«, da arkivet »%s« ikke understøtter " -"arkitekturen »%s«" +"Udelader erhvervelse af konfigureret fil »%s«, da arkivet »%s« ikke " +"understøtter arkitekturen »%s«" #: apt-pkg/acquire-item.cc -#, c-format +#, fuzzy, c-format +#| msgid "" +#| "Skipping acquire of configured file '%s' as repository '%s' doesn't " +#| "support architecture '%s'" msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" +"Skipping acquire of configured file '%s' as repository '%s' does not seem to " +"provide it (sources.list entry misspelt?)" msgstr "" -"Kunne ikke finde uventet punkt »%s« i udgivelsesfil (forkert sources.list-" -"punkt eller forkert udformet fil)" +"Udelader erhvervelse af konfigureret fil »%s«, da arkivet »%s« ikke " +"understøtter arkitekturen »%s«" #: apt-pkg/acquire-item.cc #, c-format @@ -348,6 +365,31 @@ msgstr "" msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "Konfliktdistribution: %s (forventede %s men fik %s)" +#: apt-pkg/acquire-item.cc +#, c-format +msgid "Repository '%s' changed its '%s' value from '%s' to '%s'" +msgstr "" + +#: apt-pkg/acquire-item.cc +#, c-format +msgid "Repository '%s' changed its default priority for %s from %hi to %hi." +msgstr "" + +#. TRANSLATOR: the "this" refers to changes in the repository like a new release or owner change +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"More information about this can be found online in the Release notes at: %s" +msgstr "" + +#. TRANSLATOR: %s is the name of the manpage in question, e.g. apt-secure(8) +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"This must be accepted explicitly before updates for this repository can be " +"applied. See %s manpage for details." +msgstr "" + #: apt-pkg/acquire-item.cc #, c-format msgid "" @@ -403,8 +445,7 @@ msgstr "Metoden %s startede ikke korrekt" #, c-format msgid "" "Please insert the disc labeled: '%s' in the drive '%s' and press [Enter]." -msgstr "" -"Indsæt venligst disken med navnet: »%s« i drevet »%s« og tryk [Retur]." +msgstr "Indsæt venligst disken med navnet: »%s« i drevet »%s« og tryk [Retur]." #: apt-pkg/acquire.cc apt-pkg/cdrom.cc #, c-format @@ -440,12 +481,6 @@ msgstr "" msgid "Clean of %s is not supported" msgstr "Rensning af %s er ikke understøttet" -#: apt-pkg/acquire.cc apt-pkg/clean.cc apt-pkg/contrib/cdromutl.cc -#: methods/mirror.cc -#, c-format -msgid "Unable to change to %s" -msgstr "Kunne ikke skifte til %s" - #. only show the ETA if it makes sense #. two days #: apt-pkg/acquire.cc @@ -638,6 +673,11 @@ msgstr "Skriver ny kildeliste\n" msgid "Source list entries for this disc are:\n" msgstr "Denne disk har følgende kildeliste-indgange:\n" +#: apt-pkg/clean.cc +#, c-format +msgid "Unable to change to %s" +msgstr "Kunne ikke skifte til %s" + #: apt-pkg/clean.cc #, c-format msgid "Unable to stat %s." @@ -667,8 +707,7 @@ msgid "" "Command line option %s is not understood in combination with the other " "options" msgstr "" -"Kommandolinjetilvalget %s forstås ikke i kombination med de andre " -"tilvalg" +"Kommandolinjetilvalget %s forstås ikke i kombination med de andre tilvalg" #: apt-pkg/contrib/cmndline.cc #, c-format @@ -1056,7 +1095,8 @@ msgstr "Ugyldigt punkt »%s« i udgivelsesfil %s" #: apt-pkg/deb/debmetaindex.cc #, c-format msgid "Conflicting values set for option %s regarding source %s %s" -msgstr "Værdisæt er ikke i overensstemmelse for tilvalget %s jævnfør kilden %s %s" +msgstr "" +"Værdisæt er ikke i overensstemmelse for tilvalget %s jævnfør kilden %s %s" #: apt-pkg/deb/debmetaindex.cc #, c-format @@ -1066,7 +1106,9 @@ msgstr "Ugyldigt værdisæt for tilvalget %s jævnfør kilden %s %s (%s)" #: apt-pkg/deb/debmetaindex.cc #, c-format msgid "Conflicting values set for option %s regarding source %s %s: %s != %s" -msgstr "Værdisæt er ikke i overenstemmelse for tilvalget %s jævnfør kilden %s %s: %s != %s" +msgstr "" +"Værdisæt er ikke i overenstemmelse for tilvalget %s jævnfør kilden %s %s: " +"%s != %s" #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc #, c-format @@ -1522,7 +1564,9 @@ msgstr "Kunne ikke forstå pin-type %s" #: apt-pkg/policy.cc #, c-format msgid "%s: Value %s is outside the range of valid pin priorities (%d to %d)" -msgstr "%s: Værdien %s er uden for intervallet med gyldige pin-prioriteringer (%d til %d)" +msgstr "" +"%s: Værdien %s er uden for intervallet med gyldige pin-prioriteringer (%d " +"til %d)" #: apt-pkg/policy.cc msgid "No priority (or zero) specified for pin" @@ -1637,6 +1681,12 @@ msgstr "" " »%s«\n" "i drevet »%s« og tryk [Retur]\n" +#: apt-private/acqprogress.cc +msgid "" +"Do you want to accept these changes and continue updating from this " +"repository?" +msgstr "" + #: apt-private/private-cachefile.cc msgid "Correcting dependencies..." msgstr "Retter afhængigheder ..." @@ -1734,7 +1784,8 @@ msgstr "Virtuelle pakker som »%s« kan ikke fjernes\n" #: apt-private/private-cacheset.cc apt-private/private-install.cc #, c-format msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" -msgstr "Pakken »%s« er ikke installeret, så blev ikke fjernet. Mente du »%s«?\n" +msgstr "" +"Pakken »%s« er ikke installeret, så blev ikke fjernet. Mente du »%s«?\n" #: apt-private/private-cacheset.cc apt-private/private-install.cc #, c-format @@ -1801,8 +1852,8 @@ msgid "" "--force-yes is deprecated, use one of the options starting with --allow " "instead." msgstr "" -"--force-yes er forældet, brug i stedet for et af tilvalgene startende " -"med --allow" +"--force-yes er forældet, brug i stedet for et af tilvalgene startende med --" +"allow" #: apt-private/private-download.cc msgid "" @@ -3513,7 +3564,7 @@ msgstr "Fil blev ikke fundet" msgid "Direct connection to %s domains is blocked by default." msgstr "Direkte forbindelse til %s-domæner er som standard blokeret." -#: methods/connect.cc methods/http.cc +#: methods/connect.cc #, c-format msgid "Connecting to %s (%s)" msgstr "Forbinder til %s (%s)" @@ -3836,3 +3887,9 @@ msgstr "Forbindelsen lukkedes for hurtigt" msgid "Empty files can't be valid archives" msgstr "Tomme filer kan ikke være gyldige arkiver" +#~ msgid "" +#~ "Unable to find expected entry '%s' in Release file (Wrong sources.list " +#~ "entry or malformed file)" +#~ msgstr "" +#~ "Kunne ikke finde uventet punkt »%s« i udgivelsesfil (forkert sources.list-" +#~ "punkt eller forkert udformet fil)" diff --git a/po/de.po b/po/de.po index 6586dad26..96a7ef205 100644 --- a/po/de.po +++ b/po/de.po @@ -10,7 +10,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: 2017-02-06 14:41+0100\n" +"POT-Creation-Date: 2017-06-28 19:53+0200\n" "PO-Revision-Date: 2014-09-19 13:04+0100\n" "Last-Translator: Holger Wansing <linux@wansing-online.de>\n" "Language-Team: Debian German <debian-l10n-german@lists.debian.org>\n" @@ -296,6 +296,13 @@ msgstr "" msgid "GPG error: %s: %s" msgstr "GPG-Fehler: %s: %s" +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"Skipping acquire of configured file '%s' as repository '%s' doesn't have the " +"component '%s' (component misspelt in sources.list?)" +msgstr "" + #: apt-pkg/acquire-item.cc #, c-format msgid "" @@ -306,11 +313,9 @@ msgstr "" #: apt-pkg/acquire-item.cc #, c-format msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" +"Skipping acquire of configured file '%s' as repository '%s' does not seem to " +"provide it (sources.list entry misspelt?)" msgstr "" -"Erwarteter Eintrag »%s« konnte in Release-Datei nicht gefunden werden " -"(falscher Eintrag in sources.list oder missgebildete Datei)." #: apt-pkg/acquire-item.cc #, c-format @@ -336,6 +341,31 @@ msgstr "" msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "Konflikt bei Distribution: %s (%s erwartet, aber %s bekommen)" +#: apt-pkg/acquire-item.cc +#, c-format +msgid "Repository '%s' changed its '%s' value from '%s' to '%s'" +msgstr "" + +#: apt-pkg/acquire-item.cc +#, c-format +msgid "Repository '%s' changed its default priority for %s from %hi to %hi." +msgstr "" + +#. TRANSLATOR: the "this" refers to changes in the repository like a new release or owner change +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"More information about this can be found online in the Release notes at: %s" +msgstr "" + +#. TRANSLATOR: %s is the name of the manpage in question, e.g. apt-secure(8) +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"This must be accepted explicitly before updates for this repository can be " +"applied. See %s manpage for details." +msgstr "" + #: apt-pkg/acquire-item.cc #, c-format msgid "" @@ -431,12 +461,6 @@ msgstr "" msgid "Clean of %s is not supported" msgstr "Leeren von %s wird nicht unterstützt." -#: apt-pkg/acquire.cc apt-pkg/clean.cc apt-pkg/contrib/cdromutl.cc -#: methods/mirror.cc -#, c-format -msgid "Unable to change to %s" -msgstr "Es konnte nicht nach %s gewechselt werden." - #. only show the ETA if it makes sense #. two days #: apt-pkg/acquire.cc @@ -639,6 +663,11 @@ msgstr "Schreiben der neuen Quellliste\n" msgid "Source list entries for this disc are:\n" msgstr "Quelllisteneinträge für dieses Medium sind:\n" +#: apt-pkg/clean.cc +#, c-format +msgid "Unable to change to %s" +msgstr "Es konnte nicht nach %s gewechselt werden." + #: apt-pkg/clean.cc #, c-format msgid "Unable to stat %s." @@ -1671,6 +1700,12 @@ msgstr "" " »%s«\n" "in Laufwerk »%s« ein und drücken Sie die Eingabetaste (Enter).\n" +#: apt-private/acqprogress.cc +msgid "" +"Do you want to accept these changes and continue updating from this " +"repository?" +msgstr "" + #: apt-private/private-cachefile.cc msgid "Correcting dependencies..." msgstr "Abhängigkeiten werden korrigiert ..." @@ -3576,7 +3611,7 @@ msgstr "Datei nicht gefunden" msgid "Direct connection to %s domains is blocked by default." msgstr "" -#: methods/connect.cc methods/http.cc +#: methods/connect.cc #, c-format msgid "Connecting to %s (%s)" msgstr "Verbindung mit %s (%s)" @@ -3909,6 +3944,13 @@ msgstr "Verbindung vorzeitig beendet" msgid "Empty files can't be valid archives" msgstr "Leere Dateien können kein gültiges Archiv sein." +#~ msgid "" +#~ "Unable to find expected entry '%s' in Release file (Wrong sources.list " +#~ "entry or malformed file)" +#~ msgstr "" +#~ "Erwarteter Eintrag »%s« konnte in Release-Datei nicht gefunden werden " +#~ "(falscher Eintrag in sources.list oder missgebildete Datei)." + #~ msgid "Unmet dependencies. Try using --fix-broken." #~ msgstr "Unerfüllte Abhängigkeiten. Versuchen Sie, --fix-broken zu benutzen." diff --git a/po/dz.po b/po/dz.po index 76df37950..6ec72c715 100644 --- a/po/dz.po +++ b/po/dz.po @@ -6,7 +6,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: 2017-02-06 14:41+0100\n" +"POT-Creation-Date: 2017-06-28 19:53+0200\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" @@ -292,6 +292,13 @@ msgstr "" msgid "GPG error: %s: %s" msgstr "" +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"Skipping acquire of configured file '%s' as repository '%s' doesn't have the " +"component '%s' (component misspelt in sources.list?)" +msgstr "" + #: apt-pkg/acquire-item.cc #, c-format msgid "" @@ -302,8 +309,8 @@ msgstr "" #: apt-pkg/acquire-item.cc #, c-format msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" +"Skipping acquire of configured file '%s' as repository '%s' does not seem to " +"provide it (sources.list entry misspelt?)" msgstr "" #: apt-pkg/acquire-item.cc @@ -328,6 +335,31 @@ msgstr "" msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" +#: apt-pkg/acquire-item.cc +#, c-format +msgid "Repository '%s' changed its '%s' value from '%s' to '%s'" +msgstr "" + +#: apt-pkg/acquire-item.cc +#, c-format +msgid "Repository '%s' changed its default priority for %s from %hi to %hi." +msgstr "" + +#. TRANSLATOR: the "this" refers to changes in the repository like a new release or owner change +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"More information about this can be found online in the Release notes at: %s" +msgstr "" + +#. TRANSLATOR: %s is the name of the manpage in question, e.g. apt-secure(8) +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"This must be accepted explicitly before updates for this repository can be " +"applied. See %s manpage for details." +msgstr "" + #: apt-pkg/acquire-item.cc #, c-format msgid "" @@ -418,12 +450,6 @@ msgstr "" msgid "Clean of %s is not supported" msgstr "ཟུར་ཐོ་ཡིག་སྣོད་ཀྱི་དབྱེ་བ་ '%s' འདི་རྒྱབ་སྐྱོར་མ་འབད་བས།" -#: apt-pkg/acquire.cc apt-pkg/clean.cc apt-pkg/contrib/cdromutl.cc -#: methods/mirror.cc -#, c-format -msgid "Unable to change to %s" -msgstr "%s་ལུ་བསྒྱུར་བཅོས་འབད་མ་ཚུགས།" - #. only show the ETA if it makes sense #. two days #: apt-pkg/acquire.cc @@ -609,6 +635,11 @@ msgstr "འབྱུང་ཁུངས་ཀྱི་ཐོ་ཡིག་གས msgid "Source list entries for this disc are:\n" msgstr "འ་ནི་ ཌིསིཀ་གི་དོན་ལུ་ འབྱུང་ཁུངས་ཧྲིལ་བུ་ཚུ་:\n" +#: apt-pkg/clean.cc +#, c-format +msgid "Unable to change to %s" +msgstr "%s་ལུ་བསྒྱུར་བཅོས་འབད་མ་ཚུགས།" + #: apt-pkg/clean.cc #, c-format msgid "Unable to stat %s." @@ -1592,6 +1623,12 @@ msgstr "" " '%s'\n" "འདྲེན་འཕྲུལ་'%s'ནང་བཙུགས་བཞིནམ་ལས་ལོག་ལྡེ་འདི་ཨེབ།\n" +#: apt-private/acqprogress.cc +msgid "" +"Do you want to accept these changes and continue updating from this " +"repository?" +msgstr "" + #: apt-private/private-cachefile.cc msgid "Correcting dependencies..." msgstr "རྟེན་འབྲེལ་ནོར་བཅོས་འབད་དོ།" @@ -3430,7 +3467,7 @@ msgstr "ཡིག་སྣོད་འཚོལ་མ་ཐོབ།" msgid "Direct connection to %s domains is blocked by default." msgstr "" -#: methods/connect.cc methods/http.cc +#: methods/connect.cc #, c-format msgid "Connecting to %s (%s)" msgstr "%s (%s)་ལུ་མཐུད་དོ།" diff --git a/po/el.po b/po/el.po index e981f3a16..47ea41244 100644 --- a/po/el.po +++ b/po/el.po @@ -16,7 +16,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: 2017-02-06 14:41+0100\n" +"POT-Creation-Date: 2017-06-28 19:53+0200\n" "PO-Revision-Date: 2008-08-26 18:25+0300\n" "Last-Translator: Θανάσης Νάτσης <natsisthanasis@gmail.com>\n" "Language-Team: Greek <debian-l10n-greek@lists.debian.org>\n" @@ -299,6 +299,13 @@ msgstr "" msgid "GPG error: %s: %s" msgstr "" +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"Skipping acquire of configured file '%s' as repository '%s' doesn't have the " +"component '%s' (component misspelt in sources.list?)" +msgstr "" + #: apt-pkg/acquire-item.cc #, c-format msgid "" @@ -309,8 +316,8 @@ msgstr "" #: apt-pkg/acquire-item.cc #, c-format msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" +"Skipping acquire of configured file '%s' as repository '%s' does not seem to " +"provide it (sources.list entry misspelt?)" msgstr "" #: apt-pkg/acquire-item.cc @@ -335,6 +342,31 @@ msgstr "" msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" +#: apt-pkg/acquire-item.cc +#, c-format +msgid "Repository '%s' changed its '%s' value from '%s' to '%s'" +msgstr "" + +#: apt-pkg/acquire-item.cc +#, c-format +msgid "Repository '%s' changed its default priority for %s from %hi to %hi." +msgstr "" + +#. TRANSLATOR: the "this" refers to changes in the repository like a new release or owner change +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"More information about this can be found online in the Release notes at: %s" +msgstr "" + +#. TRANSLATOR: %s is the name of the manpage in question, e.g. apt-secure(8) +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"This must be accepted explicitly before updates for this repository can be " +"applied. See %s manpage for details." +msgstr "" + #: apt-pkg/acquire-item.cc #, c-format msgid "" @@ -428,12 +460,6 @@ msgstr "" msgid "Clean of %s is not supported" msgstr "Ο τύπος αρχείου ευρετηρίου '%s' δεν υποστηρίζεται" -#: apt-pkg/acquire.cc apt-pkg/clean.cc apt-pkg/contrib/cdromutl.cc -#: methods/mirror.cc -#, c-format -msgid "Unable to change to %s" -msgstr "Αδύνατη η αλλαγή σε %s" - #. only show the ETA if it makes sense #. two days #: apt-pkg/acquire.cc @@ -622,6 +648,11 @@ msgstr "Eγγραφή νέας λίστας πηγών\n" msgid "Source list entries for this disc are:\n" msgstr "Οι κατάλογοι με τις πηγές αυτού του δίσκου είναι: \n" +#: apt-pkg/clean.cc +#, c-format +msgid "Unable to change to %s" +msgstr "Αδύνατη η αλλαγή σε %s" + #: apt-pkg/clean.cc #, c-format msgid "Unable to stat %s." @@ -1610,6 +1641,12 @@ msgstr "" " '%s'\n" "στη συσκευή '%s' και πιέστε enter\n" +#: apt-private/acqprogress.cc +msgid "" +"Do you want to accept these changes and continue updating from this " +"repository?" +msgstr "" + #: apt-private/private-cachefile.cc msgid "Correcting dependencies..." msgstr "Διόρθωση εξαρτήσεων..." @@ -3456,7 +3493,7 @@ msgstr "Το αρχείο Δε Βρέθηκε" msgid "Direct connection to %s domains is blocked by default." msgstr "" -#: methods/connect.cc methods/http.cc +#: methods/connect.cc #, c-format msgid "Connecting to %s (%s)" msgstr "Σύνδεση στο %s (%s)" diff --git a/po/es.po b/po/es.po index 22945fb7a..8491d5dc0 100644 --- a/po/es.po +++ b/po/es.po @@ -34,7 +34,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: 2017-02-06 14:41+0100\n" +"POT-Creation-Date: 2017-06-28 19:53+0200\n" "PO-Revision-Date: 2016-01-26 01:51+0100\n" "Last-Translator: Manuel \"Venturi\" Porras Peralta <venturi@openmailbox." "org>\n" @@ -361,6 +361,18 @@ msgstr "" msgid "GPG error: %s: %s" msgstr "Error de GPG: %s: %s" +#: apt-pkg/acquire-item.cc +#, fuzzy, c-format +#| msgid "" +#| "Skipping acquire of configured file '%s' as repository '%s' doesn't " +#| "support architecture '%s'" +msgid "" +"Skipping acquire of configured file '%s' as repository '%s' doesn't have the " +"component '%s' (component misspelt in sources.list?)" +msgstr "" +"Omitiendo el uso del fichero configurado «%s» ya que el repositorio «%s» no " +"admite la arquitectura «%s»" + #: apt-pkg/acquire-item.cc #, c-format msgid "" @@ -371,13 +383,16 @@ msgstr "" "admite la arquitectura «%s»" #: apt-pkg/acquire-item.cc -#, c-format +#, fuzzy, c-format +#| msgid "" +#| "Skipping acquire of configured file '%s' as repository '%s' doesn't " +#| "support architecture '%s'" msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" +"Skipping acquire of configured file '%s' as repository '%s' does not seem to " +"provide it (sources.list entry misspelt?)" msgstr "" -"No se pudo encontrar la entrada esperada «%s» en el archivo " -"«Release» (entrada incorrecta en «sources.list» o fichero mal formado)" +"Omitiendo el uso del fichero configurado «%s» ya que el repositorio «%s» no " +"admite la arquitectura «%s»" #: apt-pkg/acquire-item.cc #, c-format @@ -405,6 +420,31 @@ msgstr "" msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "Distribución conflictiva: %s (se esperaba %s, pero se obtuvo %s)" +#: apt-pkg/acquire-item.cc +#, c-format +msgid "Repository '%s' changed its '%s' value from '%s' to '%s'" +msgstr "" + +#: apt-pkg/acquire-item.cc +#, c-format +msgid "Repository '%s' changed its default priority for %s from %hi to %hi." +msgstr "" + +#. TRANSLATOR: the "this" refers to changes in the repository like a new release or owner change +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"More information about this can be found online in the Release notes at: %s" +msgstr "" + +#. TRANSLATOR: %s is the name of the manpage in question, e.g. apt-secure(8) +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"This must be accepted explicitly before updates for this repository can be " +"applied. See %s manpage for details." +msgstr "" + #: apt-pkg/acquire-item.cc #, c-format msgid "" @@ -506,12 +546,6 @@ msgstr "" msgid "Clean of %s is not supported" msgstr "No se admite la limpieza de «%s»" -#: apt-pkg/acquire.cc apt-pkg/clean.cc apt-pkg/contrib/cdromutl.cc -#: methods/mirror.cc -#, c-format -msgid "Unable to change to %s" -msgstr "No se pudo cambiar a %s" - #. only show the ETA if it makes sense #. two days #: apt-pkg/acquire.cc @@ -713,6 +747,11 @@ msgstr "Escribiendo nueva lista de fuentes\n" msgid "Source list entries for this disc are:\n" msgstr "Las entradas de la lista de fuentes para este disco son:\n" +#: apt-pkg/clean.cc +#, c-format +msgid "Unable to change to %s" +msgstr "No se pudo cambiar a %s" + #: apt-pkg/clean.cc #, c-format msgid "Unable to stat %s." @@ -1746,6 +1785,12 @@ msgstr "" " «%s»\n" "en la unidad «%s» y pulse [Enter]\n" +#: apt-private/acqprogress.cc +msgid "" +"Do you want to accept these changes and continue updating from this " +"repository?" +msgstr "" + #: apt-private/private-cachefile.cc msgid "Correcting dependencies..." msgstr "Corrigiendo dependencias..." @@ -3642,7 +3687,7 @@ msgstr "Fichero no encontrado" msgid "Direct connection to %s domains is blocked by default." msgstr "" -#: methods/connect.cc methods/http.cc +#: methods/connect.cc #, c-format msgid "Connecting to %s (%s)" msgstr "Conectando a %s (%s)" @@ -3967,6 +4012,13 @@ msgstr "La conexión se cerró prematuramente" msgid "Empty files can't be valid archives" msgstr "Los ficheros vacíos no pueden ser archivos válidos" +#~ msgid "" +#~ "Unable to find expected entry '%s' in Release file (Wrong sources.list " +#~ "entry or malformed file)" +#~ msgstr "" +#~ "No se pudo encontrar la entrada esperada «%s» en el archivo " +#~ "«Release» (entrada incorrecta en «sources.list» o fichero mal formado)" + #~ msgid "Unmet dependencies. Try using --fix-broken." #~ msgstr "Dependencias incumplidas. Pruebe de nuevo utilizando --fix-broken." diff --git a/po/eu.po b/po/eu.po index ff70cda4b..c7e9df4e8 100644 --- a/po/eu.po +++ b/po/eu.po @@ -7,7 +7,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: 2017-02-06 14:41+0100\n" +"POT-Creation-Date: 2017-06-28 19:53+0200\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" @@ -290,6 +290,13 @@ msgstr "" msgid "GPG error: %s: %s" msgstr "" +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"Skipping acquire of configured file '%s' as repository '%s' doesn't have the " +"component '%s' (component misspelt in sources.list?)" +msgstr "" + #: apt-pkg/acquire-item.cc #, c-format msgid "" @@ -300,8 +307,8 @@ msgstr "" #: apt-pkg/acquire-item.cc #, c-format msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" +"Skipping acquire of configured file '%s' as repository '%s' does not seem to " +"provide it (sources.list entry misspelt?)" msgstr "" #: apt-pkg/acquire-item.cc @@ -326,6 +333,31 @@ msgstr "" msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" +#: apt-pkg/acquire-item.cc +#, c-format +msgid "Repository '%s' changed its '%s' value from '%s' to '%s'" +msgstr "" + +#: apt-pkg/acquire-item.cc +#, c-format +msgid "Repository '%s' changed its default priority for %s from %hi to %hi." +msgstr "" + +#. TRANSLATOR: the "this" refers to changes in the repository like a new release or owner change +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"More information about this can be found online in the Release notes at: %s" +msgstr "" + +#. TRANSLATOR: %s is the name of the manpage in question, e.g. apt-secure(8) +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"This must be accepted explicitly before updates for this repository can be " +"applied. See %s manpage for details." +msgstr "" + #: apt-pkg/acquire-item.cc #, c-format msgid "" @@ -417,12 +449,6 @@ msgstr "" msgid "Clean of %s is not supported" msgstr "'%s' motako indize fitxategirik ez da onartzen" -#: apt-pkg/acquire.cc apt-pkg/clean.cc apt-pkg/contrib/cdromutl.cc -#: methods/mirror.cc -#, c-format -msgid "Unable to change to %s" -msgstr "Ezin da %s(e)ra aldatu" - #. only show the ETA if it makes sense #. two days #: apt-pkg/acquire.cc @@ -608,6 +634,11 @@ msgstr "Jatorri zerrenda berria idazten\n" msgid "Source list entries for this disc are:\n" msgstr "Diskoarentzako jatorri sarrerak:\n" +#: apt-pkg/clean.cc +#, c-format +msgid "Unable to change to %s" +msgstr "Ezin da %s(e)ra aldatu" + #: apt-pkg/clean.cc #, c-format msgid "Unable to stat %s." @@ -1591,6 +1622,12 @@ msgstr "" " '%s'\n" "izeneko diska '%s' gailuan eta enter sakatu\n" +#: apt-private/acqprogress.cc +msgid "" +"Do you want to accept these changes and continue updating from this " +"repository?" +msgstr "" + #: apt-private/private-cachefile.cc msgid "Correcting dependencies..." msgstr "Mendekotasunak zuzentzen..." @@ -3423,7 +3460,7 @@ msgstr "Ez da fitxategia aurkitu" msgid "Direct connection to %s domains is blocked by default." msgstr "" -#: methods/connect.cc methods/http.cc +#: methods/connect.cc #, c-format msgid "Connecting to %s (%s)" msgstr "Konektatzen -> %s.(%s)" diff --git a/po/fi.po b/po/fi.po index 754901c89..086c2c262 100644 --- a/po/fi.po +++ b/po/fi.po @@ -8,7 +8,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: 2017-02-06 14:41+0100\n" +"POT-Creation-Date: 2017-06-28 19:53+0200\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" @@ -290,6 +290,13 @@ msgstr "" msgid "GPG error: %s: %s" msgstr "" +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"Skipping acquire of configured file '%s' as repository '%s' doesn't have the " +"component '%s' (component misspelt in sources.list?)" +msgstr "" + #: apt-pkg/acquire-item.cc #, c-format msgid "" @@ -300,8 +307,8 @@ msgstr "" #: apt-pkg/acquire-item.cc #, c-format msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" +"Skipping acquire of configured file '%s' as repository '%s' does not seem to " +"provide it (sources.list entry misspelt?)" msgstr "" #: apt-pkg/acquire-item.cc @@ -326,6 +333,31 @@ msgstr "" msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" +#: apt-pkg/acquire-item.cc +#, c-format +msgid "Repository '%s' changed its '%s' value from '%s' to '%s'" +msgstr "" + +#: apt-pkg/acquire-item.cc +#, c-format +msgid "Repository '%s' changed its default priority for %s from %hi to %hi." +msgstr "" + +#. TRANSLATOR: the "this" refers to changes in the repository like a new release or owner change +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"More information about this can be found online in the Release notes at: %s" +msgstr "" + +#. TRANSLATOR: %s is the name of the manpage in question, e.g. apt-secure(8) +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"This must be accepted explicitly before updates for this repository can be " +"applied. See %s manpage for details." +msgstr "" + #: apt-pkg/acquire-item.cc #, c-format msgid "" @@ -417,12 +449,6 @@ msgstr "" msgid "Clean of %s is not supported" msgstr "Hakemistotiedoston tyyppi \"%s\" ei ole tuettu" -#: apt-pkg/acquire.cc apt-pkg/clean.cc apt-pkg/contrib/cdromutl.cc -#: methods/mirror.cc -#, c-format -msgid "Unable to change to %s" -msgstr "Kansioon %s vaihto ei onnistu" - #. only show the ETA if it makes sense #. two days #: apt-pkg/acquire.cc @@ -608,6 +634,11 @@ msgstr "Kirjoitetaan uusi lähdeluettelo\n" msgid "Source list entries for this disc are:\n" msgstr "Tämän levyn lähdekoodipakettien luettelon tietueita ovat:\n" +#: apt-pkg/clean.cc +#, c-format +msgid "Unable to change to %s" +msgstr "Kansioon %s vaihto ei onnistu" + #: apt-pkg/clean.cc #, c-format msgid "Unable to stat %s." @@ -1586,6 +1617,12 @@ msgstr "" "\"%s\"\n" "asemaan \"%s\" ja paina Enter\n" +#: apt-private/acqprogress.cc +msgid "" +"Do you want to accept these changes and continue updating from this " +"repository?" +msgstr "" + #: apt-private/private-cachefile.cc msgid "Correcting dependencies..." msgstr "Korjataan riippuvuuksia..." @@ -3418,7 +3455,7 @@ msgstr "Tiedostoa ei löydy" msgid "Direct connection to %s domains is blocked by default." msgstr "" -#: methods/connect.cc methods/http.cc +#: methods/connect.cc #, c-format msgid "Connecting to %s (%s)" msgstr "Avataan yhteys %s (%s)" diff --git a/po/fr.po b/po/fr.po index 5b56d0db9..b0e003e62 100644 --- a/po/fr.po +++ b/po/fr.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: 2017-02-06 14:41+0100\n" +"POT-Creation-Date: 2017-06-28 19:53+0200\n" "PO-Revision-Date: 2013-12-15 16:45+0100\n" "Last-Translator: Julien Patriarca <leatherface@debian.org>\n" "Language-Team: French <debian-l10n-french@lists.debian.org>\n" @@ -296,6 +296,13 @@ msgstr "" msgid "GPG error: %s: %s" msgstr "Erreur de GPG : %s : %s" +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"Skipping acquire of configured file '%s' as repository '%s' doesn't have the " +"component '%s' (component misspelt in sources.list?)" +msgstr "" + #: apt-pkg/acquire-item.cc #, c-format msgid "" @@ -306,11 +313,9 @@ msgstr "" #: apt-pkg/acquire-item.cc #, c-format msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" +"Skipping acquire of configured file '%s' as repository '%s' does not seem to " +"provide it (sources.list entry misspelt?)" msgstr "" -"Impossible de trouver l'entrée « %s » attendue dans le fichier « Release » : " -"ligne non valable dans sources.list ou fichier corrompu" #: apt-pkg/acquire-item.cc #, c-format @@ -336,6 +341,31 @@ msgstr "" msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "Distribution en conflit : %s (%s attendu, mais %s obtenu)" +#: apt-pkg/acquire-item.cc +#, c-format +msgid "Repository '%s' changed its '%s' value from '%s' to '%s'" +msgstr "" + +#: apt-pkg/acquire-item.cc +#, c-format +msgid "Repository '%s' changed its default priority for %s from %hi to %hi." +msgstr "" + +#. TRANSLATOR: the "this" refers to changes in the repository like a new release or owner change +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"More information about this can be found online in the Release notes at: %s" +msgstr "" + +#. TRANSLATOR: %s is the name of the manpage in question, e.g. apt-secure(8) +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"This must be accepted explicitly before updates for this repository can be " +"applied. See %s manpage for details." +msgstr "" + #: apt-pkg/acquire-item.cc #, c-format msgid "" @@ -431,12 +461,6 @@ msgstr "" msgid "Clean of %s is not supported" msgstr "Le type de fichier d'index « %s » n'est pas accepté" -#: apt-pkg/acquire.cc apt-pkg/clean.cc apt-pkg/contrib/cdromutl.cc -#: methods/mirror.cc -#, c-format -msgid "Unable to change to %s" -msgstr "Impossible d'accéder à %s" - #. only show the ETA if it makes sense #. two days #: apt-pkg/acquire.cc @@ -644,6 +668,11 @@ msgstr "Écriture de la nouvelle liste de sources\n" msgid "Source list entries for this disc are:\n" msgstr "Les entrées de listes de sources pour ce disque sont :\n" +#: apt-pkg/clean.cc +#, c-format +msgid "Unable to change to %s" +msgstr "Impossible d'accéder à %s" + #: apt-pkg/clean.cc #, c-format msgid "Unable to stat %s." @@ -1676,6 +1705,12 @@ msgstr "" "« %s »\n" "dans le lecteur « %s » et appuyez sur la touche Entrée\n" +#: apt-private/acqprogress.cc +msgid "" +"Do you want to accept these changes and continue updating from this " +"repository?" +msgstr "" + #: apt-private/private-cachefile.cc msgid "Correcting dependencies..." msgstr "Correction des dépendances..." @@ -3566,7 +3601,7 @@ msgstr "Fichier non trouvé" msgid "Direct connection to %s domains is blocked by default." msgstr "" -#: methods/connect.cc methods/http.cc +#: methods/connect.cc #, c-format msgid "Connecting to %s (%s)" msgstr "Connexion à %s (%s)" @@ -3895,6 +3930,13 @@ msgstr "Connexion fermée prématurément" msgid "Empty files can't be valid archives" msgstr "Les fichiers vides ne peuvent être des archives valables" +#~ msgid "" +#~ "Unable to find expected entry '%s' in Release file (Wrong sources.list " +#~ "entry or malformed file)" +#~ msgstr "" +#~ "Impossible de trouver l'entrée « %s » attendue dans le fichier " +#~ "« Release » : ligne non valable dans sources.list ou fichier corrompu" + #~ msgid "Unmet dependencies. Try using --fix-broken." #~ msgstr "Dépendances manquantes. Essayez d'utiliser l'option --fix-broken." diff --git a/po/gl.po b/po/gl.po index 9ed870497..533d6fcb5 100644 --- a/po/gl.po +++ b/po/gl.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: 2017-02-06 14:41+0100\n" +"POT-Creation-Date: 2017-06-28 19:53+0200\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" @@ -297,6 +297,13 @@ msgstr "" msgid "GPG error: %s: %s" msgstr "Produciuse un erro de GPG: %s %s" +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"Skipping acquire of configured file '%s' as repository '%s' doesn't have the " +"component '%s' (component misspelt in sources.list?)" +msgstr "" + #: apt-pkg/acquire-item.cc #, c-format msgid "" @@ -307,11 +314,9 @@ msgstr "" #: apt-pkg/acquire-item.cc #, c-format msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" +"Skipping acquire of configured file '%s' as repository '%s' does not seem to " +"provide it (sources.list entry misspelt?)" msgstr "" -"Non é posíbel atopar a entrada agardada «%s» no ficheiro de publicación " -"(entrada sources.list incorrecta ou ficheiro con formato incorrecto)" #: apt-pkg/acquire-item.cc #, c-format @@ -335,6 +340,31 @@ msgstr "" msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "Conflito na distribución: %s (agardábase %s mais obtívose %s)" +#: apt-pkg/acquire-item.cc +#, c-format +msgid "Repository '%s' changed its '%s' value from '%s' to '%s'" +msgstr "" + +#: apt-pkg/acquire-item.cc +#, c-format +msgid "Repository '%s' changed its default priority for %s from %hi to %hi." +msgstr "" + +#. TRANSLATOR: the "this" refers to changes in the repository like a new release or owner change +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"More information about this can be found online in the Release notes at: %s" +msgstr "" + +#. TRANSLATOR: %s is the name of the manpage in question, e.g. apt-secure(8) +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"This must be accepted explicitly before updates for this repository can be " +"applied. See %s manpage for details." +msgstr "" + #: apt-pkg/acquire-item.cc #, c-format msgid "" @@ -426,12 +456,6 @@ msgstr "" msgid "Clean of %s is not supported" msgstr "O tipo de ficheiros de índices «%s» non está admitido" -#: apt-pkg/acquire.cc apt-pkg/clean.cc apt-pkg/contrib/cdromutl.cc -#: methods/mirror.cc -#, c-format -msgid "Unable to change to %s" -msgstr "Non é posíbel cambiar a %s" - #. only show the ETA if it makes sense #. two days #: apt-pkg/acquire.cc @@ -632,6 +656,11 @@ msgstr "Escribindo a nova lista de orixes\n" msgid "Source list entries for this disc are:\n" msgstr "As entradas da lista de orixes deste disco son:\n" +#: apt-pkg/clean.cc +#, c-format +msgid "Unable to change to %s" +msgstr "Non é posíbel cambiar a %s" + #: apt-pkg/clean.cc #, c-format msgid "Unable to stat %s." @@ -1644,6 +1673,12 @@ msgstr "" " «%s»\n" "na unidade «%s» e prema Intro\n" +#: apt-private/acqprogress.cc +msgid "" +"Do you want to accept these changes and continue updating from this " +"repository?" +msgstr "" + #: apt-private/private-cachefile.cc msgid "Correcting dependencies..." msgstr "Corrixindo as dependencias..." @@ -3491,7 +3526,7 @@ msgstr "Non se atopou o ficheiro" msgid "Direct connection to %s domains is blocked by default." msgstr "" -#: methods/connect.cc methods/http.cc +#: methods/connect.cc #, c-format msgid "Connecting to %s (%s)" msgstr "Conectando a %s (%s)" @@ -3816,6 +3851,13 @@ msgstr "A conexión pechouse prematuramente" msgid "Empty files can't be valid archives" msgstr "Os ficheiros baleiros non poden ser arquivadores válidos" +#~ msgid "" +#~ "Unable to find expected entry '%s' in Release file (Wrong sources.list " +#~ "entry or malformed file)" +#~ msgstr "" +#~ "Non é posíbel atopar a entrada agardada «%s» no ficheiro de publicación " +#~ "(entrada sources.list incorrecta ou ficheiro con formato incorrecto)" + #~ msgid "Unmet dependencies. Try using --fix-broken." #~ msgstr "Dependencias incumpridas. Probe a empregar --fix-broken." diff --git a/po/hu.po b/po/hu.po index f9ef08763..6e1a807d8 100644 --- a/po/hu.po +++ b/po/hu.po @@ -7,7 +7,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: 2017-02-06 14:41+0100\n" +"POT-Creation-Date: 2017-06-28 19:53+0200\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" @@ -304,6 +304,18 @@ msgstr "" msgid "GPG error: %s: %s" msgstr "GPG hiba: %s: %s" +#: apt-pkg/acquire-item.cc +#, fuzzy, c-format +#| msgid "" +#| "Skipping acquire of configured file '%s' as repository '%s' doesn't " +#| "support architecture '%s'" +msgid "" +"Skipping acquire of configured file '%s' as repository '%s' doesn't have the " +"component '%s' (component misspelt in sources.list?)" +msgstr "" +"A beállított „%s” fájl beszerzésének kihagyása, mert a(z) „%s” tároló nem " +"támogatja a(z) „%s” architektúrát" + #: apt-pkg/acquire-item.cc #, c-format msgid "" @@ -314,13 +326,16 @@ msgstr "" "támogatja a(z) „%s” architektúrát" #: apt-pkg/acquire-item.cc -#, c-format +#, fuzzy, c-format +#| msgid "" +#| "Skipping acquire of configured file '%s' as repository '%s' doesn't " +#| "support architecture '%s'" msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" +"Skipping acquire of configured file '%s' as repository '%s' does not seem to " +"provide it (sources.list entry misspelt?)" msgstr "" -"A várt „%s” bejegyzés nem található a Release fájlban (Rossz sources.list " -"bejegyzés vagy helytelenül formázott fájl)" +"A beállított „%s” fájl beszerzésének kihagyása, mert a(z) „%s” tároló nem " +"támogatja a(z) „%s” architektúrát" #: apt-pkg/acquire-item.cc #, c-format @@ -348,6 +363,31 @@ msgstr "" msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "Ütköző disztribúció: %s (a várt %s helyett %s érkezett)" +#: apt-pkg/acquire-item.cc +#, c-format +msgid "Repository '%s' changed its '%s' value from '%s' to '%s'" +msgstr "" + +#: apt-pkg/acquire-item.cc +#, c-format +msgid "Repository '%s' changed its default priority for %s from %hi to %hi." +msgstr "" + +#. TRANSLATOR: the "this" refers to changes in the repository like a new release or owner change +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"More information about this can be found online in the Release notes at: %s" +msgstr "" + +#. TRANSLATOR: %s is the name of the manpage in question, e.g. apt-secure(8) +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"This must be accepted explicitly before updates for this repository can be " +"applied. See %s manpage for details." +msgstr "" + #: apt-pkg/acquire-item.cc #, c-format msgid "" @@ -445,12 +485,6 @@ msgstr "" msgid "Clean of %s is not supported" msgstr "A(z) „%s” tisztítása nem támogatott" -#: apt-pkg/acquire.cc apt-pkg/clean.cc apt-pkg/contrib/cdromutl.cc -#: methods/mirror.cc -#, c-format -msgid "Unable to change to %s" -msgstr "Nem sikerült ide váltani: %s" - #. only show the ETA if it makes sense #. two days #: apt-pkg/acquire.cc @@ -645,6 +679,11 @@ msgstr "Új forráslista írása\n" msgid "Source list entries for this disc are:\n" msgstr "A lemezhez tartozó forráslista-bejegyzések a következők:\n" +#: apt-pkg/clean.cc +#, c-format +msgid "Unable to change to %s" +msgstr "Nem sikerült ide váltani: %s" + #: apt-pkg/clean.cc #, c-format msgid "Unable to stat %s." @@ -1668,6 +1707,12 @@ msgstr "" " „%s”\n" "címkéjű lemezt a(z) %s meghajtóba, és nyomja meg az Entert\n" +#: apt-private/acqprogress.cc +msgid "" +"Do you want to accept these changes and continue updating from this " +"repository?" +msgstr "" + #: apt-private/private-cachefile.cc msgid "Correcting dependencies..." msgstr "Függőségek javítása..." @@ -3539,7 +3584,7 @@ msgstr "A fájl nem található" msgid "Direct connection to %s domains is blocked by default." msgstr "" -#: methods/connect.cc methods/http.cc +#: methods/connect.cc #, c-format msgid "Connecting to %s (%s)" msgstr "Csatlakozás: %s (%s)" @@ -3865,6 +3910,13 @@ msgstr "A kapcsolat idő előtt lezárult" msgid "Empty files can't be valid archives" msgstr "Az üres fájlok biztosan nem érvényes csomagok" +#~ msgid "" +#~ "Unable to find expected entry '%s' in Release file (Wrong sources.list " +#~ "entry or malformed file)" +#~ msgstr "" +#~ "A várt „%s” bejegyzés nem található a Release fájlban (Rossz sources.list " +#~ "bejegyzés vagy helytelenül formázott fájl)" + #~ msgid "Unmet dependencies. Try using --fix-broken." #~ msgstr "Teljesítetlen függőségek. Próbálja a --fix-broken használatával." diff --git a/po/it.po b/po/it.po index 385f1f155..666a760a4 100644 --- a/po/it.po +++ b/po/it.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: 2017-02-06 14:41+0100\n" +"POT-Creation-Date: 2017-06-28 19:53+0200\n" "PO-Revision-Date: 2015-04-07 16:51+0100\n" "Last-Translator: Milo Casagrande <milo@milo.name>\n" "Language-Team: Italian <tp@lists.linux.it>\n" @@ -295,6 +295,13 @@ msgstr "" msgid "GPG error: %s: %s" msgstr "Errore GPG: %s: %s" +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"Skipping acquire of configured file '%s' as repository '%s' doesn't have the " +"component '%s' (component misspelt in sources.list?)" +msgstr "" + #: apt-pkg/acquire-item.cc #, c-format msgid "" @@ -305,11 +312,9 @@ msgstr "" #: apt-pkg/acquire-item.cc #, c-format msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" +"Skipping acquire of configured file '%s' as repository '%s' does not seem to " +"provide it (sources.list entry misspelt?)" msgstr "" -"Impossibile trovare la voce \"%s\" nel file Release (voce in sources.list " -"errata o file danneggiato)" #: apt-pkg/acquire-item.cc #, c-format @@ -335,6 +340,31 @@ msgstr "" msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "Distribuzione in conflitto: %s (atteso %s ma ottenuto %s)" +#: apt-pkg/acquire-item.cc +#, c-format +msgid "Repository '%s' changed its '%s' value from '%s' to '%s'" +msgstr "" + +#: apt-pkg/acquire-item.cc +#, c-format +msgid "Repository '%s' changed its default priority for %s from %hi to %hi." +msgstr "" + +#. TRANSLATOR: the "this" refers to changes in the repository like a new release or owner change +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"More information about this can be found online in the Release notes at: %s" +msgstr "" + +#. TRANSLATOR: %s is the name of the manpage in question, e.g. apt-secure(8) +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"This must be accepted explicitly before updates for this repository can be " +"applied. See %s manpage for details." +msgstr "" + #: apt-pkg/acquire-item.cc #, c-format msgid "" @@ -429,12 +459,6 @@ msgstr "" msgid "Clean of %s is not supported" msgstr "La pulizia di %s non è supportata" -#: apt-pkg/acquire.cc apt-pkg/clean.cc apt-pkg/contrib/cdromutl.cc -#: methods/mirror.cc -#, c-format -msgid "Unable to change to %s" -msgstr "Impossibile passare a %s" - #. only show the ETA if it makes sense #. two days #: apt-pkg/acquire.cc @@ -638,6 +662,11 @@ msgstr "Scrittura nuovo elenco sorgenti\n" msgid "Source list entries for this disc are:\n" msgstr "Le voci dell'elenco sorgenti per questo disco sono:\n" +#: apt-pkg/clean.cc +#, c-format +msgid "Unable to change to %s" +msgstr "Impossibile passare a %s" + #: apt-pkg/clean.cc #, c-format msgid "Unable to stat %s." @@ -1665,6 +1694,12 @@ msgstr "" " \"%s\"\n" "nell'unità \"%s\" e premere Invio\n" +#: apt-private/acqprogress.cc +msgid "" +"Do you want to accept these changes and continue updating from this " +"repository?" +msgstr "" + #: apt-private/private-cachefile.cc msgid "Correcting dependencies..." msgstr "Correzione delle dipendenze..." @@ -3539,7 +3574,7 @@ msgstr "File non trovato" msgid "Direct connection to %s domains is blocked by default." msgstr "" -#: methods/connect.cc methods/http.cc +#: methods/connect.cc #, c-format msgid "Connecting to %s (%s)" msgstr "Connessione a %s (%s)" @@ -3867,6 +3902,13 @@ msgstr "Connessione chiusa prematuramente" msgid "Empty files can't be valid archives" msgstr "File vuoti non possono essere archivi validi" +#~ msgid "" +#~ "Unable to find expected entry '%s' in Release file (Wrong sources.list " +#~ "entry or malformed file)" +#~ msgstr "" +#~ "Impossibile trovare la voce \"%s\" nel file Release (voce in sources.list " +#~ "errata o file danneggiato)" + #~ msgid "Unmet dependencies. Try using --fix-broken." #~ msgstr "Dipendenze non trovate. Riprovare usando --fix-broken." diff --git a/po/ja.po b/po/ja.po index 19ef1c57f..66db6dca7 100644 --- a/po/ja.po +++ b/po/ja.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 1.4\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2017-01-27 21:41+0100\n" +"POT-Creation-Date: 2017-06-28 19:53+0200\n" "PO-Revision-Date: 2017-01-06 04:50+0900\n" "Last-Translator: Takuma Yamada <tyamada@takumayamada.com>\n" "Language-Team: Japanese <debian-japanese@lists.debian.org>\n" @@ -304,6 +304,18 @@ msgstr "" msgid "GPG error: %s: %s" msgstr "GPG エラー: %s: %s" +#: apt-pkg/acquire-item.cc +#, fuzzy, c-format +#| msgid "" +#| "Skipping acquire of configured file '%s' as repository '%s' doesn't " +#| "support architecture '%s'" +msgid "" +"Skipping acquire of configured file '%s' as repository '%s' doesn't have the " +"component '%s' (component misspelt in sources.list?)" +msgstr "" +"リポジトリ '%2$s' がアーキテクチャ '%3$s' をサポートしないため設定ファイル " +"'%1$s' の取得をスキップ" + #: apt-pkg/acquire-item.cc #, c-format msgid "" @@ -314,13 +326,16 @@ msgstr "" "'%1$s' の取得をスキップ" #: apt-pkg/acquire-item.cc -#, c-format +#, fuzzy, c-format +#| msgid "" +#| "Skipping acquire of configured file '%s' as repository '%s' doesn't " +#| "support architecture '%s'" msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" +"Skipping acquire of configured file '%s' as repository '%s' does not seem to " +"provide it (sources.list entry misspelt?)" msgstr "" -"期待されるエントリ '%s' が Release ファイル内に見つかりません (誤った " -"sources.list エントリか、壊れたファイル)" +"リポジトリ '%2$s' がアーキテクチャ '%3$s' をサポートしないため設定ファイル " +"'%1$s' の取得をスキップ" #: apt-pkg/acquire-item.cc #, c-format @@ -350,6 +365,31 @@ msgstr "" "ディストリビューションが競合しています: %s (%s を期待していたのに %s を取得し" "ました)" +#: apt-pkg/acquire-item.cc +#, c-format +msgid "Repository '%s' changed its '%s' value from '%s' to '%s'" +msgstr "" + +#: apt-pkg/acquire-item.cc +#, c-format +msgid "Repository '%s' changed its default priority for %s from %hi to %hi." +msgstr "" + +#. TRANSLATOR: the "this" refers to changes in the repository like a new release or owner change +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"More information about this can be found online in the Release notes at: %s" +msgstr "" + +#. TRANSLATOR: %s is the name of the manpage in question, e.g. apt-secure(8) +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"This must be accepted explicitly before updates for this repository can be " +"applied. See %s manpage for details." +msgstr "" + #: apt-pkg/acquire-item.cc #, c-format msgid "" @@ -446,12 +486,6 @@ msgstr "" msgid "Clean of %s is not supported" msgstr "%s の消去はサポートされていません" -#: apt-pkg/acquire.cc apt-pkg/clean.cc apt-pkg/contrib/cdromutl.cc -#: methods/mirror.cc -#, c-format -msgid "Unable to change to %s" -msgstr "%s へ変更することができません" - #. only show the ETA if it makes sense #. two days #: apt-pkg/acquire.cc @@ -649,6 +683,11 @@ msgstr "新しいソースリストを書き込んでいます\n" msgid "Source list entries for this disc are:\n" msgstr "このディスクのソースリストのエントリ:\n" +#: apt-pkg/clean.cc +#, c-format +msgid "Unable to change to %s" +msgstr "%s へ変更することができません" + #: apt-pkg/clean.cc #, c-format msgid "Unable to stat %s." @@ -1663,6 +1702,12 @@ msgstr "" "とラベルの付いたディスクをドライブ '%s' に入れて [Enter] キーを押してくださ" "い\n" +#: apt-private/acqprogress.cc +msgid "" +"Do you want to accept these changes and continue updating from this " +"repository?" +msgstr "" + #: apt-private/private-cachefile.cc msgid "Correcting dependencies..." msgstr "依存関係を解決しています ..." @@ -3529,7 +3574,7 @@ msgstr "ファイルが見つかりません" msgid "Direct connection to %s domains is blocked by default." msgstr "%s ドメインへの直接の接続はデフォルトでブロックされています。" -#: methods/connect.cc methods/http.cc +#: methods/connect.cc #, c-format msgid "Connecting to %s (%s)" msgstr "%s (%s) へ接続しています" @@ -3848,3 +3893,10 @@ msgstr "途中で接続がクローズされました" #: methods/store.cc msgid "Empty files can't be valid archives" msgstr "空のファイルは有効なアーカイブと認められません" + +#~ msgid "" +#~ "Unable to find expected entry '%s' in Release file (Wrong sources.list " +#~ "entry or malformed file)" +#~ msgstr "" +#~ "期待されるエントリ '%s' が Release ファイル内に見つかりません (誤った " +#~ "sources.list エントリか、壊れたファイル)" diff --git a/po/km.po b/po/km.po index b8ada4a73..2b3228b6c 100644 --- a/po/km.po +++ b/po/km.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: 2017-02-06 14:41+0100\n" +"POT-Creation-Date: 2017-06-28 19:53+0200\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" @@ -294,6 +294,13 @@ msgstr "" msgid "GPG error: %s: %s" msgstr "" +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"Skipping acquire of configured file '%s' as repository '%s' doesn't have the " +"component '%s' (component misspelt in sources.list?)" +msgstr "" + #: apt-pkg/acquire-item.cc #, c-format msgid "" @@ -304,8 +311,8 @@ msgstr "" #: apt-pkg/acquire-item.cc #, c-format msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" +"Skipping acquire of configured file '%s' as repository '%s' does not seem to " +"provide it (sources.list entry misspelt?)" msgstr "" #: apt-pkg/acquire-item.cc @@ -330,6 +337,31 @@ msgstr "" msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" +#: apt-pkg/acquire-item.cc +#, c-format +msgid "Repository '%s' changed its '%s' value from '%s' to '%s'" +msgstr "" + +#: apt-pkg/acquire-item.cc +#, c-format +msgid "Repository '%s' changed its default priority for %s from %hi to %hi." +msgstr "" + +#. TRANSLATOR: the "this" refers to changes in the repository like a new release or owner change +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"More information about this can be found online in the Release notes at: %s" +msgstr "" + +#. TRANSLATOR: %s is the name of the manpage in question, e.g. apt-secure(8) +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"This must be accepted explicitly before updates for this repository can be " +"applied. See %s manpage for details." +msgstr "" + #: apt-pkg/acquire-item.cc #, c-format msgid "" @@ -419,12 +451,6 @@ msgstr "" msgid "Clean of %s is not supported" msgstr "ប្រភេទ​ឯកសារ​លិបិក្រម​ '%s' មិនត្រូវ​បាន​គាំទ្រ​" -#: apt-pkg/acquire.cc apt-pkg/clean.cc apt-pkg/contrib/cdromutl.cc -#: methods/mirror.cc -#, c-format -msgid "Unable to change to %s" -msgstr "មិនអាច​ប្ដូរទៅ %s បានឡើយ" - #. only show the ETA if it makes sense #. two days #: apt-pkg/acquire.cc @@ -608,6 +634,11 @@ msgstr "កំពុងសរសេរ​បញ្ជី​ប្រភព​ថ msgid "Source list entries for this disc are:\n" msgstr "ធាតុបញ្ចូល​បញ្ជីប្រភព​សម្រាប់​ឌីស​នេះគឺ ៖\n" +#: apt-pkg/clean.cc +#, c-format +msgid "Unable to change to %s" +msgstr "មិនអាច​ប្ដូរទៅ %s បានឡើយ" + #: apt-pkg/clean.cc #, c-format msgid "Unable to stat %s." @@ -1585,6 +1616,12 @@ msgstr "" " '%s'\n" "ក្នុង​ដ្រាយ​ '%s' ហើយ​ចុច​បញ្ចូល\n" +#: apt-private/acqprogress.cc +msgid "" +"Do you want to accept these changes and continue updating from this " +"repository?" +msgstr "" + #: apt-private/private-cachefile.cc msgid "Correcting dependencies..." msgstr "កំពុង​កែ​ភាពអាស្រ័យ​..." @@ -3405,7 +3442,7 @@ msgstr "រកឯកសារ​មិន​ឃើញ​" msgid "Direct connection to %s domains is blocked by default." msgstr "" -#: methods/connect.cc methods/http.cc +#: methods/connect.cc #, c-format msgid "Connecting to %s (%s)" msgstr "កំពុង​តភ្ជាប់​ទៅ​កាន់​ %s (%s)" diff --git a/po/ko.po b/po/ko.po index 8ec6b0fc3..b827dd2fa 100644 --- a/po/ko.po +++ b/po/ko.po @@ -5,7 +5,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: 2017-02-06 14:41+0100\n" +"POT-Creation-Date: 2017-06-28 19:53+0200\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" @@ -289,6 +289,13 @@ msgstr "" msgid "GPG error: %s: %s" msgstr "GPG 오류: %s: %s" +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"Skipping acquire of configured file '%s' as repository '%s' doesn't have the " +"component '%s' (component misspelt in sources.list?)" +msgstr "" + #: apt-pkg/acquire-item.cc #, c-format msgid "" @@ -299,8 +306,8 @@ msgstr "" #: apt-pkg/acquire-item.cc #, c-format msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" +"Skipping acquire of configured file '%s' as repository '%s' does not seem to " +"provide it (sources.list entry misspelt?)" msgstr "" #: apt-pkg/acquire-item.cc @@ -325,6 +332,31 @@ msgstr "" msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "배포판 충돌: %s (예상값 %s, 실제값 %s)" +#: apt-pkg/acquire-item.cc +#, c-format +msgid "Repository '%s' changed its '%s' value from '%s' to '%s'" +msgstr "" + +#: apt-pkg/acquire-item.cc +#, c-format +msgid "Repository '%s' changed its default priority for %s from %hi to %hi." +msgstr "" + +#. TRANSLATOR: the "this" refers to changes in the repository like a new release or owner change +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"More information about this can be found online in the Release notes at: %s" +msgstr "" + +#. TRANSLATOR: %s is the name of the manpage in question, e.g. apt-secure(8) +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"This must be accepted explicitly before updates for this repository can be " +"applied. See %s manpage for details." +msgstr "" + #: apt-pkg/acquire-item.cc #, c-format msgid "" @@ -416,12 +448,6 @@ msgstr "" msgid "Clean of %s is not supported" msgstr "인덱스 파일 타입 '%s' 타입은 지원하지 않습니다" -#: apt-pkg/acquire.cc apt-pkg/clean.cc apt-pkg/contrib/cdromutl.cc -#: methods/mirror.cc -#, c-format -msgid "Unable to change to %s" -msgstr "%s 디렉토리로 이동할 수 없습니다" - #. only show the ETA if it makes sense #. two days #: apt-pkg/acquire.cc @@ -609,6 +635,11 @@ msgstr "새 소스 리스트를 쓰는 중입니다\n" msgid "Source list entries for this disc are:\n" msgstr "이 디스크의 소스 리스트 항목은 다음과 같습니다:\n" +#: apt-pkg/clean.cc +#, c-format +msgid "Unable to change to %s" +msgstr "%s 디렉토리로 이동할 수 없습니다" + #: apt-pkg/clean.cc #, c-format msgid "Unable to stat %s." @@ -1596,6 +1627,12 @@ msgstr "" "디스크를 넣고 enter를 누르십시오\n" " '%1$s'\n" +#: apt-private/acqprogress.cc +msgid "" +"Do you want to accept these changes and continue updating from this " +"repository?" +msgstr "" + #: apt-private/private-cachefile.cc msgid "Correcting dependencies..." msgstr "의존성을 바로잡는 중입니다..." @@ -3418,7 +3455,7 @@ msgstr "파일이 없습니다" msgid "Direct connection to %s domains is blocked by default." msgstr "" -#: methods/connect.cc methods/http.cc +#: methods/connect.cc #, c-format msgid "Connecting to %s (%s)" msgstr "%s(%s)에 연결하는 중입니다" diff --git a/po/ku.po b/po/ku.po index 3ac5e5421..04c2b8b1f 100644 --- a/po/ku.po +++ b/po/ku.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: 2017-02-06 14:41+0100\n" +"POT-Creation-Date: 2017-06-28 19:53+0200\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" @@ -292,6 +292,13 @@ msgstr "" msgid "GPG error: %s: %s" msgstr "" +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"Skipping acquire of configured file '%s' as repository '%s' doesn't have the " +"component '%s' (component misspelt in sources.list?)" +msgstr "" + #: apt-pkg/acquire-item.cc #, c-format msgid "" @@ -302,8 +309,8 @@ msgstr "" #: apt-pkg/acquire-item.cc #, c-format msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" +"Skipping acquire of configured file '%s' as repository '%s' does not seem to " +"provide it (sources.list entry misspelt?)" msgstr "" #: apt-pkg/acquire-item.cc @@ -328,6 +335,31 @@ msgstr "" msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" +#: apt-pkg/acquire-item.cc +#, c-format +msgid "Repository '%s' changed its '%s' value from '%s' to '%s'" +msgstr "" + +#: apt-pkg/acquire-item.cc +#, c-format +msgid "Repository '%s' changed its default priority for %s from %hi to %hi." +msgstr "" + +#. TRANSLATOR: the "this" refers to changes in the repository like a new release or owner change +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"More information about this can be found online in the Release notes at: %s" +msgstr "" + +#. TRANSLATOR: %s is the name of the manpage in question, e.g. apt-secure(8) +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"This must be accepted explicitly before updates for this repository can be " +"applied. See %s manpage for details." +msgstr "" + #: apt-pkg/acquire-item.cc #, c-format msgid "" @@ -415,12 +447,6 @@ msgstr "" msgid "Clean of %s is not supported" msgstr "" -#: apt-pkg/acquire.cc apt-pkg/clean.cc apt-pkg/contrib/cdromutl.cc -#: methods/mirror.cc -#, c-format -msgid "Unable to change to %s" -msgstr "Nikarî derbasa %s bike" - #. only show the ETA if it makes sense #. two days #: apt-pkg/acquire.cc @@ -601,6 +627,11 @@ msgstr "" msgid "Source list entries for this disc are:\n" msgstr "" +#: apt-pkg/clean.cc +#, c-format +msgid "Unable to change to %s" +msgstr "Nikarî derbasa %s bike" + #: apt-pkg/clean.cc #, fuzzy, c-format msgid "Unable to stat %s." @@ -1567,6 +1598,12 @@ msgid "" "in the drive '%s' and press [Enter]\n" msgstr "Dîsketê siwar bike û piştre bişkoja derbaskirinê bitikîne" +#: apt-private/acqprogress.cc +msgid "" +"Do you want to accept these changes and continue updating from this " +"repository?" +msgstr "" + #: apt-private/private-cachefile.cc msgid "Correcting dependencies..." msgstr "Bindestî tên serrastkirin..." @@ -3303,7 +3340,7 @@ msgstr "Pel nehate dîtin" msgid "Direct connection to %s domains is blocked by default." msgstr "" -#: methods/connect.cc methods/http.cc +#: methods/connect.cc #, c-format msgid "Connecting to %s (%s)" msgstr "Girêdan bi %s (%s) re pêk tê" diff --git a/po/lt.po b/po/lt.po index 108e6d92e..b8850894e 100644 --- a/po/lt.po +++ b/po/lt.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: 2017-02-06 14:41+0100\n" +"POT-Creation-Date: 2017-06-28 19:53+0200\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" @@ -292,6 +292,13 @@ msgstr "" msgid "GPG error: %s: %s" msgstr "GPG klaida: %s: %s" +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"Skipping acquire of configured file '%s' as repository '%s' doesn't have the " +"component '%s' (component misspelt in sources.list?)" +msgstr "" + #: apt-pkg/acquire-item.cc #, c-format msgid "" @@ -302,8 +309,8 @@ msgstr "" #: apt-pkg/acquire-item.cc #, c-format msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" +"Skipping acquire of configured file '%s' as repository '%s' does not seem to " +"provide it (sources.list entry misspelt?)" msgstr "" #: apt-pkg/acquire-item.cc @@ -328,6 +335,31 @@ msgstr "" msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" +#: apt-pkg/acquire-item.cc +#, c-format +msgid "Repository '%s' changed its '%s' value from '%s' to '%s'" +msgstr "" + +#: apt-pkg/acquire-item.cc +#, c-format +msgid "Repository '%s' changed its default priority for %s from %hi to %hi." +msgstr "" + +#. TRANSLATOR: the "this" refers to changes in the repository like a new release or owner change +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"More information about this can be found online in the Release notes at: %s" +msgstr "" + +#. TRANSLATOR: %s is the name of the manpage in question, e.g. apt-secure(8) +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"This must be accepted explicitly before updates for this repository can be " +"applied. See %s manpage for details." +msgstr "" + #: apt-pkg/acquire-item.cc #, c-format msgid "" @@ -415,12 +447,6 @@ msgstr "" msgid "Clean of %s is not supported" msgstr "" -#: apt-pkg/acquire.cc apt-pkg/clean.cc apt-pkg/contrib/cdromutl.cc -#: methods/mirror.cc -#, c-format -msgid "Unable to change to %s" -msgstr "Nepavyko pakeisti į %s" - #. only show the ETA if it makes sense #. two days #: apt-pkg/acquire.cc @@ -603,6 +629,11 @@ msgstr "Rašomas naujas šaltinių sąrašas\n" msgid "Source list entries for this disc are:\n" msgstr "" +#: apt-pkg/clean.cc +#, c-format +msgid "Unable to change to %s" +msgstr "Nepavyko pakeisti į %s" + #: apt-pkg/clean.cc #, c-format msgid "Unable to stat %s." @@ -1575,6 +1606,12 @@ msgstr "" " „%s“,\n" "į įrenginį „%s“ ir paspauskite enter\n" +#: apt-private/acqprogress.cc +msgid "" +"Do you want to accept these changes and continue updating from this " +"repository?" +msgstr "" + #: apt-private/private-cachefile.cc msgid "Correcting dependencies..." msgstr "Taisomos priklausomybės..." @@ -3401,7 +3438,7 @@ msgstr "Failas nerastas" msgid "Direct connection to %s domains is blocked by default." msgstr "" -#: methods/connect.cc methods/http.cc +#: methods/connect.cc #, c-format msgid "Connecting to %s (%s)" msgstr "Jungiamasi prie %s (%s)" diff --git a/po/mr.po b/po/mr.po index cff56acf5..f472b0c2f 100644 --- a/po/mr.po +++ b/po/mr.po @@ -6,7 +6,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: 2017-02-06 14:41+0100\n" +"POT-Creation-Date: 2017-06-28 19:53+0200\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 " @@ -289,6 +289,13 @@ msgstr "" msgid "GPG error: %s: %s" msgstr "" +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"Skipping acquire of configured file '%s' as repository '%s' doesn't have the " +"component '%s' (component misspelt in sources.list?)" +msgstr "" + #: apt-pkg/acquire-item.cc #, c-format msgid "" @@ -299,8 +306,8 @@ msgstr "" #: apt-pkg/acquire-item.cc #, c-format msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" +"Skipping acquire of configured file '%s' as repository '%s' does not seem to " +"provide it (sources.list entry misspelt?)" msgstr "" #: apt-pkg/acquire-item.cc @@ -325,6 +332,31 @@ msgstr "" msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" +#: apt-pkg/acquire-item.cc +#, c-format +msgid "Repository '%s' changed its '%s' value from '%s' to '%s'" +msgstr "" + +#: apt-pkg/acquire-item.cc +#, c-format +msgid "Repository '%s' changed its default priority for %s from %hi to %hi." +msgstr "" + +#. TRANSLATOR: the "this" refers to changes in the repository like a new release or owner change +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"More information about this can be found online in the Release notes at: %s" +msgstr "" + +#. TRANSLATOR: %s is the name of the manpage in question, e.g. apt-secure(8) +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"This must be accepted explicitly before updates for this repository can be " +"applied. See %s manpage for details." +msgstr "" + #: apt-pkg/acquire-item.cc #, c-format msgid "" @@ -416,12 +448,6 @@ msgstr "" msgid "Clean of %s is not supported" msgstr "'%s' प्रकारची निर्देशक संचिका सहाय्यकारी नाही" -#: apt-pkg/acquire.cc apt-pkg/clean.cc apt-pkg/contrib/cdromutl.cc -#: methods/mirror.cc -#, c-format -msgid "Unable to change to %s" -msgstr "%s मध्ये बदलण्यास असमर्थ" - #. only show the ETA if it makes sense #. two days #: apt-pkg/acquire.cc @@ -607,6 +633,11 @@ msgstr "नविन स्त्रोत सूची लिहित आह msgid "Source list entries for this disc are:\n" msgstr "ह्या डिस्क/चकती करिता स्त्रोत सूचीच्या प्रवेशिका आहेत: \n" +#: apt-pkg/clean.cc +#, c-format +msgid "Unable to change to %s" +msgstr "%s मध्ये बदलण्यास असमर्थ" + #: apt-pkg/clean.cc #, c-format msgid "Unable to stat %s." @@ -1587,6 +1618,12 @@ msgstr "" "%s'\n" "'%s' ड्राईव्ह मध्ये व एंटर कळ दाबा\n" +#: apt-private/acqprogress.cc +msgid "" +"Do you want to accept these changes and continue updating from this " +"repository?" +msgstr "" + #: apt-private/private-cachefile.cc msgid "Correcting dependencies..." msgstr "डिपेन्डन्सीज बरोबर/दुरूस्त करत आहे..." @@ -3403,7 +3440,7 @@ msgstr "फाईल सापडली नाही" msgid "Direct connection to %s domains is blocked by default." msgstr "" -#: methods/connect.cc methods/http.cc +#: methods/connect.cc #, c-format msgid "Connecting to %s (%s)" msgstr "%s (%s) ला जोडत आहे" diff --git a/po/nb.po b/po/nb.po index 7ac5ec37c..fcb734625 100644 --- a/po/nb.po +++ b/po/nb.po @@ -12,7 +12,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: 2017-02-06 14:41+0100\n" +"POT-Creation-Date: 2017-06-28 19:53+0200\n" "PO-Revision-Date: 2016-06-11 22:38+0200\n" "Last-Translator: Petter Reinholdtsen <pere@hungry.com>\n" "Language-Team: Norwegian Bokmål <i18n-no@lister.ping.uio.no>\n" @@ -297,6 +297,13 @@ msgstr "" msgid "GPG error: %s: %s" msgstr "GPG-feil: %s: %s" +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"Skipping acquire of configured file '%s' as repository '%s' doesn't have the " +"component '%s' (component misspelt in sources.list?)" +msgstr "" + #: apt-pkg/acquire-item.cc #, c-format msgid "" @@ -307,8 +314,8 @@ msgstr "" #: apt-pkg/acquire-item.cc #, c-format msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" +"Skipping acquire of configured file '%s' as repository '%s' does not seem to " +"provide it (sources.list entry misspelt?)" msgstr "" #: apt-pkg/acquire-item.cc @@ -333,6 +340,31 @@ msgstr "" msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "Konflikt mellom distribusjoner: %s (forventet %s men fant %s)" +#: apt-pkg/acquire-item.cc +#, c-format +msgid "Repository '%s' changed its '%s' value from '%s' to '%s'" +msgstr "" + +#: apt-pkg/acquire-item.cc +#, c-format +msgid "Repository '%s' changed its default priority for %s from %hi to %hi." +msgstr "" + +#. TRANSLATOR: the "this" refers to changes in the repository like a new release or owner change +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"More information about this can be found online in the Release notes at: %s" +msgstr "" + +#. TRANSLATOR: %s is the name of the manpage in question, e.g. apt-secure(8) +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"This must be accepted explicitly before updates for this repository can be " +"applied. See %s manpage for details." +msgstr "" + #: apt-pkg/acquire-item.cc #, c-format msgid "" @@ -422,12 +454,6 @@ msgstr "" msgid "Clean of %s is not supported" msgstr "Oversiktsfil av typen «%s» støttes ikke" -#: apt-pkg/acquire.cc apt-pkg/clean.cc apt-pkg/contrib/cdromutl.cc -#: methods/mirror.cc -#, c-format -msgid "Unable to change to %s" -msgstr "Klarer ikke å endre %s" - #. only show the ETA if it makes sense #. two days #: apt-pkg/acquire.cc @@ -623,6 +649,11 @@ msgstr "Skriver ny kildeliste\n" msgid "Source list entries for this disc are:\n" msgstr "Kildelisteoppføringer for denne CD-en er:\n" +#: apt-pkg/clean.cc +#, c-format +msgid "Unable to change to %s" +msgstr "Klarer ikke å endre %s" + #: apt-pkg/clean.cc #, c-format msgid "Unable to stat %s." @@ -1615,6 +1646,12 @@ msgstr "" " «%s»\n" "i «%s» og trykk «Enter»\n" +#: apt-private/acqprogress.cc +msgid "" +"Do you want to accept these changes and continue updating from this " +"repository?" +msgstr "" + #: apt-private/private-cachefile.cc msgid "Correcting dependencies..." msgstr "Retter på avhengighetsforhold ..." @@ -3473,7 +3510,7 @@ msgstr "Fant ikke fila" msgid "Direct connection to %s domains is blocked by default." msgstr "" -#: methods/connect.cc methods/http.cc +#: methods/connect.cc #, c-format msgid "Connecting to %s (%s)" msgstr "Kobler til %s (%s)" diff --git a/po/ne.po b/po/ne.po index 0ccba9c4f..06e1f830b 100644 --- a/po/ne.po +++ b/po/ne.po @@ -6,7 +6,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: 2017-02-06 14:41+0100\n" +"POT-Creation-Date: 2017-06-28 19:53+0200\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" @@ -290,6 +290,13 @@ msgstr "" msgid "GPG error: %s: %s" msgstr "" +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"Skipping acquire of configured file '%s' as repository '%s' doesn't have the " +"component '%s' (component misspelt in sources.list?)" +msgstr "" + #: apt-pkg/acquire-item.cc #, c-format msgid "" @@ -300,8 +307,8 @@ msgstr "" #: apt-pkg/acquire-item.cc #, c-format msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" +"Skipping acquire of configured file '%s' as repository '%s' does not seem to " +"provide it (sources.list entry misspelt?)" msgstr "" #: apt-pkg/acquire-item.cc @@ -326,6 +333,31 @@ msgstr "" msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" +#: apt-pkg/acquire-item.cc +#, c-format +msgid "Repository '%s' changed its '%s' value from '%s' to '%s'" +msgstr "" + +#: apt-pkg/acquire-item.cc +#, c-format +msgid "Repository '%s' changed its default priority for %s from %hi to %hi." +msgstr "" + +#. TRANSLATOR: the "this" refers to changes in the repository like a new release or owner change +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"More information about this can be found online in the Release notes at: %s" +msgstr "" + +#. TRANSLATOR: %s is the name of the manpage in question, e.g. apt-secure(8) +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"This must be accepted explicitly before updates for this repository can be " +"applied. See %s manpage for details." +msgstr "" + #: apt-pkg/acquire-item.cc #, c-format msgid "" @@ -415,12 +447,6 @@ msgstr "" msgid "Clean of %s is not supported" msgstr "अनुक्रमणिका फाइल प्रकार '%s' समर्थित छैन" -#: apt-pkg/acquire.cc apt-pkg/clean.cc apt-pkg/contrib/cdromutl.cc -#: methods/mirror.cc -#, c-format -msgid "Unable to change to %s" -msgstr "%s मा परिवर्तन गर्न असक्षम" - #. only show the ETA if it makes sense #. two days #: apt-pkg/acquire.cc @@ -604,6 +630,11 @@ msgstr "नयाँ स्रोत सूचि लेखिदैछ\n" msgid "Source list entries for this disc are:\n" msgstr "यो डिस्कको लागि स्रोत सूचि प्रविष्टिहरू:\n" +#: apt-pkg/clean.cc +#, c-format +msgid "Unable to change to %s" +msgstr "%s मा परिवर्तन गर्न असक्षम" + #: apt-pkg/clean.cc #, c-format msgid "Unable to stat %s." @@ -1582,6 +1613,12 @@ msgstr "" " '%s'\n" "र इन्टर थिच्नुहोस्\n" +#: apt-private/acqprogress.cc +msgid "" +"Do you want to accept these changes and continue updating from this " +"repository?" +msgstr "" + #: apt-private/private-cachefile.cc msgid "Correcting dependencies..." msgstr "निर्भरताहरू सुधार गरिदैछ..." @@ -3403,7 +3440,7 @@ msgstr "फाइल फेला परेन " msgid "Direct connection to %s domains is blocked by default." msgstr "" -#: methods/connect.cc methods/http.cc +#: methods/connect.cc #, c-format msgid "Connecting to %s (%s)" msgstr "%s (%s) मा जडान गरिदैछ" diff --git a/po/nl.po b/po/nl.po index 837e5c250..60aad36d3 100644 --- a/po/nl.po +++ b/po/nl.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 1.4~beta4\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2017-02-06 14:20+0100\n" +"POT-Creation-Date: 2017-06-28 19:53+0200\n" "PO-Revision-Date: 2017-01-19 17: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" @@ -308,6 +308,18 @@ msgstr "" msgid "GPG error: %s: %s" msgstr "GPG-fout: %s: %s" +#: apt-pkg/acquire-item.cc +#, fuzzy, c-format +#| msgid "" +#| "Skipping acquire of configured file '%s' as repository '%s' doesn't " +#| "support architecture '%s'" +msgid "" +"Skipping acquire of configured file '%s' as repository '%s' doesn't have the " +"component '%s' (component misspelt in sources.list?)" +msgstr "" +"Opvragen van het in de configuratie vermeld bestand '%s' overgeslagen, " +"vermits pakketbron '%s' de architectuur '%s' niet ondersteunt" + #: apt-pkg/acquire-item.cc #, c-format msgid "" @@ -318,13 +330,16 @@ msgstr "" "vermits pakketbron '%s' de architectuur '%s' niet ondersteunt" #: apt-pkg/acquire-item.cc -#, c-format +#, fuzzy, c-format +#| msgid "" +#| "Skipping acquire of configured file '%s' as repository '%s' doesn't " +#| "support architecture '%s'" msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" +"Skipping acquire of configured file '%s' as repository '%s' does not seem to " +"provide it (sources.list entry misspelt?)" msgstr "" -"Kon de verwachte regel '%s' in het Release-bestand niet vinden (Foute regel " -"in het bestand sources.list of bestand in een ongeldig formaat)" +"Opvragen van het in de configuratie vermeld bestand '%s' overgeslagen, " +"vermits pakketbron '%s' de architectuur '%s' niet ondersteunt" #: apt-pkg/acquire-item.cc #, c-format @@ -353,6 +368,31 @@ msgstr "" msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "Tegenstrijdige distributie: %s (verwachtte %s, maar kreeg %s)" +#: apt-pkg/acquire-item.cc +#, c-format +msgid "Repository '%s' changed its '%s' value from '%s' to '%s'" +msgstr "" + +#: apt-pkg/acquire-item.cc +#, c-format +msgid "Repository '%s' changed its default priority for %s from %hi to %hi." +msgstr "" + +#. TRANSLATOR: the "this" refers to changes in the repository like a new release or owner change +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"More information about this can be found online in the Release notes at: %s" +msgstr "" + +#. TRANSLATOR: %s is the name of the manpage in question, e.g. apt-secure(8) +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"This must be accepted explicitly before updates for this repository can be " +"applied. See %s manpage for details." +msgstr "" + #: apt-pkg/acquire-item.cc #, c-format msgid "" @@ -450,12 +490,6 @@ msgstr "" msgid "Clean of %s is not supported" msgstr "Opschonen van %s wordt niet ondersteund" -#: apt-pkg/acquire.cc apt-pkg/clean.cc apt-pkg/contrib/cdromutl.cc -#: methods/mirror.cc -#, c-format -msgid "Unable to change to %s" -msgstr "Kan %s niet veranderen" - #. only show the ETA if it makes sense #. two days #: apt-pkg/acquire.cc @@ -656,6 +690,11 @@ msgstr "Nieuwe bronlijst wordt weggeschreven\n" msgid "Source list entries for this disc are:\n" msgstr "Bronlijst-elementen voor deze schijf zijn:\n" +#: apt-pkg/clean.cc +#, c-format +msgid "Unable to change to %s" +msgstr "Kan %s niet veranderen" + #: apt-pkg/clean.cc #, c-format msgid "Unable to stat %s." @@ -1687,6 +1726,12 @@ msgstr "" " '%s'\n" "in het station '%s' te plaatsen en op [Enter] te drukken\n" +#: apt-private/acqprogress.cc +msgid "" +"Do you want to accept these changes and continue updating from this " +"repository?" +msgstr "" + #: apt-private/private-cachefile.cc msgid "Correcting dependencies..." msgstr "Vereisten worden gecorrigeerd..." @@ -3593,7 +3638,7 @@ msgstr "Bestand niet gevonden" msgid "Direct connection to %s domains is blocked by default." msgstr "Een rechtstreekse verbinding met %s-domeinen is standaard geblokkeerd." -#: methods/connect.cc methods/http.cc +#: methods/connect.cc #, c-format msgid "Connecting to %s (%s)" msgstr "Er wordt verbinding gemaakt met %s (%s)" @@ -3922,6 +3967,13 @@ msgstr "Verbinding werd voortijdig afgebroken" msgid "Empty files can't be valid archives" msgstr "Lege bestanden kunnen geen geldige archieven zijn" +#~ msgid "" +#~ "Unable to find expected entry '%s' in Release file (Wrong sources.list " +#~ "entry or malformed file)" +#~ msgstr "" +#~ "Kon de verwachte regel '%s' in het Release-bestand niet vinden (Foute " +#~ "regel in het bestand sources.list of bestand in een ongeldig formaat)" + #~ msgid "Unmet dependencies. Try using --fix-broken." #~ msgstr "" #~ "Er zijn vereisten waaraan niet voldaan is. Probeer --fix-broken te " diff --git a/po/nn.po b/po/nn.po index d9c0d877f..86b700e77 100644 --- a/po/nn.po +++ b/po/nn.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: 2017-02-06 14:41+0100\n" +"POT-Creation-Date: 2017-06-28 19:53+0200\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" @@ -293,6 +293,13 @@ msgstr "" msgid "GPG error: %s: %s" msgstr "" +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"Skipping acquire of configured file '%s' as repository '%s' doesn't have the " +"component '%s' (component misspelt in sources.list?)" +msgstr "" + #: apt-pkg/acquire-item.cc #, c-format msgid "" @@ -303,8 +310,8 @@ msgstr "" #: apt-pkg/acquire-item.cc #, c-format msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" +"Skipping acquire of configured file '%s' as repository '%s' does not seem to " +"provide it (sources.list entry misspelt?)" msgstr "" #: apt-pkg/acquire-item.cc @@ -329,6 +336,31 @@ msgstr "" msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" +#: apt-pkg/acquire-item.cc +#, c-format +msgid "Repository '%s' changed its '%s' value from '%s' to '%s'" +msgstr "" + +#: apt-pkg/acquire-item.cc +#, c-format +msgid "Repository '%s' changed its default priority for %s from %hi to %hi." +msgstr "" + +#. TRANSLATOR: the "this" refers to changes in the repository like a new release or owner change +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"More information about this can be found online in the Release notes at: %s" +msgstr "" + +#. TRANSLATOR: %s is the name of the manpage in question, e.g. apt-secure(8) +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"This must be accepted explicitly before updates for this repository can be " +"applied. See %s manpage for details." +msgstr "" + #: apt-pkg/acquire-item.cc #, c-format msgid "" @@ -422,12 +454,6 @@ msgstr "" msgid "Clean of %s is not supported" msgstr "Indeksfiltypen %s er ikkje sttta" -#: apt-pkg/acquire.cc apt-pkg/clean.cc apt-pkg/contrib/cdromutl.cc -#: methods/mirror.cc -#, c-format -msgid "Unable to change to %s" -msgstr "Klarte ikkje byta til %s" - #. only show the ETA if it makes sense #. two days #: apt-pkg/acquire.cc @@ -612,6 +638,11 @@ msgstr "Skriv ny kjeldeliste\n" msgid "Source list entries for this disc are:\n" msgstr "Kjeldelisteoppfringar for denne disken er:\n" +#: apt-pkg/clean.cc +#, c-format +msgid "Unable to change to %s" +msgstr "Klarte ikkje byta til %s" + #: apt-pkg/clean.cc #, c-format msgid "Unable to stat %s." @@ -1591,6 +1622,12 @@ msgstr "" " %s\n" "i stasjonen %s og trykk Enter.\n" +#: apt-private/acqprogress.cc +msgid "" +"Do you want to accept these changes and continue updating from this " +"repository?" +msgstr "" + #: apt-private/private-cachefile.cc msgid "Correcting dependencies..." msgstr "Rettar p krav ..." @@ -3418,7 +3455,7 @@ msgstr "Fann ikkje fila" msgid "Direct connection to %s domains is blocked by default." msgstr "" -#: methods/connect.cc methods/http.cc +#: methods/connect.cc #, c-format msgid "Connecting to %s (%s)" msgstr "Koplar til %s (%s)" diff --git a/po/pl.po b/po/pl.po index e3953b447..1b94a011e 100644 --- a/po/pl.po +++ b/po/pl.po @@ -11,7 +11,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: 2017-02-06 14:41+0100\n" +"POT-Creation-Date: 2017-06-28 19:53+0200\n" "PO-Revision-Date: 2012-07-28 21:53+0200\n" "Last-Translator: Michał Kułach <michal.kulach@gmail.com>\n" "Language-Team: Polish <debian-l10n-polish@lists.debian.org>\n" @@ -297,6 +297,13 @@ msgstr "" msgid "GPG error: %s: %s" msgstr "Błąd GPG: %s: %s" +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"Skipping acquire of configured file '%s' as repository '%s' doesn't have the " +"component '%s' (component misspelt in sources.list?)" +msgstr "" + #: apt-pkg/acquire-item.cc #, c-format msgid "" @@ -307,11 +314,9 @@ msgstr "" #: apt-pkg/acquire-item.cc #, c-format msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" +"Skipping acquire of configured file '%s' as repository '%s' does not seem to " +"provide it (sources.list entry misspelt?)" msgstr "" -"Nie udało się znaleźć oczekiwanego wpisu \"%s\" w pliku Release " -"(nieprawidłowy wpis sources.list lub nieprawidłowy plik)" #: apt-pkg/acquire-item.cc #, c-format @@ -337,6 +342,31 @@ msgstr "" msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "Nieprawidłowa dystrybucja: %s (oczekiwano %s, a otrzymano %s)" +#: apt-pkg/acquire-item.cc +#, c-format +msgid "Repository '%s' changed its '%s' value from '%s' to '%s'" +msgstr "" + +#: apt-pkg/acquire-item.cc +#, c-format +msgid "Repository '%s' changed its default priority for %s from %hi to %hi." +msgstr "" + +#. TRANSLATOR: the "this" refers to changes in the repository like a new release or owner change +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"More information about this can be found online in the Release notes at: %s" +msgstr "" + +#. TRANSLATOR: %s is the name of the manpage in question, e.g. apt-secure(8) +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"This must be accepted explicitly before updates for this repository can be " +"applied. See %s manpage for details." +msgstr "" + #: apt-pkg/acquire-item.cc #, c-format msgid "" @@ -427,12 +457,6 @@ msgstr "" msgid "Clean of %s is not supported" msgstr "Plik indeksu typu \"%s\" nie jest obsługiwany" -#: apt-pkg/acquire.cc apt-pkg/clean.cc apt-pkg/contrib/cdromutl.cc -#: methods/mirror.cc -#, c-format -msgid "Unable to change to %s" -msgstr "Nie udało się przejść do %s" - #. only show the ETA if it makes sense #. two days #: apt-pkg/acquire.cc @@ -633,6 +657,11 @@ msgstr "Zapisywanie nowej listy źródeł\n" msgid "Source list entries for this disc are:\n" msgstr "Źródła dla tej płyty to:\n" +#: apt-pkg/clean.cc +#, c-format +msgid "Unable to change to %s" +msgstr "Nie udało się przejść do %s" + #: apt-pkg/clean.cc #, c-format msgid "Unable to stat %s." @@ -1652,6 +1681,12 @@ msgstr "" " \"%s\"\n" "do napędu \"%s\" i nacisnąć enter\n" +#: apt-private/acqprogress.cc +msgid "" +"Do you want to accept these changes and continue updating from this " +"repository?" +msgstr "" + #: apt-private/private-cachefile.cc msgid "Correcting dependencies..." msgstr "Naprawianie zależności..." @@ -3531,7 +3566,7 @@ msgstr "Nie odnaleziono pliku" msgid "Direct connection to %s domains is blocked by default." msgstr "" -#: methods/connect.cc methods/http.cc +#: methods/connect.cc #, c-format msgid "Connecting to %s (%s)" msgstr "Łączenie z %s (%s)" @@ -3855,6 +3890,13 @@ msgstr "Połączenie zostało przedwcześnie zamknięte" msgid "Empty files can't be valid archives" msgstr "Puste pliki nie mogą być prawidłowymi archiwami" +#~ msgid "" +#~ "Unable to find expected entry '%s' in Release file (Wrong sources.list " +#~ "entry or malformed file)" +#~ msgstr "" +#~ "Nie udało się znaleźć oczekiwanego wpisu \"%s\" w pliku Release " +#~ "(nieprawidłowy wpis sources.list lub nieprawidłowy plik)" + #~ msgid "Unmet dependencies. Try using --fix-broken." #~ msgstr "Niespełnione zależności. Proszę spróbować użyć --fix-broken." diff --git a/po/pt.po b/po/pt.po index 1c5d7fbc7..9219a4f35 100644 --- a/po/pt.po +++ b/po/pt.po @@ -7,7 +7,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: 2017-02-06 14:41+0100\n" +"POT-Creation-Date: 2017-06-28 19:53+0200\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" @@ -293,6 +293,13 @@ msgstr "" msgid "GPG error: %s: %s" msgstr "Erro GPG: %s: %s" +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"Skipping acquire of configured file '%s' as repository '%s' doesn't have the " +"component '%s' (component misspelt in sources.list?)" +msgstr "" + #: apt-pkg/acquire-item.cc #, c-format msgid "" @@ -303,11 +310,9 @@ msgstr "" #: apt-pkg/acquire-item.cc #, c-format msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" +"Skipping acquire of configured file '%s' as repository '%s' does not seem to " +"provide it (sources.list entry misspelt?)" msgstr "" -"Incapaz de encontrar a entrada '%s' esperada no ficheiro Release (entrada " -"errada em sources.list ou ficheiro malformado)" #: apt-pkg/acquire-item.cc #, c-format @@ -333,6 +338,31 @@ msgstr "" msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "Distribuição em conflito: %s (esperado %s mas obtido %s)" +#: apt-pkg/acquire-item.cc +#, c-format +msgid "Repository '%s' changed its '%s' value from '%s' to '%s'" +msgstr "" + +#: apt-pkg/acquire-item.cc +#, c-format +msgid "Repository '%s' changed its default priority for %s from %hi to %hi." +msgstr "" + +#. TRANSLATOR: the "this" refers to changes in the repository like a new release or owner change +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"More information about this can be found online in the Release notes at: %s" +msgstr "" + +#. TRANSLATOR: %s is the name of the manpage in question, e.g. apt-secure(8) +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"This must be accepted explicitly before updates for this repository can be " +"applied. See %s manpage for details." +msgstr "" + #: apt-pkg/acquire-item.cc #, c-format msgid "" @@ -426,12 +456,6 @@ msgstr "" msgid "Clean of %s is not supported" msgstr "Tipo do ficheiro de índice '%s' não é suportado" -#: apt-pkg/acquire.cc apt-pkg/clean.cc apt-pkg/contrib/cdromutl.cc -#: methods/mirror.cc -#, c-format -msgid "Unable to change to %s" -msgstr "Impossível mudar para %s" - #. only show the ETA if it makes sense #. two days #: apt-pkg/acquire.cc @@ -633,6 +657,11 @@ msgstr "A escrever lista de novas source\n" msgid "Source list entries for this disc are:\n" msgstr "As entradas de listas de Source para este Disco são:\n" +#: apt-pkg/clean.cc +#, c-format +msgid "Unable to change to %s" +msgstr "Impossível mudar para %s" + #: apt-pkg/clean.cc #, c-format msgid "Unable to stat %s." @@ -1656,6 +1685,12 @@ msgstr "" " '%s'\n" "no leitor '%s' e pressione enter\n" +#: apt-private/acqprogress.cc +msgid "" +"Do you want to accept these changes and continue updating from this " +"repository?" +msgstr "" + #: apt-private/private-cachefile.cc msgid "Correcting dependencies..." msgstr "A corrigir dependências..." @@ -3510,7 +3545,7 @@ msgstr "Ficheiro não encontrado" msgid "Direct connection to %s domains is blocked by default." msgstr "" -#: methods/connect.cc methods/http.cc +#: methods/connect.cc #, c-format msgid "Connecting to %s (%s)" msgstr "A Ligar a %s (%s)" @@ -3833,6 +3868,13 @@ msgstr "Ligação encerrada prematuramente" msgid "Empty files can't be valid archives" msgstr "Ficheiros vazios não podem ser arquivos válidos" +#~ msgid "" +#~ "Unable to find expected entry '%s' in Release file (Wrong sources.list " +#~ "entry or malformed file)" +#~ msgstr "" +#~ "Incapaz de encontrar a entrada '%s' esperada no ficheiro Release (entrada " +#~ "errada em sources.list ou ficheiro malformado)" + #~ msgid "Unmet dependencies. Try using --fix-broken." #~ msgstr "Dependências não satisfeitas. Tente utilizar --fix-broken." diff --git a/po/pt_BR.po b/po/pt_BR.po index d5f1c370e..ab2db60e3 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -7,7 +7,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: 2017-02-06 14:41+0100\n" +"POT-Creation-Date: 2017-06-28 19:53+0200\n" "PO-Revision-Date: 2008-11-17 02:33-0200\n" "Last-Translator: Felipe Augusto van de Wiel (faw) <faw@debian.org>\n" "Language-Team: Brazilian Portuguese <debian-l10n-portuguese@lists.debian." @@ -290,6 +290,13 @@ msgstr "" msgid "GPG error: %s: %s" msgstr "" +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"Skipping acquire of configured file '%s' as repository '%s' doesn't have the " +"component '%s' (component misspelt in sources.list?)" +msgstr "" + #: apt-pkg/acquire-item.cc #, c-format msgid "" @@ -300,8 +307,8 @@ msgstr "" #: apt-pkg/acquire-item.cc #, c-format msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" +"Skipping acquire of configured file '%s' as repository '%s' does not seem to " +"provide it (sources.list entry misspelt?)" msgstr "" #: apt-pkg/acquire-item.cc @@ -326,6 +333,31 @@ msgstr "" msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" +#: apt-pkg/acquire-item.cc +#, c-format +msgid "Repository '%s' changed its '%s' value from '%s' to '%s'" +msgstr "" + +#: apt-pkg/acquire-item.cc +#, c-format +msgid "Repository '%s' changed its default priority for %s from %hi to %hi." +msgstr "" + +#. TRANSLATOR: the "this" refers to changes in the repository like a new release or owner change +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"More information about this can be found online in the Release notes at: %s" +msgstr "" + +#. TRANSLATOR: %s is the name of the manpage in question, e.g. apt-secure(8) +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"This must be accepted explicitly before updates for this repository can be " +"applied. See %s manpage for details." +msgstr "" + #: apt-pkg/acquire-item.cc #, c-format msgid "" @@ -419,12 +451,6 @@ msgstr "" msgid "Clean of %s is not supported" msgstr "Tipo de arquivo de índice '%s' não é suportado" -#: apt-pkg/acquire.cc apt-pkg/clean.cc apt-pkg/contrib/cdromutl.cc -#: methods/mirror.cc -#, c-format -msgid "Unable to change to %s" -msgstr "Impossível mudar para %s" - #. only show the ETA if it makes sense #. two days #: apt-pkg/acquire.cc @@ -613,6 +639,11 @@ msgstr "Gravando nova lista de fontes\n" msgid "Source list entries for this disc are:\n" msgstr "Entradas na lista de fontes para este disco são:\n" +#: apt-pkg/clean.cc +#, c-format +msgid "Unable to change to %s" +msgstr "Impossível mudar para %s" + #: apt-pkg/clean.cc #, c-format msgid "Unable to stat %s." @@ -1599,6 +1630,12 @@ msgstr "" " '%s'\n" "na unidade '%s' e pressione enter\n" +#: apt-private/acqprogress.cc +msgid "" +"Do you want to accept these changes and continue updating from this " +"repository?" +msgstr "" + #: apt-private/private-cachefile.cc msgid "Correcting dependencies..." msgstr "Corrigindo dependências..." @@ -3443,7 +3480,7 @@ msgstr "Arquivo não encontrado" msgid "Direct connection to %s domains is blocked by default." msgstr "" -#: methods/connect.cc methods/http.cc +#: methods/connect.cc #, c-format msgid "Connecting to %s (%s)" msgstr "Conectando em %s (%s)" diff --git a/po/ro.po b/po/ro.po index ece7a7a95..ef818abeb 100644 --- a/po/ro.po +++ b/po/ro.po @@ -7,7 +7,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: 2017-02-06 14:41+0100\n" +"POT-Creation-Date: 2017-06-28 19:53+0200\n" "PO-Revision-Date: 2008-11-15 02:21+0200\n" "Last-Translator: Eddy Petrișor <eddy.petrisor@gmail.com>\n" "Language-Team: Romanian <debian-l10n-romanian@lists.debian.org>\n" @@ -294,6 +294,13 @@ msgstr "" msgid "GPG error: %s: %s" msgstr "" +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"Skipping acquire of configured file '%s' as repository '%s' doesn't have the " +"component '%s' (component misspelt in sources.list?)" +msgstr "" + #: apt-pkg/acquire-item.cc #, c-format msgid "" @@ -304,8 +311,8 @@ msgstr "" #: apt-pkg/acquire-item.cc #, c-format msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" +"Skipping acquire of configured file '%s' as repository '%s' does not seem to " +"provide it (sources.list entry misspelt?)" msgstr "" #: apt-pkg/acquire-item.cc @@ -330,6 +337,31 @@ msgstr "" msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" +#: apt-pkg/acquire-item.cc +#, c-format +msgid "Repository '%s' changed its '%s' value from '%s' to '%s'" +msgstr "" + +#: apt-pkg/acquire-item.cc +#, c-format +msgid "Repository '%s' changed its default priority for %s from %hi to %hi." +msgstr "" + +#. TRANSLATOR: the "this" refers to changes in the repository like a new release or owner change +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"More information about this can be found online in the Release notes at: %s" +msgstr "" + +#. TRANSLATOR: %s is the name of the manpage in question, e.g. apt-secure(8) +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"This must be accepted explicitly before updates for this repository can be " +"applied. See %s manpage for details." +msgstr "" + #: apt-pkg/acquire-item.cc #, c-format msgid "" @@ -422,12 +454,6 @@ msgstr "" msgid "Clean of %s is not supported" msgstr "Tipul de fișier index '%s' nu este suportat" -#: apt-pkg/acquire.cc apt-pkg/clean.cc apt-pkg/contrib/cdromutl.cc -#: methods/mirror.cc -#, c-format -msgid "Unable to change to %s" -msgstr "Nu pot schimba la %s" - #. only show the ETA if it makes sense #. two days #: apt-pkg/acquire.cc @@ -617,6 +643,11 @@ msgstr "Scriere noua listă sursă\n" msgid "Source list entries for this disc are:\n" msgstr "Intrările listei surselor pentru acest disc sunt:\n" +#: apt-pkg/clean.cc +#, c-format +msgid "Unable to change to %s" +msgstr "Nu pot schimba la %s" + #: apt-pkg/clean.cc #, c-format msgid "Unable to stat %s." @@ -1602,6 +1633,12 @@ msgstr "" " „%s”\n" "în unitatea „%s” și apăsați Enter\n" +#: apt-private/acqprogress.cc +msgid "" +"Do you want to accept these changes and continue updating from this " +"repository?" +msgstr "" + #: apt-private/private-cachefile.cc msgid "Correcting dependencies..." msgstr "Corectez dependențele..." @@ -3452,7 +3489,7 @@ msgstr "Fișier negăsit" msgid "Direct connection to %s domains is blocked by default." msgstr "" -#: methods/connect.cc methods/http.cc +#: methods/connect.cc #, c-format msgid "Connecting to %s (%s)" msgstr "Conectare la %s (%s)" diff --git a/po/ru.po b/po/ru.po index 28cc8e092..5eb414872 100644 --- a/po/ru.po +++ b/po/ru.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 1.2.12\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2017-02-06 14:41+0100\n" +"POT-Creation-Date: 2017-06-28 19:53+0200\n" "PO-Revision-Date: 2016-05-19 20:50+0300\n" "Last-Translator: Yuri Kozlov <yuray@komyakino.ru>\n" "Language-Team: Russian <debian-l10n-russian@lists.debian.org>\n" @@ -308,6 +308,18 @@ msgstr "" msgid "GPG error: %s: %s" msgstr "Ошибка GPG: %s: %s" +#: apt-pkg/acquire-item.cc +#, fuzzy, c-format +#| msgid "" +#| "Skipping acquire of configured file '%s' as repository '%s' doesn't " +#| "support architecture '%s'" +msgid "" +"Skipping acquire of configured file '%s' as repository '%s' doesn't have the " +"component '%s' (component misspelt in sources.list?)" +msgstr "" +"Пропускается получение настроенного файла «%s», так как репозиторий «%s» не " +"поддерживает архитектуру «%s»" + #: apt-pkg/acquire-item.cc #, c-format msgid "" @@ -318,13 +330,16 @@ msgstr "" "поддерживает архитектуру «%s»" #: apt-pkg/acquire-item.cc -#, c-format +#, fuzzy, c-format +#| msgid "" +#| "Skipping acquire of configured file '%s' as repository '%s' doesn't " +#| "support architecture '%s'" msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" +"Skipping acquire of configured file '%s' as repository '%s' does not seem to " +"provide it (sources.list entry misspelt?)" msgstr "" -"Невозможно найти ожидаемый элемент «%s» в файле Release (некорректная запись " -"в sources.list или файл)" +"Пропускается получение настроенного файла «%s», так как репозиторий «%s» не " +"поддерживает архитектуру «%s»" #: apt-pkg/acquire-item.cc #, c-format @@ -352,6 +367,31 @@ msgstr "" msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "Конфликт распространения: %s (ожидался %s, но получен %s)" +#: apt-pkg/acquire-item.cc +#, c-format +msgid "Repository '%s' changed its '%s' value from '%s' to '%s'" +msgstr "" + +#: apt-pkg/acquire-item.cc +#, c-format +msgid "Repository '%s' changed its default priority for %s from %hi to %hi." +msgstr "" + +#. TRANSLATOR: the "this" refers to changes in the repository like a new release or owner change +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"More information about this can be found online in the Release notes at: %s" +msgstr "" + +#. TRANSLATOR: %s is the name of the manpage in question, e.g. apt-secure(8) +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"This must be accepted explicitly before updates for this repository can be " +"applied. See %s manpage for details." +msgstr "" + #: apt-pkg/acquire-item.cc #, c-format msgid "" @@ -447,12 +487,6 @@ msgstr "" msgid "Clean of %s is not supported" msgstr "Очистка «%s» не поддерживается" -#: apt-pkg/acquire.cc apt-pkg/clean.cc apt-pkg/contrib/cdromutl.cc -#: methods/mirror.cc -#, c-format -msgid "Unable to change to %s" -msgstr "Невозможно сменить текущий каталог на %s" - #. only show the ETA if it makes sense #. two days #: apt-pkg/acquire.cc @@ -649,6 +683,11 @@ msgstr "Запись нового списка источников\n" msgid "Source list entries for this disc are:\n" msgstr "Записи в списке источников для этого диска:\n" +#: apt-pkg/clean.cc +#, c-format +msgid "Unable to change to %s" +msgstr "Невозможно сменить текущий каталог на %s" + #: apt-pkg/clean.cc #, c-format msgid "Unable to stat %s." @@ -1678,6 +1717,12 @@ msgstr "" " «%s»\n" "в устройство «%s» и нажмите [Enter]\n" +#: apt-private/acqprogress.cc +msgid "" +"Do you want to accept these changes and continue updating from this " +"repository?" +msgstr "" + #: apt-private/private-cachefile.cc msgid "Correcting dependencies..." msgstr "Исправление зависимостей…" @@ -3570,7 +3615,7 @@ msgstr "Файл не найден" msgid "Direct connection to %s domains is blocked by default." msgstr "" -#: methods/connect.cc methods/http.cc +#: methods/connect.cc #, c-format msgid "Connecting to %s (%s)" msgstr "Соединение с %s (%s)" @@ -3898,6 +3943,13 @@ msgstr "Соединение закрыто преждевременно" msgid "Empty files can't be valid archives" msgstr "Пустые файлы не могут быть допустимыми архивами" +#~ msgid "" +#~ "Unable to find expected entry '%s' in Release file (Wrong sources.list " +#~ "entry or malformed file)" +#~ msgstr "" +#~ "Невозможно найти ожидаемый элемент «%s» в файле Release (некорректная " +#~ "запись в sources.list или файл)" + #~ msgid "Unmet dependencies. Try using --fix-broken." #~ msgstr "" #~ "Неудовлетворённые зависимости. Попытайтесь использовать --fix-broken." diff --git a/po/sk.po b/po/sk.po index 0601b9c89..bc9b2d63e 100644 --- a/po/sk.po +++ b/po/sk.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: 2017-02-06 14:41+0100\n" +"POT-Creation-Date: 2017-06-28 19:53+0200\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" @@ -294,6 +294,13 @@ msgstr "" msgid "GPG error: %s: %s" msgstr "Chyba GPG: %s: %s" +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"Skipping acquire of configured file '%s' as repository '%s' doesn't have the " +"component '%s' (component misspelt in sources.list?)" +msgstr "" + #: apt-pkg/acquire-item.cc #, c-format msgid "" @@ -304,11 +311,9 @@ msgstr "" #: apt-pkg/acquire-item.cc #, c-format msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" +"Skipping acquire of configured file '%s' as repository '%s' does not seem to " +"provide it (sources.list entry misspelt?)" msgstr "" -"Nepodarilo sa nájsť očakávanú položku „%s“ v súbore Release (Nesprávna " -"položka sources.list alebo chybný formát súboru)" #: apt-pkg/acquire-item.cc #, c-format @@ -334,6 +339,31 @@ msgstr "" msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "V konflikte s distribúciou: %s (očakávalo sa %s ale dostali sme %s)" +#: apt-pkg/acquire-item.cc +#, c-format +msgid "Repository '%s' changed its '%s' value from '%s' to '%s'" +msgstr "" + +#: apt-pkg/acquire-item.cc +#, c-format +msgid "Repository '%s' changed its default priority for %s from %hi to %hi." +msgstr "" + +#. TRANSLATOR: the "this" refers to changes in the repository like a new release or owner change +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"More information about this can be found online in the Release notes at: %s" +msgstr "" + +#. TRANSLATOR: %s is the name of the manpage in question, e.g. apt-secure(8) +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"This must be accepted explicitly before updates for this repository can be " +"applied. See %s manpage for details." +msgstr "" + #: apt-pkg/acquire-item.cc #, c-format msgid "" @@ -423,12 +453,6 @@ msgstr "" msgid "Clean of %s is not supported" msgstr "Indexový súbor typu „%s“ nie je podporovaný" -#: apt-pkg/acquire.cc apt-pkg/clean.cc apt-pkg/contrib/cdromutl.cc -#: methods/mirror.cc -#, c-format -msgid "Unable to change to %s" -msgstr "Nedá sa prejsť do %s" - #. only show the ETA if it makes sense #. two days #: apt-pkg/acquire.cc @@ -622,6 +646,11 @@ msgstr "Zapisuje sa nový zoznam zdrojov\n" msgid "Source list entries for this disc are:\n" msgstr "Položky zoznamu zdrojov pre tento disk sú:\n" +#: apt-pkg/clean.cc +#, c-format +msgid "Unable to change to %s" +msgstr "Nedá sa prejsť do %s" + #: apt-pkg/clean.cc #, c-format msgid "Unable to stat %s." @@ -1622,6 +1651,12 @@ msgstr "" " „%s“\n" "do mechaniky „%s“ a stlačte Enter\n" +#: apt-private/acqprogress.cc +msgid "" +"Do you want to accept these changes and continue updating from this " +"repository?" +msgstr "" + #: apt-private/private-cachefile.cc msgid "Correcting dependencies..." msgstr "Opravujú sa závislosti..." @@ -3474,7 +3509,7 @@ msgstr "Súbor sa nenašiel" msgid "Direct connection to %s domains is blocked by default." msgstr "" -#: methods/connect.cc methods/http.cc +#: methods/connect.cc #, c-format msgid "Connecting to %s (%s)" msgstr "Pripája sa k %s (%s)" @@ -3794,6 +3829,13 @@ msgstr "Spojenie bolo predčasne ukončené" msgid "Empty files can't be valid archives" msgstr "Prázdne súbory nemôžu byť platné archívy" +#~ msgid "" +#~ "Unable to find expected entry '%s' in Release file (Wrong sources.list " +#~ "entry or malformed file)" +#~ msgstr "" +#~ "Nepodarilo sa nájsť očakávanú položku „%s“ v súbore Release (Nesprávna " +#~ "položka sources.list alebo chybný formát súboru)" + #~ msgid "Unmet dependencies. Try using --fix-broken." #~ msgstr "Nesplnené závislosti. Skúste použiť --fix-broken." diff --git a/po/sl.po b/po/sl.po index 2f224d612..aceccccd5 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,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: 2017-02-06 14:41+0100\n" +"POT-Creation-Date: 2017-06-28 19:53+0200\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" @@ -294,6 +294,13 @@ msgstr "" msgid "GPG error: %s: %s" msgstr "Napaka GPG: %s: %s" +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"Skipping acquire of configured file '%s' as repository '%s' doesn't have the " +"component '%s' (component misspelt in sources.list?)" +msgstr "" + #: apt-pkg/acquire-item.cc #, c-format msgid "" @@ -304,11 +311,9 @@ msgstr "" #: apt-pkg/acquire-item.cc #, c-format msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" +"Skipping acquire of configured file '%s' as repository '%s' does not seem to " +"provide it (sources.list entry misspelt?)" msgstr "" -"Ni mogoče najti pričakovanega vnosa '%s' v datoteki Release (napačen vnos " -"sources.list ali slabo oblikovana datoteka)" #: apt-pkg/acquire-item.cc #, c-format @@ -334,6 +339,31 @@ msgstr "" msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "Distribucija v sporu: %s (pričakovana %s, toda dobljena %s)" +#: apt-pkg/acquire-item.cc +#, c-format +msgid "Repository '%s' changed its '%s' value from '%s' to '%s'" +msgstr "" + +#: apt-pkg/acquire-item.cc +#, c-format +msgid "Repository '%s' changed its default priority for %s from %hi to %hi." +msgstr "" + +#. TRANSLATOR: the "this" refers to changes in the repository like a new release or owner change +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"More information about this can be found online in the Release notes at: %s" +msgstr "" + +#. TRANSLATOR: %s is the name of the manpage in question, e.g. apt-secure(8) +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"This must be accepted explicitly before updates for this repository can be " +"applied. See %s manpage for details." +msgstr "" + #: apt-pkg/acquire-item.cc #, c-format msgid "" @@ -425,12 +455,6 @@ msgstr "" msgid "Clean of %s is not supported" msgstr "Vrsta datoteke s kazalom '%s' ni podprta" -#: apt-pkg/acquire.cc apt-pkg/clean.cc apt-pkg/contrib/cdromutl.cc -#: methods/mirror.cc -#, c-format -msgid "Unable to change to %s" -msgstr "Ni mogoče spremeniti v %s" - #. only show the ETA if it makes sense #. two days #: apt-pkg/acquire.cc @@ -621,6 +645,11 @@ msgstr "Pisanje novega seznama virov\n" msgid "Source list entries for this disc are:\n" msgstr "Izvorni vnosi za ta disk so:\n" +#: apt-pkg/clean.cc +#, c-format +msgid "Unable to change to %s" +msgstr "Ni mogoče spremeniti v %s" + #: apt-pkg/clean.cc #, c-format msgid "Unable to stat %s." @@ -1622,6 +1651,12 @@ msgstr "" " '%s'\n" "v enoto '%s' in pritisnite vnosno tipko\n" +#: apt-private/acqprogress.cc +msgid "" +"Do you want to accept these changes and continue updating from this " +"repository?" +msgstr "" + #: apt-private/private-cachefile.cc msgid "Correcting dependencies..." msgstr "Popravljanje odvisnosti ..." @@ -3481,7 +3516,7 @@ msgstr "Datoteke ni mogoče najti" msgid "Direct connection to %s domains is blocked by default." msgstr "" -#: methods/connect.cc methods/http.cc +#: methods/connect.cc #, c-format msgid "Connecting to %s (%s)" msgstr "Povezovanje z %s (%s)" @@ -3801,6 +3836,13 @@ msgstr "Povezava se je prezgodaj zaprla" msgid "Empty files can't be valid archives" msgstr "Prazne datoteke ne morejo biti veljavni arhivi" +#~ msgid "" +#~ "Unable to find expected entry '%s' in Release file (Wrong sources.list " +#~ "entry or malformed file)" +#~ msgstr "" +#~ "Ni mogoče najti pričakovanega vnosa '%s' v datoteki Release (napačen vnos " +#~ "sources.list ali slabo oblikovana datoteka)" + #~ msgid "Unmet dependencies. Try using --fix-broken." #~ msgstr "Nerešene odvisnosti. Poskusite uporabiti --fix-broken." diff --git a/po/sv.po b/po/sv.po index 52e54243d..bfb3a269c 100644 --- a/po/sv.po +++ b/po/sv.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2017-02-06 14:41+0100\n" +"POT-Creation-Date: 2017-06-28 19:53+0200\n" "PO-Revision-Date: 2015-08-19 21:33+0200\n" "Last-Translator: Anders Jonsson <anders.jonsson@norsjovallen.se>\n" "Language-Team: Swedish <debian-l10n-swedish@debian.org>\n" @@ -298,6 +298,13 @@ msgstr "" msgid "GPG error: %s: %s" msgstr "GPG-fel: %s: %s" +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"Skipping acquire of configured file '%s' as repository '%s' doesn't have the " +"component '%s' (component misspelt in sources.list?)" +msgstr "" + #: apt-pkg/acquire-item.cc #, c-format msgid "" @@ -308,11 +315,9 @@ msgstr "" #: apt-pkg/acquire-item.cc #, c-format msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" +"Skipping acquire of configured file '%s' as repository '%s' does not seem to " +"provide it (sources.list entry misspelt?)" msgstr "" -"Kunde inte hitta förväntad post ”%s” i Release-fil (Felaktig sources.list-" -"post eller fel format på fil)" #: apt-pkg/acquire-item.cc #, c-format @@ -338,6 +343,31 @@ msgstr "" msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "Konflikt i distribution: %s (förväntade %s men fick %s)" +#: apt-pkg/acquire-item.cc +#, c-format +msgid "Repository '%s' changed its '%s' value from '%s' to '%s'" +msgstr "" + +#: apt-pkg/acquire-item.cc +#, c-format +msgid "Repository '%s' changed its default priority for %s from %hi to %hi." +msgstr "" + +#. TRANSLATOR: the "this" refers to changes in the repository like a new release or owner change +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"More information about this can be found online in the Release notes at: %s" +msgstr "" + +#. TRANSLATOR: %s is the name of the manpage in question, e.g. apt-secure(8) +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"This must be accepted explicitly before updates for this repository can be " +"applied. See %s manpage for details." +msgstr "" + #: apt-pkg/acquire-item.cc #, c-format msgid "" @@ -432,13 +462,6 @@ msgstr "" msgid "Clean of %s is not supported" msgstr "Rensning av %s stöds inte" -# Felmeddelande för misslyckad chdir -#: apt-pkg/acquire.cc apt-pkg/clean.cc apt-pkg/contrib/cdromutl.cc -#: methods/mirror.cc -#, c-format -msgid "Unable to change to %s" -msgstr "Kunde inte byta till %s" - #. only show the ETA if it makes sense #. two days #: apt-pkg/acquire.cc @@ -635,6 +658,12 @@ msgstr "Skriver ny källista\n" msgid "Source list entries for this disc are:\n" msgstr "Poster i källistan för denna skiva:\n" +# Felmeddelande för misslyckad chdir +#: apt-pkg/clean.cc +#, c-format +msgid "Unable to change to %s" +msgstr "Kunde inte byta till %s" + #: apt-pkg/clean.cc #, c-format msgid "Unable to stat %s." @@ -1644,6 +1673,12 @@ msgstr "" " ”%s”\n" "i enheten ”%s” och tryck på [Retur]\n" +#: apt-private/acqprogress.cc +msgid "" +"Do you want to accept these changes and continue updating from this " +"repository?" +msgstr "" + #: apt-private/private-cachefile.cc msgid "Correcting dependencies..." msgstr "Korrigerar beroenden…" @@ -3506,7 +3541,7 @@ msgstr "Filen hittades inte" msgid "Direct connection to %s domains is blocked by default." msgstr "" -#: methods/connect.cc methods/http.cc +#: methods/connect.cc #, c-format msgid "Connecting to %s (%s)" msgstr "Ansluter till %s (%s)" @@ -3834,6 +3869,13 @@ msgstr "Anslutningen stängdes i förtid" msgid "Empty files can't be valid archives" msgstr "Tomma filer kan inte vara giltiga arkiv" +#~ msgid "" +#~ "Unable to find expected entry '%s' in Release file (Wrong sources.list " +#~ "entry or malformed file)" +#~ msgstr "" +#~ "Kunde inte hitta förväntad post ”%s” i Release-fil (Felaktig sources.list-" +#~ "post eller fel format på fil)" + #~ msgid "Unmet dependencies. Try using --fix-broken." #~ msgstr "Otillfredsställda beroenden. Prova med --fix-broken." diff --git a/po/th.po b/po/th.po index 8389c9481..d989325a5 100644 --- a/po/th.po +++ b/po/th.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: 2017-02-06 14:41+0100\n" +"POT-Creation-Date: 2017-06-28 19:53+0200\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" @@ -293,6 +293,13 @@ msgstr "" msgid "GPG error: %s: %s" msgstr "ข้อผิดพลาดจาก GPG: %s: %s" +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"Skipping acquire of configured file '%s' as repository '%s' doesn't have the " +"component '%s' (component misspelt in sources.list?)" +msgstr "" + #: apt-pkg/acquire-item.cc #, c-format msgid "" @@ -303,11 +310,9 @@ msgstr "" #: apt-pkg/acquire-item.cc #, c-format msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" +"Skipping acquire of configured file '%s' as repository '%s' does not seem to " +"provide it (sources.list entry misspelt?)" msgstr "" -"ไม่พบรายการ '%s' ที่ต้องการในแฟ้ม Release (รายการ sources.list ไม่ถูกต้อง " -"หรือแฟ้มผิดรูปแบบ)" #: apt-pkg/acquire-item.cc #, c-format @@ -333,6 +338,31 @@ msgstr "" msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "ชุดจัดแจกขัดแย้งกัน: %s (ต้องการ %s แต่พบ %s)" +#: apt-pkg/acquire-item.cc +#, c-format +msgid "Repository '%s' changed its '%s' value from '%s' to '%s'" +msgstr "" + +#: apt-pkg/acquire-item.cc +#, c-format +msgid "Repository '%s' changed its default priority for %s from %hi to %hi." +msgstr "" + +#. TRANSLATOR: the "this" refers to changes in the repository like a new release or owner change +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"More information about this can be found online in the Release notes at: %s" +msgstr "" + +#. TRANSLATOR: %s is the name of the manpage in question, e.g. apt-secure(8) +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"This must be accepted explicitly before updates for this repository can be " +"applied. See %s manpage for details." +msgstr "" + #: apt-pkg/acquire-item.cc #, c-format msgid "" @@ -420,12 +450,6 @@ msgstr "" msgid "Clean of %s is not supported" msgstr "ไม่รองรับการล้างข้อมูลที่ %s" -#: apt-pkg/acquire.cc apt-pkg/clean.cc apt-pkg/contrib/cdromutl.cc -#: methods/mirror.cc -#, c-format -msgid "Unable to change to %s" -msgstr "ไม่สามารถเปลี่ยนไดเรกทอรีไปยัง %s" - #. only show the ETA if it makes sense #. two days #: apt-pkg/acquire.cc @@ -611,6 +635,11 @@ msgstr "กำลังเขียนรายชื่อแหล่งแพ msgid "Source list entries for this disc are:\n" msgstr "บรรทัดรายชื่อแหล่งแพกเกจสำหรับแผ่นนี้คือ:\n" +#: apt-pkg/clean.cc +#, c-format +msgid "Unable to change to %s" +msgstr "ไม่สามารถเปลี่ยนไดเรกทอรีไปยัง %s" + #: apt-pkg/clean.cc #, c-format msgid "Unable to stat %s." @@ -1593,6 +1622,12 @@ msgstr "" " '%s'\n" "ลงในไดรว์ %s แล้วกด enter\n" +#: apt-private/acqprogress.cc +msgid "" +"Do you want to accept these changes and continue updating from this " +"repository?" +msgstr "" + #: apt-private/private-cachefile.cc msgid "Correcting dependencies..." msgstr "กำลังแก้ปัญหาความขึ้นต่อกันระหว่างแพกเกจ..." @@ -3398,7 +3433,7 @@ msgstr "ไม่พบแฟ้ม" msgid "Direct connection to %s domains is blocked by default." msgstr "" -#: methods/connect.cc methods/http.cc +#: methods/connect.cc #, c-format msgid "Connecting to %s (%s)" msgstr "เชื่อมต่อไปยัง %s (%s)" @@ -3715,6 +3750,13 @@ msgstr "การเชื่อมต่อถูกปิดก่อนเว msgid "Empty files can't be valid archives" msgstr "แฟ้มว่างเปล่าไม่สามารถเป็นแฟ้มจัดเก็บที่ใช้การได้" +#~ msgid "" +#~ "Unable to find expected entry '%s' in Release file (Wrong sources.list " +#~ "entry or malformed file)" +#~ msgstr "" +#~ "ไม่พบรายการ '%s' ที่ต้องการในแฟ้ม Release (รายการ sources.list ไม่ถูกต้อง " +#~ "หรือแฟ้มผิดรูปแบบ)" + #~ msgid "Unmet dependencies. Try using --fix-broken." #~ msgstr "รายการแพกเกจที่ต้องใช้ไม่ครบ กรุณาลองใช้ตัวเลือก --fix-broken" diff --git a/po/tl.po b/po/tl.po index 89f884e01..2293c6927 100644 --- a/po/tl.po +++ b/po/tl.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: 2017-02-06 14:41+0100\n" +"POT-Creation-Date: 2017-06-28 19:53+0200\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" @@ -293,6 +293,13 @@ msgstr "" msgid "GPG error: %s: %s" msgstr "" +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"Skipping acquire of configured file '%s' as repository '%s' doesn't have the " +"component '%s' (component misspelt in sources.list?)" +msgstr "" + #: apt-pkg/acquire-item.cc #, c-format msgid "" @@ -303,8 +310,8 @@ msgstr "" #: apt-pkg/acquire-item.cc #, c-format msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" +"Skipping acquire of configured file '%s' as repository '%s' does not seem to " +"provide it (sources.list entry misspelt?)" msgstr "" #: apt-pkg/acquire-item.cc @@ -329,6 +336,31 @@ msgstr "" msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "" +#: apt-pkg/acquire-item.cc +#, c-format +msgid "Repository '%s' changed its '%s' value from '%s' to '%s'" +msgstr "" + +#: apt-pkg/acquire-item.cc +#, c-format +msgid "Repository '%s' changed its default priority for %s from %hi to %hi." +msgstr "" + +#. TRANSLATOR: the "this" refers to changes in the repository like a new release or owner change +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"More information about this can be found online in the Release notes at: %s" +msgstr "" + +#. TRANSLATOR: %s is the name of the manpage in question, e.g. apt-secure(8) +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"This must be accepted explicitly before updates for this repository can be " +"applied. See %s manpage for details." +msgstr "" + #: apt-pkg/acquire-item.cc #, c-format msgid "" @@ -421,12 +453,6 @@ msgstr "" msgid "Clean of %s is not supported" msgstr "Hindi suportado ang uri ng talaksang index na '%s'" -#: apt-pkg/acquire.cc apt-pkg/clean.cc apt-pkg/contrib/cdromutl.cc -#: methods/mirror.cc -#, c-format -msgid "Unable to change to %s" -msgstr "Di makalipat sa %s" - #. only show the ETA if it makes sense #. two days #: apt-pkg/acquire.cc @@ -617,6 +643,11 @@ msgstr "Sinusulat ang bagong listahan ng pagkukunan\n" msgid "Source list entries for this disc are:\n" msgstr "Mga nakatala sa Listahan ng Source para sa Disc na ito ay:\n" +#: apt-pkg/clean.cc +#, c-format +msgid "Unable to change to %s" +msgstr "Di makalipat sa %s" + #: apt-pkg/clean.cc #, c-format msgid "Unable to stat %s." @@ -1606,6 +1637,12 @@ msgstr "" " '%s'\n" "sa drive '%s' at pindutin ang enter\n" +#: apt-private/acqprogress.cc +msgid "" +"Do you want to accept these changes and continue updating from this " +"repository?" +msgstr "" + #: apt-private/private-cachefile.cc msgid "Correcting dependencies..." msgstr "Inaayos ang mga dependensiya..." @@ -3437,7 +3474,7 @@ msgstr "Hindi Nahanap ang Talaksan" msgid "Direct connection to %s domains is blocked by default." msgstr "" -#: methods/connect.cc methods/http.cc +#: methods/connect.cc #, c-format msgid "Connecting to %s (%s)" msgstr "Kumokonekta sa %s (%s)" diff --git a/po/tr.po b/po/tr.po index 50f9665bc..ad2112775 100644 --- a/po/tr.po +++ b/po/tr.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: 2017-02-06 14:41+0100\n" +"POT-Creation-Date: 2017-06-28 19:53+0200\n" "PO-Revision-Date: 2016-09-24 03:24+0300\n" "Last-Translator: Mert Dirik <mertdirik@gmail.com>\n" "Language-Team: Debian l10n Turkish <debian-l10n-turkish@lists.debian.org>\n" @@ -306,6 +306,18 @@ msgstr "" msgid "GPG error: %s: %s" msgstr "GPG hatası: %s: %s" +#: apt-pkg/acquire-item.cc +#, fuzzy, c-format +#| msgid "" +#| "Skipping acquire of configured file '%s' as repository '%s' doesn't " +#| "support architecture '%s'" +msgid "" +"Skipping acquire of configured file '%s' as repository '%s' doesn't have the " +"component '%s' (component misspelt in sources.list?)" +msgstr "" +"'%2$s' deposu '%3$s' mimarisini desteklemediği için yapılandırılmış '%1$s' " +"dosyası alınmıyor" + #: apt-pkg/acquire-item.cc #, c-format msgid "" @@ -316,13 +328,16 @@ msgstr "" "dosyası alınmıyor" #: apt-pkg/acquire-item.cc -#, c-format +#, fuzzy, c-format +#| msgid "" +#| "Skipping acquire of configured file '%s' as repository '%s' doesn't " +#| "support architecture '%s'" msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" +"Skipping acquire of configured file '%s' as repository '%s' does not seem to " +"provide it (sources.list entry misspelt?)" msgstr "" -"'Release' dosyasında olması beklenilen '%s' girdisi bulunamadı (sources.list " -"dosyasındaki girdi ya da satır hatalı)" +"'%2$s' deposu '%3$s' mimarisini desteklemediği için yapılandırılmış '%1$s' " +"dosyası alınmıyor" #: apt-pkg/acquire-item.cc #, c-format @@ -350,6 +365,31 @@ msgstr "" msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "Dağıtım çakışması: %s (beklenen %s ama eldeki %s)" +#: apt-pkg/acquire-item.cc +#, c-format +msgid "Repository '%s' changed its '%s' value from '%s' to '%s'" +msgstr "" + +#: apt-pkg/acquire-item.cc +#, c-format +msgid "Repository '%s' changed its default priority for %s from %hi to %hi." +msgstr "" + +#. TRANSLATOR: the "this" refers to changes in the repository like a new release or owner change +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"More information about this can be found online in the Release notes at: %s" +msgstr "" + +#. TRANSLATOR: %s is the name of the manpage in question, e.g. apt-secure(8) +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"This must be accepted explicitly before updates for this repository can be " +"applied. See %s manpage for details." +msgstr "" + #: apt-pkg/acquire-item.cc #, c-format msgid "" @@ -447,12 +487,6 @@ msgstr "" msgid "Clean of %s is not supported" msgstr "%s temizliği desteklenmiyor" -#: apt-pkg/acquire.cc apt-pkg/clean.cc apt-pkg/contrib/cdromutl.cc -#: methods/mirror.cc -#, c-format -msgid "Unable to change to %s" -msgstr "%s olarak değiştirilemedi" - #. only show the ETA if it makes sense #. two days #: apt-pkg/acquire.cc @@ -643,6 +677,11 @@ msgstr "Yeni kaynak listesi yazılıyor\n" msgid "Source list entries for this disc are:\n" msgstr "Bu disk için olan kaynak listesi girdileri:\n" +#: apt-pkg/clean.cc +#, c-format +msgid "Unable to change to %s" +msgstr "%s olarak değiştirilemedi" + #: apt-pkg/clean.cc #, c-format msgid "Unable to stat %s." @@ -1651,6 +1690,12 @@ msgstr "" " '%1$s'\n" "olarak etiketlenmiş diski takın ve [Enter] tuşuna basın\n" +#: apt-private/acqprogress.cc +msgid "" +"Do you want to accept these changes and continue updating from this " +"repository?" +msgstr "" + #: apt-private/private-cachefile.cc msgid "Correcting dependencies..." msgstr "Bağımlılıklar düzeltiliyor..." @@ -3533,7 +3578,7 @@ msgstr "Dosya bulunamadı" msgid "Direct connection to %s domains is blocked by default." msgstr "%s alan adına doğrudan bağlantılar öntanımlı olarak engellenmiştir." -#: methods/connect.cc methods/http.cc +#: methods/connect.cc #, c-format msgid "Connecting to %s (%s)" msgstr "Bağlanılıyor %s (%s)" @@ -3852,6 +3897,13 @@ msgstr "Bağlantı vaktinden önce kapandı" msgid "Empty files can't be valid archives" msgstr "Boş dosyalar geçerli birer arşiv dosyası olamazlar" +#~ msgid "" +#~ "Unable to find expected entry '%s' in Release file (Wrong sources.list " +#~ "entry or malformed file)" +#~ msgstr "" +#~ "'Release' dosyasında olması beklenilen '%s' girdisi bulunamadı (sources." +#~ "list dosyasındaki girdi ya da satır hatalı)" + #~ msgid "Unmet dependencies. Try using --fix-broken." #~ msgstr "Karşılanmayan bağımlılıklar. --fix-broken kullanmayı deneyin." diff --git a/po/uk.po b/po/uk.po index fd9b237d5..57f2ae2fd 100644 --- a/po/uk.po +++ b/po/uk.po @@ -12,7 +12,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: 2017-02-06 14:41+0100\n" +"POT-Creation-Date: 2017-06-28 19:53+0200\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" @@ -302,6 +302,13 @@ msgstr "" msgid "GPG error: %s: %s" msgstr "Помилка GPG: %s: %s" +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"Skipping acquire of configured file '%s' as repository '%s' doesn't have the " +"component '%s' (component misspelt in sources.list?)" +msgstr "" + #: apt-pkg/acquire-item.cc #, c-format msgid "" @@ -312,11 +319,9 @@ msgstr "" #: apt-pkg/acquire-item.cc #, c-format msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" +"Skipping acquire of configured file '%s' as repository '%s' does not seem to " +"provide it (sources.list entry misspelt?)" msgstr "" -"Неможливо знайти очікуваний запис '%s' у 'Release' файлі (Невірний запис у " -"sources.list, або пошкоджений файл)" #: apt-pkg/acquire-item.cc #, c-format @@ -342,6 +347,31 @@ msgstr "" msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "Конфліктуючий дистрибутив: %s (очікувався %s, але є %s)" +#: apt-pkg/acquire-item.cc +#, c-format +msgid "Repository '%s' changed its '%s' value from '%s' to '%s'" +msgstr "" + +#: apt-pkg/acquire-item.cc +#, c-format +msgid "Repository '%s' changed its default priority for %s from %hi to %hi." +msgstr "" + +#. TRANSLATOR: the "this" refers to changes in the repository like a new release or owner change +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"More information about this can be found online in the Release notes at: %s" +msgstr "" + +#. TRANSLATOR: %s is the name of the manpage in question, e.g. apt-secure(8) +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"This must be accepted explicitly before updates for this repository can be " +"applied. See %s manpage for details." +msgstr "" + #: apt-pkg/acquire-item.cc #, c-format msgid "" @@ -433,12 +463,6 @@ msgstr "" msgid "Clean of %s is not supported" msgstr "Тип '%s' індексного файлу не підтримується" -#: apt-pkg/acquire.cc apt-pkg/clean.cc apt-pkg/contrib/cdromutl.cc -#: methods/mirror.cc -#, c-format -msgid "Unable to change to %s" -msgstr "Неможливо змінити на %s" - #. only show the ETA if it makes sense #. two days #: apt-pkg/acquire.cc @@ -632,6 +656,11 @@ msgstr "Записується новий перелік вихідних тек msgid "Source list entries for this disc are:\n" msgstr "Перелік вихідних текстів для цього диска:\n" +#: apt-pkg/clean.cc +#, c-format +msgid "Unable to change to %s" +msgstr "Неможливо змінити на %s" + #: apt-pkg/clean.cc #, c-format msgid "Unable to stat %s." @@ -1653,6 +1682,12 @@ msgstr "" " '%s'\n" "у пристрій '%s' і натисніть Enter\n" +#: apt-private/acqprogress.cc +msgid "" +"Do you want to accept these changes and continue updating from this " +"repository?" +msgstr "" + #: apt-private/private-cachefile.cc msgid "Correcting dependencies..." msgstr "Виправлення залежностей..." @@ -3533,7 +3568,7 @@ msgstr "Файл не знайдено" msgid "Direct connection to %s domains is blocked by default." msgstr "" -#: methods/connect.cc methods/http.cc +#: methods/connect.cc #, c-format msgid "Connecting to %s (%s)" msgstr "З'єднання з %s (%s)" @@ -3856,6 +3891,13 @@ msgstr "З'єднання завершено передчасно" msgid "Empty files can't be valid archives" msgstr "Пусті файли не можуть бути правильними архівами" +#~ msgid "" +#~ "Unable to find expected entry '%s' in Release file (Wrong sources.list " +#~ "entry or malformed file)" +#~ msgstr "" +#~ "Неможливо знайти очікуваний запис '%s' у 'Release' файлі (Невірний запис " +#~ "у sources.list, або пошкоджений файл)" + #~ msgid "Unmet dependencies. Try using --fix-broken." #~ msgstr "Незадоволені залежності. Спробуйте використати --fix-broken." diff --git a/po/vi.po b/po/vi.po index 686c19ba0..34f724e6d 100644 --- a/po/vi.po +++ b/po/vi.po @@ -8,7 +8,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: 2017-02-06 14:41+0100\n" +"POT-Creation-Date: 2017-06-28 19:53+0200\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" @@ -298,6 +298,13 @@ msgstr "" msgid "GPG error: %s: %s" msgstr "Lỗi GPG: %s: %s" +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"Skipping acquire of configured file '%s' as repository '%s' doesn't have the " +"component '%s' (component misspelt in sources.list?)" +msgstr "" + #: apt-pkg/acquire-item.cc #, c-format msgid "" @@ -308,11 +315,9 @@ msgstr "" #: apt-pkg/acquire-item.cc #, c-format msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" +"Skipping acquire of configured file '%s' as repository '%s' does not seem to " +"provide it (sources.list entry misspelt?)" msgstr "" -"Không tìm thấy mục cần thiết “%s” trong tập tin Phát hành (Sai mục trong " -"sources.list hoặc tập tin bị hỏng)" #: apt-pkg/acquire-item.cc #, c-format @@ -338,6 +343,31 @@ msgstr "" msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "Bản phát hành xung đột: %s (cần %s nhưng lại nhận được %s)" +#: apt-pkg/acquire-item.cc +#, c-format +msgid "Repository '%s' changed its '%s' value from '%s' to '%s'" +msgstr "" + +#: apt-pkg/acquire-item.cc +#, c-format +msgid "Repository '%s' changed its default priority for %s from %hi to %hi." +msgstr "" + +#. TRANSLATOR: the "this" refers to changes in the repository like a new release or owner change +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"More information about this can be found online in the Release notes at: %s" +msgstr "" + +#. TRANSLATOR: %s is the name of the manpage in question, e.g. apt-secure(8) +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"This must be accepted explicitly before updates for this repository can be " +"applied. See %s manpage for details." +msgstr "" + #: apt-pkg/acquire-item.cc #, c-format msgid "" @@ -429,12 +459,6 @@ msgstr "" msgid "Clean of %s is not supported" msgstr "Không hỗ trợ việc xóa %s" -#: apt-pkg/acquire.cc apt-pkg/clean.cc apt-pkg/contrib/cdromutl.cc -#: methods/mirror.cc -#, c-format -msgid "Unable to change to %s" -msgstr "Không thể chuyển đổi sang %s" - #. only show the ETA if it makes sense #. two days #: apt-pkg/acquire.cc @@ -626,6 +650,11 @@ msgstr "Đang ghi danh sách nguồn mới\n" msgid "Source list entries for this disc are:\n" msgstr "Các mục tin danh sách nguồn cho đĩa này:\n" +#: apt-pkg/clean.cc +#, c-format +msgid "Unable to change to %s" +msgstr "Không thể chuyển đổi sang %s" + #: apt-pkg/clean.cc #, c-format msgid "Unable to stat %s." @@ -1636,6 +1665,12 @@ msgstr "" " “%s”\n" "vào ổ “%s” rồi bấm nút Enter\n" +#: apt-private/acqprogress.cc +msgid "" +"Do you want to accept these changes and continue updating from this " +"repository?" +msgstr "" + #: apt-private/private-cachefile.cc msgid "Correcting dependencies..." msgstr "Đang sửa chữa quan hệ phụ thuộc..." @@ -3503,7 +3538,7 @@ msgstr "Không tìm thấy tập tin" msgid "Direct connection to %s domains is blocked by default." msgstr "" -#: methods/connect.cc methods/http.cc +#: methods/connect.cc #, c-format msgid "Connecting to %s (%s)" msgstr "Đang kết nối đến %s (%s)" @@ -3825,6 +3860,13 @@ msgstr "Kết nối bị đóng bất ngờ" 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ệ" +#~ msgid "" +#~ "Unable to find expected entry '%s' in Release file (Wrong sources.list " +#~ "entry or malformed file)" +#~ msgstr "" +#~ "Không tìm thấy mục cần thiết “%s” trong tập tin Phát hành (Sai mục trong " +#~ "sources.list hoặc tập tin bị hỏng)" + #~ msgid "Unmet dependencies. Try using --fix-broken." #~ msgstr "" #~ "Chưa thỏa mãn quan hệ phụ thuộc. Hãy thử dùng tùy chọn “--fix-broken”." diff --git a/po/zh_CN.po b/po/zh_CN.po index fd9ca30b4..7dcd4d27c 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 1.4.x\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2017-02-06 14:41+0100\n" +"POT-Creation-Date: 2017-06-28 19:53+0200\n" "PO-Revision-Date: 2017-01-26 12:00+0000\n" "Last-Translator: Zhou Mo <cdluminate@gmail.com>\n" "Language-Team: Chinese (simplified) <i18n-zh@googlegroups.com>\n" @@ -294,6 +294,16 @@ msgstr "" msgid "GPG error: %s: %s" msgstr "GPG 错误:%s: %s" +#: apt-pkg/acquire-item.cc +#, fuzzy, c-format +#| msgid "" +#| "Skipping acquire of configured file '%s' as repository '%s' doesn't " +#| "support architecture '%s'" +msgid "" +"Skipping acquire of configured file '%s' as repository '%s' doesn't have the " +"component '%s' (component misspelt in sources.list?)" +msgstr "鉴于仓库 '%2$s' 不支持 '%3$s' 体系结构,跳过配置文件 '%1$s' 的捕获。" + #: apt-pkg/acquire-item.cc #, c-format msgid "" @@ -302,12 +312,14 @@ msgid "" msgstr "鉴于仓库 '%2$s' 不支持 '%3$s' 体系结构,跳过配置文件 '%1$s' 的捕获。" #: apt-pkg/acquire-item.cc -#, c-format +#, fuzzy, c-format +#| msgid "" +#| "Skipping acquire of configured file '%s' as repository '%s' doesn't " +#| "support architecture '%s'" msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" -msgstr "" -"在 Release 文件中找不到期望的条目 %s(sources.list条目有误,或者文件有误)" +"Skipping acquire of configured file '%s' as repository '%s' does not seem to " +"provide it (sources.list entry misspelt?)" +msgstr "鉴于仓库 '%2$s' 不支持 '%3$s' 体系结构,跳过配置文件 '%1$s' 的捕获。" #: apt-pkg/acquire-item.cc #, c-format @@ -332,6 +344,31 @@ msgstr "" msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "冲突的发行版:%s (期望 %s 但得到 %s)" +#: apt-pkg/acquire-item.cc +#, c-format +msgid "Repository '%s' changed its '%s' value from '%s' to '%s'" +msgstr "" + +#: apt-pkg/acquire-item.cc +#, c-format +msgid "Repository '%s' changed its default priority for %s from %hi to %hi." +msgstr "" + +#. TRANSLATOR: the "this" refers to changes in the repository like a new release or owner change +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"More information about this can be found online in the Release notes at: %s" +msgstr "" + +#. TRANSLATOR: %s is the name of the manpage in question, e.g. apt-secure(8) +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"This must be accepted explicitly before updates for this repository can be " +"applied. See %s manpage for details." +msgstr "" + #: apt-pkg/acquire-item.cc #, c-format msgid "" @@ -421,12 +458,6 @@ msgstr "由于文件'%s'无法被用户'%s'访问,已脱离沙盒并提权为 msgid "Clean of %s is not supported" msgstr "%s 的 Clean (清理)不被支持" -#: apt-pkg/acquire.cc apt-pkg/clean.cc apt-pkg/contrib/cdromutl.cc -#: methods/mirror.cc -#, c-format -msgid "Unable to change to %s" -msgstr "无法切换工作目录到 %s" - #. only show the ETA if it makes sense #. two days #: apt-pkg/acquire.cc @@ -615,6 +646,11 @@ msgstr "正在写入新的源列表\n" msgid "Source list entries for this disc are:\n" msgstr "对应于该盘片的软件源设置项是:\n" +#: apt-pkg/clean.cc +#, c-format +msgid "Unable to change to %s" +msgstr "无法切换工作目录到 %s" + #: apt-pkg/clean.cc #, c-format msgid "Unable to stat %s." @@ -1589,6 +1625,12 @@ msgstr "" " “%s”\n" "的盘片插入驱动器“%s”再按「回车」键\n" +#: apt-private/acqprogress.cc +msgid "" +"Do you want to accept these changes and continue updating from this " +"repository?" +msgstr "" + #: apt-private/private-cachefile.cc msgid "Correcting dependencies..." msgstr "正在修复依赖关系..." @@ -3396,7 +3438,7 @@ msgstr "无法找到文件" msgid "Direct connection to %s domains is blocked by default." msgstr "通向 %s 域名的直接连接被设为默认阻止。" -#: methods/connect.cc methods/http.cc +#: methods/connect.cc #, c-format msgid "Connecting to %s (%s)" msgstr "正在连接 %s (%s)" @@ -3712,6 +3754,12 @@ msgstr "连接被永久关闭" msgid "Empty files can't be valid archives" msgstr "空文件不是有效归档" +#~ msgid "" +#~ "Unable to find expected entry '%s' in Release file (Wrong sources.list " +#~ "entry or malformed file)" +#~ msgstr "" +#~ "在 Release 文件中找不到期望的条目 %s(sources.list条目有误,或者文件有误)" + #~ msgid "Unmet dependencies. Try using --fix-broken." #~ msgstr "不能满足依赖关系。不妨试一下 --fix-broken 选项。" diff --git a/po/zh_TW.po b/po/zh_TW.po index d9ee6b25a..375453238 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -10,7 +10,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: 2017-02-06 14:41+0100\n" +"POT-Creation-Date: 2017-06-28 19:53+0200\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-big5@lists." @@ -292,6 +292,13 @@ msgstr "" msgid "GPG error: %s: %s" msgstr "" +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"Skipping acquire of configured file '%s' as repository '%s' doesn't have the " +"component '%s' (component misspelt in sources.list?)" +msgstr "" + #: apt-pkg/acquire-item.cc #, c-format msgid "" @@ -302,8 +309,8 @@ msgstr "" #: apt-pkg/acquire-item.cc #, c-format msgid "" -"Unable to find expected entry '%s' in Release file (Wrong sources.list entry " -"or malformed file)" +"Skipping acquire of configured file '%s' as repository '%s' does not seem to " +"provide it (sources.list entry misspelt?)" msgstr "" #: apt-pkg/acquire-item.cc @@ -328,6 +335,31 @@ msgstr "" msgid "Conflicting distribution: %s (expected %s but got %s)" msgstr "發行版本衝突:%s(應當是 %s 但卻得到 %s)" +#: apt-pkg/acquire-item.cc +#, c-format +msgid "Repository '%s' changed its '%s' value from '%s' to '%s'" +msgstr "" + +#: apt-pkg/acquire-item.cc +#, c-format +msgid "Repository '%s' changed its default priority for %s from %hi to %hi." +msgstr "" + +#. TRANSLATOR: the "this" refers to changes in the repository like a new release or owner change +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"More information about this can be found online in the Release notes at: %s" +msgstr "" + +#. TRANSLATOR: %s is the name of the manpage in question, e.g. apt-secure(8) +#: apt-pkg/acquire-item.cc +#, c-format +msgid "" +"This must be accepted explicitly before updates for this repository can be " +"applied. See %s manpage for details." +msgstr "" + #: apt-pkg/acquire-item.cc #, c-format msgid "" @@ -417,12 +449,6 @@ msgstr "" msgid "Clean of %s is not supported" msgstr "不被支援的索引檔類型 '%s'" -#: apt-pkg/acquire.cc apt-pkg/clean.cc apt-pkg/contrib/cdromutl.cc -#: methods/mirror.cc -#, c-format -msgid "Unable to change to %s" -msgstr "無法切換至 %s" - #. only show the ETA if it makes sense #. two days #: apt-pkg/acquire.cc @@ -605,6 +631,11 @@ msgstr "正在寫入新的來源列表\n" msgid "Source list entries for this disc are:\n" msgstr "該碟片的來源列表項目為:\n" +#: apt-pkg/clean.cc +#, c-format +msgid "Unable to change to %s" +msgstr "無法切換至 %s" + #: apt-pkg/clean.cc #, c-format msgid "Unable to stat %s." @@ -1579,6 +1610,12 @@ msgstr "" " '%s'\n" "放入 '%s' 裝置,然後按 [Enter] 鍵\n" +#: apt-private/acqprogress.cc +msgid "" +"Do you want to accept these changes and continue updating from this " +"repository?" +msgstr "" + #: apt-private/private-cachefile.cc msgid "Correcting dependencies..." msgstr "正在修正相依關係..." @@ -3383,7 +3420,7 @@ msgstr "找不到檔案" msgid "Direct connection to %s domains is blocked by default." msgstr "" -#: methods/connect.cc methods/http.cc +#: methods/connect.cc #, c-format msgid "Connecting to %s (%s)" msgstr "正和 %s (%s) 連線" -- cgit v1.2.3