From c1e0a100d11e6e6d529d9f52375f979a9dbd4d04 Mon Sep 17 00:00:00 2001 From: David Kalnischkies Date: Fri, 9 Nov 2012 10:43:12 +0100 Subject: * apt-pkg/depcache.cc: - don't call MarkInstall with the FromUser flag set for packages which are dependencies of APT::Never-MarkAuto-Sections matchers --- apt-pkg/depcache.cc | 19 ++++++------------- debian/changelog | 3 +++ 2 files changed, 9 insertions(+), 13 deletions(-) diff --git a/apt-pkg/depcache.cc b/apt-pkg/depcache.cc index deb8ec21f..6ceb18492 100644 --- a/apt-pkg/depcache.cc +++ b/apt-pkg/depcache.cc @@ -1178,22 +1178,15 @@ bool pkgDepCache::MarkInstall(PkgIterator const &Pkg,bool AutoInst, std::clog << OutputInDepth(Depth) << "Installing " << InstPkg.Name() << " as " << Start.DepType() << " of " << Pkg.Name() << std::endl; - // now check if we should consider it a automatic dependency or not - if(Pkg.Section() && ConfigValueInSubTree("APT::Never-MarkAuto-Sections", Pkg.Section())) - { + MarkInstall(InstPkg, true, Depth + 1, false, ForceImportantDeps); + // now check if we should consider it a automatic dependency or not + if(InstPkg->CurrentVer == 0 && Pkg->Section != 0 && ConfigValueInSubTree("APT::Never-MarkAuto-Sections", Pkg.Section())) + { if(DebugAutoInstall == true) std::clog << OutputInDepth(Depth) << "Setting NOT as auto-installed (direct " << Start.DepType() << " of pkg in APT::Never-MarkAuto-Sections)" << std::endl; - MarkInstall(InstPkg,true,Depth + 1, true); - } - else - { - // mark automatic dependency - MarkInstall(InstPkg,true,Depth + 1, false, ForceImportantDeps); - // Set the autoflag, after MarkInstall because MarkInstall unsets it - if (InstPkg->CurrentVer == 0) - PkgState[InstPkg->ID].Flags |= Flag::Auto; - } + MarkAuto(InstPkg, false); + } } continue; } diff --git a/debian/changelog b/debian/changelog index 98ae49f74..10a3b7252 100644 --- a/debian/changelog +++ b/debian/changelog @@ -10,6 +10,9 @@ apt (0.9.7.7) UNRELEASED; urgency=low - do not do lock-step configuration for a M-A:same package if it isn't unpacked yet in SmartConfigure and do not unpack a M-A:same package again in SmartUnPack if we have already configured it (LP: #1062503) + * apt-pkg/depcache.cc: + - don't call MarkInstall with the FromUser flag set for packages + which are dependencies of APT::Never-MarkAuto-Sections matchers -- Jordi Mallach Thu, 18 Oct 2012 23:30:46 +0200 -- cgit v1.2.3 From 35f6b9ea8a28022607e3921475c165c06d5ead8a Mon Sep 17 00:00:00 2001 From: David Kalnischkies Date: Fri, 9 Nov 2012 10:47:30 +0100 Subject: no mode changes should obviously be ok for pkgDepCache::IsModeChangeOk --- apt-pkg/depcache.cc | 8 ++++++-- debian/changelog | 1 + 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/apt-pkg/depcache.cc b/apt-pkg/depcache.cc index 6ceb18492..2ec346f0b 100644 --- a/apt-pkg/depcache.cc +++ b/apt-pkg/depcache.cc @@ -913,11 +913,15 @@ bool pkgDepCache::IsModeChangeOk(ModeList const mode, PkgIterator const &Pkg, return true; StateCache &P = PkgState[Pkg->ID]; + // not changing the mode is obviously also fine as we might want to call + // e.g. MarkInstall multiple times with different arguments for the same package + if (P.Mode == mode) + return true; // if previous state was set by user only user can reset it if ((P.iFlags & Protected) == Protected) { - if (unlikely(DebugMarker == true) && P.Mode != mode) + if (unlikely(DebugMarker == true)) std::clog << OutputInDepth(Depth) << "Ignore Mark" << PrintMode(mode) << " of " << Pkg << " as its mode (" << PrintMode(P.Mode) << ") is protected" << std::endl; @@ -927,7 +931,7 @@ bool pkgDepCache::IsModeChangeOk(ModeList const mode, PkgIterator const &Pkg, else if (mode != ModeKeep && Pkg->SelectedState == pkgCache::State::Hold && _config->FindB("APT::Ignore-Hold",false) == false) { - if (unlikely(DebugMarker == true) && P.Mode != mode) + if (unlikely(DebugMarker == true)) std::clog << OutputInDepth(Depth) << "Hold prevents Mark" << PrintMode(mode) << " of " << Pkg << std::endl; return false; diff --git a/debian/changelog b/debian/changelog index 10a3b7252..7644320c3 100644 --- a/debian/changelog +++ b/debian/changelog @@ -13,6 +13,7 @@ apt (0.9.7.7) UNRELEASED; urgency=low * apt-pkg/depcache.cc: - don't call MarkInstall with the FromUser flag set for packages which are dependencies of APT::Never-MarkAuto-Sections matchers + - no mode changes should obviously be ok for pkgDepCache::IsModeChangeOk -- Jordi Mallach Thu, 18 Oct 2012 23:30:46 +0200 -- cgit v1.2.3 From b29c448254fbc2000ea986a828cc6ec7dbbe41aa Mon Sep 17 00:00:00 2001 From: David Kalnischkies Date: Fri, 9 Nov 2012 10:49:21 +0100 Subject: * cmdline/apt-get.cc: - do not call Mark{Install,Delete} from the autoremove code with the FromUser bit set to avoid modifying the auto-installed bit --- cmdline/apt-get.cc | 6 +++--- debian/changelog | 3 +++ test/integration/test-bug-604222-new-and-autoremove | 2 +- test/integration/test-bug-618848-always-respect-user-requests | 4 ++-- 4 files changed, 9 insertions(+), 6 deletions(-) diff --git a/cmdline/apt-get.cc b/cmdline/apt-get.cc index 6890b7120..1bb981b20 100644 --- a/cmdline/apt-get.cc +++ b/cmdline/apt-get.cc @@ -1736,7 +1736,7 @@ bool DoAutomaticRemove(CacheFile &Cache) { if(Pkg.CurrentVer() != 0 && Pkg->CurrentState != pkgCache::State::ConfigFiles) - Cache->MarkDelete(Pkg, purgePkgs); + Cache->MarkDelete(Pkg, purgePkgs, 0, false); else Cache->MarkKeep(Pkg, false, false); } @@ -1750,7 +1750,7 @@ bool DoAutomaticRemove(CacheFile &Cache) { if (Pkg.CandVersion() != 0) tooMuch.insert(Pkg); - Cache->MarkDelete(Pkg, false); + Cache->MarkDelete(Pkg, false, 0, false); } // only show stuff in the list that is not yet marked for removal else if(hideAutoRemove == false && Cache[Pkg].Delete() == false) @@ -1787,7 +1787,7 @@ bool DoAutomaticRemove(CacheFile &Cache) continue; if (Debug == true) std::clog << "Save " << Pkg << " as another installed garbage package depends on it" << std::endl; - Cache->MarkInstall(Pkg, false); + Cache->MarkInstall(Pkg, false, 0, false); if (hideAutoRemove == false) ++autoRemoveCount; tooMuch.erase(Pkg); diff --git a/debian/changelog b/debian/changelog index 7644320c3..b12e076d5 100644 --- a/debian/changelog +++ b/debian/changelog @@ -14,6 +14,9 @@ apt (0.9.7.7) UNRELEASED; urgency=low - don't call MarkInstall with the FromUser flag set for packages which are dependencies of APT::Never-MarkAuto-Sections matchers - no mode changes should obviously be ok for pkgDepCache::IsModeChangeOk + * cmdline/apt-get.cc: + - do not call Mark{Install,Delete} from the autoremove code with + the FromUser bit set to avoid modifying the auto-installed bit -- Jordi Mallach Thu, 18 Oct 2012 23:30:46 +0200 diff --git a/test/integration/test-bug-604222-new-and-autoremove b/test/integration/test-bug-604222-new-and-autoremove index 5820fb0dc..ea73c5775 100755 --- a/test/integration/test-bug-604222-new-and-autoremove +++ b/test/integration/test-bug-604222-new-and-autoremove @@ -51,7 +51,7 @@ Building dependency tree... MarkInstall libvtk5.4 [ i386 ] < none -> 5.4.2-8 > ( libs ) FU=0 MarkKeep libvtk5-dev [ i386 ] < none -> 5.4.2-8 > ( libdevel ) FU=0 MarkKeep libvtk5-dev [ i386 ] < none -> 5.4.2-8 > ( libdevel ) FU=0 - MarkDelete libvtk5.4 [ i386 ] < none -> 5.4.2-8 > ( libs ) FU=1 + MarkDelete libvtk5.4 [ i386 ] < none -> 5.4.2-8 > ( libs ) FU=0 The following extra packages will be installed: libavcodec52 libopenal-dev The following NEW packages will be installed: diff --git a/test/integration/test-bug-618848-always-respect-user-requests b/test/integration/test-bug-618848-always-respect-user-requests index 5148be640..1ebadf280 100755 --- a/test/integration/test-bug-618848-always-respect-user-requests +++ b/test/integration/test-bug-618848-always-respect-user-requests @@ -16,11 +16,11 @@ setupaptarchive testequal 'Reading package lists... Building dependency tree... MarkDelete libdb4.8 [ i386 ] < 1.0 > ( other ) FU=1 - MarkDelete exim4-daemon-light [ i386 ] < 1.0 > ( other ) FU=1 + MarkDelete exim4-daemon-light [ i386 ] < 1.0 > ( other ) FU=0 MarkInstall exim4-daemon-heavy [ i386 ] < none -> 1.0 > ( other ) FU=0 Ignore MarkInstall of libdb4.8 [ i386 ] < 1.0 > ( other ) as its mode (Delete) is protected MarkDelete exim4-daemon-heavy [ i386 ] < none -> 1.0 > ( other ) FU=0 - MarkDelete exim4 [ i386 ] < 1.0 > ( other ) FU=1 + MarkDelete exim4 [ i386 ] < 1.0 > ( other ) FU=0 The following packages will be REMOVED: exim4 exim4-daemon-light libdb4.8 MarkDelete exim4 [ i386 ] < 1.0 > ( other ) FU=1 -- cgit v1.2.3 From b83cad32f1d67fef2dbb12476ed9d3ad8f353db6 Mon Sep 17 00:00:00 2001 From: David Kalnischkies Date: Fri, 9 Nov 2012 11:00:02 +0100 Subject: * apt-pkg/algorithms.cc: - ensure pkgProblemResolver calls MarkDelete without FromUser set so that it can't overrule holds and the protection flag --- apt-pkg/algorithms.cc | 16 ++++++++-------- debian/changelog | 3 +++ 2 files changed, 11 insertions(+), 8 deletions(-) diff --git a/apt-pkg/algorithms.cc b/apt-pkg/algorithms.cc index 1b0161ffd..b611df172 100644 --- a/apt-pkg/algorithms.cc +++ b/apt-pkg/algorithms.cc @@ -287,13 +287,13 @@ bool pkgApplyStatus(pkgDepCache &Cache) Cache[I].CandidateVerIter(Cache).Downloadable() == true) Cache.MarkInstall(I, true, 0, false); else - Cache.MarkDelete(I); + Cache.MarkDelete(I, false, 0, false); } break; // This means removal failed case pkgCache::State::HalfInstalled: - Cache.MarkDelete(I); + Cache.MarkDelete(I, false, 0, false); break; default: @@ -774,7 +774,7 @@ bool pkgProblemResolver::DoUpgrade(pkgCache::PkgIterator Pkg) if (WasKept == true) Cache.MarkKeep(Pkg, false, false); else - Cache.MarkDelete(Pkg); + Cache.MarkDelete(Pkg, false, 0, false); return false; } @@ -903,7 +903,7 @@ bool pkgProblemResolver::ResolveInternal(bool const BrokenFix) OldBreaks < Cache.BrokenCount()) { if (OldVer == 0) - Cache.MarkDelete(I); + Cache.MarkDelete(I, false, 0, false); else Cache.MarkKeep(I, false, false); } @@ -942,7 +942,7 @@ bool pkgProblemResolver::ResolveInternal(bool const BrokenFix) { if (Debug == true) clog << " Or group remove for " << I.FullName(false) << endl; - Cache.MarkDelete(I); + Cache.MarkDelete(I, false, 0, false); Change = true; } } @@ -1077,7 +1077,7 @@ bool pkgProblemResolver::ResolveInternal(bool const BrokenFix) { if (Debug == true) clog << " Removing " << I.FullName(false) << " rather than change " << Start.TargetPkg().FullName(false) << endl; - Cache.MarkDelete(I); + Cache.MarkDelete(I, false, 0, false); if (Counter > 1 && Scores[Pkg->ID] > Scores[I->ID]) Scores[I->ID] = Scores[Pkg->ID]; } @@ -1166,7 +1166,7 @@ bool pkgProblemResolver::ResolveInternal(bool const BrokenFix) if (Debug == true) clog << " Removing " << I.FullName(false) << " because I can't find " << Start.TargetPkg().FullName(false) << endl; if (InOr == false) - Cache.MarkDelete(I); + Cache.MarkDelete(I, false, 0, false); } Change = true; @@ -1193,7 +1193,7 @@ bool pkgProblemResolver::ResolveInternal(bool const BrokenFix) { if (Debug == true) clog << " Fixing " << I.FullName(false) << " via remove of " << J->Pkg.FullName(false) << endl; - Cache.MarkDelete(J->Pkg); + Cache.MarkDelete(J->Pkg, false, 0, false); } } else diff --git a/debian/changelog b/debian/changelog index b12e076d5..ddbc8de89 100644 --- a/debian/changelog +++ b/debian/changelog @@ -17,6 +17,9 @@ apt (0.9.7.7) UNRELEASED; urgency=low * cmdline/apt-get.cc: - do not call Mark{Install,Delete} from the autoremove code with the FromUser bit set to avoid modifying the auto-installed bit + * apt-pkg/algorithms.cc: + - ensure pkgProblemResolver calls MarkDelete without FromUser set + so that it can't overrule holds and the protection flag -- Jordi Mallach Thu, 18 Oct 2012 23:30:46 +0200 -- cgit v1.2.3 From 0291f6459b0a8de04268225cc0c88d340ba48653 Mon Sep 17 00:00:00 2001 From: Jonathan Thomas Date: Sat, 10 Nov 2012 14:25:45 +0100 Subject: * apt-pkg/algorithms.cc: - fix package-pointer array memory leak in ResolveByKeepInternal() --- apt-pkg/algorithms.cc | 12 +++++++++--- debian/changelog | 4 ++++ 2 files changed, 13 insertions(+), 3 deletions(-) diff --git a/apt-pkg/algorithms.cc b/apt-pkg/algorithms.cc index b611df172..8cd9d4c6e 100644 --- a/apt-pkg/algorithms.cc +++ b/apt-pkg/algorithms.cc @@ -1419,12 +1419,18 @@ bool pkgProblemResolver::ResolveByKeepInternal() continue; // Restart again. - if (K == LastStop) - return _error->Error("Internal Error, pkgProblemResolver::ResolveByKeep is looping on package %s.",I.FullName(false).c_str()); + if (K == LastStop) { + // I is an iterator based off our temporary package list, + // so copy the name we need before deleting the temporary list + std::string const LoopingPackage = I.FullName(false); + delete[] PList; + return _error->Error("Internal Error, pkgProblemResolver::ResolveByKeep is looping on package %s.", LoopingPackage.c_str()); + } LastStop = K; K = PList - 1; - } + } + delete[] PList; return true; } /*}}}*/ diff --git a/debian/changelog b/debian/changelog index ddbc8de89..e2b0d753e 100644 --- a/debian/changelog +++ b/debian/changelog @@ -21,6 +21,10 @@ apt (0.9.7.7) UNRELEASED; urgency=low - ensure pkgProblemResolver calls MarkDelete without FromUser set so that it can't overrule holds and the protection flag + [ Jonathan Thomas ] + * apt-pkg/algorithms.cc: + - fix package-pointer array memory leak in ResolveByKeepInternal() + -- Jordi Mallach Thu, 18 Oct 2012 23:30:46 +0200 apt (0.9.7.6) unstable; urgency=low -- cgit v1.2.3 From ee5505af11ee4708704a296bddac5120314ef37a Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Thu, 13 Dec 2012 10:01:52 +0100 Subject: releasing version 0.9.7.7 --- configure.in | 2 +- debian/changelog | 4 ++-- doc/apt-verbatim.ent | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/configure.in b/configure.in index a5a2347c0..be3634abe 100644 --- a/configure.in +++ b/configure.in @@ -18,7 +18,7 @@ AC_CONFIG_AUX_DIR(buildlib) AC_CONFIG_HEADER(include/config.h:buildlib/config.h.in include/apti18n.h:buildlib/apti18n.h.in) PACKAGE="apt" -PACKAGE_VERSION="0.9.7.6" +PACKAGE_VERSION="0.9.7.7" PACKAGE_MAIL="APT Development Team " AC_DEFINE_UNQUOTED(PACKAGE,"$PACKAGE") AC_DEFINE_UNQUOTED(PACKAGE_VERSION,"$PACKAGE_VERSION") diff --git a/debian/changelog b/debian/changelog index 915c25f42..891c4f9da 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -apt (0.9.7.7) UNRELEASED; urgency=low +apt (0.9.7.7) unstable; urgency=low [ Program translation updates ] * Catalan (Jordi Mallach) @@ -31,7 +31,7 @@ apt (0.9.7.7) UNRELEASED; urgency=low * apt-pkg/algorithms.cc: - fix package-pointer array memory leak in ResolveByKeepInternal() - -- Michael Vogt Tue, 04 Dec 2012 15:57:01 +0100 + -- Michael Vogt Thu, 13 Dec 2012 09:52:19 +0100 apt (0.9.7.6) unstable; urgency=low diff --git a/doc/apt-verbatim.ent b/doc/apt-verbatim.ent index 6945c8d34..98d864818 100644 --- a/doc/apt-verbatim.ent +++ b/doc/apt-verbatim.ent @@ -213,7 +213,7 @@ "> - + -- cgit v1.2.3 From d663a4c8a8723ae4936d10d0a98ea2c05a29cbc4 Mon Sep 17 00:00:00 2001 From: "bubulle@debian.org" <> Date: Mon, 24 Dec 2012 07:02:36 +0100 Subject: Italian translation update for manpages --- debian/changelog | 7 + doc/po/it.po | 4725 +++++++++++++++++++++++++++++++++++++++++++++++------- 2 files changed, 4192 insertions(+), 540 deletions(-) diff --git a/debian/changelog b/debian/changelog index 891c4f9da..1dc31af9f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +apt (0.9.7.8) UNRELEASED; urgency=low + + [ Manpages translation updates ] + * Italian (Beatrice Torracca). Closes: #696601 + + -- Christian Perrier Mon, 24 Dec 2012 07:01:20 +0100 + apt (0.9.7.7) unstable; urgency=low [ Program translation updates ] diff --git a/doc/po/it.po b/doc/po/it.po index 716a2ee6e..a4d8d0ccc 100644 --- a/doc/po/it.po +++ b/doc/po/it.po @@ -1,23 +1,26 @@ -# Translation of apt package man pages -# Copyright (C) 2000 Debian Italian l10n team +# Translation of apt package's po4a documentation +# Copyright (C) 2000-2012 Debian Italian l10n team # This file is distributed under the same license as the apt package. -# # Translators: -# Eugenia Franzoni , 2000 -# -#, fuzzy +# Eugenia Franzoni, 2000 +# Hugh Hartmann, 2000-2012 +# Gabriele Stilli, 2012 +# Beatrice Torracca, 2012 +# Beatrice Torracca , 2012. msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: APT Development Team \n" "POT-Creation-Date: 2012-08-30 12:50+0300\n" -"PO-Revision-Date: 2003-04-26 23:26+0100\n" -"Last-Translator: Traduzione di Eugenia Franzoni \n" -"Language-Team: \n" -"Language: \n" +"PO-Revision-Date: 2012-12-23 18:04+0200\n" +"Last-Translator: Beatrice Torracca \n" +"Language-Team: Italian \n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Virtaal 0.7.1\n" #. type: Plain text #: apt.ent:7 @@ -30,6 +33,12 @@ msgid "" " \n" "\">\n" msgstr "" +"\n" +" Team APT\n" +" \n" +" \n" +"\">\n" #. type: Plain text #: apt.ent:13 @@ -41,6 +50,11 @@ msgid "" "\t\n" "\">\n" msgstr "" +"\n" +"\t\tPagina QA\n" +"\t\n" +"\">\n" #. type: Plain text #: apt.ent:24 @@ -57,6 +71,17 @@ msgid "" " \n" "\">\n" msgstr "" +"\n" +"Bug\n" +" Pagina dei bug di " +"APT.\n" +" Se si desidera segnalare un bug in APT, vedere\n" +" /usr/share/doc/debian/bug-reporting.txt o il\n" +" comando &reportbug;.\n" +" \n" +" \n" +"\">\n" #. type: Plain text #: apt.ent:32 @@ -70,6 +95,14 @@ msgid "" " \n" "\">\n" msgstr "" +"\n" +"Autore\n" +" APT è stato scritto dal Team APT " +"apt@packages.debian.org.\n" +" \n" +" \n" +"\">\n" #. type: Plain text #: apt.ent:42 @@ -85,6 +118,15 @@ msgid "" " \n" " \n" msgstr "" +"\n" +"\n" +" \n" +" Mostra un breve riassunto sull'uso.\n" +" \n" +" \n" +" \n" #. type: Plain text #: apt.ent:50 @@ -98,6 +140,13 @@ msgid "" " \n" " \n" msgstr "" +" \n" +" \n" +" \n" +" Mostra la versione del programma.\n" +" \n" +" \n" +" \n" #. type: Plain text #: apt.ent:62 @@ -115,6 +164,20 @@ msgid "" " \n" " \n" msgstr "" +" \n" +" \n" +" \n" +" File di configurazione; specifica un file di " +"configurazione da usare. \n" +" Il programma legge il file di configurazione predefinito e poi questo \n" +" file di configurazione. Se è necessario modificare le impostazioni di \n" +" configurazione prima che vengano analizzati i file di configurazione \n" +" predefiniti, specificare un file con la variabile d'ambiente " +"APT_CONFIG. \n" +" Vedere &apt-conf; per informazioni sulla sintassi.\n" +" \n" +" \n" +" \n" #. type: Plain text #: apt.ent:74 @@ -132,6 +195,19 @@ msgid "" " \n" "\">\n" msgstr "" +" \n" +" \n" +" \n" +" Imposta un'opzione di configurazione; imposterà una " +"qualunque\n" +" opzione di configurazione. La sintassi è .\n" +" e si possono usare più\n" +" volte per impostare opzioni diverse.\n" +" \n" +" \n" +" \n" +"\">\n" #. type: Plain text #: apt.ent:85 @@ -148,6 +224,19 @@ msgid "" " \n" "\">\n" msgstr "" +"\n" +"Tutte le opzioni a riga di comando si possono impostare usando il " +"file di\n" +" configurazione; le descrizioni indicano l'opzione da impostare. Per le " +"opzioni\n" +" booleane si può scavalcare il file di configurazione usando \n" +"qualcosa come , , " +"\n" +" o diverse altre varianti.\n" +" \n" +"\">\n" #. type: Plain text #: apt.ent:91 @@ -159,6 +248,12 @@ msgid "" " Configuration Item: Dir::Etc::Main.\n" " \n" msgstr "" +"/etc/apt/apt.conf\n" +" File di configurazione di APT.\n" +" Voce di configurazione: " +"Dir::Etc::Main.\n" +" \n" #. type: Plain text #: apt.ent:97 @@ -170,6 +265,12 @@ msgid "" " \n" "\">\n" msgstr "" +" /etc/apt/apt.conf.d/\n" +" Frammenti di file di configurazione di APT.\n" +" Voce di configurazione: " +"Dir::Etc::Parts.\n" +" \n" +"\">\n" #. type: Plain text #: apt.ent:103 @@ -181,6 +282,13 @@ msgid "" " Configuration Item: Dir::Cache::Archives.\n" " \n" msgstr "" +"&cachedir;/archives/\n" +" Area di archiviazione per i file dei pacchetti " +"recuperati.\n" +" Voce di configurazione: " +"Dir::Cache::Archives.\n" +" \n" #. type: Plain text #: apt.ent:109 @@ -192,6 +300,15 @@ msgid "" " \n" "\">\n" msgstr "" +" " +"&cachedir;/archives/partial/\n" +" Area di archiviazione per i file dei pacchetti in " +"transito.\n" +" Voce di configurazione: Dir::Cache::Archives " +"(partial verrà implicitamente aggiunto in fondo al " +"nome)\n" +" \n" +"\">\n" #. type: Plain text #: apt.ent:119 @@ -207,6 +324,16 @@ msgid "" " Configuration Item: Dir::Etc::Preferences.\n" " \n" msgstr "" +"/etc/apt/preferences\n" +" File di preferenze di versione.\n" +" Qui si specifica il "pinning",\n" +" ossia una preferenza a prendere determinati pacchetti\n" +" da una fonte separata\n" +" o da una diversa versione di una distribuzione.\n" +" Voce di configurazione: " +"Dir::Etc::Preferences.\n" +" \n" #. type: Plain text #: apt.ent:125 @@ -218,6 +345,12 @@ msgid "" " \n" "\">\n" msgstr "" +" /etc/apt/preferences.d/\n" +" Frammenti di file per le preferenze di versione.\n" +" Voce di configurazione: " +"Dir::Etc::PreferencesParts.\n" +" \n" +"\">\n" #. type: Plain text #: apt.ent:131 @@ -229,6 +362,12 @@ msgid "" " Configuration Item: Dir::Etc::SourceList.\n" " \n" msgstr "" +"/etc/apt/sources.list\n" +" Posizioni da cui scaricare i pacchetti.\n" +" Voce di configurazione: " +"Dir::Etc::SourceList.\n" +" \n" #. type: Plain text #: apt.ent:137 @@ -240,6 +379,14 @@ msgid "" " \n" "\">\n" msgstr "" +" " +"/etc/apt/sources.list.d/\n" +" Frammenti di file per le posizioni da cui scaricare i " +"pacchetti.\n" +" Voce di configurazione: " +"Dir::Etc::SourceParts.\n" +" \n" +"\">\n" #. type: Plain text #: apt.ent:144 @@ -252,6 +399,14 @@ msgid "" " Configuration Item: Dir::State::Lists.\n" " \n" msgstr "" +"&statedir;/lists/\n" +" Area di archiviazione per le informazioni sullo stato " +"di ciascuna risorsa dei pacchetti specificata in\n" +" &sources-list;\n" +" Voce di configurazione: " +"Dir::State::Lists.\n" +" \n" #. type: Plain text #: apt.ent:150 @@ -263,6 +418,15 @@ msgid "" " \n" "\">\n" msgstr "" +" " +"&statedir;/lists/partial/\n" +" Area di archiviazione per le informazioni di stato in " +"transito.\n" +" Voce di configurazione: Dir::State::Lists " +"(partial verrà implicitamente aggiunto in fondo al " +"nome)\n" +" \n" +"\">\n" #. type: Plain text #: apt.ent:156 @@ -274,6 +438,13 @@ msgid "" " Configuration Item: Dir::Etc::Trusted.\n" " \n" msgstr "" +"/etc/apt/trusted.gpg\n" +" Portachiavi delle chiavi fidate locali; qui saranno " +"aggiunte le nuove chiavi.\n" +" Voce di configurazione: " +"Dir::Etc::Trusted.\n" +" \n" #. type: Plain text #: apt.ent:163 @@ -286,6 +457,15 @@ msgid "" " \n" "\">\n" msgstr "" +" /etc/apt/trusted.gpg.d/\n" +" Frammenti di file per le chiavi fidate, qui potranno " +"essere memorizzati\n" +" ulteriori portachiavi (da parte di altri pacchetti o " +"dall'amministratore).\n" +" Voce di configurazione " +"Dir::Etc::TrustedParts.\n" +" \n" +"\">\n" #. type: Plain text #: apt.ent:171 @@ -299,6 +479,16 @@ msgid "" " \n" "\">\n" msgstr "" +"/var/lib/apt/extended_states\n" +" Elenco degli stati dei pacchetti installati " +"automaticamente.\n" +" Voce di configurazione: " +"Dir::State::extended_states.\n" +" \n" +" \n" +"\">\n" #. type: Plain text #: apt.ent:175 @@ -308,6 +498,11 @@ msgid "" " to the other headers like NAME and DESCRIPTION and should therefore be uppercase. -->\n" "\n" msgstr "" +"\n" +"\n" #. type: Plain text #: apt.ent:184 @@ -322,6 +517,17 @@ msgid "" " Debian Dummy l10n Team debian-l10n-dummy@lists.debian.org.\n" "\">\n" msgstr "" +"\n" +"debian-l10n-italian@lists.debian.org. In particolare " +"hanno contribuito Eugenia Franzoni (2000), Hugh Hartmann (2000-2012), " +"Gabriele Stilli (2012), Beatrice Torracca (2012).\n" +"\">\n" #. type: Plain text #: apt.ent:195 @@ -338,6 +544,20 @@ msgid "" " translation is lagging behind the original content.\n" "\">\n" msgstr "" +"\n" +"\n" #. type: Plain text #: apt.ent:198 @@ -345,6 +565,9 @@ msgid "" " " msgstr "" +" " #. type: Plain text #: apt.ent:201 @@ -352,6 +575,8 @@ msgid "" " " msgstr "" +" " #. type: Plain text #: apt.ent:204 @@ -360,6 +585,9 @@ msgid "" "t=squeeze apt/experimental --> " msgstr "" +" " #. type: Plain text #: apt.ent:207 @@ -367,6 +595,8 @@ msgid "" " " msgstr "" +" " #. type: Plain text #: apt.ent:210 @@ -374,6 +604,8 @@ msgid "" " " msgstr "" +" " #. type: Plain text #: apt.ent:213 @@ -381,6 +613,8 @@ msgid "" " " msgstr "" +" " +"" #. type: Plain text #: apt.ent:216 @@ -388,6 +622,8 @@ msgid "" " " msgstr "" +" " #. type: Plain text #: apt.ent:219 @@ -395,6 +631,8 @@ msgid "" " " msgstr "" +" " #. type: Plain text #: apt.ent:222 @@ -402,6 +640,8 @@ msgid "" " " msgstr "" +" " #. type: Plain text #: apt.ent:225 @@ -410,6 +650,9 @@ msgid "" "apt-extracttemplates -t=/tmp --> " msgstr "" +" " #. type: Plain text #: apt.ent:228 @@ -417,6 +660,8 @@ msgid "" " " msgstr "" +" " #. type: Plain text #: apt.ent:231 @@ -424,6 +669,9 @@ msgid "" " " msgstr "" +" " #. type: Plain text #: apt.ent:234 @@ -432,6 +680,9 @@ msgid "" "packages path override-file pathprefix --> " msgstr "" +" " #. type: Plain text #: apt.ent:237 @@ -440,6 +691,9 @@ msgid "" "packages path override-file pathprefix --> " msgstr "" +" " #. type: Plain text #: apt.ent:240 @@ -447,6 +701,8 @@ msgid "" " " msgstr "" +" " #. type: Plain text #: apt.ent:243 @@ -454,12 +710,14 @@ msgid "" " " msgstr "" +" " #. type: Content of: #: apt-get.8.xml:26 apt-cache.8.xml:26 apt-key.8.xml:25 apt-mark.8.xml:26 #: apt-secure.8.xml:25 apt-cdrom.8.xml:25 apt-config.8.xml:26 msgid "8" -msgstr "" +msgstr "8" #. type: Content of: #: apt-get.8.xml:27 apt-cache.8.xml:27 apt-key.8.xml:26 apt-mark.8.xml:27 @@ -467,12 +725,13 @@ msgstr "" #: apt.conf.5.xml:32 apt_preferences.5.xml:26 sources.list.5.xml:27 #: apt-extracttemplates.1.xml:27 apt-sortpkgs.1.xml:27 apt-ftparchive.1.xml:27 msgid "APT" -msgstr "" +msgstr "APT" #. type: Content of: #: apt-get.8.xml:33 msgid "APT package handling utility -- command-line interface" msgstr "" +"strumento APT per la gestione dei pacchetti, interfaccia a riga di comando" #. type: Content of: #: apt-get.8.xml:38 apt-cache.8.xml:38 apt-key.8.xml:37 apt-mark.8.xml:38 @@ -480,7 +739,7 @@ msgstr "" #: apt.conf.5.xml:41 apt_preferences.5.xml:36 sources.list.5.xml:36 #: apt-extracttemplates.1.xml:38 apt-sortpkgs.1.xml:38 apt-ftparchive.1.xml:38 msgid "Description" -msgstr "" +msgstr "Descrizione" #. type: Content of: <refentry><refsect1><para> #: apt-get.8.xml:39 @@ -490,6 +749,10 @@ msgid "" "library. Several \"front-end\" interfaces exist, such as &dselect;, " "&aptitude;, &synaptic; and &wajig;." msgstr "" +"<command>apt-get</command> è lo strumento a riga di comando per gestire " +"pacchetti e può essere considerato il «backend» dell'utente per altri " +"strumenti che usano la libreria APT. Esistono diversi «frontend» per " +"interfaccia, come &dselect;, &aptitude;, &synaptic; e &wajig;." #. type: Content of: <refentry><refsect1><para> #: apt-get.8.xml:44 apt-cache.8.xml:44 apt-cdrom.8.xml:51 apt-config.8.xml:44 @@ -498,6 +761,8 @@ msgid "" "Unless the <option>-h</option>, or <option>--help</option> option is given, " "one of the commands below must be present." msgstr "" +"A meno che non venga fornita l'opzione <option>-h</option> o " +"<option>--help</option>, deve essere presente uno dei comandi seguenti." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:49 @@ -512,6 +777,17 @@ msgid "" "literal>. Please be aware that the overall progress meter will be incorrect " "as the size of the package files cannot be known in advance." msgstr "" +"<literal>update</literal> è usato per sincronizzare nuovamente i file degli " +"indici dei pacchetti dalle loro fonti. Gli indici dei pacchetti disponibili " +"sono scaricati dalle posizioni specificate in " +"<filename>/etc/apt/sources.list</filename>. Per esempio, quando si usa un " +"archivio Debian, questo comando recupera e analizza i file " +"<filename>Packages.gz</filename>, in modo da rendere disponibili " +"informazioni sui pacchetti nuovi e quelli aggiornati. Si dovrebbe sempre " +"fare un <literal>update</literal> prima di un <literal>upgrade</literal> o " +"<literal>dist-upgrade</literal>. Notare che l'indicatore di avanzamento " +"globale non è preciso perché è impossibile conoscere in anticipo la " +"dimensione dei file degli indici dei pacchetti." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:61 @@ -527,6 +803,17 @@ msgid "" "<literal>update</literal> must be performed first so that <command>apt-get</" "command> knows that new versions of packages are available." msgstr "" +"<literal>upgrade</literal> è usato per installare le versioni più recenti di " +"tutti i pacchetti attualmente installati sul sistema, usando le fonti " +"elencate in <filename>/etc/apt/sources.list</filename>. I pacchetti " +"attualmente installati con nuove versioni disponibili sono recuperati e " +"aggiornati; in nessun caso vengono rimossi pacchetti attualmente installati " +"oppure recuperati e installati pacchetti che non lo sono già. I pacchetti " +"attualmente installati che hanno una nuova versione, ma che non possono " +"essere aggiornati senza cambiare lo stato di installazione di un altro " +"pacchetto, vengono lasciati alla versione attuale. Deve essere prima " +"effettuato un <literal>update</literal> in modo che <command>apt-" +"get</command> sappia se sono disponibili nuove versioni dei pacchetti." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:74 @@ -542,6 +829,17 @@ msgid "" "preferences; for a mechanism for overriding the general settings for " "individual packages." msgstr "" +"<literal>dist-upgrade</literal>, oltre ad effettuare le funzioni di " +"<literal>upgrade</literal>, gestisce anche in maniera intelligente le " +"modifiche delle dipendenze delle nuove versioni dei pacchetti; <command>apt-" +"get</command> ha un sistema «intelligente» di risoluzione dei conflitti e " +"cerca di aggiornare i pacchetti più importanti a scapito di quelli meno " +"importanti, se necessario. Il comando <literal>dist-upgrade</literal> può " +"quindi rimuovere alcuni pacchetti. Il file " +"<filename>/etc/apt/sources.list</filename> contiene un elenco di posizioni " +"da cui recuperare i file di pacchetto desiderati. Vedere anche &apt-" +"preferences; per un meccanismo per scavalcare le impostazioni generali per " +"singoli pacchetti." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:87 @@ -553,6 +851,12 @@ msgid "" "realize that state (for instance, the removal of old and the installation of " "new packages)." msgstr "" +"<literal>dselect-upgrade</literal> viene usato insieme a &dselect;, il " +"frontend tradizionale per i pacchetti di Debian. <literal>dselect-" +"upgrade</literal> segue i cambiamenti fatti da &dselect; al campo " +"<literal>Status</literal> dei pacchetti disponibili, ed effettua le azioni " +"necessarie per realizzare tale stato (ad esempio la rimozione di vecchi " +"pacchetti e l'installazione di nuovi)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:98 @@ -570,6 +874,19 @@ msgid "" "install. These latter features may be used to override decisions made by apt-" "get's conflict resolution system." msgstr "" +"<literal>install</literal> è seguito da uno o più pacchetti da installare o " +"aggiornare. Ogni pacchetto è un nome di pacchetto, non un nome di file " +"pienamente qualificato (ad esempio, in un sistema Debian, l'argomento " +"fornito sarebbe <package>apt-utils</package>, non <filename>apt-utils_&apt-" +"product-version;_amd64.deb</filename>). Tutti i pacchetti richiesti dai " +"pacchetti specificati per l'installazione saranno anch'essi recuperati e " +"installati. Il file <filename>/etc/apt/sources.list</filename> viene usato " +"per localizzare i pacchetti desiderati. Se viene aggiunto un segno meno alla " +"fine del nome di pacchetto (senza spazio), il pacchetto specificato viene " +"rimosso, se è installato. Analogamente un segno più può essere usato per " +"specificare un pacchetto da installare. Queste ultime funzionalità possono " +"essere usate per scavalcare decisioni prese dal sistema di risoluzione dei " +"conflitti di apt-get." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:116 @@ -581,6 +898,13 @@ msgid "" "package name with a slash and the version of the distribution or the Archive " "name (stable, testing, unstable)." msgstr "" +"È possibile selezionare una versione specifica di un pacchetto per " +"l'installazione scrivendo dopo il nome del pacchetto un segno di uguale e la " +"versione del pacchetto da selezionare. Ciò farà sì che venga localizzata e " +"selezionata per l'installazione quella versione. In alternativa può essere " +"selezionata una distribuzione specifica scrivendo dopo il nome del pacchetto " +"una sbarra («/») e la versione della distribuzione o il nome dell'archivio " +"(stable, testing, unstable)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:123 @@ -588,6 +912,8 @@ msgid "" "Both of the version selection mechanisms can downgrade packages and must be " "used with care." msgstr "" +"Entrambi i meccanismi di selezione della versione possono far retrocedere " +"pacchetti e devono essere usati con cautela." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:126 @@ -600,6 +926,14 @@ msgid "" "you wish to upgrade, and if a newer version is available, it (and its " "dependencies, as described above) will be downloaded and installed." msgstr "" +"Questa è l'azione da usare anche quando si desiderano aggiornare uno o più " +"pacchetti già installati senza aggiornare ogni pacchetto nel sistema. A " +"differenza dell'azione «upgrade», che aggiorna alla versione più recente " +"tutti i pacchetti installati, «install» installa la versione più recente " +"solamente per i pacchetti specificati. Basta fornire il nome dei pacchetti " +"che si desiderano aggiornare e, se è disponibile una versione più recente, " +"essa (e tutte le sue dipendenze come descritto sopra) verrà scaricata e " +"installata." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:137 @@ -607,6 +941,8 @@ msgid "" "Finally, the &apt-preferences; mechanism allows you to create an alternative " "installation policy for individual packages." msgstr "" +"Da ultimo, il meccanismo &apt-preferences; permette di creare una politica " +"di installazione alternativa per i singoli pacchetti." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:141 @@ -619,6 +955,14 @@ msgid "" "expression with a '^' or '$' character, or create a more specific regular " "expression." msgstr "" +"Se nessun pacchetto corrisponde all'espressione specificata e questa " +"contiene uno tra «.», «?» o «*», allora viene considerata come " +"un'espressione regolare POSIX e viene confrontata con tutti i nomi di " +"pacchetto nel database. Ogni corrispondenza viene quindi installata (o " +"rimossa). Notare che la corrispondenza avviene con sottostringhe, perciò " +"«bass.*» trova corrispondenza con «quanto-bass» e «bassissimo». Se ciò non è " +"quello che si desidera, ancorare l'espressione regolare con un carattere " +"«^» o «$», oppure creare un'espressione regolare più specifica." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:151 @@ -629,6 +973,11 @@ msgid "" "the package name (with no intervening space), the identified package will be " "installed instead of removed." msgstr "" +"<literal>remove</literal> è identico a <literal>install</literal> tranne per " +"il fatto che i pacchetti sono rimossi invece che installati. Notare che la " +"rimozione di un pacchetto lascia i suoi file di configurazione nel sistema. " +"Se viene aggiunto un segno più in fondo al nome del pacchetto (senza spazi " +"in mezzo), il pacchetto specificato viene installato invece che rimosso." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:159 @@ -637,6 +986,9 @@ msgid "" "that packages are removed and purged (any configuration files are deleted " "too)." msgstr "" +"<literal>purge</literal> è identico a <literal>remove</literal> tranne per " +"il fatto che i pacchetti sono rimossi ed eliminati completamente (viene " +"eliminato anche ogni file di configurazione)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:164 @@ -649,6 +1001,13 @@ msgid "" "literal>, the <option>-t</option> option or per package with the " "<literal>pkg/release</literal> syntax, if possible." msgstr "" +"<literal>source</literal> fa sì che </command>apt-get</command> scarichi i " +"pacchetti sorgente. APT esaminerà i pacchetti disponibili per decidere quali " +"pacchetti sorgente scaricare. Poi, se possibile, troverà e scaricherà nella " +"directory corrente la versione più recente disponibile di quel pacchetto " +"sorgente rispettando il rilascio predefinito, impostato con l'opzione " +"<literal>APT::Default-Release</literal>, l'opzione <option>-t</option> o per " +"i singoli pacchetti con la sintassi <literal>pacch/rilascio</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:172 @@ -659,6 +1018,12 @@ msgid "" "otherwise you will probably get either the wrong (too old/too new) source " "versions or none at all." msgstr "" +"Il sistema tiene traccia dei pacchetti sorgente in modo separato dai " +"pacchetti binari, attraverso righe <literal>deb-src</literal> nel file " +"&sources-list;. Ciò significa che sarà necessario aggiungere una riga di " +"questo tipo per ciascun repository da cui si desiderano ottenere sorgenti; " +"in caso contrario probabilmente si otterrà la versione sorgente sbagliata " +"(troppo vecchia o troppo nuova) oppure nessuna versione." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:178 @@ -669,6 +1034,12 @@ msgid "" "option. If <option>--download-only</option> is specified then the source " "package will not be unpacked." msgstr "" +"Se viene specificata l'opzione <option>--compile</option> allora il " +"pacchetto verrà compilato in un .deb binario usando <command>dpkg-" +"buildpackage</command> per l'architettura così come definita dall'opzione " +"<command>--host-architecture</command>. Se viene usata l'opzione <option" +">--download-only</option>, allora il pacchetto sorgente non verrà " +"spacchettato." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:185 @@ -679,6 +1050,12 @@ msgid "" "name and version, implicitly enabling the <literal>APT::Get::Only-Source</" "literal> option." msgstr "" +"Può essere recuperata una specifica versione sorgente facendo seguire al " +"nome del sorgente un segno uguale e quindi la versione da scaricare, in modo " +"simile al meccanismo usato per i file di pacchetto. Ciò permette la " +"corrispondenza esatta con il nome e la versione del pacchetto sorgente, " +"abilitando implicitamente l'opzione <literal>APT::Get::Only-" +"Source</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:191 @@ -687,6 +1064,10 @@ msgid "" "<command>dpkg</command> database like binary packages; they are simply " "downloaded to the current directory, like source tarballs." msgstr "" +"Notare che i pacchetti sorgente non vengono installati né viene tenuta " +"traccia di essi nel database di <command>dpkg</command> come per i pacchetti " +"binari; sono semplicemente scaricati nella directory corrente, come archivi " +"tar dei sorgenti." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:197 @@ -697,6 +1078,12 @@ msgid "" "host-architecture can be specified with the <option>--host-architecture</" "option> option instead." msgstr "" +"<literal>build-dep</literal> fa sì che apt-get installi o rimuova pacchetti, " +"nel tentativo di soddisfare le dipendenze di compilazione di un pacchetto " +"sorgente. In modo predefinito sono soddisfatte le dipendenze per compilare " +"il pacchetto in modo nativo. Se lo si desidera, è possibile invece " +"specificare un'architettura ospite con l'opzione <option>--host-" +"architecture</option>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:204 @@ -704,6 +1091,8 @@ msgid "" "<literal>check</literal> is a diagnostic tool; it updates the package cache " "and checks for broken dependencies." msgstr "" +"<literal>check</literal> è uno strumento diagnostico; aggiorna la cache dei " +"pacchetti e controlla la presenza di dipendenze non soddisfatte." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:209 @@ -711,6 +1100,8 @@ msgid "" "<literal>download</literal> will download the given binary package into the " "current directory." msgstr "" +"<literal>download</literal> scarica il pacchetto binario specificato nella " +"directory corrente." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:215 @@ -723,6 +1114,14 @@ msgid "" "want to run <literal>apt-get clean</literal> from time to time to free up " "disk space." msgstr "" +"<literal>clean</literal> ripulisce il repository locale dei file di " +"pacchetto recuperati. Rimuove tutto da " +"<filename>&cachedir;/archives/</filename> e " +"<filename>&cachedir;/archives/partial/</filename>, tranne il file di lock. " +"Quando APT viene usato come metodo per &dselect;, <literal>clean</literal> " +"viene eseguito automaticamente. Chi non usa dselect probabilmente è bene che " +"usi <literal>apt-get clean</literal> di quando in quando per liberare " +"spazio su disco." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:225 @@ -735,6 +1134,13 @@ msgid "" "Installed</literal> will prevent installed packages from being erased if it " "is set to off." msgstr "" +"Come <literal>clean</literal>, <literal>autoclean</literal> ripulisce il " +"repository locale dei file di pacchetto recuperati. La differenza sta nel " +"fatto che rimuove solo i file di pacchetto che non possono più essere " +"scaricati e sono per lo più inutili. Questo permette di mantenere una cache " +"per un periodo lungo senza che cresca fuori controllo. Se l'opzione di " +"configurazione <literal>APT::Clean-Installed</literal> è disabilitata, " +"impedisce che vengano eliminati i pacchetti installati." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:235 @@ -743,6 +1149,9 @@ msgid "" "automatically installed to satisfy dependencies for other packages and are " "now no longer needed." msgstr "" +"<literal>autoremove</literal> viene usato per rimuovere i pacchetti che sono " +"stati installati automaticamente per soddisfare delle dipendenze per altri " +"pacchetti e che non sono più necessari." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:240 @@ -757,13 +1166,22 @@ msgid "" "installed. However, you can specify the same options as for the " "<option>install</option> command." msgstr "" +"<literal>changelog</literal> scarica il changelog di un pacchetto e lo " +"visualizza usando <command>sensible-pager</command>. Il nome e la directory " +"di base del server sono definiti nella variabile " +"<literal>APT::Changelogs::Server</literal> (ad esempio <ulink url=\"http://pa" +"ckages.debian.org/changelogs\">packages.debian.org/changelogs</ulink> per " +"Debian o <ulink url=\"http://changelogs.ubuntu.com/changelogs\">changelogs.ubu" +"ntu.com/changelogs</ulink> per Ubuntu). In modo predefinito visualizza il " +"changelog per la versione che è installata. Tuttavia si possono specificare " +"le stesse opzioni del comando <option>install</option>." #. type: Content of: <refentry><refsect1><title> #: apt-get.8.xml:258 apt-cache.8.xml:248 apt-mark.8.xml:108 #: apt-config.8.xml:84 apt-extracttemplates.1.xml:52 apt-sortpkgs.1.xml:48 #: apt-ftparchive.1.xml:504 msgid "options" -msgstr "" +msgstr "opzioni" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:263 @@ -771,6 +1189,9 @@ msgid "" "Do not consider recommended packages as a dependency for installing. " "Configuration Item: <literal>APT::Install-Recommends</literal>." msgstr "" +"Non considerare i pacchetti raccomandati come una dipendenza per " +"l'installazione. Voce di configurazione: <literal>APT::Install-" +"Recommends</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:268 @@ -778,6 +1199,8 @@ msgid "" "Consider suggested packages as a dependency for installing. Configuration " "Item: <literal>APT::Install-Suggests</literal>." msgstr "" +"Considera i pacchetti suggeriti come una dipendenza per l'installazione. " +"Voce di configurazione:<literal>APT::Install-Suggests</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:273 @@ -785,6 +1208,9 @@ msgid "" "Download only; package files are only retrieved, not unpacked or installed. " "Configuration Item: <literal>APT::Get::Download-Only</literal>." msgstr "" +"Scarica solamente; i file di pacchetto sono solo recuperati e non " +"spacchettati o installati. Voce di configurazione: <literal>APT::Get" +"::Download-Only</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:278 @@ -801,6 +1227,18 @@ msgid "" "option> may produce an error in some situations. Configuration Item: " "<literal>APT::Get::Fix-Broken</literal>." msgstr "" +"Aggiusta; cerca di correggere un sistema che ha dipendenze non soddisfatte. " +"Questa opzione, quando usata con install o remove, può omettere qualsiasi " +"pacchetto per permettere ad APT di trovare una soluzione valida. Se sono " +"specificati dei pacchetti, questi devono risolvere completamente il " +"problema. L'opzione è a volte necessaria quando si esegue APT per la prima " +"volta; APT stesso non permette l'esistenza di pacchetti con dipendenze non " +"soddisfatte in un sistema. È possibile che la struttura di dipendenze di un " +"sistema sia corrotta a tal punto da richiedere un intervento manuale (il che " +"di solito significa usare &dselect; o <command>dpkg --remove</command> per " +"eliminare alcuni dei pacchetti che creano problemi). L'uso di questa opzione " +"insieme a <option>-m</option> può in alcune situazioni produrre un errore. " +"Voce di configurazione: <literal>APT::Get::Fix-Broken</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:293 @@ -813,6 +1251,14 @@ msgid "" "it could not be downloaded then it will be silently held back. " "Configuration Item: <literal>APT::Get::Fix-Missing</literal>." msgstr "" +"Ignora i pacchetti mancanti; se alcuni pacchetti non possono essere " +"recuperati o fallisce il controllo sulla loro integrità dopo il recupero " +"(file di pacchetto corrotti), mantiene bloccati tali pacchetti e gestisce il " +"risultato. L'uso di questa opzione insieme a <option>-f</option> può " +"produrre un errore in alcune situazioni. Se un pacchetto è selezionato per " +"l'installazione (particolarmente se è indicato nella riga di comando) e non " +"può essere scaricato verrà silenziosamente mantenuto invariato. Voce di " +"configurazione: <literal>APT::Get::Fix-Missing</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:304 @@ -821,6 +1267,9 @@ msgid "" "missing</option> to force APT to use only the .debs it has already " "downloaded. Configuration Item: <literal>APT::Get::Download</literal>." msgstr "" +"Disabilita lo scaricamento dei pacchetti. È usato al meglio con <option" +">--ignore-missing</option> per forzare APT ad usare solo i .deb che ha già " +"scaricato. Voce di configurazione: <literal>APT::Get::Download</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:311 @@ -833,6 +1282,15 @@ msgid "" "may decide to do something you did not expect. Configuration Item: " "<literal>quiet</literal>." msgstr "" +"Silenzioso; produce un output adatto alla registrazione, omettendo gli " +"indicatori di avanzamento. L'uso di più «q» produce un output più silenzioso " +"fino a un massimo di 2. Si può anche usare <option>-q=n</option> per " +"impostare il livello di silenziosità a n, scavalcando il file di " +"configurazione. Notare che il livello di silenziosità 2 implica " +"<option>-y</option>; non si dovrebbe mai usare -qq senza un modificatore che " +"non fa azioni come -d, --print-uris o -s, dato che APT potrebbe decidere di " +"fare qualcosa di inatteso. Voce di configurazione: " +"<literal>quiet</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:326 @@ -841,6 +1299,9 @@ msgid "" "actually change the system. Configuration Item: <literal>APT::Get::" "Simulate</literal>." msgstr "" +"Nessuna azione; effettua una simulazione degli eventi che si " +"verificherebbero, ma non cambia realmente il sistema. Voce di " +"configurazione: <literal>APT::Get::Simulate</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:330 @@ -853,6 +1314,13 @@ msgid "" "should know what they are doing without further warnings from <literal>apt-" "get</literal>." msgstr "" +"Le esecuzioni simulate effettuate da un utente disattivano automaticamente " +"il lock (<literal>Debug::NoLocking</literal>) e se è impostata l'opzione " +"<literal>APT::Get::Show-User-Simulation-Note</literal> (come predefinito), " +"viene anche visualizzato un messaggio che indica che quella fatta è solo una " +"simulazione. Le esecuzioni effettuate da root non attivano né NoLocking né " +"i messaggi: i superutenti dovrebbero sapere ciò che stanno facendo senza " +"bisogno di ulteriori avvertimenti da <literal>apt-get</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:338 @@ -863,6 +1331,12 @@ msgid "" "Square brackets indicate broken packages, and empty square brackets indicate " "breaks that are of no consequence (rare)." msgstr "" +"Le esecuzioni simulate stampano una serie di righe, ciascuna delle quali " +"rappresenta un'operazione di <command>dpkg</command>: configurazione " +"(<literal>Conf</literal>), rimozione (<literal>Remv</literal>) o " +"spacchettamento (<literal>Inst</literal>). Le parentesi quadre indicano i " +"pacchetti difettosi e le parentesi quadre vuote indicano difetti che non " +"hanno conseguenze (rari)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:346 @@ -873,6 +1347,13 @@ msgid "" "essential package occurs then <literal>apt-get</literal> will abort. " "Configuration Item: <literal>APT::Get::Assume-Yes</literal>." msgstr "" +"Rispondi automaticamente «sì» ai prompt; assume «sì» come risposta a tutti i " +"prompt e viene eseguito in modo non interattivo. Se si verifica una " +"situazione non desiderabile, come il cambiamento di un pacchetto bloccato, " +"il tentativo di installazione di un pacchetto non autenticato o la rimozione " +"di un pacchetto essenziale, allora <literal>apt-get</literal> annullerà " +"l'esecuzione. Voce di configurazione: <literal>APT::Get::Assume-" +"Yes</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:354 @@ -880,6 +1361,8 @@ msgid "" "Automatic \"no\" to all prompts. Configuration Item: <literal>APT::Get::" "Assume-No</literal>." msgstr "" +"Rispondi automaticamente «no» a tutti i prompt. Voce di configurazione: " +"<literal>APT::Get::Assume-No</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:359 @@ -887,6 +1370,9 @@ msgid "" "Show upgraded packages; print out a list of all packages that are to be " "upgraded. Configuration Item: <literal>APT::Get::Show-Upgraded</literal>." msgstr "" +"Mostra i pacchetti aggiornati; stampa un elenco di tutti i pacchetti che " +"devono essere aggiornati. Voce di configurazione: <literal>APT::Get::Show-" +"Upgraded</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:365 @@ -894,6 +1380,8 @@ msgid "" "Show full versions for upgraded and installed packages. Configuration Item: " "<literal>APT::Get::Show-Versions</literal>." msgstr "" +"Mostra la versione completa dei pacchetti aggiornati e installati. Voce di " +"configurazione: <literal>APT::Get::Show-Versions</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:371 @@ -905,6 +1393,13 @@ msgid "" "Architecture</literal>). Configuration Item: <literal>APT::Get::Host-" "Architecture</literal>" msgstr "" +"Questa opzione controlla l'architettura per la quale <command>apt-get source " +"--compile</command> compila i pacchetti e come le dipendenze di " +"compilazione incrociata sono soddisfatte. In modo predefinito non è " +"impostata, il che significa che l'architettura ospite è la stessa " +"dell'architettura di compilazione (che è definita da " +"<literal>APT::Architecture</literal>). Voce di configurazione: " +"<literal>APT::Get::Host-Architecture</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:381 @@ -912,6 +1407,8 @@ msgid "" "Compile source packages after downloading them. Configuration Item: " "<literal>APT::Get::Compile</literal>." msgstr "" +"Compila i pacchetti sorgente dopo averli scaricati. Voce di configurazione: " +"<literal>APT::Get::Compile</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:386 @@ -921,6 +1418,10 @@ msgid "" "<literal>dist-upgrade</literal> to override a large number of undesired " "holds. Configuration Item: <literal>APT::Ignore-Hold</literal>." msgstr "" +"Ignora i blocchi sui pacchetti; ciò fa sì che <command>apt-get</command> " +"ignori il blocco posto su un pacchetto. Può essere utile insieme a <literal" +">dist-upgrade</literal> per scavalcare un grande numero di blocchi non " +"desiderati. Voce di configurazione: <literal>APT::Ignore-Hold</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:393 @@ -930,6 +1431,10 @@ msgid "" "line from being upgraded if they are already installed. Configuration Item: " "<literal>APT::Get::Upgrade</literal>." msgstr "" +"Non aggiornare i pacchetti; quando usato insieme a " +"<literal>install</literal>, <literal>no-upgrade</literal> impedisce che i " +"pacchetti nella riga di comando vengano aggiornati se sono già installati. " +"Voce di configurazione: <literal>APT::Get::Upgrade</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:400 @@ -939,6 +1444,11 @@ msgid "" "installed packages only and ignore requests to install new packages. " "Configuration Item: <literal>APT::Get::Only-Upgrade</literal>." msgstr "" +"Non installare nuovi pacchetti; quando usato insieme a " +"<literal>install</literal>, <literal>only-upgrade</literal> installa gli " +"aggiornamenti solamente per i pacchetti già installati e ignora le richieste " +"di installarne di nuovi. Voce di configurazione: <literal>APT::Get::Only-" +"Upgrade</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:408 @@ -949,6 +1459,12 @@ msgid "" "literal> can potentially destroy your system! Configuration Item: " "<literal>APT::Get::force-yes</literal>." msgstr "" +"Forza «sì»; questa è un'opzione pericolosa che fa sì che apt, se sta facendo " +"qualcosa di potenzialmente pericoloso, continui senza chiedere " +"l'autorizzazione all'utente. Non dovrebbe essere usata se non in situazioni " +"molto particolari. L'uso di <literal>force-yes</literal> può potenzialmente " +"distruggere il sistema. Voce di configurazione: <literal>APT::Get::force-" +"yes</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:416 @@ -962,6 +1478,14 @@ msgid "" "to decompress any compressed files. Configuration Item: <literal>APT::Get::" "Print-URIs</literal>." msgstr "" +"Invece di scaricare i file per l'installazione, stampa i loro URI. Ogni URI " +"ha il percorso, il nome del file di destinazione, la dimensione e l'hash MD5 " +"atteso. Notare che il nome file in cui scrivere non corrisponde sempre al " +"nome file sul sito remoto. Questo funziona anche con i comandi " +"<literal>source</literal> e <literal>update</literal>. Quando usato con il " +"comando <literal>update</literal> l'hash MD5 e la dimensione non sono " +"inclusi, e sta all'utente decomprimere qualsiasi file compresso. Voce di " +"configurazione: <literal>APT::Get::Print-URIs</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:427 @@ -971,6 +1495,11 @@ msgid "" "<option>remove --purge</option> is equivalent to the <option>purge</option> " "command. Configuration Item: <literal>APT::Get::Purge</literal>." msgstr "" +"Usa purge invece di remove per ogni cosa da rimuovere. Verrà visualizzato un " +"asterisco («*») vicino ai pacchetti pianificati per l'eliminazione " +"completa. <option>remove --purge</option> è equivalente al comando " +"<option>purge</option>. Voce di configurazione: " +"<literal>APT::Get::Purge</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:435 @@ -978,6 +1507,8 @@ msgid "" "Re-install packages that are already installed and at the newest version. " "Configuration Item: <literal>APT::Get::ReInstall</literal>." msgstr "" +"Reinstalla i pacchetti che sono già installati alla nuova versione. Voce di " +"configurazione: <literal>APT::Get::ReInstall</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:440 @@ -989,6 +1520,13 @@ msgid "" "frequently change your sources list. Configuration Item: <literal>APT::Get::" "List-Cleanup</literal>." msgstr "" +"Questa opzione è attivata in modo predefinito; usare <literal>--no-list-" +"cleanup</literal> per disabilitarla. Quando è attivata <command>apt-" +"get</command> gestisce automaticamente il contenuto di " +"<filename>&statedir;/lists</filename> per garantire che i file obsoleti " +"siano eliminati. L'unica ragione per disabilitarla è se si cambia di " +"frequente la propria lista di fonti. Voce di configurazione: " +"<literal>APT::Get::List-Cleanup</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:450 @@ -1003,6 +1541,16 @@ msgid "" "option>. Configuration Item: <literal>APT::Default-Release</literal>; see " "also the &apt-preferences; manual page." msgstr "" +"Questa opzione controlla l'input predefinito per il motore delle politiche; " +"crea un pin predefinito alla priorità 990 usando la stringa di rilascio " +"specificata. Ciò scavalca le impostazioni generali in " +"<filename>/etc/apt/preferences</filename>. Questa opzione non ha effetto sui " +"pacchetti su cui si usa specificatamente il pinning. In breve, questa " +"opzione permette di avere un semplice controllo sulla distribuzione da cui " +"verranno recuperati i pacchetti. Alcuni esempi comuni possono essere " +"<option>-t '2.1*'</option>, <option>-t unstable</option> o <option>-t " +"sid</option>. Voce di configurazione: <literal>APT::Default-" +"Release</literal>; vedere anche la pagina di manuale di &apt-preferences;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:465 @@ -1012,6 +1560,11 @@ msgid "" "option> will answer yes to any prompt, <option>--trivial-only</option> will " "answer no. Configuration Item: <literal>APT::Get::Trivial-Only</literal>." msgstr "" +"Effettua solo le operazioni che sono «banali». Può essere correlato " +"logicamente a <option>--assume-yes</option>: mentre <option>--assume-" +"yes</option> risponde «sì» a tutti i prompt, <option>--trivial-only</option> " +"risponde «no». Voce di configurazione: <literal>APT::Get::Trivial-" +"Only</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:472 @@ -1019,6 +1572,9 @@ msgid "" "If any packages are to be removed apt-get immediately aborts without " "prompting. Configuration Item: <literal>APT::Get::Remove</literal>." msgstr "" +"Se un qualsiasi pacchetto dovrebbe essere rimosso, apt-get immediatamente " +"annulla l'operazione senza chiedere. Voce di configurazione: " +"<literal>APT::Get::Remove</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:478 @@ -1028,6 +1584,11 @@ msgid "" "literal> command, removing unused dependency packages. Configuration Item: " "<literal>APT::Get::AutomaticRemove</literal>." msgstr "" +"Se il comando è <literal>install</literal> oppure <literal>remove</literal>, " +"allora questa opzione si comporta come se si eseguisse il comando " +"<literal>autoremove</literal>, rimuovendo i pacchetti di dipendenza non " +"utilizzati. Voce di configurazione: " +"<literal>APT::Get::AutomaticRemove</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:485 @@ -1040,6 +1601,13 @@ msgid "" "corresponding source package. Configuration Item: <literal>APT::Get::Only-" "Source</literal>." msgstr "" +"Ha significato solo per i comandi <literal>source</literal> e <literal" +">build-dep</literal>. Indica che i nomi dei sorgenti indicati non devono " +"essere mappati usando la tabella dei binari; ciò significa che, se viene " +"specificata questa opzione, tali comandi accetteranno solamente nomi di " +"pacchetti sorgente come argomento, invece di accettare nomi di pacchetti " +"binari e cercare il pacchetto sorgente corrispondente. Voce di " +"configurazione: <literal>APT::Get::Only-Source</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:496 @@ -1048,6 +1616,9 @@ msgid "" "Item: <literal>APT::Get::Diff-Only</literal>, <literal>APT::Get::Dsc-Only</" "literal>, and <literal>APT::Get::Tar-Only</literal>." msgstr "" +"Scarica solo il file diff, dsc o tar di un archivio sorgente. Voce di " +"configurazione: <literal>APT::Get::Diff-Only</literal>, <literal>APT::Get" +"::Dsc-Only</literal> e <literal>APT::Get::Tar-Only</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:502 @@ -1055,6 +1626,8 @@ msgid "" "Only process architecture-dependent build-dependencies. Configuration Item: " "<literal>APT::Get::Arch-Only</literal>." msgstr "" +"Elabora solo le dipendenze di compilazione dipendenti dall'architettura. " +"Voce di configurazione: <literal>APT::Get::Arch-Only</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:507 @@ -1063,12 +1636,15 @@ msgid "" "is useful for tools like pbuilder. Configuration Item: <literal>APT::Get::" "AllowUnauthenticated</literal>." msgstr "" +"Ignora se i pacchetti non possono essere autenticati e non chiedere " +"all'utente cosa fare. È utile per strumenti come pbuilder. Voce di " +"configurazione: <literal>APT::Get::AllowUnauthenticated</literal>." #. type: Content of: <refentry><refsect1><title> #: apt-get.8.xml:518 apt-cache.8.xml:343 apt-key.8.xml:174 apt-mark.8.xml:125 #: apt.conf.5.xml:1156 apt_preferences.5.xml:698 msgid "Files" -msgstr "" +msgstr "File" #. type: Content of: <refentry><refsect1><title> #: apt-get.8.xml:528 apt-cache.8.xml:350 apt-key.8.xml:195 apt-mark.8.xml:131 @@ -1077,7 +1653,7 @@ msgstr "" #: apt-extracttemplates.1.xml:70 apt-sortpkgs.1.xml:63 #: apt-ftparchive.1.xml:607 msgid "See Also" -msgstr "" +msgstr "Vedere anche" #. type: Content of: <refentry><refsect1><para> #: apt-get.8.xml:529 @@ -1086,13 +1662,16 @@ msgid "" "&apt-config;, &apt-secure;, The APT User's guide in &guidesdir;, &apt-" "preferences;, the APT Howto." msgstr "" +"&apt-cache;, &apt-cdrom;, &dpkg;, &dselect;, &sources-list;, &apt-conf;, " +"&apt-config;, &apt-secure;, la Guida dell'utente di APT in &guidesdir;, " +"&apt-preferences;, l'APT Howto." #. type: Content of: <refentry><refsect1><title> #: apt-get.8.xml:534 apt-cache.8.xml:355 apt-mark.8.xml:135 #: apt-cdrom.8.xml:149 apt-config.8.xml:114 apt-extracttemplates.1.xml:74 #: apt-sortpkgs.1.xml:67 apt-ftparchive.1.xml:611 msgid "Diagnostics" -msgstr "" +msgstr "Diagnostica" #. type: Content of: <refentry><refsect1><para> #: apt-get.8.xml:535 @@ -1100,11 +1679,13 @@ msgid "" "<command>apt-get</command> returns zero on normal operation, decimal 100 on " "error." msgstr "" +"<command>apt-get</command> restituisce zero in caso di funzionamento normale " +"e il valore decimale 100 in caso di errore." #. type: Content of: <refentry><refnamediv><refpurpose> #: apt-cache.8.xml:33 msgid "query the APT cache" -msgstr "" +msgstr "interroga la cache di APT" #. type: Content of: <refentry><refsect1><para> #: apt-cache.8.xml:39 @@ -1114,6 +1695,10 @@ msgid "" "the system but does provide operations to search and generate interesting " "output from the package metadata." msgstr "" +"<command>apt-cache</command> esegue una varietà di operazioni sulla cache " +"dei pacchetti di APT. <command>apt-cache</command> non manipola lo stato del " +"sistema ma fornisce operazioni per fare ricerche e generare risultati " +"interessanti partendo dai metadati dei pacchetti." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cache.8.xml:49 @@ -1121,13 +1706,16 @@ msgid "" "<literal>gencaches</literal> creates APT's package cache. This is done " "implicitly by all commands needing this cache if it is missing or outdated." msgstr "" +"<literal>gencaches</literal> crea la cache dei pacchetti di APT. Ciò viene " +"fatto implicitamente da tutti i comandi che hanno bisogno di tale cache, se " +"essa manca o non è aggiornata." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term><option><replaceable> #: apt-cache.8.xml:53 apt-cache.8.xml:142 apt-cache.8.xml:163 #: apt-cache.8.xml:185 apt-cache.8.xml:190 apt-cache.8.xml:206 #: apt-cache.8.xml:224 apt-cache.8.xml:236 msgid "&synopsis-pkg;" -msgstr "" +msgstr "&synopsis-pkg;" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cache.8.xml:54 @@ -1142,6 +1730,15 @@ msgid "" "dependencies need not be. For instance, <command>apt-cache showpkg " "libreadline2</command> would produce output similar to the following:" msgstr "" +"<literal>showpkg</literal> mostra informazioni sui pacchetti elencati nella " +"riga di comando. I restanti argomenti sono nomi di pacchetto. Sono elencate " +"le versioni disponibili e le dipendenze inverse di ogni pacchetto, oltre " +"alle dipendenze dirette per ogni versione. Le dipendenze dirette (normali) " +"sono quei pacchetti da cui dipende il pacchetto in questione; le dipendenze " +"inverse sono quei pacchetti che dipendono dal pacchetto in questione. " +"Quindi, per un pacchetto, devono essere soddisfatte le dipendenze dirette, " +"ma non necessariamente quelle inverse. Per esempio, <command>apt-cache " +"showpkg libreadline2</command> produce un risultato simile al seguente:" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><informalexample><programlisting> #: apt-cache.8.xml:66 @@ -1158,6 +1755,16 @@ msgid "" "2.1-12 - \n" "Reverse Provides: \n" msgstr "" +"Package: libreadline2\n" +"Versions: 2.1-12(/var/state/apt/lists/pinco_Packages),\n" +"Reverse Depends: \n" +" libreadlineg2,libreadline2\n" +" libreadline2-altdev,libreadline2\n" +"Dependencies:\n" +"2.1-12 - libc5 (2 5.4.0-0) ncurses3.0 (0 (null))\n" +"Provides:\n" +"2.1-12 - \n" +"Reverse Provides: \n" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cache.8.xml:78 @@ -1170,6 +1777,13 @@ msgid "" "installed. For the specific meaning of the remainder of the output it is " "best to consult the apt source code." msgstr "" +"Quindi si vede che libreadline2, versione 2.1-12, dipende da libc5 e " +"ncurses3.0 che devono essere installati affinché libreadline2 funzioni. A " +"loro volta, libreadlineg2 e libreadline2-altdev dipendono da libreadline2. " +"Se libreadline2 è installato, devono esserlo anche libc5 e ncurses3.0 (e " +"ldso); non necessariamente devono esserlo libreadlineg2 e " +"libreadline2-altdev. Per il significato specifico del resto dell'output è " +"meglio consultare il codice sorgente di apt." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cache.8.xml:87 @@ -1177,6 +1791,8 @@ msgid "" "<literal>stats</literal> displays some statistics about the cache. No " "further arguments are expected. Statistics reported are:" msgstr "" +"<literal>stats</literal> mostra alcune statistiche sulla cache. Non sono " +"previsti ulteriori argomenti. Le statistiche riportate sono:" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> #: apt-cache.8.xml:90 @@ -1184,6 +1800,8 @@ msgid "" "<literal>Total package names</literal> is the number of package names found " "in the cache." msgstr "" +"<literal>Totale nomi dei pacchetti</literal> è il numero di nomi di " +"pacchetto trovati nella cache." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> #: apt-cache.8.xml:94 @@ -1193,6 +1811,10 @@ msgid "" "between their names and the names used by other packages for them in " "dependencies. The majority of packages fall into this category." msgstr "" +"<literal>Pacchetti normali</literal> è il numero di nomi di pacchetti " +"regolari, normali; sono pacchetti che hanno una corrispondenza uno-a-uno fra " +"il loro nome e il nome usato da altri pacchetti per indicarli nelle loro " +"dipendenze. La maggioranza dei pacchetti ricade in questa categoria." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> #: apt-cache.8.xml:100 @@ -1204,6 +1826,12 @@ msgid "" "several packages provide \"mail-transport-agent\", but there is no package " "named \"mail-transport-agent\"." msgstr "" +"<literal>Pacchetti virtuali puri</literal> è il numero di pacchetti che " +"esistono solo come nome di pacchetto virtuale; vale a dire, i pacchetti " +"«forniscono» solamente il nome del pacchetto virtuale e nessun pacchetto in " +"realtà usa quel nome. Per esempio, «mail-transport-agent» nel sistema Debian " +"è un pacchetto virtuale puro; diversi pacchetti forniscono «mail-transport-" +"agent», ma non c'è alcun pacchetto chiamato «mail-transport-agent»." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> #: apt-cache.8.xml:108 @@ -1213,6 +1841,10 @@ msgid "" "Debian system, \"X11-text-viewer\" is a virtual package, but only one " "package, xless, provides \"X11-text-viewer\"." msgstr "" +"<literal>Pacchetti virtuali singoli</literal> è il numero di pacchetti " +"virtuali per cui esiste solo un pacchetto che li fornisce. Per esempio, nel " +"sistema Debian «X11-text-viewer» è un pacchetto virtuale, ma solo un " +"pacchetto, xless, fornisce «X11-text-viewer»." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> #: apt-cache.8.xml:114 @@ -1222,6 +1854,10 @@ msgid "" "as the package name. For instance, in the Debian system, \"debconf\" is both " "an actual package, and provided by the debconf-tiny package." msgstr "" +"<literal>Pacchetti virtuali misti</literal> è il numero di pacchetti che " +"forniscono un particolare pacchetto virtuale oppure hanno il nome uguale a " +"quello del pacchetto virtuale. Per esempio, nel sistema Debian «debconf» è " +"sia un pacchetto vero e proprio, sia è fornito dal pacchetto debconf-tiny." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> #: apt-cache.8.xml:121 @@ -1232,6 +1868,12 @@ msgid "" "package (real or virtual) has been dropped from the distribution. Usually " "they are referenced from Conflicts or Breaks statements." msgstr "" +"<literal>Mancanti</literal> è il numero di nomi di pacchetto che vengono " +"menzionati in una dipendenza ma non sono forniti da alcun pacchetto. I " +"pacchetti mancanti possono essere un segno che non si ha accesso a una " +"distribuzione completa o che un pacchetto (reale o virtuale) è stato " +"eliminato da una distribuzione. Di solito vengono menzionati da clausole " +"Conflicts o Breaks." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> #: apt-cache.8.xml:128 @@ -1242,6 +1884,11 @@ msgid "" "instance, \"stable\" and \"unstable\"), this value can be considerably " "larger than the number of total package names." msgstr "" +"<literal>Totale versioni distinte</literal> è il numero di versioni di " +"pacchetti trovate nella cache; questo valore pertanto è almeno pari al " +"numero dei nomi totali di pacchetto. Se si ha accesso a più di una " +"distribuzione (ad esempio sia «stable» che «unstable»), questo valore può " +"essere decisamente più grande del numero dei nomi totali di pacchetto." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> #: apt-cache.8.xml:135 @@ -1249,6 +1896,8 @@ msgid "" "<literal>Total dependencies</literal> is the number of dependency " "relationships claimed by all of the packages in the cache." msgstr "" +"<literal>Totale dipendenze</literal> è il numero di relazioni di dipendenza " +"dichiarate da tutti i pacchetti nella cache." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cache.8.xml:143 @@ -1257,6 +1906,10 @@ msgid "" "match the given package names. All versions are shown, as well as all " "records that declare the name to be a binary package." msgstr "" +"<literal>showsrc</literal> mostra tutti i pacchetti sorgente che " +"corrispondono ai nomi dei pacchetti specificati. Vengono mostrate tutte le " +"versioni, così come tutti i record che dichiarano che il nome è quello di un " +"pacchetto binario." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cache.8.xml:149 @@ -1264,6 +1917,8 @@ msgid "" "<literal>dump</literal> shows a short listing of every package in the cache. " "It is primarily for debugging." msgstr "" +"<literal>dump</literal> mostra un breve elenco di tutti i pacchetti nella " +"cache. Serve soprattutto a scopo di debug." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cache.8.xml:154 @@ -1271,6 +1926,8 @@ msgid "" "<literal>dumpavail</literal> prints out an available list to stdout. This is " "suitable for use with &dpkg; and is used by the &dselect; method." msgstr "" +"<literal>dumpavail</literal> stampa una lista di pacchetti disponibili su " +"stdout. Questa è adatta all'uso con &dpkg; ed è usata dal metodo &dselect;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cache.8.xml:159 @@ -1278,6 +1935,8 @@ msgid "" "<literal>unmet</literal> displays a summary of all unmet dependencies in the " "package cache." msgstr "" +"<literal>unmet</literal> mostra un riassunto di tutte le dipendenze non " +"soddisfatte nella cache dei pacchetti." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cache.8.xml:164 @@ -1285,11 +1944,13 @@ msgid "" "<literal>show</literal> performs a function similar to <command>dpkg --print-" "avail</command>; it displays the package records for the named packages." msgstr "" +"<literal>show</literal> esegue una funzione simile a <command>dpkg --print-" +"avail</command>; mostra i record dei pacchetti per i pacchetti specificati." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term><option><replaceable> #: apt-cache.8.xml:169 msgid "&synopsis-regex;" -msgstr "" +msgstr "&synopsis-regex;" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cache.8.xml:170 @@ -1303,6 +1964,16 @@ msgid "" "package, and if <option>--names-only</option> is given then the long " "description is not searched, only the package name is." msgstr "" +"<literal>search</literal> esegue una ricerca completa a tutto testo in tutti " +"gli elenchi di pacchetti disponibili cercando il modello di espressione " +"regolare POSIX specificato; vedere ®ex;. Cerca le occorrenze " +"dell'espressione regolare nei nomi e nelle descrizioni dei pacchetti e " +"stampa il nome e la descrizione breve dei pacchetti, inclusi quelli " +"virtuali. Se viene fornita l'opzione <option>--full</option>, per ciascun " +"pacchetto che soddisfa la ricerca viene prodotto un output identico a quello " +"di <literal>show</literal>; se viene fornita l'opzione <option>--names-" +"only</option> la ricerca viene fatta solo sul nome del pacchetto e non sulla " +"descrizione lunga." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cache.8.xml:181 @@ -1310,6 +1981,8 @@ msgid "" "Separate arguments can be used to specify multiple search patterns that are " "and'ed together." msgstr "" +"È possibile usare argomenti separati per specificare più modelli di ricerca " +"che vengono combinati con un AND." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cache.8.xml:186 @@ -1317,6 +1990,9 @@ msgid "" "<literal>depends</literal> shows a listing of each dependency a package has " "and all the possible other packages that can fulfill that dependency." msgstr "" +"<literal>depends</literal> mostra un elenco con ogni dipendenza di un " +"pacchetto e tutti i possibili altri pacchetti che possono soddisfare quella " +"dipendenza." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cache.8.xml:191 @@ -1324,11 +2000,13 @@ msgid "" "<literal>rdepends</literal> shows a listing of each reverse dependency a " "package has." msgstr "" +"<literal>rdepends</literal> mostra un elenco di tutte le dipendenze inverse " +"di un pacchetto." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-cache.8.xml:195 msgid "<optional><replaceable>&synopsis-prefix;</replaceable></optional>" -msgstr "" +msgstr "<optional><replaceable>&synopsis-prefix;</replaceable></optional>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cache.8.xml:196 @@ -1339,6 +2017,11 @@ msgid "" "extremely quickly. This command is best used with the <option>--generate</" "option> option." msgstr "" +"Questo comando stampa il nome di tutti i pacchetti che APT conosce. " +"L'argomento opzionale è un prefisso per filtrare l'elenco dei nomi. Il " +"risultato è adatto ad essere usato in una funzione di shell di completamento " +"automatico tramite Tab e viene generato molto rapidamente. Questo comando " +"viene usato al meglio con l'opzione <option>--generate</option>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cache.8.xml:201 @@ -1347,6 +2030,9 @@ msgid "" "download, installable or installed, e.g. virtual packages are also listed in " "the generated list." msgstr "" +"Notare che un pacchetto che APT conosce non è necessariamente disponibile " +"per essere scaricato, installabile o installato; ad esempio, i pacchetti " +"virtuali sono anch'essi compresi nell'elenco generato." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cache.8.xml:207 @@ -1360,6 +2046,15 @@ msgid "" "the packages listed on the command line, set the <literal>APT::Cache::" "GivenOnly</literal> option." msgstr "" +"<literal>dotty</literal> accetta un elenco di pacchetti dalla riga di " +"comando e genera un output adatto all'uso da parte di dotty del pacchetto " +"<ulink " +"url=\"http://www.research.att.com/sw/tools/graphviz/\">GraphViz</ulink>. Il " +"risultato sarà un insieme di nodi e linee che rappresentano le relazioni fra " +"i pacchetti. In modo predefinito dai pacchetti dati si risalirà a tutti i " +"pacchetti delle dipendenze; ciò può produrre un grafo molto grande. Per " +"limitare il risultato ai soli pacchetti elencati sulla riga di comando, " +"impostare l'opzione <literal>APT::Cache::GivenOnly</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cache.8.xml:216 @@ -1369,11 +2064,18 @@ msgid "" "missing packages are hexagons. Orange boxes mean recursion was stopped (leaf " "packages), blue lines are pre-depends, green lines are conflicts." msgstr "" +"I nodi risultanti avranno diverse forme: i pacchetti normali sono " +"rettangoli, i pacchetti virtuali puri sono triangoli, i pacchetti virtuali " +"misti sono rombi, i pacchetti mancanti sono esagoni. I rettangoli arancioni " +"indicano che la ricorsione è stata arrestata (pacchetti foglia), le linee " +"blu sono pre-dipendenze, le linee verdi sono conflitti." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cache.8.xml:221 msgid "Caution, dotty cannot graph larger sets of packages." msgstr "" +"Attenzione: dotty non può creare i grafi degli insiemi più grandi di " +"pacchetti." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cache.8.xml:225 @@ -1381,11 +2083,14 @@ msgid "" "The same as <literal>dotty</literal>, only for xvcg from the <ulink url=" "\"http://rw4.cs.uni-sb.de/users/sander/html/gsvcg1.html\">VCG tool</ulink>." msgstr "" +"Stessa cosa di <literal>dotty</literal>, ma per xvcg dello <ulink " +"url=\"http://rw4.cs.uni-sb.de/users/sander/html/gsvcg1.html\">strumento " +"VCG</ulink>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-cache.8.xml:229 msgid "<optional><replaceable>&synopsis-pkg;</replaceable>…</optional>" -msgstr "" +msgstr "<optional><replaceable>&synopsis-pkg;</replaceable>…</optional>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cache.8.xml:230 @@ -1395,6 +2100,10 @@ msgid "" "source. Otherwise it prints out detailed information about the priority " "selection of the named package." msgstr "" +"<literal>policy</literal> è pensato per aiutare a fare il debug di problemi " +"relativi al file delle preferenze. Senza argomenti stampa le priorità di " +"ciascuna fonte. Altrimenti stampa informazioni dettagliate sulla selezione " +"di priorità del pacchetto indicato." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cache.8.xml:237 @@ -1407,6 +2116,13 @@ msgid "" "architecture for which APT has retrieved package lists (<literal>APT::" "Architecture</literal>)." msgstr "" +"Il comando <literal>madison</literal> di <literal>apt-cache</literal> cerca " +"di imitare il formato di uscita e un sottoinsieme delle funzionalità di " +"<literal>madison</literal>, lo strumento di gestione dell'archivio di " +"Debian. Mostra le versioni disponibili di un pacchetto in forma tabellare. " +"Contrariamente al <literal>madison</literal> originale, può mostrare " +"informazioni solamente per l'architettura per cui APT ha recuperato gli " +"elenchi dei pacchetti (<literal>APT::Architecture</literal>)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cache.8.xml:253 @@ -1415,6 +2131,9 @@ msgid "" "cache used by all operations. Configuration Item: <literal>Dir::Cache::" "pkgcache</literal>." msgstr "" +"Seleziona il file in cui memorizzare la cache dei pacchetti. Questa è la " +"cache primaria usata da tutte le operazioni. Voce di configurazione: " +"<literal>Dir::Cache::pkgcache</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cache.8.xml:259 @@ -1425,6 +2144,12 @@ msgid "" "cache is used to avoid reparsing all of the package files. Configuration " "Item: <literal>Dir::Cache::srcpkgcache</literal>." msgstr "" +"Seleziona il file in cui memorizzare la cache dei sorgenti. Questa è usata " +"solo da <literal>gencaches</literal> e memorizza una versione analizzata " +"delle informazioni sui pacchetti provenienti da fonti remote. Al momento " +"della costruzione della cache dei pacchetti, la cache dei sorgenti viene " +"usata per evitare di rileggere tutti i file dei pacchetti. Voce di " +"configurazione: <literal>Dir::Cache::srcpkgcache</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cache.8.xml:267 @@ -1434,6 +2159,12 @@ msgid "" "<option>-q=#</option> to set the quietness level, overriding the " "configuration file. Configuration Item: <literal>quiet</literal>." msgstr "" +"Silenzioso; produce un output adatto per un file di registro, omettendo gli " +"indicatori di avanzamento. Ulteriori q produrranno un risultato ancor più " +"silenzioso, fino a un massimo di 2. È anche possibile usare " +"<option>-q=n</option> per impostare il livello di silenziosità a n, " +"scavalcando il file di configurazione. Voce di configurazione: " +"<literal>quiet</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cache.8.xml:274 @@ -1442,6 +2173,10 @@ msgid "" "<literal>depends</literal>. Causes only Depends and Pre-Depends relations to " "be printed. Configuration Item: <literal>APT::Cache::Important</literal>." msgstr "" +"Stampa solo le dipendenze importanti; da usarsi con <literal>unmet</literal> " +"e <literal>depends</literal>. Fa sì che vengano stampate solo le relazioni " +"Depends e Pre-Depends. Voce di configurazione: " +"<literal>APT::Cache::Important</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cache.8.xml:288 @@ -1452,6 +2187,11 @@ msgid "" "Show<replaceable>DependencyType</replaceable></literal> e.g. <literal>APT::" "Cache::ShowRecommends</literal>." msgstr "" +"In modo predefinito <literal>depends</literal> e <literal>rdepends</literal> " +"stampano tutte le dipendenze. Ciò può essere modificato con queste opzioni " +"che omettono il tipo specificato di dipendenza. Voce di configurazione <lite" +"ral>APT::Cache::Show<replaceable>TipoDipendenza</replaceable></literal>, ad " +"es. <literal>APT::Cache::ShowRecommends</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cache.8.xml:295 @@ -1459,6 +2199,8 @@ msgid "" "Print full package records when searching. Configuration Item: " "<literal>APT::Cache::ShowFull</literal>." msgstr "" +"Stampa l'intero record dei pacchetti durante la ricerca. Voce di " +"configurazione: <literal>APT::Cache::ShowFull</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cache.8.xml:300 @@ -1470,6 +2212,13 @@ msgid "" "applicable to the <literal>show</literal> command. Configuration Item: " "<literal>APT::Cache::AllVersions</literal>." msgstr "" +"Stampa i record completi per tutte le versioni disponibili. Questa è " +"l'impostazione predefinita; per disattivarla, usare <option>--no-all-" +"versions</option>. Se si specifica <option>--no-all-versions</option>, verrà " +"visualizzata solo la versione candidata (quella che sarebbe scelta per " +"l'installazione). Questa opzione è applicabile solo al comando " +"<literal>show</literal>. Voce di configurazione: " +"<literal>APT::Cache::AllVersions</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cache.8.xml:309 @@ -1478,6 +2227,10 @@ msgid "" "it is. This is the default; to turn it off, use <option>--no-generate</" "option>. Configuration Item: <literal>APT::Cache::Generate</literal>." msgstr "" +"Esegui la rigenerazione automatica della cache dei pachetti, piuttosto che " +"usare la cache così com'è. Questa è l'impostazione predefinita; per " +"disattivarla, usare <option>--no-generate</option>. Voce di configurazione: " +"<literal>APT::Cache::Generate</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cache.8.xml:315 @@ -1485,6 +2238,8 @@ msgid "" "Only search on the package names, not the long descriptions. Configuration " "Item: <literal>APT::Cache::NamesOnly</literal>." msgstr "" +"Cerca soltanto nei nomi dei pacchetti, non nelle descrizioni lunghe. Voce di " +"configurazione: <literal>APT::Cache::NamesOnly</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cache.8.xml:320 @@ -1493,6 +2248,9 @@ msgid "" "and missing dependencies. Configuration Item: <literal>APT::Cache::" "AllNames</literal>." msgstr "" +"Fai sì che <literal>pkgnames</literal> stampi tutti i nomi, inclusi i " +"pacchetti virtuali e le dipendenze mancanti. Voce di configurazione: " +"<literal>APT::Cache::AllNames</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cache.8.xml:326 @@ -1501,6 +2259,9 @@ msgid "" "that all packages mentioned are printed once. Configuration Item: " "<literal>APT::Cache::RecurseDepends</literal>." msgstr "" +"Rendi ricorsivi <literal>depends</literal> e <literal>rdepends</literal> in " +"modo che tutti i pacchetti menzionati siano stampati una sola volta. Voce di " +"configurazione: <literal>APT::Cache::RecurseDepends</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cache.8.xml:333 @@ -1509,11 +2270,14 @@ msgid "" "literal> to packages which are currently installed. Configuration Item: " "<literal>APT::Cache::Installed</literal>." msgstr "" +"Limita l'output di <literal>depends</literal> e <literal>rdepends</literal> " +"ai pacchetti attualmente installati. Voce di configurazione: " +"<literal>APT::Cache::Installed</literal>." #. type: Content of: <refentry><refsect1><para> #: apt-cache.8.xml:351 msgid "&apt-conf;, &sources-list;, &apt-get;" -msgstr "" +msgstr "&apt-conf;, &sources-list;, &apt-get;" #. type: Content of: <refentry><refsect1><para> #: apt-cache.8.xml:356 @@ -1521,11 +2285,13 @@ msgid "" "<command>apt-cache</command> returns zero on normal operation, decimal 100 " "on error." msgstr "" +"<command>apt-cache</command> restituisce zero in caso di funzionamento " +"normale e il valore decimale 100 in caso di errore." #. type: Content of: <refentry><refnamediv><refpurpose> #: apt-key.8.xml:32 msgid "APT key management utility" -msgstr "" +msgstr "strumento APT per la gestione delle chiavi" #. type: Content of: <refentry><refsect1><para> #: apt-key.8.xml:39 @@ -1534,11 +2300,14 @@ msgid "" "authenticate packages. Packages which have been authenticated using these " "keys will be considered trusted." msgstr "" +"<command>apt-key</command> viene usato per gestire l'elenco delle chiavi " +"usate da apt per autenticare i pacchetti. I pacchetti che sono stati " +"autenticati usando queste chiavi verranno considerati fidati." #. type: Content of: <refentry><refsect1><title> #: apt-key.8.xml:45 msgid "Commands" -msgstr "" +msgstr "Comandi" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-key.8.xml:50 @@ -1547,31 +2316,34 @@ msgid "" "filename given with the parameter &synopsis-param-filename; or if the " "filename is <literal>-</literal> from standard input." msgstr "" +"Aggiunge una nuova chiave all'elenco delle chiavi fidate. La chiave viene " +"letta dal file specificato con il parametro &synopsis-param-filename; o, se " +"il nome file è <literal>-</literal>, dallo standard input." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-key.8.xml:63 msgid "Remove a key from the list of trusted keys." -msgstr "" +msgstr "Rimuove una chiave dall'elenco delle chiavi fidate." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-key.8.xml:74 msgid "Output the key &synopsis-param-keyid; to standard output." -msgstr "" +msgstr "Visualizza sullo standard output l'&synopsis-param-keyid; della chiave." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-key.8.xml:85 msgid "Output all trusted keys to standard output." -msgstr "" +msgstr "Visualizza sullo standard output tutte le chiavi fidate." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-key.8.xml:96 msgid "List trusted keys." -msgstr "" +msgstr "Elenca le chiavi fidate." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-key.8.xml:107 msgid "List fingerprints of trusted keys." -msgstr "" +msgstr "Elenca le impronte digitali delle chiavi fidate." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-key.8.xml:118 @@ -1579,6 +2351,8 @@ msgid "" "Pass advanced options to gpg. With adv --recv-key you can download the " "public key." msgstr "" +"Passa opzioni avanzate a gpg. Con adv --recv-key è possibile scaricare la " +"chiave pubblica." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-key.8.xml:130 @@ -1589,6 +2363,11 @@ msgid "" "distribution, e.g. the <literal>debian-archive-keyring</literal> package in " "Debian." msgstr "" +"Aggiorna il portachiavi locale con il portachiavi dell'archivio e rimuove " +"dal portachiavi locale le chiavi di archivio che non sono più valide. Il " +"portachiavi degli archivi è fornito nel pacchetto <literal>archive-" +"keyring</literal> delle diverse distribuzioni, ad esempio il pacchetto " +"<literal>debian-archive-keyring</literal> in Debian." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-key.8.xml:144 @@ -1600,11 +2379,18 @@ msgid "" "APT in Debian does not support this command, relying on <command>update</" "command> instead, but Ubuntu's APT does." msgstr "" +"Effettua un aggiornamento funzionando in modo simile al comando " +"<command>update</command> descritto prima, ma ottiene invece il portachiavi " +"degli archivi da un URI e lo convalida usando una chiave master. Ciò " +"richiede che &wget; sia installato, e una versione di APT configurata per " +"avere un server da cui scaricare e un portachiavi master per la convalida. " +"APT in Debian non supporta questo comando, ma fa affidamento sul comando " +"<command>update</command>; APT in Ubuntu invece lo fa." #. type: Content of: <refentry><refsect1><title> #: apt-key.8.xml:160 apt-cdrom.8.xml:80 msgid "Options" -msgstr "" +msgstr "Opzioni" #. type: Content of: <refentry><refsect1><para> #: apt-key.8.xml:161 @@ -1612,6 +2398,8 @@ msgid "" "Note that options need to be defined before the commands described in the " "previous section." msgstr "" +"Notare che le opzioni devono essere definite prima dei comandi descritti " +"nella sezione precedente." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-key.8.xml:164 @@ -1623,47 +2411,54 @@ msgid "" "filename> is the primary keyring which means that e.g. new keys are added to " "this one." msgstr "" +"Con questa opzione è possibile specificare un particolare file portachiavi " +"su cui deve operare il comando. Il comportamento predefinito esegue i " +"comandi sul file <filename>trusted.gpg</filename>, così come su tutte le " +"parti nella directory <filename>trusted.gpg.d</filename>; " +"<filename>trusted.gpg</filename> è però il portachiavi primario il che " +"significa, ad esempio, che le nuove chiavi sono aggiunte ad esso." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-key.8.xml:179 msgid "<filename>/etc/apt/trustdb.gpg</filename>" -msgstr "" +msgstr "<filename>/etc/apt/trustdb.gpg</filename>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-key.8.xml:180 msgid "Local trust database of archive keys." -msgstr "" +msgstr "Database locale di fiducia delle chiavi archiviate." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-key.8.xml:183 msgid "<filename>/usr/share/keyrings/debian-archive-keyring.gpg</filename>" -msgstr "" +msgstr "<filename>/usr/share/keyrings/debian-archive-keyring.gpg</filename>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-key.8.xml:184 msgid "Keyring of Debian archive trusted keys." -msgstr "" +msgstr "Portachiavi delle chiavi fidate degli archivi Debian." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-key.8.xml:187 msgid "" "<filename>/usr/share/keyrings/debian-archive-removed-keys.gpg</filename>" msgstr "" +"<filename>/usr/share/keyrings/debian-archive-removed-keys.gpg</filename>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-key.8.xml:188 msgid "Keyring of Debian archive removed trusted keys." -msgstr "" +msgstr "Portachiavi delle chiavi fidate rimosse degli archivi Debian." #. type: Content of: <refentry><refsect1><para> #: apt-key.8.xml:197 msgid "&apt-get;, &apt-secure;" -msgstr "" +msgstr "&apt-get;, &apt-secure;" #. type: Content of: <refentry><refnamediv><refpurpose> #: apt-mark.8.xml:33 msgid "mark/unmark a package as being automatically-installed" -msgstr "" +msgstr "mette/toglie il contrassegno di automaticamente installato ai pacchetti" #. type: Content of: <refentry><refsect1><para> #: apt-mark.8.xml:39 @@ -1671,6 +2466,8 @@ msgid "" "<command>apt-mark</command> will change whether a package has been marked as " "being automatically installed." msgstr "" +"<command>apt-mark</command> cambia il contrassegno di un pacchetto che " +"indica se è stato installato automaticamente." #. type: Content of: <refentry><refsect1><para> #: apt-mark.8.xml:43 @@ -1681,6 +2478,12 @@ msgid "" "are no longer depended on by any manually installed packages, they will be " "removed by e.g. <command>apt-get</command> or <command>aptitude</command>." msgstr "" +"Quando viene richiesta l'installazione di un pacchetto e ciò fa sì che altri " +"pacchetti vengano installati per soddisfare le sue dipendenze, queste " +"ultime sono contrassegnate come installate automaticamente. Una volta che " +"non c'è più alcun pacchetto installato manualmente che dipende da questi " +"pacchetti installati automaticamente, essi vengono rimossi, ad esempio da " +"<command>apt-get</command> o <command>aptitude</command>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-mark.8.xml:52 @@ -1689,6 +2492,10 @@ msgid "" "installed, which will cause the package to be removed when no more manually " "installed packages depend on this package." msgstr "" +"<literal>auto</literal> viene usato per contrassegnare un pacchetto come " +"installato automaticamente, il che fa sì che il pacchetto venga rimosso " +"quando non c'è più alcun pacchetto installato manualmente che dipende da " +"esso." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-mark.8.xml:60 @@ -1697,6 +2504,9 @@ msgid "" "installed, which will prevent the package from being automatically removed " "if no other packages depend on it." msgstr "" +"<literal>manual</literal> viene usato per contrassegnare un pacchetto come " +"installato manualmente, il che impedisce che un pacchetto venga rimosso " +"automaticamente se nessun altro dipende da esso." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-mark.8.xml:68 @@ -1707,6 +2517,11 @@ msgid "" "selections</command> and the state is therefore maintained by &dpkg; and not " "affected by the <option>--file</option> option." msgstr "" +"<literal>hold</literal> viene usato per contrassegnare un pacchetto come " +"bloccato, il che impedisce che il pacchetto venga automaticamente " +"installato, aggiornato o rimosso. Il comando è solamente un wrapper per " +"<command>dpkg --set-selections</command> e lo stato è pertanto mantenuto da " +"&dpkg; e non è influenzato dall'opzione <option>--file</option>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-mark.8.xml:78 @@ -1714,6 +2529,8 @@ msgid "" "<literal>unhold</literal> is used to cancel a previously set hold on a " "package to allow all actions again." msgstr "" +"<literal>unhold</literal> viene usato per annullare un blocco impostato in " +"precedenza, per permettere nuovamente tutte le azioni." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-mark.8.xml:84 @@ -1723,6 +2540,11 @@ msgid "" "installed packages will be listed if no package is given. If packages are " "given only those which are automatically installed will be shown." msgstr "" +"<literal>showauto</literal> viene usato per stampare un elenco di pacchetti " +"installati automaticamente, ciascuno su una riga. Se non viene specificato " +"alcun pacchetto, vengono elencati tutti i pacchetti installati " +"automaticamente. Se vengono specificati dei pacchetti, verranno mostrati " +"solo quelli automaticamente installati." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-mark.8.xml:92 @@ -1731,6 +2553,9 @@ msgid "" "<literal>showauto</literal> except that it will print a list of manually " "installed packages instead." msgstr "" +"<literal>showmanual</literal> può essere usato nello stesso modo di " +"<literal>showauto</literal>, tranne per il fatto che stampa invece un elenco " +"dei pacchetti installati manualmente" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-mark.8.xml:99 @@ -1738,6 +2563,8 @@ msgid "" "<literal>showhold</literal> is used to print a list of packages on hold in " "the same way as for the other show commands." msgstr "" +"<literal>showhold</literal> viene usato per stampare un elenco di pacchetti " +"bloccati in modo uguale a ciò che fanno gli altri comandi «show»." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-mark.8.xml:115 @@ -1747,6 +2574,10 @@ msgid "" "<filename>extended_status</filename> in the directory defined by the " "Configuration Item: <literal>Dir::State</literal>." msgstr "" +"Legge/Scrive le statistiche sui pacchetti dal file specificato con il " +"parametro &synopsis-param-filename; invece che dalla posizione predefinita " +"che è <filename>extended_status</filename> nella directory definita dalla " +"voce di configurazione <literal>Dir::State</literal>." #. type: Content of: <refentry><refsect1><para> #: apt-mark.8.xml:136 @@ -1754,11 +2585,13 @@ msgid "" "<command>apt-mark</command> returns zero on normal operation, non-zero on " "error." msgstr "" +"<command>apt-mark</command> restituisce zero in caso di funzionamento " +"normale e un valore diverso da zero in caso di errore." #. type: Content of: <refentry><refnamediv><refpurpose> #: apt-secure.8.xml:47 msgid "Archive authentication support for APT" -msgstr "" +msgstr "supporto per l'autenticazione degli archivi per APT" #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml:52 @@ -1768,6 +2601,10 @@ msgid "" "packages in the archive can't be modified by people who have no access to " "the Release file signing key." msgstr "" +"A partire dalla versione 0.6, <command>apt</command> contiene del codice che " +"controlla le firme dei file Release per tutti gli archivi. Ciò assicura che " +"i pacchetti in quegli archivi 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:60 @@ -1778,6 +2615,12 @@ msgid "" "currently only warn for unsigned archives; future releases might force all " "sources to be verified before downloading packages from them." msgstr "" +"Se un pacchetto proviene da un archivio senza una firma, o con una firma per " +"la quale apt non ha una chiave, tale pacchetto viene considerato non fidato " +"e quando lo si installa si ottiene un importante avvertimento. <command" +">apt-get</command> attualmente avverte solamente in caso di archivi non " +"firmati; le versioni future potrebbero forzare la verifica di tutte le fonti " +"prima di scaricare pacchetti da esse." #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml:69 @@ -1785,11 +2628,13 @@ msgid "" "The package frontends &apt-get;, &aptitude; and &synaptic; support this new " "authentication feature." msgstr "" +"I frontend per i pacchetti &apt-get;, &aptitude; e &synaptic; supportano " +"questa nuova funzionalità di autenticazione." #. type: Content of: <refentry><refsect1><title> #: apt-secure.8.xml:74 msgid "Trusted archives" -msgstr "" +msgstr "Archivi fidati" #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml:77 @@ -1801,6 +2646,13 @@ msgid "" "archive maintainer's responsibility to ensure that the archive's integrity " "is preserved." msgstr "" +"La catena di fiducia da un archivio apt all'utente finale è composta di vari " +"passaggi intermedi. <command>apt-secure</command> è l'ultimo della catena; " +"il fatto che si abbia fiducia in un archivio non significa che si abbia " +"fiducia che i suoi pacchetti non contengano codice malevolo, ma significa " +"che si ha fiducia nel manutentore dell'archivio. È responsabilità del " +"manutentore dell'archivio assicurare che sia preservata l'integrità " +"dell'archivio." #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml:85 @@ -1810,6 +2662,10 @@ msgid "" "<command>debsign</command> (provided in the debsig-verify and devscripts " "packages respectively)." msgstr "" +"apt-secure non controlla le firme a livello di pacchetto. Se si desiderano " +"strumenti per farlo, si possono guardare <command>debsig-verify</command> e " +"<command>debsign</command> (forniti rispettivamente nei pacchetti debsig-" +"verify e devscripts)." #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml:92 @@ -1821,6 +2677,13 @@ msgid "" "keys are signed by other maintainers following pre-established procedures to " "ensure the identity of the key holder." msgstr "" +"La catena di fiducia in Debian ha inizio quando un manutentore carica un " +"nuovo pacchetto o una nuova versione di un pacchetto nell'archivio Debian. " +"Per poter diventare effettivo, questo caricamento deve essere firmato con " +"una chiave contenuta nel portachiavi dei manutentori Debian (disponibile nel " +"pacchetto debian-keyring). Le chiavi dei manutentori sono firmate da altri " +"manutentori seguendo delle procedure prestabilite, per assicurare l'identità " +"del proprietario della chiave." #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml:102 @@ -1834,6 +2697,14 @@ msgid "" "are in the Debian archive keyring available in the <package>debian-archive-" "keyring</package> package." msgstr "" +"Una volta che il pacchetto caricato è verificato e incluso nell'archivio, la " +"firma del manutentore viene rimossa e i codici di controllo del pacchetto " +"vengono calcolati e messi nel file Packages. Vengono quindi calcolati i " +"codici di controllo di tutti i file Packages e vengono messi nel file " +"Release. Il file Release viene poi firmato con la chiave dell'archivio per " +"questo rilascio di Debian e viene distribuito insieme ai pacchetti e ai file " +"Packages nei mirror Debian. Le chiavi sono nel portachiavi degli archivi " +"Debian, disponibile nel pacchetto <package>debian-archive-keyring</package>." #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml:113 @@ -1842,6 +2713,10 @@ msgid "" "a package from it and compare it with the checksum of the package they " "downloaded by hand - or rely on APT doing this automatically." msgstr "" +"Gli utenti finali possono controllare la firma del file Release, estrarre da " +"esso il codice di controllo di un pacchetto e confrontarlo con il codice di " +"controllo del pacchetto che hanno scaricato a mano, oppure possono " +"affidarsi ad APT che lo fa automaticamente." #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml:118 @@ -1849,6 +2724,8 @@ msgid "" "Notice that this is distinct from checking signatures on a per package " "basis. It is designed to prevent two possible attacks:" msgstr "" +"Notare che questo è diverso dal controllare le firme per ciascun pacchetto. " +"È progettato per prevenire due possibili attacchi:" #. type: Content of: <refentry><refsect1><itemizedlist><listitem><para> #: apt-secure.8.xml:123 @@ -1859,6 +2736,11 @@ msgid "" "network element (router, switch, etc.) or by redirecting traffic to a rogue " "server (through ARP or DNS spoofing attacks)." msgstr "" +"<literal>Attacchi di rete «man in the middle»</literal>. Senza il controllo " +"delle firme, soggetti malevoli possono introdursi nel processo di " +"scaricamento dei pacchetti e fornire software pericoloso controllando un " +"elemento di rete (router, switch, ecc.) oppure ridirigendo il traffico ad un " +"server cattivo (attraverso attacchi di falsificazione di DNS e ARP)." #. type: Content of: <refentry><refsect1><itemizedlist><listitem><para> #: apt-secure.8.xml:131 @@ -1868,6 +2750,10 @@ msgid "" "propagate malicious software to all users downloading packages from that " "host." msgstr "" +"<literal>Compromissione della rete dei mirror</literal>. Senza il controllo " +"delle firme, soggetti malevoli possono compromettere un host mirror e " +"modificare i file su di esso per propagare il software pericoloso a tutti " +"gli utenti che scaricano i pacchetti da quell'host." #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml:138 @@ -1877,11 +2763,15 @@ msgid "" "sign the Release files. In any case, this mechanism can complement a per-" "package signature." msgstr "" +"Tuttavia non difende dalle compromissioni del server principale Debian " +"stesso (che firma i pacchetti) o dalla compromissione della chiave usata per " +"firmare i 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:144 msgid "User configuration" -msgstr "" +msgstr "Configurazione utente" #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml:146 @@ -1891,6 +2781,11 @@ msgid "" "this release will automatically contain the default Debian archive signing " "keys used in the Debian package repositories." msgstr "" +"<command>apt-key</command> è il programma che gestisce l'elenco delle chiavi " +"usate da apt. Può essere usato per aggiungere o rimuovere chiavi, anche se " +"un'installazione di questo rilascio contiene automaticamente le chiavi " +"predefinite per la firma degli archivi Debian usate nei repository dei " +"pacchetti Debian." #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml:153 @@ -1902,11 +2797,17 @@ msgid "" "filename> or <filename>Release.gpg</filename> files from the archives you " "have configured." msgstr "" +"Per aggiungere una nuova chiave, è necessario prima scaricarla (ci si " +"dovrebbe assicurare di usare un canale di comunicazione fidato quando la si " +"recupera), aggiungerla con <command>apt-key</command> e poi eseguire " +"<command>apt-get update</command>, in modo che apt possa scaricare e " +"verificare i file <filename>InRelease</filename> o " +"<filename>Release.gpg</filename> dagli archivi che sono configurati." #. type: Content of: <refentry><refsect1><title> #: apt-secure.8.xml:162 msgid "Archive configuration" -msgstr "" +msgstr "Configurazione dell'archivio" #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml:164 @@ -1914,6 +2815,8 @@ msgid "" "If you want to provide archive signatures in an archive under your " "maintenance you have to:" msgstr "" +"Se si desiderano fornire firme per un archivio di cui si è il manutentore, " +"si deve:" #. type: Content of: <refentry><refsect1><itemizedlist><listitem><para> #: apt-secure.8.xml:169 @@ -1922,6 +2825,9 @@ msgid "" "already. You can do this by running <command>apt-ftparchive release</" "command> (provided in apt-utils)." msgstr "" +"<emphasis>Creare un file Release di livello più alto</emphasis>, se non " +"esiste già. Lo si può fare eseguendo <command>apt-ftparchive " +"release</command> (fornito in apt-utils)." #. type: Content of: <refentry><refsect1><itemizedlist><listitem><para> #: apt-secure.8.xml:174 @@ -1930,6 +2836,9 @@ msgid "" "clearsign -o InRelease Release</command> and <command>gpg -abs -o Release." "gpg Release</command>." msgstr "" +"<emphasis>Firmarlo</emphasis>. Lo si può fare eseguendo <command>gpg " +"--clearsign -o InRelease Release</command> e <command>gpg -abs -o " +"Release.gpg Release</command>." #. type: Content of: <refentry><refsect1><itemizedlist><listitem><para> #: apt-secure.8.xml:178 @@ -1938,6 +2847,9 @@ msgid "" "know what key they need to import in order to authenticate the files in the " "archive." msgstr "" +"<emphasis>Pubblicare l'impronta digitale della chiave</emphasis>, in questo " +"modo gli utenti sapranno quale chiave devono importare per poter autenticare " +"i file nell'archivio." #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml:185 @@ -1946,6 +2858,9 @@ msgid "" "removed) the archive maintainer has to follow the first two steps outlined " "above." msgstr "" +"Ogni volta che i contenuti dell'archivio cambiano (sono aggiunti o rimossi " +"nuovi pacchetti), il manutentore dell'archivio deve compiere nuovamente i " +"primi due passi descritti sopra." #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml:193 @@ -1953,6 +2868,8 @@ msgid "" "&apt-conf;, &apt-get;, &sources-list;, &apt-key;, &apt-ftparchive;, " "&debsign; &debsig-verify;, &gpg;" msgstr "" +"&apt-conf;, &apt-get;, &sources-list;, &apt-key;, &apt-ftparchive;, " +"&debsign; &debsig-verify;, &gpg;" #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml:197 @@ -1964,11 +2881,17 @@ msgid "" "cryptnet.net/fdp/crypto/strong_distro.html\" >Strong Distribution HOWTO</" "ulink> by V. Alex Brennen." msgstr "" +"Per maggiori informazioni sui concetti alla base di questo sistema, si può " +"leggere il capitolo <ulink url=\"http://www.debian.org/doc/manuals/securing-" +"debian-howto/ch7\">Debian Security Infrastructure</ulink> del manuale " +"Securing Debian (disponibile anche nel pacchetto harden-doc) e il <ulink " +"url=\"http://www.cryptnet.net/fdp/crypto/strong_distro.html\" >Strong " +"Distribution HOWTO</ulink> di V. Alex Brennen." #. type: Content of: <refentry><refsect1><title> #: apt-secure.8.xml:210 msgid "Manpage Authors" -msgstr "" +msgstr "Autori della pagina di manuale" #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml:212 @@ -1976,11 +2899,13 @@ msgid "" "This man-page is based on the work of Javier Fernández-Sanguino Peña, Isaac " "Jones, Colin Walters, Florian Weimer and Michael Vogt." msgstr "" +"Questa pagina di manuale è basata sul lavoro di Javier Fernández-Sanguino " +"Peña, Isaac Jones, Colin Walters, Florian Weimer e Michael Vogt." #. type: Content of: <refentry><refnamediv><refpurpose> #: apt-cdrom.8.xml:32 msgid "APT CD-ROM management utility" -msgstr "" +msgstr "strumento APT per la gestione dei CD-ROM" #. type: Content of: <refentry><refsect1><para> #: apt-cdrom.8.xml:38 @@ -1990,6 +2915,10 @@ msgid "" "the structure of the disc as well as correcting for several possible mis-" "burns and verifying the index files." msgstr "" +"<command>apt-cdrom</command> è usato per aggiungere un nuovo CD-ROM alla " +"lista delle fonti disponibili per APT. <command>apt-cdrom</command> si " +"prende cura di determinare la struttura del disco e anche di correggere " +"possibili errori di masterizzazione e di verificare i file indice." #. type: Content of: <refentry><refsect1><para> #: apt-cdrom.8.xml:45 @@ -1998,6 +2927,10 @@ msgid "" "system; it cannot be done by hand. Furthermore each disc in a multi-CD set " "must be inserted and scanned separately to account for possible mis-burns." msgstr "" +"Per aggiungere dei CD al sistema APT è necessario usare <command>apt-" +"cdrom</command>, in quanto ciò non può essere fatto manualmente. Inoltre " +"ogni disco in un insieme di più CD deve essere inserito e scansionato " +"separatamente per tenere conto di possibili errori di masterizzazione." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cdrom.8.xml:56 @@ -2008,6 +2941,11 @@ msgid "" "<filename>.disk</filename> directory you will be prompted for a descriptive " "title." msgstr "" +"<literal>add</literal> è usato per aggiungere un nuovo disco alla lista " +"delle fonti. Smonterà il device del CD-ROM, chiederà di inserire un disco e " +"poi procederà alla sua scansione e copierà i file indice. Se il disco non ha " +"una directory <filename>.disk/</filename> corretta, verrà chiesto un titolo " +"descrittivo." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cdrom.8.xml:64 @@ -2016,6 +2954,9 @@ msgid "" "maintains a database of these IDs in <filename>&statedir;/cdroms.list</" "filename>" msgstr "" +"APT usa un identificativo per i CD-ROM per tenere traccia di quale disco è " +"attualmente nel lettore e mantiene un database di questi identificativi nel " +"file <filename>&statedir;/cdroms.list</filename>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cdrom.8.xml:72 @@ -2023,6 +2964,8 @@ msgid "" "A debugging tool to report the identity of the current disc as well as the " "stored file name" msgstr "" +"Uno strumento di debug per riportare l'identità del disco corrente così come " +"il nome dei file memorizzato." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cdrom.8.xml:85 @@ -2031,6 +2974,10 @@ msgid "" "be listed in <filename>/etc/fstab</filename> and properly configured. " "Configuration Item: <literal>Acquire::cdrom::mount</literal>." msgstr "" +"Punto di mount; specifica la posizione in cui montare il CD-ROM. Questo " +"punto di mount deve essere elencato nel file <filename>/etc/fstab</filename> " +"e configurato correttamente. Voce di configurazione: " +"<literal>Acquire::cdrom::mount</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cdrom.8.xml:94 @@ -2039,6 +2986,10 @@ msgid "" "label. This option will cause <command>apt-cdrom</command> to prompt for a " "new label. Configuration Item: <literal>APT::CDROM::Rename</literal>." msgstr "" +"Rinomina un disco; cambia l'etichetta di un disco o soppianta l'etichetta " +"originale del disco. Questa opzione farà sì che <command>apt-cdrom</command> " +"chieda una nuova etichetta. Voce di configurazione: " +"<literal>APT::CDROM::Rename</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cdrom.8.xml:103 @@ -2047,6 +2998,9 @@ msgid "" "unmounting the mount point. Configuration Item: <literal>APT::CDROM::" "NoMount</literal>." msgstr "" +"Non montare; impedisce ad <command>apt-cdrom</command> di montare e smontare " +"il punto di mount. Voce di configurazione: " +"<literal>APT::CDROM::NoMount</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cdrom.8.xml:111 @@ -2056,6 +3010,10 @@ msgid "" "been run on this disc before and did not detect any errors. Configuration " "Item: <literal>APT::CDROM::Fast</literal>." msgstr "" +"Copia rapida; assume che i file dei pacchetti siano validi e non verifica " +"ogni pacchetto. Questa opzione dovrebbe essere usata solo se <command>apt-" +"cdrom</command> è stato già eseguito sul disco e non ha rilevato alcun " +"errore. Voce di configurazione: <literal>APT::CDROM::Fast</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cdrom.8.xml:121 @@ -2064,6 +3022,10 @@ msgid "" "1.1/1.2 discs that have Package files in strange places. It takes much " "longer to scan the CD but will pick them all up." msgstr "" +"Scansione approfondita dei file Package; questa opzione può essere " +"necessaria con alcuni dischi delle vecchie Debian 1.1/1.2 in cui i file " +"Package si trovano in posti inconsueti. La scansione dei CD richiederà molto " +"più tempo, ma troverà tutti i file." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cdrom.8.xml:132 @@ -2072,11 +3034,14 @@ msgid "" "files. Everything is still checked however. Configuration Item: " "<literal>APT::CDROM::NoAct</literal>." msgstr "" +"Nessun cambiamento; non cambia il file &sources-list; e non scrive i file " +"indice. Tuttavia ogni cosa è comunque verificata. Voce di configurazione: " +"<literal>APT::CDROM::NoAct</literal>." #. type: Content of: <refentry><refsect1><para> #: apt-cdrom.8.xml:145 msgid "&apt-conf;, &apt-get;, &sources-list;" -msgstr "" +msgstr "&apt-conf;, &apt-get;, &sources-list;" #. type: Content of: <refentry><refsect1><para> #: apt-cdrom.8.xml:150 @@ -2084,11 +3049,13 @@ msgid "" "<command>apt-cdrom</command> returns zero on normal operation, decimal 100 " "on error." msgstr "" +"<command>apt-cdrom</command> restituisce zero in caso di funzionamento " +"normale e il valore decimale 100 in caso di errore." #. type: Content of: <refentry><refnamediv><refpurpose> #: apt-config.8.xml:33 msgid "APT Configuration Query program" -msgstr "" +msgstr "programma di interrogazione della configurazione di APT" #. type: Content of: <refentry><refsect1><para> #: apt-config.8.xml:39 @@ -2098,6 +3065,10 @@ msgid "" "the main configuration file <filename>/etc/apt/apt.conf</filename> in a " "manner that is easy to use for scripted applications." msgstr "" +"<command>apt-config</command> è un programma interno usato da varie parti " +"della suite APT per fornire una configurabilità coerente. Accede al file " +"principale di configurazione <filename>/etc/apt/apt.conf</filename> in un " +"modo facile da usare da parte di applicazioni che usano script." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-config.8.xml:51 @@ -2108,6 +3079,12 @@ msgid "" "commands for each value present. In a shell script it should be used as " "follows:" msgstr "" +"shell viene usato per accedere alle informazioni di configurazione da parte " +"di uno script di shell. Riceve coppie di argomenti, il primo dei quali è una " +"variabile di shell e il secondo è il valore di configurazione da " +"interrogare. Come risultato elenca il comando shell di assegnazione per " +"ciascun valore presente. In uno script di shell dovrebbe essere usato in " +"modo simile a:" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><informalexample><programlisting> #: apt-config.8.xml:59 @@ -2117,6 +3094,9 @@ msgid "" "RES=`apt-config shell OPTS MyApp::options`\n" "eval $RES\n" msgstr "" +"OPZIONI=\"-f\"\n" +"RES=`apt-config shell OPZIONI MiaApp::opzioni`\n" +"eval $RES\n" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-config.8.xml:64 @@ -2124,6 +3104,9 @@ msgid "" "This will set the shell environment variable $OPTS to the value of MyApp::" "options with a default of <option>-f</option>." msgstr "" +"In questo modo la variabile d'ambiente $OPZIONI della shell verrà impostata " +"al valore di MiaApp::opzioni con un valore predefinito di " +"<option>-f</option>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-config.8.xml:68 @@ -2132,11 +3115,14 @@ msgid "" "names, d returns directories, b returns true or false and i returns an " "integer. Each of the returns is normalized and verified internally." msgstr "" +"La voce di configurazione può essere seguita da /[fdbi]. f restituisce nomi " +"di file, d restituisce directory, b restituisce vero o falso e i restituisce " +"un intero. Ogni valore restituito è normalizzato e verificato internamente." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-config.8.xml:77 msgid "Just show the contents of the configuration space." -msgstr "" +msgstr "Mostra soltanto i contenuti dello spazio di configurazione." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-config.8.xml:90 @@ -2144,11 +3130,13 @@ msgid "" "Include options which have an empty value. This is the default, so use --no-" "empty to remove them from the output." msgstr "" +"Include le opzioni che hanno un valore vuoto. Questo è il comportamento " +"predefinito, perciò usare --no-empty per rimuoverle dall'output." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term><option><replaceable> #: apt-config.8.xml:95 msgid "%f "%v";%n" -msgstr "" +msgstr "%f "%v";%n" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-config.8.xml:96 @@ -2160,12 +3148,20 @@ msgid "" "as defined by RFC822. Additionally %n will be replaced by a newline, " "and %N by a tab. A % can be printed by using %%." msgstr "" +"Definisce l'output per ciascuna opzione di configurazione. %t verrà " +"sostituito dal suo nome, %f dal suo nome gerarchico completo e " +"%v dal suo valore. Usa le lettere maiuscole e i caratteri speciali " +"nel valore verranno codificati per assicurare che possano essere usati senza " +"problemi in una stringa tra virgolette, come definito nella RFC822. In " +"aggiunta %n verrà sostituito da un ritorno a capo e %N da una " +"tabulazione. Un carattere % può essere prodotto usando " +"%%. " #. type: Content of: <refentry><refsect1><para> #: apt-config.8.xml:110 apt-extracttemplates.1.xml:71 apt-sortpkgs.1.xml:64 #: apt-ftparchive.1.xml:608 msgid "&apt-conf;" -msgstr "" +msgstr "&apt-conf;" #. type: Content of: <refentry><refsect1><para> #: apt-config.8.xml:115 @@ -2173,26 +3169,28 @@ msgid "" "<command>apt-config</command> returns zero on normal operation, decimal 100 " "on error." msgstr "" +"<command>apt-config</command> restituisce zero in caso di funzionamento " +"normale e il valore decimale 100 in caso di errore." #. type: Content of: <refentry><refentryinfo><author><contrib> #: apt.conf.5.xml:20 msgid "Initial documentation of Debug::*." -msgstr "" +msgstr "Documentazione iniziale di Debug::*." #. type: Content of: <refentry><refentryinfo><author><email> #: apt.conf.5.xml:21 msgid "dburrows@debian.org" -msgstr "" +msgstr "dburrows@debian.org" #. type: Content of: <refentry><refmeta><manvolnum> #: apt.conf.5.xml:31 apt_preferences.5.xml:25 sources.list.5.xml:26 msgid "5" -msgstr "" +msgstr "5" #. type: Content of: <refentry><refnamediv><refpurpose> #: apt.conf.5.xml:38 msgid "Configuration file for APT" -msgstr "" +msgstr "file di configurazione di APT" #. type: Content of: <refentry><refsect1><para> #: apt.conf.5.xml:42 @@ -2202,6 +3200,11 @@ msgid "" "only place options can be set. The suite also shares a common command line " "parser to provide a uniform environment." msgstr "" +"<filename>/etc/apt/apt.conf</filename> è il file di configurazione " +"principale condiviso da tutti gli strumenti nella suite APT, anche se non è " +"affatto l'unico posto in cui possono essere impostate opzioni. La suite " +"condivide anche un analizzatore comune della riga di comando per fornire un " +"ambiente uniforme." #. type: Content of: <refentry><refsect1><orderedlist><para> #: apt.conf.5.xml:48 @@ -2209,6 +3212,8 @@ msgid "" "When an APT tool starts up it will read the configuration files in the " "following order:" msgstr "" +"Quando uno strumento APT viene avviato, legge i file di configurazione nel " +"seguente ordine:" #. type: Content of: <refentry><refsect1><orderedlist><listitem><para> #: apt.conf.5.xml:50 @@ -2216,6 +3221,8 @@ msgid "" "the file specified by the <envar>APT_CONFIG</envar> environment variable (if " "any)" msgstr "" +"il file specificato dalla variabile d'ambiente <envar>APT_CONFIG</envar> (se " +"presente)" #. type: Content of: <refentry><refsect1><orderedlist><listitem><para> #: apt.conf.5.xml:52 @@ -2228,12 +3235,22 @@ msgid "" "Ignore-Files-Silently</literal> configuration list - in which case it will " "be silently ignored." msgstr "" +"tutti i file in <literal>Dir::Etc::Parts</literal>, in ordine alfanumerico " +"crescente, se il loro nome file non ha estensione o ha " +"«<literal>conf</literal>» come estensione, e contiene solamente caratteri " +"alfanumerici, trattini (-), caratteri di sottolineatura (_) e punti (.). " +"Altrimenti, APT visualizza un messaggio che informa che un file è stato " +"ignorato, a meno che il file non corrisponda ad un modello nell'elenco di " +"configurazione <literal>Dir::Ignore-Files-Silently</literal> nel qual caso " +"verrà ignorato silenziosamente." #. type: Content of: <refentry><refsect1><orderedlist><listitem><para> #: apt.conf.5.xml:59 msgid "" "the main configuration file specified by <literal>Dir::Etc::main</literal>" msgstr "" +"il file di configurazione principale specificato da " +"<literal>Dir::Etc::main</literal>" #. type: Content of: <refentry><refsect1><orderedlist><listitem><para> #: apt.conf.5.xml:61 @@ -2241,11 +3258,13 @@ msgid "" "the command line options are applied to override the configuration " "directives or to load even more configuration files." msgstr "" +"le opzioni nella riga di comando sono applicate per scavalcare le direttive " +"di configurazione o per caricare ulteriori file di configurazione." #. type: Content of: <refentry><refsect1><title> #: apt.conf.5.xml:65 msgid "Syntax" -msgstr "" +msgstr "Sintassi" #. type: Content of: <refentry><refsect1><para> #: apt.conf.5.xml:66 @@ -2256,6 +3275,11 @@ msgid "" "within the APT tool group, for the Get tool. Options do not inherit from " "their parent groups." msgstr "" +"Il file di configurazione ha un'organizzazione ad albero con le opzioni " +"riunite in gruppi funzionali. Un'opzione viene specificata con una notazione " +"a due punti (:); per esempio <literal>APT::Get::Assume-Yes</literal> è " +"un'opzione per lo strumento Get all'interno del gruppo dello strumento APT. " +"Le opzioni non ereditano dai gruppi genitori." #. type: Content of: <refentry><refsect1><para> #: apt.conf.5.xml:72 @@ -2271,6 +3295,16 @@ msgid "" "alphanumeric characters and the characters \"/-:._+\". A new scope can be " "opened with curly braces, like this:" msgstr "" +"Sintatticamente il linguaggio di configurazione è basato sul modello di " +"quello usato dagli strumenti ISC come bind e dhcp. Le righe che iniziano con " +"<literal>//</literal> vengono trattate come commenti (ignorate), così come " +"tutto il testo racchiuso tra <literal>/*</literal> e <literal>*/</literal>, " +"proprio come i commenti C/C++. Ogni riga ha la forma <literal>APT::Get" +"::Assume-Yes \"true\";</literal>. Le virgolette e il punto e virgola finale " +"sono obbligatori. I valori non possono includere barre inverse (\\) o " +"ulteriori virgolette. I nomi delle opzioni sono costituiti da caratteri " +"alfanumerici e dai caratteri «/-:._+». Un nuovo ambito può essere aperto con " +"parentesi graffe come in:" #. type: Content of: <refentry><refsect1><informalexample><programlisting> #: apt.conf.5.xml:85 @@ -2283,6 +3317,12 @@ msgid "" " };\n" "};\n" msgstr "" +"APT {\n" +" Get {\n" +" Assume-Yes \"true\";\n" +" Fix-Broken \"true\";\n" +" };\n" +"};\n" #. type: Content of: <refentry><refsect1><para> #: apt.conf.5.xml:93 @@ -2291,19 +3331,27 @@ msgid "" "opening a scope and including a single string enclosed in quotes followed by " "a semicolon. Multiple entries can be included, separated by a semicolon." msgstr "" +"con le nuove righe posizionate in modo da renderle più leggibili. Si possono " +"creare elenchi aprendo un ambito e includendo una singola stringa racchiusa " +"tra virgolette e seguita da un punto e virgola. Possono essere incluse più " +"voci, separate da un punto e virgola." #. type: Content of: <refentry><refsect1><informalexample><programlisting> #: apt.conf.5.xml:98 #, no-wrap msgid "DPkg::Pre-Install-Pkgs {\"/usr/sbin/dpkg-preconfigure --apt\";};\n" -msgstr "" +msgstr "DPkg::Pre-Install-Pkgs {\"/usr/sbin/dpkg-preconfigure --apt\";};\n" +# apt.conf è un file e &configureindex è un altro: configure-index.gz #. type: Content of: <refentry><refsect1><para> #: apt.conf.5.xml:101 msgid "" "In general the sample configuration file in <filename>&docdir;examples/apt." "conf</filename> &configureindex; is a good guide for how it should look." msgstr "" +"In generale i file di configurazione d'esempio in " +"<filename>&docdir;examples/apt.conf</filename> e &configureindex; sono una " +"buona guida su come debba essere un file di configurazione." #. type: Content of: <refentry><refsect1><para> #: apt.conf.5.xml:105 @@ -2311,6 +3359,9 @@ msgid "" "Case is not significant in names of configuration items, so in the previous " "example you could use <literal>dpkg::pre-install-pkgs</literal>." msgstr "" +"I nomi delle voci di configurazione sono insensibili all'uso di maiuscole e " +"minuscole, perciò nell'esempio precedente si sarebbe potuto usare " +"<literal>dpkg::pre-install-pkgs</literal>." #. type: Content of: <refentry><refsect1><para> #: apt.conf.5.xml:108 @@ -2321,6 +3372,12 @@ msgid "" "list. If you specify a name you can override the option in the same way as " "any other option by reassigning a new value to the option." msgstr "" +"I nomi delle voci di configurazione sono opzionali se viene definito un " +"elenco come si può vedere nell'esempio <literal>DPkg::Pre-Install-" +"Pkgs</literal> precedente. Se non si specifica un nome, una nuova voce " +"aggiunge semplicemente una nuova opzione all'elenco. Se si specifica un " +"nome, si può sovrascrivere l'opzione come per ogni altra, assegnandole un " +"nuovo valore." #. type: Content of: <refentry><refsect1><para> #: apt.conf.5.xml:113 @@ -2333,6 +3390,14 @@ msgid "" "the configuration tree. The specified element and all its descendants are " "erased. (Note that these lines also need to end with a semicolon.)" msgstr "" +"Sono definiti due comandi speciali: <literal>#include</literal> (che è " +"deprecato e non supportato da implementazioni alternative) e " +"<literal>#clear</literal>. <literal>#include</literal> include il file " +"indicato a meno che il suo nome non termini con un carattere «/», nel qual " +"caso viene inclusa l'intera directory. <literal>#clear</literal> viene usato " +"per eliminare una parte dell'albero di configurazione. L'elemento " +"specificato e tutti i suoi discendenti vengono eliminati. (Notare che anche " +"queste righe devono terminare con un punto e virgola.)" #. type: Content of: <refentry><refsect1><para> #: apt.conf.5.xml:123 @@ -2343,6 +3408,12 @@ msgid "" "previously written entries. Options can only be overridden by addressing a " "new value to them - lists and scopes can't be overridden, only cleared." msgstr "" +"Il comando <literal>#clear</literal> è l'unico modo di cancellare un elenco " +"o un intero ambito. Riaprire un ambito (o usare la sintassi descritta più " +"sotto aggiungendo alla fine <literal>::</literal>) <emphasis>non</emphasis> " +"sovrascrive le voci precedentemente scritte. Le opzioni possono essere " +"sovrascritte solamente assegnandovi un nuovo valore; gli elenchi e gli " +"ambiti non possono essere sovrascritti, solo cancellati." #. type: Content of: <refentry><refsect1><para> #: apt.conf.5.xml:131 @@ -2355,6 +3426,14 @@ msgid "" "list. (As you might suspect, the scope syntax can't be used on the command " "line.)" msgstr "" +"Tutti gli strumenti APT accettano un'opzione -o che permette di specificare " +"una direttiva di configurazione arbitraria nella riga di comando. La " +"sintassi è un nome completo di opzione (per esempio <literal>APT::Get" +"::Assume-Yes</literal>) seguito da un segno di uguaglianza e quindi il nuovo " +"valore dell'opzione. Per aggiungere un nuovo elemento ad un elenco, " +"aggiungere <literal>::</literal> alla fine del nome dell'elenco. (Come si " +"può immaginare, la sintassi per gli ambiti non può essere usata nella riga " +"di comando.)" #. type: Content of: <refentry><refsect1><para> #: apt.conf.5.xml:139 @@ -2372,11 +3451,25 @@ msgid "" "this misuse, so please correct such statements now while APT doesn't " "explicitly complain about them." msgstr "" +"Notare che aggiungere voci in coda ad un elenco usando <literal>::</literal> " +"funziona solamente con un elemento per riga, e che non si dovrebbe usarlo " +"insieme alla sintassi per gli ambiti (che aggiunge implicitamente " +"<literal>::</literal>). L'uso di entrambe le sintassi insieme fa apparire un " +"bug che sfortunatamente alcuni utenti utilizzano: un'opzione con l'insolito " +"nome «<literal>::</literal>» che funziona come una qualsiasi altra opzione " +"con nome. Ciò introduce molti problemi; innanzitutto gli utenti che scrivono " +"più righe con questa sintassi <emphasis>sbagliata</emphasis> nella speranza " +"di aggiungere voci ad un elenco ottengono il risultato opposto, dato che " +"viene usata solo l'ultima assegnazione per questa opzione " +"«<literal>::</literal>». Le versioni future di APT causeranno errori e " +"smetteranno di funzionare se incontrano questo uso scorretto, perciò è bene " +"correggere tali dichiarazioni ora, quando APT ancora non si lamenta " +"esplicitamente." #. type: Content of: <refentry><refsect1><title> #: apt.conf.5.xml:154 msgid "The APT Group" -msgstr "" +msgstr "Il gruppo APT" #. type: Content of: <refentry><refsect1><para> #: apt.conf.5.xml:155 @@ -2384,6 +3477,8 @@ msgid "" "This group of options controls general APT behavior as well as holding the " "options for all of the tools." msgstr "" +"Questo gruppo di opzioni controlla il comportamento generale di APT, oltre a " +"contenere le opzioni per tutti gli strumenti." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:160 @@ -2392,6 +3487,9 @@ msgid "" "parsing package lists. The internal default is the architecture apt was " "compiled for." msgstr "" +"Architettura di sistema; imposta l'architettura da usare quando si " +"recuperano i file e si analizzano gli elenchi dei pacchetti. Il valore " +"predefinito interno è l'architettura per la quale apt è stato compilato." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:167 @@ -2405,6 +3503,16 @@ msgid "" "literal>), and foreign architectures are added to the default list when they " "are registered via <command>dpkg --add-architecture</command>." msgstr "" +"Tutte le architetture supportate dal sistema. Ad esempio, le CPU che " +"implementano l'insieme di istruzioni <literal>amd64</literal> (chiamato " +"anche <literal>x86-64</literal>) sono anche in grado di eseguire binari " +"compilati per l'insieme di istruzioni <literal>i386</literal> " +"(<literal>x86</literal>). Questo elenco viene usato quando si recuperano i " +"file e si analizzano gli elenchi dei pacchetti. Il valore iniziale " +"predefinito è sempre l'architettura nativa del sistema " +"(<literal>APT::Architecture</literal>), e le altre architetture vengono " +"aggiunte all'elenco predefinito quando sono registrate con <command>dpkg " +"--add-architecture</command>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:180 @@ -2414,6 +3522,11 @@ msgid "" "'stable', 'testing', 'unstable', '&stable-codename;', '&testing-codename;', " "'4.0', '5.0*'. See also &apt-preferences;." msgstr "" +"Il rilascio predefinito da cui installare i pacchetti se è disponibile più " +"di una versione. Contiene il nome del rilascio, il nome in codice o la " +"versione del rilascio. Esempi: «stable», «testing», «unstable», «&stable-" +"codename;», «&testing-codename;», «4.0», «5.0*». Vedere anche &apt-" +"preferences;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:186 @@ -2421,6 +3534,8 @@ msgid "" "Ignore held packages; this global option causes the problem resolver to " "ignore held packages in its decision making." msgstr "" +"Ignora i pacchetti bloccati; questa opzione globale fa sì che il risolutore " +"di problemi ignori i pacchetti bloccati nel suo processo decisionale." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:191 @@ -2430,6 +3545,11 @@ msgid "" "then packages that are locally installed are also excluded from cleaning - " "but note that APT provides no direct means to reinstall them." msgstr "" +"Attiva in modo predefinito. Quando attiva, la funzionalità autoclean rimuove " +"dalla cache ogni pacchetto che non può più essere scaricato. Se " +"disattivata, allora sono esclusi dalla rimozione anche i pacchetti che sono " +"installati; fare attenzione però al fatto che APT non fornisce alcun mezzo " +"diretto per reinstallarli." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:199 @@ -2445,6 +3565,18 @@ msgid "" "A is unpacked but unconfigured - so any package depending on A is now no " "longer guaranteed to work, as its dependency on A is no longer satisfied." msgstr "" +"Attiva in modo predefinito, il che fa sì che APT installi i pacchetti " +"essenziali e importanti non appena è possibile durante un'installazione o " +"aggiornamento, per limitare l'effetto di una chiamata a &dpkg; che non ha " +"successo. Se questa opzione è disattivata, APT tratta un pacchetto " +"importante nello stesso modo di un pacchetto extra: tra lo spacchettamento " +"del pacchetto A e la sua configurazione possono esserci molte altre chiamate " +"di spacchettamento o configurazione per altri pacchetti non correlati B, C, " +"ecc. Se queste causano il fallimento della chiamata a &dpkg; (ad esempio " +"perché lo script del manutentore di B genera un errore), ciò ha come " +"risultato un sistema in cui il pacchetto A è spacchettato ma non " +"configurato; perciò non è più garantito il funzionamento di ogni pacchetto " +"che dipende da A, dato che la dipendenza da A non è più soddisfatta." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:211 @@ -2462,6 +3594,19 @@ msgid "" "scenario mentioned above is not the only problem it can help to prevent in " "the first place." msgstr "" +"Il contrassegno di configurazione immediata viene applicato anche nel caso " +"potenzialmente problematico di dipendenze circolari, dato che una dipendenza " +"con il contrassegno di immediato è equivalente ad una pre-dipendenza. In " +"teoria ciò permette ad APT di riconoscere una situazione in cui non è in " +"grado di effettuare la configurazione immediata, di terminare annullando e " +"di suggerire all'utente che l'opzione dovrebbe essere temporaneamente " +"disattivata per permettere la continuazione dell'operazione. Notare come sia " +"stata usata l'espressione «in teoria»: in realtà questo problema si è " +"verificato molto di rado, in versioni non stabili di distribuzione, ed è " +"stato causato da dipendenze sbagliate del pacchetto interessato o da un " +"sistema che era già in uno stato erroneo; perciò non si dovrebbe disattivare " +"alla cieca questa opzione, dato che lo scenario descritto sopra non è " +"l'unico problema che può aiutare a prevenire." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:224 @@ -2473,6 +3618,13 @@ msgid "" "buglink below, so they can work on improving or correcting the upgrade " "process." msgstr "" +"Prima di eseguire una grossa operazione come <literal>dist-upgrade</literal> " +"con questa opzione disattivata, si dovrebbe provare a usare esplicitamente " +"<literal>install</literal> sul pacchetto che APT non è stato in grado di " +"configurare immediatamente; assicurarsi però di segnalare il problema alla " +"propria distribuzione e al Team di APT usando il collegamento per i bug " +"indicato in seguito, in modo che possano lavorare a migliorare o correggere " +"il processo di aggiornamento." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:235 @@ -2486,6 +3638,15 @@ msgid "" "<command>dpkg</command>, <command>dash</command> or anything that those " "packages depend on." msgstr "" +"Non attivare mai questa opzione a meno di non sapere " +"<emphasis>veramente</emphasis> ciò che si sta facendo. Permette ad APT di " +"rimuovere temporaneamente un pacchetto essenziale per rompere un ciclo " +"Conflicts/Conflicts o Conflicts/Pre-Depends tra due pacchetti essenziali. " +"<emphasis>Un tale ciclo non dovrebbe mai esistere ed è un bug " +"grave</emphasis>. Questa opzione funziona se i pacchetti essenziali non sono " +"<command>tar</command>, <command>gzip</command>, <command>libc</command>, " +"<command>dpkg</command>, <command>dash</command> o qualsiasi altro da cui " +"dipendono tali pacchetti." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:247 @@ -2506,11 +3667,31 @@ msgid "" "stands for no limit. If <literal>Cache-Grow</literal> is set to 0 the " "automatic growth of the cache is disabled." msgstr "" +"APT, a partire dalla versione 0.7.26, usa un file cache ridimensionabile " +"mappato in memoria per memorizzare le informazioni disponibili. <literal" +">Cache-Start</literal> funziona da indicatore della dimensione che la cache " +"raggiungerà ed è perciò la quantità di memoria che APT richiederà all'avvio. " +"Il valore predefinito è 20971520 byte (~20 MB). Notare che questa quantità " +"di spazio deve essere disponibile per APT, altrimenti probabilmente " +"terminerà con un fallimento in modo molto poco grazioso; perciò per i " +"dispositivi con memoria limitata questo valore dovrebbe essere abbassato, " +"mentre nei sistemi con molte fonti configurate dovrebbe essere aumentato. " +"<literal>Cache-Grow</literal> definisce di quanto verrà aumentata la " +"dimensione della cache in byte, se lo spazio definito da <literal>Cache-" +"Start</literal> non è sufficiente; il valore predefinito è 1048576 (~1 MB). " +"Questo valore verrà applicato più volte, fino a che la cache non è grande " +"abbastanza per memorizzare tutte le informazioni o la dimensione della cache " +"raggiunge il valore <literal>Cache-Limit</literal>. Il valore predefinito " +"di <literal>Cache-Limit</literal> è 0 che indica nessun limite. Se <literal" +">Cache-Grow</literal> viene impostato a 0 la crescita automatica della cache " +"è disabilitata." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:263 msgid "Defines which packages are considered essential build dependencies." msgstr "" +"Definisce quali pacchetti sono considerati dipendenze di compilazione " +"essenziali." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:267 @@ -2518,6 +3699,8 @@ msgid "" "The Get subsection controls the &apt-get; tool; please see its documentation " "for more information about the options here." msgstr "" +"La sottosezione Get controlla lo strumento &apt-get;; vedere la sua " +"documentazione per maggiori informazioni su queste opzioni." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:272 @@ -2525,6 +3708,8 @@ msgid "" "The Cache subsection controls the &apt-cache; tool; please see its " "documentation for more information about the options here." msgstr "" +"La sottosezione Cache controlla lo strumento &apt-cache;; vedere la sua " +"documentazione per maggiori informazioni su queste opzioni." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:277 @@ -2532,11 +3717,13 @@ msgid "" "The CDROM subsection controls the &apt-cdrom; tool; please see its " "documentation for more information about the options here." msgstr "" +"La sottosezione CDROM controlla lo strumento &apt-cdrom;; vedere la sua " +"documentazione per maggiori informazioni su queste opzioni." #. type: Content of: <refentry><refsect1><title> #: apt.conf.5.xml:283 msgid "The Acquire Group" -msgstr "" +msgstr "Il gruppo Acquire" #. type: Content of: <refentry><refsect1><para> #: apt.conf.5.xml:284 @@ -2545,6 +3732,9 @@ msgid "" "packages as well as the various \"acquire methods\" responsible for the " "download itself (see also &sources-list;)." msgstr "" +"Il gruppo di opzioni <literal>Acquire</literal> controlla lo scaricamento " +"dei pacchetti così come i vari «metodi di acquisizione» responsabili per lo " +"scaricamento stesso (vedere anche &sources-list;)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:291 @@ -2558,6 +3748,15 @@ msgid "" "value is desired the <literal>Max-ValidTime</literal> option below can be " "used." msgstr "" +"Opzione relativa alla sicurezza attiva in modo predefinito, poiché dare una " +"data di scadenza alla convalida di un file Release evita attacchi ripetuti " +"nel corso del tempo e può anche, per esempio, aiutare gli utenti a " +"identificare i mirror che non sono più aggiornati, ma la funzionalità " +"dipende dall'esattezza dell'orologio sul sistema dell'utente. I manutentori " +"degli archivi sono incoraggiati a creare file Release con l'intestazione " +"<literal>Valid-Until</literal>, ma se non lo fanno o se si desidera un " +"valore più restrittivo può essere utilizzata l'opzione <literal>Max-" +"ValidTime</literal> seguente." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:304 @@ -2570,6 +3769,14 @@ msgid "" "for \"valid forever\". Archive specific settings can be made by appending " "the label of the archive to the option name." msgstr "" +"Tempo massimo (in secondi) dalla sua creazione (come indicata " +"dall'intestazione <literal>Date</literal>) per il quale il file " +"<filename>Release</filename> deve essere considerato valido. Se il file " +"Release stesso include un'intestazione <literal>Valid-Until</literal>, viene " +"usata come data di scadenza quella più corta. Il valore predefinito è " +"<literal>0</literal> che sta per «valido per sempre». Possono essere fatte " +"impostazioni specifiche per ciascun archivio aggiungendo l'etichetta " +"dell'archivio in fondo al nome dell'opzione." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:316 @@ -2582,6 +3789,15 @@ msgid "" "checking. Archive specific settings can and should be used by appending the " "label of the archive to the option name." msgstr "" +"Tempo minimo (in secondi) dalla sua creazione (come indicata " +"dall'intestazione <literal>Date</literal>) per il quale il file " +"<filename>Release</filename> deve essere considerato valido. Utilizzare " +"questa opzione se si deve usare un mirror (locale), aggiornato raramente, di " +"un archivio aggiornato più spesso che ha un'intestazione <literal>Valid-" +"Until</literal>, invece di disabilitare completamente il controllo della " +"data di scadenza. Possono essere fatte impostazioni specifiche per ciascun " +"archivio aggiungendo l'etichetta dell'archivio in fondo al nome " +"dell'opzione." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:328 @@ -2590,6 +3806,9 @@ msgid "" "<filename>Packages</filename> files) instead of downloading whole ones. True " "by default." msgstr "" +"Cerca di scaricare le differenze chiamate <literal>PDiff</literal> per gli " +"indici (come i file <filename>Packages</filename>), invece di scaricare " +"interamente i nuovi. Attiva in modo predefinito." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:331 @@ -2601,6 +3820,13 @@ msgid "" "patches compared to the size of the targeted file. If one of these limits is " "exceeded the complete file is downloaded instead of the patches." msgstr "" +"Sono disponibili anche due sotto-opzioni per limitare l'uso dei PDiff: " +"<literal>FileLimit</literal> può essere usata per specificare un numero " +"massimo di file PDiff che devono essere scaricati per aggiornare un file. " +"<literal>SizeLimit</literal>, invece, è la percentuale massima della " +"dimensione di tutte le patch in rapporto alla dimensione del file finale " +"considerato. Se uno di questi limiti viene superato, viene scaricato il file " +"completo invece delle patch." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:341 @@ -2611,6 +3837,12 @@ msgid "" "target host will be opened, <literal>access</literal> means that one " "connection per URI type will be opened." msgstr "" +"Modalità di coda; <literal>Queue-Mode</literal> può essere " +"<literal>host</literal> o <literal>access</literal>, che determinano come " +"APT mette in parallelo le connessioni in uscita. <literal>host</literal> " +"significa che viene aperta una connessione per ogni host bersaglio, " +"<literal>access</literal> significa che viene aperta una connessione per " +"ogni tipo di URI." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:349 @@ -2618,6 +3850,9 @@ msgid "" "Number of retries to perform. If this is non-zero APT will retry failed " "files the given number of times." msgstr "" +"Numero di tentativi successivi da effettuare. Se è diverso da zero, APT " +"riproverà per il numero di volte specificato a scaricare i file con cui non " +"ha avuto successo." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:354 @@ -2625,6 +3860,10 @@ msgid "" "Use symlinks for source archives. If set to true then source archives will " "be symlinked when possible instead of copying. True is the default." msgstr "" +"Usa i collegamenti simbolici per gli archivi sorgente. Se impostata a vero, " +"allora per gli archivi sorgente verranno creati, quando possibile, dei " +"collegamenti simbolici invece di fare una copia. Il valore predefinito è " +"vero." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:359 @@ -2637,6 +3876,14 @@ msgid "" "settings is specified, <envar>http_proxy</envar> environment variable will " "be used." msgstr "" +"<literal>http::Proxy</literal> imposta il proxy predefinito da usare per gli " +"URI HTTP. È nella forma standard " +"<literal>http://[[utente][:password]@]host[:porta]/</literal>. Possono anche " +"essere specificati proxy per ciascun host usando la forma " +"<literal>http::Proxy::<host></literal> con la speciale parola chiave " +"<literal>DIRECT</literal> che significa di non usare un proxy. Se non viene " +"specificata alcuna delle impostazioni precedenti, viene usata la variabile " +"d'ambiente <envar>http_proxy</envar>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:367 @@ -2649,6 +3896,14 @@ msgid "" "store the requested archive files in its cache, which can be used to prevent " "the proxy from polluting its cache with (big) .deb files." msgstr "" +"Sono fornite tre impostazioni per il controllo della cache in proxy con " +"cache conformi a HTTP/1.1. <literal>No-Cache</literal> indica al proxy di " +"non usare la sua risposta in cache in nessuna circostanza. <literal>Max-" +"Age</literal> imposta l'età massima consentita (in secondi) di un file " +"indice nella cache del proxy. <literal>No-Store</literal> specifica che il " +"proxy non deve memorizzare i file archivio richiesti nella sua cache, il che " +"può essere usato per evitare che il proxy riempia la propria cache con " +"(grandi) file .deb." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:377 apt.conf.5.xml:449 @@ -2656,6 +3911,9 @@ msgid "" "The option <literal>timeout</literal> sets the timeout timer used by the " "method; this value applies to the connection as well as the data timeout." msgstr "" +"L'opzione <literal>timeout</literal> imposta il tempo di timeout usato dal " +"metodo; questo valore si applica sia al timeout per la connessione sia a " +"quello per i dati." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:380 @@ -2668,6 +3926,14 @@ msgid "" "growing amount of webservers and proxies which choose to not conform to the " "HTTP/1.1 specification." msgstr "" +"L'impostazione <literal>Acquire::http::Pipeline-Depth</literal> può essere " +"usata per abilitare le pipeline HTTP (RFC 2616, sezione 8.1.2.2) che possono " +"essere utili, ad esempio, in connessioni con grande latenza. Specifica " +"quante richieste sono inviate in una pipeline. Le versioni precedenti di APT " +"avevano un valore predefinito di 10 per questa impostazione, ma il valore " +"predefinito è ora 0 (= disabilitata) per evitare problemi con il numero " +"sempre crescente di server web e proxy che scelgono di non essere conformi " +"con la specifica HTTP/1.1." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:387 @@ -2675,6 +3941,8 @@ msgid "" "<literal>Acquire::http::AllowRedirect</literal> controls whether APT will " "follow redirects, which is enabled by default." msgstr "" +"<literal>Acquire::http::AllowRedirect</literal> specifica se APT segue o " +"meno le ridirezioni che sono abilitate in modo predefinito." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:390 @@ -2685,6 +3953,11 @@ msgid "" "that this option implicitly disables downloading from multiple servers at " "the same time.)" msgstr "" +"La quantità di banda utilizzata può essere limitata con " +"<literal>Acquire::http::Dl-Limit</literal> che accetta valori interi in " +"kilobyte. Il valore predefinito è 0 che disattiva il limite e cerca di usare " +"tutta la banda disponibile (notare che questa opzione implicitamente " +"disabilita lo scaricamento da più server contemporaneamente)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:395 @@ -2693,6 +3966,10 @@ msgid "" "User-Agent for the http download method as some proxies allow access for " "clients only if the client uses a known identifier." msgstr "" +"<literal>Acquire::http::User-Agent</literal> può essere usata per impostare " +"un User-Agent diverso per il metodo di scaricamento http, dato che alcuni " +"proxy permettono l'accesso per i client solo se usano un identificativo " +"conosciuto." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:403 @@ -2704,6 +3981,12 @@ msgid "" "are not explicitly set. The <literal>Pipeline-Depth</literal> option is not " "yet supported." msgstr "" +"Le opzioni<literal>Cache-control</literal>, <literal>Timeout</literal>, " +"<literal>AllowRedirect</literal>, <literal>Dl-Limit</literal> e " +"<literal>proxy</literal> funzionano per gli URI HTTPS nello stesso modo che " +"per il metodo <literal>http</literal> e assumono in modo predefinito lo " +"stesso valore, a meno di non essere impostate in modo esplicito. L'opzione " +"<literal>Pipeline-Depth</literal> non è ancora supportata." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:411 @@ -2726,6 +4009,27 @@ msgid "" "'<literal>SSLv3</literal>'. <literal><host>::SslForceVersion</" "literal> is the corresponding per-host option." msgstr "" +"La sotto-opzione <literal>CaInfo</literal> specifica la posizione del file " +"che contiene le informazioni sui certificati fidati; " +"<literal><host>::CaInfo</literal> è la corrispondente opzione " +"specifica per ciascun host. La sotto-opzione booleana <literal>Verify-" +"Peer</literal> determina se il certificato host del server deve o non deve " +"essere verificato usando i certificati fidati; <literal><host>" +";::Verify-Peer</literal> è la corrispondente opzione specifica per ciascun " +"host. La sotto-opzione booleana <literal>Verify-Host</literal> determina se " +"il nome host del server deve o non deve essere verificato; " +"<literal><host>::Verify-Host</literal> è la corrispondente opzione " +"specifica per ciascun host. <literal>SslCert</literal> determina quale " +"certificato usare per l'autenticazione client; " +"<literal><host>::SslCert</literal> è la corrispondente opzione " +"specifica per ciascun host. <literal>SslKey</literal> determina quale chiave " +"privata usare per l'autenticazione client; " +"<literal><host>::SslKey</literal> è la corrispondente opzione " +"specifica per ciascun host. <literal>SslForceVersion</literal> scavalca la " +"versione predefinita SSL da usare e può contenere la stringa " +"«<literal>TLSv1</literal>» o «<literal>SSLv3</literal>»; " +"<literal><host>::SslForceVersion</literal> è la corrispondente opzione " +"specifica per ciascun host." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:432 @@ -2745,6 +4049,22 @@ msgid "" "$(SITE_USER)</literal>, <literal>$(SITE_PASS)</literal>, <literal>$(SITE)</" "literal> and <literal>$(SITE_PORT)</literal>." msgstr "" +"<literal>ftp::Proxy</literal> imposta il proxy predefinito da usare per gli " +"URI FTP. È nella forma standard " +"<literal>ftp://[[utente][:password]@]host[:porta]/</literal>. Si possono " +"anche specificare proxy per ciascun host usando la forma " +"<literal>ftp::Proxy::<host></literal> con la speciale parola chiave " +"<literal>DIRECT</literal> che indica di non usare proxy. Se nessuna delle " +"opzioni precedenti è impostata, viene usata la variabile d'ambiente " +"<envar>ftp_proxy</envar>. Per usare un proxy FTP è necessario impostare lo " +"script <literal>ftp::ProxyLogin</literal> nel file di configurazione. Questa " +"voce specifica i comandi da inviare per dire al server proxy a cosa " +"connettersi. Vedere &configureindex; per un esempio di come utilizzarla. Le " +"variabili di sostituzione che rappresentano i corrispondenti componenti " +"dell'URI sono <literal>$(PROXY_USER)</literal>, " +"<literal>$(PROXY_PASS)</literal>, <literal>$(SITE_USER)</literal>, " +"<literal>$(SITE_PASS)</literal>, <literal>$(SITE)</literal> e " +"<literal>$(SITE_PORT)</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:452 @@ -2755,6 +4075,12 @@ msgid "" "instead. This can be done globally or for connections that go through a " "proxy or for a specific host (see the sample config file for examples)." msgstr "" +"Sono fornite diverse impostazioni per controllare la modalità passiva. " +"Generalmente è sicuro lasciare attiva la modalità passiva; funziona in quasi " +"tutti gli ambienti. Tuttavia in alcune situazioni è necessario disabilitare " +"la modalità passiva e usare invece la modalità per porta FTP. Ciò può " +"essere fatto globalmente o, per connessioni che passano attraverso un proxy, " +"per uno specifico host (vedere il file di configurazione d'esempio)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:459 @@ -2764,6 +4090,11 @@ msgid "" "method above for syntax. You cannot set this in the configuration file and " "it is not recommended to use FTP over HTTP due to its low efficiency." msgstr "" +"È possibile usare FTP attraverso un proxy via HTTP impostando la variabile " +"d'ambiente <envar>ftp_proxy</envar> ad un URL HTTP; per la sintassi vedere " +"la spiegazione del metodo http più sopra. Non è possibile impostare questa " +"opzione nel file di configurazione e l'uso di FTP via HTTP non è raccomando " +"a causa della sua bassa efficienza." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:464 @@ -2774,12 +4105,18 @@ msgid "" "IPv6. Setting this to true forces their use even on IPv4 connections. Note " "that most FTP servers do not support RFC2428." msgstr "" +"L'impostazione <literal>ForceExtended</literal> controlla l'uso dei comandi " +"<literal>EPSV</literal> e <literal>EPRT</literal> della RFC 2428. Il valore " +"predefinito è falso, il che significa che questi comandi sono usati " +"solamente se la connessione di controllo è IPv6. Impostare questo valore a " +"vero forza il loro uso anche su connessioni IPv4. Notare che la maggior " +"parte dei server FTP non supporta la RFC 2428." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><literallayout> #: apt.conf.5.xml:478 #, no-wrap msgid "/cdrom/::Mount \"foo\";" -msgstr "" +msgstr "/cdrom/::Mount \"pippo\";" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:473 @@ -2793,6 +4130,15 @@ msgid "" "<literal>cdrom</literal> block. It is important to have the trailing slash. " "Unmount commands can be specified using UMount." msgstr "" +"Per URI che usano il metodo <literal>cdrom</literal>, l'unica opzione " +"configurabile è il punto di mount, <literal>cdrom::Mount</literal>, che deve " +"essere il punto di mount dell'unità CD-ROM (o DVD o quello che è), come " +"specificato in <filename>/etc/fstab</filename>. È possibile fornire comandi " +"alternativi per il montaggio e lo smontaggio se il proprio punto di mount " +"non può essere elencato in fstab. La sintassi prevede di mettere " +"<placeholder type=\"literallayout\" id=\"0\"/> all'interno del blocco " +"<literal>cdrom</literal>. È importante che sia presente la barra in fondo. I " +"comandi per lo smontaggio possono essere specificati usando UMount." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:486 @@ -2800,12 +4146,16 @@ msgid "" "For GPGV URIs the only configurable option is <literal>gpgv::Options</" "literal>, which passes additional parameters to gpgv." msgstr "" +"Per gli URI GPGV l'unica opzione configurabile è " +"<literal>gpgv::Options</literal>, che passa parametri aggiuntivi a gpgv." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><synopsis> #: apt.conf.5.xml:497 #, no-wrap msgid "Acquire::CompressionTypes::<replaceable>FileExtension</replaceable> \"<replaceable>Methodname</replaceable>\";" msgstr "" +"Acquire::CompressionTypes::<replaceable>EstensioneFile</replaceable> " +"\"<replaceable>NomeMetodo</replaceable>\";" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:492 @@ -2818,18 +4168,25 @@ msgid "" "the fly or the used method can be changed. The syntax for this is: " "<placeholder type=\"synopsis\" id=\"0\"/>" msgstr "" +"Elenco di tipi di compressione che sono capiti dai metodi di acquisizione. I " +"file come <filename>Packages</filename> possono essere disponibili in vari " +"formati di compressione. In modo predefinito i metodi di acquisizione " +"possono decomprimere file compressi con <command>bzip2</command>, " +"<command>lzma</command> e <command>gzip</command>; con questa impostazione " +"si possono aggiungere altri formati al volo oppure può essere cambiato il " +"metodo usato. La sintassi è: <placeholder type=\"synopsis\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><synopsis> #: apt.conf.5.xml:502 #, no-wrap msgid "Acquire::CompressionTypes::Order:: \"gz\";" -msgstr "" +msgstr "Acquire::CompressionTypes::Order:: \"gz\";" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><synopsis> #: apt.conf.5.xml:505 #, no-wrap msgid "Acquire::CompressionTypes::Order { \"lzma\"; \"gz\"; };" -msgstr "" +msgstr "Acquire::CompressionTypes::Order { \"lzma\"; \"gz\"; };" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:498 @@ -2848,12 +4205,26 @@ msgid "" "<literal>bz2</literal> to the list explicitly as it will be added " "automatically." msgstr "" +"Inoltre si può usare il sottogruppo <literal>Order</literal> per definire in " +"quale ordine il sistema di acquisizione cerca di scaricare i file " +"compressi. Il sistema tenta con il primo tipo di compressione e in caso di " +"errore passa al successivo nell'elenco perciò, per preferire un tipo " +"rispetto ad un altro, basta mettere il tipo preferito per primo; i tipi " +"predefiniti che non sono già presenti vengono aggiunti in modo implicito " +"alla fine dell'elenco, perciò si può usare, ad esempio, <placeholder " +"type=\"synopsis\" id=\"0\"/> per preferire i file compressi con " +"<command>gzip</command> a <command>bzip2</command> e " +"<command>lzma</command>. Se si volesse preferire <command>lzma</command> " +"rispetto a <command>gzip</command> e <command>bzip2</command>, " +"l'impostazione di configurazione sarebbe: <placeholder type=\"synopsis\" " +"id=\"1\"/> Non è necessario aggiungere esplicitamente <literal>bz2</literal> " +"all'elenco, dato che verrà aggiunto automaticamente." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><literallayout> #: apt.conf.5.xml:512 #, no-wrap msgid "Dir::Bin::bzip2 \"/bin/bzip2\";" -msgstr "" +msgstr "Dir::Bin::bzip2 \"/bin/bzip2\";" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:507 @@ -2869,6 +4240,18 @@ msgid "" "list style. This will not override the defined list; it will only prefix " "the list with this type." msgstr "" +"Notare che " +"<literal>Dir::Bin::<replaceable>NomeMetodo</replaceable></literal> viene " +"controllata al momento dell'esecuzione. Se questa opzione è stata impostata, " +"il metodo verrà usato solo se questo file è esistente; ad esempio, per il " +"metodo <literal>bzip2</literal> l'impostazione (interna) è: <placeholder " +"type=\"literallayout\" id=\"0\"/> Notare anche che le voci nell'elenco " +"specificate nella riga di comando vengono aggiunte alla fine dell'elenco " +"specificato nei file di configurazione, ma prima delle voci predefinite. In " +"questo caso, per preferire un tipo rispetto a quelli specificati nei file di " +"configurazione si può impostare l'opzione direttamente, non nello stile per " +"elenco. Ciò non sovrascrive l'elenco definito; aggiunge solamente il tipo " +"indicato all'inizio dell'elenco." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:517 @@ -2877,6 +4260,10 @@ msgid "" "uncompressed files a preference, but note that most archives don't provide " "uncompressed files so this is mostly only useable for local mirrors." msgstr "" +"Il tipo speciale <literal>uncompressed</literal> può essere usato per dare " +"la precedenza ai file non compressi, ma è bene notare che la maggior parte " +"degli archivi non fornisce file non compressi, perciò questo è utilizzabile " +"soprattutto per i mirror locali." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:524 @@ -2886,6 +4273,11 @@ msgid "" "unpacking them. This saves quite a lot of disk space at the expense of more " "CPU requirements when building the local package caches. False by default." msgstr "" +"Quando si scaricano indici compressi con <literal>gzip</literal> (Packages, " +"Sources o Translations), li mantiene localmente compressi con gzip invece di " +"spacchettarli. Questo fa risparmiare parecchio spazio su disco a spese di " +"un maggiore uso della CPU quando si creano le cache locali dei pacchetti. In " +"modo predefinito è disabilitato." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:532 @@ -2898,12 +4290,19 @@ msgid "" "<filename>Translation</filename> files for every language - the long " "language codes are especially rare." msgstr "" +"La sottosezione Languages controlla quali file " +"<filename>Translation</filename> sono scaricati e in quale ordine APT cerca " +"di visualizzare le traduzioni delle descrizioni. APT cerca di visualizzare " +"la prima descrizione disponibile nella lingua elencata per prima. Le lingue " +"possono essere definite con i loro codici brevi o lunghi. Notare che non " +"tutti gli archivi forniscono i file <filename>Translation</filename> per " +"tutte le lingue; i codici di lingua lunghi sono particolarmente rari." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><programlisting> #: apt.conf.5.xml:549 #, no-wrap msgid "Acquire::Languages { \"environment\"; \"de\"; \"en\"; \"none\"; \"fr\"; };" -msgstr "" +msgstr "Acquire::Languages { \"environment\"; \"it\"; \"en\"; \"none\"; \"fr\"; };" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:537 @@ -2926,6 +4325,23 @@ msgid "" "locale (where the order would be \"fr, de, en\"). <placeholder type=" "\"programlisting\" id=\"0\"/>" msgstr "" +"L'elenco predefinito include «environment» ed «en». " +"«<literal>environment</literal>» ha un significato speciale in questo " +"contesto: viene sostituito al momento dell'esecuzione dai codici di lingua " +"estratti dalla variabile d'ambiente <literal>LC_MESSAGES</literal>. Assicura " +"anche che questi codici non vengano inclusi due volte nell'elenco. Se " +"<literal>LC_MESSAGES</literal> è impostata a «C», viene usato solamente il " +"file <filename>Translation-en</filename> (se disponibile). Per forzare APT a " +"non usare alcun file Translation, usare l'impostazione " +"<literal>Acquire::Languages=none</literal>. \"<literal>none</literal>\" è un " +"altro codice con significato speciale che interrompe la ricerca di un file " +"<filename>Translation</filename> adatto. Questo dice ad APT di scaricare " +"anche queste traduzioni, senza usarle realmente a meno che l'ambiente non " +"specifichi le lingue. Perciò il seguente esempio di configurazione avrà come " +"risultato l'ordine «en, it» in una localizzazione inglese o «it, en» in una " +"italiana. Notare che «fr» viene scaricato, ma non usato, a meno che APT non " +"venga usato in una localizzazione francese (dove l'ordine sarebbe «fr, it, " +"en»). <placeholder type=\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:550 @@ -2935,11 +4351,16 @@ msgid "" "files which are found in <filename>/var/lib/apt/lists/</filename> will be " "added to the end of the list (after an implicit \"<literal>none</literal>\")." msgstr "" +"Notare che per prevenire problemi risultanti dall'uso di APT in ambienti " +"differenti (ad esempio da parte di utenti o programmi diversi), tutti i file " +"Translation che si trovano in <filename>/var/lib/apt/lists/</filename> " +"vengono aggiunti alla fine dell'elenco (dopo un \"<literal>none</literal>\" " +"implicito)." #. type: Content of: <refentry><refsect1><title> #: apt.conf.5.xml:560 msgid "Directories" -msgstr "" +msgstr "Directory" #. type: Content of: <refentry><refsect1><para> #: apt.conf.5.xml:562 @@ -2952,6 +4373,14 @@ msgid "" "contains the default directory to prefix on all sub-items if they do not " "start with <filename>/</filename> or <filename>./</filename>." msgstr "" +"La sezione <literal>Dir::State</literal> contiene directory che sono " +"relative a informazioni di stato locali. <literal>lists</literal> è la " +"directory in cui mettere gli elenchi scaricati dei pacchetti e " +"<literal>status</literal> è il nome del file di stato di &dpkg;. " +"<literal>preferences</literal> è il nome del file " +"<filename>preferences</filename> di APT. <literal>Dir::State</literal> " +"contiene la directory predefinita da anteporre a tutte le sottovoci che non " +"iniziano con <filename>/</filename> o <filename>./</filename>." #. type: Content of: <refentry><refsect1><para> #: apt.conf.5.xml:569 @@ -2965,6 +4394,16 @@ msgid "" "pkgcache rather than the srcpkgcache. Like <literal>Dir::State</literal> the " "default directory is contained in <literal>Dir::Cache</literal>" msgstr "" +"<literal>Dir::Cache</literal> contiene le posizioni relative alle " +"informazioni della cache locale, come le due cache dei pacchetti " +"<literal>srcpkgcache</literal> e <literal>pkgcache</literal>, così come la " +"posizione in cui mettere gli archivi scaricati: " +"<literal>Dir::Cache::archives</literal>. La generazione delle cache può " +"essere disattivata impostando il loro nome ad una stringa vuota. Questo " +"rallenta l'avvio ma fa risparmiare spazio su disco. È probabilmente " +"preferibile disattivare pkgcache piuttosto che srcpkgcache. Come per " +"<literal>Dir::State</literal>, la directory predefinita è contenuta in " +"<literal>Dir::Cache</literal>" #. type: Content of: <refentry><refsect1><para> #: apt.conf.5.xml:578 @@ -2975,6 +4414,11 @@ msgid "" "effect, unless it is done from the config file specified by " "<envar>APT_CONFIG</envar>)." msgstr "" +"<literal>Dir::Etc</literal> contiene la posizione dei file di " +"configurazione; <literal>sourcelist</literal> fornisce la posizione di " +"sourcelist e <literal>main</literal> è il file di configurazione predefinito " +"(l'impostazione non ha effetto, a meno che non venga fatta dal file di " +"configurazione specificato da <envar>APT_CONFIG</envar>)." #. type: Content of: <refentry><refsect1><para> #: apt.conf.5.xml:584 @@ -2983,6 +4427,9 @@ msgid "" "in lexical order from the directory specified. After this is done then the " "main config file is loaded." msgstr "" +"L'impostazione <literal>Dir::Parts</literal> legge dalla directory " +"specificata tutti i frammenti di configurazione in ordine lessicale. Al " +"termine viene caricato il file di configurazione principale." #. type: Content of: <refentry><refsect1><para> #: apt.conf.5.xml:588 @@ -2994,6 +4441,13 @@ msgid "" "literal> <literal>dpkg-buildpackage</literal> and <literal>apt-cache</" "literal> specify the location of the respective programs." msgstr "" +"<literal>Dir::Bin</literal> punta ai programmi binari; " +"<literal>Dir::Bin::Methods</literal> specifica la posizione dei gestori dei " +"metodi e <literal>gzip</literal>, <literal>bzip2</literal>, " +"<literal>lzma</literal>, <literal>dpkg</literal>, <literal>apt-get</literal> " +"<literal>dpkg-source</literal> <literal>dpkg-buildpackage</literal> e " +"<literal>apt-cache</literal> specificano la posizione dei rispettivi " +"programmi." #. type: Content of: <refentry><refsect1><para> #: apt.conf.5.xml:596 @@ -3007,6 +4461,14 @@ msgid "" "status file will be looked up in <filename>/tmp/staging/var/lib/dpkg/status</" "filename>." msgstr "" +"La voce di configurazione <literal>RootDir</literal> ha un significato " +"speciale. Se impostata, tutti i percorsi in <literal>Dir::</literal> saranno " +"relativi a <literal>RootDir</literal>, <emphasis>anche i percorsi che sono " +"specificati in modo assoluto</emphasis>. Perciò, ad esempio, se " +"<literal>RootDir</literal> è impostata a <filename>/tmp/staging</filename> e " +"<literal>Dir::State::status</literal> è impostata a " +"<filename>/var/lib/dpkg/status</filename>, allora il file di stato verrà " +"cercato in <filename>/tmp/staging/var/lib/dpkg/status</filename>." #. type: Content of: <refentry><refsect1><para> #: apt.conf.5.xml:609 @@ -3018,12 +4480,19 @@ msgid "" "z]+</literal> is silently ignored. As seen in the last default value these " "patterns can use regular expression syntax." msgstr "" +"La lista <literal>Ignore-Files-Silently</literal> può essere usata per " +"specificare quali file debbano essere ignorati in modo silenzioso da APT " +"mentre analizza i file nelle directory con i frammenti. In modo predefinito " +"un file il cui nome termina con <literal>.disabled</literal>, " +"<literal>~</literal>, <literal>.bak</literal> o " +"<literal>.dpkg-[a-z]+</literal> viene ignorato in modo silenzioso. Come si " +"vede nell'ultimo valore predefinito questi modelli possono usare una " +"sintassi con espressioni regolari." #. type: Content of: <refentry><refsect1><title> #: apt.conf.5.xml:618 -#, fuzzy msgid "APT in DSelect" -msgstr "DSelect" +msgstr "APT in DSelect" #. type: Content of: <refentry><refsect1><para> #: apt.conf.5.xml:620 @@ -3032,6 +4501,9 @@ msgid "" "control the default behavior. These are in the <literal>DSelect</literal> " "section." msgstr "" +"Quando APT viene usato come metodo per &dselect; svariate direttive di " +"configurazione controllano il comportamento predefinito; queste sono nella " +"sezione <literal>DSelect</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:625 @@ -3045,6 +4517,16 @@ msgid "" "downloadable (replaced with a new version for instance). <literal>pre-auto</" "literal> performs this action before downloading new packages." msgstr "" +"Modalità di pulizia della cache; i valori permessi sono " +"<literal>always</literal>, <literal>prompt</literal>, " +"<literal>auto</literal>, <literal>pre-auto</literal> e " +"<literal>never</literal>. <literal>always</literal> e " +"<literal>prompt</literal> rimuovono tutti i pacchetti dalla cache dopo ogni " +"aggiornamento; <literal>prompt</literal> (il valore predefinito) lo fa in " +"modo condizionato. <literal>auto</literal> rimuove solo quei pacchetti che " +"non sono più scaricabili (ad esempio perché sostituiti da una nuova " +"versione). <literal>pre-auto</literal> effettua questa azione prima di " +"scaricare i nuovi pacchetti." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:639 @@ -3052,6 +4534,9 @@ msgid "" "The contents of this variable are passed to &apt-get; as command line " "options when it is run for the install phase." msgstr "" +"Il contenuto di questa variabile è passato come opzioni per la riga di " +"comando ad &apt-get;, quando questo viene eseguito per la fase di " +"installazione." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:644 @@ -3059,6 +4544,9 @@ msgid "" "The contents of this variable are passed to &apt-get; as command line " "options when it is run for the update phase." msgstr "" +"Il contenuto di questa variabile è passato come opzioni per la riga di " +"comando ad &apt-get;, quando questo viene eseguito per la fase di " +"aggiornamento." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:649 @@ -3066,11 +4554,14 @@ msgid "" "If true the [U]pdate operation in &dselect; will always prompt to continue. " "The default is to prompt only on error." msgstr "" +"Se impostato a vero l'operazione [A]ggiorna di &dselect; chiederà sempre " +"conferma prima di continuare. Il comportamento predefinito è di chiedere " +"solo in caso di errore." #. type: Content of: <refentry><refsect1><title> #: apt.conf.5.xml:655 msgid "How APT calls &dpkg;" -msgstr "" +msgstr "Come APT invoca &dpkg;" #. type: Content of: <refentry><refsect1><para> #: apt.conf.5.xml:656 @@ -3078,6 +4569,8 @@ msgid "" "Several configuration directives control how APT invokes &dpkg;. These are " "in the <literal>DPkg</literal> section." msgstr "" +"Diverse direttive di configurazione controllano il modo in cui APT invoca " +"&dpkg;; sono nella sezione <literal>DPkg</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:661 @@ -3086,6 +4579,9 @@ msgid "" "using the list notation and each list item is passed as a single argument to " "&dpkg;." msgstr "" +"Questa è una lista di opzioni da passare a &dpkg;. Le opzioni devono essere " +"specificate usando la notazione per le liste e ogni voce nella lista viene " +"passata a &dpkg; come un singolo argomento." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:667 @@ -3095,6 +4591,11 @@ msgid "" "commands are invoked in order using <filename>/bin/sh</filename>; should any " "fail APT will abort." msgstr "" +"Questa è una lista di comandi di shell da eseguire prima/dopo l'invocazione " +"di &dpkg;. Come <literal>options</literal> deve essere specificata con la " +"notazione per le liste. I comandi sono invocati in ordine usando " +"<filename>/bin/sh</filename>; se qualcuno dei comandi fallisce APT terminerà " +"annullando." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:674 @@ -3105,6 +4606,12 @@ msgid "" "fail APT will abort. APT will pass the filenames of all .deb files it is " "going to install to the commands, one per line on standard input." msgstr "" +"Questa è una lista di comandi di shell da eseguire prima di invocare &dpkg;. " +"Come <literal>options</literal> deve essere specificata con la notazione " +"per le liste. I comandi sono invocati in ordine usando " +"<filename>/bin/sh</filename>; se qualcuno dei comandi fallisce APT terminerà " +"annullando. APT passa i nomi di file di tutti i file .deb che sta per " +"installare ai comandi, uno per riga, sullo standard input." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:680 @@ -3115,6 +4622,12 @@ msgid "" "options::cmd::Version</literal> to 2. <literal>cmd</literal> is a command " "given to <literal>Pre-Install-Pkgs</literal>." msgstr "" +"La versione 2 di questo protocollo fa il dump di più informazioni, inclusi " +"la versione del protocollo, lo spazio di configurazione di APT, e i " +"pacchetti, file e versioni che vengono modificati. La versione 2 viene " +"abilitata impostando <literal>DPkg::Tools::options::cmd::Version</literal> a " +"2. <literal>cmd</literal> è un comando passato a <literal>Pre-Install-" +"Pkgs</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:688 @@ -3122,6 +4635,8 @@ msgid "" "APT chdirs to this directory before invoking &dpkg;, the default is " "<filename>/</filename>." msgstr "" +"APT cambia la directory attuale in questa prima di invocare &dpkg;; il " +"valore predefinito è <filename>/</filename>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:693 @@ -3129,11 +4644,14 @@ msgid "" "These options are passed to &dpkg-buildpackage; when compiling packages; the " "default is to disable signing and produce all binaries." msgstr "" +"Queste opzioni sono passate a &dpkg-buildpackage; quando vengono compilati i " +"pacchetti; il valore predefinito disabilita la firma e produce tutti i " +"binari." #. type: Content of: <refentry><refsect1><refsect2><title> #: apt.conf.5.xml:698 msgid "dpkg trigger usage (and related options)" -msgstr "" +msgstr "Uso dei trigger di dpkg (e relative opzioni)" #. type: Content of: <refentry><refsect1><refsect2><para> #: apt.conf.5.xml:699 @@ -3149,6 +4667,19 @@ msgid "" "reporting such that all front-ends will currently stay around half (or more) " "of the time in the 100% state while it actually configures all packages." msgstr "" +"APT può invocare &dpkg; in modo tale da permettergli di fare un uso più " +"aggressivo dei trigger su chiamate multiple di &dpkg;. Senza opzioni " +"ulteriori &dpkg; usa i trigger una volta sola per ogni volta che viene " +"eseguito. Attivando queste opzioni si può quindi diminuire il tempo " +"necessario per effettuare l'installazione o l'aggiornamento. Notare che " +"questo è pensato per attivare queste opzioni in modo predefinito nel futuro " +"ma, dato che cambia drasticamente il modo in cui APT chiama &dpkg;, " +"necessita di essere testato ancora molto. <emphasis>Queste opzioni sono " +"perciò al momento sperimentali e non dovrebbero essere usate in ambienti di " +"produzione.</emphasis> Inoltre rende difettosi i rapporti sull'avanzamento, " +"tanto che che tutte le interfacce attualmente rimangono per metà (o più) del " +"tempo nello stato 100% mentre in realtà stanno venendo configurati i " +"pacchetti." #. type: Content of: <refentry><refsect1><refsect2><para><literallayout> #: apt.conf.5.xml:714 @@ -3159,6 +4690,10 @@ msgid "" "DPkg::ConfigurePending \"true\";\n" "DPkg::TriggersPending \"true\";" msgstr "" +"DPkg::NoTriggers \"true\";\n" +"PackageManager::Configure \"smart\";\n" +"DPkg::ConfigurePending \"true\";\n" +"DPkg::TriggersPending \"true\";" #. type: Content of: <refentry><refsect1><refsect2><para> #: apt.conf.5.xml:708 @@ -3173,6 +4708,16 @@ msgid "" "see e.g. <command>dpkg --audit</command>. A defensive option combination " "would be <placeholder type=\"literallayout\" id=\"0\"/>" msgstr "" +"Notare che non è garantito che APT supporterà queste opzioni o che queste " +"opzioni non causeranno (grossi) problemi in futuro. Se i rischi e i problemi " +"attuali legati a queste opzioni sono chiari, ma si è abbastanza coraggiosi " +"da volere aiutare a testarle, creare un nuovo file di configurazione e " +"provare una combinazione di opzioni. Segnalare ogni bug, problema o " +"miglioramento che si presenta e assicurarsi di indicare nella segnalazione " +"quali opzioni sono state usate. Potrebbe anche essere utile chiedere aiuto a " +"&dpkg; per il debug; vedere ad esempio <command>dpkg --audit</command>. Una " +"combinazione di opzioni sulla difensiva sarebbe <placeholder " +"type=\"literallayout\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:721 @@ -3186,6 +4731,16 @@ msgid "" "calls to &dpkg; - now APT will also add this flag to the unpack and remove " "calls." msgstr "" +"Aggiunge l'opzione --no-triggers a tutte le invocazioni di &dpkg; (tranne la " +"chiamata ConfigurePending). Se si è interessati a capire cosa ciò " +"significhi veramente, vedere &dpkg;. In breve: quando questa opzione è " +"presente &dpkg; non esegue i trigger, a meno che non sia esplicitamente " +"chiamato per farlo con una chiamata aggiuntiva. Notare che questa opzione " +"esiste (non documentata) anche in versioni più vecchie di APT, con un " +"significato leggermente diverso: prima queste opzioni aggiungevano solamente " +"--no-triggers alle chiamate di &dpkg; per la configurazione, ora APT " +"aggiunge questa opzione anche alle chiamate per lo spacchettamento e la " +"rimozione." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:729 @@ -3203,6 +4758,20 @@ msgid "" "the next option by default, as otherwise the system could end in an " "unconfigured and potentially unbootable state." msgstr "" +"Valori permessi sono «<literal>all</literal>», «<literal>smart</literal>» e " +"«<literal>no</literal>». Il valore predefinito è «<literal>all</literal>», " +"il che fa sì che APT configuri tutti i pacchetti. Il modo " +"«<literal>smart</literal>» (intelligente) è quello di configurare solo i " +"pacchetti che devono essere configurati prima che possa essere spacchettato " +"un altro pacchetto (Pre-Depends), e lasciare che il resto venga configurato " +"da &dpkg; con una chiamata generata dall'opzione ConfigurePending (vedere " +"più sotto). D'altro canto, «<literal>no</literal>» non configura nulla e si " +"affida completamente a &dpkg; per la configurazione (che al momento fallisce " +"se viene incontrata una relazione Pre-Depends). Impostare questo parametro " +"ad un qualsiasi valore diverso da <literal>all</literal> attiva " +"implicitamente in modo predefinito anche l'opzione successiva, dato che " +"altrimenti il sistema potrebbe finire in uno stato non configurato e " +"potenzialmente non avviabile." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:744 @@ -3214,6 +4783,14 @@ msgid "" "want to run APT multiple times in a row - e.g. in an installer. In these " "sceneries you could deactivate this option in all but the last run." msgstr "" +"Se questa opzione è impostata, APT invoca <command>dpkg --configure " +"--pending</command> per lasciare che &dpkg; gestisca tutte le configurazioni " +"e i trigger necessari. Questa opzione viene attivata automaticamente in " +"modo predefinito se l'opzione precedente non è impostata a " +"<literal>all</literal>, ma potrebbe essere utile disattivarla se si desidera " +"eseguire APT più volte di seguito, ad esempio in un installatore. In uno " +"scenario simile si può disattivare questa opzione in tutte le esecuzioni " +"tranne l'ultima." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:751 @@ -3224,6 +4801,13 @@ msgid "" "showstopper for Pre-Dependencies (see debbugs #526774). Note that this will " "process all triggers, not only the triggers needed to configure this package." msgstr "" +"Utile per la configurazione <literal>smart</literal> dato che un pacchetto " +"che ha trigger in sospeso non è considerato come " +"<literal>installato</literal> e &dpkg; attualmente lo tratta come " +"<literal>spacchettato</literal> che è un ostacolo per le relazioni Pre-" +"Depends (vedere il bug Debian #526774). Notare che questo elaborerà tutti i " +"trigger, non solo quelli necessari per configurare il pacchetto in " +"questione." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para><literallayout> #: apt.conf.5.xml:764 @@ -3236,6 +4820,12 @@ msgid "" "\tPreDepends 50;\n" "};" msgstr "" +"OrderList::Score {\n" +"\tDelete 500;\n" +"\tEssential 200;\n" +"\tImmediate 10;\n" +"\tPreDepends 50;\n" +"};" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:757 @@ -3250,11 +4840,23 @@ msgid "" "scoring. The following example shows the settings with their default " "values. <placeholder type=\"literallayout\" id=\"0\"/>" msgstr "" +"I pacchetti essenziali (e le loro dipendenze) dovrebbero essere configurati " +"immediatamente dopo essere stati spacchettati. È una buona idea farlo " +"abbastanza presto nel processo di aggiornamento, dato che queste chiamate di " +"configurazione al momento richiedono anche " +"<literal>DPkg::TriggersPending</literal> che esegue un certo numero di " +"trigger (che potrebbero non essere necessari). I pacchetti essenziali " +"ottengono in modo predefinito un punteggio alto, ma il contrassegno di " +"immediatezza è relativamente basso (un pacchetto che ha una relazione Pre-" +"Depends è valutato con un punteggio maggiore). Queste opzioni e le altre " +"nello stesso gruppo possono essere usate per cambiare il punteggio. " +"L'esempio seguente mostra le impostazioni con i loro valori predefiniti. " +"<placeholder type=\"literallayout\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><title> #: apt.conf.5.xml:777 msgid "Periodic and Archives options" -msgstr "" +msgstr "Opzioni Periodic e Archives" #. type: Content of: <refentry><refsect1><para> #: apt.conf.5.xml:778 @@ -3264,11 +4866,16 @@ msgid "" "<literal>/etc/cron.daily/apt</literal> script. See the top of this script " "for the brief documentation of these options." msgstr "" +"I gruppi di opzioni <literal>APT::Periodic</literal> e " +"<literal>APT::Archives</literal> configurano il comportamento degli " +"aggiornamenti periodici di apt, ciò viene fatto attraverso lo script " +"<literal>/etc/cron.daily/apt</literal>. Per una breve documentazione di " +"queste opzioni, vedere all'inizio dello script." #. type: Content of: <refentry><refsect1><title> #: apt.conf.5.xml:786 msgid "Debug options" -msgstr "" +msgstr "Opzioni di debug" #. type: Content of: <refentry><refsect1><para> #: apt.conf.5.xml:788 @@ -3280,6 +4887,13 @@ msgid "" "literal>. Most of these options are not interesting to a normal user, but a " "few may be:" msgstr "" +"Se si abilitano le opzioni nella sezione <literal>Debug::</literal> verranno " +"inviate delle informazioni di debug nel flusso dello standard error del " +"programma usando le librerie <literal>apt</literal>, o verranno abilitate " +"speciali modalità del programma che sono principalmente utili per far il " +"debug del comportamento di <literal>apt</literal>. La maggior parte di " +"queste opzioni non è interessante per l'utente normale, ma alcune potrebbero " +"esserlo:" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> #: apt.conf.5.xml:799 @@ -3288,6 +4902,9 @@ msgid "" "decisions made by <literal>dist-upgrade, upgrade, install, remove, purge</" "literal>." msgstr "" +"<literal>Debug::pkgProblemResolver</literal> abilita l'output relativo alle " +"decisioni prese da <literal>dist-upgrade, upgrade, install, remove, " +"purge</literal>." #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> #: apt.conf.5.xml:807 @@ -3296,6 +4913,9 @@ msgid "" "used to run some operations (for instance, <literal>apt-get -s install</" "literal>) as a non-root user." msgstr "" +"<literal>Debug::NoLocking</literal> disabilita tutti i lock sui file. Può " +"essere usato per eseguire alcune operazioni (ad esempio <literal>apt-get -s " +"install</literal>) come utente non root." #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> #: apt.conf.5.xml:816 @@ -3303,6 +4923,8 @@ msgid "" "<literal>Debug::pkgDPkgPM</literal> prints out the actual command line each " "time that <literal>apt</literal> invokes &dpkg;." msgstr "" +"<literal>Debug::pkgDPkgPM</literal> stampa l'effettiva riga di comando ogni " +"volta che <literal>apt</literal> invoca &dpkg;." #. TODO: provide a #. motivating example, except I haven't a clue why you'd want @@ -3313,32 +4935,39 @@ msgid "" "<literal>Debug::IdentCdrom</literal> disables the inclusion of statfs data " "in CD-ROM IDs." msgstr "" +"<literal>Debug::IdentCdrom</literal> disabilita l'inclusione di dati statfs " +"negli ID dei CD-ROM." #. type: Content of: <refentry><refsect1><para> #: apt.conf.5.xml:834 msgid "A full list of debugging options to apt follows." -msgstr "" +msgstr "Segue un elenco completo delle opzioni di debug per apt." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:843 msgid "" "Print information related to accessing <literal>cdrom://</literal> sources." msgstr "" +"Stampa informazioni relative all'accesso a fonti " +"<literal>cdrom://</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:854 msgid "Print information related to downloading packages using FTP." msgstr "" +"Stampa informazioni relative allo scaricamento dei pacchetti usando FTP." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:865 msgid "Print information related to downloading packages using HTTP." msgstr "" +"Stampa informazioni relative allo scaricamento dei pacchetti usando HTTP." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:876 msgid "Print information related to downloading packages using HTTPS." msgstr "" +"Stampa informazioni relative allo scaricamento dei pacchetti usando HTTPS." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:887 @@ -3346,6 +4975,8 @@ msgid "" "Print information related to verifying cryptographic signatures using " "<literal>gpg</literal>." msgstr "" +"Stampa informazioni relative alla verifica delle firme di cifratura fatta " +"usando <literal>gpg</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:898 @@ -3353,11 +4984,15 @@ msgid "" "Output information about the process of accessing collections of packages " "stored on CD-ROMs." msgstr "" +"Produce in output informazioni sul processo di accesso a raccolte di " +"pacchetti memorizzati su CD-ROM." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:908 msgid "Describes the process of resolving build-dependencies in &apt-get;." msgstr "" +"Descrive il processo di risoluzione delle dipendenze di compilazione in " +"&apt-get;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:918 @@ -3365,6 +5000,8 @@ msgid "" "Output each cryptographic hash that is generated by the <literal>apt</" "literal> libraries." msgstr "" +"Produce in output ogni hash crittografico che viene generato dalle librerie " +"<literal>apt</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:928 @@ -3373,6 +5010,9 @@ msgid "" "of used and free blocks on the CD-ROM filesystem, when generating an ID for " "a CD-ROM." msgstr "" +"Quando viene generato l'ID per un CD-ROM, non include informazioni da " +"<literal>statfs</literal>, cioè il numero di blocchi usati e liberi sul file " +"system del CD-ROM." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:939 @@ -3380,11 +5020,16 @@ msgid "" "Disable all file locking. For instance, this will allow two instances of " "<quote><literal>apt-get update</literal></quote> to run at the same time." msgstr "" +"Disabilita tutti i lock sui file. Per esempio permette di eseguire due " +"istanze di <quote><literal>apt-get update</literal></quote> " +"contemporaneamente." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:951 msgid "Log when items are added to or removed from the global download queue." msgstr "" +"Registra nel log quando vengono aggiunte o rimosse voci dalla coda globale " +"degli scaricamenti." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:961 @@ -3392,6 +5037,8 @@ msgid "" "Output status messages and errors related to verifying checksums and " "cryptographic signatures of downloaded files." msgstr "" +"Produce in output messaggi di stato ed errori relativi alla verifica dei " +"codici di controllo e delle firme di cifratura dei file scaricati." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:971 @@ -3399,6 +5046,9 @@ msgid "" "Output information about downloading and applying package index list diffs, " "and errors relating to package index list diffs." msgstr "" +"Produce in output informazioni sullo scaricamento e l'applicazione dei diff " +"per gli elenchi degli indici dei pacchetti, e gli errori relativi a tali " +"diff." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:983 @@ -3406,12 +5056,17 @@ msgid "" "Output information related to patching apt package lists when downloading " "index diffs instead of full indices." msgstr "" +"Produce in output informazioni relative all'applicazione di patch agli " +"elenchi dei pacchetti di apt quando vengono scaricati i diff per gli indici " +"invece degli indici completi." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:994 msgid "" "Log all interactions with the sub-processes that actually perform downloads." msgstr "" +"Registra nel log tutte le interazioni con i sottoprocessi che effettuano " +"realmente gli scaricamenti." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:1005 @@ -3419,6 +5074,8 @@ msgid "" "Log events related to the automatically-installed status of packages and to " "the removal of unused packages." msgstr "" +"Registra nel log gli eventi relativi allo stato di automaticamente " +"installato dei pacchetti e alla rimozione dei pacchetti non utilizzati." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:1015 @@ -3429,6 +5086,12 @@ msgid "" "to the full <literal>apt</literal> dependency resolver; see <literal>Debug::" "pkgProblemResolver</literal> for that." msgstr "" +"Genera messaggi di debug che descrivono quali pacchetti vengono " +"automaticamente installati per risolvere delle dipendenze. Corrisponde al " +"passo iniziale di installazione automatica effettuato, ad esempio, in " +"<literal>apt-get install</literal> e non all'intero risolutore di dipendenze " +"di <literal>apt</literal>; per quello vedere " +"<literal>Debug::pkgProblemResolver</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:1029 @@ -3447,6 +5110,21 @@ msgid "" "version. <literal>section</literal> is the name of the section the package " "appears in." msgstr "" +"Genera messaggi di debug che descrivono quali pacchetto vengono " +"contrassegnati per essere mantenuti/installati/rimossi mentre il " +"ProblemResolver fa il suo lavoro. Ogni aggiunta o rimozione può causare " +"azioni aggiuntive che vengono mostrate con un rientro di due spazi in più " +"sotto alla voce originale. Il formato per ogni riga è " +"<literal>MarkKeep</literal>, <literal>MarkDelete</literal> o " +"<literal>MarkInstall</literal> seguito da <literal>nome-pacchetto <a.b.c " +"-> d.e.f | x.y.z> (sezione)</literal> dove <literal>a.b.c</literal> è " +"l'attuale versione del pacchetto, <literal>d.e.f</literal> è la versione " +"presa in considerazione per l'installazione e <literal>x.y.z</literal> è una " +"versione più recente, ma non considerata per l'installazione (a causa di un " +"punteggio di pin più basso). Gli ultimi due possono essere omessi se non " +"esistono o se sono uguali alla versione installata. " +"<literal>sezione</literal> è il nome della sezione in cui compare il " +"pacchetto." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:1050 @@ -3454,6 +5132,8 @@ msgid "" "When invoking &dpkg;, output the precise command line with which it is being " "invoked, with arguments separated by a single space character." msgstr "" +"Quando invoca &dpkg;, produce in output l'esatta riga di comando usata, con " +"gli argomenti separati da un singolo carattere di spazio." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:1061 @@ -3461,6 +5141,8 @@ msgid "" "Output all the data received from &dpkg; on the status file descriptor and " "any errors encountered while parsing it." msgstr "" +"Produce in output tutti i dati ricevuti da &dpkg; sul descrittore del file " +"di stato ed ogni errore incontrato durante la sua analisi." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:1072 @@ -3468,17 +5150,21 @@ msgid "" "Generate a trace of the algorithm that decides the order in which " "<literal>apt</literal> should pass packages to &dpkg;." msgstr "" +"Genera un trace dell'algoritmo che decide l'ordine in cui " +"<literal>apt</literal> deve passare i pacchetti a &dpkg;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:1084 msgid "" "Output status messages tracing the steps performed when invoking &dpkg;." msgstr "" +"Produce in output messaggi di stato che indicano i passi effettuati " +"nell'invocazione di &dpkg;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:1095 msgid "Output the priority of each package list on startup." -msgstr "" +msgstr "Produce in output la priorità di ogni elenco di pacchetti all'avvio." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:1105 @@ -3486,6 +5172,9 @@ msgid "" "Trace the execution of the dependency resolver (this applies only to what " "happens when a complex dependency problem is encountered)." msgstr "" +"Traccia l'esecuzione del risolutore di dipendenze (questo ha effetto solo " +"per ciò che accade quando viene incontrato un problema complesso di " +"dipendenze)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:1116 @@ -3494,6 +5183,9 @@ msgid "" "the pkgProblemResolver. The description of the package is the same as " "described in <literal>Debug::pkgDepCache::Marker</literal>" msgstr "" +"Visualizza un elenco di tutti i pacchetti installati con il loro punteggio " +"calcolato che è usato dal pkgProblemResolver. La descrizione dei pacchetti è " +"la stessa descritta in <literal>Debug::pkgDepCache::Marker</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:1128 @@ -3501,12 +5193,14 @@ msgid "" "Print information about the vendors read from <filename>/etc/apt/vendors." "list</filename>." msgstr "" +"Stampa informazioni sui fornitori lette da " +"<filename>/etc/apt/vendors.list</filename>." #. type: Content of: <refentry><refsect1><title> #: apt.conf.5.xml:1150 apt_preferences.5.xml:545 sources.list.5.xml:211 #: apt-ftparchive.1.xml:596 msgid "Examples" -msgstr "" +msgstr "Esempi" #. type: Content of: <refentry><refsect1><para> #: apt.conf.5.xml:1151 @@ -3514,17 +5208,19 @@ msgid "" "&configureindex; is a configuration file showing example values for all " "possible options." msgstr "" +"&configureindex; è un file di configurazione che mostra valori d'esempio per " +"tutte le opzioni possibili." #. ? reading apt.conf #. type: Content of: <refentry><refsect1><para> #: apt.conf.5.xml:1163 msgid "&apt-cache;, &apt-config;, &apt-preferences;." -msgstr "" +msgstr "&apt-cache;, &apt-config;, &apt-preferences;." #. type: Content of: <refentry><refnamediv><refpurpose> #: apt_preferences.5.xml:32 msgid "Preference control file for APT" -msgstr "" +msgstr "file di controllo delle preferenze per APT" #. type: Content of: <refentry><refsect1><para> #: apt_preferences.5.xml:37 @@ -3534,6 +5230,10 @@ msgid "" "can be used to control which versions of packages will be selected for " "installation." msgstr "" +"Il file delle preferenze di APT, <filename>/etc/apt/preferences</filename> e " +"i file frammento nella directory " +"<filename>/etc/apt/preferences.d/</filename> possono essere usati per " +"controllare quale versione verrà selezionata per l'installazione." #. type: Content of: <refentry><refsect1><para> #: apt_preferences.5.xml:42 @@ -3547,6 +5247,16 @@ msgid "" "APT assigns to package versions by default, thus giving the user control " "over which one is selected for installation." msgstr "" +"Quando il file &sources-list; contiene riferimenti a più di una " +"distribuzione, potrebbero essere disponibili per l'installazione diverse " +"versioni di un pacchetto (ad esempio <literal>stable</literal> e " +"<literal>testing</literal>). APT assegna una priorità a ciascuna versione " +"che è disponibile. Tenendo in considerazione i limiti imposti dalle " +"dipendenze, <command>apt-get</command> seleziona per l'installazione la " +"versione con la più alta priorità. Le preferenze di APT scavalcano le " +"priorità che APT assegna in modo predefinito alle versioni dei pacchetti, " +"dando perciò all'utente il controllo su quale venga selezionata per " +"l'installazione." #. type: Content of: <refentry><refsect1><para> #: apt_preferences.5.xml:52 @@ -3557,6 +5267,11 @@ msgid "" "the &sources-list; file. The APT preferences do not affect the choice of " "instance, only the choice of version." msgstr "" +"Quando il file &sources-list; contiene riferimenti a più di una fonte, " +"potrebbero essere disponibili più istanze della stessa versione di un " +"pacchetto. In questo caso <command>apt-get</command> scarica l'istanza " +"elencata per prima nel file &sources-list;. Le preferenze di APT non hanno " +"effetto sulla scelta dell'istanza, ma solo sulla scelta della versione." #. type: Content of: <refentry><refsect1><para> #: apt_preferences.5.xml:59 @@ -3571,6 +5286,17 @@ msgid "" "older or newer releases, or together with other packages from different " "releases. You have been warned." msgstr "" +"Le preferenze sono uno strumento potente nelle mani di un amministratore di " +"sistema, ma possono anche diventare il suo incubo peggiore se usate con poca " +"cautela! APT non mette in dubbio le preferenze scelte, perciò impostazioni " +"sbagliate possono avere come risultato pacchetti non installabili o " +"decisioni sbagliate durante l'aggiornamento dei pacchetti. Se vengono " +"mescolati più rilasci di distribuzione può sorgere un numero ancora più " +"grande di problemi, se non si sono capiti bene i concetti spiegati nei " +"prossimi paragrafi. I pacchetti inclusi in uno specifico rilascio non sono " +"testati (e perciò non sempre funzionano come atteso) in rilasci più vecchi o " +"più nuovi, o insieme ad altri pacchetti da altri rilasci. Ci si consideri " +"avvertiti." #. type: Content of: <refentry><refsect1><para> #: apt_preferences.5.xml:70 @@ -3584,23 +5310,34 @@ msgid "" "<literal>Dir::Ignore-Files-Silently</literal> configuration list - in which " "case it will be silently ignored." msgstr "" +"Notare che i file nella directory " +"<filename>/etc/apt/preferences.d</filename> vengono analizzati in ordine " +"alfanumerico crescente e i loro nomi devono conformarsi alle seguenti " +"convenzioni: non devono avere estensione o avere estensione " +"\"<literal>pref</literal>\", e possono contenere solo caratteri alfanumerici, " +"trattini (-), trattini bassi (_) e punti (.). In caso contrario APT stampa " +"un messaggio che informa che un file è stato ignorato, a meno che tale file " +"non corrisponda ad un modello nell'elenco di configurazione <literal>Dir" +"::Ignore-Files-Silently</literal>, nel qual caso viene ignorato in modo " +"silenzioso." #. type: Content of: <refentry><refsect1><refsect2><title> #: apt_preferences.5.xml:79 msgid "APT's Default Priority Assignments" -msgstr "" +msgstr "Assegnazioni della priorità predefinite di APT" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> #: apt_preferences.5.xml:94 #, no-wrap msgid "<command>apt-get install -t testing <replaceable>some-package</replaceable></command>\n" -msgstr "" +msgstr "<command>apt-get install -t testing <replaceable>un-" +"pacchetto</replaceable></command>\n" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> #: apt_preferences.5.xml:97 #, no-wrap msgid "APT::Default-Release \"stable\";\n" -msgstr "" +msgstr "APT::Default-Release \"stable\";\n" #. type: Content of: <refentry><refsect1><refsect2><para> #: apt_preferences.5.xml:81 @@ -3617,6 +5354,19 @@ msgid "" "specifically pinned packages. For example, <placeholder type=" "\"programlisting\" id=\"0\"/> <placeholder type=\"programlisting\" id=\"1\"/>" msgstr "" +"Se non c'è alcun file di preferenze o non c'è nel file una voce applicabile " +"ad una versione particolare, allora la priorità assegnata a quella versione " +"è la priorità della distribuzione a cui essa appartiene. È possibile " +"distinguere una distribuzione, il «rilascio obiettivo», che riceve in modo " +"predefinito una priorità maggiore delle altre distribuzioni. Il rilascio " +"obiettivo può essere impostato nella riga di comando di <command>apt-" +"get</command> o nel file di configurazione di APT, " +"<filename>/etc/apt/apt.conf</filename>. Notare che questa impostazione ha " +"precedenza rispetto a qualsiasi priorità generale sia stata impostata nel " +"file <filename>/etc/apt/preferences</filename> descritto in seguito, ma non " +"rispetto a pacchetti per cui è specificatamente indicato un pin. Per " +"esempio, <placeholder type=\"programlisting\" id=\"0\"/> <placeholder " +"type=\"programlisting\" id=\"1\"/>" #. type: Content of: <refentry><refsect1><refsect2><para> #: apt_preferences.5.xml:101 @@ -3624,11 +5374,13 @@ msgid "" "If the target release has been specified then APT uses the following " "algorithm to set the priorities of the versions of a package. Assign:" msgstr "" +"Se il rilascio obiettivo è stato specificato, allora APT usa il seguente " +"algoritmo per impostare le priorità delle versioni di un pacchetto. Assegna:" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> #: apt_preferences.5.xml:106 msgid "priority 1" -msgstr "" +msgstr "priorità 1" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> #: apt_preferences.5.xml:107 @@ -3638,11 +5390,15 @@ msgid "" "emphasis> as \"ButAutomaticUpgrades: yes\" like the Debian " "<literal>experimental</literal> archive." msgstr "" +"alle versioni che provengono da archivi che, nei loro file " +"<filename>Release</filename>, sono contrassegnati come «NotAutomatic: yes», " +"ma non come «ButAutomaticUpgrades: yes», come l'archivio Debian " +"<literal>experimental</literal>." #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> #: apt_preferences.5.xml:113 msgid "priority 100" -msgstr "" +msgstr "priorità 100" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> #: apt_preferences.5.xml:114 @@ -3652,11 +5408,16 @@ msgid "" "as \"NotAutomatic: yes\" and \"ButAutomaticUpgrades: yes\" like the Debian " "backports archive since <literal>squeeze-backports</literal>." msgstr "" +"alla versione che è già installata (se esiste) e alla versioni che " +"provengono da archivi che, nei loro file <filename>Release</filename>, sono " +"contrassegnati come «NotAutomatic: yes» e «ButAutomaticUpgrades: yes», come " +"l'archivio Debian backports a partire da <literal>squeeze-" +"backports</literal>." #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> #: apt_preferences.5.xml:121 msgid "priority 500" -msgstr "" +msgstr "priorità 500" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> #: apt_preferences.5.xml:122 @@ -3664,17 +5425,20 @@ msgid "" "to the versions that are not installed and do not belong to the target " "release." msgstr "" +"alle versioni che non sono installate e non appartengono al rilascio " +"obiettivo." #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> #: apt_preferences.5.xml:126 msgid "priority 990" -msgstr "" +msgstr "priorità 990" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> #: apt_preferences.5.xml:127 msgid "" "to the versions that are not installed and belong to the target release." msgstr "" +"alle versioni che non sono installate e appartengono al rilascio obiettivo." #. type: Content of: <refentry><refsect1><refsect2><para> #: apt_preferences.5.xml:132 @@ -3686,6 +5450,13 @@ msgid "" "- these versions get the priority 1 or priority 100 if it is additionally " "marked as \"ButAutomaticUpgrades: yes\"." msgstr "" +"Se il rilascio obiettivo non è stato specificato, allora APT assegna " +"semplicemente la priorità 100 a tutte le versioni di pacchetto installate e " +"la priorità 500 a tutte le versioni di pacchetto non installate, tranne le " +"versioni che provengono da archivi che, nei loro file " +"<filename>Release</filename>, sono contrassegnati come «NotAutomatic: yes»; " +"queste ultime versioni hanno priorità 1, oppure priorità 100 se sono in " +"aggiunta contrassegnate come «ButAutomaticUpgrades: yes»." #. type: Content of: <refentry><refsect1><refsect2><para> #: apt_preferences.5.xml:139 @@ -3693,6 +5464,8 @@ msgid "" "APT then applies the following rules, listed in order of precedence, to " "determine which version of a package to install." msgstr "" +"Per determinare quale versione di un pacchetto installare APT applica poi le " +"seguenti regole, elencate in ordine di precedenza." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> #: apt_preferences.5.xml:142 @@ -3703,11 +5476,18 @@ msgid "" "exceeds 1000; such high priorities can only be set in the preferences file. " "Note also that downgrading a package can be risky.)" msgstr "" +"Non retrocede mai ad una versione più bassa, a meno che la priorità della " +"versione disponibile non sia maggiore di 1000. («Retrocedere» significa " +"installare una versione meno recente di un pacchetto al posto di una più " +"recente. Notare che nessuna delle priorità predefinite di APT è maggiore di " +"1000; priorità così alte possono solo essere impostate nel file delle " +"preferenze. Notare inoltre che retrocedere un pacchetto può essere " +"rischioso.)" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> #: apt_preferences.5.xml:148 msgid "Install the highest priority version." -msgstr "" +msgstr "Installa la versione con la priorità più alta." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> #: apt_preferences.5.xml:149 @@ -3715,6 +5495,8 @@ msgid "" "If two or more versions have the same priority, install the most recent one " "(that is, the one with the higher version number)." msgstr "" +"Se due o più versioni hanno la stessa priorità, installa la versione più " +"recente (cioè quella con il numero di versione più alto)." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> #: apt_preferences.5.xml:152 @@ -3723,6 +5505,10 @@ msgid "" "the packages differ in some of their metadata or the <literal>--reinstall</" "literal> option is given, install the uninstalled one." msgstr "" +"Se due o più versioni hanno la stessa priorità e lo stesso numero di " +"versione, ma hanno una qualche differenza in alcuni dei loro metadati, " +"oppure viene usata l'opzione <literal>--reinstall</literal>, installa quella " +"non installata." #. type: Content of: <refentry><refsect1><refsect2><para> #: apt_preferences.5.xml:158 @@ -3733,6 +5519,11 @@ msgid "" "upgraded when <command>apt-get install <replaceable>some-package</" "replaceable></command> or <command>apt-get upgrade</command> is executed." msgstr "" +"In una situazione tipica, la versione installata di un pacchetto (priorità " +"100) non è così recente come una delle versioni disponibili dalle fonti " +"elencate nel file &sources-list; (priorità 500 o 990). Quindi il pacchetto " +"viene aggiornato quando viene eseguito <command>apt-get install <replaceable" +">un-pacchetto</replaceable></command> o <command>apt-get upgrade</command>." #. type: Content of: <refentry><refsect1><refsect2><para> #: apt_preferences.5.xml:165 @@ -3742,6 +5533,11 @@ msgid "" "downgraded when <command>apt-get install <replaceable>some-package</" "replaceable></command> or <command>apt-get upgrade</command> is executed." msgstr "" +"Più raramente, la versione installata di un pacchetto è " +"<emphasis>più</emphasis> recente di qualsiasi altra versione disponibile. Il " +"pacchetto non viene retrocesso quando viene eseguito <command>apt-get " +"install <replaceable>un-pacchetto</replaceable></command> o <command>apt-get " +"upgrade</command>." #. type: Content of: <refentry><refsect1><refsect2><para> #: apt_preferences.5.xml:170 @@ -3754,11 +5550,18 @@ msgid "" "<emphasis>one</emphasis> of the available versions has a higher priority " "than the installed version." msgstr "" +"A volte la versione installata di un pacchetto è più recente di quella che " +"appartiene al rilascio obiettivo, ma non così recente come la versione che " +"appartiene a qualche altra distribuzione. Un tale pacchetto verrà di fatto " +"aggiornato quando viene eseguito <command>apt-get install <replaceable>un-" +"pacchetto</replaceable></command> o <command>apt-get upgrade</command>, " +"perché almeno <emphasis>una</emphasis> delle versioni disponibili ha una " +"priorità più alta di quella installata." #. type: Content of: <refentry><refsect1><refsect2><title> #: apt_preferences.5.xml:179 msgid "The Effect of APT Preferences" -msgstr "" +msgstr "L'effetto delle preferenze di APT" #. type: Content of: <refentry><refsect1><refsect2><para> #: apt_preferences.5.xml:181 @@ -3768,6 +5571,10 @@ msgid "" "records separated by blank lines. Records can have one of two forms, a " "specific form and a general form." msgstr "" +"Il file delle preferenze di APT permette all'amministratore di sistema di " +"controllare l'assegnazione delle priorità. Il file consiste di uno o più " +"record su più righe, separati da righe vuote. I record possono avere una tra " +"due forme: una forma specifica e una forma generica." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> #: apt_preferences.5.xml:187 @@ -3779,6 +5586,12 @@ msgid "" "\"<literal>&good-perl;</literal>\". Multiple packages can be separated by " "spaces." msgstr "" +"La forma specifica assegna una priorità (una «Pin-Priority») ad uno o più " +"pacchetti specifici con una versione o un intervallo di versioni specifici. " +"Ad esempio, il record seguente assegna una priorità alta a tutte le versioni " +"del pacchetto <filename>perl</filename> il cui numero di versione inizia " +"con «<literal>&good-perl;</literal>». Più pacchetti possono essere separati " +"da spazi." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> #: apt_preferences.5.xml:194 @@ -3788,6 +5601,9 @@ msgid "" "Pin: version &good-perl;*\n" "Pin-Priority: 1001\n" msgstr "" +"Package: perl\n" +"Pin: version &good-perl;*\n" +"Pin-Priority: 1001\n" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> #: apt_preferences.5.xml:200 @@ -3798,6 +5614,11 @@ msgid "" "versions coming from a particular Internet site, as identified by the site's " "fully qualified domain name." msgstr "" +"La forma generica assegna una priorità a tutte le versioni di pacchetto in " +"una data distribuzione (cioè a tutte le versioni dei pacchetti che sono " +"elencati in un determinato file <filename>Release</filename>) o a tutte le " +"versioni di pacchetto che provengono da un particolare sito Internet " +"identificato in base al suo nome di dominio pienamente qualificato." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> #: apt_preferences.5.xml:206 @@ -3806,6 +5627,9 @@ msgid "" "of packages. For example, the following record assigns a high priority to " "all package versions available from the local site." msgstr "" +"Queste voci in forma generica nel file di preferenze di APT si applicano " +"solo ai gruppi di pacchetti. Per esempio, il record seguente assegna una " +"priorità alta a tutte le versioni di pacchetto disponibili dal sito locale." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> #: apt_preferences.5.xml:211 @@ -3815,6 +5639,9 @@ msgid "" "Pin: origin \"\"\n" "Pin-Priority: 999\n" msgstr "" +"Package: *\n" +"Pin: origin \"\"\n" +"Pin-Priority: 999\n" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> #: apt_preferences.5.xml:216 @@ -3824,6 +5651,10 @@ msgid "" "high priority to all versions available from the server identified by the " "hostname \"ftp.de.debian.org\"" msgstr "" +"Un avvertimento: la parola chiave usata in questo caso è " +"«<literal>origin</literal>» e può essere usata per indicare un nome host. Il " +"record seguente assegna una priorità alta a tutte le versioni disponibili " +"dal server identificato dal nome host «ftp.de.debian.org»" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> #: apt_preferences.5.xml:220 @@ -3833,6 +5664,9 @@ msgid "" "Pin: origin \"ftp.de.debian.org\"\n" "Pin-Priority: 999\n" msgstr "" +"Package: *\n" +"Pin: origin \"ftp.de.debian.org\"\n" +"Pin-Priority: 999\n" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> #: apt_preferences.5.xml:224 @@ -3843,6 +5677,11 @@ msgid "" "Internet address but an author or vendor name, such as \"Debian\" or \"Ximian" "\"." msgstr "" +"Questo <emphasis>non</emphasis> deve essere confuso con l'Origine di una " +"distribuzione come indicata in un file <filename>Release</filename>. Ciò che " +"segue il tag «Origin:» in un file <filename>Release</filename> non è un " +"indirizzo Internet, ma un nome di autore o produttore, come «Debian» o " +"«Ximian»." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> #: apt_preferences.5.xml:229 @@ -3851,6 +5690,9 @@ msgid "" "belonging to any distribution whose Archive name is \"<literal>unstable</" "literal>\"." msgstr "" +"Il record seguente assegna una priorità bassa a tutte le versioni di " +"pacchetto che appartengono ad una qualsiasi distribuzione il cui nome di " +"archivio è «<literal>unstable</literal>»." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> #: apt_preferences.5.xml:233 @@ -3860,6 +5702,9 @@ msgid "" "Pin: release a=unstable\n" "Pin-Priority: 50\n" msgstr "" +"Package: *\n" +"Pin: release a=unstable\n" +"Pin-Priority: 50\n" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> #: apt_preferences.5.xml:238 @@ -3868,6 +5713,9 @@ msgid "" "belonging to any distribution whose Codename is \"<literal>&testing-codename;" "</literal>\"." msgstr "" +"Il record seguente assegna una priorità alta a tutte le versioni di " +"pacchetto che appartengono ad una qualsiasi distribuzione il cui nome in " +"codice è «<literal>&testing-codename;</literal>»." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> #: apt_preferences.5.xml:242 @@ -3877,6 +5725,9 @@ msgid "" "Pin: release n=&testing-codename;\n" "Pin-Priority: 900\n" msgstr "" +"Package: *\n" +"Pin: release n=&testing-codename;\n" +"Pin-Priority: 900\n" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> #: apt_preferences.5.xml:247 @@ -3885,6 +5736,10 @@ msgid "" "belonging to any release whose Archive name is \"<literal>stable</literal>\" " "and whose release Version number is \"<literal>&stable-version;</literal>\"." msgstr "" +"Il record seguente assegna una priorità alta a tutte le versioni di " +"pacchetto che appartengono ad un qualsiasi rilascio il cui nome di archivio " +"è «<literal>stable</literal>» e il cui numero di versione del rilascio è " +"«<literal>&stable-version;</literal>»." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> #: apt_preferences.5.xml:252 @@ -3894,11 +5749,15 @@ msgid "" "Pin: release a=stable, v=&stable-version;\n" "Pin-Priority: 500\n" msgstr "" +"Package: *\n" +"Pin: release a=stable, v=&stable-version;\n" +"Pin-Priority: 500\n" +# &glob; è rimpiazzato da "glob(7)" #. type: Content of: <refentry><refsect1><refsect2><title> #: apt_preferences.5.xml:262 msgid "Regular expressions and &glob; syntax" -msgstr "" +msgstr "Sintassi per le espressioni regolari e &glob;" #. type: Content of: <refentry><refsect1><refsect2><para> #: apt_preferences.5.xml:264 @@ -3909,6 +5768,12 @@ msgid "" "gnome (as a &glob;-like expression) or contains the word kde (as a POSIX " "extended regular expression surrounded by slashes)." msgstr "" +"APT permette anche di impostare priorità di pin usando espressioni &glob; ed " +"espressioni regolari racchiuse tra sbarre («/»). L'esempio seguente " +"assegna, ad esempio, la priorità 500 a tutti i pacchetti da experimental il " +"cui nome inizia con gnome (indicato con un'espressione in stile &glob;) " +"oppure contiene la parola kde (indicato in forma di espressione regolare " +"estesa POSIX racchiusa tra sbarre)." #. type: Content of: <refentry><refsect1><refsect2><programlisting> #: apt_preferences.5.xml:273 @@ -3918,6 +5783,9 @@ msgid "" "Pin: release n=experimental\n" "Pin-Priority: 500\n" msgstr "" +"Package: gnome* /kde/\n" +"Pin: release n=experimental\n" +"Pin-Priority: 500\n" #. type: Content of: <refentry><refsect1><refsect2><para> #: apt_preferences.5.xml:279 @@ -3926,6 +5794,9 @@ msgid "" "string can occur. Thus, the following pin assigns the priority 990 to all " "packages from a release starting with &ubuntu-codename;." msgstr "" +"Di norma queste espressioni possono essere utilizzate ovunque c'è una " +"stringa. Perciò il pin seguente assegna la priorità 990 a tutti i pacchetti " +"provenienti da un rilascio il cui nome inizia con &ubuntu-codename;." #. type: Content of: <refentry><refsect1><refsect2><programlisting> #: apt_preferences.5.xml:285 @@ -3935,6 +5806,9 @@ msgid "" "Pin: release n=&ubuntu-codename;*\n" "Pin-Priority: 990\n" msgstr "" +"Package: *\n" +"Pin: release n=&ubuntu-codename;*\n" +"Pin-Priority: 990\n" #. type: Content of: <refentry><refsect1><refsect2><para> #: apt_preferences.5.xml:291 @@ -3946,11 +5820,19 @@ msgid "" "specific pins override it. The pattern \"<literal>*</literal>\" in a " "Package field is not considered a &glob; expression in itself." msgstr "" +"Se un'espressione regolare viene usata in un campo " +"<literal>Package</literal>, il comportamento è equivalente a quello che si " +"otterrebbe se l'espressione regolare fosse sostituita da un elenco di tutti " +"i nomi di pacchetto a cui corrisponde. Non è chiaro se questo comportamento " +"verrà modificato in futuro; perciò si dovrebbero sempre indicare per primi i " +"pin con caratteri jolly, in modo che i pin specifici successivi abbiano " +"precedenza su di essi. Il modello «<literal>*</literal>» in un campo Package " +"non viene considerato come un'espressione &glob;." #. type: Content of: <refentry><refsect1><refsect2><title> #: apt_preferences.5.xml:307 msgid "How APT Interprets Priorities" -msgstr "" +msgstr "Come APT interpreta le priorità" #. type: Content of: <refentry><refsect1><refsect2><para> #: apt_preferences.5.xml:310 @@ -3958,6 +5840,9 @@ msgid "" "Priorities (P) assigned in the APT preferences file must be positive or " "negative integers. They are interpreted as follows (roughly speaking):" msgstr "" +"Le priorità (P) assegnate nel file delle preferenze di APT devono essere " +"rappresentate da interi positivi o negativi. Vengono interpretate nel modo " +"seguente (semplificando le cose):" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> #: apt_preferences.5.xml:315 @@ -3970,6 +5855,8 @@ msgid "" "causes a version to be installed even if this constitutes a downgrade of the " "package" msgstr "" +"causa l'installazione di una versione anche se ciò costituisce una " +"retrocessione del pacchetto" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> #: apt_preferences.5.xml:320 @@ -3982,6 +5869,8 @@ msgid "" "causes a version to be installed even if it does not come from the target " "release, unless the installed version is more recent" msgstr "" +"causa l'installazione di una versione anche se non proviene dal rilascio " +"obiettivo, a meno che la versione installata non sia più recente" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> #: apt_preferences.5.xml:326 @@ -3994,6 +5883,9 @@ msgid "" "causes a version to be installed unless there is a version available " "belonging to the target release or the installed version is more recent" msgstr "" +"causa l'installazione di una versione, a meno che non ci sia una versione " +"disponibile appartenente al rilascio obiettivo o la versione installata non " +"sia più recente" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> #: apt_preferences.5.xml:332 @@ -4006,6 +5898,9 @@ msgid "" "causes a version to be installed unless there is a version available " "belonging to some other distribution or the installed version is more recent" msgstr "" +"causa l'installazione di una versione, a meno che non ci sia una versione " +"disponibile appartenente ad una qualche altra distribuzione o la versione " +"installata non sia più recente" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> #: apt_preferences.5.xml:338 @@ -4018,6 +5913,8 @@ msgid "" "causes a version to be installed only if there is no installed version of " "the package" msgstr "" +"causa l'installazione di una versione solo se nessuna versione del pacchetto " +"è installata" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> #: apt_preferences.5.xml:343 @@ -4027,7 +5924,7 @@ msgstr "P < 0" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> #: apt_preferences.5.xml:344 msgid "prevents the version from being installed" -msgstr "" +msgstr "impedisce l'installazione della versione" #. type: Content of: <refentry><refsect1><refsect2><para> #: apt_preferences.5.xml:349 @@ -4037,6 +5934,12 @@ msgid "" "that, if any general-form records match an available package version then " "the first such record determines the priority of the package version." msgstr "" +"Se almeno un record in forma specifica corrisponde ad una versione di " +"pacchetto disponibile, allora il primo di questi record determina la " +"priorità della versione del pacchetto. In caso contrario, se almeno un " +"record in forma generica corrisponde ad una versione di pacchetto " +"disponibile, allora il primo di questi record determina la priorità della " +"versione del pacchetto." #. type: Content of: <refentry><refsect1><refsect2><para> #: apt_preferences.5.xml:355 @@ -4044,6 +5947,8 @@ msgid "" "For example, suppose the APT preferences file contains the three records " "presented earlier:" msgstr "" +"Per esempio, supponendo che il file di preferenze di APT contenga i tre " +"record descritti in precedenza:" #. type: Content of: <refentry><refsect1><refsect2><programlisting> #: apt_preferences.5.xml:359 @@ -4061,21 +5966,38 @@ msgid "" "Pin: release unstable\n" "Pin-Priority: 50\n" msgstr "" - -#. type: Content of: <refentry><refsect1><refsect2><para> -#: apt_preferences.5.xml:372 -msgid "Then:" -msgstr "" - -#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> -#: apt_preferences.5.xml:374 -msgid "" +"Package: perl\n" +"Pin: version &good-perl;*\n" +"Pin-Priority: 1001\n" +"\n" +"Package: *\n" +"Pin: origin \"\"\n" +"Pin-Priority: 999\n" +"\n" +"Package: *\n" +"Pin: release unstable\n" +"Pin-Priority: 50\n" + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:372 +msgid "Then:" +msgstr "Allora:" + +#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> +#: apt_preferences.5.xml:374 +msgid "" "The most recent available version of the <literal>perl</literal> package " "will be installed, so long as that version's version number begins with " "\"<literal>&good-perl;</literal>\". If <emphasis>any</emphasis> &good-perl;" "* version of <literal>perl</literal> is available and the installed version " "is &bad-perl;*, then <literal>perl</literal> will be downgraded." msgstr "" +"Verrà installata la più recente versione disponibile del pacchetto " +"<literal>perl</literal>, fintanto che il suo numero di versione inizia con " +"«<literal>&good-perl;</literal>». Se è disponibile <emphasis>una " +"qualsiasi</emphasis> versione &good-perl;* di <literal>perl</literal> e la " +"versione installata è &bad-perl;*, allora <literal>perl</literal> verrà " +"retrocesso." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> #: apt_preferences.5.xml:379 @@ -4084,6 +6006,9 @@ msgid "" "available from the local system has priority over other versions, even " "versions belonging to the target release." msgstr "" +"Una versione di un qualsiasi pacchetto diverso da <literal>perl</literal> " +"che sia disponibile sul sistema locale ha la priorità rispetto ad altre " +"versioni, incluse quelle che appartengono al rilascio obiettivo." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> #: apt_preferences.5.xml:383 @@ -4093,11 +6018,17 @@ msgid "" "literal> distribution is only installed if it is selected for installation " "and no version of the package is already installed." msgstr "" +"Una versione di un pacchetto la cui origine non sia il sistema locale, ma un " +"qualche altro sito elencato in &sources-list; e che appartiene ad una " +"distribuzione <literal>unstable</literal>, viene installata solamente se è " +"selezionata per l'installazione e nessuna versione del pacchetto è già " +"installata." #. type: Content of: <refentry><refsect1><refsect2><title> #: apt_preferences.5.xml:393 msgid "Determination of Package Version and Distribution Properties" msgstr "" +"Determinazione delle proprietà di versione del pacchetto e di distribuzione" #. type: Content of: <refentry><refsect1><refsect2><para> #: apt_preferences.5.xml:395 @@ -4106,6 +6037,9 @@ msgid "" "<filename>Packages</filename> and <filename>Release</filename> files to " "describe the packages available at that location." msgstr "" +"Le posizioni elencate nel file &sources-list; dovrebbero fornire i file " +"<filename>Packages</filename> e <filename>Release</filename> che descrivono " +"i pacchetti disponibili in quelle posizioni." #. type: Content of: <refentry><refsect1><refsect2><para> #: apt_preferences.5.xml:399 @@ -4118,26 +6052,33 @@ msgid "" "each package available in that directory. Only two lines in each record are " "relevant for setting APT priorities:" msgstr "" +"Il file <filename>Packages</filename> si trova normalmente nella directory " +"<filename>.../dists/<replaceable>nome-dist</replaceable>/<replaceable>compon" +"ente</replaceable>/<replaceable>arch</replaceable></filename>: per esempio, " +"<filename>.../dists/stable/main/binary-i386/Packages</filename>. È " +"costituito da una serie di record su più righe, uno per ogni pacchetto " +"disponibile in tale directory. In ciascun record solo due righe sono " +"rilevanti per l'impostazione delle priorità di APT:" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> #: apt_preferences.5.xml:407 msgid "the <literal>Package:</literal> line" -msgstr "" +msgstr "la riga <literal>Package:</literal>" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> #: apt_preferences.5.xml:408 msgid "gives the package name" -msgstr "" +msgstr "indica il nome del pacchetto" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> #: apt_preferences.5.xml:411 apt_preferences.5.xml:461 msgid "the <literal>Version:</literal> line" -msgstr "" +msgstr "la riga <literal>Version:</literal>" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> #: apt_preferences.5.xml:412 msgid "gives the version number for the named package" -msgstr "" +msgstr "indica il numero di versione per il pacchetto indicato" #. type: Content of: <refentry><refsect1><refsect2><para> #: apt_preferences.5.xml:417 @@ -4151,11 +6092,20 @@ msgid "" "file, nearly all of the lines in a <filename>Release</filename> file are " "relevant for setting APT priorities:" msgstr "" +"Il file <filename>Release</filename> si trova normalmente nella directory " +"<filename>.../dists/<replaceable>nome-dist</replaceable></filename>: ad " +"esempio, <filename>.../dists/stable/Release</filename> o <filename>.../dists" +"/&stable-codename;/Release</filename>. Consiste di un record su più righe " +"che si applica a <emphasis>tutti</emphasis> i pacchetti nell'albero di " +"directory sottostante alla directory genitrice. A differenza di ciò che " +"avviene per il file <filename>Packages</filename>, quasi tutte le righe in " +"un file <filename>Release</filename> sono importanti per l'impostazione " +"delle priorità di APT:" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> #: apt_preferences.5.xml:428 msgid "the <literal>Archive:</literal> or <literal>Suite:</literal> line" -msgstr "" +msgstr "la riga <literal>Archive:</literal> o <literal>Suite:</literal>" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> #: apt_preferences.5.xml:429 @@ -4167,17 +6117,23 @@ msgid "" "archive. Specifying this value in the APT preferences file would require " "the line:" msgstr "" +"indica l'archivio a cui appartengono tutti i pacchetti nell'albero di " +"directory. Per esempio, la riga «Archive: stable» o «Suite: stable» " +"specifica che tutti i pacchetti nell'albero di directory sottostante la " +"directory che contiene il file <filename>Release</filename> sono " +"nell'archivio <literal>stable</literal>. Per specificare questo valore nelle " +"preferenze di APT si deve usare la riga:" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> #: apt_preferences.5.xml:439 #, no-wrap msgid "Pin: release a=stable\n" -msgstr "" +msgstr "Pin: release a=stable\n" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> #: apt_preferences.5.xml:445 msgid "the <literal>Codename:</literal> line" -msgstr "" +msgstr "la riga <literal>Codename:</literal>" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> #: apt_preferences.5.xml:446 @@ -4189,12 +6145,18 @@ msgid "" "<literal>&testing-codename;</literal>. Specifying this value in the APT " "preferences file would require the line:" msgstr "" +"indica il nome in codice a cui appartengono tutti i pacchetti nell'albero di " +"directory. Per esempio, la riga «Codename: &testing-codename;» specifica " +"che tutti i pacchetti nell'albero di directory sottostante la directory che " +"contiene il file <filename>Release</filename> appartengono ad una versione " +"chiamata <literal>&testing-codename;</literal>. Per specificare questo " +"valore nelle preferenze di APT si deve usare la riga:" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> #: apt_preferences.5.xml:455 #, no-wrap msgid "Pin: release n=&testing-codename;\n" -msgstr "" +msgstr "Pin: release n=&testing-codename;\n" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> #: apt_preferences.5.xml:462 @@ -4206,6 +6168,12 @@ msgid "" "released yet. Specifying this in the APT preferences file would require one " "of the following lines." msgstr "" +"indica la versione del rilascio. Per esempio, i pacchetti nell'albero " +"potrebbero appartenere alla versione &stable-version; del rilascio Debian. " +"Notare che normalmente non esiste un numero di versione per le distribuzioni " +"<literal>testing</literal> e <literal>unstable</literal>, perché non sono " +"ancora state rilasciate. Per specificare questo valore nelle preferenze di " +"APT si deve usare una delle seguenti righe:" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> #: apt_preferences.5.xml:471 @@ -4215,11 +6183,14 @@ msgid "" "Pin: release a=stable, v=&stable-version;\n" "Pin: release &stable-version;\n" msgstr "" +"Pin: release v=&stable-version;\n" +"Pin: release a=stable, v=&stable-version;\n" +"Pin: release &stable-version;\n" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> #: apt_preferences.5.xml:480 msgid "the <literal>Component:</literal> line" -msgstr "" +msgstr "la riga<literal>Component:</literal>" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> #: apt_preferences.5.xml:481 @@ -4231,17 +6202,24 @@ msgid "" "licensed under terms listed in the Debian Free Software Guidelines. " "Specifying this component in the APT preferences file would require the line:" msgstr "" +"indica le componenti con le varie licenze associate ai pacchetti nell'albero " +"di directory del file <filename>Release</filename>. Per esempio, la riga " +"«Component: main» specifica che tutti i pacchetti nell'albero di directory " +"provengono dalla componente <literal>main</literal>, e quindi che sono " +"rilasciati nei termini elencati nelle Linee guida per il Software Libero di " +"Debian. Per specificare questa componente nelle preferenze di APT si deve " +"usare la riga:" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> #: apt_preferences.5.xml:490 #, no-wrap msgid "Pin: release c=main\n" -msgstr "" +msgstr "Pin: release c=main\n" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> #: apt_preferences.5.xml:496 msgid "the <literal>Origin:</literal> line" -msgstr "" +msgstr "la riga <literal>Origin:</literal>" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> #: apt_preferences.5.xml:497 @@ -4251,17 +6229,20 @@ msgid "" "literal>. Specifying this origin in the APT preferences file would require " "the line:" msgstr "" +"indica l'origine dei pacchetti nell'albero di directory del file " +"<filename>Release</filename>. Normalmente è <literal>Debian</literal>. Per " +"specificare questa origine nelle preferenze di APT si deve usare la riga:" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> #: apt_preferences.5.xml:503 #, no-wrap msgid "Pin: release o=Debian\n" -msgstr "" +msgstr "Pin: release o=Debian\n" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> #: apt_preferences.5.xml:509 msgid "the <literal>Label:</literal> line" -msgstr "" +msgstr "la riga <literal>Label:</literal>" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> #: apt_preferences.5.xml:510 @@ -4271,12 +6252,15 @@ msgid "" "literal>. Specifying this label in the APT preferences file would require " "the line:" msgstr "" +"indica l'etichetta dei pacchetti nell'albero di directory del file " +"<filename>Release</filename>. Normalmente è <literal>Debian</literal>. Per " +"specificare questa etichetta nelle preferenze di APT si deve usare la riga:" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> #: apt_preferences.5.xml:516 #, no-wrap msgid "Pin: release l=Debian\n" -msgstr "" +msgstr "Pin: release l=Debian\n" #. type: Content of: <refentry><refsect1><refsect2><para> #: apt_preferences.5.xml:523 @@ -4292,11 +6276,21 @@ msgid "" "architecture files from the <literal>contrib</literal> component of the " "<literal>unstable</literal> distribution." msgstr "" +"Tutti i file <filename>Packages</filename> e <filename>Release</filename> " +"recuperati dalle posizioni elencate nel file &sources-list; sono memorizzati " +"nella directory <filename>/var/lib/apt/lists</filename> o nel file indicato " +"dalla variabile <literal>Dir::State::Lists</literal> nel file " +"<filename>apt.conf</filename>. Per esempio, il file <filename>debian.lcs.mit" +".edu_debian_dists_unstable_contrib_binary-i386_Release</filename> contiene " +"il file <filename>Release</filename> recuperato dal sito " +"<literal>debian.lcs.mit.edu</literal> per i file dell'architettura " +"<literal>binary-i386</literal> nella componente <literal>contrib</literal> " +"della distribuzione <literal>unstable</literal>." #. type: Content of: <refentry><refsect1><refsect2><title> #: apt_preferences.5.xml:536 msgid "Optional Lines in an APT Preferences Record" -msgstr "" +msgstr "Righe opzionali in un record delle preferenze di APT" #. type: Content of: <refentry><refsect1><refsect2><para> #: apt_preferences.5.xml:538 @@ -4305,11 +6299,15 @@ msgid "" "more lines beginning with the word <literal>Explanation:</literal>. This " "provides a place for comments." msgstr "" +"Ogni record nel file delle preferenze di APT può iniziare opzionalmente con " +"una o più righe che cominciano con la parola " +"<literal>Explanation:</literal>. Ciò fornisce un posto dove mettere " +"commenti." #. type: Content of: <refentry><refsect1><refsect2><title> #: apt_preferences.5.xml:547 msgid "Tracking Stable" -msgstr "" +msgstr "Seguire Stable in modo continuativo" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> #: apt_preferences.5.xml:555 @@ -4325,6 +6323,16 @@ msgid "" "Pin: release o=Debian\n" "Pin-Priority: -10\n" msgstr "" +"Explanation: Disinstallare o non installare ogni versione di\n" +"Explanation: pacchetto originata da Debian che non sia nella\n" +"Explanation: distribuzione stable\n" +"Package: *\n" +"Pin: release a=stable\n" +"Pin-Priority: 900\n" +"\n" +"Package: *\n" +"Pin: release o=Debian\n" +"Pin-Priority: -10\n" #. type: Content of: <refentry><refsect1><refsect2><para> #: apt_preferences.5.xml:549 @@ -4335,6 +6343,12 @@ msgid "" "package versions belonging to other <literal>Debian</literal> " "distributions. <placeholder type=\"programlisting\" id=\"0\"/>" msgstr "" +"Il seguente file di preferenze di APT fa sì che APT assegni una priorità più " +"alta di quella predefinita (500) a tutte le versioni di pacchetto che " +"appartengono alla distribuzione <literal>stable</literal>, e una priorità " +"eccezionalmente bassa alle versioni di pacchetto che appartengono alle altre " +"distribuzioni <literal>Debian</literal>. <placeholder type=\"programlisting\" " +"id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> #: apt_preferences.5.xml:572 apt_preferences.5.xml:618 @@ -4345,6 +6359,9 @@ msgid "" "apt-get upgrade\n" "apt-get dist-upgrade\n" msgstr "" +"apt-get install <replaceable>nome-pacchetto</replaceable>\n" +"apt-get upgrade\n" +"apt-get dist-upgrade\n" #. type: Content of: <refentry><refsect1><refsect2><para> #: apt_preferences.5.xml:567 @@ -4354,12 +6371,16 @@ msgid "" "<literal>stable</literal> version(s). <placeholder type=\"programlisting\" " "id=\"0\"/>" msgstr "" +"Con un file &sources-list; adatto e il file di preferenze descritto sopra, " +"uno qualsiasi dei seguenti comandi farà sì che APT aggiorni il sistema alle " +"versioni più recenti di <literal>stable</literal>. <placeholder " +"type=\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> #: apt_preferences.5.xml:584 #, no-wrap msgid "apt-get install <replaceable>package</replaceable>/testing\n" -msgstr "" +msgstr "apt-get install <replaceable>pacchetto</replaceable>/testing\n" #. type: Content of: <refentry><refsect1><refsect2><para> #: apt_preferences.5.xml:578 @@ -4369,11 +6390,15 @@ msgid "" "will not be upgraded again unless this command is given again. <placeholder " "type=\"programlisting\" id=\"0\"/>" msgstr "" +"Il seguente comando farà sì che APT aggiorni il pacchetto specificato alla " +"versione più recente nella distribuzione <literal>testing</literal>; il " +"pacchetto non verrà successivamente aggiornato a meno di non usare " +"nuovamente questo comando. <placeholder type=\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><title> #: apt_preferences.5.xml:590 msgid "Tracking Testing or Unstable" -msgstr "" +msgstr "Seguire Testing o Unstable in modo continuativo" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> #: apt_preferences.5.xml:599 @@ -4391,6 +6416,17 @@ msgid "" "Pin: release o=Debian\n" "Pin-Priority: -10\n" msgstr "" +"Package: *\n" +"Pin: release a=testing\n" +"Pin-Priority: 900\n" +"\n" +"Package: *\n" +"Pin: release a=unstable\n" +"Pin-Priority: 800\n" +"\n" +"Package: *\n" +"Pin: release o=Debian\n" +"Pin-Priority: -10\n" #. type: Content of: <refentry><refsect1><refsect2><para> #: apt_preferences.5.xml:592 @@ -4402,6 +6438,12 @@ msgid "" "other <literal>Debian</literal> distributions. <placeholder type=" "\"programlisting\" id=\"0\"/>" msgstr "" +"Il seguente file di preferenze di APT fa sì che APT assegni una priorità " +"alta alle versioni di pacchetto nella distribuzione " +"<literal>testing</literal>, una priorità più bassa alle versioni di " +"pacchetto nella distribuzione <literal>unstable</literal>, e una priorità " +"eccezionalmente bassa alle versioni di pacchetto nelle altre distribuzioni " +"<literal>Debian</literal>. <placeholder type=\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><para> #: apt_preferences.5.xml:613 @@ -4411,12 +6453,16 @@ msgid "" "<literal>testing</literal> version(s). <placeholder type=\"programlisting\" " "id=\"0\"/>" msgstr "" +"Con un file &sources-list; adatto e il file di preferenze descritto sopra, " +"uno qualsiasi dei seguenti comandi farà sì che APT aggiorni il sistema alle " +"versioni più recenti di <literal>testing</literal>. <placeholder " +"type=\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> #: apt_preferences.5.xml:633 #, no-wrap msgid "apt-get install <replaceable>package</replaceable>/unstable\n" -msgstr "" +msgstr "apt-get install <replaceable>pacchetto</replaceable>/unstable\n" #. type: Content of: <refentry><refsect1><refsect2><para> #: apt_preferences.5.xml:624 @@ -4429,11 +6475,18 @@ msgid "" "literal> version if that is more recent than the installed version. " "<placeholder type=\"programlisting\" id=\"0\"/>" msgstr "" +"Il comando seguente farà sì che APT aggiorni il pacchetto specificato alla " +"più recente versione nella distribuzione <literal>unstable</literal>. " +"Successivamente, <command>apt-get upgrade</command> aggiornerà il pacchetto " +"alla versione più recente in <literal>testing</literal>, se è più nuova di " +"quella installata, altrimenti alla più recente versione in " +"<literal>unstable</literal> se è più recente di quella installata. " +"<placeholder type=\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><title> #: apt_preferences.5.xml:640 msgid "Tracking the evolution of a codename release" -msgstr "" +msgstr "Seguire l'evoluzione di un rilascio in base al nome in codice" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> #: apt_preferences.5.xml:654 @@ -4454,6 +6507,21 @@ msgid "" "Pin: release o=Debian\n" "Pin-Priority: -10\n" msgstr "" +"Explanation: Disinstallare o non installare qualsiasi versione di pacchetto\n" +"Explanation: originata da Debian che non sia nella distribuzione con\n" +"Explanation: nome in codice &testing-codename; o sid\n" +"Package: *\n" +"Pin: release n=&testing-codename;\n" +"Pin-Priority: 900\n" +"\n" +"Explanation: Debian unstable ha sempre il nome in codice side\n" +"Package: *\n" +"Pin: release n=sid\n" +"Pin-Priority: 800\n" +"\n" +"Package: *\n" +"Pin: release o=Debian\n" +"Pin-Priority: -10\n" #. type: Content of: <refentry><refsect1><refsect2><para> #: apt_preferences.5.xml:642 @@ -4469,6 +6537,18 @@ msgid "" "notwithstanding the codename changes you should use the example " "configurations above. <placeholder type=\"programlisting\" id=\"0\"/>" msgstr "" +"Il seguente file delle preferenze di APT farà sì che APT assegni una " +"priorità più alta di quella predefinita (500) a tutte le versioni di " +"pacchetto che appartengono alla distribuzione con il nome in codice " +"specificato, e una priorità eccezionalmente bassa alle versioni di pacchetto " +"che appartengono ad altre distribuzioni, nomi in codice e archivi " +"<literal>Debian</literal>. Notare che con questa preferenza, APT segue la " +"migrazione di un rilascio dall'archivio <literal>testing</literal> a " +"<literal>stable</literal> e successivamente a <literal>oldstable</literal>. " +"Se si vuole seguire il progresso, ad esempio, di <literal>testing</literal> " +"indipendentemente dai cambi di nome in codice si devono usare le " +"configurazioni negli esempi precedenti. <placeholder type=\"programlisting\" " +"id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><para> #: apt_preferences.5.xml:671 @@ -4478,12 +6558,16 @@ msgid "" "the release codenamed with <literal>&testing-codename;</literal>. " "<placeholder type=\"programlisting\" id=\"0\"/>" msgstr "" +"Con un file &sources-list; adatto e il file di preferenze descritto sopra, " +"uno qualsiasi dei seguenti comandi farà sì che APT aggiorni il sistema alle " +"versioni più recenti nel rilascio con nome in codice <literal>&testing-" +"codename;</literal>. <placeholder type=\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> #: apt_preferences.5.xml:691 #, no-wrap msgid "apt-get install <replaceable>package</replaceable>/sid\n" -msgstr "" +msgstr "apt-get install <replaceable>pacchetto</replaceable>/sid\n" #. type: Content of: <refentry><refsect1><refsect2><para> #: apt_preferences.5.xml:682 @@ -4496,16 +6580,23 @@ msgid "" "literal> version if that is more recent than the installed version. " "<placeholder type=\"programlisting\" id=\"0\"/>" msgstr "" +"Il comando seguente farà sì che APT aggiorni il pacchetto specificato alla " +"più recente versione nella distribuzione <literal>sid</literal>. " +"Successivamente, <command>apt-get upgrade</command> aggiornerà il pacchetto " +"alla versione più recente in <literal>&testing-codename;</literal>, se è più " +"nuova di quella installata, altrimenti alla più recente versione in " +"<literal>sid</literal> se è più recente di quella installata. <placeholder " +"type=\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><para> #: apt_preferences.5.xml:706 msgid "&apt-get; &apt-cache; &apt-conf; &sources-list;" -msgstr "" +msgstr "&apt-get; &apt-cache; &apt-conf; &sources-list;" #. type: Content of: <refentry><refnamediv><refpurpose> #: sources.list.5.xml:33 msgid "List of configured APT data sources" -msgstr "" +msgstr "elenco delle fonti di dati configurate per APT" #. type: Content of: <refentry><refsect1><para> #: sources.list.5.xml:38 @@ -4517,6 +6608,12 @@ msgid "" "<command>apt-get update</command> (or by an equivalent command from another " "APT front-end)." msgstr "" +"L'elenco delle fonti <filename>/etc/apt/sources.list</filename> è progettato " +"per supportare qualsiasi numero di fonti attive e svariati supporti. Il " +"file elenca una fonte per riga, con la fonte preferita elencata per prima. " +"Le informazioni disponibili dalle fonti configurate sono acquisite con " +"<command>apt-get update</command> (o con un comando equivalente in un'altra " +"interfaccia per APT)." #. type: Content of: <refentry><refsect1><para> #: sources.list.5.xml:45 @@ -4527,11 +6624,16 @@ msgid "" "and a <literal>#</literal> character anywhere on a line marks the remainder " "of that line as a comment." msgstr "" +"Ogni riga che specifica una fonte inizia con il tipo (per esempio <literal" +">deb-src</literal>), seguito dalle opzioni e dagli argomenti per tale tipo. " +"Ogni singola voce non può essere divisa su più righe. Le righe vuote vengono " +"ignorate e un carattere <literal>#</literal> in qualsiasi punto di una riga " +"contrassegna come commento la parte rimanente della riga." #. type: Content of: <refentry><refsect1><title> #: sources.list.5.xml:53 msgid "sources.list.d" -msgstr "" +msgstr "sources.list.d" #. type: Content of: <refentry><refsect1><para> #: sources.list.5.xml:54 @@ -4545,11 +6647,20 @@ msgid "" "file matches a pattern in the <literal>Dir::Ignore-Files-Silently</literal> " "configuration list - in which case it will be silently ignored." msgstr "" +"La directory <filename>/etc/apt/sources.list.d</filename> permette di " +"aggiungere voci per sources.list in file separati. Il formato è lo stesso " +"del regolare file <filename>sources.list</filename>. I nomi dei file devono " +"terminare con <filename>.list</filename> e possono contenere solamente " +"lettere (a-z e A-Z), cifre (0-9), trattini bassi (_), trattini (-) e punti " +"(.). In caso contrario APT stampa un messaggio che notifica che un file è " +"stato ignorato, a meno che il file non corrisponda ad un modello nell'elenco " +"di configurazione <literal>Dir::Ignore-Files-Silently</literal>, nel qual " +"caso viene ignorato in modo silenzioso." #. type: Content of: <refentry><refsect1><title> #: sources.list.5.xml:65 msgid "The deb and deb-src types" -msgstr "" +msgstr "I tipi deb e deb-src" #. type: Content of: <refentry><refsect1><para> #: sources.list.5.xml:66 @@ -4565,6 +6676,17 @@ msgid "" "same form as the <literal>deb</literal> type. A <literal>deb-src</literal> " "line is required to fetch source indexes." msgstr "" +"Il tipo <literal>deb</literal> è un riferimento a un tipico archivio Debian " +"a due livelli, <filename>distribuzione/componente</filename>. " +"<literal>distribuzione</literal> è tipicamente un nome di archivio come " +"<literal>stable</literal> o <literal>testing</literal>, oppure un nome in " +"codice come <literal>&stable-codename;</literal> o <literal>&testing-" +"codename;</literal>; componente è uno tra <literal>main</literal>, " +"<literal>contrib</literal> o <literal>non-free</literal>. Il tipo <literal" +">deb-src</literal> è un riferimento al codice sorgente di una distribuzione " +"Debian nella stessa forma di quella del tipo <literal>deb</literal>. Per " +"recuperare gli indici dei pacchetti sorgente è necessaria una riga <literal" +">deb-src</literal>." #. type: Content of: <refentry><refsect1><para> #: sources.list.5.xml:78 @@ -4572,12 +6694,14 @@ msgid "" "The format for a <filename>sources.list</filename> entry using the " "<literal>deb</literal> and <literal>deb-src</literal> types is:" msgstr "" +"Il formato per una voce in <filename>sources.list</filename> che usa il tipo " +"<literal>deb</literal> o <literal>deb-src</literal> è:" #. type: Content of: <refentry><refsect1><literallayout> #: sources.list.5.xml:81 #, no-wrap msgid "deb [ options ] uri distribution [component1] [component2] [...]" -msgstr "" +msgstr "deb [ opzioni ] uri distribuzione [componente1] [componente2] [...]" #. type: Content of: <refentry><refsect1><para> #: sources.list.5.xml:83 @@ -4591,6 +6715,15 @@ msgid "" "<literal>distribution</literal> does not specify an exact path, at least one " "<literal>component</literal> must be present." msgstr "" +"L'URI per il tipo <literal>deb</literal> deve specificare la base della " +"distribuzione Debian, dalla quale APT troverà le informazioni necessarie. " +"<literal>distribuzione</literal> può specificare un percorso esatto, nel " +"qual caso le componenti devono essere omesse e " +"<literal>distribuzione</literal> deve terminare con una sbarra " +"(<literal>/</literal>). Questo è utile nel caso in cui si è interessati solo " +"a una particolare sottosezione dell'archivio indicata dall'URI. Se " +"<literal>distribuzione</literal> non specifica un percorso esatto, deve " +"essere presente almeno una <literal>componente</literal>." #. type: Content of: <refentry><refsect1><para> #: sources.list.5.xml:92 @@ -4603,6 +6736,13 @@ msgid "" "<literal>APT</literal> will automatically generate a URI with the current " "architecture otherwise." msgstr "" +"<literal>distribuzione</literal> può anche contenere una variabile " +"<literal>$(ARCH)</literal> che viene espansa nell'architettura Debian (come " +"<literal>amd64</literal> o <literal>armel</literal>) usata nel sistema. Ciò " +"consente di utilizzare file <filename>sources.list</filename> indipendenti " +"dall'architettura. In generale questo è interessante solo quando viene " +"specificato un percorso esatto, altrimenti <literal>APT</literal> genera " +"automaticamente un URI con l'architettura corrente." #. type: Content of: <refentry><refsect1><para> #: sources.list.5.xml:100 @@ -4618,6 +6758,18 @@ msgid "" "number of simultaneous anonymous users. APT also parallelizes connections to " "different hosts to more effectively deal with sites with low bandwidth." msgstr "" +"Dato che può essere specificata solo una distribuzione per riga, può essere " +"necessario avere più righe per lo stesso URI, se si desidera un sottoinsieme " +"di tutte le distribuzioni o componenti disponibili in quella posizione. APT " +"ordinerà la lista degli URI dopo aver generato internamente un insieme " +"completo, e riunirà i riferimenti multipli, per esempio al medesimo host " +"Internet in una singola connessione; in questo modo non stabilisce in modo " +"inefficiente una connessione FTP per poi chiuderla, fare qualcos'altro e " +"quindi ristabilire una connessione con il medesimo host. Questa funzionalità " +"è utile per accedere a siti FTP molto impegnati con un limite al numero di " +"accessi anonimi contemporanei. APT inoltre parallelizza le connessioni a " +"host differenti, per gestire in maniera più efficiente i siti con scarsa " +"larghezza di banda." #. type: Content of: <refentry><refsect1><para> #: sources.list.5.xml:112 @@ -4629,6 +6781,12 @@ msgid "" "following settings are supported by APT (note however that unsupported " "settings will be ignored silently):" msgstr "" +"<literal>opzioni</literal> è sempre opzionale e deve essere racchiuso tra " +"parentesi quadre. Può consistere di più impostazioni nella forma <literal><r" +"eplaceable>impostazione</replaceable>=<replaceable>valore</replaceable></lit" +"eral>. Impostazioni multiple vengono separate da spazi. APT supporta le " +"seguenti impostazioni (notare però che le impostazioni non supportate " +"verranno ignorate in modo silenzioso):" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> #: sources.list.5.xml:117 @@ -4639,6 +6797,11 @@ msgid "" "architectures defined by the <literal>APT::Architectures</literal> option " "will be downloaded." msgstr "" +"<literal>arch=<replaceable>arch1</replaceable>,<replaceable>arch2</replaceab" +"le>,…</literal> può essere usato per specificare le architetture per le " +"quali scaricare le informazioni. Se questa opzione non è impostata verranno " +"scaricate tutte le architetture definite dall'opzione " +"<literal>APT::Architectures</literal>." #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> #: sources.list.5.xml:121 @@ -4650,6 +6813,13 @@ msgid "" "and trusted context. <literal>trusted=no</literal> is the opposite which " "handles even correctly authenticated sources as not authenticated." msgstr "" +"<literal>trusted=yes</literal> può essere usato per indicare che i pacchetti " +"da questa fonte sono sempre autenticati anche se il file " +"<filename>Release</filename> non è firmato o la firma non può essere " +"controllata. Ciò disabilita parti di &apt-secure; e dovrebbe quindi essere " +"usato solo in un contesto locale o fidato. <literal>trusted=no</literal> fa " +"l'opposto e tratta anche le fonti correttamente autenticate come non " +"autenticate." #. type: Content of: <refentry><refsect1><para> #: sources.list.5.xml:128 @@ -4659,11 +6829,15 @@ msgid "" "speed from fastest to slowest (CD-ROM followed by hosts on a local network, " "followed by distant Internet hosts, for example)." msgstr "" +"È importante elencare le fonti in ordine di preferenza con la fonte " +"preferita elencata per prima. Tipicamente ciò viene fatto ordinando per " +"velocità dalla più veloce alla più lenta (per esempio CD-ROM seguiti da host " +"in una rete locale, seguiti da host Internet distanti)." #. type: Content of: <refentry><refsect1><para> #: sources.list.5.xml:133 msgid "Some examples:" -msgstr "" +msgstr "Alcuni esempi:" #. type: Content of: <refentry><refsect1><literallayout> #: sources.list.5.xml:135 @@ -4673,16 +6847,20 @@ msgid "" "deb http://security.debian.org/ &stable-codename;/updates main contrib non-free\n" " " msgstr "" +"deb http://ftp.debian.org/debian &stable-codename; main contrib non-free\n" +"deb http://security.debian.org/ &stable-codename;/updates main contrib non-" +"free\n" +" " #. type: Content of: <refentry><refsect1><title> #: sources.list.5.xml:141 msgid "URI specification" -msgstr "" +msgstr "Specificare URI" #. type: Content of: <refentry><refsect1><para> #: sources.list.5.xml:143 msgid "The currently recognized URI types are:" -msgstr "" +msgstr "I tipi di URI attualmente riconosciuti sono:" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> #: sources.list.5.xml:147 @@ -4691,6 +6869,9 @@ msgid "" "considered an archive. This is useful for NFS mounts and local mirrors or " "archives." msgstr "" +"Il tipo file permette di considerare come un archivio una directory " +"arbitraria nel file system. È utile per file system NFS montati e mirror o " +"archivi locali." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> #: sources.list.5.xml:154 @@ -4698,6 +6879,9 @@ msgid "" "The cdrom scheme allows APT to use a local CD-ROM drive with media swapping. " "Use the &apt-cdrom; program to create cdrom entries in the source list." msgstr "" +"Il tipo cdrom permette ad APT di usare un'unità CD-ROM locale cambiando i " +"supporti. Usare il programma &apt-cdrom; per creare voci cdrom nell'elenco " +"delle fonti." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> #: sources.list.5.xml:161 @@ -4709,6 +6893,12 @@ msgid "" "http://user:pass@server:port/. Note that this is an insecure method of " "authentication." msgstr "" +"Il tipo http specifica un server HTTP per l'archivio. Se è impostata una " +"variabile d'ambiente <envar>http_proxy</envar> con il formato " +"http://server:porta/, verrà usato il server proxy specificato in " +"<envar>http_proxy</envar>. Gli utenti con proxy HTTP/1.1 con autenticazione " +"possono usare una stringa nel formato http://utente:password@server:porta/. " +"Notare che questo è un metodo di autenticazione non sicuro." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> #: sources.list.5.xml:172 @@ -4722,6 +6912,13 @@ msgid "" "variable. Proxies using HTTP specified in the configuration file will be " "ignored." msgstr "" +"Il tipo ftp specifica un server FTP per l'archivio. Il comportamento FTP di " +"APT è altamente configurabile; per maggiori informazioni vedere la pagina di " +"manuale &apt-conf;. Notare che è possibile specificare un proxy FTP usando " +"la variabile d'ambiente <envar>ftp_proxy</envar>. È possibile specificare un " +"proxy HTTP (i server proxy HTTP spesso gestiscono gli URL FTP) usando " +"questa e <emphasis>SOLO</emphasis> questa variabile d'ambiente. I proxy che " +"usano HTTP specificati nel file di configurazione verranno ignorati." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> #: sources.list.5.xml:184 @@ -4731,6 +6928,10 @@ msgid "" "This is useful for people using removable media to copy files around with " "APT." msgstr "" +"Il tipo copy è identico al tipo file tranne per il fatto che i pacchetti " +"vengono copiati nella directory della cache invece di essere usati " +"direttamente dalla loro posizione. Ciò è utile per coloro che usano supporti " +"rimovibili, per copiare i file nelle varie posizioni con APT." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> #: sources.list.5.xml:191 @@ -4740,11 +6941,16 @@ msgid "" "recommended. The standard <command>find</command> and <command>dd</command> " "commands are used to perform the file transfers from the remote host." msgstr "" +"Il metodo rsh/ssh invoca RSH/SSH per connettersi ad un host remoto e " +"accedere ai file come un determinato utente. È raccomandato configurare " +"precedentemente le chiavi RSA o rhosts. Per effettuare i trasferimenti di " +"file dall'host remoto vengono usati i comandi standard " +"<command>find</command> e <command>dd</command>." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> #: sources.list.5.xml:198 msgid "adding more recognizable URI types" -msgstr "" +msgstr "aggiungere ulteriori tipi di URI riconoscibili" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> #: sources.list.5.xml:200 @@ -4757,6 +6963,13 @@ msgid "" "method. Methods for using e.g. debtorrent are also available - see &apt-" "transport-debtorrent;." msgstr "" +"APT può essere esteso con ulteriori metodi forniti in altri pacchetti " +"opzionali, i cui nomi devono seguire lo schema <package>apt-" +"transport-<replaceable>metodo</replaceable>. Per esempio, il team di APT " +"mantiene anche il pacchetto <package>apt-transport-https</package> che " +"fornisce i metodi di accesso per URI HTTPS con funzionalità simili a quelle " +"del metodo http. Sono disponibili anche i metodi per usare, ad esempio, " +"debtorrrent; vedere &apt-transport-debtorrent;." #. type: Content of: <refentry><refsect1><para> #: sources.list.5.xml:212 @@ -4764,34 +6977,38 @@ msgid "" "Uses the archive stored locally (or NFS mounted) at /home/jason/debian for " "stable/main, stable/contrib, and stable/non-free." msgstr "" +"Usa l'archivio memorizzato in locale (o montato via NFS) in " +"/home/gianni/debian per stable/main, stable/contrib e stable/non-free." #. type: Content of: <refentry><refsect1><literallayout> #: sources.list.5.xml:214 #, no-wrap msgid "deb file:/home/jason/debian stable main contrib non-free" -msgstr "" +msgstr "deb file:/home/gianni/debian stable main contrib non-free" #. type: Content of: <refentry><refsect1><para> #: sources.list.5.xml:216 msgid "As above, except this uses the unstable (development) distribution." msgstr "" +"Come sopra, tranne per il fatto che usa la distribuzione unstable (di " +"sviluppo)" #. type: Content of: <refentry><refsect1><literallayout> #: sources.list.5.xml:217 #, no-wrap msgid "deb file:/home/jason/debian unstable main contrib non-free" -msgstr "" +msgstr "deb file:/home/gianni/debian unstable main contrib non-free" #. type: Content of: <refentry><refsect1><para> #: sources.list.5.xml:219 msgid "Source line for the above" -msgstr "" +msgstr "Riga per i sorgenti corrispondente alla precedente" #. type: Content of: <refentry><refsect1><literallayout> #: sources.list.5.xml:220 #, no-wrap msgid "deb-src file:/home/jason/debian unstable main contrib non-free" -msgstr "" +msgstr "deb-src file:/home/gianni/debian unstable main contrib non-free" #. type: Content of: <refentry><refsect1><para> #: sources.list.5.xml:222 @@ -4800,6 +7017,9 @@ msgid "" "<literal>APT::Architectures</literal> while the second always retrieves " "<literal>amd64</literal> and <literal>armel</literal>." msgstr "" +"La prima riga ottiene le informazioni sui pacchetti per le architetture in " +"<literal>APT::Architectures</literal>, mentre la seconda scarica sempre " +"<literal>amd64</literal> e <literal>armel</literal>." #. type: Content of: <refentry><refsect1><literallayout> #: sources.list.5.xml:224 @@ -4808,6 +7028,8 @@ msgid "" "deb http://ftp.debian.org/debian &stable-codename; main\n" "deb [ arch=amd64,armel ] http://ftp.debian.org/debian &stable-codename; main" msgstr "" +"deb http://ftp.debian.org/debian &stable-codename; main\n" +"deb [ arch=amd64,armel ] http://ftp.debian.org/debian &stable-codename; main" #. type: Content of: <refentry><refsect1><para> #: sources.list.5.xml:227 @@ -4815,12 +7037,14 @@ msgid "" "Uses HTTP to access the archive at archive.debian.org, and uses only the " "hamm/main area." msgstr "" +"Usa HTTP per accedere all'archivio in archive.debian.org e usa solo l'area " +"hamm/main." #. type: Content of: <refentry><refsect1><literallayout> #: sources.list.5.xml:229 #, no-wrap msgid "deb http://archive.debian.org/debian-archive hamm main" -msgstr "" +msgstr "deb http://archive.debian.org/debian-archive hamm main" #. type: Content of: <refentry><refsect1><para> #: sources.list.5.xml:231 @@ -4828,12 +7052,14 @@ msgid "" "Uses FTP to access the archive at ftp.debian.org, under the debian " "directory, and uses only the &stable-codename;/contrib area." msgstr "" +"Usa FTP per accedere all'archivio in ftp.debian.org, nella directory debian " +"e usa solo l'area &stable-codename;/contrib." #. type: Content of: <refentry><refsect1><literallayout> #: sources.list.5.xml:233 #, no-wrap msgid "deb ftp://ftp.debian.org/debian &stable-codename; contrib" -msgstr "" +msgstr "deb ftp://ftp.debian.org/debian &stable-codename; contrib" #. type: Content of: <refentry><refsect1><para> #: sources.list.5.xml:235 @@ -4843,18 +7069,22 @@ msgid "" "well as the one in the previous example in <filename>sources.list</filename> " "a single FTP session will be used for both resource lines." msgstr "" +"Usa FTP per accedere all'archivio in ftp.debian.org nella directory debian e " +"usa solo l'area unstable/contrib. Se in <filename>sources.list</filename> " +"sono presenti sia questa riga sia quella nell'esempio precedente, verrà " +"usata una sola sessione FTP per entrambe le righe." #. type: Content of: <refentry><refsect1><literallayout> #: sources.list.5.xml:239 #, no-wrap msgid "deb ftp://ftp.debian.org/debian unstable contrib" -msgstr "" +msgstr "deb ftp://ftp.debian.org/debian unstable contrib" #. type: Content of: <refentry><refsect1><para><literallayout> #: sources.list.5.xml:248 #, no-wrap msgid "deb http://ftp.tlh.debian.org/universe unstable/binary-$(ARCH)/" -msgstr "" +msgstr "deb http://ftp.tlh.debian.org/universe unstable/binary-$(ARCH)/" #. type: Content of: <refentry><refsect1><para> #: sources.list.5.xml:241 @@ -4867,16 +7097,24 @@ msgid "" "archives are not structured like this] <placeholder type=\"literallayout\" " "id=\"0\"/>" msgstr "" +"Usa HTTP per accedere all'archivio in ftp.tlh.debian.org nella directory " +"universe e usa solo i file che si trovano in " +"<filename>unstable/binary-i386</filename> sulle macchine i386, " +"<filename>unstable/binary-amd64</filename> su quelle amd64 e così via per le " +"altre architetture supportate. [Notare che questo esempio illustra " +"solamente come usare la variabile per la sostituzione; gli archivi Debian " +"ufficiali non sono strutturati in questo modo.] <placeholder " +"type=\"literallayout\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><para> #: sources.list.5.xml:253 msgid "&apt-cache; &apt-conf;" -msgstr "" +msgstr "&apt-cache; &apt-conf;" #. type: Content of: <refentry><refmeta><manvolnum> #: apt-extracttemplates.1.xml:26 apt-sortpkgs.1.xml:26 apt-ftparchive.1.xml:26 msgid "1" -msgstr "" +msgstr "1" #. type: Content of: <refentry><refnamediv><refpurpose> #: apt-extracttemplates.1.xml:33 @@ -4884,6 +7122,8 @@ msgid "" "Utility to extract <command>debconf</command> config and templates from " "Debian packages" msgstr "" +"utilità per estrarre configurazioni e modelli <command>debconf</command> dai " +"pacchetti Debian" #. type: Content of: <refentry><refsect1><para> #: apt-extracttemplates.1.xml:39 @@ -4894,11 +7134,16 @@ msgid "" "config scripts and templates, one line of output will be generated in the " "format:" msgstr "" +"<command>apt-extracttemplates</command> accetta in input uno o più file di " +"pacchetti Debian e scrive (in una directory temporanea) tutti gli script di " +"configurazione e i file template associati. Per ogni pacchetto ricevuto che " +"contenga script di configurazione e template, verrà generata una riga in " +"output nel formato:" #. type: Content of: <refentry><refsect1><para> #: apt-extracttemplates.1.xml:44 msgid "package version template-file config-script" -msgstr "" +msgstr "pacchetto versione file-template script-di-configurazione" #. type: Content of: <refentry><refsect1><para> #: apt-extracttemplates.1.xml:45 @@ -4909,6 +7154,11 @@ msgid "" "filenames of the form <filename>package.template.XXXX</filename> and " "<filename>package.config.XXXX</filename>" msgstr "" +"file-template e script-di-configurazione sono scritti nella directory " +"temporanea specificata da <option>-t</option> o <option>--tempdir</option> " +"(<literal>APT::ExtractTemplates::TempDir</literal>), con i nomi dei file " +"nella forma <filename>pacchetto.template.XXXX</filename> e " +"<filename>pacchetto.config.XXXX</filename>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-extracttemplates.1.xml:58 @@ -4917,6 +7167,9 @@ msgid "" "template files and config scripts. Configuration Item: <literal>APT::" "ExtractTemplates::TempDir</literal>" msgstr "" +"Directory temporanea dove scrivere gli script di configurazione e i file " +"template di <command>debconf</command> estratti. Voce di configurazione: " +"<literal>APT::ExtractTemplates::TempDir</literal>." #. type: Content of: <refentry><refsect1><para> #: apt-extracttemplates.1.xml:75 @@ -4924,11 +7177,13 @@ msgid "" "<command>apt-extracttemplates</command> returns zero on normal operation, " "decimal 100 on error." msgstr "" +"<command>apt-extracttemplates</command>restituisce zero in caso di " +"funzionamento normale e il valore decimale 100 in caso di errore." #. type: Content of: <refentry><refnamediv><refpurpose> #: apt-sortpkgs.1.xml:33 msgid "Utility to sort package index files" -msgstr "" +msgstr "utilità per ordinare i file indice dei pacchetti" #. type: Content of: <refentry><refsect1><para> #: apt-sortpkgs.1.xml:39 @@ -4938,12 +7193,17 @@ msgid "" "name. It will also sort the internal fields of each record according to the " "internal sorting rules." msgstr "" +"<command>apt-sortpkgs</command> accetta un file indice (indice di sorgenti o " +"di pacchetti) e ordina i record in base al nome del pacchetto. Ordina anche " +"i campi interni ad ogni record in base alle regole di ordinamento interne." #. type: Content of: <refentry><refsect1><para> #: apt-sortpkgs.1.xml:45 msgid "" "All output is sent to standard output; the input must be a seekable file." msgstr "" +"Tutto l'output viene inviato sullo standard output; l'input deve essere un " +"file leggibile con seek." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-sortpkgs.1.xml:54 @@ -4951,6 +7211,8 @@ msgid "" "Use source index field ordering. Configuration Item: <literal>APT::" "SortPkgs::Source</literal>." msgstr "" +"Usa l'ordinamento dei campi dell'indice dei sorgenti. Voce di " +"configurazione: <literal>APT::SortPkgs::Source</literal>." #. type: Content of: <refentry><refsect1><para> #: apt-sortpkgs.1.xml:68 @@ -4958,11 +7220,13 @@ msgid "" "<command>apt-sortpkgs</command> returns zero on normal operation, decimal " "100 on error." msgstr "" +"<command>apt-sortpkgs</command> restituisce zero in caso di funzionamento " +"normale e il valore decimale 100 in caso di errore." #. type: Content of: <refentry><refnamediv><refpurpose> #: apt-ftparchive.1.xml:33 msgid "Utility to generate index files" -msgstr "" +msgstr "strumento per generare file indice" #. type: Content of: <refentry><refsect1><para> #: apt-ftparchive.1.xml:39 @@ -4972,6 +7236,10 @@ msgid "" "files should be generated on the origin site based on the content of that " "site." msgstr "" +"<command>apt-ftparchive</command> è lo strumento a riga di comando che " +"genera i file indice usati da APT per accedere a una fonte di distribuzione. " +"I file indice devono essere generati sul sito origine in base al contenuto " +"di tale sito." #. type: Content of: <refentry><refsect1><para> #: apt-ftparchive.1.xml:43 @@ -4982,6 +7250,11 @@ msgid "" "<literal>contents</literal>, and an elaborate means to 'script' the " "generation process for a complete archive." msgstr "" +"<command>apt-ftparchive</command> è un sovrainsieme del programma &dpkg-" +"scanpackages; e incorpora tutte le sue funzionalità tramite il comando " +"<literal>packages</literal>. Inoltre contiene un generatore di file dei " +"contenuti, <literal>contents</literal>, e un modo elaborato per gestire " +"tramite script il processo di generazione per un archivio completo." #. type: Content of: <refentry><refsect1><para> #: apt-ftparchive.1.xml:49 @@ -4992,6 +7265,11 @@ msgid "" "automatically performs file-change checks and builds the desired compressed " "output files." msgstr "" +"Internamente <command>apt-ftparchive</command> può far uso di database " +"binari per tenere in cache il contenuto di un file .deb e non si basa su " +"programmi esterni all'infuori di &gzip;. Quando genera un archivio completo, " +"esegue automaticamente un controllo sui file modificati e crea i file " +"compressi desiderati in uscita." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:60 @@ -5001,12 +7279,18 @@ msgid "" "emitting a package record to stdout for each. This command is approximately " "equivalent to &dpkg-scanpackages;." msgstr "" +"Il comando packages genera un file dell'indice di pacchetti da un albero di " +"directory. Prende la directory data e vi ricerca i file .deb ricorsivamente, " +"emettendo per ciascuno un record sullo stdout. Questo comando è più o meno " +"equivalente a &dpkg-scanpackages;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:65 apt-ftparchive.1.xml:89 msgid "" "The option <option>--db</option> can be used to specify a binary caching DB." msgstr "" +"L'opzione <option>--db</option> può essere usata per specificare un database " +"binario da usare come cache." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:70 @@ -5016,6 +7300,10 @@ msgid "" "for .dsc files, emitting a source record to stdout for each. This command is " "approximately equivalent to &dpkg-scansources;." msgstr "" +"Il comando <literal>sources</literal> genera un file indice dei sorgenti da " +"un albero di directory. Prende la directory data e vi ricerca i file .dsc " +"ricorsivamente, emettendo per ciascuno un record sullo stdout. Questo " +"comando è più o meno equivalente a &dpkg-scansources;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:75 @@ -5024,6 +7312,9 @@ msgid "" "for with an extension of .src. The --source-override option can be used to " "change the source override file that will be used." msgstr "" +"Se si specifica un file override, allora verrà cercato un file override " +"sorgente con estensione .src. L'opzione --source-override può essere usata " +"per cambiare il file override sorgente da usare." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:82 @@ -5035,6 +7326,12 @@ msgid "" "written to the output. If multiple packages own the same file then each " "package is separated by a comma in the output." msgstr "" +"Il comando <literal>contents</literal> genera un file di contenuti da un " +"albero di directory. Prende la directory data e vi ricerca i file .deb " +"ricorsivamente, leggendo l'elenco dei file da ciascun file. Quindi ordina e " +"scrive sullo stdout l'elenco di file con i corrispondenti pacchetti. Le " +"directory non vengono scritte sull'output. Se più pacchetti contengono lo " +"stesso file, ciascun pacchetto è separato da una virgola nell'output." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:94 @@ -5050,6 +7347,17 @@ msgid "" "literal>. It then writes to stdout a <filename>Release</filename> file " "containing an MD5, SHA1 and SHA256 digest for each file." msgstr "" +"Il comando <literal>release</literal> genera un file Release da un albero di " +"directory. In modo predefinito cerca ricorsivamente nella directory data i " +"file <filename>Packages</filename> e <filename>Sources</filename> non " +"compressi e quelli compressi con <command>gzip</command>, " +"<command>bzip2</command> o <command>lzma</command>, come anche i file " +"<filename>Release</filename> e <filename>md5sum.txt</filename> " +"(<literal>APT::FTPArchive::Release::Default-Patterns</literal>). Si possono " +"aggiungere ulteriori modelli per i nomi di file elencandoli in " +"<literal>APT::FTPArchive::Release::Patterns</literal>. Scrive poi sullo " +"stdout un file <filename>Release</filename> contenente per ogni file un " +"digest MD5, SHA1 e SHA256." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:104 @@ -5063,6 +7371,14 @@ msgid "" "<literal>Architectures</literal>, <literal>Components</literal>, " "<literal>Description</literal>." msgstr "" +"I valori dei campi di metadati aggiuntivi nel file Release sono presi dalle " +"variabili corrispondenti sotto <literal>APT::FTPArchive::Release</literal>, " +"ad esempio <literal>APT::FTPArchive::Release::Origin</literal>. I campi " +"supportati sono: <literal>Origin</literal>, <literal>Label</literal>, " +"<literal>Suite</literal>, <literal>Version</literal>, " +"<literal>Codename</literal>, <literal>Date</literal>, <literal>Valid-" +"Until</literal>, <literal>Architectures</literal>, " +"<literal>Components</literal>, <literal>Description</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:117 @@ -5073,6 +7389,12 @@ msgid "" "are built from which directories, as well as providing a simple means of " "maintaining the required settings." msgstr "" +"Il comando <literal>generate</literal> è pensato per essere eseguibile da " +"uno script di cron e costruisce gli indici in base al file di configurazione " +"fornito. Il linguaggio di configurazione fornisce un mezzo flessibile per " +"specificare quali file di indice vengano costruiti a partire da quali " +"directory, oltre a fornire un mezzo semplice per amministrare le " +"impostazioni desiderate." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:126 @@ -5080,11 +7402,13 @@ msgid "" "The <literal>clean</literal> command tidies the databases used by the given " "configuration file by removing any records that are no longer necessary." msgstr "" +"Il comando <literal>clean</literal> pulisce i database usati dal file di " +"configurazione dato, rimuovendo tutti i record non più necessari." #. type: Content of: <refentry><refsect1><title> #: apt-ftparchive.1.xml:132 msgid "The Generate Configuration" -msgstr "" +msgstr "La configurazione di generate" #. type: Content of: <refentry><refsect1><para> #: apt-ftparchive.1.xml:134 @@ -5096,17 +7420,25 @@ msgid "" "configuration is parsed in sectional manner, but &apt-conf; is parsed in a " "tree manner. This only effects how the scope tag is handled." msgstr "" +"Il comando <literal>generate</literal> usa un file di configurazione per " +"descrivere gli archivi da generare. Segue il tipico formato di " +"configurazione ISC come usato negli strumenti ISC come bind 8 e dhcpd. &apt-" +"conf; contiene una descrizione della sintassi. Notare che la configurazione " +"di generate viene letta per sezioni, ma &apt-conf; viene letto ad albero. " +"Ciò ha effetto soltanto sulla gestione del tag di ambito." #. type: Content of: <refentry><refsect1><para> #: apt-ftparchive.1.xml:142 msgid "" "The generate configuration has four separate sections, each described below." msgstr "" +"La configurazione di generate ha quattro sezioni separate, ciascuna delle " +"quali è descritta in seguito." #. type: Content of: <refentry><refsect1><refsect2><title> #: apt-ftparchive.1.xml:144 msgid "<literal>Dir</literal> Section" -msgstr "" +msgstr "Sezione <literal>Dir</literal>" #. type: Content of: <refentry><refsect1><refsect2><para> #: apt-ftparchive.1.xml:146 @@ -5116,6 +7448,10 @@ msgid "" "directories are prepended certain relative paths defined in later sections " "to produce a complete an absolute path." msgstr "" +"La sezione <literal>Dir</literal> definisce le directory standard necessarie " +"per localizzare i file richiesti durante il processo di generazione. Queste " +"directory vengono fatte precedere da alcuni percorsi relativi definiti " +"nelle sezioni successive, per produrre un percorso assoluto completo." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:153 @@ -5124,16 +7460,19 @@ msgid "" "this is the directory that contains the <filename>ls-LR</filename> and dist " "nodes." msgstr "" +"Specifica la radice dell'archivio FTP; in una configurazione Debian standard " +"questa è la directory che contiene i nodi <filename>ls-LR</filename> e " +"dist." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:160 msgid "Specifies the location of the override files." -msgstr "" +msgstr "Specifica la posizione dei file override." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:165 msgid "Specifies the location of the cache files." -msgstr "" +msgstr "Specifica la posizione dei file cache." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:170 @@ -5141,11 +7480,13 @@ msgid "" "Specifies the location of the file list files, if the <literal>FileList</" "literal> setting is used below." msgstr "" +"Specifica la posizione dei file con gli elenchi dei file, se viene usata " +"l'impostazione <literal>FileList</literal> sotto." #. type: Content of: <refentry><refsect1><refsect2><title> #: apt-ftparchive.1.xml:176 msgid "<literal>Default</literal> Section" -msgstr "" +msgstr "Sezione <literal>Default</literal>" #. type: Content of: <refentry><refsect1><refsect2><para> #: apt-ftparchive.1.xml:178 @@ -5154,6 +7495,9 @@ msgid "" "settings that control the operation of the generator. Other sections may " "override these defaults with a per-section setting." msgstr "" +"La sezione <literal>Default</literal> specifica i valori predefiniti e le " +"impostazioni che controllano il funzionamento del generatore. Altre sezioni " +"possono scavalcare questi valori tramite impostazioni definite per sezione." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:184 @@ -5163,6 +7507,10 @@ msgid "" "compression), 'gzip' and 'bzip2'. The default for all compression schemes is " "'. gzip'." msgstr "" +"Imposta gli schemi di compressione predefiniti da usare per i file indice " +"dei pacchetti. È una stringa che contiene una lista separata da spazi con " +"almeno uno fra «.» (nessuna compressione), «gzip» e «bzip2». Il valore " +"predefinito per tutti gli schemi di compressione è «. gzip»." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:192 @@ -5170,6 +7518,8 @@ msgid "" "Sets the default list of file extensions that are package files. This " "defaults to '.deb'." msgstr "" +"Imposta la lista predefinita di estensioni di file che contraddistinguono i " +"file dei pacchetti. Il valore predefinito è «.deb»." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:198 @@ -5177,6 +7527,8 @@ msgid "" "This is similar to <literal>Packages::Compress</literal> except that it " "controls the compression for the Sources files." msgstr "" +"Simile a <literal>Packages::Compress</literal>, tranne per il fatto che " +"controlla la compressione dei file Sources." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:204 @@ -5184,6 +7536,8 @@ msgid "" "Sets the default list of file extensions that are source files. This " "defaults to '.dsc'." msgstr "" +"Imposta la lista predefinita di estensioni che contraddistinguono i file dei " +"sorgenti. Il valore predefinito è «.dsc»." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:210 @@ -5191,6 +7545,8 @@ msgid "" "This is similar to <literal>Packages::Compress</literal> except that it " "controls the compression for the Contents files." msgstr "" +"Simile a <literal>Packages::Compress</literal>, tranne per il fatto che " +"controlla la compressione dei file Contents." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:216 @@ -5198,6 +7554,8 @@ msgid "" "This is similar to <literal>Packages::Compress</literal> except that it " "controls the compression for the Translation-en master file." msgstr "" +"Simile a <literal>Packages::Compress</literal>, tranne per il fatto che " +"controlla la compressione del file principale Translation-en." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:222 @@ -5206,6 +7564,9 @@ msgid "" "per run. This is used in conjunction with the per-section <literal>External-" "Links</literal> setting." msgstr "" +"Specifica il numero dei kilobyte da scollegare (e sostituire con " +"collegamenti fisici) per esecuzione. Viene usato insieme all'impostazione " +"per sezione <literal>External-Links</literal>." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:229 @@ -5213,6 +7574,9 @@ msgid "" "Specifies the mode of all created index files. It defaults to 0644. All " "index files are set to this mode with no regard to the umask." msgstr "" +"Specifica la modalità di tutti i file indice creati. Il valore predefinito è " +"0644. Tutti i file di indice sono impostati a questa modalità a prescindere " +"dall'umask." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:236 apt-ftparchive.1.xml:382 @@ -5221,11 +7585,14 @@ msgid "" "<filename>Packages</filename> file or split out into a master " "<filename>Translation-en</filename> file." msgstr "" +"Specifica se le descrizioni lunghe debbano essere incluse nel file " +"<filename>Packages</filename> o separate in un file <filename>Translation-" +"en</filename> principale." #. type: Content of: <refentry><refsect1><refsect2><title> #: apt-ftparchive.1.xml:242 msgid "<literal>TreeDefault</literal> Section" -msgstr "" +msgstr "Sezione <literal>TreeDefault</literal>" #. type: Content of: <refentry><refsect1><refsect2><para> #: apt-ftparchive.1.xml:244 @@ -5234,6 +7601,10 @@ msgid "" "variables are substitution variables and have the strings $(DIST), " "$(SECTION) and $(ARCH) replaced with their respective values." msgstr "" +"Imposta valori predefiniti specifici per le sezioni <literal>Tree</literal>. " +"Tutte queste variabili sono variabili di sostituzione in cui le stringhe " +"$(DIST), $(SECTION) e $(ARCH) verranno sostituite dai loro rispettivi " +"valori." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:251 @@ -5242,6 +7613,9 @@ msgid "" "The contents files are round-robined so that over several days they will all " "be rebuilt." msgstr "" +"Imposta il numero di kilobyte di file Contents che vengono generati ogni " +"giorno. I file Contents sono ruotati a turno in modo da venire rigenerati " +"tutti nel giro di alcuni giorni." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:258 @@ -5253,6 +7627,14 @@ msgid "" "is allowed in hopes that new .debs will be installed, requiring a new file " "anyhow. The default is 10, the units are in days." msgstr "" +"Controlla il numero di giorni durante i quali un file Contents può essere " +"controllato senza modifiche. Al superamento di questo limite, l'orario mtime " +"del file Contents viene aggiornato. Questo può succedere se il file " +"Packages viene modificato in un modo che non ha come risultato un nuovo file " +"Contents [ad esempio una modifica di override]. È consentito un certo " +"ritardo, nella speranza che vengano installati nuovi pacchetti .deb, il che " +"richiederebbe comunque la creazione di un nuovo file. Il valore predefinito " +"è 10, i valori sono espressi in giorni." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:269 @@ -5260,6 +7642,8 @@ msgid "" "Sets the top of the .deb directory tree. Defaults to <filename>$(DIST)/" "$(SECTION)/binary-$(ARCH)/</filename>" msgstr "" +"Imposta la radice dell'albero della directory dei .deb. Il valore " +"predefinito è <filename>$(DIST)/$(SECTION)/binary-$(ARCH)/</filename>." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:275 @@ -5267,6 +7651,8 @@ msgid "" "Sets the top of the source package directory tree. Defaults to <filename>" "$(DIST)/$(SECTION)/source/</filename>" msgstr "" +"Imposta la radice dell'albero della directory dei pacchetti sorgente. Il " +"valore predefinito è <filename>$(DIST)/$(SECTION)/source/</filename>." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:281 @@ -5274,6 +7660,8 @@ msgid "" "Sets the output Packages file. Defaults to <filename>$(DIST)/$(SECTION)/" "binary-$(ARCH)/Packages</filename>" msgstr "" +"Imposta il file Packages di uscita. Il valore predefinito è " +"<filename>$(DIST)/$(SECTION)/binary-$(ARCH)/Packages</filename>." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:287 @@ -5281,6 +7669,8 @@ msgid "" "Sets the output Sources file. Defaults to <filename>$(DIST)/$(SECTION)/" "source/Sources</filename>" msgstr "" +"Imposta il file Sources di uscita. Il valore predefinito è " +"<filename>$(DIST)/$(SECTION)/source/Sources</filename>." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:293 @@ -5289,6 +7679,9 @@ msgid "" "they should be not included in the Packages file. Defaults to <filename>" "$(DIST)/$(SECTION)/i18n/Translation-en</filename>" msgstr "" +"Imposta il file Translation-en principale di uscita contenente le " +"descrizioni lunghe se non devono essere incluse nel file Packages. Il valore " +"predefinito è <filename>$(DIST)/$(SECTION)/i18n/Translation-en</filename>." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:300 @@ -5297,6 +7690,9 @@ msgid "" "instead of an external link. Defaults to <filename>$(DIST)/$(SECTION)/</" "filename>" msgstr "" +"Imposta il prefisso del percorso che fa sì che un collegamento simbolico sia " +"considerato un collegamento interno invece che esterno. Il valore " +"predefinito è <filename>$(DIST)/$(SECTION)/</filename>." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:307 @@ -5307,11 +7703,17 @@ msgid "" "ftparchive</command> will integrate those package files together " "automatically." msgstr "" +"Imposta il file Contents di uscita. Il valore predefinito è " +"<filename>$(DIST)/$(SECTION)/Contents-$(ARCH)</filename>. Se questa " +"impostazione fa sì che più file Packages corrispondano a un solo file " +"Contents (come avviene con il valore predefinito), allora <command>apt-" +"ftparchive</command> unirà automaticamente insieme questi file dei " +"pacchetti." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:316 msgid "Sets header file to prepend to the contents output." -msgstr "" +msgstr "Imposta il file di intestazione da anteporre all'output dei contenuti." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:321 @@ -5319,6 +7721,8 @@ msgid "" "Sets the binary cache database to use for this section. Multiple sections " "can share the same database." msgstr "" +"Imposta il database per la cache binaria da usare per questa sezione. Lo " +"stesso database può essere condiviso da più sezioni." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:327 @@ -5327,6 +7731,9 @@ msgid "" "ftparchive</command> should read the list of files from the given file. " "Relative files names are prefixed with the archive directory." msgstr "" +"Specifica che invece di percorrere l'albero delle directory, <command>apt-" +"ftparchive</command> deve leggere la lista dei file dal file dato. I nomi " +"relativi dei file vengono fatti precedere dalla directory archivio." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:334 @@ -5336,11 +7743,15 @@ msgid "" "Relative files names are prefixed with the archive directory. This is used " "when processing source indexes." msgstr "" +"Specifica che invece di percorrere l'albero delle directory, <command>apt-" +"ftparchive</command> deve leggere la lista dei file dal file dato. I nomi di " +"file relativi vengono fatti precedere dalla directory archivio. Questa " +"opzione viene usata quando si elaborano gli indici dei sorgenti." #. type: Content of: <refentry><refsect1><refsect2><title> #: apt-ftparchive.1.xml:342 msgid "<literal>Tree</literal> Section" -msgstr "" +msgstr "Sezione <literal>Tree</literal>" #. type: Content of: <refentry><refsect1><refsect2><para> #: apt-ftparchive.1.xml:344 @@ -5351,6 +7762,11 @@ msgid "" "pathing used is defined by the <literal>Directory</literal> substitution " "variable." msgstr "" +"La sezione <literal>Tree</literal> definisce un albero di file standard " +"Debian che consiste in una directory di base, quindi più sezioni in quella " +"directory di base e infine più architetture in ogni sezione. Gli esatti " +"percorsi usati sono definiti dalla variabile di sostituzione " +"<literal>Directory</literal>." #. type: Content of: <refentry><refsect1><refsect2><para> #: apt-ftparchive.1.xml:349 @@ -5360,6 +7776,10 @@ msgid "" "path is prefixed by <literal>ArchiveDir</literal>). Typically this is a " "setting such as <filename>dists/&stable-codename;</filename>." msgstr "" +"La sezione <literal>Tree</literal> accetta un tag di ambito che imposta la " +"variabile <literal>$(DIST)</literal> e definisce la radice dell'albero (il " +"percorso viene fatto precedere da <literal>ArchiveDir</literal>). Di solito " +"è un'impostazione simile a <filename>dists/&stable-codename;</filename>." #. type: Content of: <refentry><refsect1><refsect2><para> #: apt-ftparchive.1.xml:354 @@ -5368,6 +7788,9 @@ msgid "" "can be used in a <literal>Tree</literal> section as well as three new " "variables." msgstr "" +"Tutte le impostazioni definite nella sezione <literal>TreeDefault</literal> " +"possono essere usate in una sezione <literal>Tree</literal>, oltre a tre " +"nuove variabili." #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> #: apt-ftparchive.1.xml:360 @@ -5378,6 +7801,10 @@ msgid "" " Generate for DIST=scope SECTION=i ARCH=j\n" " " msgstr "" +"for i in Sections do \n" +" for j in Architectures do\n" +" Genera per DIST=ambito SECTION=i ARCH=j\n" +" " #. type: Content of: <refentry><refsect1><refsect2><para> #: apt-ftparchive.1.xml:357 @@ -5386,6 +7813,9 @@ msgid "" "command> performs an operation similar to: <placeholder type=\"programlisting" "\" id=\"0\"/>" msgstr "" +"Quando elabora una sezione <literal>Tree</literal>, <command>apt-" +"ftparchive</command> esegue un'operazione simile a: <placeholder " +"type=\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:368 @@ -5394,6 +7824,8 @@ msgid "" "distribution; typically this is something like <literal>main contrib non-" "free</literal>" msgstr "" +"Questa è una lista di sezioni che appaiono sotto la distribuzione, separate " +"da spazi; tipicamente è simile a <literal>main contrib non-free</literal>." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:375 @@ -5402,6 +7834,9 @@ msgid "" "search section. The special architecture 'source' is used to indicate that " "this tree has a source archive." msgstr "" +"Questa è una lista di tutte le architetture che appaiono sotto una sezione, " +"separate da spazi. L'architettura speciale «source» è usata per indicare che " +"questo albero ha un archivio sorgente." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:388 @@ -5409,6 +7844,8 @@ msgid "" "Sets the binary override file. The override file contains section, priority " "and maintainer address information." msgstr "" +"Imposta il file override binario. Il file override contiene informazioni " +"sulla sezione, la priorità e l'indirizzo del manutentore." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:394 @@ -5416,21 +7853,23 @@ msgid "" "Sets the source override file. The override file contains section " "information." msgstr "" +"Imposta il file override sorgente. Il file override contiene informazioni " +"sulla sezione." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:400 apt-ftparchive.1.xml:446 msgid "Sets the binary extra override file." -msgstr "" +msgstr "Imposta il file override binario extra." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:405 apt-ftparchive.1.xml:451 msgid "Sets the source extra override file." -msgstr "" +msgstr "Imposta il file override sorgente extra." #. type: Content of: <refentry><refsect1><refsect2><title> #: apt-ftparchive.1.xml:410 msgid "<literal>BinDirectory</literal> Section" -msgstr "" +msgstr "Sezione <literal>BinDirectory</literal>" #. type: Content of: <refentry><refsect1><refsect2><para> #: apt-ftparchive.1.xml:412 @@ -5441,11 +7880,16 @@ msgid "" "section with no substitution variables or <literal>Section</" "literal><literal>Architecture</literal> settings." msgstr "" +"La sezione <literal>bindirectory</literal> definisce un albero di directory " +"dei binari senza una struttura speciale. Il tag di ambito specifica la " +"posizione della directory dei binari e le impostazioni sono simili a quelle " +"della sezione <literal>Tree</literal> senza variabili di sostituzione o " +"impostazioni <literal>Section</literal><literal>Architecture</literal>." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:420 msgid "Sets the Packages file output." -msgstr "" +msgstr "Imposta l'output del file Packages." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:425 @@ -5453,41 +7897,43 @@ msgid "" "Sets the Sources file output. At least one of <literal>Packages</literal> or " "<literal>Sources</literal> is required." msgstr "" +"Imposta l'output del file Sources. È obbligatorio almeno uno fra " +"<literal>Packages</literal> e <literal>Sources</literal>." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:431 msgid "Sets the Contents file output (optional)." -msgstr "" +msgstr "Imposta l'output del file Contents (opzionale)." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:436 msgid "Sets the binary override file." -msgstr "" +msgstr "Imposta il file override binario." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:441 msgid "Sets the source override file." -msgstr "" +msgstr "Imposta il file override sorgente." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:456 msgid "Sets the cache DB." -msgstr "" +msgstr "Imposta il DB della cache." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:461 msgid "Appends a path to all the output paths." -msgstr "" +msgstr "Aggiunge un percorso a tutti i percorsi di uscita." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:466 msgid "Specifies the file list file." -msgstr "" +msgstr "Specifica il file con l'elenco dei file." #. type: Content of: <refentry><refsect1><title> #: apt-ftparchive.1.xml:473 msgid "The Binary Override File" -msgstr "" +msgstr "Il file override binario" #. type: Content of: <refentry><refsect1><para> #: apt-ftparchive.1.xml:474 @@ -5498,18 +7944,23 @@ msgid "" "section to force that package to and the final field is the maintainer " "permutation field." msgstr "" +"Il file override binario è completamente compatibile con &dpkg-" +"scanpackages;. Contiene quattro campi separati da spazi. Il primo campo è il " +"nome del pacchetto, il secondo è la priorità a cui forzare quel pacchetto, " +"il terzo è la sezione in cui forzare quel pacchetto e l'ultimo campo è il " +"campo di permutazione del manutentore." #. type: Content of: <refentry><refsect1><para><literallayout> #: apt-ftparchive.1.xml:480 #, no-wrap msgid "old [// oldn]* => new" -msgstr "" +msgstr "vecchio [// vecchio...]* => nuovo" #. type: Content of: <refentry><refsect1><para><literallayout> #: apt-ftparchive.1.xml:482 #, no-wrap msgid "new" -msgstr "" +msgstr "nuovo" #. type: Content of: <refentry><refsect1><para> #: apt-ftparchive.1.xml:479 @@ -5521,11 +7972,17 @@ msgid "" "for the maintainer field. The second form unconditionally substitutes the " "maintainer field." msgstr "" +"La forma generale del campo manutentore è: <placeholder type=\"literallayout\" " +"id=\"0\"/> o semplicemente <placeholder type=\"literallayout\" id=\"1\"/>. La " +"prima forma consente di specificare una lista di vecchi indirizzi di posta " +"elettronica separati da una doppia sbarra. Se qualcuno di essi viene " +"trovato, allora il campo manutentore viene sostituito con «nuovo». La " +"seconda forma sostituisce invariabilmente il campo manutentore." #. type: Content of: <refentry><refsect1><title> #: apt-ftparchive.1.xml:490 msgid "The Source Override File" -msgstr "" +msgstr "Il file override sorgente" #. type: Content of: <refentry><refsect1><para> #: apt-ftparchive.1.xml:492 @@ -5534,11 +7991,14 @@ msgid "" "contains two fields separated by spaces. The first field is the source " "package name, the second is the section to assign it." msgstr "" +"Il file override sorgente è completamente compatibile con &dpkg-" +"scansources;. Contiene due campi separati da spazi. Il primo campo è il nome " +"del pacchetto sorgente, il secondo è la sezione a cui assegnarlo." #. type: Content of: <refentry><refsect1><title> #: apt-ftparchive.1.xml:497 msgid "The Extra Override File" -msgstr "" +msgstr "Il file override extra" #. type: Content of: <refentry><refsect1><para> #: apt-ftparchive.1.xml:499 @@ -5547,6 +8007,9 @@ msgid "" "the output. It has three columns, the first is the package, the second is " "the tag and the remainder of the line is the new value." msgstr "" +"Il file override extra permette di aggiungere o sostituire nell'output un " +"tag arbitrario. Ha tre colonne: la prima per il pacchetto, la seconda per il " +"tag e il resto della riga è il nuovo valore." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:510 @@ -5561,6 +8024,18 @@ msgid "" "literal> and <literal><replaceable>Checksum</replaceable></literal> can be " "<literal>MD5</literal>, <literal>SHA1</literal> or <literal>SHA256</literal>." msgstr "" +"Genera i codici di controllo specificati. Queste opzioni sono abilitate in " +"modo predefinito; quando vengono disabilitate i file indice non hanno, " +"quando ciò è possibile, i campi dei codici di controllo. Voci di " +"configurazione: <literal>APT::FTPArchive::<replaceable>Codice-di-" +"controllo</replaceable></literal> e " +"<literal>APT::FTPArchive::<replaceable>Indice</replaceable>::<replaceable" +">Codice-di-controllo</replaceable></literal> dove " +"<literal><replaceable>Indice</replaceable></literal> può essere " +"<literal>Packages</literal>, <literal>Sources</literal> o " +"<literal>Release</literal> e <literal><replaceable>Codice-di-" +"controllo</replaceable></literal> può essere <literal>MD5</literal>, " +"<literal>SHA1</literal> o <literal>SHA256</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:521 @@ -5568,6 +8043,8 @@ msgid "" "Use a binary caching DB. This has no effect on the generate command. " "Configuration Item: <literal>APT::FTPArchive::DB</literal>." msgstr "" +"Usa un DB per la cache binaria. Questo non ha effetto sul comando generate. " +"Voce di configurazione: <literal>APT::FTPArchive::DB</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:527 @@ -5577,6 +8054,11 @@ msgid "" "<option>-q=#</option> to set the quiet level, overriding the configuration " "file. Configuration Item: <literal>quiet</literal>." msgstr "" +"Silenzioso; produce un output adatto per un file di registro, omettendo gli " +"indicatori di avanzamento. Ulteriori q produrranno un risultato ancor più " +"silenzioso, fino a un massimo di 2. È anche possibile usare " +"<option>-q=n</option> per impostare il livello di silenziosità, scavalcando " +"il file di configurazione. Voce di configurazione: <literal>quiet</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:535 @@ -5586,6 +8068,11 @@ msgid "" "and can be turned off with <option>--no-delink</option>. Configuration " "Item: <literal>APT::FTPArchive::DeLinkAct</literal>." msgstr "" +"Effettua il de-collegamento. Se viene usata l'impostazione <literal" +">External-Links</literal> allora questa opzione abilita di fatto il de-" +"collegamento dei file. È attiva in modo predefinito e può essere " +"disabilitata con <option>--no-delink</option>. Voce di configurazione: " +"<literal>APT::FTPArchive::DeLinkAct</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:543 @@ -5596,6 +8083,12 @@ msgid "" "option also allows the creation of any Contents files. The default is on. " "Configuration Item: <literal>APT::FTPArchive::Contents</literal>." msgstr "" +"Effettua la generazione dei Contents. Se viene impostata questa opzione e " +"gli indici dei pacchetti sono generati con un DB della cache, allora anche " +"l'elenco dei file verrà estratto e memorizzato nel DB per gli usi futuri. " +"Quando si usa il comando generate questa opzione permette anche la creazione " +"di qualsiasi file Contents. È attiva in modo predefinito. Voce di " +"configurazione: <literal>APT::FTPArchive::Contents</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:553 @@ -5604,6 +8097,9 @@ msgid "" "command. Configuration Item: <literal>APT::FTPArchive::SourceOverride</" "literal>." msgstr "" +"Seleziona il file override sorgente da usare con il comando " +"<literal>sources</literal>. Voce di configurazione " +"<literal>APT::FTPArchive::SourceOverride</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:559 @@ -5611,6 +8107,8 @@ msgid "" "Make the caching databases read only. Configuration Item: <literal>APT::" "FTPArchive::ReadOnlyDB</literal>." msgstr "" +"Rende i database delle cache in sola lettura. Voce di configurazione: " +"<literal>APT::FTPArchive::ReadOnlyDB</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:564 @@ -5620,6 +8118,11 @@ msgid "" "<literal>*_all.deb</literal> instead of all package files in the given " "path. Configuration Item: <literal>APT::FTPArchive::Architecture</literal>." msgstr "" +"Accetta per i comandi <literal>packages</literal> e " +"<literal>contents</literal> solo i file di pacchetto che corrispondono a " +"<literal>*_arch.deb</literal> o <literal>*_all.deb</literal> invece di tutti " +"i file di pacchetto nel percorso specificato. Voce di configurazione: " +"<literal>APT::FTPArchive::Architecture</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:572 @@ -5634,6 +8137,15 @@ msgid "" "theory nobody will have these problems and therefore all these extra checks " "are useless." msgstr "" +"&apt-ftparchive; memorizza in un database cache il maggior numero possibile " +"di metadati. Se i pacchetti sono ricompilati o ripubblicati nuovamente con " +"la stessa versione, questo causa problemi dato che verranno usati dei " +"metadati in cache, come la dimensione e i codici di controllo, non più " +"aggiornati. Notare che questa opzione è impostata in modo predefinito a " +"«<literal>false</literal>» dato che non è raccomandabile caricare più " +"versioni/compilazioni di un pacchetto con lo stesso numero di versione, " +"perciò in teoria nessuno dovrebbe avere di questi problemi e di conseguenza " +"tutti questi controlli aggiuntivi sono inutili." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:584 @@ -5644,12 +8156,20 @@ msgid "" "that the <filename>Translation-en</filename> master file can only be created " "in the generate command." msgstr "" +"Questa opzione di configurazione è impostata a «<literal>true</literal>» in " +"modo predefinito e dovrebbe essere impostata a <literal>«false»</literal> " +"solamente se l'archivio generato con &apt-ftparchive; fornisce anche file " +"<filename>Translation</filename>. Notare che il file principale <filename" +">Translation-en</filename> può essere creato solamente con il comando " +"generate." #. type: Content of: <refentry><refsect1><para><programlisting> #: apt-ftparchive.1.xml:602 #, no-wrap msgid "<command>apt-ftparchive</command> packages <replaceable>directory</replaceable> | <command>gzip</command> > <filename>Packages.gz</filename>\n" -msgstr "" +msgstr "<command>apt-ftparchive</command> packages " +"<replaceable>directory</replaceable> | <command>gzip</command> > " +"<filename>Packages.gz</filename>\n" #. type: Content of: <refentry><refsect1><para> #: apt-ftparchive.1.xml:598 @@ -5657,6 +8177,8 @@ msgid "" "To create a compressed Packages file for a directory containing binary " "packages (.deb): <placeholder type=\"programlisting\" id=\"0\"/>" msgstr "" +"Per creare un file Packages compresso per una directory contenente pacchetti " +"binari (.deb): <placeholder type=\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><para> #: apt-ftparchive.1.xml:612 @@ -5664,6 +8186,8 @@ msgid "" "<command>apt-ftparchive</command> returns zero on normal operation, decimal " "100 on error." msgstr "" +"<command>apt-ftparchive</command> restituisce zero in caso di funzionamento " +"normale e il valore decimale 100 in caso di errore." #. type: TH #: apt.8:17 @@ -5675,41 +8199,41 @@ msgstr "apt" #: apt.8:17 #, no-wrap msgid "16 June 1998" -msgstr "" +msgstr "16 giugno 1998" #. type: TH #: apt.8:17 #, no-wrap msgid "Debian" -msgstr "" +msgstr "Debian" #. type: SH #: apt.8:18 #, no-wrap msgid "NAME" -msgstr "" +msgstr "NOME" #. type: Plain text #: apt.8:20 msgid "apt - Advanced Package Tool" -msgstr "" +msgstr "apt - Advanced Package Tool (strumento avanzato per i pacchetti)" #. type: SH #: apt.8:20 #, no-wrap msgid "SYNOPSIS" -msgstr "" +msgstr "SINTASSI" #. type: Plain text #: apt.8:22 msgid "B<apt>" -msgstr "" +msgstr "B<apt>" #. type: SH #: apt.8:22 #, no-wrap msgid "DESCRIPTION" -msgstr "" +msgstr "DESCRIZIONE" #. type: Plain text #: apt.8:31 @@ -5719,12 +8243,16 @@ msgid "" "(8) for the command line or B<synaptic>(8) for the X Window System. Some " "options are only implemented in B<apt-get>(8) though." msgstr "" +"APT è un sistema di gestione per i pacchetti software. Per la normale " +"gestione quotidiana dei pacchetti sono disponibili diverse interfacce, quali " +"B<aptitude>(8) per la riga di comando o B<synaptic>(8) per il sistema X " +"Window. Comunque alcune opzioni sono implementate solo in B<apt-get>(8)." #. type: SH #: apt.8:31 #, no-wrap msgid "SEE ALSO" -msgstr "" +msgstr "VEDERE ANCHE" #. type: Plain text #: apt.8:38 @@ -5732,28 +8260,32 @@ msgid "" "B<apt-cache>(8), B<apt-get>(8), B<apt.conf>(5), B<sources.list>(5), " "B<apt_preferences>(5), B<apt-secure>(8)" msgstr "" +"B<apt-cache>(8), B<apt-get>(8), B<apt.conf>(5), B<sources.list>(5), " +"B<apt_preferences>(5), B<apt-secure>(8)" #. type: SH #: apt.8:38 #, no-wrap msgid "DIAGNOSTICS" -msgstr "" +msgstr "DIAGNOSTICA" #. type: Plain text #: apt.8:40 msgid "apt returns zero on normal operation, decimal 100 on error." msgstr "" +"apt restituisce zero in caso di funzionamento normale e il valore decimale " +"100 in caso di errore." #. type: SH #: apt.8:40 #, no-wrap msgid "BUGS" -msgstr "" +msgstr "BUG" #. type: Plain text #: apt.8:42 msgid "This manpage isn't even started." -msgstr "" +msgstr "Questa pagina di manuale non è neanche stata iniziata." #. type: Plain text #: apt.8:51 @@ -5762,115 +8294,108 @@ msgid "" "B<apt>, please see I</usr/share/doc/debian/bug-reporting.txt> or the " "B<reportbug>(1) command." msgstr "" +"Vedere E<lt>http://bugs.debian.org/aptE<gt>. Per segnalare un bug in B<apt>, " +"vedere I</usr/share/doc/debian/bug-reporting.txt> o il comando " +"B<reportbug>(1)." #. type: SH #: apt.8:51 #, no-wrap msgid "AUTHOR" -msgstr "" +msgstr "AUTORE" #. type: Plain text #: apt.8:52 msgid "apt was written by the APT team E<lt>apt@packages.debian.orgE<gt>." -msgstr "" +msgstr "apt è stato scritto dal Team APT E<lt>apt@packages.debian.orgE<gt>." #. type: <title> #: guide.sgml:4 -#, fuzzy msgid "APT User's Guide" msgstr "Guida dell'utente di APT" #. type: #: guide.sgml:6 offline.sgml:6 -#, fuzzy msgid "Jason Gunthorpe jgg@debian.org" msgstr "Jason Gunthorpe jgg@debian.org" #. type: #: guide.sgml:7 -#, fuzzy msgid "$Id: guide.sgml,v 1.7 2003/04/26 23:26:13 doogie Exp $" -msgstr "$Id: guide.it.sgml,v 1.5 2003/04/26 23:26:13 doogie Exp $" +msgstr "$Id: guide.sgml,v 1.7 2003/04/26 23:26:13 doogie Exp $" #. type: #: guide.sgml:11 -#, fuzzy msgid "" "This document provides an overview of how to use the the APT package manager." -msgstr "Guida per l'uso del gestore di pacchetti APT." +msgstr "" +"Questo documento fornisce una panoramica su come usare il gestore di " +"pacchetti APT." #. type: #: guide.sgml:15 -#, fuzzy msgid "Copyright © Jason Gunthorpe, 1998." msgstr "Copyright © Jason Gunthorpe, 1998." #. type:

#: guide.sgml:21 offline.sgml:22 -#, fuzzy msgid "" "\"APT\" and this document are free software; you can redistribute them and/" "or modify them under the terms of the GNU General Public License as " "published by the Free Software Foundation; either version 2 of the License, " "or (at your option) any later version." msgstr "" -"\"APT\" e questo documento sono software libero, e li si può ridistribuire e/" -"o modificare secondo i termini della Licenza Pubblica Generica GNU (GPL), " -"pubblicata dalla Free Software Foundation, nella versione 2 o (se preferite) " -"qualsiasi versione successiva." +"«APT» e questo documento sono software libero; li si può ridistribuire e/o " +"modificare secondo i termini della Licenza Pubblica Generica GNU (GPL), " +"pubblicata dalla Free Software Foundation, nella versione 2 o (a propria " +"scelta) qualsiasi versione successiva." #. type:

#: guide.sgml:24 offline.sgml:25 -#, fuzzy msgid "" "For more details, on Debian systems, see the file /usr/share/common-licenses/" "GPL for the full license." msgstr "" -"Per ulteriori dettagli sui sistemi si veda il testo completo della licenza " -"nel file /usr/share/common-licenses/GPL." +"Per ulteriori dettagli, sui sistemi Debian, si veda il testo completo della " +"licenza nel file /usr/share/common-licenses/GPL." #. type: #: guide.sgml:32 -#, fuzzy msgid "General" msgstr "Descrizione generale" #. type:

#: guide.sgml:38 -#, fuzzy msgid "" "The APT package currently contains two sections, the APT dselect method and the apt-get command line user interface. Both " "provide a way to install and remove packages as well as download new " "packages from the Internet." msgstr "" -"Il pacchetto APT al momento contiene due sezioni, il metodo APT " -"dselect e l'interfaccia utente a linea di comando apt-" -"get; entrambi danno modo di installare e rimuovere pacchetti, e di " -"scaricarne altri da Internet." +"Il pacchetto APT al momento contiene due sezioni, il metodo APT per " +"dselect e l'interfaccia utente a riga di comando apt-" +"get; entrambi forniscono un modo per installare e rimuovere " +"pacchetti, così come per scaricarne di nuovi da Internet." #. type: #: guide.sgml:39 -#, fuzzy msgid "Anatomy of the Package System" -msgstr "Anatomia del sistema di pacchettizzazione" +msgstr "Anatomia del sistema dei pacchetti" #. type:

#: guide.sgml:44 -#, fuzzy msgid "" "The Debian packaging system has a large amount of information associated " "with each package to help assure that it integrates cleanly and easily into " "the system. The most prominent of its features is the dependency system." msgstr "" -"Il sistema di pacchettizzazione di Debian contiene un gran numero di " -"informazioni associate a ciascun pacchetto, per assicurarsi che si integri " -"facilmente ed in maniera pulita nel sistema; la più importante di esse è il " +"Il sistema dei pacchetti di Debian contiene un gran numero di informazioni " +"associate a ciascun pacchetto, per garantire che si integri facilmente ed in " +"maniera pulita nel sistema. La sua caratteristica più importante è il " "sistema di dipendenze." #. type:

#: guide.sgml:52 -#, fuzzy msgid "" "The dependency system allows individual programs to make use of shared " "elements in the system such as libraries. It simplifies placing infrequently " @@ -5879,15 +8404,14 @@ msgid "" "in mail transport agents, X servers and so on." msgstr "" "Il sistema di dipendenze permette ai singoli programmi di fare uso degli " -"elementi condivisi del sistema, quali le librerie; per ridurre il numero di " -"elementi che l'utente medio debba installare, le porzioni di programmi che " -"non vengono usate spesso vengono poste in pacchetti separati. Inoltre, è " -"possibile avere più di una scelta per cose quali i programmi di posta " -"elettronica, i server X e così via." +"elementi condivisi del sistema, quali le librerie. Semplifica l'inserimento " +"delle porzioni di un programma usate raramente in pacchetti separati per " +"ridurre il numero di cose che l'utente medio deve installare. Inoltre, rende " +"possibile avere più di una scelta per cose quali i programmi di " +"trasferimento della posta elettronica, i server X e così via." #. type:

#: guide.sgml:57 -#, fuzzy msgid "" "The first step to understanding the dependency system is to grasp the " "concept of a simple dependency. The meaning of a simple dependency is that a " @@ -5900,22 +8424,20 @@ msgstr "" #. type:

#: guide.sgml:63 -#, fuzzy msgid "" "For instance, mailcrypt is an emacs extension that aids in encrypting email " "with GPG. Without GPGP installed mailcrypt is useless, so mailcrypt has a " "simple dependency on GPG. Also, because it is an emacs extension it has a " "simple dependency on emacs, without emacs it is completely useless." msgstr "" -"Ad esempio, mail-crypt è un'estensione di emacs che aiuta a criptare le mail " -"con PGP. Se PGP non è installato, mail-crypt è inutile, quindi mail-crypt ha " -"una dipendenza semplice da PGP. Inoltre, dato che si tratta di un'estensione " -"di emacs, mail-crypt dipende anche da emacs, senza il quale è totalmente " -"inutile." +"Ad esempio, mailcrypt è un'estensione di emacs che aiuta a cifrare i " +"messaggi di posta elettronica GPG. Se GPG non è installato, mailcrypt è " +"inutile, quindi mailcrypt ha una dipendenza semplice da GPG. Inoltre, dato " +"che si tratta di un'estensione di emacs, mailcrypt ha anche una dipendenza " +"semplice da emacs, senza il quale è totalmente inutile." #. type:

#: guide.sgml:73 -#, fuzzy msgid "" "The other important dependency to understand is a conflicting dependency. It " "means that a package, when installed with another package, will not work and " @@ -5927,18 +8449,17 @@ msgid "" "other mail transport agents." msgstr "" "L'altro tipo di dipendenza importante da capire è la dipendenza di " -"conflitto; con questa, un pacchetto che venga installato insieme ad un altro " -"pacchetto non funziona, e si hanno seri problemi al sistema. Come esempio, " -"si consideri un programma di trasporto della posta, quale sendmail, exim o " -"qmail: non è possibile averne due contemporaneamente, perché entrambi hanno " -"bisogno di restare in ascolto sulla stessa porta di rete per ricevere la " -"posta. Tentare di installarne due danneggerebbe seriamente il sistema, " -"quindi ciascun programma di trasporto della posta ha una dipendenza di " -"conflitto con tutti gli altri." +"conflitto; significa che un pacchetto, quando è installato insieme ad un " +"altro, non funziona e potrebbe potenzialmente causare seri danni al sistema. " +"Come esempio, si consideri un programma di trasporto della posta, quale " +"sendmail, exim o qmail: non è possibile averne installati due " +"contemporaneamente, perché entrambi hanno bisogno di restare in ascolto " +"sulla rete per ricevere la posta. Tentare di installarne due danneggerebbe " +"seriamente il sistema, quindi ciascun programma di trasporto della posta ha " +"una dipendenza di conflitto verso tutti gli altri." #. type:

#: guide.sgml:83 -#, fuzzy msgid "" "As an added complication there is the possibility for a package to pretend " "to be another package. Consider that exim and sendmail for many intents are " @@ -5949,38 +8470,36 @@ msgid "" "depend on mail-transport-agent. This can add a great deal of confusion when " "trying to manually fix packages." msgstr "" -"Come ulteriore complicazione, c'è la possibilità che un pacchetto voglia " -"prendere il posto di un altro; ad esempio, exim e sendmail per molte cose " -"sono identici, dato che entrambi gestiscono la posta e comprendono " -"un'interfaccia comune, quindi il sistema di pacchettizzazione deve " -"dichiarare che sono entrambi agenti di trasporto della posta, e che gli " -"altri pacchetti a cui serve uno dei due devono dipendere da un pacchetto " -"fittizio agente-di-trasporto-della-posta. Quando si modificano a mano i " +"Come ulteriore complicazione, c'è la possibilità per un pacchetto di far " +"finta di essere un altro. Ad esempio, exim e sendmail sono dal lato pratico " +"identici, dato che entrambi consegnano la posta e utilizzano un'interfaccia " +"comune. Il sistema dei pacchetti quindi fornisce un mezzo con cui entrambi " +"possono dichiarare di essere programmi di trasporto della posta; perciò " +"entrambi dichiarano di fornire un mail-transport-agent e gli altri pacchetti " +"che hanno bisogno di un programma di trasferimento della posta possono " +"dipendere da mail-transport-agent. Quando si cerca di modificare a mano i " "pacchetti, questo può portare a moltissima confusione." #. type:

#: guide.sgml:88 -#, fuzzy msgid "" "At any given time a single dependency may be met by packages that are " "already installed or it may not be. APT attempts to help resolve dependency " "issues by providing a number of automatic algorithms that help in selecting " "packages for installation." msgstr "" -"In ciascun momento una singola dipendenza può essere soddisfatta o meno dai " -"pacchetti già installati; APT cerca di risolvere i problemi di dipendenze " -"con un buon numero di algoritmi automatici, che aiutano a selezionare i " -"pacchetti da installare." +"In un determinato momento una singola dipendenza può essere soddisfatta dai " +"pacchetti già installati o può non esserlo; APT cerca di risolvere i " +"problemi di dipendenze fornendo svariati algoritmi automatici, che aiutano a " +"selezionare i pacchetti da installare." #. type: #: guide.sgml:96 -#, fuzzy msgid "apt-get" msgstr "apt-get" #. type:

#: guide.sgml:102 -#, fuzzy msgid "" "apt-get provides a simple way to install packages from the " "command line. Unlike dpkg, apt-get does not " @@ -5988,13 +8507,12 @@ msgid "" "install .deb archives from a Source." msgstr "" "apt-get fornisce un modo semplice di installare i pacchetti " -"dalla linea di comando. Diversamente da dpkg, apt-get non capisce i nomi dei file .deb, ma utilizza il vero nome dei " -"pacchetti, e può installare archivi .deb solo da una fonte." +"dalla riga di comando. Diversamente da dpkg, apt-" +"get non tratta i file .deb, ma utilizza il vero nome dei pacchetti e " +"può installare archivi .deb solo da una fonte." #. type:

#: guide.sgml:109 -#, fuzzy msgid "" "The first

If you are using an http proxy server you must set " "the http_proxy environment variable first, see sources.list(5)

apt-get update. For " "instance," msgstr "" -"La prima

Se state usando un proxy server http, dovete prima " -"ancora impostare la variabile d'ambiente http_proxy; vedere sources.list(5)." -"

cosa da fare prima di usare apt-get è impostare " -"l'elenco dei pacchetti dalle fonti in modo che il programma sappia quali " -"pacchetti sono disponibili. Lo si fa con apt-get update. Ad esempio," +"La prima

Se si sta usando un server proxy http, si deve prima " +"ancora impostare la variabile d'ambiente http_proxy; vedere " +"sources.list(5).

cosa da fare prima di usare apt-" +"get è scaricare gli elenchi dei pacchetti dalle fonti in " +"modo che il programma sappia quali pacchetti sono disponibili. Lo si fa con " +"apt-get update. Ad esempio," #. type: #: guide.sgml:116 -#, fuzzy, no-wrap +#, no-wrap msgid "" "# apt-get update\n" "Get http://ftp.de.debian.org/debian-non-US/ stable/binary-i386/ Packages\n" @@ -6020,26 +8539,24 @@ msgid "" "Building Dependency Tree... Done" msgstr "" "# apt-get update\n" -"Get http://ftp.de.debian.org/debian-non-US/ stable/binary-i386/ Packages\n" -"Get http://llug.sep.bnl.gov/debian/ testing/contrib Packages\n" -"Reading Package Lists... Done\n" -"Building Dependency Tree... Done" +"Scaricamento di: http://ftp.de.debian.org/debian-non-US/ stable/binary-i386/ " +"Packages\n" +"Scaricamento di: http://llug.sep.bnl.gov/debian/ testing/contrib Packages\n" +"Lettura elenco dei pacchetti... Fatto\n" +"Generazione albero delle dipendenze... Fatto" #. type:

#: guide.sgml:120 -#, fuzzy msgid "Once updated there are several commands that can be used:" -msgstr "Dopo aver aggiornato l'elenco si possono usare molti comandi:" +msgstr "Una volta aggiornato l'elenco, si possono usare svariati comandi:" #. type: #: guide.sgml:121 -#, fuzzy msgid "upgrade" msgstr "upgrade" #. type:

#: guide.sgml:131 -#, fuzzy msgid "" "Upgrade will attempt to gently upgrade the whole system. Upgrade will never " "install a new package or remove an existing package, nor will it ever " @@ -6050,22 +8567,21 @@ msgid "" "apt-get install can be used to force these packages to install." msgstr "" "Upgrade tenterà di fare un aggiornamento indolore del sistema completo, " -"senza installare nuovi pacchetti o rimuoverne di esistenti, e senza " -"aggiornare un pacchetto che possa rovinarne altri. Upgrade farà un elenco di " -"tutti i pacchetti che non avrà potuto aggiornare, cosa che in genere " -"significa che questi dipendono da nuovi pacchetti o vanno in conflitto con " -"altri. Per forzare la loro installazione si può usare dselect o " -"apt-get install." +"senza installare mai nuovi pacchetti o rimuoverne di esistenti, e senza mai " +"aggiornare un pacchetto se ciò ne rende altri difettosi. Può essere usato " +"quotidianamente per fare un aggiornamento relativamente sicuro del sistema. " +"Upgrade elencherà tutti i pacchetti che non avrà potuto aggiornare, cosa che " +"in genere significa che questi dipendono da nuovi pacchetti o che vanno in " +"conflitto con altri. Per forzare la loro installazione si può usare " +"dselect o apt-get install." #. type: #: guide.sgml:131 -#, fuzzy msgid "install" msgstr "install" #. type:

#: guide.sgml:140 -#, fuzzy msgid "" "Install is used to install packages by name. The package is automatically " "fetched and installed. This can be useful if you already know the name of " @@ -6075,24 +8591,22 @@ msgid "" "listed packages and will print a summary and ask for confirmation if " "anything other than its arguments are changed." msgstr "" -"Install viene usato per installare i singoli pacchetti dando il loro nome. " -"Il pacchetto viene automaticamente scaricato ed installato, cosa molto utile " -"se già se ne conosce il nome e non si vuole entrare in grafica per " +"Install viene usato per installare i pacchetti per nome. Il pacchetto viene " +"automaticamente scaricato ed installato; questo può essere utile se già se " +"ne conosce il nome e non si vuole entrare in un'interfaccia grafica per " "selezionarlo. Al comando si possono passare anche più pacchetti, che saranno " -"tutti scaricati. L'installazione automatica cerca di risolvere i problemi di " -"dipendenze con gli altri pacchetti elencati, stampa un riassunto e chiede " -"conferma se si devono modificare altri pacchetti che non siano quelli sulla " -"linea di comando." +"tutti scaricati. Install cerca automaticamente di risolvere i problemi di " +"dipendenze dei pacchetti elencati, stampa un riassunto e chiede conferma se " +"devono essere modificati altri pacchetti che non siano quelli sulla riga di " +"comando." #. type: #: guide.sgml:140 -#, fuzzy msgid "dist-upgrade" msgstr "dist-upgrade" #. type:

#: guide.sgml:149 -#, fuzzy msgid "" "Dist-upgrade is a complete upgrader designed to simplify upgrading between " "releases of Debian. It uses a sophisticated algorithm to determine the best " @@ -6102,19 +8616,18 @@ msgid "" "dselect. Once dist-upgrade has completed then dselect can be used to install any packages that may have been left out." msgstr "" -"Dist-upgrade fa un aggiornamento completo, progettato in modo da rendere " -"semplici gli aggiornamenti tra versioni di Debian. Usa un algoritmo " +"Dist-upgrade fa un aggiornamento completo ed è progettato in modo da rendere " +"semplici gli aggiornamenti tra i rilasci di Debian. Usa un algoritmo " "sofisticato per determinare il miglior insieme di pacchetti da installare, " -"aggiornare e rimuovere per arrivare alla versione più aggiornata del sistema " -"possibile. In alcune situazioni può essere vantaggioso usare dist-upgrade " -"invece che sprecare tempo a risolvere manualmente le dipendenze con " -"dselect. Una volta completato dist-upgrade, si può usare " -"dselect per installare eventuali pacchetti che sono stati " -"tralasciati." +"aggiornare e rimuovere per migrare alla versione più recente la maggior " +"parte del sistema possibile. In alcune situazioni può essere vantaggioso " +"usare dist-upgrade invece di dedicare tempo a risolvere manualmente le " +"dipendenze con dselect. Una volta completato il lavoro di dist-" +"upgrade, si può usare dselect per installare eventuali " +"pacchetti che sono stati tralasciati." #. type:

#: guide.sgml:152 -#, fuzzy msgid "" "It is important to closely look at what dist-upgrade is going to do, its " "decisions may sometimes be quite surprising." @@ -6124,7 +8637,6 @@ msgstr "" #. type:

#: guide.sgml:163 -#, fuzzy msgid "" "apt-get has several command line options that are detailed in " "its man page, . The most useful " @@ -6134,38 +8646,35 @@ msgid "" "the downloaded archives can be installed by simply running the command that " "caused them to be downloaded again without -d." msgstr "" -"apt-get ha diverse opzioni a linea di comando, che vengono " -"documentate dettagliatamente nella sua pagina man, . L'opzione più utile è -d, che non installa i " -"file scaricati: se il sistema deve scaricare un gran numero di pacchetti, " -"non è bene farglieli installare subito, in caso dovesse andare male " -"qualcosa. Dopo aver usato -d, gli archivi scaricati possono essere " -"installati semplicemente dando di nuovo lo stesso comando senza l'opzione " -"-d." +"apt-get ha diverse opzioni per la riga di comando, che sono " +"documentate dettagliatamente nella sua pagina di manuale, . L'opzione più utile è -d, che non " +"installa i file scaricati; se il sistema deve scaricare un gran numero di " +"pacchetti, non è bene iniziare ad installarli nel caso qualcosa dovesse " +"andare storto. Quando si usa -d, gli archivi scaricati possono " +"essere installati semplicemente eseguendo di nuovo lo stesso comando senza " +"l'opzione -d." #. type: #: guide.sgml:168 -#, fuzzy msgid "DSelect" msgstr "DSelect" #. type:

#: guide.sgml:173 -#, fuzzy msgid "" "The APT dselect method provides the complete APT system with " "the dselect package selection GUI. dselect is used " "to select the packages to be installed or removed and APT actually installs " "them." msgstr "" -"Il metodo APT di dselect fornisce tutte le funzionalità di APT " -"all'interno dell'interfaccia grafica di selezione dei pacchetti " +"Il metodo APT di dselect fornisce tutte le funzionalità del " +"sistema APT con l'interfaccia grafica di selezione dei pacchetti " "dselect. dselect viene usato per selezionare i " -"pacchetti da installare o rimuovere, ed APT li installa." +"pacchetti da installare o rimuovere, ed APT fa l'effettiva installazione." #. type:

#: guide.sgml:184 -#, fuzzy msgid "" "To enable the APT method you need to select [A]ccess in dselect " "and then choose the APT method. You will be prompted for a set of " @@ -6177,19 +8686,20 @@ msgid "" "have access to the latest bug fixes. APT will automatically use packages on " "your CD-ROM before downloading from the Internet." msgstr "" -"Per abilitare il metodo APT dovete selezionare [A]ccess in dselect e scegliere il metodo APT; vi verrà chiesto un insieme di fonti " -"(Sources), cioè di posti da cui scaricare gli archivi. Tali fonti " -"possono essere siti Internet remoti, mirror locali di Debian o CDROM; " -"ciascuna di esse può fornire una parte dell'archivio Debian, ed APT le " -"combinerà insieme in un set completo di pacchetti. Se avete un CDROM è una " -"buona idea indicare quello per primo, e poi i mirror, in modo da avere " -"accesso alle ultime versioni; APT userà in questo modo automaticamente i " -"pacchetti sul CDROM prima di scaricarli da Internet." +"Per abilitare il metodo APT si deve selezionare [A]ccess in " +"dselect e scegliere il metodo APT; verrà chiesto un insieme di " +"fonti (Sources), cioè di posti da cui scaricare gli archivi. " +"Possono essere siti Internet remoti, mirror locali di Debian o CD-ROM; ogni " +"fonte può fornire una parte dell'intero archivio Debian, ed APT le combinerà " +"automaticamente insieme per formare un insieme completo di pacchetti. Se si " +"ha un CD-ROM allora è una buona idea indicarlo per primo e poi specificare " +"un mirror, in modo da avere accesso alle ultime versioni con le soluzioni " +"dei bug. APT in questo modo userà automaticamente i pacchetti sul CD-ROM " +"prima di scaricarli da Internet." #. type: #: guide.sgml:198 -#, fuzzy, no-wrap +#, no-wrap msgid "" " Set up a list of distribution source locations\n" "\t \n" @@ -6219,19 +8729,18 @@ msgstr "" #. type:

#: guide.sgml:205 -#, fuzzy msgid "" "The Sources setup starts by asking for the base of the Debian " "archive, defaulting to a HTTP mirror. Next it asks for the distribution to " "get." msgstr "" -"La configurazione delle fonti inizia chiedendo la base dell'archivio Debian, " -"propone come default un mirror HTTP, e poi chiede la distribuzione da " -"scaricare." +"La configurazione delle fonti inizia chiedendo la base " +"dell'archivio Debian, proponendo in modo predefinito un mirror HTTP; " +"successivamente viene chiesta la distribuzione da scaricare." #. type: #: guide.sgml:212 -#, fuzzy, no-wrap +#, no-wrap msgid "" " Please give the distribution tag to get or a path to the\n" " package file ending in a /. The distribution\n" @@ -6247,7 +8756,6 @@ msgstr "" #. type:

#: guide.sgml:222 -#, fuzzy msgid "" "The distribution refers to the Debian version in the archive, stable refers to the latest released version and unstable refers to " @@ -6256,16 +8764,16 @@ msgid "" "that cannot be exported from the United States. Importing these packages " "into the US is legal however." msgstr "" -"La distribuzione (``distribution'') fa riferimento alla versione Debian " -"dell'archivio: stable è l'ultima rilasciata, ed unstable è " -"quella di sviluppo. non-US è disponibile solo su alcuni mirror, e " -"contiene dei pacchetti in cui viene usata della tecnologia di criptazione o " -"altre cose che non possano essere esportate dagli Stati Uniti; importare " -"questi pacchetti negli US è però legale." +"La distribuzione indica la versione Debian dell'archivio: stable è " +"l'ultima versione rilasciata e unstable è quella di sviluppo. non-US è disponibile solo su alcuni mirror e contiene dei pacchetti in " +"cui viene usata della tecnologia di cifratura o altre cose che non possono " +"essere esportate dagli Stati Uniti; importare questi pacchetti negli USA è " +"però legale." #. type: #: guide.sgml:228 -#, fuzzy, no-wrap +#, no-wrap msgid "" " Please give the components to get\n" " The components are typically something like: main contrib non-free\n" @@ -6279,33 +8787,30 @@ msgstr "" #. type:

#: guide.sgml:236 -#, fuzzy msgid "" "The components list refers to the list of sub distributions to fetch. The " "distribution is split up based on software licenses, main being DFSG free " "packages while contrib and non-free contain things that have various " "restrictions placed on their use and distribution." msgstr "" -"L'elenco dei componenti (``components'') si riferisce alla lista di sotto-" -"distribuzioni da scaricare. Ciascuna distribuzione viene divisa in base al " -"copyright del software: la main contiene pacchetti la cui licenza soddisfa " -"le DFSG, mentre contrib e non-free contengono software che ha diverse " -"restrizioni sull'uso e sulla distribuzione." +"L'elenco delle componenti indica la lista di sottodistribuzioni da " +"scaricare. Ciascuna distribuzione viene suddivisa in base alle licenze del " +"software: la componente main contiene pacchetti liberi secondo le DFSG, " +"mentre contrib e non-free contengono software che ha diverse restrizioni " +"sull'uso e sulla distribuzione." #. type:

#: guide.sgml:240 -#, fuzzy msgid "" "Any number of sources can be added, the setup script will continue to prompt " "until you have specified all that you want." msgstr "" -"Si possono inserire un qualsiasi numero di fonti, e lo script di " -"configurazione continuerà a chiedere fino a che abbiate specificato tutti " -"gli elementi che volete." +"Si può aggiungere un qualsiasi numero di fonti, e lo script di " +"configurazione continuerà a chiedere fino a che non sono state specificate " +"tutte quelle desiderate." #. type:

#: guide.sgml:247 -#, fuzzy msgid "" "Before starting to use dselect it is necessary to update the " "available list by selecting [U]pdate from the menu. This is a superset of " @@ -6313,15 +8818,14 @@ msgid "" "dselect. [U]pdate must be performed even if apt-get update has been run before." msgstr "" -"Prima di cominciare ad usare dselect è necessario aggiornare " +"Prima di cominciare a usare dselect è necessario aggiornare " "l'elenco dei pacchetti disponibili selezionando [U]pdate dal menù: si tratta " -"di un sovrainsieme di ciò che fa apt-get update, che rende " -"l'informazione scaricata disponibile a dselect. [U]pdate deve " -"essere fatto anche se prima è stato dato apt-get update." +"di un sovrainsieme di ciò che fa apt-get update, che rende le " +"informazioni scaricate disponibili a dselect. [U]pdate deve " +"essere usato anche se prima è stato eseguito apt-get update." #. type:

#: guide.sgml:253 -#, fuzzy msgid "" "You can then go on and make your selections using [S]elect and then perform " "the installation using [I]nstall. When using the APT method the [C]onfig and " @@ -6335,25 +8839,23 @@ msgstr "" #. type:

#: guide.sgml:258 -#, fuzzy msgid "" "By default APT will automatically remove the package (.deb) files once they " "have been successfully installed. To change this behavior place Dselect::" "clean \"prompt\"; in /etc/apt/apt.conf." msgstr "" -"Per default APT rimuoverà automaticamente i pacchetti che sono stati " -"installati con successo. Per modificare questo comportamento, si inserisca " -"Dselect::clean \"prompt\"; in /etc/apt/apt.conf." +"In modo predefinito APT rimuoverà automaticamente i file (.deb) dei " +"pacchetti che sono stati installati con successo. Per modificare questo " +"comportamento, inserire Dselect::clean \"prompt\"; in " +"/etc/apt/apt.conf." #. type: #: guide.sgml:264 -#, fuzzy msgid "The Interface" msgstr "L'interfaccia" #. type:

#: guide.sgml:278 -#, fuzzy msgid "" "Both that APT dselect method and apt-get share the " "same interface. It is a simple system that generally tells you what it will " @@ -6364,66 +8866,62 @@ msgid "" "then will print out some informative status messages so that you can " "estimate how far along it is and how much is left to do." msgstr "" -"Entrambi i metodi, dselect APT ed apt-get, " +"Sia il metodo APT per dselect sia apt-get " "condividono la stessa interfaccia; si tratta di un sistema semplice che " "indica in genere cosa sta per fare, e poi lo fa.

Il metodo " -"dselect è in realtà un insieme di script di wrapper ad " -"apt-get. Il metodo fornisce delle funzionalità maggiori del " +"dselect è in realtà un insieme di script di wrapper per apt-get. Il metodo di fatto fornisce delle funzionalità maggiori del " "solo apt-get.

Dopo la stampa di un riassunto " "delle operazioni che saranno fatte, APT stampa dei messaggi informativi " -"sullo stato del sistema, in modo che possiate avere davanti agli occhi a " -"quale punto dell'operazione si trova, e quanto ancora si deve aspettare." +"sullo stato, in modo da poter avere un'idea del punto a cui arrivato e di " +"quanto ci sia ancora da fare." #. type: #: guide.sgml:280 -#, fuzzy msgid "Startup" msgstr "Avvio" #. type:

#: guide.sgml:284 -#, fuzzy msgid "" "Before all operations except update, APT performs a number of actions to " "prepare its internal state. It also does some checks of the system's state. " "At any time these operations can be performed by running apt-get check." msgstr "" -"Prima di ciascuna operazione, eccetto l'aggiornamento della lista, APT " -"compie alcune operazioni per prepararsi, oltre a dei controlli dello stato " -"del sistema. In qualsiasi momento le stesse operazioni possono essere fatte " -"con apt-get check" +"Prima di ogni operazione, eccetto update, APT compie alcune operazioni per " +"preparare il suo stato interno; fa inoltre dei controlli sullo stato del " +"sistema. In qualsiasi momento le stesse operazioni possono essere fatte con " +"apt-get check." #. type: #: guide.sgml:289 -#, fuzzy, no-wrap +#, no-wrap msgid "" "# apt-get check\n" "Reading Package Lists... Done\n" "Building Dependency Tree... Done" msgstr "" "# apt-get check\n" -"Reading Package Lists... Done\n" -"Building Dependancy Tree... Done" +"Lettura elenco pacchetti... Fatto\n" +"Generazione albero delle dipendenze... Fatto" #. type:

#: guide.sgml:297 -#, fuzzy msgid "" "The first thing it does is read all the package files into memory. APT uses " "a caching scheme so this operation will be faster the second time it is run. " "If some of the package files are not found then they will be ignored and a " "warning will be printed when apt-get exits." msgstr "" -"La prima cosa che fa è leggere tutti i file dei pacchetti in memoria, usando " -"uno schema di caching in modo da rendere la stessa operazione più veloce la " -"seconda volta che la si fa. Se alcuni dei file dei pacchetti non vengono " +"La prima cosa che fa è leggere tutti i file dei pacchetti in memoria; APT " +"usa un sistema di cache in modo da rendere la stessa operazione più veloce " +"la seconda volta che la si fa. Se alcuni dei file dei pacchetti non vengono " "trovati, sono ignorati e viene stampato un avvertimento all'uscita di apt-" "get." #. type:

#: guide.sgml:303 -#, fuzzy msgid "" "The final operation performs a detailed analysis of the system's " "dependencies. It checks every dependency of every installed or unpacked " @@ -6433,12 +8931,12 @@ msgstr "" "L'operazione finale consiste in un'analisi dettagliata delle dipendenze del " "sistema: viene controllato che tutte le dipendenze dei singoli pacchetti " "installati o non scompattati siano soddisfatte. Se vengono individuati dei " -"problemi, viene stampato un resoconto, ed apt-get esce senza " +"problemi, viene stampato un resoconto, e apt-get esce senza " "eseguire alcuna operazione." #. type: #: guide.sgml:320 -#, fuzzy, no-wrap +#, no-wrap msgid "" "# apt-get check\n" "Reading Package Lists... Done\n" @@ -6457,24 +8955,23 @@ msgid "" " libreadlineg2: Conflicts:libreadline2 (<< 2.1-2.1)" msgstr "" "# apt-get check\n" -"Reading Package Lists... Done\n" -"Building Dependancy Tree... Done\n" -"You might want to run apt-get -f install' to correct these.\n" -"Sorry, but the following packages have unmet dependencies:\n" -" 9fonts: Depends: xlib6g but it is not installed\n" -" uucp: Depends: mailx but it is not installed\n" -" blast: Depends: xlib6g (>= 3.3-5) but it is not installed\n" -" adduser: Depends: perl-base but it is not installed\n" -" aumix: Depends: libgpmg1 but it is not installed\n" -" debiandoc-sgml: Depends: sgml-base but it is not installed\n" -" bash-builtins: Depends: bash (>= 2.01) but 2.0-3 is installed\n" -" cthugha: Depends: svgalibg1 but it is not installed\n" -" Depends: xlib6g (>= 3.3-5) but it is not installed\n" -" libreadlineg2: Conflicts:libreadline2 (<< 2.1-2.1)" +"Lettura elenco pacchetti... Fatto\n" +"Generazione albero delle dipendenze... Fatto\n" +"È utile eseguire \"run apt-get -f install\" per correggere ciò.\n" +"I seguenti pacchetti hanno dipendenze non soddisfatte:\n" +" 9fonts: Dipende: xlib6g ma non è installato\n" +" uucp: Dipende: mailx ma non è installato\n" +" blast: Dipende: xlib6g (>= 3.3-5) ma non è installato\n" +" adduser: Dipende: perl-base ma non è installato\n" +" aumix: Dipende: libgpmg1 ma non è installato\n" +" debiandoc-sgml: Dipende: sgml-base ma non è installato\n" +" bash-builtins: Dipende: bash (>= 2.01) ma la versione 2.0-3 è installata\n" +" cthugha: Dipende: svgalibg1 ma non è installato\n" +" Dipende: xlib6g (>= 3.3-5) ma non è installato\n" +" libreadlineg2: Va in conflitto: libreadline2 (<< 2.1-2.1)" #. type:

#: guide.sgml:329 -#, fuzzy msgid "" "In this example the system has many problems, including a serious problem " "with libreadlineg2. For each package that has unmet dependencies a line is " @@ -6483,14 +8980,13 @@ msgid "" "problem is also included." msgstr "" "In questo esempio il sistema ha molti problemi, tra cui uno piuttosto serio " -"con la libreadlineg2. Per ciascun pacchetto che ha dipendenze non " -"soddisfatte, viene stampata una linea che indica il pacchetto che crea il " -"problema e quali problemi ci sono. Viene inclusa inoltre una breve " -"spiegazione del perché il pacchetto ha un problema di dipendenze." +"con libreadlineg2. Per ciascun pacchetto che ha dipendenze non soddisfatte, " +"viene stampata una riga che indica il pacchetto con il problema e quali " +"dipendenze non sono soddisfatte. Viene inclusa inoltre una breve spiegazione " +"del perché il pacchetto ha un problema di dipendenze." #. type:

#: guide.sgml:337 -#, fuzzy msgid "" "There are two ways a system can get into a broken state like this. The first " "is caused by dpkg missing some subtle relationships between " @@ -6500,18 +8996,17 @@ msgid "" "situation a package may have been unpacked without its dependents being " "installed." msgstr "" -"Ci sono due modi in cui un sistema possa arrivare in uno stato problematico " -"di questo genere: il primo è causato dal fatto che dpkg possa " -"mancare alcune relazioni sottili tra pacchetti durante un aggiornamento del " -"sistema

APT considera comunque tutte le dipendenze note, e cerca " -"di prevenire problemi ai pacchetti

; il secondo è possibile se " -"l'installazione di un pacchetto fallisce, ed in questo caso è possibile che " -"un pacchetto venga scompattato senza che tutti quelli da cui dipende siano " -"stati installati." +"Ci sono due modi in cui un sistema può arrivare in uno stato problematico di " +"questo genere: il primo avviene se dpkg non ha ravvisato " +"alcune relazioni delicate tra i pacchetti durante un aggiornamento. " +"

APT invece considera tutte le dipendenze note e cerca di " +"evitare la presenza di pacchetti difettosi.

Il secondo è " +"possibile se l'installazione di un pacchetto fallisce; in questo caso è " +"possibile che un pacchetto venga scompattato senza che tutti quelli da cui " +"dipende siano stati installati." #. type:

#: guide.sgml:345 -#, fuzzy msgid "" "The second situation is much less serious than the first because APT places " "certain constraints on the order that packages are installed. In both cases " @@ -6520,16 +9015,15 @@ msgid "" "dselect method always supplies the -f option to allow " "for easy continuation of failed maintainer scripts." msgstr "" -"La seconda possibilità è meno seria della prima, dato che APT gestisce " -"l'ordine di installazione dei pacchetti; in entrambi i casi l'opzione -" -"f di apt-get gli farà trovare una soluzione e lo farà " -"continuare. Il metodo APT di dselect comprende sempre l'opzione " -"-f per permettere di configurare facilmente anche i pacchetti con " -"script errati." +"La seconda situazione è molto meno seria della prima, dato che APT pone " +"alcune restrizioni sull'ordine di installazione dei pacchetti. In entrambi i " +"casi l'opzione -f di apt-get farà sì che APT trovi " +"una soluzione possibile e possa continuare. Il metodo APT di " +"dselect comprende sempre l'opzione -f per permettere " +"di continuare facilmente anche in caso di script dei manutentori errati." #. type:

#: guide.sgml:351 -#, fuzzy msgid "" "However, if the -f option is used to correct a seriously broken " "system caused by the first case then it is possible that it will either fail " @@ -6537,21 +9031,20 @@ msgid "" "necessary to manually use dpkg (possibly with forcing options) to correct " "the situation enough to allow APT to proceed." msgstr "" -"Se viene usata però l'opzione -f per correggere un sistema in uno " -"stato molto problematico, è possibile che anche con l'opzione il programma " -"fallisca, subito o durante la sequenza di installazione. In entrambi i casi " -"è necessario usare dpkg a mano (probabilmente usando delle opzioni di " -"forzatura) per correggere quanto basta per poter fare continuare APT." +"Tuttavia, se l'opzione -f viene usata per correggere un sistema in " +"uno stato molto problematico causato da una situazione del primo tipo, è " +"possibile che l'operazione fallisca subito o che fallisca durante la " +"sequenza di installazione. In entrambi i casi è necessario usare dpkg a mano " +"(probabilmente usando delle opzioni di forzatura) per correggere quanto " +"basta per poter fare continuare APT." #. type: #: guide.sgml:356 -#, fuzzy msgid "The Status Report" msgstr "Il resoconto sullo stato" #. type:

#: guide.sgml:363 -#, fuzzy msgid "" "Before proceeding apt-get will present a report on what will " "happen. Generally the report reflects the type of operation being performed " @@ -6561,20 +9054,19 @@ msgid "" msgstr "" "Prima di procedere, apt-get presenterà un resoconto delle " "operazioni che sta per fare. In genere tale resoconto varierà con il tipo di " -"operazioni da fare, ma ci sono alcuni elementi comuni: in tutti i casi gli " -"elenchi dipendono dallo stato finale delle cose, e tengono conto " +"operazione da fare, ma ci sono svariati elementi comuni: in tutti i casi " +"gli elenchi riflettono lo stato finale delle cose, e tengono conto " "dell'opzione -f e di altre attività rilevanti per il comando da " "eseguire." #. type: #: guide.sgml:364 -#, fuzzy msgid "The Extra Package list" -msgstr "L'elenco dei pacchetti Extra" +msgstr "L'elenco dei pacchetti extra" #. type: #: guide.sgml:372 -#, fuzzy, no-wrap +#, no-wrap msgid "" "The following extra packages will be installed:\n" " libdbd-mysql-perl xlib6 zlib1 xzx libreadline2 libdbd-msql-perl\n" @@ -6583,7 +9075,7 @@ msgid "" " squake pgp-i python-base debmake ldso perl libreadlineg2\n" " ssh" msgstr "" -"The following extra packages will be installed:\n" +"I seguenti pacchetti saranno inoltre installati:\n" " libdbd-mysql-perl xlib6 zlib1 xzx libreadline2 libdbd-msql-perl\n" " mailpgp xdpkg fileutils pinepgp zlib1g xlib6g perl-base\n" " bin86 libgdbm1 libgdbmg1 quake-lib gmp2 bcc xbuffy\n" @@ -6592,28 +9084,25 @@ msgstr "" #. type:

#: guide.sgml:379 -#, fuzzy msgid "" "The Extra Package list shows all of the packages that will be installed or " "upgraded in excess of the ones mentioned on the command line. It is only " "generated for an install command. The listed packages are often the " "result of an Auto Install." msgstr "" -"L'elenco dei pacchetti Extra mostra tutti i pacchetti che verranno " -"installati o aggiornati oltre a quelli indicati sulla linea di comando. " -"Viene generato solo per il comando install. I pacchetti elencati " -"sono spesso il risultato di un'operazione di auto installazione (Auto " -"Install)." +"L'elenco dei pacchetti extra mostra tutti i pacchetti che verranno " +"installati o aggiornati oltre a quelli indicati sulla riga di comando. Viene " +"generato solo per il comando install. I pacchetti elencati sono " +"spesso il risultato di un'operazione di installazione automatica." #. type: #: guide.sgml:382 -#, fuzzy msgid "The Packages to Remove" msgstr "I pacchetti da rimuovere" #. type: #: guide.sgml:389 -#, fuzzy, no-wrap +#, no-wrap msgid "" "The following packages will be REMOVED:\n" " xlib6-dev xpat2 tk40-dev xkeycaps xbattle xonix\n" @@ -6621,7 +9110,7 @@ msgid "" " xadmin xboard perl-debug tkined xtetris libreadline2-dev perl-suid\n" " nas xpilot xfig" msgstr "" -"The following packages will be REMOVED:\n" +"I seguenti pacchetti saranno RIMOSSI:\n" " xlib6-dev xpat2 tk40-dev xkeycaps xbattle xonix\n" " xdaliclock tk40 tk41 xforms0.86 ghostview xloadimage xcolorsel\n" " xadmin xboard perl-debug tkined xtetris libreadline2-dev perl-suid\n" @@ -6629,7 +9118,6 @@ msgstr "" #. type:

#: guide.sgml:399 -#, fuzzy msgid "" "The Packages to Remove list shows all of the packages that will be removed " "from the system. It can be shown for any of the operations and should be " @@ -6639,64 +9127,60 @@ msgid "" "that are going to be removed because they are only partially installed, " "possibly due to an aborted installation." msgstr "" -"L'elenco dei pacchetti da rimuovere (Remove) indica tutti i pacchetti che " -"verranno rimossi dal sistema. Può essere mostrato per una qualsiasi delle " -"operazioni, e deve sempre essere esaminato attentamente per assicurarsi che " -"non venga eliminato qualcosa di importante. Con l'opzione -f è " -"particolarmente probabile che vengano eliminati dei pacchetti, ed in questo " -"caso va fatta estrema attenzione. La lista può contenere dei pacchetti che " -"verranno rimossi perché sono già rimossi parzialmente, forse a causa di " -"un'installazione non terminata correttamente." +"L'elenco dei pacchetti da rimuovere indica tutti i pacchetti che verranno " +"rimossi dal sistema. Può essere mostrato per una qualsiasi delle operazioni, " +"e deve sempre essere esaminato attentamente per assicurarsi che non venga " +"eliminato qualcosa di importante. Con l'opzione -f è " +"particolarmente probabile che vengano eliminati dei pacchetti, perciò in " +"questo caso va fatta particolare attenzione. L'elenco può contenere dei " +"pacchetti che verranno rimossi perché sono solo parzialmente installati, " +"forse a causa di un'installazione non terminata correttamente." #. type: #: guide.sgml:402 -#, fuzzy msgid "The New Packages list" msgstr "L'elenco dei nuovi pacchetti installati" #. type: #: guide.sgml:406 -#, fuzzy, no-wrap +#, no-wrap msgid "" "The following NEW packages will installed:\n" " zlib1g xlib6g perl-base libgdbmg1 quake-lib gmp2 pgp-i python-base" msgstr "" -"The following NEW packages will installed:\n" +"I seguenti pacchetti NUOVI saranno installati:\n" " zlib1g xlib6g perl-base libgdbmg1 quake-lib gmp2 pgp-i python-base" #. type:

#: guide.sgml:411 -#, fuzzy msgid "" "The New Packages list is simply a reminder of what will happen. The packages " "listed are not presently installed in the system but will be when APT is " "done." msgstr "" -"L'elenco dei nuovi pacchetti installati (New) è semplicemente un appunto su " +"L'elenco dei nuovi pacchetti installati è semplicemente un promemoria su " "quello che accadrà. I pacchetti nell'elenco non sono al momento installati " "nel sistema, ma lo saranno alla fine delle operazioni di APT." #. type: #: guide.sgml:414 -#, fuzzy msgid "The Kept Back list" -msgstr "L'elenco dei pacchetti trattenuti" +msgstr "L'elenco dei pacchetti bloccati" #. type: #: guide.sgml:419 -#, fuzzy, no-wrap +#, no-wrap msgid "" "The following packages have been kept back\n" " compface man-db tetex-base msql libpaper svgalib1\n" " gs snmp arena lynx xpat2 groff xscreensaver" msgstr "" -"The following packages have been kept back\n" +"I seguenti pacchetti sono stati mantenuti alla versione attuale:\n" " compface man-db tetex-base msql libpaper svgalib1\n" " gs snmp arena lynx xpat2 groff xscreensaver" #. type:

#: guide.sgml:428 -#, fuzzy msgid "" "Whenever the whole system is being upgraded there is the possibility that " "new versions of packages cannot be installed because they require new things " @@ -6708,70 +9192,65 @@ msgstr "" "In ogni caso in cui il sistema viene aggiornato nel suo insieme, c'è la " "possibilità che non possano venire installate nuove versioni di alcuni " "pacchetti, dato che potrebbero richiedere l'installazione di pacchetti non " -"presenti nel sistema, o entrare in conflitto con altri già presenti. In " -"questo caso, il pacchetto viene elencato nella lista di quelli trattenuti " -"(Kept Back). Il miglior modo per convincere i pacchetti elencati in questa " -"lista è di installarli con apt-get install o usare dselect per risolvere i problemi." +"presenti nel sistema o entrare in conflitto con altri già presenti. In " +"questo caso, il pacchetto viene elencato nella lista di quelli mantenuti " +"alla versione attuale. Il miglior modo per forzare l'installazione dei " +"pacchetti elencati in questa lista è installarli con apt-get " +"install o usare dselect per risolvere i problemi." #. type: #: guide.sgml:431 -#, fuzzy msgid "Held Packages warning" -msgstr "Messaggi di attenzione sui pacchetti trattenuti" +msgstr "Messaggi di avvertimento sui pacchetti bloccati" #. type: #: guide.sgml:435 -#, fuzzy, no-wrap +#, no-wrap msgid "" "The following held packages will be changed:\n" " cvs" msgstr "" -"The following held packages will be changed:\n" +"I seguenti pacchetti bloccati saranno cambiati:\n" " cvs" #. type:

#: guide.sgml:441 -#, fuzzy msgid "" "Sometimes you can ask APT to install a package that is on hold, in such a " "case it prints out a warning that the held package is going to be changed. " "This should only happen during dist-upgrade or install." msgstr "" "A volte si può richiedere ad APT di installare un pacchetto che è stato " -"trattenuto; in questi casi viene stampato un messaggio di attenzione, che " -"avverte che il pacchetto verrà modificato. Questo dovrebbe accadere solo " -"durante operazioni di dist-upgrade o di install." +"bloccato; in questi casi viene stampato un messaggio che avverte che il " +"pacchetto verrà modificato. Questo dovrebbe accadere solo durante operazioni " +"di dist-upgrade o di install." #. type: #: guide.sgml:444 -#, fuzzy msgid "Final summary" msgstr "Resoconto finale" #. type:

#: guide.sgml:447 -#, fuzzy msgid "" "Finally, APT will print out a summary of all the changes that will occur." -msgstr "" -"Infine, APT stamperà un riassunto di tutte le modifiche che accadranno." +msgstr "Infine, APT stamperà un riassunto di tutte le modifiche che accadranno." #. type: #: guide.sgml:452 -#, fuzzy, no-wrap +#, no-wrap msgid "" "206 packages upgraded, 8 newly installed, 23 to remove and 51 not upgraded.\n" "12 packages not fully installed or removed.\n" "Need to get 65.7M/66.7M of archives. After unpacking 26.5M will be used." msgstr "" -"206 packages upgraded, 8 newly installed, 23 to remove and 51 not upgraded.\n" -"12 packages not fully installed or removed.\n" -"Need to get 65.7M/66.7M of archives. After unpacking 26.5M will be used." +"206 aggiornati, 8 installati, 23 da rimuovere e 51 non aggiornati.\n" +"12 non completamente installati o rimossi..\n" +"È necessario scaricare 65.7M/66.7M di archivi. Dopo quest'operazione, " +"verranno occupati 26.5M di spazio su disco." #. type:

#: guide.sgml:470 -#, fuzzy msgid "" "The first line of the summary simply is a reduced version of all of the " "lists and includes the number of upgrades - that is packages already " @@ -6787,23 +9266,22 @@ msgid "" "If a large number of packages are being removed then the value may indicate " "the amount of space that will be freed." msgstr "" -"La prima linea del riassunto è semplicemente una versione ridotta di tutte " -"le liste, ed include il numero di aggiornamenti -- cioè dei pacchetti già " -"installati per cui sono disponibili nuove versioni. La seconda linea indica " +"La prima riga del riassunto è semplicemente una versione ridotta di tutti " +"gli elenchi ed include il numero di aggiornamenti, cioè dei pacchetti già " +"installati per cui è disponibile una nuova versione. La seconda riga indica " "il numero di pacchetti con problemi di configurazione, probabilmente in " -"conseguenza di un'installazione non andata a buon fine. La linea finale " -"indica i requisiti di spazio dell'installazione: i primi due numeri indicano " -"rispettivamente il numero di byte che devono essere trasferiti da posizioni " -"remote, ed il secondo la dimensione totale di tutti gli archivi necessari " -"per l'installazione. Il numero successivo indica la differenza in dimensione " -"tra i pacchetti già installati e quelli che lo saranno, ed è " -"approssimativamente equivalente allo spazio richiesto in /usr dopo " -"l'installazione. Se si stanno rimuovendo dei pacchetti, il valore può " -"indicare lo spazio che verrà liberato." +"conseguenza di un'installazione non andata a buon fine. La riga finale " +"indica i requisiti di spazio dell'installazione; i primi due numeri " +"riguardano la dimensione dei file archivio: indicano rispettivamente il " +"numero di byte che devono essere trasferiti da posizioni remote e la " +"dimensione totale di tutti gli archivi necessari. Il numero successivo " +"indica la differenza in dimensione tra i pacchetti già installati e quelli " +"che lo saranno, ed è approssimativamente equivalente allo spazio richiesto " +"in /usr dopo l'installazione. Se si stanno rimuovendo molti pacchetti, " +"allora il valore può indicare lo spazio che verrà liberato." #. type:

#: guide.sgml:473 -#, fuzzy msgid "" "Some other reports can be generated by using the -u option to show packages " "to upgrade, they are similar to the previous examples." @@ -6813,23 +9291,21 @@ msgstr "" #. type: #: guide.sgml:477 -#, fuzzy msgid "The Status Display" msgstr "La visualizzazione dello stato" #. type:

#: guide.sgml:481 -#, fuzzy msgid "" "During the download of archives and package files APT prints out a series of " "status messages." msgstr "" -"Durante il download degli archivi e dei file dei pacchetti, APT stampa una " -"serie di messaggi di stato." +"Durante lo scaricamento degli archivi e dei file dei pacchetti APT stampa " +"una serie di messaggi di stato." #. type: #: guide.sgml:490 -#, fuzzy, no-wrap +#, no-wrap msgid "" "# apt-get update\n" "Get:1 http://ftp.de.debian.org/debian-non-US/ stable/non-US/ Packages\n" @@ -6840,16 +9316,17 @@ msgid "" "11% [5 testing/non-free `Waiting for file' 0/32.1k 0%] 2203b/s 1m52s" msgstr "" "# apt-get update\n" -"Get:1 http://ftp.de.debian.org/debian-non-US/ stable/non-US/ Packages\n" -"Get:2 http://llug.sep.bnl.gov/debian/ testing/contrib Packages\n" -"Hit http://llug.sep.bnl.gov/debian/ testing/main Packages\n" -"Get:4 http://ftp.de.debian.org/debian-non-US/ unstable/binary-i386/ Packages\n" -"Get:5 http://llug.sep.bnl.gov/debian/ testing/non-free Packages\n" +"Scaricamento di:1 http://ftp.de.debian.org/debian-non-US/ stable/non-US/ " +"Packages\n" +"Scaricamento di:2 http://llug.sep.bnl.gov/debian/ testing/contrib Packages\n" +"Trovato http://llug.sep.bnl.gov/debian/ testing/main Packages\n" +"Scaricamento di:4 http://ftp.de.debian.org/debian-non-US/ " +"unstable/binary-i386/ Packages\n" +"Scaricamento di:5 http://llug.sep.bnl.gov/debian/ testing/non-free Packages\n" "11% [5 testing/non-free `Waiting for file' 0/32.1k 0%] 2203b/s 1m52s" #. type:

#: guide.sgml:500 -#, fuzzy msgid "" "The lines starting with Get are printed out when APT begins to " "fetch a file while the last line indicates the progress of the download. The " @@ -6858,15 +9335,15 @@ msgid "" "apt-get update estimates the percent done which causes some " "inaccuracies." msgstr "" -"Le linee che cominciano con Get vengono stampate quando APT inizia " -"a scaricare un file, e l'ultima linea indica il progresso dell'operazione. " -"Il primo valore in percentuale indica la percentuale totale di tutti i file; " -"dato che la dimensione dei file Package non è nota, purtroppo a volte " -"apt-get update fa una stima poco accurata." +"Le righe che cominciano con Scaricamento di vengono stampate quando " +"APT inizia a scaricare un file, mentre l'ultima riga indica il progresso " +"dell'operazione. Il primo valore in percentuale nella riga di progresso " +"indica la percentuale totale scaricata di tutti i file; dato che la " +"dimensione dei file Package non è nota, purtroppo a volte apt-get " +"update fa una stima poco accurata." #. type:

#: guide.sgml:509 -#, fuzzy msgid "" "The next section of the status line is repeated once for each download " "thread and indicates the operation being performed and some useful " @@ -6876,17 +9353,17 @@ msgid "" "The next word is the short form name of the object being downloaded. For " "archives it will contain the name of the package that is being fetched." msgstr "" -"La sezione successiva della linea di stato viene ripetuta una volta per " -"ciascuna fase del download, ed indica l'operazione in corso, insieme ad " -"alcune informazioni utili su cosa stia accadendo. A volte questa sezione " +"La sezione successiva della riga di stato viene ripetuta una volta per " +"ciascuna istanza di scaricamento, ed indica l'operazione in corso, insieme " +"ad alcune informazioni utili su cosa stia accadendo. A volte questa sezione " "contiene solamente Forking, che significa che il sistema operativo " -"sta caricando il modulo. La prima parola dopo la parentesi quadra aperta è " -"il nome breve dell'oggetto che si sta scaricando, che per gli archivi è il " -"nome del pacchetto." +"sta caricando il modulo per lo scaricamento. La prima parola dopo la " +"parentesi quadra aperta è il numero dello scaricamento come mostrato nelle " +"righe della cronologia. La parola successiva è il nome breve dell'oggetto " +"che si sta scaricando, che per gli archivi è il nome del pacchetto." #. type:

#: guide.sgml:524 -#, fuzzy msgid "" "Inside of the single quote is an informative string indicating the progress " "of the negotiation phase of the download. Typically it progresses from " @@ -6902,25 +9379,24 @@ msgid "" "regularly and reflects the time to complete everything at the shown transfer " "rate." msgstr "" -"All'interno delle virgolette c'è una stringa informativa, che indica il " -"progresso della fase di negoziazione del download. Tipicamente comincia con " -"Connecting, procede con Waiting for file e poi con " -"Downloading o Resuming. Il valore finale è il numero di " -"byte che sono stati scaricati dal sito remoto: una volta cominciato il " -"download viene rappresentato come 102/10.2k, che indica che sono " -"stati scaricati 102 byte di 10.2 kilobyte. La dimensione totale viene sempre " -"espressa in notazione a quattro cifre, per risparmiare spazio. Dopo la " -"dimensione viene indicato un indicatore progressivo della percentuale del " -"file. Il penultimo elemento è la velocità istantanea media, che viene " -"aggiornata ogni 5 secondi, e riflette la velocità di trasferimento dei dati " -"in quel periodo. Infine, viene visualizzato il tempo stimato per il " -"trasferimento, che viene aggiornato periodicamente e riflette il tempo " -"necessario per completare tutte le operazioni alla velocità di trasferimento " -"mostrata." +"All'interno delle virgolette singole c'è una stringa informativa, che indica " +"il progresso della fase di negoziazione dello scaricamento. Tipicamente " +"comincia con Connecting, procede con Waiting for file e " +"poi con Downloading o Resuming; il valore finale è il " +"numero di byte che sono stati scaricati dal sito remoto. Una volta " +"cominciato lo scaricamento, viene rappresentato come 102/10.2k, che " +"indica che sono stati scaricati 102 byte su 10,2 kilobyte attesi. La " +"dimensione totale viene sempre espressa in notazione a quattro cifre, per " +"risparmiare spazio. Dopo la dimensione viene indicato un indicatore " +"progressivo della percentuale del file. Il penultimo elemento è la velocità " +"istantanea media, che viene aggiornata ogni 5 secondi e riflette la velocità " +"di trasferimento dei dati in quel periodo. Infine, viene visualizzato il " +"tempo stimato per il trasferimento, che viene aggiornato periodicamente e " +"riflette il tempo necessario per completare tutte le operazioni alla " +"velocità di trasferimento mostrata." #. type:

#: guide.sgml:530 -#, fuzzy msgid "" "The status display updates every half second to provide a constant feedback " "on the download progress while the Get lines scroll back whenever a new file " @@ -6929,21 +9405,19 @@ msgid "" "display." msgstr "" "La visualizzazione dello stato viene aggiornata ogni mezzo secondo per " -"fornire un feedback costante del processo di download, e le linee Get " -"scorrono indietro quando viene cominciato il download di un nuovo file. Dato " +"fornire un feedback costante sul processo di scaricamento, e le righe Get " +"scorrono in alto quando viene avviato lo scaricamento di un nuovo file. Dato " "che la visualizzazione dello stato viene costantemente aggiornata, non è " "adatta per essere registrata in un file; per non visualizzarla si può usare " "l'opzione -q." #. type: #: guide.sgml:535 -#, fuzzy msgid "Dpkg" msgstr "Dpkg" #. type:

#: guide.sgml:542 -#, fuzzy msgid "" "APT uses dpkg for installing the archives and will switch over " "to the dpkg interface once downloading is completed. " @@ -6953,23 +9427,22 @@ msgid "" "questions are too varied to discuss completely here." msgstr "" "APT usa dpkg per installare gli archivi e passerà " -"all'interfaccia dpkg una volta finito il download. dpkg porrà anche alcune domande durante la manipolazione dei pacchetti, ed " -"i pacchetti stessi potranno farne altre. Prima di ciascuna domanda viene " -"proposta una descrizione di quello che sta per chiedere, e le domande sono " -"troppo diverse per poter essere discusse in maniera completa in questa " -"occasione." +"all'interfaccia di dpkg una volta completati gli scaricamenti. " +"dpkg porrà anche alcune domande durante l'elaborazione dei " +"pacchetti, ed i pacchetti stessi potranno farne altre. Prima di ciascuna " +"domanda viene proposta di solito una descrizione di ciò che viene chiesto, e " +"le domande sono troppo diverse per poter essere discusse in maniera " +"completa in questa occasione." #. type: #: offline.sgml:4 msgid "Using APT Offline" -msgstr "" +msgstr "Usare APT offline" #. type: #: offline.sgml:7 -#, fuzzy msgid "$Id: offline.sgml,v 1.8 2003/02/12 15:06:41 doogie Exp $" -msgstr "$Id: guide.it.sgml,v 1.5 2003/04/26 23:26:13 doogie Exp $" +msgstr "$Id: offline.sgml,v 1.8 2003/02/12 15:06:41 doogie Exp $" #. type: #: offline.sgml:12 @@ -6977,22 +9450,24 @@ msgid "" "This document describes how to use APT in a non-networked environment, " "specifically a 'sneaker-net' approach for performing upgrades." msgstr "" +"Questo documento descrive come usare APT in un ambiente non connesso in " +"rete, specificatamente un approccio «sfrutta-altra-rete» per fare gli " +"aggiornamenti." #. type: #: offline.sgml:16 -#, fuzzy msgid "Copyright © Jason Gunthorpe, 1999." -msgstr "Copyright © Jason Gunthorpe, 1998." +msgstr "Copyright © Jason Gunthorpe, 1999." #. type: #: offline.sgml:32 msgid "Introduction" -msgstr "" +msgstr "Introduzione" #. type: #: offline.sgml:34 offline.sgml:65 offline.sgml:180 msgid "Overview" -msgstr "" +msgstr "Panoramica" #. type:

#: offline.sgml:40 @@ -7002,6 +9477,10 @@ msgid "" "machine is on a slow link, such as a modem and another machine has a very " "fast connection but they are physically distant." msgstr "" +"Normalmente APT richiede l'accesso diretto ad un archivio Debian, attraverso " +"un supporto locale o la rete. Un problema comune è che una macchina Debian " +"ha un collegamento lento, come un modem, e un'altra macchina ha una " +"connessione veloce, ma le due sono fisicamente distanti." #. type:

#: offline.sgml:51 @@ -7016,6 +9495,17 @@ msgid "" "the machine downloading the packages, and target host the one with " "bad or no connection." msgstr "" +"La soluzione è usare supporti rimovibili grandi come un disco Zip o uno " +"SuperDisk. Questi dischi non sono grandi abbastanza per memorizzare l'intero " +"archivio Debian, ma possono facilmente contenere un sottoinsieme " +"sufficientemente grande per la maggior parte degli utenti. L'idea è di usare " +"APT per generare un elenco di pacchetti che sono necessari e poi scaricarli " +"nel disco usando un'altra macchina con una buona connettività. È possibile " +"anche usare un'altra macchina Debian con APT o usare un sistema operativo " +"completamente diverso e uno strumento per scaricare file come wget. In " +"questo documento con host remoto viene indicata la macchina che " +"scarica i pacchetti, e host di destinazione è quella senza " +"connessione o con una connessione non buona." #. type:

#: offline.sgml:57 @@ -7025,11 +9515,16 @@ msgid "" "that the disc should be formated with a filesystem that can handle long file " "names such as ext2, fat32 or vfat." msgstr "" +"Per mettere in pratica la soluzione si deve modificare in modo particolare " +"il file di configurazione di APT. Come premessa essenziale, si deve dire ad " +"APT di cercare in un disco i suoi file archivio. Notare che il disco deve " +"essere formattato con un file system che può gestire i nomi di file lunghi, " +"come ext2, fat32 o vfat." #. type: #: offline.sgml:63 msgid "Using APT on both machines" -msgstr "" +msgstr "Usare APT su entrambe le macchine" #. type:

#: offline.sgml:71 @@ -7039,6 +9534,11 @@ msgid "" "remote machine to fetch the latest package files and decide which packages " "to download. The disk directory structure should look like:" msgstr "" +"La configurazione più semplice si ha se APT è disponibile su entrambe le " +"macchine. L'idea di base è di mettere una copia del file di stato sul disco " +"e usare la macchina remota per scaricare i file dei pacchetti più recenti e " +"per decidere quali pacchetti scaricare. La struttura delle directory sul " +"disco deve essere simile a:" #. type: #: offline.sgml:80 @@ -7053,11 +9553,19 @@ msgid "" " sources.list\n" " apt.conf" msgstr "" +" /disc/\n" +" archives/\n" +" partial/\n" +" lists/\n" +" partial/\n" +" status\n" +" sources.list\n" +" apt.conf" #. type: #: offline.sgml:88 msgid "The configuration file" -msgstr "" +msgstr "Il file di configurazione" #. type:

#: offline.sgml:96 @@ -7069,6 +9577,13 @@ msgid "" "target host. Please note, if you are using a local archive you must " "use copy URIs, the syntax is identical to file URIs." msgstr "" +"Il file di configurazione deve indicare ad APT di memorizzare i suoi file " +"sul disco e di usare i file di configurazione anch'essi sul disco. Il file " +"sources.list deve contenere i siti appropriati che si desiderano usare dalla " +"macchina remota e il file di stato dovrebbe essere una copia di " +"/var/lib/dpkg/status della macchina di destinazione. " +"Notare che, se si sta usando un archivio locale, si devono usare URI «copy» " +"la cui sintassi è identica a quella degli URI «file»." #. type:

#: offline.sgml:100 @@ -7076,6 +9591,8 @@ msgid "" "apt.conf must contain the necessary information to make APT use the " "disc:" msgstr "" +"apt.conf deve contenere le informazioni necessarie per far sì che " +"APT usi il disco:" #. type: #: offline.sgml:124 @@ -7105,6 +9622,32 @@ msgid "" " Etc \"/disc/\";\n" " };" msgstr "" +" APT\n" +" {\n" +" /* Questo non è necessario se le due macchine hanno la stessa " +"architettura,\n" +" dice ad APT remoto qual è l'architettura della macchina di " +"destinazione */\n" +" Architecture \"i386\";\n" +" \n" +" Get::Download-Only \"true\";\n" +" };\n" +" \n" +" Dir\n" +" {\n" +" /* Usa il disco per le informazioni sullo stato e ridirige il file di " +"stato\n" +" dalla posizione predefinita /var/lib/dpkg */\n" +" State \"/disc/\";\n" +" State::status \"status\";\n" +"\n" +" // Le cache binarie saranno memorizzate in locale\n" +" Cache::archives \"/disc/archives/\";\n" +" Cache \"/tmp/\";\n" +" \n" +" // Posizione dell'elenco di fonti.\n" +" Etc \"/disc/\";\n" +" };" #. type:

#: offline.sgml:129 @@ -7112,6 +9655,9 @@ msgid "" "More details can be seen by examining the apt.conf man page and the sample " "configuration file in /usr/share/doc/apt/examples/apt.conf." msgstr "" +"Si possono vedere informazioni più dettagliate nella pagina di manuale di " +"apt.conf e nel file di configurazione d'esempio in " +"/usr/share/doc/apt/examples/apt.conf." #. type:

#: offline.sgml:136 @@ -7122,6 +9668,11 @@ msgid "" "em>. Then take the disc to the remote machine and configure the sources." "list. On the remote machine execute the following:" msgstr "" +"Nella macchina di destinazione, la prima cosa da fare è montare il disco e " +"copiarvi /var/lib/dpkg/status. Sarà anche necessario creare le " +"directory elencate nella panoramica: archives/partial/ e " +"lists/partial/. Poi portare il disco nella macchina remota e " +"configurare il file sources.list; in tale macchina eseguire:" #. type: #: offline.sgml:142 @@ -7133,6 +9684,12 @@ msgid "" " # apt-get dist-upgrade\n" " [ APT fetches all the packages needed to upgrade the target machine ]" msgstr "" +" # export APT_CONFIG=\"/disc/apt.conf\"\n" +" # apt-get update\n" +" [ APT scarica i file degli elenchi dei pacchetti ]\n" +" # apt-get dist-upgrade\n" +" [ APT scarica tutti i pacchetti necessari per aggiornare la macchina di " +"destinazione ]" #. type:

#: offline.sgml:149 @@ -7142,6 +9699,10 @@ msgid "" "such as dselect. However this presents a problem in communicating " "your selections back to the local computer." msgstr "" +"Il comando dist-upgrade può essere sostituito con qualsiasi altro comando " +"APT standard, in particolare dselect-upgrade. Si può persino usare un " +"frontend per APT come dselect; questo tuttavia pone alcuni problemi " +"nel comunicare le selezioni fatte al computer locale." #. type:

#: offline.sgml:153 @@ -7149,6 +9710,9 @@ msgid "" "Now the disc contains all of the index files and archives needed to upgrade " "the target machine. Take the disc back and run:" msgstr "" +"Ora il disco contiene i file indice e gli archivi necessari per aggiornare " +"la macchina di destinazione. Riportare il disco alla macchina locale ed " +"eseguire:" #. type: #: offline.sgml:159 @@ -7160,6 +9724,11 @@ msgid "" " # apt-get --no-d -o dir::state::status=/var/lib/dpkg/status dist-upgrade\n" " [ Or any other APT command ]" msgstr "" +" # export APT_CONFIG=\"/disc/apt.conf\"\n" +" # apt-get check\n" +" [ APT genera una copia locale dei file di cache ]\n" +" # apt-get --no-d -o dir::state::status=/var/lib/dpkg/status dist-upgrade\n" +" [ O qualsiasi altro comando APT ]" #. type:

#: offline.sgml:165 @@ -7167,6 +9736,8 @@ msgid "" "It is necessary for proper function to re-specify the status file to be the " "local one. This is very important!" msgstr "" +"Per il corretto funzionamento è necessario rispecificare il fatto che il " +"file di stato è quello locale. Questo è molto importante!" #. type:

#: offline.sgml:172 @@ -7177,11 +9748,16 @@ msgid "" "the local machine - but this may not always be possible. DO NOT copy the " "status file if dpkg or APT have been run in the mean time!!" msgstr "" +"Se si sta usando dselect si può fare l'operazione molto rischiosa di copiare " +"disc/status in /var/lib/dpkg/status, in modo che sia aggiornata qualsiasi " +"selezione fatta nella macchina remota. Si raccomanda di fare le selezioni " +"solamente nella macchina locale, ma ciò non è sempre possibile. NON copiare " +"il file di stato se nel frattempo sono stati eseguiti dpkg o APT!" #. type: #: offline.sgml:178 msgid "Using APT and wget" -msgstr "" +msgstr "Usare APT e wget" #. type:

#: offline.sgml:185 @@ -7190,6 +9766,10 @@ msgid "" "any machine. Unlike the method above this requires that the Debian machine " "already has a list of available packages." msgstr "" +"wget è uno strumento popolare e portabile per scaricare file che " +"può essere eseguito quasi su qualsiasi macchina. A differenza del metodo " +"descritto sopra, questo richiede che la macchina Debian abbia già un elenco " +"dei pacchetti disponibili." #. type:

#: offline.sgml:190 @@ -7199,11 +9779,15 @@ msgid "" "option to apt-get and then preparing a wget script to actually fetch the " "packages." msgstr "" +"L'idea di base è di creare un disco che ha solo i file degli archivi dei " +"pacchetti, scaricati dal sito remoto. Ciò viene fatto usando l'opzione " +"--print-uris di apt-get e poi preparando uno script che usa wget per " +"scaricare effettivamente i pacchetti." #. type: #: offline.sgml:196 msgid "Operation" -msgstr "" +msgstr "Funzionamento" #. type:

#: offline.sgml:200 @@ -7211,6 +9795,9 @@ msgid "" "Unlike the previous technique no special configuration files are required. " "We merely use the standard APT commands to generate the file list." msgstr "" +"A differenza della tecnica precedente, non sono richiesti file di " +"configurazione speciali; vengono semplicemente usati i comandi APT standard " +"per generare l'elenco dei file." #. type: #: offline.sgml:205 @@ -7221,6 +9808,10 @@ msgid "" " # apt-get -qq --print-uris dist-upgrade > uris\n" " # awk '{print \"wget -O \" $2 \" \" $1}' < uris > /disc/wget-script" msgstr "" +" # apt-get dist-upgrade \n" +" [ Inserire no alla domanda, assicurarsi di approvare le azioni proposte ]\n" +" # apt-get -qq --print-uris dist-upgrade > uris\n" +" # awk '{print \"wget -O \" $2 \" \" $1}' < uris > /disc/wget-script" #. type:

#: offline.sgml:210 @@ -7228,6 +9819,8 @@ msgid "" "Any command other than dist-upgrade could be used here, including dselect-" "upgrade." msgstr "" +"Si può usare qualsiasi comando che non sia dist-upgrade, incluso dselect-" +"upgrade." #. type:

#: offline.sgml:216 @@ -7237,11 +9830,15 @@ msgid "" "with the current directory as the disc's mount point so as to save the " "output on the disc." msgstr "" +"Il file /disc/wget-script contiene ora un elenco dei comandi wget da " +"eseguire per poter scaricare gli archivi necessari. Questo script dovrebbe " +"essere eseguito con il punto di mount del disco come directory attuale di " +"lavoro, in modo che l'output venga salvato sul disco." #. type:

#: offline.sgml:219 msgid "The remote machine would do something like" -msgstr "" +msgstr "Nella macchina remota fare qualcosa come:" #. type: #: offline.sgml:223 @@ -7251,6 +9848,9 @@ msgid "" " # sh -x ./wget-script\n" " [ wait.. ]" msgstr "" +" # cd /disc\n" +" # sh -x ./wget-script\n" +" [ attendere... ]" #. type: #: offline.sgml:228 @@ -7258,14 +9858,1059 @@ msgid "" "Once the archives are downloaded and the disc returned to the Debian machine " "installation can proceed using," msgstr "" +"Una volta che gli archivi sono stati scaricati e il disco è stato riportato " +"alla macchina Debian, si può procedere con l'installazione usando" #. type: #: offline.sgml:230 #, no-wrap msgid " # apt-get -o dir::cache::archives=\"/disc/\" dist-upgrade" -msgstr "" +msgstr " # apt-get -o dir::cache::archives=\"/disc/\" dist-upgrade" #. type:

#: offline.sgml:234 msgid "Which will use the already fetched archives on the disc." -msgstr "" +msgstr "che userà gli archivi già scaricati e presenti sul disco." + +#, no-wrap +#~ msgid "Debian GNU/Linux" +#~ msgstr "Debian GNU/Linux" + +#, no-wrap +#~ msgid "OPTIONS" +#~ msgstr "OPZIONI" + +#~ msgid "None." +#~ msgstr "Nessuna." + +#, no-wrap +#~ msgid "FILES" +#~ msgstr "FILE" + +#~ msgid "" +#~ msgstr "" + +#~ msgid " &docdir;examples/configure-index.gz\"> /etc/apt.conf\"> " +#~ msgstr " &docdir;examples/configure-index.gz\"> /etc/apt.conf\"> " + +#, no-wrap +#~ msgid "" +#~ "\n" +#~ "\n" +#~ " apt.conf\n" +#~ " 5\n" +#~ " \"\n" +#~ ">\n" +#~ msgstr "" +#~ "\n" +#~ "\n" +#~ " apt.conf\n" +#~ " 5\n" +#~ " \"\n" +#~ ">\n" + +#, no-wrap +#~ msgid "" +#~ "\n" +#~ " apt-get\n" +#~ " 8\n" +#~ " \"\n" +#~ ">\n" +#~ msgstr "" +#~ "\n" +#~ " apt-get\n" +#~ " 8\n" +#~ " \"\n" +#~ ">\n" + +#, no-wrap +#~ msgid "" +#~ "\n" +#~ " apt-config\n" +#~ " 8\n" +#~ " \"\n" +#~ ">\n" +#~ msgstr "" +#~ "\n" +#~ " apt-config\n" +#~ " 8\n" +#~ " \"\n" +#~ ">\n" + +#, no-wrap +#~ msgid "" +#~ "\n" +#~ " apt-cdrom\n" +#~ " 8\n" +#~ " \"\n" +#~ ">\n" +#~ msgstr "" +#~ "\n" +#~ " apt-cdrom\n" +#~ " 8\n" +#~ " \"\n" +#~ ">\n" + +#, no-wrap +#~ msgid "" +#~ "\n" +#~ " apt-cache\n" +#~ " 8\n" +#~ " \"\n" +#~ ">\n" +#~ msgstr "" +#~ "\n" +#~ " apt-cache\n" +#~ " 8\n" +#~ " \"\n" +#~ ">\n" + +#, no-wrap +#~ msgid "" +#~ "\n" +#~ " apt_preferences\n" +#~ " 5\n" +#~ " \"\n" +#~ ">\n" +#~ msgstr "" +#~ "\n" +#~ " apt_preferences\n" +#~ " 5\n" +#~ " \"\n" +#~ ">\n" + +#, no-wrap +#~ msgid "" +#~ "\n" +#~ " apt-key\n" +#~ " 8\n" +#~ " \"\n" +#~ ">\n" +#~ msgstr "" +#~ "\n" +#~ " apt-key\n" +#~ " 8\n" +#~ " \"\n" +#~ ">\n" + +#, no-wrap +#~ msgid "" +#~ "\n" +#~ " apt-secure\n" +#~ " 8\n" +#~ " \"\n" +#~ ">\n" +#~ msgstr "" +#~ "\n" +#~ " apt-secure\n" +#~ " 8\n" +#~ " \"\n" +#~ ">\n" + +#, no-wrap +#~ msgid "" +#~ "\n" +#~ " apt-ftparchive\n" +#~ " 1\n" +#~ " \"\n" +#~ ">\n" +#~ msgstr "" +#~ "\n" +#~ " apt-ftparchive\n" +#~ " 1\n" +#~ " \"\n" +#~ ">\n" + +#, no-wrap +#~ msgid "" +#~ "\n" +#~ " sources.list\n" +#~ " 5\n" +#~ " \"\n" +#~ ">\n" +#~ msgstr "" +#~ "\n" +#~ " sources.list\n" +#~ " 5\n" +#~ " \"\n" +#~ ">\n" + +#, no-wrap +#~ msgid "" +#~ "\n" +#~ " reportbug\n" +#~ " 1\n" +#~ " \"\n" +#~ ">\n" +#~ msgstr "" +#~ "\n" +#~ " reportbug\n" +#~ " 1\n" +#~ " \"\n" +#~ ">\n" + +#, no-wrap +#~ msgid "" +#~ "\n" +#~ " dpkg\n" +#~ " 1\n" +#~ " \"\n" +#~ ">\n" +#~ msgstr "" +#~ "\n" +#~ " dpkg\n" +#~ " 1\n" +#~ " \"\n" +#~ ">\n" + +#, no-wrap +#~ msgid "" +#~ "\n" +#~ " dpkg-buildpackage\n" +#~ " 1\n" +#~ " \"\n" +#~ ">\n" +#~ msgstr "" +#~ "\n" +#~ " dpkg-buildpackage\n" +#~ " 1\n" +#~ " \"\n" +#~ ">\n" + +#, no-wrap +#~ msgid "" +#~ "\n" +#~ " gzip\n" +#~ " 1\n" +#~ " \"\n" +#~ ">\n" +#~ msgstr "" +#~ "\n" +#~ " gzip\n" +#~ " 1\n" +#~ " \"\n" +#~ ">\n" + +#, no-wrap +#~ msgid "" +#~ "\n" +#~ " dpkg-scanpackages\n" +#~ " 1\n" +#~ " \"\n" +#~ ">\n" +#~ msgstr "" +#~ "\n" +#~ " dpkg-scanpackages\n" +#~ " 1\n" +#~ " \"\n" +#~ ">\n" + +#, no-wrap +#~ msgid "" +#~ "\n" +#~ " dpkg-scansources\n" +#~ " 1\n" +#~ " \"\n" +#~ ">\n" +#~ msgstr "" +#~ "\n" +#~ " dpkg-scansources\n" +#~ " 1\n" +#~ " \"\n" +#~ ">\n" + +#, no-wrap +#~ msgid "" +#~ "\n" +#~ " dselect\n" +#~ " 1\n" +#~ " \"\n" +#~ ">\n" +#~ msgstr "" +#~ "\n" +#~ " dselect\n" +#~ " 1\n" +#~ " \"\n" +#~ ">\n" + +#, no-wrap +#~ msgid "" +#~ "\n" +#~ " aptitude\n" +#~ " 8\n" +#~ " \"\n" +#~ ">\n" +#~ msgstr "" +#~ "\n" +#~ " aptitude\n" +#~ " 8\n" +#~ " \"\n" +#~ ">\n" + +#, no-wrap +#~ msgid "" +#~ "\n" +#~ " synaptic\n" +#~ " 8\n" +#~ " \"\n" +#~ ">\n" +#~ msgstr "" +#~ "\n" +#~ " synaptic\n" +#~ " 8\n" +#~ " \"\n" +#~ ">\n" + +#, no-wrap +#~ msgid "" +#~ "\n" +#~ " debsign\n" +#~ " 1\n" +#~ " \"\n" +#~ ">\n" +#~ msgstr "" +#~ "\n" +#~ " debsign\n" +#~ " 1\n" +#~ " \"\n" +#~ ">\n" + +#, no-wrap +#~ msgid "" +#~ "\n" +#~ " debsig-verify\n" +#~ " 1\n" +#~ " \"\n" +#~ ">\n" +#~ msgstr "" +#~ "\n" +#~ " debsig-verify\n" +#~ " 1\n" +#~ " \"\n" +#~ ">\n" + +#, no-wrap +#~ msgid "" +#~ "\n" +#~ " gpg\n" +#~ " 1\n" +#~ " \"\n" +#~ ">\n" +#~ msgstr "" +#~ "\n" +#~ " gpg\n" +#~ " 1\n" +#~ " \"\n" +#~ ">\n" + +#, no-wrap +#~ msgid "" +#~ "\n" +#~ " gnome-apt\n" +#~ " 1\n" +#~ " \"\n" +#~ ">\n" +#~ msgstr "" +#~ "\n" +#~ " gnome-apt\n" +#~ " 1\n" +#~ " \"\n" +#~ ">\n" + +#, no-wrap +#~ msgid "" +#~ "\n" +#~ " wajig\n" +#~ " 1\n" +#~ " \"\n" +#~ ">\n" +#~ msgstr "" +#~ "\n" +#~ " wajig\n" +#~ " 1\n" +#~ " \"\n" +#~ ">\n" + +#, no-wrap +#~ msgid "" +#~ "\n" +#~ "\n" +#~ "
apt@packages.debian.org
\n" +#~ " \n" +#~ " Jason Gunthorpe\n" +#~ " \n" +#~ " \n" +#~ " 1998-2001 Jason Gunthorpe\n" +#~ " 28 October 2008\n" +#~ " Linux\n" +#~ msgstr "" +#~ "\n" +#~ "\n" +#~ "
apt@packages.debian.org
\n" +#~ " \n" +#~ " Jason Gunthorpe\n" +#~ " \n" +#~ " \n" +#~ " 1998-2001 Jason Gunthorpe\n" +#~ " 28 ottobre 2008\n" +#~ " Linux\n" + +#, no-wrap +#~ msgid "" +#~ " \n" +#~ "\"> \n" +#~ msgstr "" +#~ " \n" +#~ "\"> \n" + +#, no-wrap +#~ msgid "" +#~ "\n" +#~ " apt@packages.debian.org\n" +#~ " \n" +#~ "\">\n" +#~ msgstr "" +#~ "\n" +#~ " apt@packages.debian.org\n" +#~ " \n" +#~ "\">\n" + +#, no-wrap +#~ msgid "" +#~ "\n" +#~ " Jason\n" +#~ " Gunthorpe\n" +#~ " \n" +#~ " \n" +#~ "\">\n" +#~ msgstr "" +#~ "\n" +#~ " Jason\n" +#~ " Gunthorpe\n" +#~ " \n" +#~ " \n" +#~ "\">\n" + +#, no-wrap +#~ msgid "" +#~ "\n" +#~ " Mike\n" +#~ " O'Connor\n" +#~ " \n" +#~ " \n" +#~ "\">\n" +#~ msgstr "" +#~ "\n" +#~ " Mike\n" +#~ " O'Connor\n" +#~ " \n" +#~ " \n" +#~ "\">\n" + +#, no-wrap +#~ msgid "" +#~ "Linux\n" +#~ "\">\n" +#~ msgstr "" +#~ "Linux\n" +#~ "\">\n" + +#, no-wrap +#~ msgid "" +#~ "\n" +#~ " Jason Gunthorpe\n" +#~ " 1998-2001\n" +#~ " \n" +#~ "\">\n" +#~ msgstr "" +#~ "\n" +#~ " Jason Gunthorpe\n" +#~ " 1998-2001\n" +#~ " \n" +#~ "\">\n" + +#, no-wrap +#~ msgid "" +#~ "\n" +#~ "Bugs\n" +#~ " APT bug page. \n" +#~ " If you wish to report a bug in APT, please see\n" +#~ " /usr/share/doc/debian/bug-reporting.txt or the\n" +#~ " &reportbug; command.\n" +#~ " \n" +#~ "
\n" +#~ "\">\n" +#~ msgstr "" +#~ "\n" +#~ "Bachi\n" +#~ " Pagina dei bachi di APT. \n" +#~ " Per segnalare un baco in APT, vedere\n" +#~ " /usr/share/doc/debian/bug-reporting.txt o il\n" +#~ " comando &reportbug;.\n" +#~ " \n" +#~ " \n" +#~ "\">\n" + +#, no-wrap +#~ msgid "" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " Configuration File; Specify a configuration file to use. \n" +#~ " The program will read the default configuration file and then this \n" +#~ " configuration file. See &apt-conf; for syntax information. \n" +#~ " \n" +#~ " \n" +#~ " \n" +#~ msgstr "" +#~ " \n" +#~ " \n" +#~ " \n" +#~ " File di configurazione; Specifica un file di configurazione da usare. \n" +#~ " Il programma leggerà il file di configurazione predefinito e poi questo \n" +#~ " file di configurazione. Vedere &apt-conf; per informazioni sulla sintassi. \n" +#~ " \n" +#~ " \n" +#~ " \n" + +#, no-wrap +#~ msgid "" +#~ " &cachedir;/archives/partial/\n" +#~ " Storage area for package files in transit.\n" +#~ " Configuration Item: Dir::Cache::Archives (implicit partial). \n" +#~ " \n" +#~ "\">\n" +#~ msgstr "" +#~ " &cachedir;/archives/partial/\n" +#~ " Area di memorizzazione per i file dei pacchetti in transito.\n" +#~ " Voce di configurazione: Dir::Cache::Archives (partial implicito). \n" +#~ " \n" +#~ "\">\n" + +#, no-wrap +#~ msgid "" +#~ " &statedir;/lists/partial/\n" +#~ " Storage area for state information in transit.\n" +#~ " Configuration Item: Dir::State::Lists (implicit partial).\n" +#~ " \n" +#~ "\">\n" +#~ msgstr "" +#~ " &statedir;/lists/partial/\n" +#~ " Area di archiviazione per le informazioni di stato in transito.\n" +#~ " Voce di configurazione: Dir::State::Lists (partial implicito).\n" +#~ " \n" +#~ "\">\n" + +#~ msgid "" +#~ msgstr "" + +#, no-wrap +#~ msgid "" +#~ "\n" +#~ "john@doe.org in 2009,\n" +#~ " 2010 and Daniela Acme daniela@acme.us in 2010 together with the\n" +#~ " Debian Dummy l10n Team debian-l10n-dummy@lists.debian.org.\n" +#~ "\">\n" +#~ msgstr "" +#~ "\n" +#~ "eugenia@linuxcare.com nel 2000 e da Gabriele Stilli\n" +#~ " superenzima@libero.it nel 2010 insieme a\n" +#~ " chiunque vorrà unirsi (DA CORREGGERE ALLA FINE).\n" +#~ "\">\n" + +#, no-wrap +#~ msgid "" +#~ "\n" +#~ "\n" +#~ msgstr "" +#~ "\n" +#~ "\n" + +#~ msgid "&apt-author.jgunthorpe; &apt-author.team; &apt-email; &apt-product; 29 February 2004" +#~ msgstr "&apt-author.jgunthorpe; &apt-author.team; &apt-email; &apt-product; 29 February 2004" + +#~ msgid "apt-cache" +#~ msgstr "apt-cache" + +#~ msgid "APT package handling utility -- cache manipulator" +#~ msgstr "APT strumento di gestione pacchetti -- manipolatore di cache" + +#~ msgid "apt-cache add file gencaches showpkg pkg showsrc pkg stats dump dumpavail unmet search regex show pkg depends pkg rdepends pkg pkgnames prefix dotty pkg xvcg pkg policy pkgs madison pkgs " +#~ msgstr "apt-cache add file gencaches showpkg pacchetto showsrc pacchetto stats dump dumpavail unmet search regex show pacchetto depends pacchetto rdepends pacchetto pkgnames prefisso dotty pacchetto xvcg pacchetto policy pacchetti madison pacchetti " + +#~ msgid "add file(s)" +#~ msgstr "add file" + +#~ msgid "add adds the named package index files to the package cache. This is for debugging only." +#~ msgstr "add aggiunge i file di indice dei pacchetti menzionati alla cache dei pacchetti. Questo serve solo per fare il debug." + +#~ msgid "gencaches" +#~ msgstr "gencaches" + +#~ msgid "gencaches performs the same operation as apt-get check. It builds the source and package caches from the sources in &sources-list; and from /var/lib/dpkg/status." +#~ msgstr "gencaches esegue la stessa operazione di apt-get check. Costruisce le cache sorgenti e pacchetti dalle fonti in &sources-list; e da /var/lib/dpkg/status." + +#~ msgid "showpkg pkg(s)" +#~ msgstr "showpkg pacchetti" + +#~ msgid "stats" +#~ msgstr "stats" + +#~ msgid "Pure virtual packages is the number of packages that exist only as a virtual package name; that is, packages only \"provide\" the virtual package name, and no package actually uses the name. For instance, \"mail-transport-agent\" in the Debian GNU/Linux system is a pure virtual package; several packages provide \"mail-transport-agent\", but there is no package named \"mail-transport-agent\"." +#~ msgstr "Pacchetti virtuali puri è il numero di pacchetti che esistono solo come nome di pacchetto virtuale; vale a dire, i pacchetti \"forniscono\" solo il nome del pacchetto virtuale e nessun pacchetto in realtà usa quel nome. Per esempio, \"mail-transport-agent\" nel sistema Debian GNU/Linux è un pacchetto virtuale puro; diversi pacchetti forniscono \"mail-transport-agent\", ma non c'è alcun pacchetto chiamato \"mail-transport-agent\"." + +#~ msgid "Single virtual packages is the number of packages with only one package providing a particular virtual package. For example, in the Debian GNU/Linux system, \"X11-text-viewer\" is a virtual package, but only one package, xless, provides \"X11-text-viewer\"." +#~ msgstr "Pacchetti virtuali singoli è il numero di pacchetti per cui solo un pacchetto fornisce un particolare pacchetto virtuale. Per esempio, nel sistema Debian GNU/Linux, \"X11-text-viewer\" è un pacchetto virtuale, ma solo un pacchetto, xless, fornisce \"X11-text-viewer\"." + +#~ msgid "Mixed virtual packages is the number of packages that either provide a particular virtual package or have the virtual package name as the package name. For instance, in the Debian GNU/Linux system, \"debconf\" is both an actual package, and provided by the debconf-tiny package." +#~ msgstr "Pacchetti virtuali misti è il numero di pacchetti che forniscono un particolare pacchetto virtuale o che hanno il nome del pacchetto virtuale come nome del pacchetto. Per esempio, nel sistema Debian GNU/Linux , \"debconf\" è sia un pacchetto vero e proprio sia fornito dal pacchetto debconf-tiny." + +#~ msgid "Total distinct versions is the number of package versions found in the cache; this value is therefore at least equal to the number of total package names. If more than one distribution (both \"stable\" and \"unstable\", for instance), is being accessed, this value can be considerably larger than the number of total package names." +#~ msgstr "Totale versioni distinte è il numero di versioni di pacchetti trovate nella cache; questo valore pertanto è almeno pari al numero dei nomi totali di pacchetto. Se si ha accesso a più di una distribuzione (ad esempio sia \"stable\" che \"unstable\"), questo valore può essere decisamente più grande del numero dei nomi totali di pacchetti." + +#~ msgid "showsrc pkg(s)" +#~ msgstr "showsrc pacchetti" + +#~ msgid "showsrc displays all the source package records that match the given package names. All versions are shown, as well as all records that declare the name to be a Binary." +#~ msgstr "showsrc mostra tutti i pacchetti sorgente che combaciano coi nomi dei pacchetti dati. Vengono mostrate tutte le versioni, così come tutti i record che dichiarano che il nome è un pacchetto binario." + +#~ msgid "dump" +#~ msgstr "dump" + +#~ msgid "dumpavail" +#~ msgstr "dumpavail" + +#~ msgid "unmet" +#~ msgstr "unmet" + +#~ msgid "show pkg(s)" +#~ msgstr "show pacchetti" + +#~ msgid "search regex [ regex ... ]" +#~ msgstr "search regex [ regex ... ]" + +#~ msgid "search performs a full text search on all available package lists for the POSIX regex pattern given, see regex 7. It searches the package names and the descriptions for an occurrence of the regular expression and prints out the package name and the short description, including virtual package names. If is given then output identical to show is produced for each matched package, and if is given then the long description is not searched, only the package name is." +#~ msgstr "search esegue una ricerca completa del testo su tutte le liste di pacchetti disponibili cercando il modellp di regexp POSIX fornito; vedere regex 7. Cerca le occorrenze dell'expressione regolare nei nomi e nelle descrizioni dei pacchetti e stampa il nome e la descrizione breve dei pacchetti, inclusi quelli virtuali. Se viene fornita l'opzione , il risultato è identico a show per ciascun pacchetto che soddisfa la ricerca; se viene fornita l'opzione la ricerca viene fatta solo sul nome del pacchetto e non sulla descrizione lunga." + +#~ msgid "depends pkg(s)" +#~ msgstr "depends pacchetti" + +#~ msgid "rdepends pkg(s)" +#~ msgstr "rdepends pacchetti" + +#~ msgid "pkgnames [ prefix ]" +#~ msgstr "pkgnames [ prefisso ]" + +#~ msgid "dotty pkg(s)" +#~ msgstr "dotty pacchetti" + +#~ msgid "The resulting nodes will have several shapes; normal packages are boxes, pure provides are triangles, mixed provides are diamonds, missing packages are hexagons. Orange boxes mean recursion was stopped [leaf packages], blue lines are pre-depends, green lines are conflicts." +#~ msgstr "I nodi risultanti avranno diverse forme: i pacchetti normali sono quadrati, quelli forniti puri sono triangoli, quelli forniti misti sono rombi, i pacchetti mancanti sono esagoni. I quadrati arancioni indicano che la ricorsione è stata arrestata [pacchetti foglia], le linee blu sono pre-dipendenze, le linee verdi sono conflitti." + +#~ msgid "xvcg pkg(s)" +#~ msgstr "xvcg pacchetti" + +#~ msgid "policy [ pkg(s) ]" +#~ msgstr "policy [ pacchetti ]" + +#~ msgid "madison /[ pkg(s) ]" +#~ msgstr "madison /[ pacchetti ]" + +#~ msgid "" +#~ msgstr "" + +#~ msgid "" +#~ msgstr "" + +#~ msgid "" +#~ msgstr "" + +#~ msgid "" +#~ msgstr "" + +#~ msgid "" +#~ msgstr "" + +#~ msgid "" +#~ msgstr "" + +#~ msgid "" +#~ msgstr "" + +#~ msgid "" +#~ msgstr "" + +#~ msgid "Print only important dependencies; for use with unmet and depends. Causes only Depends and Pre-Depends relations to be printed. Configuration Item: APT::Cache::Important." +#~ msgstr "Stampa solo le dipendenze importanti; da usarsi con unmet e depends. Fa sì che vengano stampate solo le relazioni di Depends e Pre-Depends. Voce di configurazione: APT::Cache::Important." + +#~ msgid "" +#~ msgstr "" + +#~ msgid "" +#~ msgstr "" + +#~ msgid "" +#~ msgstr "" + +#~ msgid "" +#~ msgstr "" + +#~ msgid "Print full records for all available versions. This is the default; to turn it off, use . If is specified, only the candidate version will displayed (the one which would be selected for installation). This option is only applicable to the show command. Configuration Item: APT::Cache::AllVersions." +#~ msgstr "Stampa i record completi per tutte le versioni disponibili. Questa è l'impostazione predefinita; per disattivarla, usare . Se si specifica , verrà visualizzata solo la versione candidata (quella che sarebbe scelta per l'installazione). Questa opzione è applicabile solo al comando show. Voce di configurazione: APT::Cache::AllVersions." + +#~ msgid "" +#~ msgstr "" + +#~ msgid "" +#~ msgstr "" + +#~ msgid "" +#~ msgstr "" + +#~ msgid "" +#~ msgstr "" + +#~ msgid "" +#~ msgstr "" + +#~ msgid "" +#~ msgstr "" + +#~ msgid "" +#~ msgstr "" + +#~ msgid "&apt-commonoptions;" +#~ msgstr "&apt-commonoptions;" + +#~ msgid "&file-sourceslist; &file-statelists;" +#~ msgstr "&file-sourceslist; &file-statelists;" + +#~ msgid "&apt-author.jgunthorpe; &apt-author.team; &apt-email; &apt-product; 14 February 2004" +#~ msgstr "&apt-author.jgunthorpe; &apt-author.team; &apt-email; &apt-product; 14 febbraio 2004" + +#~ msgid "apt-cdrom" +#~ msgstr "apt-cdrom" + +#~ msgid "APT CDROM management utility" +#~ msgstr "Strumento di APT per la gestione dei CDROM" + +#~ msgid "apt-cdrom add ident " +#~ msgstr "apt-cdrom add ident " + +#~ msgid "apt-cdrom is used to add a new CDROM to APTs list of available sources. apt-cdrom takes care of determining the structure of the disc as well as correcting for several possible mis-burns and verifying the index files." +#~ msgstr "apt-cdrom è usato per aggiungere un nuovo CDROM alla lista di sorgenti disponibili di APT. apt-cdrom si prende cura di determinare la struttura del disco e anche di correggere possibili errori di masterizzazione e verificare i file indice." + +#~ msgid "It is necessary to use apt-cdrom to add CDs to the APT system, it cannot be done by hand. Furthermore each disk in a multi-cd set must be inserted and scanned separately to account for possible mis-burns." +#~ msgstr "Per aggiungere CD al sistema APT è necessario usare apt-cdrom, in quanto ciò non può essere fatto manualmente. Inoltre ogni disco in un insieme di più CD deve essere inserito e scansionato separatamente per tenere conto di possibili errori di masterizzazione." + +#~ msgid "add" +#~ msgstr "add" + +#~ msgid "add is used to add a new disc to the source list. It will unmount the CDROM device, prompt for a disk to be inserted and then proceed to scan it and copy the index files. If the disc does not have a proper disk directory you will be prompted for a descriptive title." +#~ msgstr "add è usato per aggiungere un nuovo CDROM alla lista delle sorgenti. Smonterà il device del CDROM, chiederà di inserire un disco e poi procederà alla scansione del cdrom e copierà i file indice. Se il disco non ha una directory .disk/ corretta verrà chiesto un titolo descrittivo." + +#~ msgid "APT uses a CDROM ID to track which disc is currently in the drive and maintains a database of these IDs in &statedir;/cdroms.list" +#~ msgstr "APT usa un identificatore del CDROM per tenere traccia di quale disco è attualmente nel lettore e mantiene un database di questi identificativi nel file &statedir;/cdroms.list." + +#~ msgid "ident" +#~ msgstr "ident" + +#~ msgid "Unless the , or option is given one of the commands below must be present. " +#~ msgstr "A meno che non venga fornita l'opzione o , deve essere presente uno dei comandi seguenti. " + +#~ msgid "" +#~ msgstr "" + +#~ msgid "" +#~ msgstr "" + +#~ msgid "Mount point; specify the location to mount the cdrom. This mount point must be listed in /etc/fstab and properly configured. Configuration Item: Acquire::cdrom::mount." +#~ msgstr "Punto di mount; specifica la posizione in cui montare il CDROM. Questo punto di mount deve essere elencato nel file /etc/fstab e configurato correttamente. Voce di configurazione: Acquire::cdrom::mount." + +#~ msgid "" +#~ msgstr "" + +#~ msgid "" +#~ msgstr "" + +#~ msgid "Rename a disc; change the label of a disk or override the disks given label. This option will cause apt-cdrom to prompt for a new label. Configuration Item: APT::CDROM::Rename." +#~ msgstr "Rinomina un disco; cambia l'etichetta di un disco o soppianta l'etichetta originale del disco. Questa opzione farà sì che apt-cdrom chieda una nuova etichetta. Voce di configurazione: APT::CDROM::Rename." + +#~ msgid "" +#~ msgstr "" + +#~ msgid "" +#~ msgstr "" + +#~ msgid "" +#~ msgstr "" + +#~ msgid "" +#~ msgstr "" + +#~ msgid "" +#~ msgstr "" + +#~ msgid "" +#~ msgstr "" + +#~ msgid "" +#~ msgstr "" + +#~ msgid "apt-config" +#~ msgstr "apt-config" + +#~ msgid "apt-config shell dump " +#~ msgstr "apt-config shell dump " + +#~ msgid "apt-config is an internal program used by various portions of the APT suite to provide consistent configurability. It accesses the main configuration file /etc/apt/apt.conf in a manner that is easy to use by scripted applications." +#~ msgstr "apt-config è un programma interno usato da varie parti della suite APT per fornire una configurabiità coerente. Accede al file principale di configurazione /etc/apt/apt.conf in modo facile da usare da parte di applicazioni che girano sotto forma di script." + +#~ msgid "Unless the , or option is given one of the commands below must be present." +#~ msgstr "A meno che non venga fornita l'opzione o , deve essere presente uno dei comandi seguenti." + +#~ msgid "shell" +#~ msgstr "shell" + +#~ msgid "shell is used to access the configuration information from a shell script. It is given pairs of arguments, the first being a shell variable and the second the configuration value to query. As output it lists a series of shell assignments commands for each present value. In a shell script it should be used like:" +#~ msgstr "shell viene usato per accedere alle informazioni di configurazione da parte di uno script di shell. Riceve coppie di argomenti, il primo dei quali è una variabile di shell e il secondo è il valore di configurazione da interrogare. Come risultato elenca una serie di comandi di assegnazione di shell per ciascun valore presente. In uno script di shell dovrebbe essere usato in modo simile a:" + +#~ msgid "apt-extracttemplates" +#~ msgstr "apt-extracttemplates" + +#~ msgid "Utility to extract DebConf config and templates from Debian packages" +#~ msgstr "Utilità per estrarre configurazioni e modelli DebConf dai pacchetti Debian" + +#~ msgid "apt-extracttemplates file" +#~ msgstr "apt-extracttemplates file" + +#~ msgid "template-file and config-script are written to the temporary directory specified by the -t or --tempdir (APT::ExtractTemplates::TempDir) directory, with filenames of the form package.template.XXXX and package.config.XXXX" +#~ msgstr "file-template e script-di-configurazione sono scritti nella directory temporanea specificata da -t o --tempdir (APT::ExtractTemplates::TempDir) directory, con i nomi dei file nella forma pacchetto.template.XXXX e pacchetto.config.XXXX" + +#~ msgid "" +#~ msgstr "" + +#~ msgid "" +#~ msgstr "" + +#~ msgid "Temporary directory in which to write extracted debconf template files and config scripts. Configuration Item: APT::ExtractTemplates::TempDir" +#~ msgstr "Directory temporanea dove scrivere i file template di debconf e gli script di configurazione estratti. Voce di configurazione: APT::ExtractTemplates::TempDir." + +#~ msgid "&apt-author.jgunthorpe; &apt-author.team; &apt-email; &apt-product; 17 August 2009" +#~ msgstr "&apt-author.jgunthorpe; &apt-author.team; &apt-email; &apt-product; 17 agosto 2009" + +#~ msgid "apt-ftparchive" +#~ msgstr "apt-ftparchive" + +#~ msgid "apt-ftparchive packagespathoverridepathprefix sourcespathoverridepathprefix contents path release path generate config-file section clean config-file " +#~ msgstr "apt-ftparchive packagespercorsooverrideprefisso del percorso sourcespercorsooverrideprefisso del percorso contents percorso release percorso generate file-di-configurazione sezione clean file-di-configurazione " + +#~ msgid "packages" +#~ msgstr "packages" + +#~ msgid "sources" +#~ msgstr "sources" + +#~ msgid "contents" +#~ msgstr "contents" + +#~ msgid "release" +#~ msgstr "release" + +#~ msgid "The release command generates a Release file from a directory tree. It recursively searches the given directory for Packages, Packages.gz, Packages.bz2, Sources, Sources.gz, Sources.bz2, Release and md5sum.txt files. It then writes to stdout a Release file containing an MD5 digest and SHA1 digest for each file." +#~ msgstr "Il comando release genera un file Release da un albero di directory. Cerca ricorivamente file Packages, Packages.gz, Packages.bz2, Sources, Sources.gz, Sources.bz2, Release e md5sum.txt nella directory data. Quindi scrive su stdout un file Release che contiene un digest MD5 e SHA1 per ciascun file." + +#~ msgid "Values for the additional metadata fields in the Release file are taken from the corresponding variables under APT::FTPArchive::Release, e.g. APT::FTPArchive::Release::Origin. The supported fields are: Origin, Label, Suite, Version, Codename, Date, Architectures, Components, Description." +#~ msgstr "I valori dei campi di metadati aggiuntivi nel file Release sono presi dalle variabili corrispondenti sotto APT::FTPArchive::Release, ad esempio APT::FTPArchive::Release::Origin. I campi supportati sono: Origin, Label, Suite, Version, Codename, Date, Architectures, Components, Description." + +#~ msgid "generate" +#~ msgstr "generate" + +#~ msgid "clean" +#~ msgstr "clean" + +#~ msgid "The generate configuration has 4 separate sections, each described below." +#~ msgstr "La configurazione di generate ha 4 sezioni separate, ciascuna delle quali è descritta sotto." + +#~ msgid "Dir Section" +#~ msgstr "Sezione Dir" + +#~ msgid "ArchiveDir" +#~ msgstr "ArchiveDir" + +#~ msgid "OverrideDir" +#~ msgstr "OverrideDir" + +#~ msgid "CacheDir" +#~ msgstr "CacheDir" + +#~ msgid "Specifies the location of the cache files" +#~ msgstr "Specifica la posizione dei file cache." + +#~ msgid "FileListDir" +#~ msgstr "FileListDir" + +#~ msgid "Default Section" +#~ msgstr "Sezione Default" + +#~ msgid "Packages::Compress" +#~ msgstr "Packages::Compress" + +#~ msgid "Sets the default compression schemes to use for the Package index files. It is a string that contains a space separated list of at least one of: '.' (no compression), 'gzip' and 'bzip2'. The default for all compression schemes is '. gzip'." +#~ msgstr "Imposta gli schemi di compressione predefiniti da usare per i file indice dei pacchetti. È una stringa che contiene una lista separata da spazi contenente almeno uno fra \".\" (nessuna compressione), \"gzip\" e \"bzip2\". Il valore predefinito per tutti gli schemi di compressione è \"gzip\"." + +#~ msgid "Packages::Extensions" +#~ msgstr "Packages::Extensions" + +#~ msgid "Sources::Compress" +#~ msgstr "Sources::Compress" + +#~ msgid "Sources::Extensions" +#~ msgstr "Sources::Extensions" + +#~ msgid "Contents::Compress" +#~ msgstr "Contents::Compress" + +#~ msgid "DeLinkLimit" +#~ msgstr "DeLinkLimit" + +#~ msgid "FileMode" +#~ msgstr "FileMode" + +#~ msgid "TreeDefault Section" +#~ msgstr "Sezione TreeDefault" + +#~ msgid "MaxContentsChange" +#~ msgstr "MaxContentsChange" + +#~ msgid "ContentsAge" +#~ msgstr "ContentsAge" + +#~ msgid "Directory" +#~ msgstr "Directory" + +#~ msgid "SrcDirectory" +#~ msgstr "SrcDirectory" + +#~ msgid "Packages" +#~ msgstr "Packages" + +#~ msgid "Sources" +#~ msgstr "Sources" + +#~ msgid "InternalPrefix" +#~ msgstr "InternalPrefix" + +#~ msgid "Contents" +#~ msgstr "Contents" + +#~ msgid "Sets the output Contents file. Defaults to $(DIST)/Contents-$(ARCH). If this setting causes multiple Packages files to map onto a single Contents file (such as the default) then apt-ftparchive will integrate those package files together automatically." +#~ msgstr "Imposta il file Contents di uscita. Il valore predefinito è $(DIST)/Contents-$(ARCH). Se questa impostazione fa sì che più file Packages corrispondano a un solo file Contents (come con il valore predefinito) allora apt-ftparchive unirà automaticamente insieme questi file dei pacchetti." + +#~ msgid "Contents::Header" +#~ msgstr "Contents::Header" + +#~ msgid "BinCacheDB" +#~ msgstr "BinCacheDB" + +#~ msgid "FileList" +#~ msgstr "FileList" + +#~ msgid "SourceFileList" +#~ msgstr "SourceFileList" + +#~ msgid "Tree Section" +#~ msgstr "Sezione Tree" + +#~ msgid "The Tree section takes a scope tag which sets the $(DIST) variable and defines the root of the tree (the path is prefixed by ArchiveDir). Typically this is a setting such as dists/woody." +#~ msgstr "La sezione Tree prende un tag di ambito che imposta la variabile $(DIST) e definisce la radice dell'albero (il percorso viene prefissato da ArchiveDir). Di solito è un'impostazione simile a dists/woody." + +#~ msgid "All of the settings defined in the TreeDefault section can be use in a Tree section as well as three new variables." +#~ msgstr "Tutte le impostazioni definite nella sezione TreeDefault possono essere usate in una sezione Tree, oltre a tre nuove variabili." + +#~ msgid "Sections" +#~ msgstr "Sezioni" + +#~ msgid "This is a space separated list of sections which appear under the distribution, typically this is something like main contrib non-free" +#~ msgstr "Questa è una lista di sezioni che appaiono sotto la distribuzione, separate da spazi; tipicamente è simile a main contrib non-free." + +#~ msgid "Architectures" +#~ msgstr "Architetture" + +#~ msgid "BinOverride" +#~ msgstr "BinOverride" + +#~ msgid "SrcOverride" +#~ msgstr "SrcOverride" + +#~ msgid "ExtraOverride" +#~ msgstr "ExtraOverride" + +#~ msgid "SrcExtraOverride" +#~ msgstr "SrcExtraOverride" + +#~ msgid "BinDirectory Section" +#~ msgstr "Sezione BinDirectory" + +#~ msgid "Sets the Contents file output. (optional)" +#~ msgstr "Imposta il file Contents di uscita (facoltativo)." + +#~ msgid "PathPrefix" +#~ msgstr "PathPrefix" + +#~ msgid "FileList, SourceFileList" +#~ msgstr "FileList, SourceFileList" + +#~ msgid "The binary override file is fully compatible with &dpkg-scanpackages;. It contains 4 fields separated by spaces. The first field is the package name, the second is the priority to force that package to, the third is the the section to force that package to and the final field is the maintainer permutation field." +#~ msgstr "Il file override binario è completamente compatibile con &dpkg-scanpackages;. Contiene 4 campi separati da spazi. Il primo campo è il nome del pacchetto, il secondo è la priorità a cui forzare quel pacchetto, il terzo è la sezione in cui forzare quel pacchetto e l'ultimo campo è il campo di permutazione del manutentore." + +#, fuzzy +#~ msgid "update" +#~ msgstr "upgrade" + +#, fuzzy +#~ msgid "dselect-upgrade" +#~ msgstr "dist-upgrade" + +#, fuzzy +#~ msgid "apt-key" +#~ msgstr "apt-get" + +#, fuzzy +#~ msgid "For more details, on Debian GNU/Linux systems, see the file /usr/share/common-licenses/GPL for the full license." +#~ msgstr "Per ulteriori dettagli sui sistemi GNU/Linux si veda il testo completo della licenza nel file /usr/share/common-licenses/GPL." + +#, fuzzy +#~ msgid "To enable the APT method you need to select [A]ccess in dselect and then choose the APT method. You will be prompted for a set of Sources which are places to fetch archives from. These can be remote Internet sites, local Debian mirrors or CDROMs. Each source can provide a fragment of the total Debian archive, APT will automatically combine them to form a complete set of packages. If you have a CDROM then it is a good idea to specify it first and then specify a mirror so that you have access to the latest bug fixes. APT will automatically use packages on your CDROM before downloading from the Internet." +#~ msgstr "Per abilitare il metodo APT dovete selezionare [A]ccess in dselect e scegliere il metodo APT; vi verrà chiesto un insieme di fonti (Sources), cioè di posti da cui scaricare gli archivi. Tali fonti possono essere siti Internet remoti, mirror locali di Debian o CDROM; ciascuna di esse può fornire una parte dell'archivio Debian, ed APT le combinerà insieme in un set completo di pacchetti. Se avete un CDROM è una buona idea indicare quello per primo, e poi i mirror, in modo da avere accesso alle ultime versioni; APT userà in questo modo automaticamente i pacchetti sul CDROM prima di scaricarli da Internet." -- cgit v1.2.3 From 84de0ceaad7e8c74f47e06bccba83b1b310262b6 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Tue, 8 Jan 2013 16:35:57 +0100 Subject: fix pkgProblemResolver::Scores, thanks to Paul Wise. Closes: #697577 --- apt-pkg/algorithms.cc | 14 +++++++------- apt-pkg/deb/deblistparser.cc | 13 +++++++------ debian/changelog | 4 ++++ 3 files changed, 18 insertions(+), 13 deletions(-) diff --git a/apt-pkg/algorithms.cc b/apt-pkg/algorithms.cc index 8cd9d4c6e..75e914f7d 100644 --- a/apt-pkg/algorithms.cc +++ b/apt-pkg/algorithms.cc @@ -553,8 +553,8 @@ void pkgProblemResolver::MakeScores() // Important Required Standard Optional Extra int PrioMap[] = { 0, - _config->FindI("pkgProblemResolver::Scores::Important",3), - _config->FindI("pkgProblemResolver::Scores::Required",2), + _config->FindI("pkgProblemResolver::Scores::Important",2), + _config->FindI("pkgProblemResolver::Scores::Required",3), _config->FindI("pkgProblemResolver::Scores::Standard",1), _config->FindI("pkgProblemResolver::Scores::Optional",-1), _config->FindI("pkgProblemResolver::Scores::Extra",-2) @@ -568,11 +568,11 @@ void pkgProblemResolver::MakeScores() if (_config->FindB("Debug::pkgProblemResolver::ShowScores",false) == true) clog << "Settings used to calculate pkgProblemResolver::Scores::" << endl - << " Important => " << PrioMap[1] << endl - << " Required => " << PrioMap[2] << endl - << " Standard => " << PrioMap[3] << endl - << " Optional => " << PrioMap[4] << endl - << " Extra => " << PrioMap[5] << endl + << " Required => " << PrioMap[pkgCache::State::Required] << endl + << " Important => " << PrioMap[pkgCache::State::Important] << endl + << " Standard => " << PrioMap[pkgCache::State::Standard] << endl + << " Optional => " << PrioMap[pkgCache::State::Optional] << endl + << " Extra => " << PrioMap[pkgCache::State::Extra] << endl << " Essentials => " << PrioEssentials << endl << " InstalledAndNotObsolete => " << PrioInstalledAndNotObsolete << endl << " Depends => " << PrioDepends << endl diff --git a/apt-pkg/deb/deblistparser.cc b/apt-pkg/deb/deblistparser.cc index b84bd6fdd..56d5297fc 100644 --- a/apt-pkg/deb/deblistparser.cc +++ b/apt-pkg/deb/deblistparser.cc @@ -28,12 +28,13 @@ using std::string; -static debListParser::WordList PrioList[] = {{"important",pkgCache::State::Important}, - {"required",pkgCache::State::Required}, - {"standard",pkgCache::State::Standard}, - {"optional",pkgCache::State::Optional}, - {"extra",pkgCache::State::Extra}, - {}}; +static debListParser::WordList PrioList[] = { + {"required",pkgCache::State::Required}, + {"important",pkgCache::State::Important}, + {"standard",pkgCache::State::Standard}, + {"optional",pkgCache::State::Optional}, + {"extra",pkgCache::State::Extra}, + {}}; // ListParser::debListParser - Constructor /*{{{*/ // --------------------------------------------------------------------- diff --git a/debian/changelog b/debian/changelog index 1dc31af9f..dcc6e4d16 100644 --- a/debian/changelog +++ b/debian/changelog @@ -2,6 +2,10 @@ apt (0.9.7.8) UNRELEASED; urgency=low [ Manpages translation updates ] * Italian (Beatrice Torracca). Closes: #696601 + + [ Michael Vogt ] + * fix pkgProblemResolver::Scores, thanks to Paul Wise. + Closes: #697577 -- Christian Perrier Mon, 24 Dec 2012 07:01:20 +0100 -- cgit v1.2.3 From 11c1180e67f19b9c0ef14a10c4062e35f8afd1ef Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Tue, 8 Jan 2013 18:26:58 +0100 Subject: doc/po/it.po: fix small XML errors --- doc/po/it.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/po/it.po b/doc/po/it.po index a4d8d0ccc..544263d0d 100644 --- a/doc/po/it.po +++ b/doc/po/it.po @@ -1001,7 +1001,7 @@ msgid "" "literal>, the option or per package with the " "pkg/release syntax, if possible." msgstr "" -"source fa sì che apt-get scarichi i " +"source fa sì che apt-get scarichi i " "pacchetti sorgente. APT esaminerà i pacchetti disponibili per decidere quali " "pacchetti sorgente scaricare. Poi, se possibile, troverà e scaricherà nella " "directory corrente la versione più recente disponibile di quel pacchetto " @@ -6965,7 +6965,7 @@ msgid "" msgstr "" "APT può essere esteso con ulteriori metodi forniti in altri pacchetti " "opzionali, i cui nomi devono seguire lo schema apt-" -"transport-metodo. Per esempio, il team di APT " +"transport-metodo. Per esempio, il team di APT " "mantiene anche il pacchetto apt-transport-https che " "fornisce i metodi di accesso per URI HTTPS con funzionalità simili a quelle " "del metodo http. Sono disponibili anche i metodi per usare, ad esempio, " -- cgit v1.2.3 From 0425a56bf14c2411534326a0d3410a512c5ddeaa Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Tue, 8 Jan 2013 18:42:09 +0100 Subject: add missing translated apt.8 manpages, thanks to Helge Kreutzmann. Closes: #696923 --- debian/changelog | 2 ++ debian/rules | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index dcc6e4d16..e308eb02c 100644 --- a/debian/changelog +++ b/debian/changelog @@ -6,6 +6,8 @@ apt (0.9.7.8) UNRELEASED; urgency=low [ Michael Vogt ] * fix pkgProblemResolver::Scores, thanks to Paul Wise. Closes: #697577 + * add missing translated apt.8 manpages, thanks to Helge Kreutzmann. + Closes: #696923 -- Christian Perrier Mon, 24 Dec 2012 07:01:20 +0100 diff --git a/debian/rules b/debian/rules index 83e23881c..5051dab4f 100755 --- a/debian/rules +++ b/debian/rules @@ -172,7 +172,7 @@ apt-doc: build-debiandoc # Build architecture-dependent files here. binary-arch: $(LIBAPT_PKG) $(LIBAPT_INST) apt libapt-pkg-dev apt-utils apt-transport-https -apt_MANPAGES = apt-cache apt-cdrom apt-config apt-get apt-key apt-mark apt-secure apt apt.conf apt_preferences sources.list +apt_MANPAGES = apt apt-cache apt-cdrom apt-config apt-get apt-key apt-mark apt-secure apt apt.conf apt_preferences sources.list apt: build build-manpages dh_testdir -p$@ dh_testroot -p$@ -- cgit v1.2.3 From 291f47791d2c0d8521922c8d3090e2aa6f099d5b Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Wed, 9 Jan 2013 06:33:56 +0100 Subject: * apt-pkg/contrib/progress.cc: - Make "..." translatable to fix inconsistencies in the output of e.g. apt-get update. While this adds new translatable strings, not having translations for them will not break anything. Thanks to Guillem Jover. Closes: #696225 --- apt-pkg/contrib/progress.cc | 4 ++-- debian/changelog | 5 +++++ 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/apt-pkg/contrib/progress.cc b/apt-pkg/contrib/progress.cc index 317048845..17a6b70e9 100644 --- a/apt-pkg/contrib/progress.cc +++ b/apt-pkg/contrib/progress.cc @@ -176,7 +176,7 @@ void OpTextProgress::Update() if (OldOp.empty() == false) cout << endl; OldOp = "a"; - cout << Op << "..." << flush; + cout << Op << _("...") << flush; } return; @@ -192,7 +192,7 @@ void OpTextProgress::Update() } // Print the spinner - snprintf(S,sizeof(S),"\r%s... %u%%",Op.c_str(),(unsigned int)Percent); + snprintf(S,sizeof(S),_("\r%s... %u%%"),Op.c_str(),(unsigned int)Percent); Write(S); OldOp = Op; diff --git a/debian/changelog b/debian/changelog index e308eb02c..02fcdaa8b 100644 --- a/debian/changelog +++ b/debian/changelog @@ -8,6 +8,11 @@ apt (0.9.7.8) UNRELEASED; urgency=low Closes: #697577 * add missing translated apt.8 manpages, thanks to Helge Kreutzmann. Closes: #696923 + * apt-pkg/contrib/progress.cc: + - Make "..." translatable to fix inconsistencies in the output + of e.g. apt-get update. While this adds new translatable strings, + not having translations for them will not break anything. + Thanks to Guillem Jover. Closes: #696225 -- Christian Perrier Mon, 24 Dec 2012 07:01:20 +0100 -- cgit v1.2.3 From 50816ce74432f24135aefc590361bbb8ccfc71f1 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Wed, 9 Jan 2013 06:57:13 +0100 Subject: * debian/apt.cron.daily: - when reading from /dev/urandom, use less entropy and fix a rare bug when the random number chksum is less than 1000. Closes: #695285 --- debian/apt.cron.daily | 2 +- debian/changelog | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/debian/apt.cron.daily b/debian/apt.cron.daily index 5c00f22db..27f08dd4a 100644 --- a/debian/apt.cron.daily +++ b/debian/apt.cron.daily @@ -289,7 +289,7 @@ random_sleep() fi if [ -z "$RANDOM" ] ; then # A fix for shells that do not have this bash feature. - RANDOM=$(dd if=/dev/urandom count=1 2> /dev/null | cksum | cut -c"1-5") + RANDOM=$(dd if=/dev/urandom bs=2 count=1 2> /dev/null | cksum | cut -d' ' -f1 | cut -c"1-5") fi TIME=$(($RANDOM % $RandomSleep)) debug_echo "sleeping for $TIME seconds" diff --git a/debian/changelog b/debian/changelog index 02fcdaa8b..d08dd8038 100644 --- a/debian/changelog +++ b/debian/changelog @@ -13,6 +13,10 @@ apt (0.9.7.8) UNRELEASED; urgency=low of e.g. apt-get update. While this adds new translatable strings, not having translations for them will not break anything. Thanks to Guillem Jover. Closes: #696225 + * debian/apt.cron.daily: + - when reading from /dev/urandom, use less entropy and fix a rare + bug when the random number chksum is less than 1000. + Closes: #695285 -- Christian Perrier Mon, 24 Dec 2012 07:01:20 +0100 -- cgit v1.2.3 From 34c2a164242d06b206abfde18e28990908aa9c58 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Wed, 9 Jan 2013 08:24:42 +0100 Subject: fix missing translated apt.8 manpages, thanks to Helge Kreutzmann for the report. Closes: #696923 --- configure.in | 2 +- debian/changelog | 2 ++ doc/makefile | 2 ++ 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/configure.in b/configure.in index be3634abe..fa10058ef 100644 --- a/configure.in +++ b/configure.in @@ -18,7 +18,7 @@ AC_CONFIG_AUX_DIR(buildlib) AC_CONFIG_HEADER(include/config.h:buildlib/config.h.in include/apti18n.h:buildlib/apti18n.h.in) PACKAGE="apt" -PACKAGE_VERSION="0.9.7.7" +PACKAGE_VERSION="0.9.7.8~20130109" PACKAGE_MAIL="APT Development Team " AC_DEFINE_UNQUOTED(PACKAGE,"$PACKAGE") AC_DEFINE_UNQUOTED(PACKAGE_VERSION,"$PACKAGE_VERSION") diff --git a/debian/changelog b/debian/changelog index dcc6e4d16..46213d779 100644 --- a/debian/changelog +++ b/debian/changelog @@ -6,6 +6,8 @@ apt (0.9.7.8) UNRELEASED; urgency=low [ Michael Vogt ] * fix pkgProblemResolver::Scores, thanks to Paul Wise. Closes: #697577 + * fix missing translated apt.8 manpages, thanks to Helge Kreutzmann + for the report. Closes: #696923 -- Christian Perrier Mon, 24 Dec 2012 07:01:20 +0100 diff --git a/doc/makefile b/doc/makefile index 8021bce3f..be8357d80 100644 --- a/doc/makefile +++ b/doc/makefile @@ -87,7 +87,9 @@ update-po: --msgid-bugs-address='$(PACKAGE_MAIL)' po4a.conf $(MANPAGEPOLIST) :: manpages-translation-% : %/makefile po4a.conf + # first line is for apt.8 (see Bug#696923) po4a --previous --no-backups --translate-only $(dir $<)apt.ent \ + $(patsubst %,--translate-only $(dir $<)%,$(patsubst %.8,%.$(subst /,,$(dir $<)).8,$(wildcard *.8))) \ $(patsubst %,--translate-only $(dir $<)%,$(patsubst %.1.xml,%.$(subst /,,$(dir $<)).1.xml,$(wildcard *.1.xml))) \ $(patsubst %,--translate-only $(dir $<)%,$(patsubst %.2.xml,%.$(subst /,,$(dir $<)).2.xml,$(wildcard *.2.xml))) \ $(patsubst %,--translate-only $(dir $<)%,$(patsubst %.3.xml,%.$(subst /,,$(dir $<)).3.xml,$(wildcard *.3.xml))) \ -- cgit v1.2.3 From cc41811512ba00f70738b70f0448c9172b71daf2 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Wed, 9 Jan 2013 11:00:13 +0100 Subject: * methods/https.cc: - reuse connection in https, thanks to Thomas Bushnell, BSG for the patch. LP: #1087543, Closes: #695359 --- debian/changelog | 3 +++ methods/https.cc | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index 840d9ebd9..0b20b03de 100644 --- a/debian/changelog +++ b/debian/changelog @@ -17,6 +17,9 @@ apt (0.9.7.8) UNRELEASED; urgency=low - when reading from /dev/urandom, use less entropy and fix a rare bug when the random number chksum is less than 1000. Closes: #695285 + * methods/https.cc: + - reuse connection in https, thanks to Thomas Bushnell, BSG for the + patch. LP: #1087543, Closes: #695359 -- Christian Perrier Mon, 24 Dec 2012 07:01:20 +0100 diff --git a/methods/https.cc b/methods/https.cc index c1a49ba60..11d4ba8aa 100644 --- a/methods/https.cc +++ b/methods/https.cc @@ -124,7 +124,6 @@ bool HttpsMethod::Fetch(FetchItem *Itm) curl_easy_setopt(curl, CURLOPT_PROGRESSFUNCTION, progress_callback); curl_easy_setopt(curl, CURLOPT_PROGRESSDATA, this); curl_easy_setopt(curl, CURLOPT_NOPROGRESS, false); - curl_easy_setopt(curl, CURLOPT_FAILONERROR, true); curl_easy_setopt(curl, CURLOPT_FILETIME, true); // SSL parameters are set by default to the common (non mirror-specific) value @@ -240,6 +239,7 @@ bool HttpsMethod::Fetch(FetchItem *Itm) curl_easy_setopt(curl, CURLOPT_VERBOSE, true); // error handling + curl_errorstr[0] = '\0'; curl_easy_setopt(curl, CURLOPT_ERRORBUFFER, curl_errorstr); // If we ask for uncompressed files servers might respond with content- @@ -288,7 +288,7 @@ bool HttpsMethod::Fetch(FetchItem *Itm) File->Close(); // cleanup - if(success != 0) + if(success != 0 || (curl_responsecode != 200 && curl_responsecode != 304)) { _error->Error("%s", curl_errorstr); // unlink, no need keep 401/404 page content in partial/ -- cgit v1.2.3 From 45a9cc46a143cc2864bba910cff2d9dfc1172dec Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Wed, 9 Jan 2013 14:47:35 +0100 Subject: add missing curl_easy_cleanup() --- debian/changelog | 1 + methods/https.h | 5 +++++ 2 files changed, 6 insertions(+) diff --git a/debian/changelog b/debian/changelog index 0b20b03de..ec77904e7 100644 --- a/debian/changelog +++ b/debian/changelog @@ -20,6 +20,7 @@ apt (0.9.7.8) UNRELEASED; urgency=low * methods/https.cc: - reuse connection in https, thanks to Thomas Bushnell, BSG for the patch. LP: #1087543, Closes: #695359 + - add missing curl_easy_cleanup() -- Christian Perrier Mon, 24 Dec 2012 07:01:20 +0100 diff --git a/methods/https.h b/methods/https.h index b1961a870..293e288e0 100644 --- a/methods/https.h +++ b/methods/https.h @@ -41,6 +41,11 @@ class HttpsMethod : public pkgAcqMethod File = 0; curl = curl_easy_init(); }; + + ~HttpsMethod() + { + curl_easy_cleanup(curl); + }; }; #include -- cgit v1.2.3 From d925ac78f9068618bad0027fff56278d452a7c91 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Thu, 10 Jan 2013 16:46:06 +0100 Subject: instead of cut, use % 32767 --- debian/apt.cron.daily | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/apt.cron.daily b/debian/apt.cron.daily index 27f08dd4a..2665b6579 100644 --- a/debian/apt.cron.daily +++ b/debian/apt.cron.daily @@ -289,7 +289,7 @@ random_sleep() fi if [ -z "$RANDOM" ] ; then # A fix for shells that do not have this bash feature. - RANDOM=$(dd if=/dev/urandom bs=2 count=1 2> /dev/null | cksum | cut -d' ' -f1 | cut -c"1-5") + RANDOM=$(( $(dd if=/dev/urandom bs=2 count=1 2> /dev/null | cksum | cut -d' ' -f1) % 32767 )) fi TIME=$(($RANDOM % $RandomSleep)) debug_echo "sleeping for $TIME seconds" -- cgit v1.2.3 From 72663b44179f4c6f3ec2e4ec25d8df3c4590b222 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Fri, 11 Jan 2013 09:51:00 +0100 Subject: * methods/http.cc: - quote spaces in filenames to ensure as the http method is also (potentially) used for non deb,dsc content that may contain spaces, thanks to Daniel Hartwig and Thomas Bushnell (LP: #1086997) --- debian/changelog | 5 +++++ methods/http.cc | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index ec77904e7..c956f57d3 100644 --- a/debian/changelog +++ b/debian/changelog @@ -21,6 +21,11 @@ apt (0.9.7.8) UNRELEASED; urgency=low - reuse connection in https, thanks to Thomas Bushnell, BSG for the patch. LP: #1087543, Closes: #695359 - add missing curl_easy_cleanup() + * methods/http.cc: + - quote spaces in filenames to ensure as the http method is also + (potentially) used for non deb,dsc content that may contain + spaces, thanks to Daniel Hartwig and Thomas Bushnell + (LP: #1086997) -- Christian Perrier Mon, 24 Dec 2012 07:01:20 +0100 diff --git a/methods/http.cc b/methods/http.cc index acf25a42a..b7e766004 100644 --- a/methods/http.cc +++ b/methods/http.cc @@ -686,7 +686,7 @@ void HttpMethod::SendReq(FetchItem *Itm,CircleBuf &Out) and we expect the proxy to do this */ if (Proxy.empty() == true || Proxy.Host.empty()) sprintf(Buf,"GET %s HTTP/1.1\r\nHost: %s\r\nConnection: keep-alive\r\n", - QuoteString(Uri.Path,"~").c_str(),ProperHost.c_str()); + QuoteString(Uri.Path,"~ ").c_str(),ProperHost.c_str()); else { /* Generate a cache control header if necessary. We place a max -- cgit v1.2.3 From ee5f5d257c6ad59c9b3ef8c55d61ffb293be847c Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Mon, 14 Jan 2013 06:31:51 +0100 Subject: ensure sha512 is really used when available (thanks to Tyler Hicks ) --- apt-pkg/acquire-item.cc | 2 +- cmdline/apt-get.cc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apt-pkg/acquire-item.cc b/apt-pkg/acquire-item.cc index a30e98858..a71886a87 100644 --- a/apt-pkg/acquire-item.cc +++ b/apt-pkg/acquire-item.cc @@ -1730,7 +1730,7 @@ bool pkgAcqArchive::QueueNext() { if(stringcasecmp(ForceHash, "sha512") == 0) ExpectedHash = HashString("SHA512", Parse.SHA512Hash()); - if(stringcasecmp(ForceHash, "sha256") == 0) + else if(stringcasecmp(ForceHash, "sha256") == 0) ExpectedHash = HashString("SHA256", Parse.SHA256Hash()); else if (stringcasecmp(ForceHash, "sha1") == 0) ExpectedHash = HashString("SHA1", Parse.SHA1Hash()); diff --git a/cmdline/apt-get.cc b/cmdline/apt-get.cc index 1bb981b20..e3c74a099 100644 --- a/cmdline/apt-get.cc +++ b/cmdline/apt-get.cc @@ -2395,7 +2395,7 @@ bool DoDownload(CommandLine &CmdL) HashString hash; if (rec.SHA512Hash() != "") hash = HashString("sha512", rec.SHA512Hash()); - if (rec.SHA256Hash() != "") + else if (rec.SHA256Hash() != "") hash = HashString("sha256", rec.SHA256Hash()); else if (rec.SHA1Hash() != "") hash = HashString("sha1", rec.SHA1Hash()); -- cgit v1.2.3 From 1d12857c083b436fb88710cd8e87267ece7af8a9 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Thu, 24 Jan 2013 18:52:25 +0100 Subject: quote plus in filenames to work around a bug in the S3 server (LP: #1003633) --- debian/changelog | 2 ++ methods/http.cc | 6 +++++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index c956f57d3..6c1bb0877 100644 --- a/debian/changelog +++ b/debian/changelog @@ -26,6 +26,8 @@ apt (0.9.7.8) UNRELEASED; urgency=low (potentially) used for non deb,dsc content that may contain spaces, thanks to Daniel Hartwig and Thomas Bushnell (LP: #1086997) + - quote plus in filenames to work around a bug in the S3 server + (LP: #1003633) -- Christian Perrier Mon, 24 Dec 2012 07:01:20 +0100 diff --git a/methods/http.cc b/methods/http.cc index b7e766004..fddf8a78e 100644 --- a/methods/http.cc +++ b/methods/http.cc @@ -685,8 +685,12 @@ void HttpMethod::SendReq(FetchItem *Itm,CircleBuf &Out) pass it on, HTTP/1.1 says the connection should default to keep alive and we expect the proxy to do this */ if (Proxy.empty() == true || Proxy.Host.empty()) + { + // see LP bugs #1003633 and #1086997. The "+" is encoded as a workaround + // for a amazon S3 bug sprintf(Buf,"GET %s HTTP/1.1\r\nHost: %s\r\nConnection: keep-alive\r\n", - QuoteString(Uri.Path,"~ ").c_str(),ProperHost.c_str()); + QuoteString(Uri.Path,"+~ ").c_str(),ProperHost.c_str()); + } else { /* Generate a cache control header if necessary. We place a max -- cgit v1.2.3 From 8d326119082e239e17c4179de77a77911414d2df Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Thu, 24 Jan 2013 18:55:44 +0100 Subject: * apt-pkg/indexrecords.cc: - support '\r' in the Release file --- apt-pkg/indexrecords.cc | 5 +++-- debian/changelog | 2 ++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/apt-pkg/indexrecords.cc b/apt-pkg/indexrecords.cc index af2639beb..649b6059d 100644 --- a/apt-pkg/indexrecords.cc +++ b/apt-pkg/indexrecords.cc @@ -173,7 +173,7 @@ bool indexRecords::parseSumData(const char *&Start, const char *End, /*{{{*/ Hash = ""; Size = 0; /* Skip over the first blank */ - while ((*Start == '\t' || *Start == ' ' || *Start == '\n') + while ((*Start == '\t' || *Start == ' ' || *Start == '\n' || *Start == '\r') && Start < End) Start++; if (Start >= End) @@ -215,7 +215,8 @@ bool indexRecords::parseSumData(const char *&Start, const char *End, /*{{{*/ EntryEnd = Start; /* Find the end of the third entry (the filename) */ - while ((*EntryEnd != '\t' && *EntryEnd != ' ' && *EntryEnd != '\n') + while ((*EntryEnd != '\t' && *EntryEnd != ' ' && + *EntryEnd != '\n' && *EntryEnd != '\r') && EntryEnd < End) EntryEnd++; diff --git a/debian/changelog b/debian/changelog index 6c1bb0877..9632a7691 100644 --- a/debian/changelog +++ b/debian/changelog @@ -28,6 +28,8 @@ apt (0.9.7.8) UNRELEASED; urgency=low (LP: #1086997) - quote plus in filenames to work around a bug in the S3 server (LP: #1003633) + * apt-pkg/indexrecords.cc: + - support '\r' in the Release file -- Christian Perrier Mon, 24 Dec 2012 07:01:20 +0100 -- cgit v1.2.3 From f6f06a8f24185a55ca918b9c10a2d0c4ae4b49a5 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Thu, 31 Jan 2013 14:41:41 +0100 Subject: merge patch apt_0.9.7.7ubuntu2~md1.debdiff, thanks to Marc Deslauriers --- ftparchive/apt-ftparchive.cc | 5 +++-- ftparchive/writer.cc | 51 +++++++++++++++++++++++++++++++++++--------- ftparchive/writer.h | 4 +++- 3 files changed, 47 insertions(+), 13 deletions(-) diff --git a/ftparchive/apt-ftparchive.cc b/ftparchive/apt-ftparchive.cc index 4b2c3ba12..2639bc2f6 100644 --- a/ftparchive/apt-ftparchive.cc +++ b/ftparchive/apt-ftparchive.cc @@ -254,7 +254,8 @@ bool PackageMap::GenSources(Configuration &Setup,struct CacheDB::Stats &Stats) SrcDone = true; // Create a package writer object. - SourcesWriter Sources(flCombine(OverrideDir,BinOverride), + SourcesWriter Sources(_config->Find("APT::FTPArchive::DB"), + flCombine(OverrideDir,BinOverride), flCombine(OverrideDir,SrcOverride), flCombine(OverrideDir,SrcExtraOverride)); if (SrcExt.empty() == false && Sources.SetExts(SrcExt) == false) @@ -705,7 +706,7 @@ bool SimpleGenSources(CommandLine &CmdL) SOverride.c_str()); // Create a package writer object. - SourcesWriter Sources(Override,SOverride); + SourcesWriter Sources(_config->Find("APT::FTPArchive::DB"),Override,SOverride); if (_error->PendingError() == true) return false; diff --git a/ftparchive/writer.cc b/ftparchive/writer.cc index 3065526ad..f58d4bc1f 100644 --- a/ftparchive/writer.cc +++ b/ftparchive/writer.cc @@ -562,8 +562,9 @@ TranslationWriter::~TranslationWriter() // SourcesWriter::SourcesWriter - Constructor /*{{{*/ // --------------------------------------------------------------------- /* */ -SourcesWriter::SourcesWriter(string const &BOverrides,string const &SOverrides, - string const &ExtOverrides) +SourcesWriter::SourcesWriter(string const &DB, string const &BOverrides,string const &SOverrides, + string const &ExtOverrides) : + Db(DB), Stats(Db.Stats) { Output = stdout; AddPattern("*.dsc"); @@ -575,7 +576,9 @@ SourcesWriter::SourcesWriter(string const &BOverrides,string const &SOverrides, DoMD5 = _config->FindB("APT::FTPArchive::Sources::MD5",DoMD5); DoSHA1 = _config->FindB("APT::FTPArchive::Sources::SHA1",DoSHA1); DoSHA256 = _config->FindB("APT::FTPArchive::Sources::SHA256",DoSHA256); + DoSHA512 = _config->FindB("APT::FTPArchive::Sources::SHA512",DoSHA512); NoOverride = _config->FindB("APT::FTPArchive::NoOverrideMsg",false); + DoAlwaysStat = _config->FindB("APT::FTPArchive::AlwaysStat", false); // Read the override file if (BOverrides.empty() == false && BOver.ReadOverride(BOverrides) == false) @@ -740,19 +743,16 @@ bool SourcesWriter::DoPackage(string FileName) if (DoSHA1 == true && Tags.Exists("Checksums-Sha1")) ostreamSha1 << "\n " << string(SHA1.Result()) << " " << St.st_size << " " << strippedName << "\n " << Tags.FindS("Checksums-Sha1"); - string const ChecksumsSha1 = ostreamSha1.str(); std::ostringstream ostreamSha256; if (DoSHA256 == true && Tags.Exists("Checksums-Sha256")) ostreamSha256 << "\n " << string(SHA256.Result()) << " " << St.st_size << " " << strippedName << "\n " << Tags.FindS("Checksums-Sha256"); - string const ChecksumsSha256 = ostreamSha256.str(); std::ostringstream ostreamSha512; - if (Tags.Exists("Checksums-Sha512")) + if (DoSHA512 == true && Tags.Exists("Checksums-Sha512")) ostreamSha512 << "\n " << string(SHA512.Result()) << " " << St.st_size << " " << strippedName << "\n " << Tags.FindS("Checksums-Sha512"); - string const ChecksumsSha512 = ostreamSha512.str(); // Strip the DirStrip prefix from the FileName and add the PathPrefix string NewFileName; @@ -768,7 +768,7 @@ bool SourcesWriter::DoPackage(string FileName) string Directory = flNotFile(OriginalPath); string Package = Tags.FindS("Source"); - // Perform the delinking operation over all of the files + // Perform operation over all of the files string ParseJnk; const char *C = Files.c_str(); char *RealPath = NULL; @@ -780,9 +780,36 @@ bool SourcesWriter::DoPackage(string FileName) ParseQuoteWord(C,ParseJnk) == false || ParseQuoteWord(C,ParseJnk) == false) return _error->Error("Error parsing file record"); - - char Jnk[2]; + string OriginalPath = Directory + ParseJnk; + + // Add missing hashes to source files + if ((DoSHA1 == true && !Tags.Exists("Checksums-Sha1")) || + (DoSHA256 == true && !Tags.Exists("Checksums-Sha256")) || + (DoSHA512 == true && !Tags.Exists("Checksums-Sha512"))) + { + if (Db.GetFileInfo(OriginalPath, false, false, false, DoMD5, DoSHA1, DoSHA256, DoSHA512, DoAlwaysStat) + == false) + { + return _error->Error("Error getting file info"); + } + + if (DoSHA1 == true && !Tags.Exists("Checksums-Sha1")) + ostreamSha1 << "\n " << string(Db.SHA1Res) << " " + << Db.GetFileSize() << " " << ParseJnk; + + if (DoSHA256 == true && !Tags.Exists("Checksums-Sha256")) + ostreamSha256 << "\n " << string(Db.SHA256Res) << " " + << Db.GetFileSize() << " " << ParseJnk; + + if (DoSHA512 == true && !Tags.Exists("Checksums-Sha512")) + ostreamSha512 << "\n " << string(Db.SHA512Res) << " " + << Db.GetFileSize() << " " << ParseJnk; + } + + // Perform the delinking operation + char Jnk[2]; + if (readlink(OriginalPath.c_str(),Jnk,sizeof(Jnk)) != -1 && (RealPath = realpath(OriginalPath.c_str(),NULL)) != 0) { @@ -797,6 +824,10 @@ bool SourcesWriter::DoPackage(string FileName) if (Directory.length() > 2) Directory.erase(Directory.end()-1); + string const ChecksumsSha1 = ostreamSha1.str(); + string const ChecksumsSha256 = ostreamSha256.str(); + string const ChecksumsSha512 = ostreamSha512.str(); + // This lists all the changes to the fields we are going to make. // (5 hardcoded + checksums + maintainer + end marker) TFRewriteData Changes[5+2+1+SOverItem->FieldOverride.size()+1]; @@ -844,7 +875,7 @@ bool SourcesWriter::DoPackage(string FileName) Stats.Packages++; - return true; + return Db.Finish(); } /*}}}*/ diff --git a/ftparchive/writer.h b/ftparchive/writer.h index 76a3dfd1e..4932b0cc8 100644 --- a/ftparchive/writer.h +++ b/ftparchive/writer.h @@ -157,6 +157,7 @@ class ContentsWriter : public FTWScanner class SourcesWriter : public FTWScanner { + CacheDB Db; Override BOver; Override SOver; char *Buffer; @@ -165,6 +166,7 @@ class SourcesWriter : public FTWScanner public: bool NoOverride; + bool DoAlwaysStat; // General options string PathPrefix; @@ -174,7 +176,7 @@ class SourcesWriter : public FTWScanner virtual bool DoPackage(string FileName); - SourcesWriter(string const &BOverrides,string const &SOverrides, + SourcesWriter(string const &DB,string const &BOverrides,string const &SOverrides, string const &ExtOverrides=string()); virtual ~SourcesWriter() {free(Buffer);}; }; -- cgit v1.2.3 From 0f2def05fc907a1349a0800dd0f4f7c3a0b99fca Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Fri, 1 Feb 2013 07:07:33 +0100 Subject: add a integration test for bug 1078697 --- .../test-bug-1078697-missing-source-hashes | 35 ++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100755 test/integration/test-bug-1078697-missing-source-hashes diff --git a/test/integration/test-bug-1078697-missing-source-hashes b/test/integration/test-bug-1078697-missing-source-hashes new file mode 100755 index 000000000..6fcb856b5 --- /dev/null +++ b/test/integration/test-bug-1078697-missing-source-hashes @@ -0,0 +1,35 @@ +#!/bin/sh +set -e + +TESTDIR=$(readlink -f $(dirname $0)) +. $TESTDIR/framework +setupenvironment +configarchitecture "i386" + +msgtest 'Test apt-ftparchive source with missing hashes in .dsc' + +touch aptarchive/foo_1.0.tar.gz +cat > aptarchive/foo_1.0.dsc << EOF +Format: 3.0 (native) +Source: foo +Binary: foo +Architecture: all +Version: 1.0 +Package-List: + foo deb admin extra +Files: + d41d8cd98f00b204e9800998ecf8427e 0 foo_1.0.tar.gz +EOF + +# check for the SHA hashes +aptftparchive sources aptarchive/ > aptarchive/Sources 2>/dev/null || msgfail +test -n "$(grep Checksums-Sha512 aptarchive/Sources)" && msgpass || msgfail + +for hash in sha512sum sha256sum sha1sum; do + for f in foo_1.0.tar.gz foo_1.0.dsc; do + SUM=$($hash aptarchive/$f | cut -d' ' -f1) + msgtest "Test $hash hash matches for $f" + NEEDLE="$SUM $(stat -c%s aptarchive/$f) $f" + test -n "$SUM" && test -n "$(grep "$NEEDLE" aptarchive/Sources)" && msgpass || msgfail + done +done -- cgit v1.2.3 From 0597dcd8fa8f933d8bf0d7fbea395408bf3b7e5d Mon Sep 17 00:00:00 2001 From: "bubulle@debian.org" <> Date: Tue, 5 Feb 2013 07:00:04 +0100 Subject: Japanese (Kenshi Muto). Closes: #699783 --- debian/changelog | 3 +++ po/ja.po | 12 ++++++------ 2 files changed, 9 insertions(+), 6 deletions(-) diff --git a/debian/changelog b/debian/changelog index 9632a7691..8f9f4b97d 100644 --- a/debian/changelog +++ b/debian/changelog @@ -3,6 +3,9 @@ apt (0.9.7.8) UNRELEASED; urgency=low [ Manpages translation updates ] * Italian (Beatrice Torracca). Closes: #696601 + [ Programs translation updates ] + * Japanese (Kenshi Muto). Closes: #699783 + [ Michael Vogt ] * fix pkgProblemResolver::Scores, thanks to Paul Wise. Closes: #697577 diff --git a/po/ja.po b/po/ja.po index fb455abcc..9fe66d972 100644 --- a/po/ja.po +++ b/po/ja.po @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: apt 0.9.7.1\n" "Report-Msgid-Bugs-To: APT Development Team \n" "POT-Creation-Date: 2012-10-15 09:49+0200\n" -"PO-Revision-Date: 2012-07-01 00:14+0900\n" +"PO-Revision-Date: 2013-02-05 09:41+0900\n" "Last-Translator: Kenshi Muto \n" "Language-Team: Debian Japanese List \n" "Language: ja\n" @@ -227,7 +227,7 @@ msgstr "" " -p=? パッケージキャッシュ\n" " -s=? ソースキャッシュ\n" " -q プログレス表示をしない\n" -" -i umnet コマンドで重要な依存情報のみを表示する\n" +" -i unmet コマンドで重要な依存情報のみを表示する\n" " -c=? 指定した設定ファイルを読み込む\n" " -o=? 指定した設定オプションを読み込む (例: -o dir::cache=/tmp)\n" "詳細は、apt-cache(8) や apt.conf(5) のマニュアルページを参照してください。\n" @@ -448,8 +448,8 @@ msgstr "'%s' のような仮想パッケージは削除できません\n" #, c-format msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" msgstr "" -"パッケージ %s はインストールされていないため、削除はできません。'%s' のことで" -"しょうか?\n" +"パッケージ '%s' はインストールされていないため、削除はできません。'%s' のこと" +"でしょうか?\n" #: cmdline/apt-get.cc:743 cmdline/apt-get.cc:946 #, c-format @@ -679,7 +679,7 @@ msgstr[0] "" #: cmdline/apt-get.cc:1421 msgid "Note: This is done automatically and on purpose by dpkg." -msgstr "注意: これは dpkg により自動でわざと行われれます。" +msgstr "注意: これは dpkg により自動でわざと行われます。" #: cmdline/apt-get.cc:1559 #, c-format @@ -2726,7 +2726,7 @@ msgstr "" #: apt-pkg/sourcelist.cc:116 #, c-format msgid "Malformed line %lu in source list %s ([%s] has no key)" -msgstr "ソースリスト %2$s の %1$lu 行目が不正です ([%3$s にキーがありません)" +msgstr "ソースリスト %2$s の %1$lu 行目が不正です ([%3$s] にキーがありません)" #: apt-pkg/sourcelist.cc:119 #, c-format -- cgit v1.2.3 From 9bfd7b57d82285fd99ae1ae6147c22af15fdbea0 Mon Sep 17 00:00:00 2001 From: David Kalnischkies Date: Sun, 24 Feb 2013 16:20:43 +0100 Subject: * apt-pkg/depcache.cc: - prefer to install packages which have an already installed M-A:same sibling while choosing providers (LP: #1130419) --- apt-pkg/depcache.cc | 31 ++++++ debian/changelog | 5 + ...u-bug-1130419-prefer-installed-ma-same-siblings | 104 +++++++++++++++++++++ 3 files changed, 140 insertions(+) create mode 100755 test/integration/test-ubuntu-bug-1130419-prefer-installed-ma-same-siblings diff --git a/apt-pkg/depcache.cc b/apt-pkg/depcache.cc index 2ec346f0b..a48cd8b0c 100644 --- a/apt-pkg/depcache.cc +++ b/apt-pkg/depcache.cc @@ -951,6 +951,37 @@ struct CompareProviders { { pkgCache::PkgIterator const A = AV.ParentPkg(); pkgCache::PkgIterator const B = BV.ParentPkg(); + // Prefer MA:same packages if other architectures for it are installed + if ((AV->MultiArch & pkgCache::Version::Same) == pkgCache::Version::Same || + (BV->MultiArch & pkgCache::Version::Same) == pkgCache::Version::Same) + { + bool instA = false; + if ((AV->MultiArch & pkgCache::Version::Same) == pkgCache::Version::Same) + { + pkgCache::GrpIterator Grp = A.Group(); + for (pkgCache::PkgIterator P = Grp.PackageList(); P.end() == false; P = Grp.NextPkg(P)) + if (P->CurrentVer != 0) + { + instA = true; + break; + } + } + bool instB = false; + if ((BV->MultiArch & pkgCache::Version::Same) == pkgCache::Version::Same) + { + pkgCache::GrpIterator Grp = B.Group(); + for (pkgCache::PkgIterator P = Grp.PackageList(); P.end() == false; P = Grp.NextPkg(P)) + { + if (P->CurrentVer != 0) + { + instB = true; + break; + } + } + } + if (instA != instB) + return instA == false; + } // Prefer packages in the same group as the target; e.g. foo:i386, foo:amd64 if (A->Group != B->Group) { diff --git a/debian/changelog b/debian/changelog index 8f9f4b97d..0531d0c85 100644 --- a/debian/changelog +++ b/debian/changelog @@ -34,6 +34,11 @@ apt (0.9.7.8) UNRELEASED; urgency=low * apt-pkg/indexrecords.cc: - support '\r' in the Release file + [ David Kalnischkies ] + * apt-pkg/depcache.cc: + - prefer to install packages which have an already installed M-A:same + sibling while choosing providers (LP: #1130419) + -- Christian Perrier Mon, 24 Dec 2012 07:01:20 +0100 apt (0.9.7.7) unstable; urgency=low diff --git a/test/integration/test-ubuntu-bug-1130419-prefer-installed-ma-same-siblings b/test/integration/test-ubuntu-bug-1130419-prefer-installed-ma-same-siblings new file mode 100755 index 000000000..af6b7b504 --- /dev/null +++ b/test/integration/test-ubuntu-bug-1130419-prefer-installed-ma-same-siblings @@ -0,0 +1,104 @@ +#!/bin/sh +set -e + +TESTDIR=$(readlink -f $(dirname $0)) +. $TESTDIR/framework +setupenvironment +configarchitecture 'amd64' 'i386' + +insertpackage 'stable' 'libmesa' 'amd64,i386' '1' 'Multi-Arch: same' +insertpackage 'stable' 'libmesa-lts' 'amd64,i386' '1' 'Provides: libmesa +Conflicts: libmesa +Multi-Arch: same' +insertpackage 'stable' 'steam' 'i386' '1' 'Depends: libmesa' + +insertpackage 'unstable' 'libmesa' 'amd64,i386' '2' 'Multi-Arch: same' +insertpackage 'unstable' 'libmesa-lts' 'amd64,i386' '2' 'Provides: libmesa +Conflicts: libmesa +Multi-Arch: same' +insertpackage 'unstable' 'steam' 'i386' '2' 'Depends: libmesa' + +setupaptarchive + +testequal 'Reading package lists... +Building dependency tree... +The following extra packages will be installed: + libmesa:i386 +The following NEW packages will be installed: + libmesa:i386 steam:i386 +0 upgraded, 2 newly installed, 0 to remove and 0 not upgraded. +Inst libmesa:i386 (1 stable [i386]) +Inst steam:i386 (1 stable [i386]) +Conf libmesa:i386 (1 stable [i386]) +Conf steam:i386 (1 stable [i386])' aptget install steam -st stable +testequal 'Reading package lists... +Building dependency tree... +The following extra packages will be installed: + libmesa:i386 +The following NEW packages will be installed: + libmesa:i386 steam:i386 +0 upgraded, 2 newly installed, 0 to remove and 0 not upgraded. +Inst libmesa:i386 (2 unstable [i386]) +Inst steam:i386 (2 unstable [i386]) +Conf libmesa:i386 (2 unstable [i386]) +Conf steam:i386 (2 unstable [i386])' aptget install steam -st unstable + +cp rootdir/var/lib/dpkg/status default-status.dpkg +insertinstalledpackage 'libmesa' 'amd64' '1' 'Multi-Arch: same' +testequal 'Reading package lists... +Building dependency tree... +The following extra packages will be installed: + libmesa:i386 +The following NEW packages will be installed: + libmesa:i386 steam:i386 +0 upgraded, 2 newly installed, 0 to remove and 0 not upgraded. +Inst libmesa:i386 (1 stable [i386]) +Inst steam:i386 (1 stable [i386]) +Conf libmesa:i386 (1 stable [i386]) +Conf steam:i386 (1 stable [i386])' aptget install steam -st stable +testequal 'Reading package lists... +Building dependency tree... +The following extra packages will be installed: + libmesa libmesa:i386 +The following NEW packages will be installed: + libmesa:i386 steam:i386 +The following packages will be upgraded: + libmesa +1 upgraded, 2 newly installed, 0 to remove and 0 not upgraded. +Inst libmesa [1] (2 unstable [amd64]) +Inst libmesa:i386 (2 unstable [i386]) +Inst steam:i386 (2 unstable [i386]) +Conf libmesa (2 unstable [amd64]) +Conf libmesa:i386 (2 unstable [i386]) +Conf steam:i386 (2 unstable [i386])' aptget install steam -st unstable + +cp default-status.dpkg rootdir/var/lib/dpkg/status +insertinstalledpackage 'libmesa-lts' 'amd64' '1' 'Provides: libmesa +Conflicts: libmesa +Multi-Arch: same' +testequal 'Reading package lists... +Building dependency tree... +The following extra packages will be installed: + libmesa-lts:i386 +The following NEW packages will be installed: + libmesa-lts:i386 steam:i386 +0 upgraded, 2 newly installed, 0 to remove and 0 not upgraded. +Inst libmesa-lts:i386 (1 stable [i386]) +Inst steam:i386 (1 stable [i386]) +Conf libmesa-lts:i386 (1 stable [i386]) +Conf steam:i386 (1 stable [i386])' aptget install steam -st stable +testequal 'Reading package lists... +Building dependency tree... +The following extra packages will be installed: + libmesa-lts libmesa-lts:i386 +The following NEW packages will be installed: + libmesa-lts:i386 steam:i386 +The following packages will be upgraded: + libmesa-lts +1 upgraded, 2 newly installed, 0 to remove and 0 not upgraded. +Inst libmesa-lts [1] (2 unstable [amd64]) +Inst libmesa-lts:i386 (2 unstable [i386]) +Inst steam:i386 (2 unstable [i386]) +Conf libmesa-lts (2 unstable [amd64]) +Conf libmesa-lts:i386 (2 unstable [i386]) +Conf steam:i386 (2 unstable [i386])' aptget install steam -st unstable -- cgit v1.2.3 From 75247742b762d5e8dc311600b8b053533695f36d Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Fri, 1 Mar 2013 12:12:05 +0100 Subject: add changelog --- debian/changelog | 1 + 1 file changed, 1 insertion(+) diff --git a/debian/changelog b/debian/changelog index c956f57d3..ef50ea423 100644 --- a/debian/changelog +++ b/debian/changelog @@ -26,6 +26,7 @@ apt (0.9.7.8) UNRELEASED; urgency=low (potentially) used for non deb,dsc content that may contain spaces, thanks to Daniel Hartwig and Thomas Bushnell (LP: #1086997) + * use sha512 when available (LP: #1098752) -- Christian Perrier Mon, 24 Dec 2012 07:01:20 +0100 -- cgit v1.2.3 From 90ceb0b5113cc6b65416553fcebbf6d5fd8c6752 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Fri, 1 Mar 2013 12:17:08 +0100 Subject: add changelog --- debian/changelog | 3 +++ 1 file changed, 3 insertions(+) diff --git a/debian/changelog b/debian/changelog index 9632a7691..33efd5aa5 100644 --- a/debian/changelog +++ b/debian/changelog @@ -30,6 +30,9 @@ apt (0.9.7.8) UNRELEASED; urgency=low (LP: #1003633) * apt-pkg/indexrecords.cc: - support '\r' in the Release file + + [ Marc Deslauriers ] + * make apt-ftparchive generate missing deb-src hashes (LP: #1078697) -- Christian Perrier Mon, 24 Dec 2012 07:01:20 +0100 -- cgit v1.2.3 From 3e2efdda0a8f577d571fcae15e9f4c3cebddfe30 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Fri, 1 Mar 2013 14:55:19 +0100 Subject: releasing version 0.9.7.8~exp1 --- debian/changelog | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index 0531d0c85..97587b6bf 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -apt (0.9.7.8) UNRELEASED; urgency=low +apt (0.9.7.8~exp1) experimental; urgency=low [ Manpages translation updates ] * Italian (Beatrice Torracca). Closes: #696601 @@ -39,7 +39,7 @@ apt (0.9.7.8) UNRELEASED; urgency=low - prefer to install packages which have an already installed M-A:same sibling while choosing providers (LP: #1130419) - -- Christian Perrier Mon, 24 Dec 2012 07:01:20 +0100 + -- Michael Vogt Fri, 01 Mar 2013 14:16:42 +0100 apt (0.9.7.7) unstable; urgency=low -- cgit v1.2.3 From 32fa71a57dcf625c94207dce612175af49c93ce4 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Fri, 1 Mar 2013 18:50:59 +0100 Subject: include two missing patches to really fix bug #696225, thanks to Guillem Jover --- apt-pkg/contrib/progress.cc | 2 +- debian/changelog | 7 +++++++ po/ca.po | 10 ++++++++++ po/cs.po | 10 ++++++++++ po/ru.po | 10 ++++++++++ 5 files changed, 38 insertions(+), 1 deletion(-) diff --git a/apt-pkg/contrib/progress.cc b/apt-pkg/contrib/progress.cc index 17a6b70e9..916e1d730 100644 --- a/apt-pkg/contrib/progress.cc +++ b/apt-pkg/contrib/progress.cc @@ -192,7 +192,7 @@ void OpTextProgress::Update() } // Print the spinner - snprintf(S,sizeof(S),_("\r%s... %u%%"),Op.c_str(),(unsigned int)Percent); + snprintf(S,sizeof(S),_("%c%s... %u%%"),'\r',Op.c_str(),(unsigned int)Percent); Write(S); OldOp = Op; diff --git a/debian/changelog b/debian/changelog index 97587b6bf..ff4988d63 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +apt (0.9.7.8~exp2) UNRELEASEDexperimental; urgency=low + + * include two missing patches to really fix bug #696225, thanks to + Guillem Jover + + -- Michael Vogt Fri, 01 Mar 2013 18:50:17 +0100 + apt (0.9.7.8~exp1) experimental; urgency=low [ Manpages translation updates ] diff --git a/po/ca.po b/po/ca.po index 03d11e1aa..61d231277 100644 --- a/po/ca.po +++ b/po/ca.po @@ -2403,6 +2403,16 @@ msgstr "%c%s… Error!" msgid "%c%s... Done" msgstr "%c%s… Fet" +#: apt-pkg/contrib/progress.cc:179 +msgid "..." +msgstr "…" + +#. Print the spinner +#: apt-pkg/contrib/progress.cc:195 +#, c-format +msgid "%c%s... %u%%" +msgstr "%c%s… %u%%" + #: apt-pkg/contrib/cmndline.cc:80 #, c-format msgid "Command line option '%c' [from %s] is not known." diff --git a/po/cs.po b/po/cs.po index 4ccb2f70b..3d16d6811 100644 --- a/po/cs.po +++ b/po/cs.po @@ -2399,6 +2399,16 @@ msgstr "%c%s… Chyba!" msgid "%c%s... Done" msgstr "%c%s… Hotovo" +#: apt-pkg/contrib/progress.cc:179 +msgid "..." +msgstr "…" + +#. Print the spinner +#: apt-pkg/contrib/progress.cc:195 +#, c-format +msgid "%c%s... %u%%" +msgstr "%c%s… %u%%" + #: apt-pkg/contrib/cmndline.cc:80 #, c-format msgid "Command line option '%c' [from %s] is not known." diff --git a/po/ru.po b/po/ru.po index c60c9a384..9b66cc268 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2457,6 +2457,16 @@ msgstr "%c%s… Ошибка!" msgid "%c%s... Done" msgstr "%c%s… Готово" +#: apt-pkg/contrib/progress.cc:179 +msgid "..." +msgstr "…" + +#. Print the spinner +#: apt-pkg/contrib/progress.cc:195 +#, c-format +msgid "%c%s... %u%%" +msgstr "%c%s… %u%%" + #: apt-pkg/contrib/cmndline.cc:80 #, c-format msgid "Command line option '%c' [from %s] is not known." -- cgit v1.2.3 From fd6a8d0ddc14406bb6c0996b5bbaa95d6ccc1186 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Fri, 1 Mar 2013 19:20:53 +0100 Subject: releasing version 0.9.7.8~exp2 --- debian/changelog | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index b22712a4f..bfc4279b3 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,11 +1,11 @@ -apt (0.9.7.8~exp2) UNRELEASEDexperimental; urgency=low +apt (0.9.7.8~exp2) experimental; urgency=low * include two missing patches to really fix bug #696225, thanks to Guillem Jover * ensure sha512 is really used when available, thanks to Tyler Hicks (LP: #1098752) - -- Michael Vogt Fri, 01 Mar 2013 18:50:17 +0100 + -- Michael Vogt Fri, 01 Mar 2013 19:06:55 +0100 apt (0.9.7.8~exp1) experimental; urgency=low -- cgit v1.2.3 From 69c2ecbdc937e3c73fe67d3c9bce12a80d3ec7ec Mon Sep 17 00:00:00 2001 From: David Kalnischkies Date: Sun, 10 Mar 2013 12:24:13 +0100 Subject: various simple changes to fix cppcheck warnings --- apt-inst/extract.cc | 3 +-- apt-pkg/acquire-item.cc | 4 ++-- apt-pkg/aptconfiguration.cc | 2 +- apt-pkg/cachefilter.cc | 3 +-- apt-pkg/contrib/configuration.cc | 2 +- apt-pkg/contrib/fileutl.cc | 10 +++++----- apt-pkg/contrib/netrc.cc | 8 +++----- apt-pkg/contrib/strutl.cc | 8 ++++---- apt-pkg/deb/dpkgpm.cc | 17 +++++++---------- apt-pkg/indexcopy.cc | 6 ++---- apt-pkg/orderlist.cc | 4 +++- apt-pkg/pkgcache.cc | 18 +++++++++--------- apt-pkg/srcrecords.cc | 11 +++++------ apt-pkg/vendor.cc | 2 +- apt-pkg/versionmatch.cc | 2 +- cmdline/apt-get.cc | 4 ++-- debian/changelog | 7 +++++++ methods/rfc2553emu.cc | 2 -- 18 files changed, 55 insertions(+), 58 deletions(-) diff --git a/apt-inst/extract.cc b/apt-inst/extract.cc index 29e163028..2c95fba92 100644 --- a/apt-inst/extract.cc +++ b/apt-inst/extract.cc @@ -81,8 +81,6 @@ pkgExtract::pkgExtract(pkgFLCache &FLCache,pkgCache::VerIterator Ver) : /* This performs the setup for the extraction.. */ bool pkgExtract::DoItem(Item &Itm,int &Fd) { - char Temp[sizeof(FileName)]; - /* Strip any leading/trailing /s from the filename, then copy it to the temp buffer and re-apply the leading / We use a class variable to store the new filename for use by the three extraction funcs */ @@ -183,6 +181,7 @@ bool pkgExtract::DoItem(Item &Itm,int &Fd) // See if we can recover the backup file if (Nde.end() == false) { + char Temp[sizeof(FileName)]; snprintf(Temp,sizeof(Temp),"%s.%s",Itm.Name,TempExt); if (rename(Temp,Itm.Name) != 0 && errno != ENOENT) return _error->Errno("rename",_("Failed to rename %s to %s"), diff --git a/apt-pkg/acquire-item.cc b/apt-pkg/acquire-item.cc index a71886a87..6ad10e26e 100644 --- a/apt-pkg/acquire-item.cc +++ b/apt-pkg/acquire-item.cc @@ -560,7 +560,7 @@ pkgAcqIndexDiffs::pkgAcqIndexDiffs(pkgAcquire *Owner, Desc.Owner = this; Desc.ShortDesc = ShortDesc; - if(available_patches.size() == 0) + if(available_patches.empty() == true) { // we are done (yeah!) Finish(true); @@ -1643,7 +1643,7 @@ pkgAcqArchive::pkgAcqArchive(pkgAcquire *Owner,pkgSourceList *Sources, assumption here that all the available sources for this version share the same extension.. */ // Skip not source sources, they do not have file fields. - for (; Vf.end() == false; Vf++) + for (; Vf.end() == false; ++Vf) { if ((Vf.File()->Flags & pkgCache::Flag::NotSource) != 0) continue; diff --git a/apt-pkg/aptconfiguration.cc b/apt-pkg/aptconfiguration.cc index 653775688..37c846582 100644 --- a/apt-pkg/aptconfiguration.cc +++ b/apt-pkg/aptconfiguration.cc @@ -401,8 +401,8 @@ std::vector const Configuration::getArchitectures(bool const &Cache close(external[1]); FILE *dpkg = fdopen(external[0], "r"); - char buf[1024]; if(dpkg != NULL) { + char buf[1024]; while (fgets(buf, sizeof(buf), dpkg) != NULL) { char* arch = strtok(buf, " "); while (arch != NULL) { diff --git a/apt-pkg/cachefilter.cc b/apt-pkg/cachefilter.cc index 58cc812bf..64cde41d1 100644 --- a/apt-pkg/cachefilter.cc +++ b/apt-pkg/cachefilter.cc @@ -71,8 +71,7 @@ static std::string CompleteArch(std::string const &arch) { } /*}}}*/ PackageArchitectureMatchesSpecification::PackageArchitectureMatchesSpecification(std::string const &pattern, bool const isPattern) :/*{{{*/ - literal(pattern), isPattern(isPattern), d(NULL) { - complete = CompleteArch(pattern); + literal(pattern), complete(CompleteArch(pattern)), isPattern(isPattern), d(NULL) { } /*}}}*/ bool PackageArchitectureMatchesSpecification::operator() (char const * const &arch) {/*{{{*/ diff --git a/apt-pkg/contrib/configuration.cc b/apt-pkg/contrib/configuration.cc index 4de17e3e1..808a708a1 100644 --- a/apt-pkg/contrib/configuration.cc +++ b/apt-pkg/contrib/configuration.cc @@ -958,7 +958,7 @@ Configuration::MatchAgainstConfig::MatchAgainstConfig(char const * Config) continue; } } - if (strings.size() == 0) + if (strings.empty() == true) patterns.push_back(NULL); } /*}}}*/ diff --git a/apt-pkg/contrib/fileutl.cc b/apt-pkg/contrib/fileutl.cc index 90e49cbfa..f18e17005 100644 --- a/apt-pkg/contrib/fileutl.cc +++ b/apt-pkg/contrib/fileutl.cc @@ -387,7 +387,7 @@ std::vector GetListOfFilesInDir(string const &Dir, std::vector c std::vector List; - if (DirectoryExists(Dir.c_str()) == false) + if (DirectoryExists(Dir) == false) { _error->Error(_("List of files can't be created as '%s' is not a directory"), Dir.c_str()); return List; @@ -413,14 +413,14 @@ std::vector GetListOfFilesInDir(string const &Dir, std::vector c if (Ent->d_type != DT_REG) #endif { - if (RealFileExists(File.c_str()) == false) + if (RealFileExists(File) == false) { // do not show ignoration warnings for directories if ( #ifdef _DIRENT_HAVE_D_TYPE Ent->d_type == DT_DIR || #endif - DirectoryExists(File.c_str()) == true) + DirectoryExists(File) == true) continue; if (SilentIgnore.Match(Ent->d_name) == false) _error->Notice(_("Ignoring '%s' in directory '%s' as it is not a regular file"), Ent->d_name, Dir.c_str()); @@ -501,7 +501,7 @@ std::vector GetListOfFilesInDir(string const &Dir, bool SortList) std::vector List; - if (DirectoryExists(Dir.c_str()) == false) + if (DirectoryExists(Dir) == false) { _error->Error(_("List of files can't be created as '%s' is not a directory"), Dir.c_str()); return List; @@ -526,7 +526,7 @@ std::vector GetListOfFilesInDir(string const &Dir, bool SortList) if (Ent->d_type != DT_REG) #endif { - if (RealFileExists(File.c_str()) == false) + if (RealFileExists(File) == false) { if (Debug == true) std::clog << "Bad file: " << Ent->d_name << " → it is not a real file" << std::endl; diff --git a/apt-pkg/contrib/netrc.cc b/apt-pkg/contrib/netrc.cc index 0a902f126..de95aa4ab 100644 --- a/apt-pkg/contrib/netrc.cc +++ b/apt-pkg/contrib/netrc.cc @@ -50,14 +50,10 @@ static int parsenetrc_string (char *host, std::string &login, std::string &passw FILE *file; int retcode = 1; int specific_login = (login.empty() == false); - char *home = NULL; bool netrc_alloc = false; - int state_our_login = false; /* With specific_login, - found *our* login name */ - if (!netrcfile) { - home = getenv ("HOME"); /* portable environment reader */ + char const * home = getenv ("HOME"); /* portable environment reader */ if (!home) { struct passwd *pw; @@ -86,6 +82,8 @@ static int parsenetrc_string (char *host, std::string &login, std::string &passw int state = NOTHING; char state_login = 0; /* Found a login keyword */ char state_password = 0; /* Found a password keyword */ + int state_our_login = false; /* With specific_login, + found *our* login name */ while (!done && getline(&netrcbuffer, &netrcbuffer_size, file) != -1) { tok = strtok_r (netrcbuffer, " \t\n", &tok_buf); diff --git a/apt-pkg/contrib/strutl.cc b/apt-pkg/contrib/strutl.cc index ca096d736..f643db451 100644 --- a/apt-pkg/contrib/strutl.cc +++ b/apt-pkg/contrib/strutl.cc @@ -1246,7 +1246,7 @@ string StripEpoch(const string &VerStr) return VerStr; return VerStr.substr(i+1); } - + /*}}}*/ // tolower_ascii - tolower() function that ignores the locale /*{{{*/ // --------------------------------------------------------------------- /* This little function is the most called method we have and tries @@ -1284,14 +1284,14 @@ bool CheckDomainList(const string &Host,const string &List) return false; } /*}}}*/ -// DeEscapeString - unescape (\0XX and \xXX) from a string /*{{{*/ +// DeEscapeString - unescape (\0XX and \xXX) from a string /*{{{*/ // --------------------------------------------------------------------- /* */ string DeEscapeString(const string &input) { char tmp[3]; - string::const_iterator it, escape_start; - string output, octal, hex; + string::const_iterator it; + string output; for (it = input.begin(); it != input.end(); ++it) { // just copy non-escape chars diff --git a/apt-pkg/deb/dpkgpm.cc b/apt-pkg/deb/dpkgpm.cc index 6cb8bc6b6..3bc31dc37 100644 --- a/apt-pkg/deb/dpkgpm.cc +++ b/apt-pkg/deb/dpkgpm.cc @@ -147,11 +147,11 @@ static pkgCache::VerIterator FindNowVersion(const pkgCache::PkgIterator &Pkg) { pkgCache::VerIterator Ver; - for (Ver = Pkg.VersionList(); Ver.end() == false; Ver++) + for (Ver = Pkg.VersionList(); Ver.end() == false; ++Ver) { pkgCache::VerFileIterator Vf = Ver.FileList(); pkgCache::PkgFileIterator F = Vf.File(); - for (F = Vf.File(); F.end() == false; F++) + for (F = Vf.File(); F.end() == false; ++F) { if (F && F.Archive()) { @@ -1585,12 +1585,12 @@ void pkgDPkgPM::WriteApportReport(const char *pkgpath, const char *errormsg) if (!logfile_name.empty()) { FILE *log = NULL; - char buf[1024]; fprintf(report, "DpkgTerminalLog:\n"); log = fopen(logfile_name.c_str(),"r"); if(log != NULL) { + char buf[1024]; while( fgets(buf, sizeof(buf), log) != NULL) fprintf(report, " %s", buf); fclose(log); @@ -1609,13 +1609,11 @@ void pkgDPkgPM::WriteApportReport(const char *pkgpath, const char *errormsg) // attach dmesg log (to learn about segfaults) if (FileExists("/bin/dmesg")) { - FILE *log = NULL; - char buf[1024]; - fprintf(report, "Dmesg:\n"); - log = popen("/bin/dmesg","r"); + FILE *log = popen("/bin/dmesg","r"); if(log != NULL) { + char buf[1024]; while( fgets(buf, sizeof(buf), log) != NULL) fprintf(report, " %s", buf); pclose(log); @@ -1625,13 +1623,12 @@ void pkgDPkgPM::WriteApportReport(const char *pkgpath, const char *errormsg) // attach df -l log (to learn about filesystem status) if (FileExists("/bin/df")) { - FILE *log = NULL; - char buf[1024]; fprintf(report, "Df:\n"); - log = popen("/bin/df -l","r"); + FILE *log = popen("/bin/df -l","r"); if(log != NULL) { + char buf[1024]; while( fgets(buf, sizeof(buf), log) != NULL) fprintf(report, " %s", buf); pclose(log); diff --git a/apt-pkg/indexcopy.cc b/apt-pkg/indexcopy.cc index aa1f01a4a..6e35fc40e 100644 --- a/apt-pkg/indexcopy.cc +++ b/apt-pkg/indexcopy.cc @@ -141,7 +141,6 @@ bool IndexCopy::CopyPackages(string CDROM,string Name,vector &List, File = OrigPath + ChopDirs(File,Chop); // See if the file exists - bool Mangled = false; if (NoStat == false || Hits < 10) { // Attempt to fix broken structure @@ -164,6 +163,7 @@ bool IndexCopy::CopyPackages(string CDROM,string Name,vector &List, if (stat(string(CDROM + Prefix + File).c_str(),&Buf) != 0 || Buf.st_size == 0) { + bool Mangled = false; // Attempt to fix busted symlink support for one instance string OrigFile = File; string::size_type Start = File.find("binary-"); @@ -799,9 +799,7 @@ bool TranslationsCopy::CopyTranslations(string CDROM,string Name, /*{{{*/ unsigned int WrongSize = 0; unsigned int Packages = 0; for (vector::iterator I = List.begin(); I != List.end(); ++I) - { - string OrigPath = string(*I,CDROM.length()); - + { // Open the package file FileFd Pkg(*I, FileFd::ReadOnly, FileFd::Auto); off_t const FileSize = Pkg.Size(); diff --git a/apt-pkg/orderlist.cc b/apt-pkg/orderlist.cc index 3a179b2a2..80d8fd490 100644 --- a/apt-pkg/orderlist.cc +++ b/apt-pkg/orderlist.cc @@ -331,9 +331,11 @@ int pkgOrderList::Score(PkgIterator Pkg) } // Important Required Standard Optional Extra - signed short PrioMap[] = {0,5,4,3,1,0}; if (Cache[Pkg].InstVerIter(Cache)->Priority <= 5) + { + signed short PrioMap[] = {0,5,4,3,1,0}; Score += PrioMap[Cache[Pkg].InstVerIter(Cache)->Priority]; + } return Score; } /*}}}*/ diff --git a/apt-pkg/pkgcache.cc b/apt-pkg/pkgcache.cc index 1de33ff9b..1378876fe 100644 --- a/apt-pkg/pkgcache.cc +++ b/apt-pkg/pkgcache.cc @@ -279,22 +279,22 @@ pkgCache::GrpIterator pkgCache::FindGrp(const string &Name) { type in the weird debian style.. */ const char *pkgCache::CompTypeDeb(unsigned char Comp) { - const char *Ops[] = {"","<=",">=","<<",">>","=","!="}; - if ((unsigned)(Comp & 0xF) < 7) - return Ops[Comp & 0xF]; - return ""; + const char * const Ops[] = {"","<=",">=","<<",">>","=","!="}; + if (unlikely((unsigned)(Comp & 0xF) >= sizeof(Ops)/sizeof(Ops[0]))) + return ""; + return Ops[Comp & 0xF]; } /*}}}*/ // Cache::CompType - Return a string describing the compare type /*{{{*/ // --------------------------------------------------------------------- -/* This returns a string representation of the dependency compare +/* This returns a string representation of the dependency compare type */ const char *pkgCache::CompType(unsigned char Comp) { - const char *Ops[] = {"","<=",">=","<",">","=","!="}; - if ((unsigned)(Comp & 0xF) < 7) - return Ops[Comp & 0xF]; - return ""; + const char * const Ops[] = {"","<=",">=","<",">","=","!="}; + if (unlikely((unsigned)(Comp & 0xF) >= sizeof(Ops)/sizeof(Ops[0]))) + return ""; + return Ops[Comp & 0xF]; } /*}}}*/ // Cache::DepType - Return a string describing the dep type /*{{{*/ diff --git a/apt-pkg/srcrecords.cc b/apt-pkg/srcrecords.cc index d63d2c422..297559957 100644 --- a/apt-pkg/srcrecords.cc +++ b/apt-pkg/srcrecords.cc @@ -42,7 +42,7 @@ pkgSrcRecords::pkgSrcRecords(pkgSourceList &List) : d(NULL), Files(0), Current(0 } // Doesn't work without any source index files - if (Files.size() == 0) + if (Files.empty() == true) { _error->Error(_("You must put some 'source' URIs" " in your sources.list")); @@ -121,14 +121,13 @@ pkgSrcRecords::Parser *pkgSrcRecords::Find(const char *Package,bool const &SrcOn /* */ const char *pkgSrcRecords::Parser::BuildDepType(unsigned char const &Type) { - const char *fields[] = {"Build-Depends", - "Build-Depends-Indep", + const char *fields[] = {"Build-Depends", + "Build-Depends-Indep", "Build-Conflicts", "Build-Conflicts-Indep"}; - if (Type < 4) - return fields[Type]; - else + if (unlikely(Type >= sizeof(fields)/sizeof(fields[0]))) return ""; + return fields[Type]; } /*}}}*/ diff --git a/apt-pkg/vendor.cc b/apt-pkg/vendor.cc index 36fc25957..fc03ec845 100644 --- a/apt-pkg/vendor.cc +++ b/apt-pkg/vendor.cc @@ -12,7 +12,7 @@ Vendor::Vendor(std::string VendorID, this->VendorID = VendorID; this->Origin = Origin; for (std::vector::iterator I = FingerprintList->begin(); - I != FingerprintList->end(); I++) + I != FingerprintList->end(); ++I) { if (_config->FindB("Debug::Vendor", false)) std::cerr << "Vendor \"" << VendorID << "\": Mapping \"" diff --git a/apt-pkg/versionmatch.cc b/apt-pkg/versionmatch.cc index e4fa0ea65..26262a010 100644 --- a/apt-pkg/versionmatch.cc +++ b/apt-pkg/versionmatch.cc @@ -181,9 +181,9 @@ pkgCache::VerIterator pkgVersionMatch::Find(pkgCache::PkgIterator Pkg) bool pkgVersionMatch::ExpressionMatches(const char *pattern, const char *string) { if (pattern[0] == '/') { - bool res = false; size_t length = strlen(pattern); if (pattern[length - 1] == '/') { + bool res = false; regex_t preg; char *regex = strdup(pattern + 1); regex[length - 2] = '\0'; diff --git a/cmdline/apt-get.cc b/cmdline/apt-get.cc index e3c74a099..5e6f50d41 100644 --- a/cmdline/apt-get.cc +++ b/cmdline/apt-get.cc @@ -1912,7 +1912,6 @@ bool DoInstall(CommandLine &CmdL) return false; } - unsigned short const order[] = { MOD_REMOVE, MOD_INSTALL, 0 }; TryToInstall InstallAction(Cache, Fix, BrokenFix); TryToRemove RemoveAction(Cache, Fix); @@ -1920,6 +1919,7 @@ bool DoInstall(CommandLine &CmdL) // new scope for the ActionGroup { pkgDepCache::ActionGroup group(Cache); + unsigned short const order[] = { MOD_REMOVE, MOD_INSTALL, 0 }; for (unsigned short i = 0; order[i] != 0; ++i) { @@ -2023,7 +2023,7 @@ bool DoInstall(CommandLine &CmdL) /* Print out a list of suggested and recommended packages */ { - string SuggestsList, RecommendsList, List; + string SuggestsList, RecommendsList; string SuggestsVersions, RecommendsVersions; for (unsigned J = 0; J < Cache->Head().PackageCount; J++) { diff --git a/debian/changelog b/debian/changelog index bfc4279b3..067103c72 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +apt (0.9.7.8~exp2+nmu1) UNRELEASED; urgency=low + + [ David Kalnischkies ] + * various simple changes to fix cppcheck warnings + + -- David Kalnischkies Sun, 10 Mar 2013 12:23:24 +0100 + apt (0.9.7.8~exp2) experimental; urgency=low * include two missing patches to really fix bug #696225, thanks to diff --git a/methods/rfc2553emu.cc b/methods/rfc2553emu.cc index f00e85889..372882769 100644 --- a/methods/rfc2553emu.cc +++ b/methods/rfc2553emu.cc @@ -154,11 +154,9 @@ int getaddrinfo(const char *nodename, const char *servname, /* */ void freeaddrinfo(struct addrinfo *ai) { - struct addrinfo *Tmp; while (ai != 0) { free(ai->ai_addr); - Tmp = ai; ai = ai->ai_next; free(ai); } -- cgit v1.2.3 From a65e22c64a9312dec90264b4059424dbe2290d7b Mon Sep 17 00:00:00 2001 From: David Kalnischkies Date: Tue, 12 Mar 2013 23:28:16 +0100 Subject: * apt-pkg/pkgcachegen.cc: - do not store the MD5Sum for every description language variant as it will be the same for all so it can be shared to save cache space --- apt-pkg/pkgcachegen.cc | 61 ++++++++++++++++++++++++++------------------------ debian/changelog | 3 +++ 2 files changed, 35 insertions(+), 29 deletions(-) diff --git a/apt-pkg/pkgcachegen.cc b/apt-pkg/pkgcachegen.cc index 373f6625c..2f05310c1 100644 --- a/apt-pkg/pkgcachegen.cc +++ b/apt-pkg/pkgcachegen.cc @@ -300,36 +300,35 @@ bool pkgCacheGenerator::MergeListPackage(ListParser &List, pkgCache::PkgIterator for (Ver = Pkg.VersionList(); Ver.end() == false; ++Ver) { - pkgCache::DescIterator Desc = Ver.DescriptionList(); + pkgCache::DescIterator VerDesc = Ver.DescriptionList(); // a version can only have one md5 describing it - if (Desc.end() == true || MD5SumValue(Desc.md5()) != CurMd5) + if (VerDesc.end() == true || MD5SumValue(VerDesc.md5()) != CurMd5) continue; // don't add a new description if we have one for the given // md5 && language - if (IsDuplicateDescription(Desc, CurMd5, CurLang) == true) + if (IsDuplicateDescription(VerDesc, CurMd5, CurLang) == true) continue; + pkgCache::DescIterator Desc; Dynamic DynDesc(Desc); - // we add at the end, so that the start is constant as we need - // that to be able to efficiently share these lists - map_ptrloc *LastDesc = &Ver->DescriptionList; - for (;Desc.end() == false && Desc->NextDesc != 0; ++Desc); - if (Desc.end() == false) - LastDesc = &Desc->NextDesc; - void const * const oldMap = Map.Data(); - map_ptrloc const descindex = NewDescription(Desc, CurLang, CurMd5, *LastDesc); + map_ptrloc const descindex = NewDescription(Desc, CurLang, CurMd5, VerDesc->md5sum); if (unlikely(descindex == 0 && _error->PendingError())) return _error->Error(_("Error occurred while processing %s (%s%d)"), Pkg.Name(), "NewDescription", 1); - if (oldMap != Map.Data()) - LastDesc += (map_ptrloc*) Map.Data() - (map_ptrloc*) oldMap; - *LastDesc = descindex; + Desc->ParentPkg = Pkg.Index(); - if ((*LastDesc == 0 && _error->PendingError()) || NewFileDesc(Desc,List) == false) + // we add at the end, so that the start is constant as we need + // that to be able to efficiently share these lists + VerDesc = Ver.DescriptionList(); // old value might be invalid after ReMap + for (;VerDesc.end() == false && VerDesc->NextDesc != 0; ++VerDesc); + map_ptrloc * const LastNextDesc = (VerDesc.end() == true) ? &Ver->DescriptionList : &VerDesc->NextDesc; + *LastNextDesc = descindex; + + if (NewFileDesc(Desc,List) == false) return _error->Error(_("Error occurred while processing %s (%s%d)"), Pkg.Name(), "NewFileDesc", 1); @@ -509,19 +508,16 @@ bool pkgCacheGenerator::MergeListVersion(ListParser &List, pkgCache::PkgIterator // We haven't found reusable descriptions, so add the first description pkgCache::DescIterator Desc = Ver.DescriptionList(); Dynamic DynDesc(Desc); - map_ptrloc *LastDesc = &Ver->DescriptionList; - oldMap = Map.Data(); - map_ptrloc const descindex = NewDescription(Desc, CurLang, CurMd5, *LastDesc); + map_ptrloc const descindex = NewDescription(Desc, CurLang, CurMd5, 0); if (unlikely(descindex == 0 && _error->PendingError())) return _error->Error(_("Error occurred while processing %s (%s%d)"), Pkg.Name(), "NewDescription", 2); - if (oldMap != Map.Data()) - LastDesc += (map_ptrloc*) Map.Data() - (map_ptrloc*) oldMap; - *LastDesc = descindex; + Desc->ParentPkg = Pkg.Index(); + Ver->DescriptionList = descindex; - if ((*LastDesc == 0 && _error->PendingError()) || NewFileDesc(Desc,List) == false) + if (NewFileDesc(Desc,List) == false) return _error->Error(_("Error occurred while processing %s (%s%d)"), Pkg.Name(), "NewFileDesc", 2); @@ -825,9 +821,9 @@ bool pkgCacheGenerator::NewFileDesc(pkgCache::DescIterator &Desc, // --------------------------------------------------------------------- /* This puts a description structure in the linked list */ map_ptrloc pkgCacheGenerator::NewDescription(pkgCache::DescIterator &Desc, - const string &Lang, - const MD5SumValue &md5sum, - map_ptrloc Next) + const string &Lang, + const MD5SumValue &md5sum, + map_ptrloc idxmd5str) { // Get a structure map_ptrloc const Description = AllocateInMap(sizeof(pkgCache::Description)); @@ -836,14 +832,21 @@ map_ptrloc pkgCacheGenerator::NewDescription(pkgCache::DescIterator &Desc, // Fill it in Desc = pkgCache::DescIterator(Cache,Cache.DescP + Description); - Desc->NextDesc = Next; Desc->ID = Cache.HeaderP->DescriptionCount++; map_ptrloc const idxlanguage_code = WriteStringInMap(Lang); - map_ptrloc const idxmd5sum = WriteStringInMap(md5sum.Value()); - if (unlikely(idxlanguage_code == 0 || idxmd5sum == 0)) + if (unlikely(idxlanguage_code == 0)) return 0; Desc->language_code = idxlanguage_code; - Desc->md5sum = idxmd5sum; + + if (idxmd5str != 0) + Desc->md5sum = idxmd5str; + else + { + map_ptrloc const idxmd5sum = WriteStringInMap(md5sum.Value()); + if (unlikely(idxmd5sum == 0)) + return 0; + Desc->md5sum = idxmd5sum; + } return Description; } diff --git a/debian/changelog b/debian/changelog index 067103c72..58cff6822 100644 --- a/debian/changelog +++ b/debian/changelog @@ -2,6 +2,9 @@ apt (0.9.7.8~exp2+nmu1) UNRELEASED; urgency=low [ David Kalnischkies ] * various simple changes to fix cppcheck warnings + * apt-pkg/pkgcachegen.cc: + - do not store the MD5Sum for every description language variant as + it will be the same for all so it can be shared to save cache space -- David Kalnischkies Sun, 10 Mar 2013 12:23:24 +0100 -- cgit v1.2.3 From 734b7c817a54e2717bc9124a691be532d881a65b Mon Sep 17 00:00:00 2001 From: David Kalnischkies Date: Tue, 12 Mar 2013 23:47:48 +0100 Subject: handle language tags for descriptions are unique strings to be shared --- apt-pkg/pkgcachegen.cc | 2 +- debian/changelog | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/apt-pkg/pkgcachegen.cc b/apt-pkg/pkgcachegen.cc index 2f05310c1..d14a7af1c 100644 --- a/apt-pkg/pkgcachegen.cc +++ b/apt-pkg/pkgcachegen.cc @@ -833,7 +833,7 @@ map_ptrloc pkgCacheGenerator::NewDescription(pkgCache::DescIterator &Desc, // Fill it in Desc = pkgCache::DescIterator(Cache,Cache.DescP + Description); Desc->ID = Cache.HeaderP->DescriptionCount++; - map_ptrloc const idxlanguage_code = WriteStringInMap(Lang); + map_ptrloc const idxlanguage_code = WriteUniqString(Lang); if (unlikely(idxlanguage_code == 0)) return 0; Desc->language_code = idxlanguage_code; diff --git a/debian/changelog b/debian/changelog index 58cff6822..9578ec8fd 100644 --- a/debian/changelog +++ b/debian/changelog @@ -5,6 +5,7 @@ apt (0.9.7.8~exp2+nmu1) UNRELEASED; urgency=low * apt-pkg/pkgcachegen.cc: - do not store the MD5Sum for every description language variant as it will be the same for all so it can be shared to save cache space + - handle language tags for descriptions are unique strings to be shared -- David Kalnischkies Sun, 10 Mar 2013 12:23:24 +0100 -- cgit v1.2.3 From 9c44383f2ea09afbf6ebab217cdc450e5170c172 Mon Sep 17 00:00:00 2001 From: David Kalnischkies Date: Wed, 13 Mar 2013 19:00:19 +0100 Subject: factor version string creation out of NewDepends, so we can easily reuse version strings e.g. for implicit multi-arch dependencies --- apt-pkg/pkgcachegen.cc | 57 +++++++++++++++++++++++++++----------------------- apt-pkg/pkgcachegen.h | 3 +++ debian/changelog | 2 ++ 3 files changed, 36 insertions(+), 26 deletions(-) diff --git a/apt-pkg/pkgcachegen.cc b/apt-pkg/pkgcachegen.cc index d14a7af1c..01aaf6164 100644 --- a/apt-pkg/pkgcachegen.cc +++ b/apt-pkg/pkgcachegen.cc @@ -463,11 +463,8 @@ bool pkgCacheGenerator::MergeListVersion(ListParser &List, pkgCache::PkgIterator pkgCache::VerIterator ConVersion = D.ParentVer(); Dynamic DynV(ConVersion); // duplicate the Conflicts/Breaks/Replaces for :none arch - if (D->Version == 0) - NewDepends(Pkg, ConVersion, "", 0, D->Type, OldDepLast); - else - NewDepends(Pkg, ConVersion, D.TargetVer(), - D->CompareOp, D->Type, OldDepLast); + NewDepends(Pkg, ConVersion, D->Version, + D->CompareOp, D->Type, OldDepLast); } } } @@ -671,6 +668,7 @@ bool pkgCacheGenerator::AddImplicitDepends(pkgCache::GrpIterator &G, bool const coInstall = ((V->MultiArch & pkgCache::Version::Same) == pkgCache::Version::Same); pkgCache::PkgIterator D = G.PackageList(); Dynamic DynD(D); + map_ptrloc const VerStrIdx = V->VerStr; for (; D.end() != true; D = G.NextPkg(D)) { if (Arch == D.Arch() || D->VersionList == 0) @@ -681,16 +679,16 @@ bool pkgCacheGenerator::AddImplicitDepends(pkgCache::GrpIterator &G, if (coInstall == true) { // Replaces: ${self}:other ( << ${binary:Version}) - NewDepends(D, V, V.VerStr(), + NewDepends(D, V, VerStrIdx, pkgCache::Dep::Less, pkgCache::Dep::Replaces, OldDepLast); // Breaks: ${self}:other (!= ${binary:Version}) - NewDepends(D, V, V.VerStr(), + NewDepends(D, V, VerStrIdx, pkgCache::Dep::NotEquals, pkgCache::Dep::DpkgBreaks, OldDepLast); } else { // Conflicts: ${self}:other - NewDepends(D, V, "", + NewDepends(D, V, 0, pkgCache::Dep::NoOp, pkgCache::Dep::Conflicts, OldDepLast); } @@ -707,17 +705,18 @@ bool pkgCacheGenerator::AddImplicitDepends(pkgCache::VerIterator &V, bool const coInstall = ((V->MultiArch & pkgCache::Version::Same) == pkgCache::Version::Same); if (coInstall == true) { + map_ptrloc const VerStrIdx = V->VerStr; // Replaces: ${self}:other ( << ${binary:Version}) - NewDepends(D, V, V.VerStr(), + NewDepends(D, V, VerStrIdx, pkgCache::Dep::Less, pkgCache::Dep::Replaces, OldDepLast); // Breaks: ${self}:other (!= ${binary:Version}) - NewDepends(D, V, V.VerStr(), + NewDepends(D, V, VerStrIdx, pkgCache::Dep::NotEquals, pkgCache::Dep::DpkgBreaks, OldDepLast); } else { // Conflicts: ${self}:other - NewDepends(D, V, "", + NewDepends(D, V, 0, pkgCache::Dep::NoOp, pkgCache::Dep::Conflicts, OldDepLast); } @@ -861,35 +860,41 @@ bool pkgCacheGenerator::NewDepends(pkgCache::PkgIterator &Pkg, unsigned int const &Op, unsigned int const &Type, map_ptrloc* &OldDepLast) +{ + map_ptrloc index = 0; + if (Version.empty() == false) + { + void const * const oldMap = Map.Data(); + index = WriteStringInMap(Version); + if (unlikely(index == 0)) + return false; + if (oldMap != Map.Data()) + OldDepLast += (map_ptrloc*) Map.Data() - (map_ptrloc*) oldMap; + } + return NewDepends(Pkg, Ver, index, Op, Type, OldDepLast); +} +bool pkgCacheGenerator::NewDepends(pkgCache::PkgIterator &Pkg, + pkgCache::VerIterator &Ver, + map_ptrloc const Version, + unsigned int const &Op, + unsigned int const &Type, + map_ptrloc* &OldDepLast) { void const * const oldMap = Map.Data(); // Get a structure map_ptrloc const Dependency = AllocateInMap(sizeof(pkgCache::Dependency)); if (unlikely(Dependency == 0)) return false; - + // Fill it in pkgCache::DepIterator Dep(Cache,Cache.DepP + Dependency); Dynamic DynDep(Dep); Dep->ParentVer = Ver.Index(); Dep->Type = Type; Dep->CompareOp = Op; + Dep->Version = Version; Dep->ID = Cache.HeaderP->DependsCount++; - // Probe the reverse dependency list for a version string that matches - if (Version.empty() == false) - { -/* for (pkgCache::DepIterator I = Pkg.RevDependsList(); I.end() == false; I++) - if (I->Version != 0 && I.TargetVer() == Version) - Dep->Version = I->Version;*/ - if (Dep->Version == 0) { - map_ptrloc const index = WriteStringInMap(Version); - if (unlikely(index == 0)) - return false; - Dep->Version = index; - } - } - // Link it to the package Dep->Package = Pkg.Index(); Dep->NextRevDepends = Pkg->RevDepends; diff --git a/apt-pkg/pkgcachegen.h b/apt-pkg/pkgcachegen.h index b6259b433..e759cbd3e 100644 --- a/apt-pkg/pkgcachegen.h +++ b/apt-pkg/pkgcachegen.h @@ -77,6 +77,9 @@ class pkgCacheGenerator /*{{{*/ bool NewDepends(pkgCache::PkgIterator &Pkg, pkgCache::VerIterator &Ver, std::string const &Version, unsigned int const &Op, unsigned int const &Type, map_ptrloc* &OldDepLast); + bool NewDepends(pkgCache::PkgIterator &Pkg, pkgCache::VerIterator &Ver, + map_ptrloc const Version, unsigned int const &Op, + unsigned int const &Type, map_ptrloc* &OldDepLast); unsigned long NewVersion(pkgCache::VerIterator &Ver,const std::string &VerStr,unsigned long Next); map_ptrloc NewDescription(pkgCache::DescIterator &Desc,const std::string &Lang,const MD5SumValue &md5sum,map_ptrloc Next); diff --git a/debian/changelog b/debian/changelog index 9578ec8fd..7796f5920 100644 --- a/debian/changelog +++ b/debian/changelog @@ -6,6 +6,8 @@ apt (0.9.7.8~exp2+nmu1) UNRELEASED; urgency=low - do not store the MD5Sum for every description language variant as it will be the same for all so it can be shared to save cache space - handle language tags for descriptions are unique strings to be shared + - factor version string creation out of NewDepends, so we can easily reuse + version strings e.g. for implicit multi-arch dependencies -- David Kalnischkies Sun, 10 Mar 2013 12:23:24 +0100 -- cgit v1.2.3 From 55971004215609a02ca19c59bd058da20729ba11 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Thu, 14 Mar 2013 14:26:43 +0100 Subject: * SECURITY UPDATE: InRelease verification bypass - CVE-2013-1051 * apt-pkg/deb/debmetaindex.cc, test/integration/test-bug-595691-empty-and-broken-archive-files, test/integration/test-releasefile-verification: - disable InRelease downloading until the verification issue is fixed, thanks to Ansgar Burchardt for finding the flaw --- apt-pkg/deb/debmetaindex.cc | 21 +- configure.in | 2 +- debian/changelog | 14 + debian/control | 4 +- doc/apt-verbatim.ent | 2 +- doc/po/apt-doc.pot | 4 +- po/apt-all.pot | 182 +++++----- po/ar.po | 180 +++++----- po/ast.po | 180 +++++----- po/bg.po | 180 +++++----- po/bs.po | 180 +++++----- po/ca.po | 238 +++++++------ po/cs.po | 180 +++++----- po/cy.po | 180 +++++----- po/da.po | 180 +++++----- po/de.po | 180 +++++----- po/dz.po | 180 +++++----- po/el.po | 180 +++++----- po/es.po | 180 +++++----- po/eu.po | 180 +++++----- po/fi.po | 180 +++++----- po/fr.po | 395 +++++++++++---------- po/gl.po | 180 +++++----- po/hu.po | 180 +++++----- po/it.po | 180 +++++----- po/ja.po | 180 +++++----- po/km.po | 180 +++++----- po/ko.po | 180 +++++----- po/ku.po | 180 +++++----- po/lt.po | 180 +++++----- po/mr.po | 180 +++++----- po/nb.po | 180 +++++----- po/ne.po | 180 +++++----- po/nl.po | 180 +++++----- po/nn.po | 180 +++++----- po/pl.po | 180 +++++----- po/pt.po | 180 +++++----- po/pt_BR.po | 180 +++++----- po/ro.po | 180 +++++----- po/ru.po | 180 +++++----- po/sk.po | 180 +++++----- po/sl.po | 180 +++++----- po/sv.po | 180 +++++----- po/th.po | 180 +++++----- po/tl.po | 180 +++++----- po/uk.po | 180 +++++----- po/vi.po | 180 +++++----- po/zh_CN.po | 180 +++++----- po/zh_TW.po | 180 +++++----- .../test-bug-595691-empty-and-broken-archive-files | 30 +- test/integration/test-releasefile-verification | 4 +- 51 files changed, 4108 insertions(+), 3988 deletions(-) diff --git a/apt-pkg/deb/debmetaindex.cc b/apt-pkg/deb/debmetaindex.cc index bcc617da7..6c191fd95 100644 --- a/apt-pkg/deb/debmetaindex.cc +++ b/apt-pkg/deb/debmetaindex.cc @@ -236,16 +236,23 @@ bool debReleaseIndex::GetIndexes(pkgAcquire *Owner, bool const &GetAll) const new pkgAcqIndex(Owner, (*Target)->URI, (*Target)->Description, (*Target)->ShortDesc, HashString()); } + + // this is normally created in pkgAcqMetaSig, but if we run + // in --print-uris mode, we add it here + new pkgAcqMetaIndex(Owner, MetaIndexURI("Release"), + MetaIndexInfo("Release"), "Release", + MetaIndexURI("Release.gpg"), + ComputeIndexTargets(), + new indexRecords (Dist)); } - new pkgAcqMetaClearSig(Owner, MetaIndexURI("InRelease"), - MetaIndexInfo("InRelease"), "InRelease", - MetaIndexURI("Release"), MetaIndexInfo("Release"), "Release", - MetaIndexURI("Release.gpg"), MetaIndexInfo("Release.gpg"), "Release.gpg", - ComputeIndexTargets(), - new indexRecords (Dist)); + new pkgAcqMetaSig(Owner, MetaIndexURI("Release.gpg"), + MetaIndexInfo("Release.gpg"), "Release.gpg", + MetaIndexURI("Release"), MetaIndexInfo("Release"), "Release", + ComputeIndexTargets(), + new indexRecords (Dist)); - return true; + return true; } void debReleaseIndex::SetTrusted(bool const Trusted) diff --git a/configure.in b/configure.in index be3634abe..84b6d1b24 100644 --- a/configure.in +++ b/configure.in @@ -18,7 +18,7 @@ AC_CONFIG_AUX_DIR(buildlib) AC_CONFIG_HEADER(include/config.h:buildlib/config.h.in include/apti18n.h:buildlib/apti18n.h.in) PACKAGE="apt" -PACKAGE_VERSION="0.9.7.7" +PACKAGE_VERSION="0.9.7.8" PACKAGE_MAIL="APT Development Team " AC_DEFINE_UNQUOTED(PACKAGE,"$PACKAGE") AC_DEFINE_UNQUOTED(PACKAGE_VERSION,"$PACKAGE_VERSION") diff --git a/debian/changelog b/debian/changelog index 891c4f9da..9ed9b4d61 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,17 @@ +apt (0.9.7.8) unstable; urgency=criticial + + * SECURITY UPDATE: InRelease verification bypass + - CVE-2013-1051 + + [ David Kalnischk ] + * apt-pkg/deb/debmetaindex.cc, + test/integration/test-bug-595691-empty-and-broken-archive-files, + test/integration/test-releasefile-verification: + - disable InRelease downloading until the verification issue is + fixed, thanks to Ansgar Burchardt for finding the flaw + + -- Michael Vogt Thu, 14 Mar 2013 07:47:36 +0100 + apt (0.9.7.7) unstable; urgency=low [ Program translation updates ] diff --git a/debian/control b/debian/control index 762d2818e..50b3599fc 100644 --- a/debian/control +++ b/debian/control @@ -12,8 +12,8 @@ Build-Depends: dpkg-dev (>= 1.15.8), debhelper (>= 8.1.3~), libdb-dev, po4a (>= 0.34-2), autotools-dev, autoconf, automake Build-Depends-Indep: doxygen, debiandoc-sgml Build-Conflicts: autoconf2.13, automake1.4 -Vcs-Bzr: http://bzr.debian.org/apt/debian-sid/ -Vcs-Browser: http://bzr.debian.org/loggerhead/apt/debian-sid/ +Vcs-Bzr: http://bzr.debian.org/apt/debian-wheezy/ +Vcs-Browser: http://bzr.debian.org/loggerhead/apt/debian-wheezy/ Package: apt Architecture: any diff --git a/doc/apt-verbatim.ent b/doc/apt-verbatim.ent index 98d864818..f3885ef7c 100644 --- a/doc/apt-verbatim.ent +++ b/doc/apt-verbatim.ent @@ -213,7 +213,7 @@ "> - + diff --git a/doc/po/apt-doc.pot b/doc/po/apt-doc.pot index 78c21907a..99cb3dfca 100644 --- a/doc/po/apt-doc.pot +++ b/doc/po/apt-doc.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: apt-doc 0.9.7.5\n" +"Project-Id-Version: apt-doc 0.9.7.8\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2012-10-15 09:49+0300\n" +"POT-Creation-Date: 2013-03-14 08:05+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/po/apt-all.pot b/po/apt-all.pot index 205cfe72c..690908054 100644 --- a/po/apt-all.pot +++ b/po/apt-all.pot @@ -5,9 +5,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: apt 0.9.7.5\n" +"Project-Id-Version: apt 0.9.7.8\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2012-10-15 09:49+0200\n" +"POT-Creation-Date: 2013-03-14 08:05+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -152,7 +152,7 @@ msgid " Version table:" msgstr "" #: cmdline/apt-cache.cc:1683 cmdline/apt-cdrom.cc:198 cmdline/apt-config.cc:81 -#: cmdline/apt-get.cc:3361 cmdline/apt-mark.cc:375 +#: cmdline/apt-get.cc:3363 cmdline/apt-mark.cc:375 #: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:590 #: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147 #, c-format @@ -425,7 +425,7 @@ msgstr "" msgid "%s is already the newest version.\n" msgstr "" -#: cmdline/apt-get.cc:858 cmdline/apt-get.cc:2157 cmdline/apt-mark.cc:68 +#: cmdline/apt-get.cc:858 cmdline/apt-get.cc:2159 cmdline/apt-mark.cc:68 #, c-format msgid "%s set to manually installed.\n" msgstr "" @@ -532,8 +532,8 @@ msgstr "" msgid "After this operation, %sB disk space will be freed.\n" msgstr "" -#: cmdline/apt-get.cc:1228 cmdline/apt-get.cc:1231 cmdline/apt-get.cc:2589 -#: cmdline/apt-get.cc:2592 +#: cmdline/apt-get.cc:1228 cmdline/apt-get.cc:1231 cmdline/apt-get.cc:2591 +#: cmdline/apt-get.cc:2594 #, c-format msgid "Couldn't determine free space in %s" msgstr "" @@ -543,15 +543,17 @@ msgstr "" msgid "You don't have enough free space in %s." msgstr "" -#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1277 +#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1279 msgid "Trivial Only specified but this is not a trivial operation." msgstr "" -#: cmdline/apt-get.cc:1259 +#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be +#. careful with hard to type or special characters (like non-breaking spaces) +#: cmdline/apt-get.cc:1261 msgid "Yes, do as I say!" msgstr "" -#: cmdline/apt-get.cc:1261 +#: cmdline/apt-get.cc:1263 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -559,46 +561,46 @@ msgid "" " ?] " msgstr "" -#: cmdline/apt-get.cc:1267 cmdline/apt-get.cc:1286 +#: cmdline/apt-get.cc:1269 cmdline/apt-get.cc:1288 msgid "Abort." msgstr "" -#: cmdline/apt-get.cc:1282 +#: cmdline/apt-get.cc:1284 msgid "Do you want to continue [Y/n]? " msgstr "" -#: cmdline/apt-get.cc:1354 cmdline/apt-get.cc:2654 apt-pkg/algorithms.cc:1548 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 #, c-format msgid "Failed to fetch %s %s\n" msgstr "" -#: cmdline/apt-get.cc:1372 +#: cmdline/apt-get.cc:1374 msgid "Some files failed to download" msgstr "" -#: cmdline/apt-get.cc:1373 cmdline/apt-get.cc:2666 +#: cmdline/apt-get.cc:1375 cmdline/apt-get.cc:2668 msgid "Download complete and in download only mode" msgstr "" -#: cmdline/apt-get.cc:1379 +#: cmdline/apt-get.cc:1381 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" msgstr "" -#: cmdline/apt-get.cc:1383 +#: cmdline/apt-get.cc:1385 msgid "--fix-missing and media swapping is not currently supported" msgstr "" -#: cmdline/apt-get.cc:1388 +#: cmdline/apt-get.cc:1390 msgid "Unable to correct missing packages." msgstr "" -#: cmdline/apt-get.cc:1389 +#: cmdline/apt-get.cc:1391 msgid "Aborting install." msgstr "" -#: cmdline/apt-get.cc:1417 +#: cmdline/apt-get.cc:1419 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -608,35 +610,35 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: cmdline/apt-get.cc:1421 +#: cmdline/apt-get.cc:1423 msgid "Note: This is done automatically and on purpose by dpkg." msgstr "" -#: cmdline/apt-get.cc:1559 +#: cmdline/apt-get.cc:1561 #, c-format msgid "Ignore unavailable target release '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:1591 +#: cmdline/apt-get.cc:1593 #, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "" #. if (VerTag.empty() == false && Last == 0) -#: cmdline/apt-get.cc:1629 +#: cmdline/apt-get.cc:1631 #, c-format msgid "Ignore unavailable version '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:1645 +#: cmdline/apt-get.cc:1647 msgid "The update command takes no arguments" msgstr "" -#: cmdline/apt-get.cc:1711 +#: cmdline/apt-get.cc:1713 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -#: cmdline/apt-get.cc:1815 +#: cmdline/apt-get.cc:1817 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -652,15 +654,15 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1818 cmdline/apt-get.cc:1987 +#: cmdline/apt-get.cc:1820 cmdline/apt-get.cc:1989 msgid "The following information may help to resolve the situation:" msgstr "" -#: cmdline/apt-get.cc:1822 +#: cmdline/apt-get.cc:1824 msgid "Internal Error, AutoRemover broke stuff" msgstr "" -#: cmdline/apt-get.cc:1829 +#: cmdline/apt-get.cc:1831 msgid "" "The following package was automatically installed and is no longer required:" msgid_plural "" @@ -669,7 +671,7 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: cmdline/apt-get.cc:1833 +#: cmdline/apt-get.cc:1835 #, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -677,27 +679,27 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: cmdline/apt-get.cc:1835 +#: cmdline/apt-get.cc:1837 msgid "Use 'apt-get autoremove' to remove it." msgid_plural "Use 'apt-get autoremove' to remove them." msgstr[0] "" msgstr[1] "" -#: cmdline/apt-get.cc:1854 +#: cmdline/apt-get.cc:1856 msgid "Internal error, AllUpgrade broke stuff" msgstr "" -#: cmdline/apt-get.cc:1953 +#: cmdline/apt-get.cc:1955 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "" -#: cmdline/apt-get.cc:1957 +#: cmdline/apt-get.cc:1959 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." msgstr "" -#: cmdline/apt-get.cc:1972 +#: cmdline/apt-get.cc:1974 msgid "" "Some packages could not be installed. This may mean that you have\n" "requested an impossible situation or if you are using the unstable\n" @@ -705,85 +707,85 @@ msgid "" "or been moved out of Incoming." msgstr "" -#: cmdline/apt-get.cc:1993 +#: cmdline/apt-get.cc:1995 msgid "Broken packages" msgstr "" -#: cmdline/apt-get.cc:2019 +#: cmdline/apt-get.cc:2021 msgid "The following extra packages will be installed:" msgstr "" -#: cmdline/apt-get.cc:2109 +#: cmdline/apt-get.cc:2111 msgid "Suggested packages:" msgstr "" -#: cmdline/apt-get.cc:2110 +#: cmdline/apt-get.cc:2112 msgid "Recommended packages:" msgstr "" -#: cmdline/apt-get.cc:2152 +#: cmdline/apt-get.cc:2154 #, c-format msgid "Couldn't find package %s" msgstr "" -#: cmdline/apt-get.cc:2159 cmdline/apt-mark.cc:70 +#: cmdline/apt-get.cc:2161 cmdline/apt-mark.cc:70 #, c-format msgid "%s set to automatically installed.\n" msgstr "" -#: cmdline/apt-get.cc:2167 cmdline/apt-mark.cc:114 +#: cmdline/apt-get.cc:2169 cmdline/apt-mark.cc:114 msgid "" "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " "instead." msgstr "" -#: cmdline/apt-get.cc:2183 +#: cmdline/apt-get.cc:2185 msgid "Calculating upgrade... " msgstr "" -#: cmdline/apt-get.cc:2186 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 msgid "Failed" msgstr "" -#: cmdline/apt-get.cc:2191 +#: cmdline/apt-get.cc:2193 msgid "Done" msgstr "" -#: cmdline/apt-get.cc:2258 cmdline/apt-get.cc:2266 +#: cmdline/apt-get.cc:2260 cmdline/apt-get.cc:2268 msgid "Internal error, problem resolver broke stuff" msgstr "" -#: cmdline/apt-get.cc:2294 cmdline/apt-get.cc:2330 +#: cmdline/apt-get.cc:2296 cmdline/apt-get.cc:2332 msgid "Unable to lock the download directory" msgstr "" -#: cmdline/apt-get.cc:2386 +#: cmdline/apt-get.cc:2388 #, c-format msgid "Can't find a source to download version '%s' of '%s'" msgstr "" -#: cmdline/apt-get.cc:2391 +#: cmdline/apt-get.cc:2393 #, c-format msgid "Downloading %s %s" msgstr "" -#: cmdline/apt-get.cc:2451 +#: cmdline/apt-get.cc:2453 msgid "Must specify at least one package to fetch source for" msgstr "" -#: cmdline/apt-get.cc:2491 cmdline/apt-get.cc:2803 +#: cmdline/apt-get.cc:2493 cmdline/apt-get.cc:2805 #, c-format msgid "Unable to find a source package for %s" msgstr "" -#: cmdline/apt-get.cc:2508 +#: cmdline/apt-get.cc:2510 #, c-format msgid "" "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" "%s\n" msgstr "" -#: cmdline/apt-get.cc:2513 +#: cmdline/apt-get.cc:2515 #, c-format msgid "" "Please use:\n" @@ -791,141 +793,141 @@ msgid "" "to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -#: cmdline/apt-get.cc:2566 +#: cmdline/apt-get.cc:2568 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "" -#: cmdline/apt-get.cc:2603 +#: cmdline/apt-get.cc:2605 #, c-format msgid "You don't have enough free space in %s" msgstr "" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:2612 +#: cmdline/apt-get.cc:2614 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:2617 +#: cmdline/apt-get.cc:2619 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "" -#: cmdline/apt-get.cc:2623 +#: cmdline/apt-get.cc:2625 #, c-format msgid "Fetch source %s\n" msgstr "" -#: cmdline/apt-get.cc:2661 +#: cmdline/apt-get.cc:2663 msgid "Failed to fetch some archives." msgstr "" -#: cmdline/apt-get.cc:2692 +#: cmdline/apt-get.cc:2694 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "" -#: cmdline/apt-get.cc:2704 +#: cmdline/apt-get.cc:2706 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "" -#: cmdline/apt-get.cc:2705 +#: cmdline/apt-get.cc:2707 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "" -#: cmdline/apt-get.cc:2727 +#: cmdline/apt-get.cc:2729 #, c-format msgid "Build command '%s' failed.\n" msgstr "" -#: cmdline/apt-get.cc:2747 +#: cmdline/apt-get.cc:2749 msgid "Child process failed" msgstr "" -#: cmdline/apt-get.cc:2766 +#: cmdline/apt-get.cc:2768 msgid "Must specify at least one package to check builddeps for" msgstr "" -#: cmdline/apt-get.cc:2791 +#: cmdline/apt-get.cc:2793 #, c-format msgid "" "No architecture information available for %s. See apt.conf(5) APT::" "Architectures for setup" msgstr "" -#: cmdline/apt-get.cc:2815 cmdline/apt-get.cc:2818 +#: cmdline/apt-get.cc:2817 cmdline/apt-get.cc:2820 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "" -#: cmdline/apt-get.cc:2838 +#: cmdline/apt-get.cc:2840 #, c-format msgid "%s has no build depends.\n" msgstr "" -#: cmdline/apt-get.cc:3008 +#: cmdline/apt-get.cc:3010 #, c-format msgid "" "%s dependency for %s can't be satisfied because %s is not allowed on '%s' " "packages" msgstr "" -#: cmdline/apt-get.cc:3026 +#: cmdline/apt-get.cc:3028 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " "found" msgstr "" -#: cmdline/apt-get.cc:3049 +#: cmdline/apt-get.cc:3051 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" -#: cmdline/apt-get.cc:3088 +#: cmdline/apt-get.cc:3090 #, c-format msgid "" "%s dependency for %s cannot be satisfied because candidate version of " "package %s can't satisfy version requirements" msgstr "" -#: cmdline/apt-get.cc:3094 +#: cmdline/apt-get.cc:3096 #, c-format msgid "" "%s dependency for %s cannot be satisfied because package %s has no candidate " "version" msgstr "" -#: cmdline/apt-get.cc:3117 +#: cmdline/apt-get.cc:3119 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "" -#: cmdline/apt-get.cc:3133 +#: cmdline/apt-get.cc:3135 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "" -#: cmdline/apt-get.cc:3138 +#: cmdline/apt-get.cc:3140 msgid "Failed to process build dependencies" msgstr "" -#: cmdline/apt-get.cc:3231 cmdline/apt-get.cc:3243 +#: cmdline/apt-get.cc:3233 cmdline/apt-get.cc:3245 #, c-format msgid "Changelog for %s (%s)" msgstr "" -#: cmdline/apt-get.cc:3366 +#: cmdline/apt-get.cc:3368 msgid "Supported modules:" msgstr "" -#: cmdline/apt-get.cc:3407 +#: cmdline/apt-get.cc:3409 msgid "" "Usage: apt-get [options] command\n" " apt-get [options] install|remove pkg1 [pkg2 ...]\n" @@ -971,7 +973,7 @@ msgid "" " This APT has Super Cow Powers.\n" msgstr "" -#: cmdline/apt-get.cc:3572 +#: cmdline/apt-get.cc:3574 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1538,7 +1540,7 @@ msgid "" " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" msgstr "" -#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1335 +#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1339 #, c-format msgid "Unable to write to %s" msgstr "" @@ -2506,19 +2508,19 @@ msgstr "" msgid "Type '%s' is not known on line %u in source list %s" msgstr "" -#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:896 +#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:898 #, c-format msgid "" "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " "under APT::Immediate-Configure for details. (%d)" msgstr "" -#: apt-pkg/packagemanager.cc:473 apt-pkg/packagemanager.cc:503 +#: apt-pkg/packagemanager.cc:473 apt-pkg/packagemanager.cc:504 #, c-format msgid "Could not configure '%s'. " msgstr "" -#: apt-pkg/packagemanager.cc:545 +#: apt-pkg/packagemanager.cc:546 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2547,7 +2549,7 @@ msgstr "" msgid "Unable to correct problems, you have held broken packages." msgstr "" -#: apt-pkg/algorithms.cc:1574 apt-pkg/algorithms.cc:1576 +#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 msgid "" "Some index files failed to download. They have been ignored, or old ones " "used instead." @@ -2686,21 +2688,21 @@ msgstr "" msgid "Package %s %s was not found while processing file dependencies" msgstr "" -#: apt-pkg/pkgcachegen.cc:1146 +#: apt-pkg/pkgcachegen.cc:1150 #, c-format msgid "Couldn't stat source package list %s" msgstr "" -#: apt-pkg/pkgcachegen.cc:1234 apt-pkg/pkgcachegen.cc:1338 -#: apt-pkg/pkgcachegen.cc:1344 apt-pkg/pkgcachegen.cc:1501 +#: apt-pkg/pkgcachegen.cc:1238 apt-pkg/pkgcachegen.cc:1342 +#: apt-pkg/pkgcachegen.cc:1348 apt-pkg/pkgcachegen.cc:1505 msgid "Reading package lists" msgstr "" -#: apt-pkg/pkgcachegen.cc:1251 +#: apt-pkg/pkgcachegen.cc:1255 msgid "Collecting File Provides" msgstr "" -#: apt-pkg/pkgcachegen.cc:1443 apt-pkg/pkgcachegen.cc:1450 +#: apt-pkg/pkgcachegen.cc:1447 apt-pkg/pkgcachegen.cc:1454 msgid "IO Error saving source cache" msgstr "" diff --git a/po/ar.po b/po/ar.po index 30bdc404a..010860af2 100644 --- a/po/ar.po +++ b/po/ar.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: apt_po\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2012-10-15 09:49+0200\n" +"POT-Creation-Date: 2013-03-14 08:05+0100\n" "PO-Revision-Date: 2006-10-20 21:28+0300\n" "Last-Translator: Ossama M. Khayat \n" "Language-Team: Arabic \n" @@ -159,7 +159,7 @@ msgid " Version table:" msgstr " جدول النسخ:" #: cmdline/apt-cache.cc:1683 cmdline/apt-cdrom.cc:198 cmdline/apt-config.cc:81 -#: cmdline/apt-get.cc:3361 cmdline/apt-mark.cc:375 +#: cmdline/apt-get.cc:3363 cmdline/apt-mark.cc:375 #: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:590 #: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147 #, fuzzy, c-format @@ -435,7 +435,7 @@ msgstr "إعادة تثبيت %s غير ممكنة، حيث أنّه لا يم msgid "%s is already the newest version.\n" msgstr "%s هي النسخة الأحدث.\n" -#: cmdline/apt-get.cc:858 cmdline/apt-get.cc:2157 cmdline/apt-mark.cc:68 +#: cmdline/apt-get.cc:858 cmdline/apt-get.cc:2159 cmdline/apt-mark.cc:68 #, fuzzy, c-format msgid "%s set to manually installed.\n" msgstr "إلا أنه سيتم تثبيت %s" @@ -542,8 +542,8 @@ msgstr "بعد الاستخراج %sب من المساحة الإضافيّة س msgid "After this operation, %sB disk space will be freed.\n" msgstr "بعد الاستخراج %sب من المساحة ستفرّغ.\n" -#: cmdline/apt-get.cc:1228 cmdline/apt-get.cc:1231 cmdline/apt-get.cc:2589 -#: cmdline/apt-get.cc:2592 +#: cmdline/apt-get.cc:1228 cmdline/apt-get.cc:1231 cmdline/apt-get.cc:2591 +#: cmdline/apt-get.cc:2594 #, c-format msgid "Couldn't determine free space in %s" msgstr "تعذر حساب المساحة الحرة في %s" @@ -553,15 +553,17 @@ msgstr "تعذر حساب المساحة الحرة في %s" msgid "You don't have enough free space in %s." msgstr "ليس هناك مساحة كافية في %s." -#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1277 +#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1279 msgid "Trivial Only specified but this is not a trivial operation." msgstr "" -#: cmdline/apt-get.cc:1259 +#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be +#. careful with hard to type or special characters (like non-breaking spaces) +#: cmdline/apt-get.cc:1261 msgid "Yes, do as I say!" msgstr "نعم، افعل ما أقوله!" -#: cmdline/apt-get.cc:1261 +#: cmdline/apt-get.cc:1263 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -572,28 +574,28 @@ msgstr "" "كي تستمر اكتب العبارة '%s'\n" " ؟] " -#: cmdline/apt-get.cc:1267 cmdline/apt-get.cc:1286 +#: cmdline/apt-get.cc:1269 cmdline/apt-get.cc:1288 msgid "Abort." msgstr "إجهاض." -#: cmdline/apt-get.cc:1282 +#: cmdline/apt-get.cc:1284 msgid "Do you want to continue [Y/n]? " msgstr "هل تريد الاستمرار [Y/n]؟" -#: cmdline/apt-get.cc:1354 cmdline/apt-get.cc:2654 apt-pkg/algorithms.cc:1548 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 #, c-format msgid "Failed to fetch %s %s\n" msgstr "فشل إحضار %s %s\n" -#: cmdline/apt-get.cc:1372 +#: cmdline/apt-get.cc:1374 msgid "Some files failed to download" msgstr "فشل تنزيل بعض الملفات" -#: cmdline/apt-get.cc:1373 cmdline/apt-get.cc:2666 +#: cmdline/apt-get.cc:1375 cmdline/apt-get.cc:2668 msgid "Download complete and in download only mode" msgstr "اكتمل التنزيل وفي وضع التنزيل فقط" -#: cmdline/apt-get.cc:1379 +#: cmdline/apt-get.cc:1381 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -601,19 +603,19 @@ msgstr "" "تعذر إحضار بعض الأرشيف، ربما يمكنك محاولة تنفيذ apt-get update أو إضافة --" "fix-missing؟" -#: cmdline/apt-get.cc:1383 +#: cmdline/apt-get.cc:1385 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix-missing وتبديل الأوساط غير مدعومة حالياً" -#: cmdline/apt-get.cc:1388 +#: cmdline/apt-get.cc:1390 msgid "Unable to correct missing packages." msgstr "تعذر تصحيح الحزم المفقودة." -#: cmdline/apt-get.cc:1389 +#: cmdline/apt-get.cc:1391 msgid "Aborting install." msgstr "إجهاض التثبيت." -#: cmdline/apt-get.cc:1417 +#: cmdline/apt-get.cc:1419 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -623,35 +625,35 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: cmdline/apt-get.cc:1421 +#: cmdline/apt-get.cc:1423 msgid "Note: This is done automatically and on purpose by dpkg." msgstr "" -#: cmdline/apt-get.cc:1559 +#: cmdline/apt-get.cc:1561 #, c-format msgid "Ignore unavailable target release '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:1591 +#: cmdline/apt-get.cc:1593 #, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "" #. if (VerTag.empty() == false && Last == 0) -#: cmdline/apt-get.cc:1629 +#: cmdline/apt-get.cc:1631 #, c-format msgid "Ignore unavailable version '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:1645 +#: cmdline/apt-get.cc:1647 msgid "The update command takes no arguments" msgstr "لا يقبل الأمر update أية مُعطيات" -#: cmdline/apt-get.cc:1711 +#: cmdline/apt-get.cc:1713 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -#: cmdline/apt-get.cc:1815 +#: cmdline/apt-get.cc:1817 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -667,16 +669,16 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1818 cmdline/apt-get.cc:1987 +#: cmdline/apt-get.cc:1820 cmdline/apt-get.cc:1989 msgid "The following information may help to resolve the situation:" msgstr "قد تساعد المعلومات التالية في حل المشكلة:" -#: cmdline/apt-get.cc:1822 +#: cmdline/apt-get.cc:1824 #, fuzzy msgid "Internal Error, AutoRemover broke stuff" msgstr "خطأ داخلي، عطب AllUpgrade بعض الأشياء" -#: cmdline/apt-get.cc:1829 +#: cmdline/apt-get.cc:1831 #, fuzzy msgid "" "The following package was automatically installed and is no longer required:" @@ -686,7 +688,7 @@ msgid_plural "" msgstr[0] "سيتم تثبيت الحزم الجديدة التالية:" msgstr[1] "سيتم تثبيت الحزم الجديدة التالية:" -#: cmdline/apt-get.cc:1833 +#: cmdline/apt-get.cc:1835 #, fuzzy, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -694,28 +696,28 @@ msgid_plural "" msgstr[0] "سيتم تثبيت الحزم الجديدة التالية:" msgstr[1] "سيتم تثبيت الحزم الجديدة التالية:" -#: cmdline/apt-get.cc:1835 +#: cmdline/apt-get.cc:1837 msgid "Use 'apt-get autoremove' to remove it." msgid_plural "Use 'apt-get autoremove' to remove them." msgstr[0] "" msgstr[1] "" -#: cmdline/apt-get.cc:1854 +#: cmdline/apt-get.cc:1856 msgid "Internal error, AllUpgrade broke stuff" msgstr "خطأ داخلي، عطب AllUpgrade بعض الأشياء" -#: cmdline/apt-get.cc:1953 +#: cmdline/apt-get.cc:1955 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "قد ترغب بتشغيل 'apt-get -f install' لتصحيح هذه:" -#: cmdline/apt-get.cc:1957 +#: cmdline/apt-get.cc:1959 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." msgstr "" "مُعتمدات غير مستوفاة. جرب 'apt-get -f install' بدون أسماء حزم (أو حدّد حلاً)." -#: cmdline/apt-get.cc:1972 +#: cmdline/apt-get.cc:1974 msgid "" "Some packages could not be installed. This may mean that you have\n" "requested an impossible situation or if you are using the unstable\n" @@ -723,85 +725,85 @@ msgid "" "or been moved out of Incoming." msgstr "" -#: cmdline/apt-get.cc:1993 +#: cmdline/apt-get.cc:1995 msgid "Broken packages" msgstr "حزم معطوبة" -#: cmdline/apt-get.cc:2019 +#: cmdline/apt-get.cc:2021 msgid "The following extra packages will be installed:" msgstr "سيتم تثبيت الحزم الإضافيّة التالية:" -#: cmdline/apt-get.cc:2109 +#: cmdline/apt-get.cc:2111 msgid "Suggested packages:" msgstr "الحزم المقترحة:" -#: cmdline/apt-get.cc:2110 +#: cmdline/apt-get.cc:2112 msgid "Recommended packages:" msgstr "الحزم المستحسنة:" -#: cmdline/apt-get.cc:2152 +#: cmdline/apt-get.cc:2154 #, c-format msgid "Couldn't find package %s" msgstr "تعذر العثور على الحزمة %s" -#: cmdline/apt-get.cc:2159 cmdline/apt-mark.cc:70 +#: cmdline/apt-get.cc:2161 cmdline/apt-mark.cc:70 #, fuzzy, c-format msgid "%s set to automatically installed.\n" msgstr "إلا أنه سيتم تثبيت %s" -#: cmdline/apt-get.cc:2167 cmdline/apt-mark.cc:114 +#: cmdline/apt-get.cc:2169 cmdline/apt-mark.cc:114 msgid "" "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " "instead." msgstr "" -#: cmdline/apt-get.cc:2183 +#: cmdline/apt-get.cc:2185 msgid "Calculating upgrade... " msgstr "حساب الترقية..." -#: cmdline/apt-get.cc:2186 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 msgid "Failed" msgstr "فشل" -#: cmdline/apt-get.cc:2191 +#: cmdline/apt-get.cc:2193 msgid "Done" msgstr "تمّ" -#: cmdline/apt-get.cc:2258 cmdline/apt-get.cc:2266 +#: cmdline/apt-get.cc:2260 cmdline/apt-get.cc:2268 msgid "Internal error, problem resolver broke stuff" msgstr "" -#: cmdline/apt-get.cc:2294 cmdline/apt-get.cc:2330 +#: cmdline/apt-get.cc:2296 cmdline/apt-get.cc:2332 msgid "Unable to lock the download directory" msgstr "تعذر قَفْل دليل التنزيل" -#: cmdline/apt-get.cc:2386 +#: cmdline/apt-get.cc:2388 #, c-format msgid "Can't find a source to download version '%s' of '%s'" msgstr "" -#: cmdline/apt-get.cc:2391 +#: cmdline/apt-get.cc:2393 #, c-format msgid "Downloading %s %s" msgstr "" -#: cmdline/apt-get.cc:2451 +#: cmdline/apt-get.cc:2453 msgid "Must specify at least one package to fetch source for" msgstr "يجب تحديد حزمة واحدة على الأقل لجلب مصدرها" -#: cmdline/apt-get.cc:2491 cmdline/apt-get.cc:2803 +#: cmdline/apt-get.cc:2493 cmdline/apt-get.cc:2805 #, c-format msgid "Unable to find a source package for %s" msgstr "تعذر العثور على مصدر الحزمة %s" -#: cmdline/apt-get.cc:2508 +#: cmdline/apt-get.cc:2510 #, c-format msgid "" "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" "%s\n" msgstr "" -#: cmdline/apt-get.cc:2513 +#: cmdline/apt-get.cc:2515 #, c-format msgid "" "Please use:\n" @@ -809,141 +811,141 @@ msgid "" "to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -#: cmdline/apt-get.cc:2566 +#: cmdline/apt-get.cc:2568 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "تخطي الملف '%s' المنزل مسبقاً\n" -#: cmdline/apt-get.cc:2603 +#: cmdline/apt-get.cc:2605 #, c-format msgid "You don't have enough free space in %s" msgstr "ليس هناك مساحة كافية في %s" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:2612 +#: cmdline/apt-get.cc:2614 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "يجب جلب %sب/%sب من الأرشيفات المصدرية.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:2617 +#: cmdline/apt-get.cc:2619 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "يجب جلب %sب من الأرشيفات المصدريّة.\n" -#: cmdline/apt-get.cc:2623 +#: cmdline/apt-get.cc:2625 #, c-format msgid "Fetch source %s\n" msgstr "إحضار المصدر %s\n" -#: cmdline/apt-get.cc:2661 +#: cmdline/apt-get.cc:2663 msgid "Failed to fetch some archives." msgstr "فشل إحضار بعض الأرشيفات." -#: cmdline/apt-get.cc:2692 +#: cmdline/apt-get.cc:2694 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "" -#: cmdline/apt-get.cc:2704 +#: cmdline/apt-get.cc:2706 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "أمر فك الحزمة '%s' فشل.\n" -#: cmdline/apt-get.cc:2705 +#: cmdline/apt-get.cc:2707 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "" -#: cmdline/apt-get.cc:2727 +#: cmdline/apt-get.cc:2729 #, c-format msgid "Build command '%s' failed.\n" msgstr "أمر البناء '%s' فشل.\n" -#: cmdline/apt-get.cc:2747 +#: cmdline/apt-get.cc:2749 msgid "Child process failed" msgstr "" -#: cmdline/apt-get.cc:2766 +#: cmdline/apt-get.cc:2768 msgid "Must specify at least one package to check builddeps for" msgstr "" -#: cmdline/apt-get.cc:2791 +#: cmdline/apt-get.cc:2793 #, c-format msgid "" "No architecture information available for %s. See apt.conf(5) APT::" "Architectures for setup" msgstr "" -#: cmdline/apt-get.cc:2815 cmdline/apt-get.cc:2818 +#: cmdline/apt-get.cc:2817 cmdline/apt-get.cc:2820 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "" -#: cmdline/apt-get.cc:2838 +#: cmdline/apt-get.cc:2840 #, c-format msgid "%s has no build depends.\n" msgstr "" -#: cmdline/apt-get.cc:3008 +#: cmdline/apt-get.cc:3010 #, c-format msgid "" "%s dependency for %s can't be satisfied because %s is not allowed on '%s' " "packages" msgstr "" -#: cmdline/apt-get.cc:3026 +#: cmdline/apt-get.cc:3028 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " "found" msgstr "" -#: cmdline/apt-get.cc:3049 +#: cmdline/apt-get.cc:3051 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" -#: cmdline/apt-get.cc:3088 +#: cmdline/apt-get.cc:3090 #, c-format msgid "" "%s dependency for %s cannot be satisfied because candidate version of " "package %s can't satisfy version requirements" msgstr "" -#: cmdline/apt-get.cc:3094 +#: cmdline/apt-get.cc:3096 #, c-format msgid "" "%s dependency for %s cannot be satisfied because package %s has no candidate " "version" msgstr "" -#: cmdline/apt-get.cc:3117 +#: cmdline/apt-get.cc:3119 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "" -#: cmdline/apt-get.cc:3133 +#: cmdline/apt-get.cc:3135 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "" -#: cmdline/apt-get.cc:3138 +#: cmdline/apt-get.cc:3140 msgid "Failed to process build dependencies" msgstr "" -#: cmdline/apt-get.cc:3231 cmdline/apt-get.cc:3243 +#: cmdline/apt-get.cc:3233 cmdline/apt-get.cc:3245 #, fuzzy, c-format msgid "Changelog for %s (%s)" msgstr "الاتصال بـ%s (%s)" -#: cmdline/apt-get.cc:3366 +#: cmdline/apt-get.cc:3368 msgid "Supported modules:" msgstr "الوحدات المدعومة:" -#: cmdline/apt-get.cc:3407 +#: cmdline/apt-get.cc:3409 msgid "" "Usage: apt-get [options] command\n" " apt-get [options] install|remove pkg1 [pkg2 ...]\n" @@ -989,7 +991,7 @@ msgid "" " This APT has Super Cow Powers.\n" msgstr "" -#: cmdline/apt-get.cc:3572 +#: cmdline/apt-get.cc:3574 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1565,7 +1567,7 @@ msgid "" " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" msgstr "" -#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1335 +#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1339 #, c-format msgid "Unable to write to %s" msgstr "تعذرت الكتابة إلى %s" @@ -2537,19 +2539,19 @@ msgstr "" msgid "Type '%s' is not known on line %u in source list %s" msgstr "" -#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:896 +#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:898 #, c-format msgid "" "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " "under APT::Immediate-Configure for details. (%d)" msgstr "" -#: apt-pkg/packagemanager.cc:473 apt-pkg/packagemanager.cc:503 +#: apt-pkg/packagemanager.cc:473 apt-pkg/packagemanager.cc:504 #, fuzzy, c-format msgid "Could not configure '%s'. " msgstr "فشل إغلاق الملف %s" -#: apt-pkg/packagemanager.cc:545 +#: apt-pkg/packagemanager.cc:546 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2578,7 +2580,7 @@ msgstr "" msgid "Unable to correct problems, you have held broken packages." msgstr "" -#: apt-pkg/algorithms.cc:1574 apt-pkg/algorithms.cc:1576 +#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 msgid "" "Some index files failed to download. They have been ignored, or old ones " "used instead." @@ -2717,21 +2719,21 @@ msgstr "" msgid "Package %s %s was not found while processing file dependencies" msgstr "" -#: apt-pkg/pkgcachegen.cc:1146 +#: apt-pkg/pkgcachegen.cc:1150 #, c-format msgid "Couldn't stat source package list %s" msgstr "" -#: apt-pkg/pkgcachegen.cc:1234 apt-pkg/pkgcachegen.cc:1338 -#: apt-pkg/pkgcachegen.cc:1344 apt-pkg/pkgcachegen.cc:1501 +#: apt-pkg/pkgcachegen.cc:1238 apt-pkg/pkgcachegen.cc:1342 +#: apt-pkg/pkgcachegen.cc:1348 apt-pkg/pkgcachegen.cc:1505 msgid "Reading package lists" msgstr "قراءة قوائم الحزم" -#: apt-pkg/pkgcachegen.cc:1251 +#: apt-pkg/pkgcachegen.cc:1255 msgid "Collecting File Provides" msgstr "" -#: apt-pkg/pkgcachegen.cc:1443 apt-pkg/pkgcachegen.cc:1450 +#: apt-pkg/pkgcachegen.cc:1447 apt-pkg/pkgcachegen.cc:1454 msgid "IO Error saving source cache" msgstr "" diff --git a/po/ast.po b/po/ast.po index 45a03b2aa..df41c82cc 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 \n" -"POT-Creation-Date: 2012-10-15 09:49+0200\n" +"POT-Creation-Date: 2013-03-14 08:05+0100\n" "PO-Revision-Date: 2010-10-02 23:35+0100\n" "Last-Translator: Iñigo Varela \n" "Language-Team: Asturian (ast)\n" @@ -152,7 +152,7 @@ msgid " Version table:" msgstr " Tabla de versiones:" #: cmdline/apt-cache.cc:1683 cmdline/apt-cdrom.cc:198 cmdline/apt-config.cc:81 -#: cmdline/apt-get.cc:3361 cmdline/apt-mark.cc:375 +#: cmdline/apt-get.cc:3363 cmdline/apt-mark.cc:375 #: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:590 #: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147 #, c-format @@ -481,7 +481,7 @@ msgstr "La reinstalación de %s nun ye dable, nun pue descargase.\n" msgid "%s is already the newest version.\n" msgstr "%s yá ta na versión más nueva.\n" -#: cmdline/apt-get.cc:858 cmdline/apt-get.cc:2157 cmdline/apt-mark.cc:68 +#: cmdline/apt-get.cc:858 cmdline/apt-get.cc:2159 cmdline/apt-mark.cc:68 #, c-format msgid "%s set to manually installed.\n" msgstr "%s axustáu como instaláu manualmente.\n" @@ -588,8 +588,8 @@ msgstr "Tres d'esta operación, van usase %sB d'espaciu de discu adicional.\n" msgid "After this operation, %sB disk space will be freed.\n" msgstr "Tres d'esta operación, van lliberase %sB d'espaciu de discu.\n" -#: cmdline/apt-get.cc:1228 cmdline/apt-get.cc:1231 cmdline/apt-get.cc:2589 -#: cmdline/apt-get.cc:2592 +#: cmdline/apt-get.cc:1228 cmdline/apt-get.cc:1231 cmdline/apt-get.cc:2591 +#: cmdline/apt-get.cc:2594 #, c-format msgid "Couldn't determine free space in %s" msgstr "Nun pue determinase l'espaciu llibre de %s" @@ -599,15 +599,17 @@ msgstr "Nun pue determinase l'espaciu llibre de %s" msgid "You don't have enough free space in %s." msgstr "Nun tienes espaciu libre bastante en %s." -#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1277 +#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1279 msgid "Trivial Only specified but this is not a trivial operation." msgstr "Conseñose Trivial Only pero ésta nun ye una operación trivial." -#: cmdline/apt-get.cc:1259 +#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be +#. careful with hard to type or special characters (like non-breaking spaces) +#: cmdline/apt-get.cc:1261 msgid "Yes, do as I say!" msgstr "Sí, ¡facer lo que digo!" -#: cmdline/apt-get.cc:1261 +#: cmdline/apt-get.cc:1263 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -618,28 +620,28 @@ msgstr "" "Pa continuar escribe la frase '%s'\n" " ?] " -#: cmdline/apt-get.cc:1267 cmdline/apt-get.cc:1286 +#: cmdline/apt-get.cc:1269 cmdline/apt-get.cc:1288 msgid "Abort." msgstr "Encaboxar." -#: cmdline/apt-get.cc:1282 +#: cmdline/apt-get.cc:1284 msgid "Do you want to continue [Y/n]? " msgstr "¿Quies continuar [S/n]? " -#: cmdline/apt-get.cc:1354 cmdline/apt-get.cc:2654 apt-pkg/algorithms.cc:1548 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Falló algamar %s %s\n" -#: cmdline/apt-get.cc:1372 +#: cmdline/apt-get.cc:1374 msgid "Some files failed to download" msgstr "Dellos ficheros nun pudieron descargase" -#: cmdline/apt-get.cc:1373 cmdline/apt-get.cc:2666 +#: cmdline/apt-get.cc:1375 cmdline/apt-get.cc:2668 msgid "Download complete and in download only mode" msgstr "Descarga completa y en mou de sólo descarga" -#: cmdline/apt-get.cc:1379 +#: cmdline/apt-get.cc:1381 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -647,19 +649,19 @@ msgstr "" "Nun pudieron algamase dellos archivos, ¿seique executando apt-get update o " "tentando --fix-missing?" -#: cmdline/apt-get.cc:1383 +#: cmdline/apt-get.cc:1385 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix-missing y cambéu de mediu nun ta sofitao actualmente" -#: cmdline/apt-get.cc:1388 +#: cmdline/apt-get.cc:1390 msgid "Unable to correct missing packages." msgstr "Nun pudieron iguase los paquetes que falten." -#: cmdline/apt-get.cc:1389 +#: cmdline/apt-get.cc:1391 msgid "Aborting install." msgstr "Encaboxando la instalación." -#: cmdline/apt-get.cc:1417 +#: cmdline/apt-get.cc:1419 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -673,35 +675,35 @@ msgstr[1] "" "Los siguientes paquetes desaparecieron del sistema como\n" "tolos ficheros fueron sobroescritos por otros paquetes:" -#: cmdline/apt-get.cc:1421 +#: cmdline/apt-get.cc:1423 msgid "Note: This is done automatically and on purpose by dpkg." msgstr "Nota: Esto faise automáticamente y baxo demanda por dpkg." -#: cmdline/apt-get.cc:1559 +#: cmdline/apt-get.cc:1561 #, c-format msgid "Ignore unavailable target release '%s' of package '%s'" msgstr "Inorar release destín non disponible '%s' pal paquete '%s'" -#: cmdline/apt-get.cc:1591 +#: cmdline/apt-get.cc:1593 #, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "Tomando '%s' como paquetes d'oríxenes en llugar de '%s'\n" #. if (VerTag.empty() == false && Last == 0) -#: cmdline/apt-get.cc:1629 +#: cmdline/apt-get.cc:1631 #, c-format msgid "Ignore unavailable version '%s' of package '%s'" msgstr "Inorar versión non disponible de '%s' del paquete '%s'" -#: cmdline/apt-get.cc:1645 +#: cmdline/apt-get.cc:1647 msgid "The update command takes no arguments" msgstr "La orde update nun lleva argumentos" -#: cmdline/apt-get.cc:1711 +#: cmdline/apt-get.cc:1713 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "Suponse que nun vamos esborrar coses; nun pue entamase AutoRemover" -#: cmdline/apt-get.cc:1815 +#: cmdline/apt-get.cc:1817 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -719,15 +721,15 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1818 cmdline/apt-get.cc:1987 +#: cmdline/apt-get.cc:1820 cmdline/apt-get.cc:1989 msgid "The following information may help to resolve the situation:" msgstr "La siguiente información pue aidar a resolver la situación:" -#: cmdline/apt-get.cc:1822 +#: cmdline/apt-get.cc:1824 msgid "Internal Error, AutoRemover broke stuff" msgstr "Error internu, AutoRemover rompió coses" -#: cmdline/apt-get.cc:1829 +#: cmdline/apt-get.cc:1831 msgid "" "The following package was automatically installed and is no longer required:" msgid_plural "" @@ -738,7 +740,7 @@ msgstr[1] "" "Los siguientes paquetes instaláronse de manera automática y ya nun se " "necesiten:" -#: cmdline/apt-get.cc:1833 +#: cmdline/apt-get.cc:1835 #, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -747,22 +749,22 @@ msgstr[0] "El paquete %lu instalóse de mou automáticu y yá nun se necesita.\n msgstr[1] "" "Los paquetes %lu instaláronse de manera automática y ya nun se necesiten\n" -#: cmdline/apt-get.cc:1835 +#: cmdline/apt-get.cc:1837 #, fuzzy msgid "Use 'apt-get autoremove' to remove it." msgid_plural "Use 'apt-get autoremove' to remove them." msgstr[0] "Usa 'apt-get autoremove' pa desinstalalos." msgstr[1] "Usa 'apt-get autoremove' pa desinstalalos." -#: cmdline/apt-get.cc:1854 +#: cmdline/apt-get.cc:1856 msgid "Internal error, AllUpgrade broke stuff" msgstr "Error internu, AllUpgrade rompió coses" -#: cmdline/apt-get.cc:1953 +#: cmdline/apt-get.cc:1955 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "Habríes d'executar 'apt-get -f install' para iguar estos:" -#: cmdline/apt-get.cc:1957 +#: cmdline/apt-get.cc:1959 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -770,7 +772,7 @@ msgstr "" "Dependencies ensin cubrir. Tenta 'apt-get -f install' ensin paquetes (o " "conseña una solución)." -#: cmdline/apt-get.cc:1972 +#: cmdline/apt-get.cc:1974 msgid "" "Some packages could not be installed. This may mean that you have\n" "requested an impossible situation or if you are using the unstable\n" @@ -782,78 +784,78 @@ msgstr "" "inestable, que dellos paquetes necesarios nun se crearon o que\n" "s'allugaron fuera d'Incoming." -#: cmdline/apt-get.cc:1993 +#: cmdline/apt-get.cc:1995 msgid "Broken packages" msgstr "Paquetes frañaos" -#: cmdline/apt-get.cc:2019 +#: cmdline/apt-get.cc:2021 msgid "The following extra packages will be installed:" msgstr "Instalaránse los siguientes paquetes extra:" -#: cmdline/apt-get.cc:2109 +#: cmdline/apt-get.cc:2111 msgid "Suggested packages:" msgstr "Paquetes afalaos:" -#: cmdline/apt-get.cc:2110 +#: cmdline/apt-get.cc:2112 msgid "Recommended packages:" msgstr "Paquetes encamentaos" -#: cmdline/apt-get.cc:2152 +#: cmdline/apt-get.cc:2154 #, c-format msgid "Couldn't find package %s" msgstr "Nun pudo alcontrase'l paquete %s" -#: cmdline/apt-get.cc:2159 cmdline/apt-mark.cc:70 +#: cmdline/apt-get.cc:2161 cmdline/apt-mark.cc:70 #, c-format msgid "%s set to automatically installed.\n" msgstr "%s axustáu como instaláu automáticamente.\n" -#: cmdline/apt-get.cc:2167 cmdline/apt-mark.cc:114 +#: cmdline/apt-get.cc:2169 cmdline/apt-mark.cc:114 msgid "" "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " "instead." msgstr "" -#: cmdline/apt-get.cc:2183 +#: cmdline/apt-get.cc:2185 msgid "Calculating upgrade... " msgstr "Calculando l'anovamientu... " -#: cmdline/apt-get.cc:2186 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 msgid "Failed" msgstr "Falló" -#: cmdline/apt-get.cc:2191 +#: cmdline/apt-get.cc:2193 msgid "Done" msgstr "Fecho" -#: cmdline/apt-get.cc:2258 cmdline/apt-get.cc:2266 +#: cmdline/apt-get.cc:2260 cmdline/apt-get.cc:2268 msgid "Internal error, problem resolver broke stuff" msgstr "Error internu, l'iguador de problemes frañó coses" -#: cmdline/apt-get.cc:2294 cmdline/apt-get.cc:2330 +#: cmdline/apt-get.cc:2296 cmdline/apt-get.cc:2332 msgid "Unable to lock the download directory" msgstr "Nun pue bloquiase'l direutoriu de descarga" -#: cmdline/apt-get.cc:2386 +#: cmdline/apt-get.cc:2388 #, c-format msgid "Can't find a source to download version '%s' of '%s'" msgstr "" -#: cmdline/apt-get.cc:2391 +#: cmdline/apt-get.cc:2393 #, c-format msgid "Downloading %s %s" msgstr "" -#: cmdline/apt-get.cc:2451 +#: cmdline/apt-get.cc:2453 msgid "Must specify at least one package to fetch source for" msgstr "Has de conseñar polo menos un paquete p'algamar so fonte" -#: cmdline/apt-get.cc:2491 cmdline/apt-get.cc:2803 +#: cmdline/apt-get.cc:2493 cmdline/apt-get.cc:2805 #, c-format msgid "Unable to find a source package for %s" msgstr "Nun pudo alcontrase un paquete fonte pa %s" -#: cmdline/apt-get.cc:2508 +#: cmdline/apt-get.cc:2510 #, c-format msgid "" "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" @@ -862,7 +864,7 @@ msgstr "" "AVISU: '%s' packaging is maintained in the '%s' version control system at:\n" "%s\n" -#: cmdline/apt-get.cc:2513 +#: cmdline/apt-get.cc:2515 #, fuzzy, c-format msgid "" "Please use:\n" @@ -874,87 +876,87 @@ msgstr "" "pa baxar los caberos anovamientos (posiblemente tovía nun sacaos) pal " "paquete.\n" -#: cmdline/apt-get.cc:2566 +#: cmdline/apt-get.cc:2568 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Saltando'l ficheru yá descargáu '%s'\n" -#: cmdline/apt-get.cc:2603 +#: cmdline/apt-get.cc:2605 #, c-format msgid "You don't have enough free space in %s" msgstr "Nun hai espaciu llibre bastante en %s" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:2612 +#: cmdline/apt-get.cc:2614 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "Hai falta descargar %sB/%sB d'archivos fonte.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:2617 +#: cmdline/apt-get.cc:2619 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Hai falta descargar %sB d'archivos fonte.\n" -#: cmdline/apt-get.cc:2623 +#: cmdline/apt-get.cc:2625 #, c-format msgid "Fetch source %s\n" msgstr "Fonte descargada %s\n" -#: cmdline/apt-get.cc:2661 +#: cmdline/apt-get.cc:2663 msgid "Failed to fetch some archives." msgstr "Falló la descarga de dellos archivos." -#: cmdline/apt-get.cc:2692 +#: cmdline/apt-get.cc:2694 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "Saltando'l desempaquetáu de la fonte yá desempaquetada en %s\n" -#: cmdline/apt-get.cc:2704 +#: cmdline/apt-get.cc:2706 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Falló la orde de desempaquetáu '%s'.\n" -#: cmdline/apt-get.cc:2705 +#: cmdline/apt-get.cc:2707 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "Comprueba qu'el paquete 'dpkg-dev' ta instaláu.\n" -#: cmdline/apt-get.cc:2727 +#: cmdline/apt-get.cc:2729 #, c-format msgid "Build command '%s' failed.\n" msgstr "Falló la orde build '%s'.\n" -#: cmdline/apt-get.cc:2747 +#: cmdline/apt-get.cc:2749 msgid "Child process failed" msgstr "Falló el procesu fíu" -#: cmdline/apt-get.cc:2766 +#: cmdline/apt-get.cc:2768 msgid "Must specify at least one package to check builddeps for" msgstr "" "Hai que conseñar polo menos un paquete pa verificar les dependencies de " "construcción" -#: cmdline/apt-get.cc:2791 +#: cmdline/apt-get.cc:2793 #, c-format msgid "" "No architecture information available for %s. See apt.conf(5) APT::" "Architectures for setup" msgstr "" -#: cmdline/apt-get.cc:2815 cmdline/apt-get.cc:2818 +#: cmdline/apt-get.cc:2817 cmdline/apt-get.cc:2820 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "Nun pudo algamase información de dependencies de construcción pa %s" -#: cmdline/apt-get.cc:2838 +#: cmdline/apt-get.cc:2840 #, c-format msgid "%s has no build depends.\n" msgstr "%s nun tien dependencies de construcción.\n" -#: cmdline/apt-get.cc:3008 +#: cmdline/apt-get.cc:3010 #, fuzzy, c-format msgid "" "%s dependency for %s can't be satisfied because %s is not allowed on '%s' " @@ -963,7 +965,7 @@ msgstr "" "La dependencia %s en %s nun puede satisfacese porque nun se puede atopar el " "paquete %s" -#: cmdline/apt-get.cc:3026 +#: cmdline/apt-get.cc:3028 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -972,14 +974,14 @@ msgstr "" "La dependencia %s en %s nun puede satisfacese porque nun se puede atopar el " "paquete %s" -#: cmdline/apt-get.cc:3049 +#: cmdline/apt-get.cc:3051 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "Nun se pudo satisfacer la dependencia %s pa %s: El paquete instaláu %s ye " "enforma nuevu" -#: cmdline/apt-get.cc:3088 +#: cmdline/apt-get.cc:3090 #, fuzzy, c-format msgid "" "%s dependency for %s cannot be satisfied because candidate version of " @@ -988,7 +990,7 @@ msgstr "" "La dependencia %s en %s nun puede satisfacese porque denguna versión " "disponible del paquete %s satisfaz los requisitos de versión" -#: cmdline/apt-get.cc:3094 +#: cmdline/apt-get.cc:3096 #, fuzzy, c-format msgid "" "%s dependency for %s cannot be satisfied because package %s has no candidate " @@ -997,30 +999,30 @@ msgstr "" "La dependencia %s en %s nun puede satisfacese porque nun se puede atopar el " "paquete %s" -#: cmdline/apt-get.cc:3117 +#: cmdline/apt-get.cc:3119 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "Fallu pa satisfacer la dependencia %s pa %s: %s" -#: cmdline/apt-get.cc:3133 +#: cmdline/apt-get.cc:3135 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "Les dependencies de construcción de %s nun pudieron satisfacese." -#: cmdline/apt-get.cc:3138 +#: cmdline/apt-get.cc:3140 msgid "Failed to process build dependencies" msgstr "Fallu al procesar les dependencies de construcción" -#: cmdline/apt-get.cc:3231 cmdline/apt-get.cc:3243 +#: cmdline/apt-get.cc:3233 cmdline/apt-get.cc:3245 #, fuzzy, c-format msgid "Changelog for %s (%s)" msgstr "Coneutando a %s (%s)" -#: cmdline/apt-get.cc:3366 +#: cmdline/apt-get.cc:3368 msgid "Supported modules:" msgstr "Módulos sofitaos:" -#: cmdline/apt-get.cc:3407 +#: cmdline/apt-get.cc:3409 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1111,7 +1113,7 @@ msgstr "" "pa más información y opciones.\n" " Esti APT tien Poderes de Super Vaca.\n" -#: cmdline/apt-get.cc:3572 +#: cmdline/apt-get.cc:3574 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1713,7 +1715,7 @@ msgstr "" "-o=? Afita una opción de configuración arbitraria, p. ej. -o dir::cache=/" "tmp\n" -#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1335 +#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1339 #, c-format msgid "Unable to write to %s" msgstr "Nun se pue escribir en %s" @@ -2757,7 +2759,7 @@ msgstr "Llinia %u mal formada na llista d'oríxenes %s (triba)" msgid "Type '%s' is not known on line %u in source list %s" msgstr "Triba '%s' desconocida na llinia %u de la llista d'oríxenes %s" -#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:896 +#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:898 #, c-format msgid "" "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " @@ -2766,12 +2768,12 @@ msgstr "" "Nun pudó facese la configuración inmediatamente en '%s'. Por favor, mira man " "5 apt.conf embaxo APT::Immediate-Configure for details. (%d)" -#: apt-pkg/packagemanager.cc:473 apt-pkg/packagemanager.cc:503 +#: apt-pkg/packagemanager.cc:473 apt-pkg/packagemanager.cc:504 #, fuzzy, c-format msgid "Could not configure '%s'. " msgstr "Nun pudo abrise'l ficheru '%s'" -#: apt-pkg/packagemanager.cc:545 +#: apt-pkg/packagemanager.cc:546 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2806,7 +2808,7 @@ msgstr "" msgid "Unable to correct problems, you have held broken packages." msgstr "Nun pueden iguase los problemes; tienes paquetes frañaos reteníos." -#: apt-pkg/algorithms.cc:1574 apt-pkg/algorithms.cc:1576 +#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 #, fuzzy msgid "" "Some index files failed to download. They have been ignored, or old ones " @@ -2951,21 +2953,21 @@ msgstr "Vaya, perpasaste'l númberu de dependencies coles que puede esti APT." msgid "Package %s %s was not found while processing file dependencies" msgstr "Al procesar dependencies de ficheros nun s'alcontró el paquete %s %s" -#: apt-pkg/pkgcachegen.cc:1146 +#: apt-pkg/pkgcachegen.cc:1150 #, c-format msgid "Couldn't stat source package list %s" msgstr "Nun se puede lleer la llista de paquetes d'oríxenes %s" -#: apt-pkg/pkgcachegen.cc:1234 apt-pkg/pkgcachegen.cc:1338 -#: apt-pkg/pkgcachegen.cc:1344 apt-pkg/pkgcachegen.cc:1501 +#: apt-pkg/pkgcachegen.cc:1238 apt-pkg/pkgcachegen.cc:1342 +#: apt-pkg/pkgcachegen.cc:1348 apt-pkg/pkgcachegen.cc:1505 msgid "Reading package lists" msgstr "Lleendo llista de paquetes" -#: apt-pkg/pkgcachegen.cc:1251 +#: apt-pkg/pkgcachegen.cc:1255 msgid "Collecting File Provides" msgstr "Recoyendo ficheros qu'apurren" -#: apt-pkg/pkgcachegen.cc:1443 apt-pkg/pkgcachegen.cc:1450 +#: apt-pkg/pkgcachegen.cc:1447 apt-pkg/pkgcachegen.cc:1454 msgid "IO Error saving source cache" msgstr "Fallu de E/S al grabar caché d'oríxenes" diff --git a/po/bg.po b/po/bg.po index 04583f19b..dfcebd630 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 \n" -"POT-Creation-Date: 2012-10-15 09:49+0200\n" +"POT-Creation-Date: 2013-03-14 08:05+0100\n" "PO-Revision-Date: 2012-06-25 17:23+0300\n" "Last-Translator: Damyan Ivanov \n" "Language-Team: Bulgarian \n" @@ -158,7 +158,7 @@ msgid " Version table:" msgstr " Таблица с версиите:" #: cmdline/apt-cache.cc:1683 cmdline/apt-cdrom.cc:198 cmdline/apt-config.cc:81 -#: cmdline/apt-get.cc:3361 cmdline/apt-mark.cc:375 +#: cmdline/apt-get.cc:3363 cmdline/apt-mark.cc:375 #: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:590 #: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147 #, c-format @@ -486,7 +486,7 @@ msgstr "Преинсталацията на %s не е възможна, не м msgid "%s is already the newest version.\n" msgstr "%s вече е най-новата версия.\n" -#: cmdline/apt-get.cc:858 cmdline/apt-get.cc:2157 cmdline/apt-mark.cc:68 +#: cmdline/apt-get.cc:858 cmdline/apt-get.cc:2159 cmdline/apt-mark.cc:68 #, c-format msgid "%s set to manually installed.\n" msgstr "%s е отбелязан като ръчно инсталиран.\n" @@ -598,8 +598,8 @@ msgstr "" msgid "After this operation, %sB disk space will be freed.\n" msgstr "След тази операция ще бъде освободено %sB дисково пространство.\n" -#: cmdline/apt-get.cc:1228 cmdline/apt-get.cc:1231 cmdline/apt-get.cc:2589 -#: cmdline/apt-get.cc:2592 +#: cmdline/apt-get.cc:1228 cmdline/apt-get.cc:1231 cmdline/apt-get.cc:2591 +#: cmdline/apt-get.cc:2594 #, c-format msgid "Couldn't determine free space in %s" msgstr "Неуспех при определянето на свободното пространство в %s" @@ -609,15 +609,17 @@ msgstr "Неуспех при определянето на свободното msgid "You don't have enough free space in %s." msgstr "Нямате достатъчно свободно пространство в %s." -#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1277 +#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1279 msgid "Trivial Only specified but this is not a trivial operation." msgstr "Указано е „Trivial Only“, но това не е тривиална операция." -#: cmdline/apt-get.cc:1259 +#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be +#. careful with hard to type or special characters (like non-breaking spaces) +#: cmdline/apt-get.cc:1261 msgid "Yes, do as I say!" msgstr "Да, прави каквото казвам!" -#: cmdline/apt-get.cc:1261 +#: cmdline/apt-get.cc:1263 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -628,28 +630,28 @@ msgstr "" "За да продължите, въведете фразата „%s“\n" " ?] " -#: cmdline/apt-get.cc:1267 cmdline/apt-get.cc:1286 +#: cmdline/apt-get.cc:1269 cmdline/apt-get.cc:1288 msgid "Abort." msgstr "Прекъсване." -#: cmdline/apt-get.cc:1282 +#: cmdline/apt-get.cc:1284 msgid "Do you want to continue [Y/n]? " msgstr "Искате ли да продължите [Y/n]? " -#: cmdline/apt-get.cc:1354 cmdline/apt-get.cc:2654 apt-pkg/algorithms.cc:1548 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Неуспех при изтеглянето на %s %s\n" -#: cmdline/apt-get.cc:1372 +#: cmdline/apt-get.cc:1374 msgid "Some files failed to download" msgstr "Някои файлове не можаха да бъдат изтеглени" -#: cmdline/apt-get.cc:1373 cmdline/apt-get.cc:2666 +#: cmdline/apt-get.cc:1375 cmdline/apt-get.cc:2668 msgid "Download complete and in download only mode" msgstr "Изтеглянето завърши в режим само на изтегляне" -#: cmdline/apt-get.cc:1379 +#: cmdline/apt-get.cc:1381 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -657,19 +659,19 @@ msgstr "" "Неуспех при изтеглянето на някои архиви, може да изпълните „apt-get update“ " "или да опитате с „--fix-missing“?" -#: cmdline/apt-get.cc:1383 +#: cmdline/apt-get.cc:1385 msgid "--fix-missing and media swapping is not currently supported" msgstr "„--fix-missing“ и превключване на носители не се поддържа все още" -#: cmdline/apt-get.cc:1388 +#: cmdline/apt-get.cc:1390 msgid "Unable to correct missing packages." msgstr "Неуспех при коригирането на липсващите пакети." -#: cmdline/apt-get.cc:1389 +#: cmdline/apt-get.cc:1391 msgid "Aborting install." msgstr "Прекъсване на инсталирането." -#: cmdline/apt-get.cc:1417 +#: cmdline/apt-get.cc:1419 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -683,35 +685,35 @@ msgstr[1] "" "Следните пакети са отстранени от системата поради препокриване на всичките " "им файлове от други пакети:" -#: cmdline/apt-get.cc:1421 +#: cmdline/apt-get.cc:1423 msgid "Note: This is done automatically and on purpose by dpkg." msgstr "Това се прави автоматично от dpkg." -#: cmdline/apt-get.cc:1559 +#: cmdline/apt-get.cc:1561 #, c-format msgid "Ignore unavailable target release '%s' of package '%s'" msgstr "Игнориране на несъществуващо издание „%s“ на пакета „%s“" -#: cmdline/apt-get.cc:1591 +#: cmdline/apt-get.cc:1593 #, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "Използване на пакет източник „%s“ вместо „%s“\n" #. if (VerTag.empty() == false && Last == 0) -#: cmdline/apt-get.cc:1629 +#: cmdline/apt-get.cc:1631 #, c-format msgid "Ignore unavailable version '%s' of package '%s'" msgstr "Игнориране на несъществуваща версия „%s“ на пакета „%s“" -#: cmdline/apt-get.cc:1645 +#: cmdline/apt-get.cc:1647 msgid "The update command takes no arguments" msgstr "Командата „update“ не възприема аргументи" -#: cmdline/apt-get.cc:1711 +#: cmdline/apt-get.cc:1713 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "Не би трябвало да се изтрива. AutoRemover няма да бъде стартиран" -#: cmdline/apt-get.cc:1815 +#: cmdline/apt-get.cc:1817 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -729,16 +731,16 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1818 cmdline/apt-get.cc:1987 +#: cmdline/apt-get.cc:1820 cmdline/apt-get.cc:1989 msgid "The following information may help to resolve the situation:" msgstr "" "Следната информация може да помогне за намиране на изход от ситуацията:" -#: cmdline/apt-get.cc:1822 +#: cmdline/apt-get.cc:1824 msgid "Internal Error, AutoRemover broke stuff" msgstr "Вътрешна грешка, AutoRemover счупи нещо в системата" -#: cmdline/apt-get.cc:1829 +#: cmdline/apt-get.cc:1831 msgid "" "The following package was automatically installed and is no longer required:" msgid_plural "" @@ -748,7 +750,7 @@ msgstr[0] "Следният пакет е бил инсталиран автом msgstr[1] "" "Следните пакети са били инсталирани автоматично и вече не са необходими:" -#: cmdline/apt-get.cc:1833 +#: cmdline/apt-get.cc:1835 #, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -757,21 +759,21 @@ msgstr[0] "%lu пакет е бил инсталиран автоматично msgstr[1] "" "%lu пакета са били инсталирани автоматично и вече не са необходими:\n" -#: cmdline/apt-get.cc:1835 +#: cmdline/apt-get.cc:1837 msgid "Use 'apt-get autoremove' to remove it." msgid_plural "Use 'apt-get autoremove' to remove them." msgstr[0] "Използвайте „apt-get autoremove“ за да го премахнете." msgstr[1] "Използвайте „apt-get autoremove“ за да ги премахнете." -#: cmdline/apt-get.cc:1854 +#: cmdline/apt-get.cc:1856 msgid "Internal error, AllUpgrade broke stuff" msgstr "Вътрешна грешка, „AllUpgrade“ счупи нещо в системата" -#: cmdline/apt-get.cc:1953 +#: cmdline/apt-get.cc:1955 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "Възможно е да изпълните „apt-get -f install“, за да коригирате:" -#: cmdline/apt-get.cc:1957 +#: cmdline/apt-get.cc:1959 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -779,7 +781,7 @@ msgstr "" "Неудовлетворени зависимости. Опитайте „apt-get -f install“ без пакети (или " "укажете разрешение)." -#: cmdline/apt-get.cc:1972 +#: cmdline/apt-get.cc:1974 msgid "" "Some packages could not be installed. This may mean that you have\n" "requested an impossible situation or if you are using the unstable\n" @@ -791,33 +793,33 @@ msgstr "" "дистрибуция, че някои необходими пакети още не са създадени или пък\n" "са били преместени от Incoming." -#: cmdline/apt-get.cc:1993 +#: cmdline/apt-get.cc:1995 msgid "Broken packages" msgstr "Счупени пакети" -#: cmdline/apt-get.cc:2019 +#: cmdline/apt-get.cc:2021 msgid "The following extra packages will be installed:" msgstr "Следните допълнителни пакети ще бъдат инсталирани:" -#: cmdline/apt-get.cc:2109 +#: cmdline/apt-get.cc:2111 msgid "Suggested packages:" msgstr "Предложени пакети:" -#: cmdline/apt-get.cc:2110 +#: cmdline/apt-get.cc:2112 msgid "Recommended packages:" msgstr "Препоръчвани пакети:" -#: cmdline/apt-get.cc:2152 +#: cmdline/apt-get.cc:2154 #, c-format msgid "Couldn't find package %s" msgstr "Неуспех при намирането на пакет %s" -#: cmdline/apt-get.cc:2159 cmdline/apt-mark.cc:70 +#: cmdline/apt-get.cc:2161 cmdline/apt-mark.cc:70 #, c-format msgid "%s set to automatically installed.\n" msgstr "%s е отбелязан като автоматично инсталиран.\n" -#: cmdline/apt-get.cc:2167 cmdline/apt-mark.cc:114 +#: cmdline/apt-get.cc:2169 cmdline/apt-mark.cc:114 msgid "" "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " "instead." @@ -825,46 +827,46 @@ msgstr "" "Тази команда е остаряла. Вместо нея използвайте „apt-mark auto“ и „apt-mark " "manual“." -#: cmdline/apt-get.cc:2183 +#: cmdline/apt-get.cc:2185 msgid "Calculating upgrade... " msgstr "Изчисляване на актуализацията..." -#: cmdline/apt-get.cc:2186 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 msgid "Failed" msgstr "Неуспех" -#: cmdline/apt-get.cc:2191 +#: cmdline/apt-get.cc:2193 msgid "Done" msgstr "Готово" -#: cmdline/apt-get.cc:2258 cmdline/apt-get.cc:2266 +#: cmdline/apt-get.cc:2260 cmdline/apt-get.cc:2268 msgid "Internal error, problem resolver broke stuff" msgstr "Вътрешна грешка, „problem resolver“ счупи нещо в системата" -#: cmdline/apt-get.cc:2294 cmdline/apt-get.cc:2330 +#: cmdline/apt-get.cc:2296 cmdline/apt-get.cc:2332 msgid "Unable to lock the download directory" msgstr "Неуспех при заключването на директорията за изтегляне" -#: cmdline/apt-get.cc:2386 +#: cmdline/apt-get.cc:2388 #, c-format msgid "Can't find a source to download version '%s' of '%s'" msgstr "Не е открит източник, от който да се изтегли версия „%s“ на „%s“" -#: cmdline/apt-get.cc:2391 +#: cmdline/apt-get.cc:2393 #, c-format msgid "Downloading %s %s" msgstr "Изтегляне на %s %s" -#: cmdline/apt-get.cc:2451 +#: cmdline/apt-get.cc:2453 msgid "Must specify at least one package to fetch source for" msgstr "Трябва да укажете поне един пакет за изтегляне на изходния му код" -#: cmdline/apt-get.cc:2491 cmdline/apt-get.cc:2803 +#: cmdline/apt-get.cc:2493 cmdline/apt-get.cc:2805 #, c-format msgid "Unable to find a source package for %s" msgstr "Неуспех при намирането на изходен код на пакет %s" -#: cmdline/apt-get.cc:2508 +#: cmdline/apt-get.cc:2510 #, c-format msgid "" "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" @@ -874,7 +876,7 @@ msgstr "" "адрес:\n" "%s\n" -#: cmdline/apt-get.cc:2513 +#: cmdline/apt-get.cc:2515 #, c-format msgid "" "Please use:\n" @@ -886,70 +888,70 @@ msgstr "" "за да изтеглите последните промени в пакета (евентуално в процес на " "разработка).\n" -#: cmdline/apt-get.cc:2566 +#: cmdline/apt-get.cc:2568 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Пропускане на вече изтегления файл „%s“\n" -#: cmdline/apt-get.cc:2603 +#: cmdline/apt-get.cc:2605 #, c-format msgid "You don't have enough free space in %s" msgstr "Нямате достатъчно свободно пространство в %s" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:2612 +#: cmdline/apt-get.cc:2614 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "Необходимо е да се изтеглят %sB/%sB архиви изходен код.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:2617 +#: cmdline/apt-get.cc:2619 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Необходимо е да се изтеглят %sB архиви изходен код.\n" -#: cmdline/apt-get.cc:2623 +#: cmdline/apt-get.cc:2625 #, c-format msgid "Fetch source %s\n" msgstr "Изтегляне на изходен код %s\n" -#: cmdline/apt-get.cc:2661 +#: cmdline/apt-get.cc:2663 msgid "Failed to fetch some archives." msgstr "Неуспех при изтеглянето на някои архиви." -#: cmdline/apt-get.cc:2692 +#: cmdline/apt-get.cc:2694 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "" "Пропускане на разпакетирането на вече разпакетирания изходен код в %s\n" -#: cmdline/apt-get.cc:2704 +#: cmdline/apt-get.cc:2706 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Командата за разпакетиране „%s“ пропадна.\n" -#: cmdline/apt-get.cc:2705 +#: cmdline/apt-get.cc:2707 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "Проверете дали имате инсталиран пакета „dpkg-dev“.\n" -#: cmdline/apt-get.cc:2727 +#: cmdline/apt-get.cc:2729 #, c-format msgid "Build command '%s' failed.\n" msgstr "Командата за компилиране „%s“ пропадна.\n" -#: cmdline/apt-get.cc:2747 +#: cmdline/apt-get.cc:2749 msgid "Child process failed" msgstr "Процесът-потомък пропадна" -#: cmdline/apt-get.cc:2766 +#: cmdline/apt-get.cc:2768 msgid "Must specify at least one package to check builddeps for" msgstr "" "Трябва да укажете поне един пакет за проверка на зависимости за компилиране" -#: cmdline/apt-get.cc:2791 +#: cmdline/apt-get.cc:2793 #, c-format msgid "" "No architecture information available for %s. See apt.conf(5) APT::" @@ -958,18 +960,18 @@ msgstr "" "Липсва информация за архитектурата %s. Прегледайте информацията за APT::" "Architectures в apt.conf(5)." -#: cmdline/apt-get.cc:2815 cmdline/apt-get.cc:2818 +#: cmdline/apt-get.cc:2817 cmdline/apt-get.cc:2820 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "" "Неуспех при получаването на информация за зависимостите за компилиране на %s" -#: cmdline/apt-get.cc:2838 +#: cmdline/apt-get.cc:2840 #, c-format msgid "%s has no build depends.\n" msgstr "%s няма зависимости за компилиране.\n" -#: cmdline/apt-get.cc:3008 +#: cmdline/apt-get.cc:3010 #, c-format msgid "" "%s dependency for %s can't be satisfied because %s is not allowed on '%s' " @@ -978,7 +980,7 @@ msgstr "" "Зависимост %s за пакета %s не може да бъде удовлетворена, %s не се позволява " "за пакети „%s“" -#: cmdline/apt-get.cc:3026 +#: cmdline/apt-get.cc:3028 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -987,14 +989,14 @@ msgstr "" "Зависимост %s за пакета %s не може да бъде удовлетворена, понеже пакета %s " "не може да бъде намерен" -#: cmdline/apt-get.cc:3049 +#: cmdline/apt-get.cc:3051 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "Неуспех при удовлетворяването на зависимост %s за пакета %s: Инсталираният " "пакет %s е твърде нов" -#: cmdline/apt-get.cc:3088 +#: cmdline/apt-get.cc:3090 #, c-format msgid "" "%s dependency for %s cannot be satisfied because candidate version of " @@ -1003,7 +1005,7 @@ msgstr "" "Зависимост %s за пакета %s не може да бъде удовлетворена, понеже версията " "кандидат на пакета %s не може да удовлетвори изискването за версия" -#: cmdline/apt-get.cc:3094 +#: cmdline/apt-get.cc:3096 #, c-format msgid "" "%s dependency for %s cannot be satisfied because package %s has no candidate " @@ -1012,30 +1014,30 @@ msgstr "" "Зависимост %s за пакета %s не може да бъде удовлетворена, понеже пакета %s " "няма подходящи версии" -#: cmdline/apt-get.cc:3117 +#: cmdline/apt-get.cc:3119 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "Неуспех при удовлетворяването на зависимост %s за пакета %s: %s" -#: cmdline/apt-get.cc:3133 +#: cmdline/apt-get.cc:3135 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "Зависимостите за компилиране на %s не можаха да бъдат удовлетворени." -#: cmdline/apt-get.cc:3138 +#: cmdline/apt-get.cc:3140 msgid "Failed to process build dependencies" msgstr "Неуспех при обработката на зависимостите за компилиране" -#: cmdline/apt-get.cc:3231 cmdline/apt-get.cc:3243 +#: cmdline/apt-get.cc:3233 cmdline/apt-get.cc:3245 #, c-format msgid "Changelog for %s (%s)" msgstr "Журнал на промените в %s (%s)" -#: cmdline/apt-get.cc:3366 +#: cmdline/apt-get.cc:3368 msgid "Supported modules:" msgstr "Поддържани модули:" -#: cmdline/apt-get.cc:3407 +#: cmdline/apt-get.cc:3409 msgid "" "Usage: apt-get [options] command\n" " apt-get [options] install|remove pkg1 [pkg2 ...]\n" @@ -1125,7 +1127,7 @@ msgstr "" "информация и опции.\n" " Това APT има Върховни Сили.\n" -#: cmdline/apt-get.cc:3572 +#: cmdline/apt-get.cc:3574 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1748,7 +1750,7 @@ msgstr "" " -o=? Настройване на произволна конфигурационна опция, т.е. -o dir::cache=/" "tmp\n" -#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1335 +#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1339 #, c-format msgid "Unable to write to %s" msgstr "Неуспех при записа на %s" @@ -2802,7 +2804,7 @@ msgstr "Лошо форматиран ред %u в списъка с източ msgid "Type '%s' is not known on line %u in source list %s" msgstr "Типът „%s“ на ред %u в списъка с източници %s е неизвестен." -#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:896 +#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:898 #, c-format msgid "" "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " @@ -2811,12 +2813,12 @@ msgstr "" "Неуспех при незабавната настройка на „%s“. За повече информация вижте " "информацията за APT::Immediate-Configure в „man 5 apt.conf“. (%d)" -#: apt-pkg/packagemanager.cc:473 apt-pkg/packagemanager.cc:503 +#: apt-pkg/packagemanager.cc:473 apt-pkg/packagemanager.cc:504 #, c-format msgid "Could not configure '%s'. " msgstr "Неуспех при конфигуриране на „%s“. " -#: apt-pkg/packagemanager.cc:545 +#: apt-pkg/packagemanager.cc:546 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2854,7 +2856,7 @@ msgid "Unable to correct problems, you have held broken packages." msgstr "" "Неуспех при коригирането на проблемите, имате задържани счупени пакети." -#: apt-pkg/algorithms.cc:1574 apt-pkg/algorithms.cc:1576 +#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 msgid "" "Some index files failed to download. They have been ignored, or old ones " "used instead." @@ -3004,22 +3006,22 @@ msgstr "" msgid "Package %s %s was not found while processing file dependencies" msgstr "Пакетът %s %s не беше открит при обработката на файла със зависимости" -#: apt-pkg/pkgcachegen.cc:1146 +#: apt-pkg/pkgcachegen.cc:1150 #, c-format msgid "Couldn't stat source package list %s" msgstr "" "Неуспех при получаването на атрибути на списъка с пакети с изходен код %s" -#: apt-pkg/pkgcachegen.cc:1234 apt-pkg/pkgcachegen.cc:1338 -#: apt-pkg/pkgcachegen.cc:1344 apt-pkg/pkgcachegen.cc:1501 +#: apt-pkg/pkgcachegen.cc:1238 apt-pkg/pkgcachegen.cc:1342 +#: apt-pkg/pkgcachegen.cc:1348 apt-pkg/pkgcachegen.cc:1505 msgid "Reading package lists" msgstr "Четене на списъците с пакети" -#: apt-pkg/pkgcachegen.cc:1251 +#: apt-pkg/pkgcachegen.cc:1255 msgid "Collecting File Provides" msgstr "Събиране на информация за „Осигурява“" -#: apt-pkg/pkgcachegen.cc:1443 apt-pkg/pkgcachegen.cc:1450 +#: apt-pkg/pkgcachegen.cc:1447 apt-pkg/pkgcachegen.cc:1454 msgid "IO Error saving source cache" msgstr "Входно/изходна грешка при запазването на кеша на пакети с изходен код" diff --git a/po/bs.po b/po/bs.po index f08c030b2..92371278a 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 \n" -"POT-Creation-Date: 2012-10-15 09:49+0200\n" +"POT-Creation-Date: 2013-03-14 08:05+0100\n" "PO-Revision-Date: 2004-05-06 15:25+0100\n" "Last-Translator: Safir Šećerović \n" "Language-Team: Bosnian \n" @@ -154,7 +154,7 @@ msgid " Version table:" msgstr "" #: cmdline/apt-cache.cc:1683 cmdline/apt-cdrom.cc:198 cmdline/apt-config.cc:81 -#: cmdline/apt-get.cc:3361 cmdline/apt-mark.cc:375 +#: cmdline/apt-get.cc:3363 cmdline/apt-mark.cc:375 #: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:590 #: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147 #, c-format @@ -441,7 +441,7 @@ msgstr "" msgid "%s is already the newest version.\n" msgstr "" -#: cmdline/apt-get.cc:858 cmdline/apt-get.cc:2157 cmdline/apt-mark.cc:68 +#: cmdline/apt-get.cc:858 cmdline/apt-get.cc:2159 cmdline/apt-mark.cc:68 #, fuzzy, c-format msgid "%s set to manually installed.\n" msgstr "ali se %s treba instalirati" @@ -549,8 +549,8 @@ msgstr "" msgid "After this operation, %sB disk space will be freed.\n" msgstr "" -#: cmdline/apt-get.cc:1228 cmdline/apt-get.cc:1231 cmdline/apt-get.cc:2589 -#: cmdline/apt-get.cc:2592 +#: cmdline/apt-get.cc:1228 cmdline/apt-get.cc:1231 cmdline/apt-get.cc:2591 +#: cmdline/apt-get.cc:2594 #, c-format msgid "Couldn't determine free space in %s" msgstr "" @@ -560,15 +560,17 @@ msgstr "" msgid "You don't have enough free space in %s." msgstr "" -#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1277 +#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1279 msgid "Trivial Only specified but this is not a trivial operation." msgstr "" -#: cmdline/apt-get.cc:1259 +#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be +#. careful with hard to type or special characters (like non-breaking spaces) +#: cmdline/apt-get.cc:1261 msgid "Yes, do as I say!" msgstr "Da, uradi kako kažem!" -#: cmdline/apt-get.cc:1261 +#: cmdline/apt-get.cc:1263 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -576,47 +578,47 @@ msgid "" " ?] " msgstr "" -#: cmdline/apt-get.cc:1267 cmdline/apt-get.cc:1286 +#: cmdline/apt-get.cc:1269 cmdline/apt-get.cc:1288 msgid "Abort." msgstr "Odustani." -#: cmdline/apt-get.cc:1282 +#: cmdline/apt-get.cc:1284 #, fuzzy msgid "Do you want to continue [Y/n]? " msgstr "Da li želite nastaviti? [Y/n]" -#: cmdline/apt-get.cc:1354 cmdline/apt-get.cc:2654 apt-pkg/algorithms.cc:1548 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 #, c-format msgid "Failed to fetch %s %s\n" msgstr "" -#: cmdline/apt-get.cc:1372 +#: cmdline/apt-get.cc:1374 msgid "Some files failed to download" msgstr "" -#: cmdline/apt-get.cc:1373 cmdline/apt-get.cc:2666 +#: cmdline/apt-get.cc:1375 cmdline/apt-get.cc:2668 msgid "Download complete and in download only mode" msgstr "" -#: cmdline/apt-get.cc:1379 +#: cmdline/apt-get.cc:1381 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" msgstr "" -#: cmdline/apt-get.cc:1383 +#: cmdline/apt-get.cc:1385 msgid "--fix-missing and media swapping is not currently supported" msgstr "" -#: cmdline/apt-get.cc:1388 +#: cmdline/apt-get.cc:1390 msgid "Unable to correct missing packages." msgstr "" -#: cmdline/apt-get.cc:1389 +#: cmdline/apt-get.cc:1391 msgid "Aborting install." msgstr "Odustajem od instalacije." -#: cmdline/apt-get.cc:1417 +#: cmdline/apt-get.cc:1419 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -626,35 +628,35 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: cmdline/apt-get.cc:1421 +#: cmdline/apt-get.cc:1423 msgid "Note: This is done automatically and on purpose by dpkg." msgstr "" -#: cmdline/apt-get.cc:1559 +#: cmdline/apt-get.cc:1561 #, c-format msgid "Ignore unavailable target release '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:1591 +#: cmdline/apt-get.cc:1593 #, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "" #. if (VerTag.empty() == false && Last == 0) -#: cmdline/apt-get.cc:1629 +#: cmdline/apt-get.cc:1631 #, c-format msgid "Ignore unavailable version '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:1645 +#: cmdline/apt-get.cc:1647 msgid "The update command takes no arguments" msgstr "" -#: cmdline/apt-get.cc:1711 +#: cmdline/apt-get.cc:1713 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -#: cmdline/apt-get.cc:1815 +#: cmdline/apt-get.cc:1817 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -670,15 +672,15 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1818 cmdline/apt-get.cc:1987 +#: cmdline/apt-get.cc:1820 cmdline/apt-get.cc:1989 msgid "The following information may help to resolve the situation:" msgstr "" -#: cmdline/apt-get.cc:1822 +#: cmdline/apt-get.cc:1824 msgid "Internal Error, AutoRemover broke stuff" msgstr "" -#: cmdline/apt-get.cc:1829 +#: cmdline/apt-get.cc:1831 #, fuzzy msgid "" "The following package was automatically installed and is no longer required:" @@ -688,7 +690,7 @@ msgid_plural "" msgstr[0] "Slijedeći NOVI paketi će biti instalirani:" msgstr[1] "Slijedeći NOVI paketi će biti instalirani:" -#: cmdline/apt-get.cc:1833 +#: cmdline/apt-get.cc:1835 #, fuzzy, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -696,27 +698,27 @@ msgid_plural "" msgstr[0] "Slijedeći NOVI paketi će biti instalirani:" msgstr[1] "Slijedeći NOVI paketi će biti instalirani:" -#: cmdline/apt-get.cc:1835 +#: cmdline/apt-get.cc:1837 msgid "Use 'apt-get autoremove' to remove it." msgid_plural "Use 'apt-get autoremove' to remove them." msgstr[0] "" msgstr[1] "" -#: cmdline/apt-get.cc:1854 +#: cmdline/apt-get.cc:1856 msgid "Internal error, AllUpgrade broke stuff" msgstr "" -#: cmdline/apt-get.cc:1953 +#: cmdline/apt-get.cc:1955 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "" -#: cmdline/apt-get.cc:1957 +#: cmdline/apt-get.cc:1959 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." msgstr "" -#: cmdline/apt-get.cc:1972 +#: cmdline/apt-get.cc:1974 msgid "" "Some packages could not be installed. This may mean that you have\n" "requested an impossible situation or if you are using the unstable\n" @@ -724,85 +726,85 @@ msgid "" "or been moved out of Incoming." msgstr "" -#: cmdline/apt-get.cc:1993 +#: cmdline/apt-get.cc:1995 msgid "Broken packages" msgstr "Oštećeni paketi" -#: cmdline/apt-get.cc:2019 +#: cmdline/apt-get.cc:2021 msgid "The following extra packages will be installed:" msgstr "Slijedeći dodatni paketi će biti instalirani:" -#: cmdline/apt-get.cc:2109 +#: cmdline/apt-get.cc:2111 msgid "Suggested packages:" msgstr "Predloženi paketi:" -#: cmdline/apt-get.cc:2110 +#: cmdline/apt-get.cc:2112 msgid "Recommended packages:" msgstr "Preporučeni paketi:" -#: cmdline/apt-get.cc:2152 +#: cmdline/apt-get.cc:2154 #, c-format msgid "Couldn't find package %s" msgstr "" -#: cmdline/apt-get.cc:2159 cmdline/apt-mark.cc:70 +#: cmdline/apt-get.cc:2161 cmdline/apt-mark.cc:70 #, fuzzy, c-format msgid "%s set to automatically installed.\n" msgstr "ali se %s treba instalirati" -#: cmdline/apt-get.cc:2167 cmdline/apt-mark.cc:114 +#: cmdline/apt-get.cc:2169 cmdline/apt-mark.cc:114 msgid "" "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " "instead." msgstr "" -#: cmdline/apt-get.cc:2183 +#: cmdline/apt-get.cc:2185 msgid "Calculating upgrade... " msgstr "Računam nadogradnju..." -#: cmdline/apt-get.cc:2186 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 msgid "Failed" msgstr "Neuspješno" -#: cmdline/apt-get.cc:2191 +#: cmdline/apt-get.cc:2193 msgid "Done" msgstr "Urađeno" -#: cmdline/apt-get.cc:2258 cmdline/apt-get.cc:2266 +#: cmdline/apt-get.cc:2260 cmdline/apt-get.cc:2268 msgid "Internal error, problem resolver broke stuff" msgstr "" -#: cmdline/apt-get.cc:2294 cmdline/apt-get.cc:2330 +#: cmdline/apt-get.cc:2296 cmdline/apt-get.cc:2332 msgid "Unable to lock the download directory" msgstr "" -#: cmdline/apt-get.cc:2386 +#: cmdline/apt-get.cc:2388 #, c-format msgid "Can't find a source to download version '%s' of '%s'" msgstr "" -#: cmdline/apt-get.cc:2391 +#: cmdline/apt-get.cc:2393 #, c-format msgid "Downloading %s %s" msgstr "" -#: cmdline/apt-get.cc:2451 +#: cmdline/apt-get.cc:2453 msgid "Must specify at least one package to fetch source for" msgstr "" -#: cmdline/apt-get.cc:2491 cmdline/apt-get.cc:2803 +#: cmdline/apt-get.cc:2493 cmdline/apt-get.cc:2805 #, c-format msgid "Unable to find a source package for %s" msgstr "" -#: cmdline/apt-get.cc:2508 +#: cmdline/apt-get.cc:2510 #, c-format msgid "" "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" "%s\n" msgstr "" -#: cmdline/apt-get.cc:2513 +#: cmdline/apt-get.cc:2515 #, c-format msgid "" "Please use:\n" @@ -810,141 +812,141 @@ msgid "" "to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -#: cmdline/apt-get.cc:2566 +#: cmdline/apt-get.cc:2568 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "" -#: cmdline/apt-get.cc:2603 +#: cmdline/apt-get.cc:2605 #, c-format msgid "You don't have enough free space in %s" msgstr "" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:2612 +#: cmdline/apt-get.cc:2614 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:2617 +#: cmdline/apt-get.cc:2619 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "" -#: cmdline/apt-get.cc:2623 +#: cmdline/apt-get.cc:2625 #, c-format msgid "Fetch source %s\n" msgstr "" -#: cmdline/apt-get.cc:2661 +#: cmdline/apt-get.cc:2663 msgid "Failed to fetch some archives." msgstr "" -#: cmdline/apt-get.cc:2692 +#: cmdline/apt-get.cc:2694 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "" -#: cmdline/apt-get.cc:2704 +#: cmdline/apt-get.cc:2706 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "" -#: cmdline/apt-get.cc:2705 +#: cmdline/apt-get.cc:2707 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "" -#: cmdline/apt-get.cc:2727 +#: cmdline/apt-get.cc:2729 #, c-format msgid "Build command '%s' failed.\n" msgstr "" -#: cmdline/apt-get.cc:2747 +#: cmdline/apt-get.cc:2749 msgid "Child process failed" msgstr "" -#: cmdline/apt-get.cc:2766 +#: cmdline/apt-get.cc:2768 msgid "Must specify at least one package to check builddeps for" msgstr "" -#: cmdline/apt-get.cc:2791 +#: cmdline/apt-get.cc:2793 #, c-format msgid "" "No architecture information available for %s. See apt.conf(5) APT::" "Architectures for setup" msgstr "" -#: cmdline/apt-get.cc:2815 cmdline/apt-get.cc:2818 +#: cmdline/apt-get.cc:2817 cmdline/apt-get.cc:2820 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "" -#: cmdline/apt-get.cc:2838 +#: cmdline/apt-get.cc:2840 #, c-format msgid "%s has no build depends.\n" msgstr "" -#: cmdline/apt-get.cc:3008 +#: cmdline/apt-get.cc:3010 #, c-format msgid "" "%s dependency for %s can't be satisfied because %s is not allowed on '%s' " "packages" msgstr "" -#: cmdline/apt-get.cc:3026 +#: cmdline/apt-get.cc:3028 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " "found" msgstr "" -#: cmdline/apt-get.cc:3049 +#: cmdline/apt-get.cc:3051 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" -#: cmdline/apt-get.cc:3088 +#: cmdline/apt-get.cc:3090 #, c-format msgid "" "%s dependency for %s cannot be satisfied because candidate version of " "package %s can't satisfy version requirements" msgstr "" -#: cmdline/apt-get.cc:3094 +#: cmdline/apt-get.cc:3096 #, c-format msgid "" "%s dependency for %s cannot be satisfied because package %s has no candidate " "version" msgstr "" -#: cmdline/apt-get.cc:3117 +#: cmdline/apt-get.cc:3119 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "" -#: cmdline/apt-get.cc:3133 +#: cmdline/apt-get.cc:3135 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "" -#: cmdline/apt-get.cc:3138 +#: cmdline/apt-get.cc:3140 msgid "Failed to process build dependencies" msgstr "" -#: cmdline/apt-get.cc:3231 cmdline/apt-get.cc:3243 +#: cmdline/apt-get.cc:3233 cmdline/apt-get.cc:3245 #, c-format msgid "Changelog for %s (%s)" msgstr "" -#: cmdline/apt-get.cc:3366 +#: cmdline/apt-get.cc:3368 msgid "Supported modules:" msgstr "Podržani moduli:" -#: cmdline/apt-get.cc:3407 +#: cmdline/apt-get.cc:3409 msgid "" "Usage: apt-get [options] command\n" " apt-get [options] install|remove pkg1 [pkg2 ...]\n" @@ -990,7 +992,7 @@ msgid "" " This APT has Super Cow Powers.\n" msgstr "" -#: cmdline/apt-get.cc:3572 +#: cmdline/apt-get.cc:3574 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1561,7 +1563,7 @@ msgid "" " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" msgstr "" -#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1335 +#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1339 #, c-format msgid "Unable to write to %s" msgstr "Ne mogu zapisati na %s" @@ -2535,19 +2537,19 @@ msgstr "" msgid "Type '%s' is not known on line %u in source list %s" msgstr "" -#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:896 +#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:898 #, c-format msgid "" "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " "under APT::Immediate-Configure for details. (%d)" msgstr "" -#: apt-pkg/packagemanager.cc:473 apt-pkg/packagemanager.cc:503 +#: apt-pkg/packagemanager.cc:473 apt-pkg/packagemanager.cc:504 #, fuzzy, c-format msgid "Could not configure '%s'. " msgstr "Ne mogu otvoriti %s" -#: apt-pkg/packagemanager.cc:545 +#: apt-pkg/packagemanager.cc:546 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2576,7 +2578,7 @@ msgstr "" msgid "Unable to correct problems, you have held broken packages." msgstr "" -#: apt-pkg/algorithms.cc:1574 apt-pkg/algorithms.cc:1576 +#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 msgid "" "Some index files failed to download. They have been ignored, or old ones " "used instead." @@ -2715,21 +2717,21 @@ msgstr "" msgid "Package %s %s was not found while processing file dependencies" msgstr "" -#: apt-pkg/pkgcachegen.cc:1146 +#: apt-pkg/pkgcachegen.cc:1150 #, c-format msgid "Couldn't stat source package list %s" msgstr "" -#: apt-pkg/pkgcachegen.cc:1234 apt-pkg/pkgcachegen.cc:1338 -#: apt-pkg/pkgcachegen.cc:1344 apt-pkg/pkgcachegen.cc:1501 +#: apt-pkg/pkgcachegen.cc:1238 apt-pkg/pkgcachegen.cc:1342 +#: apt-pkg/pkgcachegen.cc:1348 apt-pkg/pkgcachegen.cc:1505 msgid "Reading package lists" msgstr "Čitam spiskove paketa" -#: apt-pkg/pkgcachegen.cc:1251 +#: apt-pkg/pkgcachegen.cc:1255 msgid "Collecting File Provides" msgstr "" -#: apt-pkg/pkgcachegen.cc:1443 apt-pkg/pkgcachegen.cc:1450 +#: apt-pkg/pkgcachegen.cc:1447 apt-pkg/pkgcachegen.cc:1454 msgid "IO Error saving source cache" msgstr "" diff --git a/po/ca.po b/po/ca.po index 03d11e1aa..8eaa638a7 100644 --- a/po/ca.po +++ b/po/ca.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.9.7.6\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2012-10-15 09:49+0200\n" +"POT-Creation-Date: 2013-03-14 08:05+0100\n" "PO-Revision-Date: 2012-10-19 13:30+0200\n" "Last-Translator: Jordi Mallach \n" "Language-Team: Catalan \n" @@ -108,7 +108,8 @@ msgstr "Heu de donar com a mínim un patró de cerca" #: cmdline/apt-cache.cc:1361 msgid "This command is deprecated. Please use 'apt-mark showauto' instead." -msgstr "Aquesta ordre és desaconsellada. Empreu «apt-mark showauto» en el seu lloc." +msgstr "" +"Aquesta ordre és desaconsellada. Empreu «apt-mark showauto» en el seu lloc." #: cmdline/apt-cache.cc:1456 apt-pkg/cacheset.cc:510 #, c-format @@ -155,7 +156,7 @@ msgid " Version table:" msgstr " Taula de versió:" #: cmdline/apt-cache.cc:1683 cmdline/apt-cdrom.cc:198 cmdline/apt-config.cc:81 -#: cmdline/apt-get.cc:3361 cmdline/apt-mark.cc:375 +#: cmdline/apt-get.cc:3363 cmdline/apt-mark.cc:375 #: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:590 #: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147 #, c-format @@ -450,7 +451,9 @@ msgstr "Els paquets virtuals com «%s» no es poden suprimir\n" #: cmdline/apt-get.cc:737 cmdline/apt-get.cc:940 #, c-format msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" -msgstr "El paquet «%s» no està instaŀlat, així doncs no es suprimirà. Volíeu dir «%s»?\n" +msgstr "" +"El paquet «%s» no està instaŀlat, així doncs no es suprimirà. Volíeu dir " +"«%s»?\n" #: cmdline/apt-get.cc:743 cmdline/apt-get.cc:946 #, c-format @@ -484,7 +487,7 @@ msgstr "No es possible la reinstaŀlació del paquet %s, no es pot baixar.\n" msgid "%s is already the newest version.\n" msgstr "%s ja es troba en la versió més recent.\n" -#: cmdline/apt-get.cc:858 cmdline/apt-get.cc:2157 cmdline/apt-mark.cc:68 +#: cmdline/apt-get.cc:858 cmdline/apt-get.cc:2159 cmdline/apt-mark.cc:68 #, c-format msgid "%s set to manually installed.\n" msgstr "S'ha marcat %s com instaŀlat manualment.\n" @@ -596,8 +599,8 @@ msgstr "" msgid "After this operation, %sB disk space will be freed.\n" msgstr "Després d'aquesta operació s'alliberaran %sB d'espai en disc.\n" -#: cmdline/apt-get.cc:1228 cmdline/apt-get.cc:1231 cmdline/apt-get.cc:2589 -#: cmdline/apt-get.cc:2592 +#: cmdline/apt-get.cc:1228 cmdline/apt-get.cc:1231 cmdline/apt-get.cc:2591 +#: cmdline/apt-get.cc:2594 #, c-format msgid "Couldn't determine free space in %s" msgstr "No s'ha pogut determinar l'espai lliure en %s" @@ -607,15 +610,17 @@ msgstr "No s'ha pogut determinar l'espai lliure en %s" msgid "You don't have enough free space in %s." msgstr "No teniu prou espai lliure en %s." -#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1277 +#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1279 msgid "Trivial Only specified but this is not a trivial operation." msgstr "S'ha especificat «Trivial Only» però aquesta operació no és trivial." -#: cmdline/apt-get.cc:1259 +#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be +#. careful with hard to type or special characters (like non-breaking spaces) +#: cmdline/apt-get.cc:1261 msgid "Yes, do as I say!" msgstr "Sí, fes el que et dic!" -#: cmdline/apt-get.cc:1261 +#: cmdline/apt-get.cc:1263 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -626,28 +631,28 @@ msgstr "" "Per continuar escriviu la frase «%s»\n" " ?] " -#: cmdline/apt-get.cc:1267 cmdline/apt-get.cc:1286 +#: cmdline/apt-get.cc:1269 cmdline/apt-get.cc:1288 msgid "Abort." msgstr "Avortat." -#: cmdline/apt-get.cc:1282 +#: cmdline/apt-get.cc:1284 msgid "Do you want to continue [Y/n]? " msgstr "Voleu continuar [S/n]? " -#: cmdline/apt-get.cc:1354 cmdline/apt-get.cc:2654 apt-pkg/algorithms.cc:1548 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 #, c-format msgid "Failed to fetch %s %s\n" msgstr "No s'ha pogut obtenir %s %s\n" -#: cmdline/apt-get.cc:1372 +#: cmdline/apt-get.cc:1374 msgid "Some files failed to download" msgstr "Alguns fitxers no s'han pogut baixar" -#: cmdline/apt-get.cc:1373 cmdline/apt-get.cc:2666 +#: cmdline/apt-get.cc:1375 cmdline/apt-get.cc:2668 msgid "Download complete and in download only mode" msgstr "Baixada completa i en mode de només baixada" -#: cmdline/apt-get.cc:1379 +#: cmdline/apt-get.cc:1381 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -655,19 +660,19 @@ msgstr "" "No es poden baixar alguns arxius, proveu a executar apt-get update o " "intenteu-ho amb --fix-missing." -#: cmdline/apt-get.cc:1383 +#: cmdline/apt-get.cc:1385 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix-missing i els medi intercanviables actualment no estan suportats" -#: cmdline/apt-get.cc:1388 +#: cmdline/apt-get.cc:1390 msgid "Unable to correct missing packages." msgstr "No es poden corregir els paquets que falten." -#: cmdline/apt-get.cc:1389 +#: cmdline/apt-get.cc:1391 msgid "Aborting install." msgstr "S'està avortant la instaŀlació." -#: cmdline/apt-get.cc:1417 +#: cmdline/apt-get.cc:1419 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -681,37 +686,37 @@ msgstr[1] "" "Els següents paquets han desaparegut del vostre sistema ja\n" "que tots els fitxers s'han sobreescrit per altres paquets:" -#: cmdline/apt-get.cc:1421 +#: cmdline/apt-get.cc:1423 msgid "Note: This is done automatically and on purpose by dpkg." msgstr "Nota: Això ho fa el dpkg automàticament i a propòsit." -#: cmdline/apt-get.cc:1559 +#: cmdline/apt-get.cc:1561 #, c-format msgid "Ignore unavailable target release '%s' of package '%s'" msgstr "Ignora la versió objectiu «%s» no disponible del paquet «%s»" -#: cmdline/apt-get.cc:1591 +#: cmdline/apt-get.cc:1593 #, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "S'està agafant «%s» com a paquet font en lloc de '%s'\n" #. if (VerTag.empty() == false && Last == 0) -#: cmdline/apt-get.cc:1629 +#: cmdline/apt-get.cc:1631 #, c-format msgid "Ignore unavailable version '%s' of package '%s'" msgstr "Descarta la versió «%s» no disponible del paquet «%s»" -#: cmdline/apt-get.cc:1645 +#: cmdline/apt-get.cc:1647 msgid "The update command takes no arguments" msgstr "L'ordre update no pren arguments" -#: cmdline/apt-get.cc:1711 +#: cmdline/apt-get.cc:1713 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" "Es suposa que no hauriem de suprimir coses, no es pot iniciar el supressor " "automàtic" -#: cmdline/apt-get.cc:1815 +#: cmdline/apt-get.cc:1817 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -729,15 +734,15 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1818 cmdline/apt-get.cc:1987 +#: cmdline/apt-get.cc:1820 cmdline/apt-get.cc:1989 msgid "The following information may help to resolve the situation:" msgstr "La informació següent pot ajudar-vos a resoldre la situació:" -#: cmdline/apt-get.cc:1822 +#: cmdline/apt-get.cc:1824 msgid "Internal Error, AutoRemover broke stuff" msgstr "S'ha produït un error intern, el supressor automàtic ha trencat coses" -#: cmdline/apt-get.cc:1829 +#: cmdline/apt-get.cc:1831 msgid "" "The following package was automatically installed and is no longer required:" msgid_plural "" @@ -748,7 +753,7 @@ msgstr[0] "" msgstr[1] "" "Els paquets següents s'han instaŀlat automàticament i ja no són necessaris:" -#: cmdline/apt-get.cc:1833 +#: cmdline/apt-get.cc:1835 #, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -758,21 +763,21 @@ msgstr[0] "" msgstr[1] "" "Els paquets %lu es van s'instaŀlar automàticament i ja no són necessaris:\n" -#: cmdline/apt-get.cc:1835 +#: cmdline/apt-get.cc:1837 msgid "Use 'apt-get autoremove' to remove it." msgid_plural "Use 'apt-get autoremove' to remove them." msgstr[0] "Empreu «apt-get autoremove» per a suprimir-lo." msgstr[1] "Empreu «apt-get autoremove» per a suprimir-los." -#: cmdline/apt-get.cc:1854 +#: cmdline/apt-get.cc:1856 msgid "Internal error, AllUpgrade broke stuff" msgstr "Error intern, AllUpgrade ha trencat coses" -#: cmdline/apt-get.cc:1953 +#: cmdline/apt-get.cc:1955 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "Potser voldreu executar «apt-get -f install» per corregir-ho:" -#: cmdline/apt-get.cc:1957 +#: cmdline/apt-get.cc:1959 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -780,7 +785,7 @@ msgstr "" "Dependències insatisfetes. Proveu amb «apt-get -f install» sense paquets (o " "especifiqueu una solució)." -#: cmdline/apt-get.cc:1972 +#: cmdline/apt-get.cc:1974 msgid "" "Some packages could not be installed. This may mean that you have\n" "requested an impossible situation or if you are using the unstable\n" @@ -792,79 +797,81 @@ msgstr "" "«unstable» i alguns paquets requerits encara no han estat creats o bé\n" "encara no els hi han introduït des d'«Incoming»." -#: cmdline/apt-get.cc:1993 +#: cmdline/apt-get.cc:1995 msgid "Broken packages" msgstr "Paquets trencats" -#: cmdline/apt-get.cc:2019 +#: cmdline/apt-get.cc:2021 msgid "The following extra packages will be installed:" msgstr "S'instaŀlaran els següents paquets extres:" -#: cmdline/apt-get.cc:2109 +#: cmdline/apt-get.cc:2111 msgid "Suggested packages:" msgstr "Paquets suggerits:" -#: cmdline/apt-get.cc:2110 +#: cmdline/apt-get.cc:2112 msgid "Recommended packages:" msgstr "Paquets recomanats:" -#: cmdline/apt-get.cc:2152 +#: cmdline/apt-get.cc:2154 #, c-format msgid "Couldn't find package %s" msgstr "No s'ha pogut trobar el paquet %s" -#: cmdline/apt-get.cc:2159 cmdline/apt-mark.cc:70 +#: cmdline/apt-get.cc:2161 cmdline/apt-mark.cc:70 #, c-format msgid "%s set to automatically installed.\n" msgstr "S'ha marcat %s com instaŀlat automàticament.\n" -#: cmdline/apt-get.cc:2167 cmdline/apt-mark.cc:114 +#: cmdline/apt-get.cc:2169 cmdline/apt-mark.cc:114 msgid "" "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " "instead." -msgstr "Aquesta ordre és desaconsellada. Empreu «apt-mark auto» i «apt-mark manual» en el seu lloc." +msgstr "" +"Aquesta ordre és desaconsellada. Empreu «apt-mark auto» i «apt-mark manual» " +"en el seu lloc." -#: cmdline/apt-get.cc:2183 +#: cmdline/apt-get.cc:2185 msgid "Calculating upgrade... " msgstr "S'està calculant l'actualització… " -#: cmdline/apt-get.cc:2186 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 msgid "Failed" msgstr "Ha fallat" -#: cmdline/apt-get.cc:2191 +#: cmdline/apt-get.cc:2193 msgid "Done" msgstr "Fet" -#: cmdline/apt-get.cc:2258 cmdline/apt-get.cc:2266 +#: cmdline/apt-get.cc:2260 cmdline/apt-get.cc:2268 msgid "Internal error, problem resolver broke stuff" msgstr "" "S'ha produït un error intern, el solucionador de problemes ha trencat coses" -#: cmdline/apt-get.cc:2294 cmdline/apt-get.cc:2330 +#: cmdline/apt-get.cc:2296 cmdline/apt-get.cc:2332 msgid "Unable to lock the download directory" msgstr "No és possible blocar el directori de descàrrega" -#: cmdline/apt-get.cc:2386 +#: cmdline/apt-get.cc:2388 #, c-format msgid "Can't find a source to download version '%s' of '%s'" msgstr "No es troba una font per baixar la versió «%s» de «%s»" -#: cmdline/apt-get.cc:2391 +#: cmdline/apt-get.cc:2393 #, c-format msgid "Downloading %s %s" msgstr "S'està baixant %s %s" -#: cmdline/apt-get.cc:2451 +#: cmdline/apt-get.cc:2453 msgid "Must specify at least one package to fetch source for" msgstr "Haureu d'especificar un paquet de codi font per a baixar" -#: cmdline/apt-get.cc:2491 cmdline/apt-get.cc:2803 +#: cmdline/apt-get.cc:2493 cmdline/apt-get.cc:2805 #, c-format msgid "Unable to find a source package for %s" msgstr "No es pot trobar un paquet de fonts per a %s" -#: cmdline/apt-get.cc:2508 +#: cmdline/apt-get.cc:2510 #, c-format msgid "" "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" @@ -874,7 +881,7 @@ msgstr "" "versions «%s» a:\n" "%s\n" -#: cmdline/apt-get.cc:2513 +#: cmdline/apt-get.cc:2515 #, c-format msgid "" "Please use:\n" @@ -883,149 +890,160 @@ msgid "" msgstr "" "Empreu:\n" "bzr branch %s\n" -"per obtenir les últimes actualitzacions (possiblement no publicades) del paquet.\n" +"per obtenir les últimes actualitzacions (possiblement no publicades) del " +"paquet.\n" -#: cmdline/apt-get.cc:2566 +#: cmdline/apt-get.cc:2568 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "S'està ometent el fitxer ja baixat «%s»\n" -#: cmdline/apt-get.cc:2603 +#: cmdline/apt-get.cc:2605 #, c-format msgid "You don't have enough free space in %s" msgstr "No teniu prou espai lliure en %s" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:2612 +#: cmdline/apt-get.cc:2614 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "Es necessita baixar %sB/%sB d'arxius font.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:2617 +#: cmdline/apt-get.cc:2619 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Es necessita baixar %sB d'arxius font.\n" -#: cmdline/apt-get.cc:2623 +#: cmdline/apt-get.cc:2625 #, c-format msgid "Fetch source %s\n" msgstr "Obtén el font %s\n" -#: cmdline/apt-get.cc:2661 +#: cmdline/apt-get.cc:2663 msgid "Failed to fetch some archives." msgstr "No s'ha pogut baixar alguns arxius." -#: cmdline/apt-get.cc:2692 +#: cmdline/apt-get.cc:2694 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "" "S'està ometent el desempaquetament de les fonts que ja ho estan en %s\n" -#: cmdline/apt-get.cc:2704 +#: cmdline/apt-get.cc:2706 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "L'ordre de desempaquetar «%s» ha fallat.\n" -#: cmdline/apt-get.cc:2705 +#: cmdline/apt-get.cc:2707 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "Comproveu si el paquet «dpkgdev» està instaŀlat.\n" -#: cmdline/apt-get.cc:2727 +#: cmdline/apt-get.cc:2729 #, c-format msgid "Build command '%s' failed.\n" msgstr "L'ordre de construir «%s» ha fallat.\n" -#: cmdline/apt-get.cc:2747 +#: cmdline/apt-get.cc:2749 msgid "Child process failed" msgstr "Ha fallat el procés fill" -#: cmdline/apt-get.cc:2766 +#: cmdline/apt-get.cc:2768 msgid "Must specify at least one package to check builddeps for" msgstr "" "S'ha d'especificar un paquet per a verificar les dependències de construcció " "per a" -#: cmdline/apt-get.cc:2791 +#: cmdline/apt-get.cc:2793 #, c-format msgid "" "No architecture information available for %s. See apt.conf(5) APT::" "Architectures for setup" -msgstr "No hi ha informació d'arquitectura disponible per a %s. Vegeu apt.conf(5) APT::Architectures per a configurar-ho" +msgstr "" +"No hi ha informació d'arquitectura disponible per a %s. Vegeu apt.conf(5) " +"APT::Architectures per a configurar-ho" -#: cmdline/apt-get.cc:2815 cmdline/apt-get.cc:2818 +#: cmdline/apt-get.cc:2817 cmdline/apt-get.cc:2820 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "" "No es pot obtenir informació sobre les dependències de construcció per a %s" -#: cmdline/apt-get.cc:2838 +#: cmdline/apt-get.cc:2840 #, c-format msgid "%s has no build depends.\n" msgstr "%s no té dependències de construcció.\n" -#: cmdline/apt-get.cc:3008 +#: cmdline/apt-get.cc:3010 #, c-format msgid "" "%s dependency for %s can't be satisfied because %s is not allowed on '%s' " "packages" -msgstr "La dependència %s en %s no es pot satisfer perquè %s no és permès als paquets «%s»" +msgstr "" +"La dependència %s en %s no es pot satisfer perquè %s no és permès als " +"paquets «%s»" -#: cmdline/apt-get.cc:3026 +#: cmdline/apt-get.cc:3028 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " "found" -msgstr "La dependència %s en %s no es pot satisfer perquè no es pot trobar el paquet %s" +msgstr "" +"La dependència %s en %s no es pot satisfer perquè no es pot trobar el paquet " +"%s" -#: cmdline/apt-get.cc:3049 +#: cmdline/apt-get.cc:3051 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "No s'ha pogut satisfer la dependència %s per a %s: El paquet instaŀlat %s és " "massa nou" -#: cmdline/apt-get.cc:3088 +#: cmdline/apt-get.cc:3090 #, c-format msgid "" "%s dependency for %s cannot be satisfied because candidate version of " "package %s can't satisfy version requirements" -msgstr "La dependència %s per a %s no es pot satisfer perquè la versió candidata del paquet %s no pot satisfer els requeriments de versions" +msgstr "" +"La dependència %s per a %s no es pot satisfer perquè la versió candidata del " +"paquet %s no pot satisfer els requeriments de versions" -#: cmdline/apt-get.cc:3094 +#: cmdline/apt-get.cc:3096 #, c-format msgid "" "%s dependency for %s cannot be satisfied because package %s has no candidate " "version" -msgstr "La dependència %s en %s no es pot satisfer perquè el paquet %s no té versió candidata" +msgstr "" +"La dependència %s en %s no es pot satisfer perquè el paquet %s no té versió " +"candidata" -#: cmdline/apt-get.cc:3117 +#: cmdline/apt-get.cc:3119 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "No s'ha pogut satisfer la dependència %s per a %s: %s" -#: cmdline/apt-get.cc:3133 +#: cmdline/apt-get.cc:3135 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "No s'han pogut satisfer les dependències de construcció per a %s" -#: cmdline/apt-get.cc:3138 +#: cmdline/apt-get.cc:3140 msgid "Failed to process build dependencies" msgstr "No es poden processar les dependències de construcció" -#: cmdline/apt-get.cc:3231 cmdline/apt-get.cc:3243 +#: cmdline/apt-get.cc:3233 cmdline/apt-get.cc:3245 #, c-format msgid "Changelog for %s (%s)" msgstr "Registre de canvis per a %s (%s)" -#: cmdline/apt-get.cc:3366 +#: cmdline/apt-get.cc:3368 msgid "Supported modules:" msgstr "Mòduls suportats:" -#: cmdline/apt-get.cc:3407 +#: cmdline/apt-get.cc:3409 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1117,7 +1135,7 @@ msgstr "" "per a obtenir més informació i opcions.\n" " Aquest APT té superpoders bovins.\n" -#: cmdline/apt-get.cc:3572 +#: cmdline/apt-get.cc:3574 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1498,8 +1516,8 @@ msgstr "S'ha trobat almenys una signatura invàlida." #: methods/gpgv.cc:189 msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" msgstr "" -"No s'ha pogut executar el «gpgv» per a verificar la signatura (està instaŀlat " -"el gpgv?)" +"No s'ha pogut executar el «gpgv» per a verificar la signatura (està " +"instaŀlat el gpgv?)" #: methods/gpgv.cc:194 msgid "Unknown error executing gpgv" @@ -1722,7 +1740,7 @@ msgstr "" " -c=? Llegeix aquest fitxer de configuració\n" " -o=? Estableix una opció de conf arbitrària, p.e. -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1335 +#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1339 #, c-format msgid "Unable to write to %s" msgstr "No es pot escriure en %s" @@ -2289,7 +2307,9 @@ msgstr "No s'ha pogut truncar el fitxer %s" msgid "" "Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " "Current value: %lu. (man 5 apt.conf)" -msgstr "No hi ha espai per al «Dynamic MMap». Incrementeu la mida d'APT::Cache-Start. Valor actual: %lu. (man 5 apt.conf)" +msgstr "" +"No hi ha espai per al «Dynamic MMap». Incrementeu la mida d'APT::Cache-" +"Start. Valor actual: %lu. (man 5 apt.conf)" #: apt-pkg/contrib/mmap.cc:440 #, c-format @@ -2766,21 +2786,21 @@ msgstr "La línia %u és malformada en la llista de fonts %s (tipus)" msgid "Type '%s' is not known on line %u in source list %s" msgstr "El tipus «%s» no és conegut en la línia %u de la llista de fonts %s" -#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:896 +#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:898 #, c-format msgid "" "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " "under APT::Immediate-Configure for details. (%d)" msgstr "" -"No s'ha pogut realitzar la configuració immediata de «%s». Vegeu man 5 " -"apt.conf, sota APT::Immediate-Configure per a més detalls. (%d)" +"No s'ha pogut realitzar la configuració immediata de «%s». Vegeu man 5 apt." +"conf, sota APT::Immediate-Configure per a més detalls. (%d)" -#: apt-pkg/packagemanager.cc:473 apt-pkg/packagemanager.cc:503 +#: apt-pkg/packagemanager.cc:473 apt-pkg/packagemanager.cc:504 #, c-format msgid "Could not configure '%s'. " msgstr "No s'ha pogut configurar «%s»." -#: apt-pkg/packagemanager.cc:545 +#: apt-pkg/packagemanager.cc:546 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2818,7 +2838,7 @@ msgstr "" "No es poden corregir els problemes, teniu paquets retinguts que estan " "trencats." -#: apt-pkg/algorithms.cc:1574 apt-pkg/algorithms.cc:1576 +#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 msgid "" "Some index files failed to download. They have been ignored, or old ones " "used instead." @@ -2905,7 +2925,9 @@ msgstr "No s'ha pogut llegir la llista de les fonts." msgid "" "The value '%s' is invalid for APT::Default-Release as such a release is not " "available in the sources" -msgstr "El valor «%s» és invàlid per a APT:Default-Release donat que aquest llançament no és disponible a les fonts" +msgstr "" +"El valor «%s» és invàlid per a APT:Default-Release donat que aquest " +"llançament no és disponible a les fonts" #: apt-pkg/policy.cc:399 #, c-format @@ -2968,21 +2990,21 @@ msgid "Package %s %s was not found while processing file dependencies" msgstr "" "No s'ha trobat el paquet %s %s en processar les dependències del fitxer" -#: apt-pkg/pkgcachegen.cc:1146 +#: apt-pkg/pkgcachegen.cc:1150 #, c-format msgid "Couldn't stat source package list %s" msgstr "No s'ha pogut llegir la llista de paquets font %s" -#: apt-pkg/pkgcachegen.cc:1234 apt-pkg/pkgcachegen.cc:1338 -#: apt-pkg/pkgcachegen.cc:1344 apt-pkg/pkgcachegen.cc:1501 +#: apt-pkg/pkgcachegen.cc:1238 apt-pkg/pkgcachegen.cc:1342 +#: apt-pkg/pkgcachegen.cc:1348 apt-pkg/pkgcachegen.cc:1505 msgid "Reading package lists" msgstr "S'està llegint la llista de paquets" -#: apt-pkg/pkgcachegen.cc:1251 +#: apt-pkg/pkgcachegen.cc:1255 msgid "Collecting File Provides" msgstr "S'estan recollint els fitxers que proveeixen" -#: apt-pkg/pkgcachegen.cc:1443 apt-pkg/pkgcachegen.cc:1450 +#: apt-pkg/pkgcachegen.cc:1447 apt-pkg/pkgcachegen.cc:1454 msgid "IO Error saving source cache" msgstr "Error d'E/S en desar la memòria cau de la font" @@ -3023,7 +3045,9 @@ msgstr "No hi ha cap clau pública disponible per als següents ID de clau:\n" msgid "" "Release file for %s is expired (invalid since %s). Updates for this " "repository will not be applied." -msgstr "El fitxer Release per a %s ha caducat (invàlid des de %s). Les actualitzacions per a aquest dipòsit no s'aplicaran." +msgstr "" +"El fitxer Release per a %s ha caducat (invàlid des de %s). Les " +"actualitzacions per a aquest dipòsit no s'aplicaran." #: apt-pkg/acquire-item.cc:1488 #, c-format @@ -3573,8 +3597,8 @@ msgstr "No blocat" #~ "Please see man 5 apt.conf under APT::Immediate-Configure for details." #~ msgstr "" #~ "No s'ha pogut realitzar la configuració immediata de «%s» ja " -#~ "desempaquetat. Vegeu man 5 apt.conf, sota APT::Immediate-Configure " -#~ "per a més detalls." +#~ "desempaquetat. Vegeu man 5 apt.conf, sota APT::Immediate-Configure per a " +#~ "més detalls." #~ msgid "Error occurred while processing %s (NewPackage)" #~ msgstr "S'ha produït un error durant el processament de %s (NewPackage)" diff --git a/po/cs.po b/po/cs.po index 4ccb2f70b..9e37a046e 100644 --- a/po/cs.po +++ b/po/cs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2012-10-15 09:49+0200\n" +"POT-Creation-Date: 2013-03-14 08:05+0100\n" "PO-Revision-Date: 2012-07-08 13:46+0200\n" "Last-Translator: Miroslav Kure \n" "Language-Team: Czech \n" @@ -153,7 +153,7 @@ msgid " Version table:" msgstr " Tabulka verzí:" #: cmdline/apt-cache.cc:1683 cmdline/apt-cdrom.cc:198 cmdline/apt-config.cc:81 -#: cmdline/apt-get.cc:3361 cmdline/apt-mark.cc:375 +#: cmdline/apt-get.cc:3363 cmdline/apt-mark.cc:375 #: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:590 #: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147 #, c-format @@ -478,7 +478,7 @@ msgstr "Přeinstalace %s není možná, protože nelze stáhnout.\n" msgid "%s is already the newest version.\n" msgstr "%s je již nejnovější verze.\n" -#: cmdline/apt-get.cc:858 cmdline/apt-get.cc:2157 cmdline/apt-mark.cc:68 +#: cmdline/apt-get.cc:858 cmdline/apt-get.cc:2159 cmdline/apt-mark.cc:68 #, c-format msgid "%s set to manually installed.\n" msgstr "%s nastaven jako instalovaný ručně.\n" @@ -586,8 +586,8 @@ msgstr "Po této operaci bude na disku použito dalších %sB.\n" msgid "After this operation, %sB disk space will be freed.\n" msgstr "Po této operaci bude na disku uvolněno %sB.\n" -#: cmdline/apt-get.cc:1228 cmdline/apt-get.cc:1231 cmdline/apt-get.cc:2589 -#: cmdline/apt-get.cc:2592 +#: cmdline/apt-get.cc:1228 cmdline/apt-get.cc:1231 cmdline/apt-get.cc:2591 +#: cmdline/apt-get.cc:2594 #, c-format msgid "Couldn't determine free space in %s" msgstr "Nelze určit volné místo v %s" @@ -597,15 +597,17 @@ msgstr "Nelze určit volné místo v %s" msgid "You don't have enough free space in %s." msgstr "V %s nemáte dostatek volného místa." -#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1277 +#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1279 msgid "Trivial Only specified but this is not a trivial operation." msgstr "Udáno „pouze triviální“, ovšem toto není triviální operace." -#: cmdline/apt-get.cc:1259 +#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be +#. careful with hard to type or special characters (like non-breaking spaces) +#: cmdline/apt-get.cc:1261 msgid "Yes, do as I say!" msgstr "Ano, udělej to tak, jak říkám!" -#: cmdline/apt-get.cc:1261 +#: cmdline/apt-get.cc:1263 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -616,28 +618,28 @@ msgstr "" "Pro pokračování opište frázi „%s“\n" " ?] " -#: cmdline/apt-get.cc:1267 cmdline/apt-get.cc:1286 +#: cmdline/apt-get.cc:1269 cmdline/apt-get.cc:1288 msgid "Abort." msgstr "Přerušeno." -#: cmdline/apt-get.cc:1282 +#: cmdline/apt-get.cc:1284 msgid "Do you want to continue [Y/n]? " msgstr "Chcete pokračovat [Y/n]? " -#: cmdline/apt-get.cc:1354 cmdline/apt-get.cc:2654 apt-pkg/algorithms.cc:1548 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Selhalo stažení %s %s\n" -#: cmdline/apt-get.cc:1372 +#: cmdline/apt-get.cc:1374 msgid "Some files failed to download" msgstr "Některé soubory nemohly být staženy" -#: cmdline/apt-get.cc:1373 cmdline/apt-get.cc:2666 +#: cmdline/apt-get.cc:1375 cmdline/apt-get.cc:2668 msgid "Download complete and in download only mode" msgstr "Stahování dokončeno v režimu pouze stáhnout" -#: cmdline/apt-get.cc:1379 +#: cmdline/apt-get.cc:1381 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -645,19 +647,19 @@ msgstr "" "Nelze stáhnout některé archivy. Možná spusťte apt-get update nebo zkuste --" "fix-missing?" -#: cmdline/apt-get.cc:1383 +#: cmdline/apt-get.cc:1385 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix-missing a výměna média nejsou momentálně podporovány" -#: cmdline/apt-get.cc:1388 +#: cmdline/apt-get.cc:1390 msgid "Unable to correct missing packages." msgstr "Nelze opravit chybějící balíky." -#: cmdline/apt-get.cc:1389 +#: cmdline/apt-get.cc:1391 msgid "Aborting install." msgstr "Přerušuji instalaci." -#: cmdline/apt-get.cc:1417 +#: cmdline/apt-get.cc:1419 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -674,35 +676,35 @@ msgstr[2] "" "Následující balíky z tohoto systému zmizely, protože\n" "všechny jejich soubory byly přepsány jinými balíky:" -#: cmdline/apt-get.cc:1421 +#: cmdline/apt-get.cc:1423 msgid "Note: This is done automatically and on purpose by dpkg." msgstr "Poznámka: Toto má svůj důvod a děje se automaticky v dpkg." -#: cmdline/apt-get.cc:1559 +#: cmdline/apt-get.cc:1561 #, c-format msgid "Ignore unavailable target release '%s' of package '%s'" msgstr "Ignoruje se nedostupné vydání „%s“ balíku „%s“" -#: cmdline/apt-get.cc:1591 +#: cmdline/apt-get.cc:1593 #, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "Vybírám „%s“ jako zdrojový balík místo „%s“\n" #. if (VerTag.empty() == false && Last == 0) -#: cmdline/apt-get.cc:1629 +#: cmdline/apt-get.cc:1631 #, c-format msgid "Ignore unavailable version '%s' of package '%s'" msgstr "Ignoruje se nedostupná verze „%s“ balíku „%s“" -#: cmdline/apt-get.cc:1645 +#: cmdline/apt-get.cc:1647 msgid "The update command takes no arguments" msgstr "Příkaz update neakceptuje žádné argumenty" -#: cmdline/apt-get.cc:1711 +#: cmdline/apt-get.cc:1713 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "Neměli bychom mazat věci, nemůžu spustit AutoRemover" -#: cmdline/apt-get.cc:1815 +#: cmdline/apt-get.cc:1817 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -720,15 +722,15 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1818 cmdline/apt-get.cc:1987 +#: cmdline/apt-get.cc:1820 cmdline/apt-get.cc:1989 msgid "The following information may help to resolve the situation:" msgstr "Následující informace vám mohou pomoci vyřešit tuto situaci:" -#: cmdline/apt-get.cc:1822 +#: cmdline/apt-get.cc:1824 msgid "Internal Error, AutoRemover broke stuff" msgstr "Vnitřní chyba, AutoRemover pokazil věci" -#: cmdline/apt-get.cc:1829 +#: cmdline/apt-get.cc:1831 msgid "" "The following package was automatically installed and is no longer required:" msgid_plural "" @@ -740,7 +742,7 @@ msgstr[1] "" msgstr[2] "" "Následující balíky byly nainstalovány automaticky a již nejsou potřeba:" -#: cmdline/apt-get.cc:1833 +#: cmdline/apt-get.cc:1835 #, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -749,22 +751,22 @@ msgstr[0] "%lu balík byl nainstalován automaticky a již není potřeba.\n" msgstr[1] "%lu balíky byly nainstalovány automaticky a již nejsou potřeba.\n" msgstr[2] "%lu balíků bylo nainstalováno automaticky a již nejsou potřeba.\n" -#: cmdline/apt-get.cc:1835 +#: cmdline/apt-get.cc:1837 msgid "Use 'apt-get autoremove' to remove it." msgid_plural "Use 'apt-get autoremove' to remove them." msgstr[0] "Pro jeho odstranění použijte „apt-get autoremove“." msgstr[1] "Pro jejich odstranění použijte „apt-get autoremove“." msgstr[2] "Pro jejich odstranění použijte „apt-get autoremove“." -#: cmdline/apt-get.cc:1854 +#: cmdline/apt-get.cc:1856 msgid "Internal error, AllUpgrade broke stuff" msgstr "Vnitřní chyba, AllUpgrade pokazil věci" -#: cmdline/apt-get.cc:1953 +#: cmdline/apt-get.cc:1955 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "Pro opravení následujících můžete spustit „apt-get -f install“:" -#: cmdline/apt-get.cc:1957 +#: cmdline/apt-get.cc:1959 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -772,7 +774,7 @@ msgstr "" "Nesplněné závislosti. Zkuste spustit „apt-get -f install“ bez balíků (nebo " "navrhněte řešení)." -#: cmdline/apt-get.cc:1972 +#: cmdline/apt-get.cc:1974 msgid "" "Some packages could not be installed. This may mean that you have\n" "requested an impossible situation or if you are using the unstable\n" @@ -783,33 +785,33 @@ msgstr "" "nemožnou situaci, nebo, pokud používáte nestabilní distribuci, že\n" "vyžadované balíky ještě nebyly vytvořeny nebo přesunuty z Příchozí fronty." -#: cmdline/apt-get.cc:1993 +#: cmdline/apt-get.cc:1995 msgid "Broken packages" msgstr "Poškozené balíky" -#: cmdline/apt-get.cc:2019 +#: cmdline/apt-get.cc:2021 msgid "The following extra packages will be installed:" msgstr "Následující extra balíky budou instalovány:" -#: cmdline/apt-get.cc:2109 +#: cmdline/apt-get.cc:2111 msgid "Suggested packages:" msgstr "Navrhované balíky:" -#: cmdline/apt-get.cc:2110 +#: cmdline/apt-get.cc:2112 msgid "Recommended packages:" msgstr "Doporučované balíky:" -#: cmdline/apt-get.cc:2152 +#: cmdline/apt-get.cc:2154 #, c-format msgid "Couldn't find package %s" msgstr "Nelze najít balík %s" -#: cmdline/apt-get.cc:2159 cmdline/apt-mark.cc:70 +#: cmdline/apt-get.cc:2161 cmdline/apt-mark.cc:70 #, c-format msgid "%s set to automatically installed.\n" msgstr "%s nastaven jako instalovaný automaticky.\n" -#: cmdline/apt-get.cc:2167 cmdline/apt-mark.cc:114 +#: cmdline/apt-get.cc:2169 cmdline/apt-mark.cc:114 msgid "" "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " "instead." @@ -817,46 +819,46 @@ msgstr "" "Tento příkaz je zastaralý, použijte místo něj „apt-mark auto“ a „apt-mark " "manual“." -#: cmdline/apt-get.cc:2183 +#: cmdline/apt-get.cc:2185 msgid "Calculating upgrade... " msgstr "Propočítávám aktualizaci… " -#: cmdline/apt-get.cc:2186 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 msgid "Failed" msgstr "Selhalo" -#: cmdline/apt-get.cc:2191 +#: cmdline/apt-get.cc:2193 msgid "Done" msgstr "Hotovo" -#: cmdline/apt-get.cc:2258 cmdline/apt-get.cc:2266 +#: cmdline/apt-get.cc:2260 cmdline/apt-get.cc:2268 msgid "Internal error, problem resolver broke stuff" msgstr "Vnitřní chyba, řešitel problémů pokazil věci" -#: cmdline/apt-get.cc:2294 cmdline/apt-get.cc:2330 +#: cmdline/apt-get.cc:2296 cmdline/apt-get.cc:2332 msgid "Unable to lock the download directory" msgstr "Nelze zamknout adresář pro stahování" -#: cmdline/apt-get.cc:2386 +#: cmdline/apt-get.cc:2388 #, c-format msgid "Can't find a source to download version '%s' of '%s'" msgstr "Nelze najít zdroj pro stažení verze „%s“ balíku „%s“" -#: cmdline/apt-get.cc:2391 +#: cmdline/apt-get.cc:2393 #, c-format msgid "Downloading %s %s" msgstr "Stahuje se %s %s" -#: cmdline/apt-get.cc:2451 +#: cmdline/apt-get.cc:2453 msgid "Must specify at least one package to fetch source for" msgstr "Musíte zadat aspoň jeden balík, pro který se stáhnou zdrojové texty" -#: cmdline/apt-get.cc:2491 cmdline/apt-get.cc:2803 +#: cmdline/apt-get.cc:2493 cmdline/apt-get.cc:2805 #, c-format msgid "Unable to find a source package for %s" msgstr "Nelze najít zdrojový balík pro %s" -#: cmdline/apt-get.cc:2508 +#: cmdline/apt-get.cc:2510 #, c-format msgid "" "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" @@ -865,7 +867,7 @@ msgstr "" "INFO: Balík „%s“ je spravován v systému pro správu verzí „%s“ na:\n" "%s\n" -#: cmdline/apt-get.cc:2513 +#: cmdline/apt-get.cc:2515 #, c-format msgid "" "Please use:\n" @@ -876,70 +878,70 @@ msgstr "" "použijte:\n" "bzr branch %s\n" -#: cmdline/apt-get.cc:2566 +#: cmdline/apt-get.cc:2568 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Přeskakuji dříve stažený soubor „%s“\n" -#: cmdline/apt-get.cc:2603 +#: cmdline/apt-get.cc:2605 #, c-format msgid "You don't have enough free space in %s" msgstr "Na %s nemáte dostatek volného místa" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:2612 +#: cmdline/apt-get.cc:2614 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "Potřebuji stáhnout %sB/%sB zdrojových archivů.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:2617 +#: cmdline/apt-get.cc:2619 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Potřebuji stáhnout %sB zdrojových archivů.\n" -#: cmdline/apt-get.cc:2623 +#: cmdline/apt-get.cc:2625 #, c-format msgid "Fetch source %s\n" msgstr "Stažení zdroje %s\n" -#: cmdline/apt-get.cc:2661 +#: cmdline/apt-get.cc:2663 msgid "Failed to fetch some archives." msgstr "Stažení některých archivů selhalo." -#: cmdline/apt-get.cc:2692 +#: cmdline/apt-get.cc:2694 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "Přeskakuji rozbalení již rozbaleného zdroje v %s\n" -#: cmdline/apt-get.cc:2704 +#: cmdline/apt-get.cc:2706 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Příkaz pro rozbalení „%s“ selhal.\n" -#: cmdline/apt-get.cc:2705 +#: cmdline/apt-get.cc:2707 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "Zkontrolujte, zda je nainstalován balíček „dpkg-dev“.\n" -#: cmdline/apt-get.cc:2727 +#: cmdline/apt-get.cc:2729 #, c-format msgid "Build command '%s' failed.\n" msgstr "Příkaz pro sestavení „%s“ selhal.\n" -#: cmdline/apt-get.cc:2747 +#: cmdline/apt-get.cc:2749 msgid "Child process failed" msgstr "Synovský proces selhal" -#: cmdline/apt-get.cc:2766 +#: cmdline/apt-get.cc:2768 msgid "Must specify at least one package to check builddeps for" msgstr "" "Musíte zadat alespoň jeden balík, pro který budou kontrolovány závislosti " "pro sestavení" -#: cmdline/apt-get.cc:2791 +#: cmdline/apt-get.cc:2793 #, c-format msgid "" "No architecture information available for %s. See apt.conf(5) APT::" @@ -948,17 +950,17 @@ msgstr "" "O architektuře %s nejsou známy žádné informace. Pro nastavení si přečtěte " "část APT::Architectures v manuálové stránce apt.conf(5)" -#: cmdline/apt-get.cc:2815 cmdline/apt-get.cc:2818 +#: cmdline/apt-get.cc:2817 cmdline/apt-get.cc:2820 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "Nelze získat závislosti pro sestavení %s" -#: cmdline/apt-get.cc:2838 +#: cmdline/apt-get.cc:2840 #, c-format msgid "%s has no build depends.\n" msgstr "%s nemá žádné závislosti pro sestavení.\n" -#: cmdline/apt-get.cc:3008 +#: cmdline/apt-get.cc:3010 #, c-format msgid "" "%s dependency for %s can't be satisfied because %s is not allowed on '%s' " @@ -967,20 +969,20 @@ msgstr "" "závislost %s pro %s nemůže být splněna, protože %s není na balících „%s“ " "dovolena" -#: cmdline/apt-get.cc:3026 +#: cmdline/apt-get.cc:3028 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " "found" msgstr "závislost %s pro %s nemůže být splněna, protože balík %s nebyl nalezen" -#: cmdline/apt-get.cc:3049 +#: cmdline/apt-get.cc:3051 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "Selhalo splnění závislosti %s pro %s: Instalovaný balík %s je příliš nový" -#: cmdline/apt-get.cc:3088 +#: cmdline/apt-get.cc:3090 #, c-format msgid "" "%s dependency for %s cannot be satisfied because candidate version of " @@ -989,7 +991,7 @@ msgstr "" "závislost %s pro %s nemůže být splněna, protože kandidátská verze balíku %s " "nesplňuje požadavek na verzi" -#: cmdline/apt-get.cc:3094 +#: cmdline/apt-get.cc:3096 #, c-format msgid "" "%s dependency for %s cannot be satisfied because package %s has no candidate " @@ -998,30 +1000,30 @@ msgstr "" "závislost %s pro %s nemůže být splněna, protože balík %s nemá kandidátskou " "verzi" -#: cmdline/apt-get.cc:3117 +#: cmdline/apt-get.cc:3119 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "Selhalo splnění závislosti %s pro %s: %s" -#: cmdline/apt-get.cc:3133 +#: cmdline/apt-get.cc:3135 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "Závislosti pro sestavení %s nemohly být splněny." -#: cmdline/apt-get.cc:3138 +#: cmdline/apt-get.cc:3140 msgid "Failed to process build dependencies" msgstr "Chyba při zpracování závislostí pro sestavení" -#: cmdline/apt-get.cc:3231 cmdline/apt-get.cc:3243 +#: cmdline/apt-get.cc:3233 cmdline/apt-get.cc:3245 #, c-format msgid "Changelog for %s (%s)" msgstr "Seznam změn %s (%s)" -#: cmdline/apt-get.cc:3366 +#: cmdline/apt-get.cc:3368 msgid "Supported modules:" msgstr "Podporované moduly:" -#: cmdline/apt-get.cc:3407 +#: cmdline/apt-get.cc:3409 msgid "" "Usage: apt-get [options] command\n" " apt-get [options] install|remove pkg1 [pkg2 ...]\n" @@ -1108,7 +1110,7 @@ msgstr "" "a apt.conf(5).\n" " Tato APT má schopnosti svaté krávy.\n" -#: cmdline/apt-get.cc:3572 +#: cmdline/apt-get.cc:3574 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1719,7 +1721,7 @@ msgstr "" " -c=? Načte tento konfigurační soubor\n" " -o=? Nastaví libovolnou volbu, např. -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1335 +#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1339 #, c-format msgid "Unable to write to %s" msgstr "Nelze zapsat do %s" @@ -2754,7 +2756,7 @@ msgstr "Zkomolený řádek %u v seznamu zdrojů %s (typ)" msgid "Type '%s' is not known on line %u in source list %s" msgstr "Typ „%s“ na řádce %u v seznamu zdrojů %s není známý" -#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:896 +#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:898 #, c-format msgid "" "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " @@ -2763,12 +2765,12 @@ msgstr "" "Nelze spustit okamžitou konfiguraci balíku „%s“. Podrobnosti naleznete v man " "5 apt.conf v části APT::Immediate-Configure. (%d)" -#: apt-pkg/packagemanager.cc:473 apt-pkg/packagemanager.cc:503 +#: apt-pkg/packagemanager.cc:473 apt-pkg/packagemanager.cc:504 #, c-format msgid "Could not configure '%s'. " msgstr "Nelze nastavit „%s“." -#: apt-pkg/packagemanager.cc:545 +#: apt-pkg/packagemanager.cc:546 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2802,7 +2804,7 @@ msgstr "" msgid "Unable to correct problems, you have held broken packages." msgstr "Nelze opravit problémy, některé balíky držíte v porouchaném stavu." -#: apt-pkg/algorithms.cc:1574 apt-pkg/algorithms.cc:1576 +#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 msgid "" "Some index files failed to download. They have been ignored, or old ones " "used instead." @@ -2946,21 +2948,21 @@ msgstr "Wow, překročili jste počet závislostí, které tato APT umí zpracov msgid "Package %s %s was not found while processing file dependencies" msgstr "Při zpracování závislostí nebyl nalezen balík %s %s" -#: apt-pkg/pkgcachegen.cc:1146 +#: apt-pkg/pkgcachegen.cc:1150 #, c-format msgid "Couldn't stat source package list %s" msgstr "Nešlo vyhodnotit seznam zdrojových balíků %s" -#: apt-pkg/pkgcachegen.cc:1234 apt-pkg/pkgcachegen.cc:1338 -#: apt-pkg/pkgcachegen.cc:1344 apt-pkg/pkgcachegen.cc:1501 +#: apt-pkg/pkgcachegen.cc:1238 apt-pkg/pkgcachegen.cc:1342 +#: apt-pkg/pkgcachegen.cc:1348 apt-pkg/pkgcachegen.cc:1505 msgid "Reading package lists" msgstr "Čtu seznamy balíků" -#: apt-pkg/pkgcachegen.cc:1251 +#: apt-pkg/pkgcachegen.cc:1255 msgid "Collecting File Provides" msgstr "Collecting File poskytuje" -#: apt-pkg/pkgcachegen.cc:1443 apt-pkg/pkgcachegen.cc:1450 +#: apt-pkg/pkgcachegen.cc:1447 apt-pkg/pkgcachegen.cc:1454 msgid "IO Error saving source cache" msgstr "Chyba IO při ukládání zdrojové cache" diff --git a/po/cy.po b/po/cy.po index 22bc9f403..d519064f4 100644 --- a/po/cy.po +++ b/po/cy.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: APT\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2012-10-15 09:49+0200\n" +"POT-Creation-Date: 2013-03-14 08:05+0100\n" "PO-Revision-Date: 2005-06-06 13:46+0100\n" "Last-Translator: Dafydd Harries \n" "Language-Team: Welsh \n" @@ -172,7 +172,7 @@ msgid " Version table:" msgstr " Tabl Fersiynnau:" #: cmdline/apt-cache.cc:1683 cmdline/apt-cdrom.cc:198 cmdline/apt-config.cc:81 -#: cmdline/apt-get.cc:3361 cmdline/apt-mark.cc:375 +#: cmdline/apt-get.cc:3363 cmdline/apt-mark.cc:375 #: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:590 #: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147 #, fuzzy, c-format @@ -511,7 +511,7 @@ msgstr "Nid yw ailsefydlu %s yn bosib, gan ni ellir ei lawrlwytho.\n" msgid "%s is already the newest version.\n" msgstr "Mae %s y fersiwn mwyaf newydd eisioes.\n" -#: cmdline/apt-get.cc:858 cmdline/apt-get.cc:2157 cmdline/apt-mark.cc:68 +#: cmdline/apt-get.cc:858 cmdline/apt-get.cc:2159 cmdline/apt-mark.cc:68 #, fuzzy, c-format msgid "%s set to manually installed.\n" msgstr "ond mae %s yn mynd i gael ei sefydlu" @@ -622,8 +622,8 @@ msgstr "Ar ôl dadbacio defnyddir %sB o ofod disg ychwanegol.\n" msgid "After this operation, %sB disk space will be freed.\n" msgstr "Ar ôl dadbactio caiff %sB o ofod disg ei rhyddhau.\n" -#: cmdline/apt-get.cc:1228 cmdline/apt-get.cc:1231 cmdline/apt-get.cc:2589 -#: cmdline/apt-get.cc:2592 +#: cmdline/apt-get.cc:1228 cmdline/apt-get.cc:1231 cmdline/apt-get.cc:2591 +#: cmdline/apt-get.cc:2594 #, fuzzy, c-format msgid "Couldn't determine free space in %s" msgstr "Does dim digon o le rhydd yn %s gennych" @@ -633,15 +633,17 @@ msgstr "Does dim digon o le rhydd yn %s gennych" msgid "You don't have enough free space in %s." msgstr "Does dim digon o le rhydd gennych yn %s." -#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1277 +#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1279 msgid "Trivial Only specified but this is not a trivial operation." msgstr "Penodwyd Syml Yn Unig ond nid yw hyn yn weithred syml." -#: cmdline/apt-get.cc:1259 +#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be +#. careful with hard to type or special characters (like non-breaking spaces) +#: cmdline/apt-get.cc:1261 msgid "Yes, do as I say!" msgstr "Ie, gwna fel rydw i'n dweud!" -#: cmdline/apt-get.cc:1261 +#: cmdline/apt-get.cc:1263 #, fuzzy, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -652,29 +654,29 @@ msgstr "" "Er mwyn mynd ymlaen, teipiwch y frawddeg '%s'\n" " ?]" -#: cmdline/apt-get.cc:1267 cmdline/apt-get.cc:1286 +#: cmdline/apt-get.cc:1269 cmdline/apt-get.cc:1288 msgid "Abort." msgstr "Erthylu." -#: cmdline/apt-get.cc:1282 +#: cmdline/apt-get.cc:1284 #, fuzzy msgid "Do you want to continue [Y/n]? " msgstr "Ydych chi eisiau mynd ymlaen? [Y/n] " -#: cmdline/apt-get.cc:1354 cmdline/apt-get.cc:2654 apt-pkg/algorithms.cc:1548 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Methwyd cyrchu %s %s\n" -#: cmdline/apt-get.cc:1372 +#: cmdline/apt-get.cc:1374 msgid "Some files failed to download" msgstr "Methodd rhai ffeiliau lawrlwytho" -#: cmdline/apt-get.cc:1373 cmdline/apt-get.cc:2666 +#: cmdline/apt-get.cc:1375 cmdline/apt-get.cc:2668 msgid "Download complete and in download only mode" msgstr "Lawrlwytho yn gyflawn ac yn y modd lawrlwytho'n unig" -#: cmdline/apt-get.cc:1379 +#: cmdline/apt-get.cc:1381 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -682,20 +684,20 @@ msgstr "" "Ni ellir cyrchu rhai archifau, efallai dylwch rhedeg apt-get update, neu " "geidio defnyddio --fix-missing?" -#: cmdline/apt-get.cc:1383 +#: cmdline/apt-get.cc:1385 msgid "--fix-missing and media swapping is not currently supported" msgstr "Ni chynhelir cyfnewid cyfrwng efo --fix-missing ar hyn o bryd" -#: cmdline/apt-get.cc:1388 +#: cmdline/apt-get.cc:1390 msgid "Unable to correct missing packages." msgstr "Ni ellir cywiro pecynnau ar goll." -#: cmdline/apt-get.cc:1389 +#: cmdline/apt-get.cc:1391 #, fuzzy msgid "Aborting install." msgstr "Yn Erthylu'r Sefydliad." -#: cmdline/apt-get.cc:1417 +#: cmdline/apt-get.cc:1419 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -705,35 +707,35 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: cmdline/apt-get.cc:1421 +#: cmdline/apt-get.cc:1423 msgid "Note: This is done automatically and on purpose by dpkg." msgstr "" -#: cmdline/apt-get.cc:1559 +#: cmdline/apt-get.cc:1561 #, c-format msgid "Ignore unavailable target release '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:1591 +#: cmdline/apt-get.cc:1593 #, fuzzy, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "Methwyd stat() o'r rhestr pecyn ffynhonell %s" #. if (VerTag.empty() == false && Last == 0) -#: cmdline/apt-get.cc:1629 +#: cmdline/apt-get.cc:1631 #, c-format msgid "Ignore unavailable version '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:1645 +#: cmdline/apt-get.cc:1647 msgid "The update command takes no arguments" msgstr "Nid yw'r gorchymyn diweddaru yn derbyn ymresymiadau" -#: cmdline/apt-get.cc:1711 +#: cmdline/apt-get.cc:1713 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -#: cmdline/apt-get.cc:1815 +#: cmdline/apt-get.cc:1817 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -749,16 +751,16 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1818 cmdline/apt-get.cc:1987 +#: cmdline/apt-get.cc:1820 cmdline/apt-get.cc:1989 msgid "The following information may help to resolve the situation:" msgstr "Gall y wybodaeth canlynol gynorthwyo'n datrys y sefyllfa:" -#: cmdline/apt-get.cc:1822 +#: cmdline/apt-get.cc:1824 #, fuzzy msgid "Internal Error, AutoRemover broke stuff" msgstr "Gwall Mewnol, torrodd AllUpgrade bethau" -#: cmdline/apt-get.cc:1829 +#: cmdline/apt-get.cc:1831 #, fuzzy msgid "" "The following package was automatically installed and is no longer required:" @@ -768,7 +770,7 @@ msgid_plural "" msgstr[0] "Caiff y pecynnau NEWYDD canlynol eu sefydlu:" msgstr[1] "Caiff y pecynnau NEWYDD canlynol eu sefydlu:" -#: cmdline/apt-get.cc:1833 +#: cmdline/apt-get.cc:1835 #, fuzzy, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -776,23 +778,23 @@ msgid_plural "" msgstr[0] "Caiff y pecynnau NEWYDD canlynol eu sefydlu:" msgstr[1] "Caiff y pecynnau NEWYDD canlynol eu sefydlu:" -#: cmdline/apt-get.cc:1835 +#: cmdline/apt-get.cc:1837 msgid "Use 'apt-get autoremove' to remove it." msgid_plural "Use 'apt-get autoremove' to remove them." msgstr[0] "" msgstr[1] "" -#: cmdline/apt-get.cc:1854 +#: cmdline/apt-get.cc:1856 #, fuzzy msgid "Internal error, AllUpgrade broke stuff" msgstr "Gwall Mewnol, torrodd AllUpgrade bethau" -#: cmdline/apt-get.cc:1953 +#: cmdline/apt-get.cc:1955 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "Efallai hoffech rhedeg 'apt-get -f install' er mwyn cywiro'r rhain:" # FIXME -#: cmdline/apt-get.cc:1957 +#: cmdline/apt-get.cc:1959 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -801,7 +803,7 @@ msgstr "" "pecyn (neu penodwch ddatrys)" # FIXME: needs commas -#: cmdline/apt-get.cc:1972 +#: cmdline/apt-get.cc:1974 msgid "" "Some packages could not be installed. This may mean that you have\n" "requested an impossible situation or if you are using the unstable\n" @@ -813,87 +815,87 @@ msgstr "" "ansefydlog, fod rhai pecynnau angenrheidiol heb gael eu creu eto neu\n" "heb gael eu symud allan o Incoming." -#: cmdline/apt-get.cc:1993 +#: cmdline/apt-get.cc:1995 msgid "Broken packages" msgstr "Pecynnau wedi torri" -#: cmdline/apt-get.cc:2019 +#: cmdline/apt-get.cc:2021 msgid "The following extra packages will be installed:" msgstr "Caiff y pecynnau canlynol ychwanegol eu sefydlu:" -#: cmdline/apt-get.cc:2109 +#: cmdline/apt-get.cc:2111 msgid "Suggested packages:" msgstr "Pecynnau a awgrymmir:" -#: cmdline/apt-get.cc:2110 +#: cmdline/apt-get.cc:2112 msgid "Recommended packages:" msgstr "Pecynnau a argymhellir:" -#: cmdline/apt-get.cc:2152 +#: cmdline/apt-get.cc:2154 #, c-format msgid "Couldn't find package %s" msgstr "Methwyd canfod pecyn %s" -#: cmdline/apt-get.cc:2159 cmdline/apt-mark.cc:70 +#: cmdline/apt-get.cc:2161 cmdline/apt-mark.cc:70 #, fuzzy, c-format msgid "%s set to automatically installed.\n" msgstr "ond mae %s yn mynd i gael ei sefydlu" -#: cmdline/apt-get.cc:2167 cmdline/apt-mark.cc:114 +#: cmdline/apt-get.cc:2169 cmdline/apt-mark.cc:114 msgid "" "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " "instead." msgstr "" -#: cmdline/apt-get.cc:2183 +#: cmdline/apt-get.cc:2185 #, fuzzy msgid "Calculating upgrade... " msgstr "Yn Cyfrifo'r Uwchraddiad... " -#: cmdline/apt-get.cc:2186 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 msgid "Failed" msgstr "Methwyd" -#: cmdline/apt-get.cc:2191 +#: cmdline/apt-get.cc:2193 msgid "Done" msgstr "Wedi Gorffen" -#: cmdline/apt-get.cc:2258 cmdline/apt-get.cc:2266 +#: cmdline/apt-get.cc:2260 cmdline/apt-get.cc:2268 #, fuzzy msgid "Internal error, problem resolver broke stuff" msgstr "Gwall Mewnol, torrodd AllUpgrade bethau" -#: cmdline/apt-get.cc:2294 cmdline/apt-get.cc:2330 +#: cmdline/apt-get.cc:2296 cmdline/apt-get.cc:2332 msgid "Unable to lock the download directory" msgstr "Ni ellir cloi'r cyfeiriadur lawrlwytho" -#: cmdline/apt-get.cc:2386 +#: cmdline/apt-get.cc:2388 #, c-format msgid "Can't find a source to download version '%s' of '%s'" msgstr "" -#: cmdline/apt-get.cc:2391 +#: cmdline/apt-get.cc:2393 #, c-format msgid "Downloading %s %s" msgstr "" -#: cmdline/apt-get.cc:2451 +#: cmdline/apt-get.cc:2453 msgid "Must specify at least one package to fetch source for" msgstr "Rhaid penodi o leiaf un pecyn i gyrchi ffynhonell ar ei gyfer" -#: cmdline/apt-get.cc:2491 cmdline/apt-get.cc:2803 +#: cmdline/apt-get.cc:2493 cmdline/apt-get.cc:2805 #, c-format msgid "Unable to find a source package for %s" msgstr "Ni ellir canfod pecyn ffynhonell ar gyfer %s" -#: cmdline/apt-get.cc:2508 +#: cmdline/apt-get.cc:2510 #, c-format msgid "" "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" "%s\n" msgstr "" -#: cmdline/apt-get.cc:2513 +#: cmdline/apt-get.cc:2515 #, c-format msgid "" "Please use:\n" @@ -901,86 +903,86 @@ msgid "" "to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -#: cmdline/apt-get.cc:2566 +#: cmdline/apt-get.cc:2568 #, fuzzy, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Yn hepgor dadbacio y ffynhonell wedi ei dadbacio eisioes yn %s\n" -#: cmdline/apt-get.cc:2603 +#: cmdline/apt-get.cc:2605 #, c-format msgid "You don't have enough free space in %s" msgstr "Does dim digon o le rhydd yn %s gennych" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:2612 +#: cmdline/apt-get.cc:2614 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "Rhaid cyrchu %sB/%sB o archifau ffynhonell.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:2617 +#: cmdline/apt-get.cc:2619 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Rhaid cyrchu %sB o archifau ffynhonell.\n" -#: cmdline/apt-get.cc:2623 +#: cmdline/apt-get.cc:2625 #, fuzzy, c-format msgid "Fetch source %s\n" msgstr "Cyrchu Ffynhonell %s\n" -#: cmdline/apt-get.cc:2661 +#: cmdline/apt-get.cc:2663 msgid "Failed to fetch some archives." msgstr "Methwyd cyrchu rhai archifau." -#: cmdline/apt-get.cc:2692 +#: cmdline/apt-get.cc:2694 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "Yn hepgor dadbacio y ffynhonell wedi ei dadbacio eisioes yn %s\n" -#: cmdline/apt-get.cc:2704 +#: cmdline/apt-get.cc:2706 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Methodd y gorchymyn dadbacio '%s'.\n" -#: cmdline/apt-get.cc:2705 +#: cmdline/apt-get.cc:2707 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "" -#: cmdline/apt-get.cc:2727 +#: cmdline/apt-get.cc:2729 #, c-format msgid "Build command '%s' failed.\n" msgstr "Methodd y gorchymyn adeiladu '%s'.\n" -#: cmdline/apt-get.cc:2747 +#: cmdline/apt-get.cc:2749 msgid "Child process failed" msgstr "Methodd proses plentyn" -#: cmdline/apt-get.cc:2766 +#: cmdline/apt-get.cc:2768 msgid "Must specify at least one package to check builddeps for" msgstr "" "Rhaid penodi o leiaf un pecyn i wirio dibyniaethau adeiladu ar eu cyfer" -#: cmdline/apt-get.cc:2791 +#: cmdline/apt-get.cc:2793 #, c-format msgid "" "No architecture information available for %s. See apt.conf(5) APT::" "Architectures for setup" msgstr "" -#: cmdline/apt-get.cc:2815 cmdline/apt-get.cc:2818 +#: cmdline/apt-get.cc:2817 cmdline/apt-get.cc:2820 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "Ni ellir cyrchu manylion dibyniaeth adeiladu ar gyfer %s" -#: cmdline/apt-get.cc:2838 +#: cmdline/apt-get.cc:2840 #, c-format msgid "%s has no build depends.\n" msgstr "Nid oes dibyniaethau adeiladu gan %s.\n" -#: cmdline/apt-get.cc:3008 +#: cmdline/apt-get.cc:3010 #, fuzzy, c-format msgid "" "%s dependency for %s can't be satisfied because %s is not allowed on '%s' " @@ -989,7 +991,7 @@ msgstr "" "Ni ellir bodloni dibyniaeth %s ar gyfer %s oherwydd ni ellir canfod y pecyn " "%s" -#: cmdline/apt-get.cc:3026 +#: cmdline/apt-get.cc:3028 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -998,14 +1000,14 @@ msgstr "" "Ni ellir bodloni dibyniaeth %s ar gyfer %s oherwydd ni ellir canfod y pecyn " "%s" -#: cmdline/apt-get.cc:3049 +#: cmdline/apt-get.cc:3051 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "Methwyd bodloni dibynniaeth %s am %s: Mae'r pecyn sefydliedig %s yn rhy " "newydd" -#: cmdline/apt-get.cc:3088 +#: cmdline/apt-get.cc:3090 #, fuzzy, c-format msgid "" "%s dependency for %s cannot be satisfied because candidate version of " @@ -1014,7 +1016,7 @@ msgstr "" "Ni ellir bodloni'r dibyniaeth %s ar gyfer %s oherwydd does dim fersiwn sydd " "ar gael o'r pecyn %s yn gallu bodloni'r gofynion ferswin" -#: cmdline/apt-get.cc:3094 +#: cmdline/apt-get.cc:3096 #, fuzzy, c-format msgid "" "%s dependency for %s cannot be satisfied because package %s has no candidate " @@ -1023,32 +1025,32 @@ msgstr "" "Ni ellir bodloni dibyniaeth %s ar gyfer %s oherwydd ni ellir canfod y pecyn " "%s" -#: cmdline/apt-get.cc:3117 +#: cmdline/apt-get.cc:3119 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "Methwyd bodloni dibyniaeth %s am %s: %s" -#: cmdline/apt-get.cc:3133 +#: cmdline/apt-get.cc:3135 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "Methwyd bodloni'r dibyniaethau adeiladu ar gyfer %s." -#: cmdline/apt-get.cc:3138 +#: cmdline/apt-get.cc:3140 msgid "Failed to process build dependencies" msgstr "Methwyd prosesu dibyniaethau adeiladu" -#: cmdline/apt-get.cc:3231 cmdline/apt-get.cc:3243 +#: cmdline/apt-get.cc:3233 cmdline/apt-get.cc:3245 #, fuzzy, c-format msgid "Changelog for %s (%s)" msgstr "Yn cysylltu i %s (%s)" -#: cmdline/apt-get.cc:3366 +#: cmdline/apt-get.cc:3368 #, fuzzy msgid "Supported modules:" msgstr "Modylau a Gynhelir:" # FIXME: split -#: cmdline/apt-get.cc:3407 +#: cmdline/apt-get.cc:3409 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1135,7 +1137,7 @@ msgstr "" "\n" " Mae gan yr APT hwn bŵerau buwch hudol.\n" -#: cmdline/apt-get.cc:3572 +#: cmdline/apt-get.cc:3574 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1741,7 +1743,7 @@ msgstr "" " -c=? Darllen y ffeil cyfluniad hwn\n" " -o=? Gosod opsiwn cyfluniad mympwyol e.e. -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1335 +#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1339 #, c-format msgid "Unable to write to %s" msgstr "Ni ellir ysgrifennu i %s" @@ -2804,20 +2806,20 @@ msgstr "Llinell camffurfiol %u yn y rhestr ffynhonell %s (math)" msgid "Type '%s' is not known on line %u in source list %s" msgstr "Mae'r math '%s' yn anhysbys ar linell %u yn y rhestr ffynhonell %s" -#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:896 +#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:898 #, c-format msgid "" "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " "under APT::Immediate-Configure for details. (%d)" msgstr "" -#: apt-pkg/packagemanager.cc:473 apt-pkg/packagemanager.cc:503 +#: apt-pkg/packagemanager.cc:473 apt-pkg/packagemanager.cc:504 #, fuzzy, c-format msgid "Could not configure '%s'. " msgstr "Methwyd agor ffeil %s" # FIXME: %s may have an arbirrary length -#: apt-pkg/packagemanager.cc:545 +#: apt-pkg/packagemanager.cc:546 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2854,7 +2856,7 @@ msgid "Unable to correct problems, you have held broken packages." msgstr "" "Ni ellir cywiro'r problemau gan eich bod chi wedi dal pecynnau torredig." -#: apt-pkg/algorithms.cc:1574 apt-pkg/algorithms.cc:1576 +#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 #, fuzzy msgid "" "Some index files failed to download. They have been ignored, or old ones " @@ -3006,22 +3008,22 @@ msgstr "" msgid "Package %s %s was not found while processing file dependencies" msgstr "Ni chanfuwyd pecyn %s %s wrth brosesu dibyniaethau ffeil" -#: apt-pkg/pkgcachegen.cc:1146 +#: apt-pkg/pkgcachegen.cc:1150 #, c-format msgid "Couldn't stat source package list %s" msgstr "Methwyd stat() o'r rhestr pecyn ffynhonell %s" -#: apt-pkg/pkgcachegen.cc:1234 apt-pkg/pkgcachegen.cc:1338 -#: apt-pkg/pkgcachegen.cc:1344 apt-pkg/pkgcachegen.cc:1501 +#: apt-pkg/pkgcachegen.cc:1238 apt-pkg/pkgcachegen.cc:1342 +#: apt-pkg/pkgcachegen.cc:1348 apt-pkg/pkgcachegen.cc:1505 #, fuzzy msgid "Reading package lists" msgstr "Yn Darllen Rhestrau Pecynnau" -#: apt-pkg/pkgcachegen.cc:1251 +#: apt-pkg/pkgcachegen.cc:1255 msgid "Collecting File Provides" msgstr "Yn Casglu Darpariaethau Ffeil" -#: apt-pkg/pkgcachegen.cc:1443 apt-pkg/pkgcachegen.cc:1450 +#: apt-pkg/pkgcachegen.cc:1447 apt-pkg/pkgcachegen.cc:1454 msgid "IO Error saving source cache" msgstr "Gwall M/A wrth gadw'r storfa ffynhonell" diff --git a/po/da.po b/po/da.po index 419f80cf9..fe982be16 100644 --- a/po/da.po +++ b/po/da.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2012-10-15 09:49+0200\n" +"POT-Creation-Date: 2013-03-14 08:05+0100\n" "PO-Revision-Date: 2012-07-03 23:51+0200\n" "Last-Translator: Joe Hansen \n" "Language-Team: Danish \n" @@ -159,7 +159,7 @@ msgid " Version table:" msgstr " Versionstabel:" #: cmdline/apt-cache.cc:1683 cmdline/apt-cdrom.cc:198 cmdline/apt-config.cc:81 -#: cmdline/apt-get.cc:3361 cmdline/apt-mark.cc:375 +#: cmdline/apt-get.cc:3363 cmdline/apt-mark.cc:375 #: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:590 #: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147 #, c-format @@ -488,7 +488,7 @@ msgstr "Geninstallering af %s er ikke mulig, da den ikke kan hentes.\n" msgid "%s is already the newest version.\n" msgstr "%s er i forvejen den nyeste version.\n" -#: cmdline/apt-get.cc:858 cmdline/apt-get.cc:2157 cmdline/apt-mark.cc:68 +#: cmdline/apt-get.cc:858 cmdline/apt-get.cc:2159 cmdline/apt-mark.cc:68 #, c-format msgid "%s set to manually installed.\n" msgstr "%s sat til manuelt installeret.\n" @@ -595,8 +595,8 @@ msgstr "Efter denne handling, vil %sB yderligere diskplads være brugt.\n" msgid "After this operation, %sB disk space will be freed.\n" msgstr "Efter denne handling, vil %sB diskplads blive frigjort.\n" -#: cmdline/apt-get.cc:1228 cmdline/apt-get.cc:1231 cmdline/apt-get.cc:2589 -#: cmdline/apt-get.cc:2592 +#: cmdline/apt-get.cc:1228 cmdline/apt-get.cc:1231 cmdline/apt-get.cc:2591 +#: cmdline/apt-get.cc:2594 #, c-format msgid "Couldn't determine free space in %s" msgstr "Kunne ikke bestemme ledig plads i %s" @@ -606,15 +606,17 @@ msgstr "Kunne ikke bestemme ledig plads i %s" msgid "You don't have enough free space in %s." msgstr "Du har ikke nok ledig plads i %s." -#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1277 +#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1279 msgid "Trivial Only specified but this is not a trivial operation." msgstr "'Trivial Only' angivet, men dette er ikke en triviel handling." -#: cmdline/apt-get.cc:1259 +#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be +#. careful with hard to type or special characters (like non-breaking spaces) +#: cmdline/apt-get.cc:1261 msgid "Yes, do as I say!" msgstr "Ja, gør som jeg siger!" -#: cmdline/apt-get.cc:1261 +#: cmdline/apt-get.cc:1263 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -625,28 +627,28 @@ msgstr "" "For at fortsætte, skal du skrive '%s'\n" " ?] " -#: cmdline/apt-get.cc:1267 cmdline/apt-get.cc:1286 +#: cmdline/apt-get.cc:1269 cmdline/apt-get.cc:1288 msgid "Abort." msgstr "Afbryder." -#: cmdline/apt-get.cc:1282 +#: cmdline/apt-get.cc:1284 msgid "Do you want to continue [Y/n]? " msgstr "Vil du fortsætte [J/n]? " -#: cmdline/apt-get.cc:1354 cmdline/apt-get.cc:2654 apt-pkg/algorithms.cc:1548 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Kunne ikke hente %s %s\n" -#: cmdline/apt-get.cc:1372 +#: cmdline/apt-get.cc:1374 msgid "Some files failed to download" msgstr "Nedhentningen af filer mislykkedes" -#: cmdline/apt-get.cc:1373 cmdline/apt-get.cc:2666 +#: cmdline/apt-get.cc:1375 cmdline/apt-get.cc:2668 msgid "Download complete and in download only mode" msgstr "Nedhentning afsluttet i 'hent-kun'-tilstand" -#: cmdline/apt-get.cc:1379 +#: cmdline/apt-get.cc:1381 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -654,19 +656,19 @@ msgstr "" "Kunne ikke hente nogle af arkiverne. Prøv evt. at køre 'apt-get update' " "eller prøv med --fix-missing." -#: cmdline/apt-get.cc:1383 +#: cmdline/apt-get.cc:1385 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix-missing og medieskift understøttes endnu ikke" -#: cmdline/apt-get.cc:1388 +#: cmdline/apt-get.cc:1390 msgid "Unable to correct missing packages." msgstr "Kunne ikke rette manglende pakker." -#: cmdline/apt-get.cc:1389 +#: cmdline/apt-get.cc:1391 msgid "Aborting install." msgstr "Afbryder installationen." -#: cmdline/apt-get.cc:1417 +#: cmdline/apt-get.cc:1419 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -680,37 +682,37 @@ msgstr[1] "" "De følgende pakker forsvandt fra dit system, da\n" "alle filer er blevet overskrevet af andre pakker:" -#: cmdline/apt-get.cc:1421 +#: cmdline/apt-get.cc:1423 msgid "Note: This is done automatically and on purpose by dpkg." msgstr "Bemærk: Dette sker automatisk og med vilje af dpkg." -#: cmdline/apt-get.cc:1559 +#: cmdline/apt-get.cc:1561 #, c-format msgid "Ignore unavailable target release '%s' of package '%s'" msgstr "Ignorer utilgængelig måludgivelse '%s' af pakke '%s'" -#: cmdline/apt-get.cc:1591 +#: cmdline/apt-get.cc:1593 #, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "Vælger '%s' som kildepakke fremfor '%s'\n" #. if (VerTag.empty() == false && Last == 0) -#: cmdline/apt-get.cc:1629 +#: cmdline/apt-get.cc:1631 #, c-format msgid "Ignore unavailable version '%s' of package '%s'" msgstr "Ignorer utilgængelig version '%s' af pakke '%s'" -#: cmdline/apt-get.cc:1645 +#: cmdline/apt-get.cc:1647 msgid "The update command takes no arguments" msgstr "'update'-kommandoen benytter ingen parametre" -#: cmdline/apt-get.cc:1711 +#: cmdline/apt-get.cc:1713 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" "Det er ikke meningen, at vi skal slette ting og sager, kan ikke starte " "AutoRemover" -#: cmdline/apt-get.cc:1815 +#: cmdline/apt-get.cc:1817 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -728,15 +730,15 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1818 cmdline/apt-get.cc:1987 +#: cmdline/apt-get.cc:1820 cmdline/apt-get.cc:1989 msgid "The following information may help to resolve the situation:" msgstr "Følgende oplysninger kan hjælpe dig med at klare situationen:" -#: cmdline/apt-get.cc:1822 +#: cmdline/apt-get.cc:1824 msgid "Internal Error, AutoRemover broke stuff" msgstr "Intern fejl. AutoRemover ødelagde noget" -#: cmdline/apt-get.cc:1829 +#: cmdline/apt-get.cc:1831 msgid "" "The following package was automatically installed and is no longer required:" msgid_plural "" @@ -747,7 +749,7 @@ msgstr[0] "" msgstr[1] "" "Følgende pakker blev installeret automatisk, og behøves ikke længere:" -#: cmdline/apt-get.cc:1833 +#: cmdline/apt-get.cc:1835 #, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -756,21 +758,21 @@ msgstr[0] "Pakken %lu blev installeret automatisk, og behøves ikke længere.\n" msgstr[1] "" "Pakkerne %lu blev installeret automatisk, og behøves ikke længere.\n" -#: cmdline/apt-get.cc:1835 +#: cmdline/apt-get.cc:1837 msgid "Use 'apt-get autoremove' to remove it." msgid_plural "Use 'apt-get autoremove' to remove them." msgstr[0] "Brug »apt-get autoremove« til at fjerne den." msgstr[1] "Brug »apt-get autoremove« til at fjerne dem." -#: cmdline/apt-get.cc:1854 +#: cmdline/apt-get.cc:1856 msgid "Internal error, AllUpgrade broke stuff" msgstr "Intern fejl, AllUpgrade ødelagde noget" -#: cmdline/apt-get.cc:1953 +#: cmdline/apt-get.cc:1955 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "Du kan muligvis rette det ved at køre »apt-get -f install«:" -#: cmdline/apt-get.cc:1957 +#: cmdline/apt-get.cc:1959 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -778,7 +780,7 @@ msgstr "" "Uopfyldte afhængigheder. Prøv 'apt-get -f install' uden pakker (eller angiv " "en løsning)." -#: cmdline/apt-get.cc:1972 +#: cmdline/apt-get.cc:1974 msgid "" "Some packages could not be installed. This may mean that you have\n" "requested an impossible situation or if you are using the unstable\n" @@ -789,33 +791,33 @@ msgstr "" "en umulig situation eller bruger den ustabile distribution, hvor enkelte\n" "pakker endnu ikke er lavet eller gjort tilgængelige." -#: cmdline/apt-get.cc:1993 +#: cmdline/apt-get.cc:1995 msgid "Broken packages" msgstr "Ødelagte pakker" -#: cmdline/apt-get.cc:2019 +#: cmdline/apt-get.cc:2021 msgid "The following extra packages will be installed:" msgstr "Følgende yderligere pakker vil blive installeret:" -#: cmdline/apt-get.cc:2109 +#: cmdline/apt-get.cc:2111 msgid "Suggested packages:" msgstr "Foreslåede pakker:" -#: cmdline/apt-get.cc:2110 +#: cmdline/apt-get.cc:2112 msgid "Recommended packages:" msgstr "Anbefalede pakker:" -#: cmdline/apt-get.cc:2152 +#: cmdline/apt-get.cc:2154 #, c-format msgid "Couldn't find package %s" msgstr "Kunne ikke finde pakken %s" -#: cmdline/apt-get.cc:2159 cmdline/apt-mark.cc:70 +#: cmdline/apt-get.cc:2161 cmdline/apt-mark.cc:70 #, c-format msgid "%s set to automatically installed.\n" msgstr "%s sat til automatisk installation.\n" -#: cmdline/apt-get.cc:2167 cmdline/apt-mark.cc:114 +#: cmdline/apt-get.cc:2169 cmdline/apt-mark.cc:114 msgid "" "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " "instead." @@ -823,46 +825,46 @@ msgstr "" "Denne kommando er forældet. Brug venligst »apt-mark auto« og »apt-mark " "manual« i stedet for." -#: cmdline/apt-get.cc:2183 +#: cmdline/apt-get.cc:2185 msgid "Calculating upgrade... " msgstr "Beregner opgraderingen... " -#: cmdline/apt-get.cc:2186 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 msgid "Failed" msgstr "Mislykkedes" -#: cmdline/apt-get.cc:2191 +#: cmdline/apt-get.cc:2193 msgid "Done" msgstr "Færdig" -#: cmdline/apt-get.cc:2258 cmdline/apt-get.cc:2266 +#: cmdline/apt-get.cc:2260 cmdline/apt-get.cc:2268 msgid "Internal error, problem resolver broke stuff" msgstr "Intern fejl. Problemløseren ødelagde noget" -#: cmdline/apt-get.cc:2294 cmdline/apt-get.cc:2330 +#: cmdline/apt-get.cc:2296 cmdline/apt-get.cc:2332 msgid "Unable to lock the download directory" msgstr "Kunne ikke låse nedhentningsmappen" -#: cmdline/apt-get.cc:2386 +#: cmdline/apt-get.cc:2388 #, c-format msgid "Can't find a source to download version '%s' of '%s'" msgstr "Kan ikke finde en kilde til at hente version »%s« for »%s«" -#: cmdline/apt-get.cc:2391 +#: cmdline/apt-get.cc:2393 #, c-format msgid "Downloading %s %s" msgstr "Henter %s %s" -#: cmdline/apt-get.cc:2451 +#: cmdline/apt-get.cc:2453 msgid "Must specify at least one package to fetch source for" msgstr "Du skal angive mindst én pakke at hente kildeteksten til" -#: cmdline/apt-get.cc:2491 cmdline/apt-get.cc:2803 +#: cmdline/apt-get.cc:2493 cmdline/apt-get.cc:2805 #, c-format msgid "Unable to find a source package for %s" msgstr "Kunne ikke finde kildetekstpakken for %s" -#: cmdline/apt-get.cc:2508 +#: cmdline/apt-get.cc:2510 #, c-format msgid "" "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" @@ -871,7 +873,7 @@ msgstr "" "BEMÆRK: Pakning af '%s' vedligeholdes i versionskontrolsystemet '%s' på:\n" "%s\n" -#: cmdline/apt-get.cc:2513 +#: cmdline/apt-get.cc:2515 #, c-format msgid "" "Please use:\n" @@ -882,68 +884,68 @@ msgstr "" "bzr branch %s\n" "for at hente de seneste (muligvis ikke udgivet) opdateringer til pakken.\n" -#: cmdline/apt-get.cc:2566 +#: cmdline/apt-get.cc:2568 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Overspringer allerede hentet fil '%s'\n" -#: cmdline/apt-get.cc:2603 +#: cmdline/apt-get.cc:2605 #, c-format msgid "You don't have enough free space in %s" msgstr "Du har ikke nok ledig plads i %s" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:2612 +#: cmdline/apt-get.cc:2614 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "%sB/%sB skal hentes fra kildetekst-arkiverne.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:2617 +#: cmdline/apt-get.cc:2619 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "%sB skal hentes fra kildetekst-arkiverne.\n" -#: cmdline/apt-get.cc:2623 +#: cmdline/apt-get.cc:2625 #, c-format msgid "Fetch source %s\n" msgstr "Henter kildetekst %s\n" -#: cmdline/apt-get.cc:2661 +#: cmdline/apt-get.cc:2663 msgid "Failed to fetch some archives." msgstr "Nogle arkiver kunne ikke hentes." -#: cmdline/apt-get.cc:2692 +#: cmdline/apt-get.cc:2694 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "Overspringer udpakning af allerede udpakket kildetekst i %s\n" -#: cmdline/apt-get.cc:2704 +#: cmdline/apt-get.cc:2706 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Udpakningskommandoen '%s' fejlede.\n" -#: cmdline/apt-get.cc:2705 +#: cmdline/apt-get.cc:2707 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "Tjek om pakken 'dpkg-dev' er installeret.\n" -#: cmdline/apt-get.cc:2727 +#: cmdline/apt-get.cc:2729 #, c-format msgid "Build command '%s' failed.\n" msgstr "Opbygningskommandoen '%s' fejlede.\n" -#: cmdline/apt-get.cc:2747 +#: cmdline/apt-get.cc:2749 msgid "Child process failed" msgstr "Barneprocessen fejlede" -#: cmdline/apt-get.cc:2766 +#: cmdline/apt-get.cc:2768 msgid "Must specify at least one package to check builddeps for" msgstr "Skal angive mindst én pakke at tjekke opbygningsafhængigheder for" -#: cmdline/apt-get.cc:2791 +#: cmdline/apt-get.cc:2793 #, c-format msgid "" "No architecture information available for %s. See apt.conf(5) APT::" @@ -952,17 +954,17 @@ msgstr "" "Ingen arkitekturinformation tilgængelig for %s. Se apt.conf(5) APT::" "Architectures for opsætning" -#: cmdline/apt-get.cc:2815 cmdline/apt-get.cc:2818 +#: cmdline/apt-get.cc:2817 cmdline/apt-get.cc:2820 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "Kunne ikke hente oplysninger om opbygningsafhængigheder for %s" -#: cmdline/apt-get.cc:2838 +#: cmdline/apt-get.cc:2840 #, c-format msgid "%s has no build depends.\n" msgstr "%s har ingen opbygningsafhængigheder.\n" -#: cmdline/apt-get.cc:3008 +#: cmdline/apt-get.cc:3010 #, c-format msgid "" "%s dependency for %s can't be satisfied because %s is not allowed on '%s' " @@ -970,7 +972,7 @@ msgid "" msgstr "" "Afhængigheden %s for %s kan ikke opfyldes, da %s ikke er tilladt på '%s'" -#: cmdline/apt-get.cc:3026 +#: cmdline/apt-get.cc:3028 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -978,14 +980,14 @@ msgid "" msgstr "" "Afhængigheden %s for %s kan ikke opfyldes, da pakken %s ikke blev fundet" -#: cmdline/apt-get.cc:3049 +#: cmdline/apt-get.cc:3051 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "Kunne ikke opfylde %s-afhængigheden for %s: Den installerede pakke %s er for " "ny" -#: cmdline/apt-get.cc:3088 +#: cmdline/apt-get.cc:3090 #, c-format msgid "" "%s dependency for %s cannot be satisfied because candidate version of " @@ -994,7 +996,7 @@ msgstr "" "Afhængigheden %s for %s kan ikke opfyldes, da ingen af de tilgængelige " "kandidater for pakken %s kan tilfredsstille versionskravene" -#: cmdline/apt-get.cc:3094 +#: cmdline/apt-get.cc:3096 #, c-format msgid "" "%s dependency for %s cannot be satisfied because package %s has no candidate " @@ -1003,30 +1005,30 @@ msgstr "" "%s-afhængigheden for %s kan ikke opfyldes, da pakken %s ikke har en " "kandidatversion" -#: cmdline/apt-get.cc:3117 +#: cmdline/apt-get.cc:3119 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "Kunne ikke opfylde %s-afhængigheden for %s: %s" -#: cmdline/apt-get.cc:3133 +#: cmdline/apt-get.cc:3135 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "Opbygningsafhængigheden for %s kunne ikke opfyldes." -#: cmdline/apt-get.cc:3138 +#: cmdline/apt-get.cc:3140 msgid "Failed to process build dependencies" msgstr "Kunne ikke behandler opbygningsafhængighederne" -#: cmdline/apt-get.cc:3231 cmdline/apt-get.cc:3243 +#: cmdline/apt-get.cc:3233 cmdline/apt-get.cc:3245 #, c-format msgid "Changelog for %s (%s)" msgstr "Ændringslog for %s (%s)" -#: cmdline/apt-get.cc:3366 +#: cmdline/apt-get.cc:3368 msgid "Supported modules:" msgstr "Understøttede moduler:" -#: cmdline/apt-get.cc:3407 +#: cmdline/apt-get.cc:3409 msgid "" "Usage: apt-get [options] command\n" " apt-get [options] install|remove pkg1 [pkg2 ...]\n" @@ -1114,7 +1116,7 @@ msgstr "" "for flere oplysninger og tilvalg.\n" " Denne APT har »Super Cow Powers«.\n" -#: cmdline/apt-get.cc:3572 +#: cmdline/apt-get.cc:3574 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1736,7 +1738,7 @@ msgstr "" " -c=? Læs denne opsætningsfil\n" " -o=? Angiv et opsætningstilvalg. F.eks. -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1335 +#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1339 #, c-format msgid "Unable to write to %s" msgstr "Kunne ikke skrive til %s" @@ -2774,7 +2776,7 @@ msgstr "Ugyldig linje %u i kildelisten %s (type)" msgid "Type '%s' is not known on line %u in source list %s" msgstr "Typen '%s' er ukendt på linje %u i kildelisten %s" -#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:896 +#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:898 #, c-format msgid "" "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " @@ -2783,12 +2785,12 @@ msgstr "" "Kunne ikke udføre øjeblikkelig konfiguration på »%s«. Se venligst man 5 apt." "conf under APT:Immediate-Cinfigure for detaljer. (%d)" -#: apt-pkg/packagemanager.cc:473 apt-pkg/packagemanager.cc:503 +#: apt-pkg/packagemanager.cc:473 apt-pkg/packagemanager.cc:504 #, c-format msgid "Could not configure '%s'. " msgstr "Kunne ikke åbne filen »%s«. " -#: apt-pkg/packagemanager.cc:545 +#: apt-pkg/packagemanager.cc:546 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2825,7 +2827,7 @@ msgid "Unable to correct problems, you have held broken packages." msgstr "" "Kunne ikke korrigere problemerne, da du har tilbageholdt ødelagte pakker." -#: apt-pkg/algorithms.cc:1574 apt-pkg/algorithms.cc:1576 +#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 msgid "" "Some index files failed to download. They have been ignored, or old ones " "used instead." @@ -2970,21 +2972,21 @@ msgstr "" msgid "Package %s %s was not found while processing file dependencies" msgstr "Pakken %s %s blev ikke fundet under behandlingen af filafhængigheder" -#: apt-pkg/pkgcachegen.cc:1146 +#: apt-pkg/pkgcachegen.cc:1150 #, c-format msgid "Couldn't stat source package list %s" msgstr "Kunne ikke finde kildepakkelisten %s" -#: apt-pkg/pkgcachegen.cc:1234 apt-pkg/pkgcachegen.cc:1338 -#: apt-pkg/pkgcachegen.cc:1344 apt-pkg/pkgcachegen.cc:1501 +#: apt-pkg/pkgcachegen.cc:1238 apt-pkg/pkgcachegen.cc:1342 +#: apt-pkg/pkgcachegen.cc:1348 apt-pkg/pkgcachegen.cc:1505 msgid "Reading package lists" msgstr "Indlæser pakkelisterne" -#: apt-pkg/pkgcachegen.cc:1251 +#: apt-pkg/pkgcachegen.cc:1255 msgid "Collecting File Provides" msgstr "Samler filudbud" -#: apt-pkg/pkgcachegen.cc:1443 apt-pkg/pkgcachegen.cc:1450 +#: apt-pkg/pkgcachegen.cc:1447 apt-pkg/pkgcachegen.cc:1454 msgid "IO Error saving source cache" msgstr "IO-fejl ved gemning af kilde-mellemlageret" diff --git a/po/de.po b/po/de.po index c6239b956..b78679a6b 100644 --- a/po/de.po +++ b/po/de.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.9.2\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2012-10-15 09:49+0200\n" +"POT-Creation-Date: 2013-03-14 08:05+0100\n" "PO-Revision-Date: 2012-06-27 10:55+0200\n" "Last-Translator: Holger Wansing \n" "Language-Team: Debian German \n" @@ -160,7 +160,7 @@ msgid " Version table:" msgstr " Versionstabelle:" #: cmdline/apt-cache.cc:1683 cmdline/apt-cdrom.cc:198 cmdline/apt-config.cc:81 -#: cmdline/apt-get.cc:3361 cmdline/apt-mark.cc:375 +#: cmdline/apt-get.cc:3363 cmdline/apt-mark.cc:375 #: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:590 #: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147 #, c-format @@ -499,7 +499,7 @@ msgstr "" msgid "%s is already the newest version.\n" msgstr "%s ist schon die neueste Version.\n" -#: cmdline/apt-get.cc:858 cmdline/apt-get.cc:2157 cmdline/apt-mark.cc:68 +#: cmdline/apt-get.cc:858 cmdline/apt-get.cc:2159 cmdline/apt-mark.cc:68 #, c-format msgid "%s set to manually installed.\n" msgstr "%s wurde als manuell installiert festgelegt.\n" @@ -608,8 +608,8 @@ msgstr "Nach dieser Operation werden %sB Plattenplatz zusätzlich benutzt.\n" msgid "After this operation, %sB disk space will be freed.\n" msgstr "Nach dieser Operation werden %sB Plattenplatz freigegeben.\n" -#: cmdline/apt-get.cc:1228 cmdline/apt-get.cc:1231 cmdline/apt-get.cc:2589 -#: cmdline/apt-get.cc:2592 +#: cmdline/apt-get.cc:1228 cmdline/apt-get.cc:1231 cmdline/apt-get.cc:2591 +#: cmdline/apt-get.cc:2594 #, c-format msgid "Couldn't determine free space in %s" msgstr "Freier Platz in %s konnte nicht bestimmt werden." @@ -619,15 +619,17 @@ msgstr "Freier Platz in %s konnte nicht bestimmt werden." msgid "You don't have enough free space in %s." msgstr "Sie haben nicht genug Platz in %s." -#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1277 +#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1279 msgid "Trivial Only specified but this is not a trivial operation." msgstr "»Nur triviale« angegeben, aber dies ist keine triviale Operation." -#: cmdline/apt-get.cc:1259 +#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be +#. careful with hard to type or special characters (like non-breaking spaces) +#: cmdline/apt-get.cc:1261 msgid "Yes, do as I say!" msgstr "Ja, tue was ich sage!" -#: cmdline/apt-get.cc:1261 +#: cmdline/apt-get.cc:1263 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -638,28 +640,28 @@ msgstr "" "Zum Fortfahren geben Sie bitte »%s« ein.\n" " ?] " -#: cmdline/apt-get.cc:1267 cmdline/apt-get.cc:1286 +#: cmdline/apt-get.cc:1269 cmdline/apt-get.cc:1288 msgid "Abort." msgstr "Abbruch." -#: cmdline/apt-get.cc:1282 +#: cmdline/apt-get.cc:1284 msgid "Do you want to continue [Y/n]? " msgstr "Möchten Sie fortfahren [J/n]? " -#: cmdline/apt-get.cc:1354 cmdline/apt-get.cc:2654 apt-pkg/algorithms.cc:1548 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Fehlschlag beim Holen von %s %s\n" -#: cmdline/apt-get.cc:1372 +#: cmdline/apt-get.cc:1374 msgid "Some files failed to download" msgstr "Einige Dateien konnten nicht heruntergeladen werden." -#: cmdline/apt-get.cc:1373 cmdline/apt-get.cc:2666 +#: cmdline/apt-get.cc:1375 cmdline/apt-get.cc:2668 msgid "Download complete and in download only mode" msgstr "Herunterladen abgeschlossen; Nur-Herunterladen-Modus aktiv" -#: cmdline/apt-get.cc:1379 +#: cmdline/apt-get.cc:1381 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -667,19 +669,19 @@ msgstr "" "Einige Archive konnten nicht heruntergeladen werden; vielleicht »apt-get " "update« ausführen oder mit »--fix-missing« probieren?" -#: cmdline/apt-get.cc:1383 +#: cmdline/apt-get.cc:1385 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix-missing und Wechselmedien werden derzeit nicht unterstützt." -#: cmdline/apt-get.cc:1388 +#: cmdline/apt-get.cc:1390 msgid "Unable to correct missing packages." msgstr "Fehlende Pakete konnten nicht korrigiert werden." -#: cmdline/apt-get.cc:1389 +#: cmdline/apt-get.cc:1391 msgid "Aborting install." msgstr "Installation abgebrochen." -#: cmdline/apt-get.cc:1417 +#: cmdline/apt-get.cc:1419 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -693,36 +695,36 @@ msgstr[1] "" "Die folgenden Pakete verschwanden von Ihrem System, da alle\n" "Dateien von anderen Paketen überschrieben wurden:" -#: cmdline/apt-get.cc:1421 +#: cmdline/apt-get.cc:1423 msgid "Note: This is done automatically and on purpose by dpkg." msgstr "Hinweis: Dies wird automatisch und absichtlich von dpkg durchgeführt." -#: cmdline/apt-get.cc:1559 +#: cmdline/apt-get.cc:1561 #, c-format msgid "Ignore unavailable target release '%s' of package '%s'" msgstr "Nicht verfügbare Veröffentlichung »%s« von Paket »%s« wird ignoriert." -#: cmdline/apt-get.cc:1591 +#: cmdline/apt-get.cc:1593 #, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "Als Quellpaket wird »%s« statt »%s« gewählt.\n" #. if (VerTag.empty() == false && Last == 0) -#: cmdline/apt-get.cc:1629 +#: cmdline/apt-get.cc:1631 #, c-format msgid "Ignore unavailable version '%s' of package '%s'" msgstr "Nicht verfügbare Version »%s« von Paket »%s« wird ignoriert." -#: cmdline/apt-get.cc:1645 +#: cmdline/apt-get.cc:1647 msgid "The update command takes no arguments" msgstr "Der Befehl »update« akzeptiert keine Argumente." -#: cmdline/apt-get.cc:1711 +#: cmdline/apt-get.cc:1713 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" "Es soll nichts gelöscht werden, AutoRemover kann nicht gestartet werden." -#: cmdline/apt-get.cc:1815 +#: cmdline/apt-get.cc:1817 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -741,16 +743,16 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1818 cmdline/apt-get.cc:1987 +#: cmdline/apt-get.cc:1820 cmdline/apt-get.cc:1989 msgid "The following information may help to resolve the situation:" msgstr "" "Die folgenden Informationen helfen Ihnen vielleicht, die Situation zu lösen:" -#: cmdline/apt-get.cc:1822 +#: cmdline/apt-get.cc:1824 msgid "Internal Error, AutoRemover broke stuff" msgstr "Interner Fehler, AutoRemover hat etwas beschädigt." -#: cmdline/apt-get.cc:1829 +#: cmdline/apt-get.cc:1831 msgid "" "The following package was automatically installed and is no longer required:" msgid_plural "" @@ -763,7 +765,7 @@ msgstr[1] "" "Die folgenden Pakete wurden automatisch installiert und werden nicht mehr " "benötigt:" -#: cmdline/apt-get.cc:1833 +#: cmdline/apt-get.cc:1835 #, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -773,21 +775,21 @@ msgstr[0] "" msgstr[1] "" "%lu Pakete wurden automatisch installiert und werden nicht mehr benötigt.\n" -#: cmdline/apt-get.cc:1835 +#: cmdline/apt-get.cc:1837 msgid "Use 'apt-get autoremove' to remove it." msgid_plural "Use 'apt-get autoremove' to remove them." msgstr[0] "Verwenden Sie »apt-get autoremove«, um es zu entfernen." msgstr[1] "Verwenden Sie »apt-get autoremove«, um sie zu entfernen." -#: cmdline/apt-get.cc:1854 +#: cmdline/apt-get.cc:1856 msgid "Internal error, AllUpgrade broke stuff" msgstr "Interner Fehler, AllUpgrade hat etwas beschädigt." -#: cmdline/apt-get.cc:1953 +#: cmdline/apt-get.cc:1955 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "Probieren Sie »apt-get -f install«, um dies zu korrigieren:" -#: cmdline/apt-get.cc:1957 +#: cmdline/apt-get.cc:1959 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -795,7 +797,7 @@ msgstr "" "Unerfüllte Abhängigkeiten. Versuchen Sie »apt-get -f install« ohne Angabe " "eines Pakets (oder geben Sie eine Lösung an)." -#: cmdline/apt-get.cc:1972 +#: cmdline/apt-get.cc:1974 msgid "" "Some packages could not be installed. This may mean that you have\n" "requested an impossible situation or if you are using the unstable\n" @@ -807,33 +809,33 @@ msgstr "" "Unstable-Distribution verwenden, dass einige erforderliche Pakete noch\n" "nicht erstellt wurden oder Incoming noch nicht verlassen haben." -#: cmdline/apt-get.cc:1993 +#: cmdline/apt-get.cc:1995 msgid "Broken packages" msgstr "Beschädigte Pakete" -#: cmdline/apt-get.cc:2019 +#: cmdline/apt-get.cc:2021 msgid "The following extra packages will be installed:" msgstr "Die folgenden zusätzlichen Pakete werden installiert:" -#: cmdline/apt-get.cc:2109 +#: cmdline/apt-get.cc:2111 msgid "Suggested packages:" msgstr "Vorgeschlagene Pakete:" -#: cmdline/apt-get.cc:2110 +#: cmdline/apt-get.cc:2112 msgid "Recommended packages:" msgstr "Empfohlene Pakete:" -#: cmdline/apt-get.cc:2152 +#: cmdline/apt-get.cc:2154 #, c-format msgid "Couldn't find package %s" msgstr "Paket %s konnte nicht gefunden werden" -#: cmdline/apt-get.cc:2159 cmdline/apt-mark.cc:70 +#: cmdline/apt-get.cc:2161 cmdline/apt-mark.cc:70 #, c-format msgid "%s set to automatically installed.\n" msgstr "%s wurde als automatisch installiert festgelegt.\n" -#: cmdline/apt-get.cc:2167 cmdline/apt-mark.cc:114 +#: cmdline/apt-get.cc:2169 cmdline/apt-mark.cc:114 msgid "" "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " "instead." @@ -841,50 +843,50 @@ msgstr "" "Dieser Befehl ist überholt. Bitte verwenden Sie stattdessen »apt-mark auto« " "und »apt-mark manual«." -#: cmdline/apt-get.cc:2183 +#: cmdline/apt-get.cc:2185 msgid "Calculating upgrade... " msgstr "Paketaktualisierung (Upgrade) wird berechnet... " -#: cmdline/apt-get.cc:2186 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 msgid "Failed" msgstr "Fehlgeschlagen" -#: cmdline/apt-get.cc:2191 +#: cmdline/apt-get.cc:2193 msgid "Done" msgstr "Fertig" -#: cmdline/apt-get.cc:2258 cmdline/apt-get.cc:2266 +#: cmdline/apt-get.cc:2260 cmdline/apt-get.cc:2268 msgid "Internal error, problem resolver broke stuff" msgstr "Interner Fehler, der Problemlöser hat etwas beschädigt." -#: cmdline/apt-get.cc:2294 cmdline/apt-get.cc:2330 +#: cmdline/apt-get.cc:2296 cmdline/apt-get.cc:2332 msgid "Unable to lock the download directory" msgstr "Das Downloadverzeichnis konnte nicht gesperrt werden." -#: cmdline/apt-get.cc:2386 +#: cmdline/apt-get.cc:2388 #, c-format msgid "Can't find a source to download version '%s' of '%s'" msgstr "" "Es konnte keine Quelle gefunden werden, um Version »%s« von »%s« " "herunterzuladen." -#: cmdline/apt-get.cc:2391 +#: cmdline/apt-get.cc:2393 #, c-format msgid "Downloading %s %s" msgstr "Herunterladen von %s %s" -#: cmdline/apt-get.cc:2451 +#: cmdline/apt-get.cc:2453 msgid "Must specify at least one package to fetch source for" msgstr "" "Es muss mindestens ein Paket angegeben werden, dessen Quellen geholt werden " "sollen." -#: cmdline/apt-get.cc:2491 cmdline/apt-get.cc:2803 +#: cmdline/apt-get.cc:2493 cmdline/apt-get.cc:2805 #, c-format msgid "Unable to find a source package for %s" msgstr "Quellpaket für %s kann nicht gefunden werden." -#: cmdline/apt-get.cc:2508 +#: cmdline/apt-get.cc:2510 #, c-format msgid "" "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" @@ -894,7 +896,7 @@ msgstr "" "auf:\n" "%s\n" -#: cmdline/apt-get.cc:2513 +#: cmdline/apt-get.cc:2515 #, c-format msgid "" "Please use:\n" @@ -906,70 +908,70 @@ msgstr "" "um die neuesten (möglicherweise noch unveröffentlichten) Aktualisierungen\n" "für das Paket abzurufen.\n" -#: cmdline/apt-get.cc:2566 +#: cmdline/apt-get.cc:2568 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Bereits heruntergeladene Datei »%s« wird übersprungen.\n" -#: cmdline/apt-get.cc:2603 +#: cmdline/apt-get.cc:2605 #, c-format msgid "You don't have enough free space in %s" msgstr "Sie haben nicht genügend freien Speicherplatz in %s." #. TRANSLATOR: The required space between number and unit is already included #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:2612 +#: cmdline/apt-get.cc:2614 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "Es müssen noch %sB von %sB an Quellarchiven heruntergeladen werden.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:2617 +#: cmdline/apt-get.cc:2619 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Es müssen %sB an Quellarchiven heruntergeladen werden.\n" -#: cmdline/apt-get.cc:2623 +#: cmdline/apt-get.cc:2625 #, c-format msgid "Fetch source %s\n" msgstr "Quelle %s wird heruntergeladen.\n" -#: cmdline/apt-get.cc:2661 +#: cmdline/apt-get.cc:2663 msgid "Failed to fetch some archives." msgstr "Einige Archive konnten nicht heruntergeladen werden." -#: cmdline/apt-get.cc:2692 +#: cmdline/apt-get.cc:2694 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "Das Entpacken der bereits entpackten Quelle in %s wird übersprungen.\n" -#: cmdline/apt-get.cc:2704 +#: cmdline/apt-get.cc:2706 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Entpackbefehl »%s« fehlgeschlagen.\n" -#: cmdline/apt-get.cc:2705 +#: cmdline/apt-get.cc:2707 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "Überprüfen Sie, ob das Paket »dpkg-dev« installiert ist.\n" -#: cmdline/apt-get.cc:2727 +#: cmdline/apt-get.cc:2729 #, c-format msgid "Build command '%s' failed.\n" msgstr "Build-Befehl »%s« fehlgeschlagen.\n" -#: cmdline/apt-get.cc:2747 +#: cmdline/apt-get.cc:2749 msgid "Child process failed" msgstr "Kindprozess fehlgeschlagen" -#: cmdline/apt-get.cc:2766 +#: cmdline/apt-get.cc:2768 msgid "Must specify at least one package to check builddeps for" msgstr "" "Es muss mindestens ein Paket angegeben werden, dessen Bauabhängigkeiten " "überprüft werden sollen." -#: cmdline/apt-get.cc:2791 +#: cmdline/apt-get.cc:2793 #, c-format msgid "" "No architecture information available for %s. See apt.conf(5) APT::" @@ -978,18 +980,18 @@ msgstr "" "Keine Architekturinformation für %s verfügbar. Weiteres zur Einrichtung " "finden Sie unter apt.conf(5) APT::Architectures." -#: cmdline/apt-get.cc:2815 cmdline/apt-get.cc:2818 +#: cmdline/apt-get.cc:2817 cmdline/apt-get.cc:2820 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "" "Informationen zu Bauabhängigkeiten für %s konnten nicht gefunden werden." -#: cmdline/apt-get.cc:2838 +#: cmdline/apt-get.cc:2840 #, c-format msgid "%s has no build depends.\n" msgstr "%s hat keine Bauabhängigkeiten.\n" -#: cmdline/apt-get.cc:3008 +#: cmdline/apt-get.cc:3010 #, c-format msgid "" "%s dependency for %s can't be satisfied because %s is not allowed on '%s' " @@ -998,7 +1000,7 @@ msgstr "" "»%s«-Abhängigkeit für %s kann nicht erfüllt werden, da %s bei »%s«-Paketen " "nicht erlaubt ist." -#: cmdline/apt-get.cc:3026 +#: cmdline/apt-get.cc:3028 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -1007,14 +1009,14 @@ msgstr "" "»%s«-Abhängigkeit für %s kann nicht erfüllt werden, da Paket %s nicht " "gefunden werden kann." -#: cmdline/apt-get.cc:3049 +#: cmdline/apt-get.cc:3051 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "»%s«-Abhängigkeit für %s kann nicht erfüllt werden: Installiertes Paket %s " "ist zu neu." -#: cmdline/apt-get.cc:3088 +#: cmdline/apt-get.cc:3090 #, c-format msgid "" "%s dependency for %s cannot be satisfied because candidate version of " @@ -1024,7 +1026,7 @@ msgstr "" "Installationskandidaten für das Paket %s die Versionsanforderungen nicht " "erfüllen kann." -#: cmdline/apt-get.cc:3094 +#: cmdline/apt-get.cc:3096 #, c-format msgid "" "%s dependency for %s cannot be satisfied because package %s has no candidate " @@ -1033,30 +1035,30 @@ msgstr "" "»%s«-Abhängigkeit für %s kann nicht erfüllt werden, da für Paket %s kein " "Installationskandidat existiert." -#: cmdline/apt-get.cc:3117 +#: cmdline/apt-get.cc:3119 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "»%s«-Abhängigkeit für %s konnte nicht erfüllt werden: %s" -#: cmdline/apt-get.cc:3133 +#: cmdline/apt-get.cc:3135 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "Bauabhängigkeiten für %s konnten nicht erfüllt werden." -#: cmdline/apt-get.cc:3138 +#: cmdline/apt-get.cc:3140 msgid "Failed to process build dependencies" msgstr "Verarbeitung der Bauabhängigkeiten fehlgeschlagen" -#: cmdline/apt-get.cc:3231 cmdline/apt-get.cc:3243 +#: cmdline/apt-get.cc:3233 cmdline/apt-get.cc:3245 #, c-format msgid "Changelog for %s (%s)" msgstr "Änderungsprotokoll (Changelog) für %s (%s)" -#: cmdline/apt-get.cc:3366 +#: cmdline/apt-get.cc:3368 msgid "Supported modules:" msgstr "Unterstützte Module:" -#: cmdline/apt-get.cc:3407 +#: cmdline/apt-get.cc:3409 msgid "" "Usage: apt-get [options] command\n" " apt-get [options] install|remove pkg1 [pkg2 ...]\n" @@ -1151,7 +1153,7 @@ msgstr "" "bezüglich weitergehender Informationen und Optionen.\n" " Dieses APT hat Super-Kuh-Kräfte.\n" -#: cmdline/apt-get.cc:3572 +#: cmdline/apt-get.cc:3574 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1789,7 +1791,7 @@ msgstr "" " -c=? Diese Konfigurationsdatei lesen\n" " -o=? Eine beliebige Konfigurationsoption setzen, z.B. -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1335 +#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1339 #, c-format msgid "Unable to write to %s" msgstr "Schreiben nach %s nicht möglich" @@ -2849,7 +2851,7 @@ msgstr "Missgestaltete Zeile %u in Quellliste %s (»type«)" msgid "Type '%s' is not known on line %u in source list %s" msgstr "Typ »%s« in Zeile %u der Quellliste %s ist unbekannt." -#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:896 +#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:898 #, c-format msgid "" "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " @@ -2858,12 +2860,12 @@ msgstr "" "»%s« konnte nicht unmittelbar konfiguriert werden. Lesen Sie »man 5 apt." "conf« unter APT::Immediate-Configure bezüglich weiterer Details. (%d)" -#: apt-pkg/packagemanager.cc:473 apt-pkg/packagemanager.cc:503 +#: apt-pkg/packagemanager.cc:473 apt-pkg/packagemanager.cc:504 #, c-format msgid "Could not configure '%s'. " msgstr "»%s« konnte nicht konfiguriert werden. " -#: apt-pkg/packagemanager.cc:545 +#: apt-pkg/packagemanager.cc:546 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2902,7 +2904,7 @@ msgstr "" "Probleme können nicht korrigiert werden, Sie haben zurückgehaltene defekte " "Pakete." -#: apt-pkg/algorithms.cc:1574 apt-pkg/algorithms.cc:1576 +#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 msgid "" "Some index files failed to download. They have been ignored, or old ones " "used instead." @@ -3061,21 +3063,21 @@ msgid "Package %s %s was not found while processing file dependencies" msgstr "" "Paket %s %s wurde beim Verarbeiten der Dateiabhängigkeiten nicht gefunden." -#: apt-pkg/pkgcachegen.cc:1146 +#: apt-pkg/pkgcachegen.cc:1150 #, c-format msgid "Couldn't stat source package list %s" msgstr "Die Quellpaket-Liste %s konnte nicht mit »stat« abgefragt werden" -#: apt-pkg/pkgcachegen.cc:1234 apt-pkg/pkgcachegen.cc:1338 -#: apt-pkg/pkgcachegen.cc:1344 apt-pkg/pkgcachegen.cc:1501 +#: apt-pkg/pkgcachegen.cc:1238 apt-pkg/pkgcachegen.cc:1342 +#: apt-pkg/pkgcachegen.cc:1348 apt-pkg/pkgcachegen.cc:1505 msgid "Reading package lists" msgstr "Paketlisten werden gelesen" -#: apt-pkg/pkgcachegen.cc:1251 +#: apt-pkg/pkgcachegen.cc:1255 msgid "Collecting File Provides" msgstr "Sammeln der angebotenen Funktionalitäten (Provides) aus den Dateien" -#: apt-pkg/pkgcachegen.cc:1443 apt-pkg/pkgcachegen.cc:1450 +#: apt-pkg/pkgcachegen.cc:1447 apt-pkg/pkgcachegen.cc:1454 msgid "IO Error saving source cache" msgstr "E/A-Fehler beim Speichern des Quell-Zwischenspeichers" diff --git a/po/dz.po b/po/dz.po index 070dc18e1..c6eea92bd 100644 --- a/po/dz.po +++ b/po/dz.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: apt_po.pot\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2012-10-15 09:49+0200\n" +"POT-Creation-Date: 2013-03-14 08:05+0100\n" "PO-Revision-Date: 2006-09-19 09:49+0530\n" "Last-Translator: Kinley Tshering \n" "Language-Team: Dzongkha \n" @@ -160,7 +160,7 @@ msgid " Version table:" msgstr "ཐོན་རིམ་ཐིག་ཁྲམ།:" #: cmdline/apt-cache.cc:1683 cmdline/apt-cdrom.cc:198 cmdline/apt-config.cc:81 -#: cmdline/apt-get.cc:3361 cmdline/apt-mark.cc:375 +#: cmdline/apt-get.cc:3363 cmdline/apt-mark.cc:375 #: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:590 #: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147 #, fuzzy, c-format @@ -494,7 +494,7 @@ msgstr "%s ་ལོག་གཞི་བཙུགས་འབད་ནི་འ msgid "%s is already the newest version.\n" msgstr "%s ་འདི་ཧེ་མ་ལས་རང་འཐོན་རིམ་གསར་ཤོས་ཅིག་ཨིན།\n" -#: cmdline/apt-get.cc:858 cmdline/apt-get.cc:2157 cmdline/apt-mark.cc:68 +#: cmdline/apt-get.cc:858 cmdline/apt-get.cc:2159 cmdline/apt-mark.cc:68 #, fuzzy, c-format msgid "%s set to manually installed.\n" msgstr "འདི་འབདཝ་ད་%sའདི་གཞི་བཙུགས་འབད་ནི་ཨིན།" @@ -605,8 +605,8 @@ msgstr "ཁ་སྐོང་གི་%sB་འདི་བཤུབ་པའི msgid "After this operation, %sB disk space will be freed.\n" msgstr "%sB་འདི་ཤུབ་པའི་ཤུལ་ལས་ཀྱི་བར་སྟོང་དེ་དལཝ་སྦེ་ལུས་འོང་།\n" -#: cmdline/apt-get.cc:1228 cmdline/apt-get.cc:1231 cmdline/apt-get.cc:2589 -#: cmdline/apt-get.cc:2592 +#: cmdline/apt-get.cc:1228 cmdline/apt-get.cc:1231 cmdline/apt-get.cc:2591 +#: cmdline/apt-get.cc:2594 #, c-format msgid "Couldn't determine free space in %s" msgstr "%s་ནང་བར་སྟོང་" @@ -616,15 +616,17 @@ msgstr "%s་ནང་བར་སྟོང་" msgid "You don't have enough free space in %s." msgstr "%s ནང་ཁྱོད་ལུ་བར་སྟོང་དལཝ་ལངམ་སྦེ་མིན་འདུག" -#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1277 +#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1279 msgid "Trivial Only specified but this is not a trivial operation." msgstr "གལ་ཆུང་རྐྱངམ་ཅིག་ཁསལ་བཀོད་འབད་ནུག་ འདི་འབདཝ་ད་འ་ནི་འདི་གལ་ཆུང་གི་བཀོལ་སྤྱོད་མེན།" -#: cmdline/apt-get.cc:1259 +#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be +#. careful with hard to type or special characters (like non-breaking spaces) +#: cmdline/apt-get.cc:1261 msgid "Yes, do as I say!" msgstr "ཨིན་ ང་གིས་སླབ་དོ་བཟུམ་སྦེ་རང་འབད!" -#: cmdline/apt-get.cc:1261 +#: cmdline/apt-get.cc:1263 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -635,28 +637,28 @@ msgstr "" "འཕྲོ་མཐུད་འབད་ནིའི་དོན་ལུ་'%s'ཚིག་ཚན་ནང་ལུ་ཡིག་དཔར་རྐྱབས།\n" " ?] " -#: cmdline/apt-get.cc:1267 cmdline/apt-get.cc:1286 +#: cmdline/apt-get.cc:1269 cmdline/apt-get.cc:1288 msgid "Abort." msgstr "བར་བཤོལ་འབད།" -#: cmdline/apt-get.cc:1282 +#: cmdline/apt-get.cc:1284 msgid "Do you want to continue [Y/n]? " msgstr "ཁྱོན་ཀྱི་འཕྲོ་མཐུད་ནི་འབད་ནི་ཨིན་ན་[Y/n]?" -#: cmdline/apt-get.cc:1354 cmdline/apt-get.cc:2654 apt-pkg/algorithms.cc:1548 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 #, c-format msgid "Failed to fetch %s %s\n" msgstr "%s %s་ ལེན་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།\n" -#: cmdline/apt-get.cc:1372 +#: cmdline/apt-get.cc:1374 msgid "Some files failed to download" msgstr "ཡིག་སྣོད་ལ་ལུ་ཅིག་ཕབ་ལེན་འབད་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" -#: cmdline/apt-get.cc:1373 cmdline/apt-get.cc:2666 +#: cmdline/apt-get.cc:1375 cmdline/apt-get.cc:2668 msgid "Download complete and in download only mode" msgstr "ཕབ་ལེན་ཐབས་ལམ་རྐྱངམ་གཅིག་ནང་མཇུག་བསྡུཝ་སྦེ་རང་ཕབ་ལེན་འབད།" -#: cmdline/apt-get.cc:1379 +#: cmdline/apt-get.cc:1381 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -664,19 +666,19 @@ msgstr "" "ཡིག་མཛོད་ལ་ལུ་ཅིག་ལེན་མི་ཚུགས་པས་ apt-get་དུས་མཐུན་བཟོ་ནི་གཡོག་བཀོལ་ནི་ཨིན་ན་ཡང་ན་--fix-" "missing་དང་གཅིག་ཁར་འབད་རྩོལ་བསྐྱེད་ནི་ཨིན་ན་?" -#: cmdline/apt-get.cc:1383 +#: cmdline/apt-get.cc:1385 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix-missing་དང་བརྡ་ལམ་བརྗེ་སོར་འབད་ནི་འདི་ད་ལྟོ་ལས་རང་རྒྱབ་སྐྱོར་མི་འབད་བས།" -#: cmdline/apt-get.cc:1388 +#: cmdline/apt-get.cc:1390 msgid "Unable to correct missing packages." msgstr "བརླག་སྟོར་ཞུགས་ཡོད་པའི་ཐུམ་སྒྲིལ་ཚུ་ནོར་བཅོས་འབད་མི་ཚུགས་པས།" -#: cmdline/apt-get.cc:1389 +#: cmdline/apt-get.cc:1391 msgid "Aborting install." msgstr "གཞི་བཙུགས་བར་བཤོལ་འབད་དོ།" -#: cmdline/apt-get.cc:1417 +#: cmdline/apt-get.cc:1419 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -686,35 +688,35 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: cmdline/apt-get.cc:1421 +#: cmdline/apt-get.cc:1423 msgid "Note: This is done automatically and on purpose by dpkg." msgstr "" -#: cmdline/apt-get.cc:1559 +#: cmdline/apt-get.cc:1561 #, c-format msgid "Ignore unavailable target release '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:1591 +#: cmdline/apt-get.cc:1593 #, fuzzy, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "འབྱུང་ཁུངས་ཐུམ་སྒྲིལ་གྱི་ཐོ་ཡིག་%s་དེ་ངོ་བཤུས་འབད་མ་ཚུགས།" #. if (VerTag.empty() == false && Last == 0) -#: cmdline/apt-get.cc:1629 +#: cmdline/apt-get.cc:1631 #, c-format msgid "Ignore unavailable version '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:1645 +#: cmdline/apt-get.cc:1647 msgid "The update command takes no arguments" msgstr "དུས་མཐུན་བཟོ་བའི་བརྡ་བཀོད་འདི་གིས་སྒྲུབ་རྟགས་ཚུ་མི་འབག་འབད།" -#: cmdline/apt-get.cc:1711 +#: cmdline/apt-get.cc:1713 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -#: cmdline/apt-get.cc:1815 +#: cmdline/apt-get.cc:1817 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -730,16 +732,16 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1818 cmdline/apt-get.cc:1987 +#: cmdline/apt-get.cc:1820 cmdline/apt-get.cc:1989 msgid "The following information may help to resolve the situation:" msgstr "འོག་གི་བརྡ་དོན་དེ་གིས་དུས་སྐབས་འདི་མོས་མཐུན་བཟོ་ནི་ལུ་གྲོགས་རམ་འབད་འོང་:" -#: cmdline/apt-get.cc:1822 +#: cmdline/apt-get.cc:1824 #, fuzzy msgid "Internal Error, AutoRemover broke stuff" msgstr "ནང་འཁོད་འཛོལ་བ་ དཀའ་ངལ་མོས་མཐུན་འབད་མི་ཅ་ཆས་ཚུ་མེདཔ་ཐལ་ཡོད།" -#: cmdline/apt-get.cc:1829 +#: cmdline/apt-get.cc:1831 #, fuzzy msgid "" "The following package was automatically installed and is no longer required:" @@ -749,7 +751,7 @@ msgid_plural "" msgstr[0] "འོག་གི་ཐུམ་སྒྲིས་གསརཔ་འདི་ཚུ་ཁཞི་བཙུགས་འབད་འོང་:" msgstr[1] "འོག་གི་ཐུམ་སྒྲིས་གསརཔ་འདི་ཚུ་ཁཞི་བཙུགས་འབད་འོང་:" -#: cmdline/apt-get.cc:1833 +#: cmdline/apt-get.cc:1835 #, fuzzy, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -757,21 +759,21 @@ msgid_plural "" msgstr[0] "འོག་གི་ཐུམ་སྒྲིས་གསརཔ་འདི་ཚུ་ཁཞི་བཙུགས་འབད་འོང་:" msgstr[1] "འོག་གི་ཐུམ་སྒྲིས་གསརཔ་འདི་ཚུ་ཁཞི་བཙུགས་འབད་འོང་:" -#: cmdline/apt-get.cc:1835 +#: cmdline/apt-get.cc:1837 msgid "Use 'apt-get autoremove' to remove it." msgid_plural "Use 'apt-get autoremove' to remove them." msgstr[0] "" msgstr[1] "" -#: cmdline/apt-get.cc:1854 +#: cmdline/apt-get.cc:1856 msgid "Internal error, AllUpgrade broke stuff" msgstr "ནང་འགོད་འཛོལ་བ་ ཡར་བསྐྱེད་ཀྱི་ཅ་ཆས་ཆ་མཉམ་མེདཔ་ཐལ་ཡོད།" -#: cmdline/apt-get.cc:1953 +#: cmdline/apt-get.cc:1955 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "འདི་ཚུ་ནོར་བཅོས་འབད་ནིའི་དོན་ལུ་ཁྱོད་ཀྱི་'apt-get -f install'དེ་གཡོག་བཀོལ་དགོཔ་འོང་:" -#: cmdline/apt-get.cc:1957 +#: cmdline/apt-get.cc:1959 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -779,7 +781,7 @@ msgstr "" "མ་ཚང་བའི་རྟེན་འབྲེལ་ ཐུས་སྒྲིལ་མེད་མི་ཚུ་དང་གཅིག་ཁར་ 'apt-get -f install'དེ་འབཐ་རྩོལ་བསྐྱེདཔ།" "(ཡང་ན་ཐབས་ཤེས་ཅིག་གསལ་བཀོད་འབད།)" -#: cmdline/apt-get.cc:1972 +#: cmdline/apt-get.cc:1974 msgid "" "Some packages could not be installed. This may mean that you have\n" "requested an impossible situation or if you are using the unstable\n" @@ -790,85 +792,85 @@ msgstr "" "འབད་འབདཝ་འོང་ནི་མས་ ཡང་ན་ད་ལྟོ་ཡང་གསར་བསྐྲུན་མ་འབད་བར་ཡོད་པའི་ཐུམ་སྒྲིལ་ལ་ལུ་ཅིག་ཡང་ན་ནང་" "འབྱོར་གྱི་ཕྱི་ཁར་རྩ་བསྐྲད་བཏང་ཡོད་པའི་རྩ་བརྟན་མེད་པའི་བགོ་འགྲེམ་ཚུ་ལག་ལེན་འཐབ་དོ་ཡོདཔ་འོང་ནི་ཨིན་པས།" -#: cmdline/apt-get.cc:1993 +#: cmdline/apt-get.cc:1995 msgid "Broken packages" msgstr "ཆད་པ་ཡོད་པའི་ཐུམ་སྒྲིལ་ཚུ།" -#: cmdline/apt-get.cc:2019 +#: cmdline/apt-get.cc:2021 msgid "The following extra packages will be installed:" msgstr "འོག་གི་ཐུམ་སྒྲིལ་ཐེབས་ཚུ་གཞི་བཙུགས་འབད་འོང་:" -#: cmdline/apt-get.cc:2109 +#: cmdline/apt-get.cc:2111 msgid "Suggested packages:" msgstr "བསམ་འཆར་བཀོད་ཡོད་པའི་ཐུམ་སྒྲིལ་ཚུ:" -#: cmdline/apt-get.cc:2110 +#: cmdline/apt-get.cc:2112 msgid "Recommended packages:" msgstr "འོས་སྦྱོར་འབད་ཡོད་པའི་ཐུམ་སྒྲིལ་ཚུ:" -#: cmdline/apt-get.cc:2152 +#: cmdline/apt-get.cc:2154 #, c-format msgid "Couldn't find package %s" msgstr "%s་ཐུམ་སྒྲིལ་འཚོལ་མ་ཐོབ།" -#: cmdline/apt-get.cc:2159 cmdline/apt-mark.cc:70 +#: cmdline/apt-get.cc:2161 cmdline/apt-mark.cc:70 #, fuzzy, c-format msgid "%s set to automatically installed.\n" msgstr "འདི་འབདཝ་ད་%sའདི་གཞི་བཙུགས་འབད་ནི་ཨིན།" -#: cmdline/apt-get.cc:2167 cmdline/apt-mark.cc:114 +#: cmdline/apt-get.cc:2169 cmdline/apt-mark.cc:114 msgid "" "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " "instead." msgstr "" -#: cmdline/apt-get.cc:2183 +#: cmdline/apt-get.cc:2185 msgid "Calculating upgrade... " msgstr "ཡར་བསྐྱེད་རྩིས་བཏོན་དོ་... " -#: cmdline/apt-get.cc:2186 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 msgid "Failed" msgstr "འཐུས་ཤོར་བྱུང་ཡོད།" -#: cmdline/apt-get.cc:2191 +#: cmdline/apt-get.cc:2193 msgid "Done" msgstr "འབད་ཚར་ཡི།" -#: cmdline/apt-get.cc:2258 cmdline/apt-get.cc:2266 +#: cmdline/apt-get.cc:2260 cmdline/apt-get.cc:2268 msgid "Internal error, problem resolver broke stuff" msgstr "ནང་འཁོད་འཛོལ་བ་ དཀའ་ངལ་མོས་མཐུན་འབད་མི་ཅ་ཆས་ཚུ་མེདཔ་ཐལ་ཡོད།" -#: cmdline/apt-get.cc:2294 cmdline/apt-get.cc:2330 +#: cmdline/apt-get.cc:2296 cmdline/apt-get.cc:2332 msgid "Unable to lock the download directory" msgstr "ཕབ་ལེན་འབད་ནིའི་སྣོད་ཡིག་འདི་ལྡེ་མིག་རྐྱབས་མ་ཚུགས་པས།" -#: cmdline/apt-get.cc:2386 +#: cmdline/apt-get.cc:2388 #, c-format msgid "Can't find a source to download version '%s' of '%s'" msgstr "" -#: cmdline/apt-get.cc:2391 +#: cmdline/apt-get.cc:2393 #, c-format msgid "Downloading %s %s" msgstr "" -#: cmdline/apt-get.cc:2451 +#: cmdline/apt-get.cc:2453 msgid "Must specify at least one package to fetch source for" msgstr "གི་དོན་ལུ་འབྱུང་ཁུངས་ལེན་ནི་ལུ་ཉུང་མཐའ་རང་ཐུམ་སྒྲིལ་གཅིག་ལེན་དགོ" -#: cmdline/apt-get.cc:2491 cmdline/apt-get.cc:2803 +#: cmdline/apt-get.cc:2493 cmdline/apt-get.cc:2805 #, c-format msgid "Unable to find a source package for %s" msgstr "%s་གི་དོན་ལུ་འབྱུང་ཁུངས་ཐུམ་སྒྲིལ་ཅིག་འཚོལ་མ་འཐོབ" -#: cmdline/apt-get.cc:2508 +#: cmdline/apt-get.cc:2510 #, c-format msgid "" "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" "%s\n" msgstr "" -#: cmdline/apt-get.cc:2513 +#: cmdline/apt-get.cc:2515 #, c-format msgid "" "Please use:\n" @@ -876,106 +878,106 @@ msgid "" "to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -#: cmdline/apt-get.cc:2566 +#: cmdline/apt-get.cc:2568 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "གོམ་འགྱོ་གིས་ཧེ་མ་ལས་རང་'%s'་ཡིག་སྣོད་དེ་ཕབ་ལེན་འབད་ནུག\n" -#: cmdline/apt-get.cc:2603 +#: cmdline/apt-get.cc:2605 #, c-format msgid "You don't have enough free space in %s" msgstr " %s་ནང་ཁྱོད་ལུ་བར་སྟོང་ཚུ་ལངམ་སྦེ་མིན་འདུག་" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:2612 +#: cmdline/apt-get.cc:2614 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "%sB་ལེན་དགོཔ་འདུག་ འབྱུང་ཁུངས་ཡིག་མཛོད་ཀྱི་%sB།\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:2617 +#: cmdline/apt-get.cc:2619 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "འབྱུང་ཁུངས་ཡིག་མཛོད་ཚུ་ཀྱི་%sB་ལེན་དགོ་པསས།\n" -#: cmdline/apt-get.cc:2623 +#: cmdline/apt-get.cc:2625 #, c-format msgid "Fetch source %s\n" msgstr "%s་འབྱུང་ཁུངས་ལེན།\n" -#: cmdline/apt-get.cc:2661 +#: cmdline/apt-get.cc:2663 msgid "Failed to fetch some archives." msgstr "ཡིག་མཛོད་ལ་ལུ་ཅིག་ལེན་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" -#: cmdline/apt-get.cc:2692 +#: cmdline/apt-get.cc:2694 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "%s་ནང་ཧེ་མ་ལས་སྦུང་ཚན་བཟོ་བཤོལ་ཨིན་མའི་སྦུང་ཚན་བཟོ་བཤོལ་གོམ་འགྱོ་འབད་དོ།\n" -#: cmdline/apt-get.cc:2704 +#: cmdline/apt-get.cc:2706 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "'%s'སྦུང་ཚན་བཟོ་བཤོལ་འཐུས་ཤོར་བྱུང་ཡོད།\n" -#: cmdline/apt-get.cc:2705 +#: cmdline/apt-get.cc:2707 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "'dpkg-dev'་ཐུམ་སྒྲིལ་དེ་གཞི་བཙུགས་འབད་ཡོད་པ་ཅིན་ཨེབ་གཏང་འབད།\n" -#: cmdline/apt-get.cc:2727 +#: cmdline/apt-get.cc:2729 #, c-format msgid "Build command '%s' failed.\n" msgstr "'%s'་བཟོ་བརྩིགས་བརྡ་བཀོད་འཐུས་ཤོར་བྱུང་ཡོད།\n" -#: cmdline/apt-get.cc:2747 +#: cmdline/apt-get.cc:2749 msgid "Child process failed" msgstr "ཆ་ལག་ལས་སྦྱོར་དེ་འཐུས་ཤོར་བྱུང་ནུག" -#: cmdline/apt-get.cc:2766 +#: cmdline/apt-get.cc:2768 msgid "Must specify at least one package to check builddeps for" msgstr "builddeps ཞིབ་དཔྱད་འབད་ནིའི་དོན་ལུ་ཉུང་མཐའ་རང་ཐུམ་སྒྲིལ་གཅིག་གསལ་བཀོད་འབད་དགོ" -#: cmdline/apt-get.cc:2791 +#: cmdline/apt-get.cc:2793 #, c-format msgid "" "No architecture information available for %s. See apt.conf(5) APT::" "Architectures for setup" msgstr "" -#: cmdline/apt-get.cc:2815 cmdline/apt-get.cc:2818 +#: cmdline/apt-get.cc:2817 cmdline/apt-get.cc:2820 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "%s་གི་དོན་ལུ་བཟོ་བརྩིགས་-རྟེན་འབྲེལ་བརྡ་དོན་དེ་ལེན་མ་ཚུགས།" -#: cmdline/apt-get.cc:2838 +#: cmdline/apt-get.cc:2840 #, c-format msgid "%s has no build depends.\n" msgstr "%s ལུ་བཟོ་བརྩིགས་རྟེན་འབྲེལ་མིན་འདུག\n" -#: cmdline/apt-get.cc:3008 +#: cmdline/apt-get.cc:3010 #, fuzzy, c-format msgid "" "%s dependency for %s can't be satisfied because %s is not allowed on '%s' " "packages" msgstr "%sཐུམ་སྒྲིལ་འདི་འཐོབ་མ་ཚུགསཔ་ལས་བརྟེན་ %sགི་དོན་ལུ་%s རྟེན་འབྲེལ་དེ་ངལ་རང་མ་ཚུགས་པས།" -#: cmdline/apt-get.cc:3026 +#: cmdline/apt-get.cc:3028 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " "found" msgstr "%sཐུམ་སྒྲིལ་འདི་འཐོབ་མ་ཚུགསཔ་ལས་བརྟེན་ %sགི་དོན་ལུ་%s རྟེན་འབྲེལ་དེ་ངལ་རང་མ་ཚུགས་པས།" -#: cmdline/apt-get.cc:3049 +#: cmdline/apt-get.cc:3051 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "%s:གི་དོན་ལུ་%s་རྟེན་འབྲེལ་དེ་གི་རེ་བ་སྐོང་ནི་འདི་འཐུས་ཤོར་བྱུང་ཡོདཔ་ཨིན་ གཞི་བཙུགས་འབད་ཡོད་པའི་ཐུམ་" "སྒྲིལ་%s་དེ་གནམ་མེད་ས་མེད་གསརཔ་ཨིན་པས།" -#: cmdline/apt-get.cc:3088 +#: cmdline/apt-get.cc:3090 #, fuzzy, c-format msgid "" "%s dependency for %s cannot be satisfied because candidate version of " @@ -984,37 +986,37 @@ msgstr "" "%s གི་དོན་ལུ་%s་རྟེན་འབྲེལ་འདི་གི་རེ་བ་སྐོང་མི་ཚུགས་ནུག་ག་ཅི་འབད་ཟེར་བ་ཅིན་ཐུམ་སྒརིལ་%s་གི་འཐོན་རིམ་" "ཚུ་འཐོབ་མ་ཚུགསཔ་ལས་བརྟེན་འཐོན་རིམ་དགོས་མཁོ་ཚུ་གི་རེ་བ་དོ་སྐོང་མ་ཚུགས་པས།" -#: cmdline/apt-get.cc:3094 +#: cmdline/apt-get.cc:3096 #, fuzzy, c-format msgid "" "%s dependency for %s cannot be satisfied because package %s has no candidate " "version" msgstr "%sཐུམ་སྒྲིལ་འདི་འཐོབ་མ་ཚུགསཔ་ལས་བརྟེན་ %sགི་དོན་ལུ་%s རྟེན་འབྲེལ་དེ་ངལ་རང་མ་ཚུགས་པས།" -#: cmdline/apt-get.cc:3117 +#: cmdline/apt-get.cc:3119 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "%s: %s་གི་དོན་ལུ་་%s་རྟེན་འབྲེལ་འདི་ངལ་རངས་འབད་ནི་འཐུས་ཤོར་བྱུང་ནུག" -#: cmdline/apt-get.cc:3133 +#: cmdline/apt-get.cc:3135 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr " %s་གི་དོན་ལུ་བཟོ་བརྩིགས་-རྟེན་འབྲེལ་འདི་ངལ་རངས་མ་ཚུགས་པས།" -#: cmdline/apt-get.cc:3138 +#: cmdline/apt-get.cc:3140 msgid "Failed to process build dependencies" msgstr "བཟོ་བརྩིགས་རྟེན་འབྲེལ་འདི་ལས་སྦྱོར་འབད་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོདཔ་ཨིན།" -#: cmdline/apt-get.cc:3231 cmdline/apt-get.cc:3243 +#: cmdline/apt-get.cc:3233 cmdline/apt-get.cc:3245 #, fuzzy, c-format msgid "Changelog for %s (%s)" msgstr "%s (%s)་ལུ་མཐུད་དོ།" -#: cmdline/apt-get.cc:3366 +#: cmdline/apt-get.cc:3368 msgid "Supported modules:" msgstr "རྒྱབ་སྐྱོར་འབད་ཡོད་པའི་ཚད་གཞི་ཚུ:" -#: cmdline/apt-get.cc:3407 +#: cmdline/apt-get.cc:3409 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1103,7 +1105,7 @@ msgstr "" "ཤོག་ལེབ་ཚུ་ལུ་བལྟ།\n" " འ་ནི་ ཨེ་ཊི་པི་འདི་ལུ་ཡང་དག་ ཀའུ་ ནུས་ཤུགས་ཚུ་ཡོད།\n" -#: cmdline/apt-get.cc:3572 +#: cmdline/apt-get.cc:3574 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1699,7 +1701,7 @@ msgstr "" " -o=? འདི་གིས་མཐུན་སྒྲིག་རིམ་སྒྲིག་གདམ་ཁ་ཅིག་གཞི་སྒྲིག་འབདཝ་ཨིན་ དཔེར་ན་-o dir::cache=/tmp་" "བཟུམ།\n" -#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1335 +#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1339 #, c-format msgid "Unable to write to %s" msgstr " %sལུ་འབྲི་མ་ཚུགས།" @@ -2741,19 +2743,19 @@ msgstr "བཟོ་ཉེས་འགྱུར་བའི་གྲལ་ཐི msgid "Type '%s' is not known on line %u in source list %s" msgstr "དབྱེ་བ་'%s'་འདི་གྲལ་ཐིག་%u་གུར་ལུ་ཡོདཔ་འབྱུང་ཁུངས་ཐོ་ཡིག་%s་གི་ནང་ན་མ་ཤེས་པས།" -#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:896 +#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:898 #, c-format msgid "" "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " "under APT::Immediate-Configure for details. (%d)" msgstr "" -#: apt-pkg/packagemanager.cc:473 apt-pkg/packagemanager.cc:503 +#: apt-pkg/packagemanager.cc:473 apt-pkg/packagemanager.cc:504 #, fuzzy, c-format msgid "Could not configure '%s'. " msgstr "%s་ཡིག་སྣོད་འདི་ཁ་ཕྱེ་མ་ཚུགས།" -#: apt-pkg/packagemanager.cc:545 +#: apt-pkg/packagemanager.cc:546 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2790,7 +2792,7 @@ msgstr "" msgid "Unable to correct problems, you have held broken packages." msgstr "དཀའ་ངལ་འདི་ནོར་བཅོས་འབད་མ་ཚུགས་ ཁྱོད་ཀྱི་ཐུམ་སྒྲིལ་ཆད་པ་ཚུ་འཆང་འདི་འདུག" -#: apt-pkg/algorithms.cc:1574 apt-pkg/algorithms.cc:1576 +#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 #, fuzzy msgid "" "Some index files failed to download. They have been ignored, or old ones " @@ -2934,21 +2936,21 @@ msgstr "པའོ་་་ཁྱོད་ཀྱིས་ ཨེ་པི་ཊ msgid "Package %s %s was not found while processing file dependencies" msgstr "ཡིག་སྣོད་རྟེན་འབྲེལ་འདི་ཚུ་བཟོ་སྦྱོར་འབད་བའི་བསྒང་ཐུམ་སྒྲིལ་ %s %s ་འདི་མ་ཐོབ་པས།" -#: apt-pkg/pkgcachegen.cc:1146 +#: apt-pkg/pkgcachegen.cc:1150 #, c-format msgid "Couldn't stat source package list %s" msgstr "འབྱུང་ཁུངས་ཐུམ་སྒྲིལ་གྱི་ཐོ་ཡིག་%s་དེ་ངོ་བཤུས་འབད་མ་ཚུགས།" -#: apt-pkg/pkgcachegen.cc:1234 apt-pkg/pkgcachegen.cc:1338 -#: apt-pkg/pkgcachegen.cc:1344 apt-pkg/pkgcachegen.cc:1501 +#: apt-pkg/pkgcachegen.cc:1238 apt-pkg/pkgcachegen.cc:1342 +#: apt-pkg/pkgcachegen.cc:1348 apt-pkg/pkgcachegen.cc:1505 msgid "Reading package lists" msgstr "ཐུམ་སྒྲིལ་ཐོ་ཡིག་ཚུ་ལྷག་དོ།" -#: apt-pkg/pkgcachegen.cc:1251 +#: apt-pkg/pkgcachegen.cc:1255 msgid "Collecting File Provides" msgstr "ཡིག་སྣོད་བྱིན་མི་ཚུ་བསྡུ་ལེན་འབད་དོ།" -#: apt-pkg/pkgcachegen.cc:1443 apt-pkg/pkgcachegen.cc:1450 +#: apt-pkg/pkgcachegen.cc:1447 apt-pkg/pkgcachegen.cc:1454 msgid "IO Error saving source cache" msgstr "IO འཛོལ་བ་འབྱུང་ཁུངས་འདྲ་མཛོད་སྲུང་བཞག་འབད་དོ།" diff --git a/po/el.po b/po/el.po index 338d1a51f..cadfdda02 100644 --- a/po/el.po +++ b/po/el.po @@ -16,7 +16,7 @@ msgid "" msgstr "" "Project-Id-Version: apt_po_el\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2012-10-15 09:49+0200\n" +"POT-Creation-Date: 2013-03-14 08:05+0100\n" "PO-Revision-Date: 2008-08-26 18:25+0300\n" "Last-Translator: Θανάσης Νάτσης \n" "Language-Team: Greek \n" @@ -165,7 +165,7 @@ msgid " Version table:" msgstr " Πίνακας Έκδοσης:" #: cmdline/apt-cache.cc:1683 cmdline/apt-cdrom.cc:198 cmdline/apt-config.cc:81 -#: cmdline/apt-get.cc:3361 cmdline/apt-mark.cc:375 +#: cmdline/apt-get.cc:3363 cmdline/apt-mark.cc:375 #: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:590 #: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147 #, c-format @@ -501,7 +501,7 @@ msgstr "" msgid "%s is already the newest version.\n" msgstr "το %s είναι ήδη η τελευταία έκδοση.\n" -#: cmdline/apt-get.cc:858 cmdline/apt-get.cc:2157 cmdline/apt-mark.cc:68 +#: cmdline/apt-get.cc:858 cmdline/apt-get.cc:2159 cmdline/apt-mark.cc:68 #, c-format msgid "%s set to manually installed.\n" msgstr "το %s έχει εγκατασταθεί με το χέρι\n" @@ -614,8 +614,8 @@ msgstr "" msgid "After this operation, %sB disk space will be freed.\n" msgstr "Μετά από αυτή τη λειτουργία, θα ελευθερωθούν %sB χώρου από το δίσκο.\n" -#: cmdline/apt-get.cc:1228 cmdline/apt-get.cc:1231 cmdline/apt-get.cc:2589 -#: cmdline/apt-get.cc:2592 +#: cmdline/apt-get.cc:1228 cmdline/apt-get.cc:1231 cmdline/apt-get.cc:2591 +#: cmdline/apt-get.cc:2594 #, c-format msgid "Couldn't determine free space in %s" msgstr "Δεν μπόρεσα να προσδιορίσω τον ελεύθερο χώρο στο %s" @@ -625,15 +625,17 @@ msgstr "Δεν μπόρεσα να προσδιορίσω τον ελεύθερ msgid "You don't have enough free space in %s." msgstr "Δεν διαθέτετε αρκετό ελεύθερο χώρο στο %s." -#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1277 +#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1279 msgid "Trivial Only specified but this is not a trivial operation." msgstr "Καθορίσατε συνηθισμένο, αλλά αυτή δεν είναι μια συνηθισμένη εργασία" -#: cmdline/apt-get.cc:1259 +#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be +#. careful with hard to type or special characters (like non-breaking spaces) +#: cmdline/apt-get.cc:1261 msgid "Yes, do as I say!" msgstr "Ναι, κανε ότι λέω!" -#: cmdline/apt-get.cc:1261 +#: cmdline/apt-get.cc:1263 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -644,28 +646,28 @@ msgstr "" "Για να συνεχίσετε πληκτρολογήστε τη φράση '%s'\n" " ?] " -#: cmdline/apt-get.cc:1267 cmdline/apt-get.cc:1286 +#: cmdline/apt-get.cc:1269 cmdline/apt-get.cc:1288 msgid "Abort." msgstr "Εγκατάλειψη." -#: cmdline/apt-get.cc:1282 +#: cmdline/apt-get.cc:1284 msgid "Do you want to continue [Y/n]? " msgstr "Θέλετε να συνεχίσετε [Ν/ο]; " -#: cmdline/apt-get.cc:1354 cmdline/apt-get.cc:2654 apt-pkg/algorithms.cc:1548 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Αποτυχία ανάκτησης του %s %s\n" -#: cmdline/apt-get.cc:1372 +#: cmdline/apt-get.cc:1374 msgid "Some files failed to download" msgstr "Για μερικά αρχεία απέτυχε η μεταφόρτωση" -#: cmdline/apt-get.cc:1373 cmdline/apt-get.cc:2666 +#: cmdline/apt-get.cc:1375 cmdline/apt-get.cc:2668 msgid "Download complete and in download only mode" msgstr "Ολοκληρώθηκε η μεταφόρτωση μόνο" -#: cmdline/apt-get.cc:1379 +#: cmdline/apt-get.cc:1381 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -673,20 +675,20 @@ msgstr "" "Αδύνατη η μεταφόρτωση μερικών αρχείων, ίσως αν δοκιμάζατε με apt-get update " "ή το --fix-missing;" -#: cmdline/apt-get.cc:1383 +#: cmdline/apt-get.cc:1385 msgid "--fix-missing and media swapping is not currently supported" msgstr "" "ο συνδυασμός --fix-missing με εναλλαγή μέσων δεν υποστηρίζεται για την ώρα" -#: cmdline/apt-get.cc:1388 +#: cmdline/apt-get.cc:1390 msgid "Unable to correct missing packages." msgstr "Αδύνατη η επίλυση των χαμένων πακέτων." -#: cmdline/apt-get.cc:1389 +#: cmdline/apt-get.cc:1391 msgid "Aborting install." msgstr "Εγκατάλειψη της εγκατάστασης." -#: cmdline/apt-get.cc:1417 +#: cmdline/apt-get.cc:1419 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -696,36 +698,36 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: cmdline/apt-get.cc:1421 +#: cmdline/apt-get.cc:1423 msgid "Note: This is done automatically and on purpose by dpkg." msgstr "" -#: cmdline/apt-get.cc:1559 +#: cmdline/apt-get.cc:1561 #, c-format msgid "Ignore unavailable target release '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:1591 +#: cmdline/apt-get.cc:1593 #, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "Επιλογή του %s ώς λίστας πηγαίων πακέτων αντί της %s\n" #. if (VerTag.empty() == false && Last == 0) -#: cmdline/apt-get.cc:1629 +#: cmdline/apt-get.cc:1631 #, c-format msgid "Ignore unavailable version '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:1645 +#: cmdline/apt-get.cc:1647 msgid "The update command takes no arguments" msgstr "Η εντολή update δεν παίρνει ορίσματα" -#: cmdline/apt-get.cc:1711 +#: cmdline/apt-get.cc:1713 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" "Δεν επιτρέπεται οποιαδήποτε διαγραφή· αδυναμία εκκίνησης του AutoRemover" -#: cmdline/apt-get.cc:1815 +#: cmdline/apt-get.cc:1817 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -743,15 +745,15 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1818 cmdline/apt-get.cc:1987 +#: cmdline/apt-get.cc:1820 cmdline/apt-get.cc:1989 msgid "The following information may help to resolve the situation:" msgstr "Οι ακόλουθες πληροφορίες ίσως βοηθήσουν στην επίλυση του προβλήματος:" -#: cmdline/apt-get.cc:1822 +#: cmdline/apt-get.cc:1824 msgid "Internal Error, AutoRemover broke stuff" msgstr "Εσωτερικό Σφάλμα, το AutoRemover δημιούργησε κάποιο πρόβλημα" -#: cmdline/apt-get.cc:1829 +#: cmdline/apt-get.cc:1831 msgid "" "The following package was automatically installed and is no longer required:" msgid_plural "" @@ -761,7 +763,7 @@ msgstr[0] "Το ακόλουθο πακέτο εγκαταστάθηκε αυτ msgstr[1] "" "Τα ακόλουθα πακέτα εγκαταστάθηκαν αυτόματα και δεν χρειάζονται πλέον:" -#: cmdline/apt-get.cc:1833 +#: cmdline/apt-get.cc:1835 #, fuzzy, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -771,21 +773,21 @@ msgstr[0] "" msgstr[1] "" "%lu τα ακόλουθα πακέτα εγκαταστάθηκαν αυτόματα και δεν χρειάζονται πλέον:" -#: cmdline/apt-get.cc:1835 +#: cmdline/apt-get.cc:1837 msgid "Use 'apt-get autoremove' to remove it." msgid_plural "Use 'apt-get autoremove' to remove them." msgstr[0] "Χρησιμοποιήστε 'apt-get autoremove' για να το διαγράψετε." msgstr[1] "Χρησιμοποιήστε 'apt-get autoremove' για να τα διαγράψετε." -#: cmdline/apt-get.cc:1854 +#: cmdline/apt-get.cc:1856 msgid "Internal error, AllUpgrade broke stuff" msgstr "Εσωτερικό Σφάλμα, η διαδικασία αναβάθμισης χάλασε" -#: cmdline/apt-get.cc:1953 +#: cmdline/apt-get.cc:1955 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "Aν τρέξετε 'apt-get -f install' ίσως να διορθώσετε αυτά τα προβλήματα:" -#: cmdline/apt-get.cc:1957 +#: cmdline/apt-get.cc:1959 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -793,7 +795,7 @@ msgstr "" "Ανεπίλυτες εξαρτήσεις. Δοκιμάστε 'apt-get -f install' χωρίς να ορίσετε " "πακέτο (ή καθορίστε μια λύση)." -#: cmdline/apt-get.cc:1972 +#: cmdline/apt-get.cc:1974 msgid "" "Some packages could not be installed. This may mean that you have\n" "requested an impossible situation or if you are using the unstable\n" @@ -805,89 +807,89 @@ msgstr "" "διανομή, ότι μερικά από τα πακέτα δεν έχουν ακόμα δημιουργηθεί ή έχουν\n" "μετακινηθεί από τα εισερχόμενα." -#: cmdline/apt-get.cc:1993 +#: cmdline/apt-get.cc:1995 msgid "Broken packages" msgstr "Χαλασμένα πακέτα" -#: cmdline/apt-get.cc:2019 +#: cmdline/apt-get.cc:2021 msgid "The following extra packages will be installed:" msgstr "Τα ακόλουθα επιπλέον πακέτα θα εγκατασταθούν:" -#: cmdline/apt-get.cc:2109 +#: cmdline/apt-get.cc:2111 msgid "Suggested packages:" msgstr "Προτεινόμενα πακέτα:" -#: cmdline/apt-get.cc:2110 +#: cmdline/apt-get.cc:2112 msgid "Recommended packages:" msgstr "Συνιστώμενα πακέτα:" -#: cmdline/apt-get.cc:2152 +#: cmdline/apt-get.cc:2154 #, c-format msgid "Couldn't find package %s" msgstr "Αδύνατη η εύρεση του πακέτου %s" -#: cmdline/apt-get.cc:2159 cmdline/apt-mark.cc:70 +#: cmdline/apt-get.cc:2161 cmdline/apt-mark.cc:70 #, c-format msgid "%s set to automatically installed.\n" msgstr "το %s έχει εγκατασταθεί αυτόματα\n" -#: cmdline/apt-get.cc:2167 cmdline/apt-mark.cc:114 +#: cmdline/apt-get.cc:2169 cmdline/apt-mark.cc:114 msgid "" "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " "instead." msgstr "" -#: cmdline/apt-get.cc:2183 +#: cmdline/apt-get.cc:2185 msgid "Calculating upgrade... " msgstr "Υπολογισμός της αναβάθμισης... " -#: cmdline/apt-get.cc:2186 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 msgid "Failed" msgstr "Απέτυχε" -#: cmdline/apt-get.cc:2191 +#: cmdline/apt-get.cc:2193 msgid "Done" msgstr "Ετοιμο" -#: cmdline/apt-get.cc:2258 cmdline/apt-get.cc:2266 +#: cmdline/apt-get.cc:2260 cmdline/apt-get.cc:2268 msgid "Internal error, problem resolver broke stuff" msgstr "" "Εσωτερικό Σφάλμα, η προσπάθεια επίλυσης του προβλήματος \"έσπασε\" κάποιο " "υλικό" -#: cmdline/apt-get.cc:2294 cmdline/apt-get.cc:2330 +#: cmdline/apt-get.cc:2296 cmdline/apt-get.cc:2332 msgid "Unable to lock the download directory" msgstr "Αδύνατο το κλείδωμα του καταλόγου μεταφόρτωσης" -#: cmdline/apt-get.cc:2386 +#: cmdline/apt-get.cc:2388 #, c-format msgid "Can't find a source to download version '%s' of '%s'" msgstr "" -#: cmdline/apt-get.cc:2391 +#: cmdline/apt-get.cc:2393 #, c-format msgid "Downloading %s %s" msgstr "" -#: cmdline/apt-get.cc:2451 +#: cmdline/apt-get.cc:2453 msgid "Must specify at least one package to fetch source for" msgstr "" "Θα πρέπει να καθορίσετε τουλάχιστον ένα πακέτο για να μεταφορτώσετε τον " "κωδικάτου" -#: cmdline/apt-get.cc:2491 cmdline/apt-get.cc:2803 +#: cmdline/apt-get.cc:2493 cmdline/apt-get.cc:2805 #, c-format msgid "Unable to find a source package for %s" msgstr "Αδυναμία εντοπισμού του κώδικά του πακέτου %s" -#: cmdline/apt-get.cc:2508 +#: cmdline/apt-get.cc:2510 #, c-format msgid "" "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" "%s\n" msgstr "" -#: cmdline/apt-get.cc:2513 +#: cmdline/apt-get.cc:2515 #, c-format msgid "" "Please use:\n" @@ -895,86 +897,86 @@ msgid "" "to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -#: cmdline/apt-get.cc:2566 +#: cmdline/apt-get.cc:2568 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Παράκαμψη του ήδη μεταφορτωμένου αρχείου `%s`\n" -#: cmdline/apt-get.cc:2603 +#: cmdline/apt-get.cc:2605 #, c-format msgid "You don't have enough free space in %s" msgstr "Δεν διαθέτετε αρκετό ελεύθερο χώρο στο %s" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:2612 +#: cmdline/apt-get.cc:2614 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "Χρειάζεται να μεταφορτωθούν %sB/%sB πηγαίου κώδικα.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:2617 +#: cmdline/apt-get.cc:2619 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Χρειάζεται να μεταφορτωθούν %sB πηγαίου κώδικα.\n" -#: cmdline/apt-get.cc:2623 +#: cmdline/apt-get.cc:2625 #, c-format msgid "Fetch source %s\n" msgstr "Μεταφόρτωση Κωδικα %s\n" -#: cmdline/apt-get.cc:2661 +#: cmdline/apt-get.cc:2663 msgid "Failed to fetch some archives." msgstr "Αποτυχία μεταφόρτωσης μερικών αρχειοθηκών." -#: cmdline/apt-get.cc:2692 +#: cmdline/apt-get.cc:2694 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "Παράκαμψη της αποσυμπίεσης ήδη μεταφορτωμένου κώδικα στο %s\n" -#: cmdline/apt-get.cc:2704 +#: cmdline/apt-get.cc:2706 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Απέτυχε η εντολή αποσυμπίεσης %s\n" -#: cmdline/apt-get.cc:2705 +#: cmdline/apt-get.cc:2707 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "Ελέγξτε αν είναι εγκαταστημένο το πακέτο 'dpkg-dev'.\n" -#: cmdline/apt-get.cc:2727 +#: cmdline/apt-get.cc:2729 #, c-format msgid "Build command '%s' failed.\n" msgstr "Απέτυχε η εντολή χτισίματος %s.\n" -#: cmdline/apt-get.cc:2747 +#: cmdline/apt-get.cc:2749 msgid "Child process failed" msgstr "Η απογονική διεργασία απέτυχε" -#: cmdline/apt-get.cc:2766 +#: cmdline/apt-get.cc:2768 msgid "Must specify at least one package to check builddeps for" msgstr "" "Θα πρέπει να καθορίσετε τουλάχιστον ένα πακέτο για έλεγχο των εξαρτήσεων του" -#: cmdline/apt-get.cc:2791 +#: cmdline/apt-get.cc:2793 #, c-format msgid "" "No architecture information available for %s. See apt.conf(5) APT::" "Architectures for setup" msgstr "" -#: cmdline/apt-get.cc:2815 cmdline/apt-get.cc:2818 +#: cmdline/apt-get.cc:2817 cmdline/apt-get.cc:2820 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "Αδύνατη η εύρεση πληροφοριών χτισίματος για το %s" -#: cmdline/apt-get.cc:2838 +#: cmdline/apt-get.cc:2840 #, c-format msgid "%s has no build depends.\n" msgstr "το %s δεν έχει εξαρτήσεις χτισίματος.\n" -#: cmdline/apt-get.cc:3008 +#: cmdline/apt-get.cc:3010 #, c-format msgid "" "%s dependency for %s can't be satisfied because %s is not allowed on '%s' " @@ -983,7 +985,7 @@ msgstr "" "%s εξαρτήσεις για το %s δεν ικανοποιούνται επειδή το %s δεν επιτρέπεται στο " "πακέτο %s" -#: cmdline/apt-get.cc:3026 +#: cmdline/apt-get.cc:3028 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -991,14 +993,14 @@ msgid "" msgstr "" "%s εξαρτήσεις για το %s δεν ικανοποιούνται επειδή το πακέτο %s δεν βρέθηκε" -#: cmdline/apt-get.cc:3049 +#: cmdline/apt-get.cc:3051 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "Αποτυχία ικανοποίησης %s εξαρτήσεων για το %s: Το εγκατεστημένο πακέτο %s " "είναι νεώτερο" -#: cmdline/apt-get.cc:3088 +#: cmdline/apt-get.cc:3090 #, c-format msgid "" "%s dependency for %s cannot be satisfied because candidate version of " @@ -1007,7 +1009,7 @@ msgstr "" "%s εξαρτήσεις για το %s δεν ικανοποιούνται επειδή δεν υπάρχουν διαθέσιμες " "εκδόσεις του πακέτου %s που να ικανοποιούν τις απαιτήσεις της έκδοσης" -#: cmdline/apt-get.cc:3094 +#: cmdline/apt-get.cc:3096 #, c-format msgid "" "%s dependency for %s cannot be satisfied because package %s has no candidate " @@ -1016,30 +1018,30 @@ msgstr "" "%s εξαρτήσεις για το %s δεν ικανοποιούνται επειδή το πακέτο %s δεν έχει " "υποψήφιαέκδοση" -#: cmdline/apt-get.cc:3117 +#: cmdline/apt-get.cc:3119 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "Αποτυχία ικανοποίησης %s εξάρτησης για το %s: %s" -#: cmdline/apt-get.cc:3133 +#: cmdline/apt-get.cc:3135 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "Οι εξαρτήσεις χτισίματος για το %s δεν ικανοποιούνται." -#: cmdline/apt-get.cc:3138 +#: cmdline/apt-get.cc:3140 msgid "Failed to process build dependencies" msgstr "Αποτυχία επεξεργασίας εξαρτήσεων χτισίματος" -#: cmdline/apt-get.cc:3231 cmdline/apt-get.cc:3243 +#: cmdline/apt-get.cc:3233 cmdline/apt-get.cc:3245 #, c-format msgid "Changelog for %s (%s)" msgstr "Changelog για %s (%s)" -#: cmdline/apt-get.cc:3366 +#: cmdline/apt-get.cc:3368 msgid "Supported modules:" msgstr "Υποστηριζόμενοι Οδηγοί:" -#: cmdline/apt-get.cc:3407 +#: cmdline/apt-get.cc:3409 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1124,7 +1126,7 @@ msgstr "" "για περισσότερες πληροφορίες και επιλογές.\n" " This APT has Super Cow Powers.\n" -#: cmdline/apt-get.cc:3572 +#: cmdline/apt-get.cc:3574 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1722,7 +1724,7 @@ msgstr "" " -c=? Ανάγνωση αυτού του αρχείου ρυθμίσεων\n" " -o=? Καθορισμός αυθαίρετης επιλογής παραμέτρου, πχ -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1335 +#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1339 #, c-format msgid "Unable to write to %s" msgstr "Αδύνατη η εγγραφή στο %s" @@ -2768,19 +2770,19 @@ msgstr "Λάθος μορφή της γραμμής %u στη λίστα πηγ msgid "Type '%s' is not known on line %u in source list %s" msgstr "Ο τύπος '%s' στη γραμμή %u στη λίστα πηγών %s είναι άγνωστος " -#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:896 +#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:898 #, c-format msgid "" "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " "under APT::Immediate-Configure for details. (%d)" msgstr "" -#: apt-pkg/packagemanager.cc:473 apt-pkg/packagemanager.cc:503 +#: apt-pkg/packagemanager.cc:473 apt-pkg/packagemanager.cc:504 #, fuzzy, c-format msgid "Could not configure '%s'. " msgstr "Αδύνατο το άνοιγμα του αρχείου %s" -#: apt-pkg/packagemanager.cc:545 +#: apt-pkg/packagemanager.cc:546 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2817,7 +2819,7 @@ msgstr "" msgid "Unable to correct problems, you have held broken packages." msgstr "Αδύνατη η διόρθωση προβλημάτων, έχετε κρατούμενα ελαττωματικά πακέτα." -#: apt-pkg/algorithms.cc:1574 apt-pkg/algorithms.cc:1576 +#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 #, fuzzy msgid "" "Some index files failed to download. They have been ignored, or old ones " @@ -2968,21 +2970,21 @@ msgstr "" msgid "Package %s %s was not found while processing file dependencies" msgstr "Το πακέτο %s %s δε βρέθηκε κατά την επεξεργασία εξαρτήσεων του αρχείου" -#: apt-pkg/pkgcachegen.cc:1146 +#: apt-pkg/pkgcachegen.cc:1150 #, c-format msgid "Couldn't stat source package list %s" msgstr "Αδύνατη η εύρεση της κατάστασης της λίστας πηγαίων πακέτων %s" -#: apt-pkg/pkgcachegen.cc:1234 apt-pkg/pkgcachegen.cc:1338 -#: apt-pkg/pkgcachegen.cc:1344 apt-pkg/pkgcachegen.cc:1501 +#: apt-pkg/pkgcachegen.cc:1238 apt-pkg/pkgcachegen.cc:1342 +#: apt-pkg/pkgcachegen.cc:1348 apt-pkg/pkgcachegen.cc:1505 msgid "Reading package lists" msgstr "Ανάγνωση Λιστών Πακέτων" -#: apt-pkg/pkgcachegen.cc:1251 +#: apt-pkg/pkgcachegen.cc:1255 msgid "Collecting File Provides" msgstr "Συλλογή Παροχών Αρχείου" -#: apt-pkg/pkgcachegen.cc:1443 apt-pkg/pkgcachegen.cc:1450 +#: apt-pkg/pkgcachegen.cc:1447 apt-pkg/pkgcachegen.cc:1454 msgid "IO Error saving source cache" msgstr "Σφάλμα IO κατά την αποθήκευση της cache πηγών" diff --git a/po/es.po b/po/es.po index 9dc7d4f81..63e582ec6 100644 --- a/po/es.po +++ b/po/es.po @@ -33,7 +33,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.8.10\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2012-10-15 09:49+0200\n" +"POT-Creation-Date: 2013-03-14 08:05+0100\n" "PO-Revision-Date: 2011-01-24 11:47+0100\n" "Last-Translator: Javier Fernández-Sanguino Peña \n" "Language-Team: Debian Spanish \n" @@ -210,7 +210,7 @@ msgid " Version table:" msgstr " Tabla de versión:" #: cmdline/apt-cache.cc:1683 cmdline/apt-cdrom.cc:198 cmdline/apt-config.cc:81 -#: cmdline/apt-get.cc:3361 cmdline/apt-mark.cc:375 +#: cmdline/apt-get.cc:3363 cmdline/apt-mark.cc:375 #: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:590 #: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147 #, c-format @@ -545,7 +545,7 @@ msgstr "No es posible reinstalar el paquete %s, no se puede descargar.\n" msgid "%s is already the newest version.\n" msgstr "%s ya está en su versión más reciente.\n" -#: cmdline/apt-get.cc:858 cmdline/apt-get.cc:2157 cmdline/apt-mark.cc:68 +#: cmdline/apt-get.cc:858 cmdline/apt-get.cc:2159 cmdline/apt-mark.cc:68 #, c-format msgid "%s set to manually installed.\n" msgstr "fijado %s como instalado manualmente.\n" @@ -657,8 +657,8 @@ msgstr "" msgid "After this operation, %sB disk space will be freed.\n" msgstr "Se liberarán %sB después de esta operación.\n" -#: cmdline/apt-get.cc:1228 cmdline/apt-get.cc:1231 cmdline/apt-get.cc:2589 -#: cmdline/apt-get.cc:2592 +#: cmdline/apt-get.cc:1228 cmdline/apt-get.cc:1231 cmdline/apt-get.cc:2591 +#: cmdline/apt-get.cc:2594 #, c-format msgid "Couldn't determine free space in %s" msgstr "No pude determinar el espacio libre en %s" @@ -668,15 +668,17 @@ msgstr "No pude determinar el espacio libre en %s" msgid "You don't have enough free space in %s." msgstr "No tiene suficiente espacio libre en %s." -#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1277 +#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1279 msgid "Trivial Only specified but this is not a trivial operation." msgstr "Se especificó Trivial Only pero ésta no es una operación trivial." -#: cmdline/apt-get.cc:1259 +#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be +#. careful with hard to type or special characters (like non-breaking spaces) +#: cmdline/apt-get.cc:1261 msgid "Yes, do as I say!" msgstr "Sí, ¡haga lo que le digo!" -#: cmdline/apt-get.cc:1261 +#: cmdline/apt-get.cc:1263 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -687,28 +689,28 @@ msgstr "" "Para continuar escriba la frase «%s»\n" " ?] " -#: cmdline/apt-get.cc:1267 cmdline/apt-get.cc:1286 +#: cmdline/apt-get.cc:1269 cmdline/apt-get.cc:1288 msgid "Abort." msgstr "Abortado." -#: cmdline/apt-get.cc:1282 +#: cmdline/apt-get.cc:1284 msgid "Do you want to continue [Y/n]? " msgstr "¿Desea continuar [S/n]? " -#: cmdline/apt-get.cc:1354 cmdline/apt-get.cc:2654 apt-pkg/algorithms.cc:1548 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Imposible obtener %s %s\n" -#: cmdline/apt-get.cc:1372 +#: cmdline/apt-get.cc:1374 msgid "Some files failed to download" msgstr "No se pudieron descargar algunos archivos" -#: cmdline/apt-get.cc:1373 cmdline/apt-get.cc:2666 +#: cmdline/apt-get.cc:1375 cmdline/apt-get.cc:2668 msgid "Download complete and in download only mode" msgstr "Descarga completa y en modo de sólo descarga" -#: cmdline/apt-get.cc:1379 +#: cmdline/apt-get.cc:1381 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -716,19 +718,19 @@ msgstr "" "No se pudieron obtener algunos archivos, ¿quizás deba ejecutar «apt-get " "update» o deba intentarlo de nuevo con --fix-missing?" -#: cmdline/apt-get.cc:1383 +#: cmdline/apt-get.cc:1385 msgid "--fix-missing and media swapping is not currently supported" msgstr "Actualmente no están soportados --fix-missing e intercambio de medio" -#: cmdline/apt-get.cc:1388 +#: cmdline/apt-get.cc:1390 msgid "Unable to correct missing packages." msgstr "No se pudieron corregir los paquetes que faltan." -#: cmdline/apt-get.cc:1389 +#: cmdline/apt-get.cc:1391 msgid "Aborting install." msgstr "Abortando la instalación." -#: cmdline/apt-get.cc:1417 +#: cmdline/apt-get.cc:1419 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -742,36 +744,36 @@ msgstr[1] "" "Los paquetes mostrados a continuación han desaparecido de su sistema\n" "dado que todos sus ficheros han sido sobreescritos por otros paquetes:" -#: cmdline/apt-get.cc:1421 +#: cmdline/apt-get.cc:1423 msgid "Note: This is done automatically and on purpose by dpkg." msgstr "Nota: Dpkg realiza esto de forma automática y a propósito." -#: cmdline/apt-get.cc:1559 +#: cmdline/apt-get.cc:1561 #, c-format msgid "Ignore unavailable target release '%s' of package '%s'" msgstr "Ignorar la distribución objetivo no disponible «%s» del paquete «%s»" -#: cmdline/apt-get.cc:1591 +#: cmdline/apt-get.cc:1593 #, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "Escogiendo «%s» como paquete fuente en lugar de «%s»\n" #. if (VerTag.empty() == false && Last == 0) -#: cmdline/apt-get.cc:1629 +#: cmdline/apt-get.cc:1631 #, c-format msgid "Ignore unavailable version '%s' of package '%s'" msgstr "Ignorar la versión no disponible «%s» del paquete «%s»" -#: cmdline/apt-get.cc:1645 +#: cmdline/apt-get.cc:1647 msgid "The update command takes no arguments" msgstr "El comando de actualización no toma argumentos" -#: cmdline/apt-get.cc:1711 +#: cmdline/apt-get.cc:1713 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" "Se supone que no vamos a eliminar cosas, no se pudo iniciar «AutoRemover»" -#: cmdline/apt-get.cc:1815 +#: cmdline/apt-get.cc:1817 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -789,15 +791,15 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1818 cmdline/apt-get.cc:1987 +#: cmdline/apt-get.cc:1820 cmdline/apt-get.cc:1989 msgid "The following information may help to resolve the situation:" msgstr "La siguiente información puede ayudar a resolver la situación:" -#: cmdline/apt-get.cc:1822 +#: cmdline/apt-get.cc:1824 msgid "Internal Error, AutoRemover broke stuff" msgstr "Error interno, «AutoRemover» rompió cosas" -#: cmdline/apt-get.cc:1829 +#: cmdline/apt-get.cc:1831 msgid "" "The following package was automatically installed and is no longer required:" msgid_plural "" @@ -810,7 +812,7 @@ msgstr[1] "" "Los paquetes indicados a continuación se instalaron de forma automática y ya " "no son necesarios." -#: cmdline/apt-get.cc:1833 +#: cmdline/apt-get.cc:1835 #, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -819,22 +821,22 @@ msgstr[0] "Se instaló de forma automática %lu paquete y ya no es necesario.\n" msgstr[1] "" "Se instalaron de forma automática %lu paquetes y ya no son necesarios.\n" -#: cmdline/apt-get.cc:1835 +#: cmdline/apt-get.cc:1837 #, fuzzy msgid "Use 'apt-get autoremove' to remove it." msgid_plural "Use 'apt-get autoremove' to remove them." msgstr[0] "Utilice «apt-get autoremove» para eliminarlos." msgstr[1] "Utilice «apt-get autoremove» para eliminarlos." -#: cmdline/apt-get.cc:1854 +#: cmdline/apt-get.cc:1856 msgid "Internal error, AllUpgrade broke stuff" msgstr "Error Interno, AllUpgrade rompió cosas" -#: cmdline/apt-get.cc:1953 +#: cmdline/apt-get.cc:1955 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "Tal vez quiera ejecutar «apt-get -f install» para corregirlo:" -#: cmdline/apt-get.cc:1957 +#: cmdline/apt-get.cc:1959 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -842,7 +844,7 @@ msgstr "" "Dependencias incumplidas. Intente «apt-get -f install» sin paquetes (o " "especifique una solución)." -#: cmdline/apt-get.cc:1972 +#: cmdline/apt-get.cc:1974 msgid "" "Some packages could not be installed. This may mean that you have\n" "requested an impossible situation or if you are using the unstable\n" @@ -854,79 +856,79 @@ msgstr "" "inestable, que algunos paquetes necesarios no han sido creados o han\n" "sido movidos fuera de Incoming." -#: cmdline/apt-get.cc:1993 +#: cmdline/apt-get.cc:1995 msgid "Broken packages" msgstr "Paquetes rotos" -#: cmdline/apt-get.cc:2019 +#: cmdline/apt-get.cc:2021 msgid "The following extra packages will be installed:" msgstr "Se instalarán los siguientes paquetes extras:" -#: cmdline/apt-get.cc:2109 +#: cmdline/apt-get.cc:2111 msgid "Suggested packages:" msgstr "Paquetes sugeridos:" -#: cmdline/apt-get.cc:2110 +#: cmdline/apt-get.cc:2112 msgid "Recommended packages:" msgstr "Paquetes recomendados:" -#: cmdline/apt-get.cc:2152 +#: cmdline/apt-get.cc:2154 #, c-format msgid "Couldn't find package %s" msgstr "No se pudo encontrar el paquete %s" -#: cmdline/apt-get.cc:2159 cmdline/apt-mark.cc:70 +#: cmdline/apt-get.cc:2161 cmdline/apt-mark.cc:70 #, c-format msgid "%s set to automatically installed.\n" msgstr "fijado %s como instalado automáticamente.\n" -#: cmdline/apt-get.cc:2167 cmdline/apt-mark.cc:114 +#: cmdline/apt-get.cc:2169 cmdline/apt-mark.cc:114 msgid "" "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " "instead." msgstr "" -#: cmdline/apt-get.cc:2183 +#: cmdline/apt-get.cc:2185 msgid "Calculating upgrade... " msgstr "Calculando la actualización... " -#: cmdline/apt-get.cc:2186 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 msgid "Failed" msgstr "Falló" -#: cmdline/apt-get.cc:2191 +#: cmdline/apt-get.cc:2193 msgid "Done" msgstr "Listo" -#: cmdline/apt-get.cc:2258 cmdline/apt-get.cc:2266 +#: cmdline/apt-get.cc:2260 cmdline/apt-get.cc:2268 msgid "Internal error, problem resolver broke stuff" msgstr "" "Error interno, el sistema de solución de problemas rompió algunas cosas" -#: cmdline/apt-get.cc:2294 cmdline/apt-get.cc:2330 +#: cmdline/apt-get.cc:2296 cmdline/apt-get.cc:2332 msgid "Unable to lock the download directory" msgstr "No se puede bloquear el directorio de descarga" -#: cmdline/apt-get.cc:2386 +#: cmdline/apt-get.cc:2388 #, c-format msgid "Can't find a source to download version '%s' of '%s'" msgstr "" -#: cmdline/apt-get.cc:2391 +#: cmdline/apt-get.cc:2393 #, c-format msgid "Downloading %s %s" msgstr "" -#: cmdline/apt-get.cc:2451 +#: cmdline/apt-get.cc:2453 msgid "Must specify at least one package to fetch source for" msgstr "Debe especificar al menos un paquete para obtener su código fuente" -#: cmdline/apt-get.cc:2491 cmdline/apt-get.cc:2803 +#: cmdline/apt-get.cc:2493 cmdline/apt-get.cc:2805 #, c-format msgid "Unable to find a source package for %s" msgstr "No se pudo encontrar un paquete de fuentes para %s" -#: cmdline/apt-get.cc:2508 +#: cmdline/apt-get.cc:2510 #, c-format msgid "" "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" @@ -936,7 +938,7 @@ msgstr "" "versiones «%s» en:\n" "%s\n" -#: cmdline/apt-get.cc:2513 +#: cmdline/apt-get.cc:2515 #, fuzzy, c-format msgid "" "Please use:\n" @@ -948,87 +950,87 @@ msgstr "" "para obtener las últimas actualizaciones (posiblemente no publicadas aún) " "del paquete.\n" -#: cmdline/apt-get.cc:2566 +#: cmdline/apt-get.cc:2568 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Omitiendo el fichero ya descargado «%s»\n" -#: cmdline/apt-get.cc:2603 +#: cmdline/apt-get.cc:2605 #, c-format msgid "You don't have enough free space in %s" msgstr "No tiene suficiente espacio libre en %s" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:2612 +#: cmdline/apt-get.cc:2614 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "Necesito descargar %sB/%sB de archivos fuente.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:2617 +#: cmdline/apt-get.cc:2619 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Necesito descargar %sB de archivos fuente.\n" -#: cmdline/apt-get.cc:2623 +#: cmdline/apt-get.cc:2625 #, c-format msgid "Fetch source %s\n" msgstr "Fuente obtenida %s\n" -#: cmdline/apt-get.cc:2661 +#: cmdline/apt-get.cc:2663 msgid "Failed to fetch some archives." msgstr "No se pudieron obtener algunos archivos." -#: cmdline/apt-get.cc:2692 +#: cmdline/apt-get.cc:2694 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "Ignorando desempaquetamiento de paquetes ya desempaquetados en %s\n" -#: cmdline/apt-get.cc:2704 +#: cmdline/apt-get.cc:2706 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Falló la orden de desempaquetamiento «%s».\n" -#: cmdline/apt-get.cc:2705 +#: cmdline/apt-get.cc:2707 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "Compruebe que el paquete «dpkg-dev» esté instalado.\n" -#: cmdline/apt-get.cc:2727 +#: cmdline/apt-get.cc:2729 #, c-format msgid "Build command '%s' failed.\n" msgstr "Falló la orden de construcción «%s».\n" -#: cmdline/apt-get.cc:2747 +#: cmdline/apt-get.cc:2749 msgid "Child process failed" msgstr "Falló el proceso hijo" -#: cmdline/apt-get.cc:2766 +#: cmdline/apt-get.cc:2768 msgid "Must specify at least one package to check builddeps for" msgstr "" "Debe especificar al menos un paquete para verificar sus dependencias de " "construcción" -#: cmdline/apt-get.cc:2791 +#: cmdline/apt-get.cc:2793 #, c-format msgid "" "No architecture information available for %s. See apt.conf(5) APT::" "Architectures for setup" msgstr "" -#: cmdline/apt-get.cc:2815 cmdline/apt-get.cc:2818 +#: cmdline/apt-get.cc:2817 cmdline/apt-get.cc:2820 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "No se pudo obtener información de dependencias de construcción para %s" -#: cmdline/apt-get.cc:2838 +#: cmdline/apt-get.cc:2840 #, c-format msgid "%s has no build depends.\n" msgstr "%s no tiene dependencias de construcción.\n" -#: cmdline/apt-get.cc:3008 +#: cmdline/apt-get.cc:3010 #, fuzzy, c-format msgid "" "%s dependency for %s can't be satisfied because %s is not allowed on '%s' " @@ -1037,7 +1039,7 @@ msgstr "" "La dependencia %s en %s no puede satisfacerse porque no se puede encontrar " "el paquete %s" -#: cmdline/apt-get.cc:3026 +#: cmdline/apt-get.cc:3028 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -1046,14 +1048,14 @@ msgstr "" "La dependencia %s en %s no puede satisfacerse porque no se puede encontrar " "el paquete %s" -#: cmdline/apt-get.cc:3049 +#: cmdline/apt-get.cc:3051 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "No se pudo satisfacer la dependencia %s para %s: El paquete instalado %s es " "demasiado nuevo" -#: cmdline/apt-get.cc:3088 +#: cmdline/apt-get.cc:3090 #, fuzzy, c-format msgid "" "%s dependency for %s cannot be satisfied because candidate version of " @@ -1062,7 +1064,7 @@ msgstr "" "La dependencia %s en %s no puede satisfacerse porque ninguna versión " "disponible del paquete %s satisface los requisitos de versión" -#: cmdline/apt-get.cc:3094 +#: cmdline/apt-get.cc:3096 #, fuzzy, c-format msgid "" "%s dependency for %s cannot be satisfied because package %s has no candidate " @@ -1071,30 +1073,30 @@ msgstr "" "La dependencia %s en %s no puede satisfacerse porque no se puede encontrar " "el paquete %s" -#: cmdline/apt-get.cc:3117 +#: cmdline/apt-get.cc:3119 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "No se pudo satisfacer la dependencia %s para %s: %s" -#: cmdline/apt-get.cc:3133 +#: cmdline/apt-get.cc:3135 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "No se pudieron satisfacer las dependencias de construcción de %s." -#: cmdline/apt-get.cc:3138 +#: cmdline/apt-get.cc:3140 msgid "Failed to process build dependencies" msgstr "No se pudieron procesar las dependencias de construcción" -#: cmdline/apt-get.cc:3231 cmdline/apt-get.cc:3243 +#: cmdline/apt-get.cc:3233 cmdline/apt-get.cc:3245 #, fuzzy, c-format msgid "Changelog for %s (%s)" msgstr "Conectando a %s (%s)" -#: cmdline/apt-get.cc:3366 +#: cmdline/apt-get.cc:3368 msgid "Supported modules:" msgstr "Módulos soportados:" -#: cmdline/apt-get.cc:3407 +#: cmdline/apt-get.cc:3409 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1185,7 +1187,7 @@ msgstr "" "para más información y opciones.\n" " Este APT tiene poderes de Super Vaca.\n" -#: cmdline/apt-get.cc:3572 +#: cmdline/apt-get.cc:3574 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1789,7 +1791,7 @@ msgstr "" " -o=? Establece una opción de configuración arbitraria, p. ej. -o dir::" "cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1335 +#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1339 #, c-format msgid "Unable to write to %s" msgstr "No se puede escribir en %s" @@ -2845,7 +2847,7 @@ msgstr "Línea %u mal formada en la lista de fuentes %s (tipo)" msgid "Type '%s' is not known on line %u in source list %s" msgstr "Tipo «%s» desconocido en la línea %u de lista de fuentes %s" -#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:896 +#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:898 #, c-format msgid "" "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " @@ -2855,12 +2857,12 @@ msgstr "" "de manual con «man 5 apt.conf» bajo «APT::Immediate-Configure» para más " "información. (%d)" -#: apt-pkg/packagemanager.cc:473 apt-pkg/packagemanager.cc:503 +#: apt-pkg/packagemanager.cc:473 apt-pkg/packagemanager.cc:504 #, fuzzy, c-format msgid "Could not configure '%s'. " msgstr "No pude abrir el fichero «%s»" -#: apt-pkg/packagemanager.cc:545 +#: apt-pkg/packagemanager.cc:546 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2898,7 +2900,7 @@ msgid "Unable to correct problems, you have held broken packages." msgstr "" "No se pudieron corregir los problemas, usted ha retenido paquetes rotos." -#: apt-pkg/algorithms.cc:1574 apt-pkg/algorithms.cc:1576 +#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 #, fuzzy msgid "" "Some index files failed to download. They have been ignored, or old ones " @@ -3048,21 +3050,21 @@ msgid "Package %s %s was not found while processing file dependencies" msgstr "" "Al procesar las dependencias de archivos no se encontró el paquete %s %s" -#: apt-pkg/pkgcachegen.cc:1146 +#: apt-pkg/pkgcachegen.cc:1150 #, c-format msgid "Couldn't stat source package list %s" msgstr "No se puede leer la lista de paquetes fuente %s" -#: apt-pkg/pkgcachegen.cc:1234 apt-pkg/pkgcachegen.cc:1338 -#: apt-pkg/pkgcachegen.cc:1344 apt-pkg/pkgcachegen.cc:1501 +#: apt-pkg/pkgcachegen.cc:1238 apt-pkg/pkgcachegen.cc:1342 +#: apt-pkg/pkgcachegen.cc:1348 apt-pkg/pkgcachegen.cc:1505 msgid "Reading package lists" msgstr "Leyendo lista de paquetes" -#: apt-pkg/pkgcachegen.cc:1251 +#: apt-pkg/pkgcachegen.cc:1255 msgid "Collecting File Provides" msgstr "Recogiendo archivos que proveen" -#: apt-pkg/pkgcachegen.cc:1443 apt-pkg/pkgcachegen.cc:1450 +#: apt-pkg/pkgcachegen.cc:1447 apt-pkg/pkgcachegen.cc:1454 msgid "IO Error saving source cache" msgstr "Error de E/S guardando caché fuente" diff --git a/po/eu.po b/po/eu.po index 317fc4711..1bec8b578 100644 --- a/po/eu.po +++ b/po/eu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: apt_po_eu\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2012-10-15 09:49+0200\n" +"POT-Creation-Date: 2013-03-14 08:05+0100\n" "PO-Revision-Date: 2009-05-17 00:41+0200\n" "Last-Translator: Piarres Beobide \n" "Language-Team: Euskara \n" @@ -158,7 +158,7 @@ msgid " Version table:" msgstr " Bertsio taula:" #: cmdline/apt-cache.cc:1683 cmdline/apt-cdrom.cc:198 cmdline/apt-config.cc:81 -#: cmdline/apt-get.cc:3361 cmdline/apt-mark.cc:375 +#: cmdline/apt-get.cc:3363 cmdline/apt-mark.cc:375 #: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:590 #: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147 #, c-format @@ -486,7 +486,7 @@ msgstr "%s berriro instalatzea ez da posible; ezin da deskargatu.\n" msgid "%s is already the newest version.\n" msgstr "%s bertsiorik berriena da jada.\n" -#: cmdline/apt-get.cc:858 cmdline/apt-get.cc:2157 cmdline/apt-mark.cc:68 +#: cmdline/apt-get.cc:858 cmdline/apt-get.cc:2159 cmdline/apt-mark.cc:68 #, c-format msgid "%s set to manually installed.\n" msgstr "%s eskuz instalatua bezala ezarri.\n" @@ -595,8 +595,8 @@ msgstr "Ekintza honen ondoren, %sB gehiago erabiliko dira diskoan.\n" msgid "After this operation, %sB disk space will be freed.\n" msgstr "Ekintza honen ondoren, %sB libratuko dira diskoan.\n" -#: cmdline/apt-get.cc:1228 cmdline/apt-get.cc:1231 cmdline/apt-get.cc:2589 -#: cmdline/apt-get.cc:2592 +#: cmdline/apt-get.cc:1228 cmdline/apt-get.cc:1231 cmdline/apt-get.cc:2591 +#: cmdline/apt-get.cc:2594 #, c-format msgid "Couldn't determine free space in %s" msgstr "Ezin da %s(e)n duzun leku librea atzeman." @@ -606,15 +606,17 @@ msgstr "Ezin da %s(e)n duzun leku librea atzeman." msgid "You don't have enough free space in %s." msgstr "Ez daukazu nahikoa leku libre %s(e)n." -#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1277 +#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1279 msgid "Trivial Only specified but this is not a trivial operation." msgstr "'Trivial Only' zehaztu da, baina hau ez da eragiketa tribial bat." -#: cmdline/apt-get.cc:1259 +#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be +#. careful with hard to type or special characters (like non-breaking spaces) +#: cmdline/apt-get.cc:1261 msgid "Yes, do as I say!" msgstr "Bai, egin esandakoa!" -#: cmdline/apt-get.cc:1261 +#: cmdline/apt-get.cc:1263 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -625,28 +627,28 @@ msgstr "" "Jarraitzeko, idatzi '%s' esaldia\n" " ?] " -#: cmdline/apt-get.cc:1267 cmdline/apt-get.cc:1286 +#: cmdline/apt-get.cc:1269 cmdline/apt-get.cc:1288 msgid "Abort." msgstr "Abortatu." -#: cmdline/apt-get.cc:1282 +#: cmdline/apt-get.cc:1284 msgid "Do you want to continue [Y/n]? " msgstr "Aurrera jarraitu nahi al duzu [B/e]? " -#: cmdline/apt-get.cc:1354 cmdline/apt-get.cc:2654 apt-pkg/algorithms.cc:1548 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Ezin da lortu %s %s\n" -#: cmdline/apt-get.cc:1372 +#: cmdline/apt-get.cc:1374 msgid "Some files failed to download" msgstr "Fitxategi batzuk ezin izan dira deskargatu" -#: cmdline/apt-get.cc:1373 cmdline/apt-get.cc:2666 +#: cmdline/apt-get.cc:1375 cmdline/apt-get.cc:2668 msgid "Download complete and in download only mode" msgstr "Deskarga amaituta eta deskarga soileko moduan" -#: cmdline/apt-get.cc:1379 +#: cmdline/apt-get.cc:1381 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -654,19 +656,19 @@ msgstr "" "Ezin izan dira artxibo batzuk lortu; beharbada apt-get update exekutatu, edo " "--fix-missing aukerarekin saiatu?" -#: cmdline/apt-get.cc:1383 +#: cmdline/apt-get.cc:1385 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix-missing eta euskarri aldaketa ez dira onartzen oraingoz" -#: cmdline/apt-get.cc:1388 +#: cmdline/apt-get.cc:1390 msgid "Unable to correct missing packages." msgstr "Falta diren paketeak ezin dira zuzendu." -#: cmdline/apt-get.cc:1389 +#: cmdline/apt-get.cc:1391 msgid "Aborting install." msgstr "Abortatu instalazioa." -#: cmdline/apt-get.cc:1417 +#: cmdline/apt-get.cc:1419 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -676,35 +678,35 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: cmdline/apt-get.cc:1421 +#: cmdline/apt-get.cc:1423 msgid "Note: This is done automatically and on purpose by dpkg." msgstr "" -#: cmdline/apt-get.cc:1559 +#: cmdline/apt-get.cc:1561 #, c-format msgid "Ignore unavailable target release '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:1591 +#: cmdline/apt-get.cc:1593 #, fuzzy, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "Ezin da atzitu %s iturburu paketeen zerrenda" #. if (VerTag.empty() == false && Last == 0) -#: cmdline/apt-get.cc:1629 +#: cmdline/apt-get.cc:1631 #, c-format msgid "Ignore unavailable version '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:1645 +#: cmdline/apt-get.cc:1647 msgid "The update command takes no arguments" msgstr "Eguneratzeko komandoak ez du argumenturik hartzen" -#: cmdline/apt-get.cc:1711 +#: cmdline/apt-get.cc:1713 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "Suposatu ez dugun zerbait ezabatuko da, ezin da AutoRemover abiarazi" -#: cmdline/apt-get.cc:1815 +#: cmdline/apt-get.cc:1817 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -722,15 +724,15 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1818 cmdline/apt-get.cc:1987 +#: cmdline/apt-get.cc:1820 cmdline/apt-get.cc:1989 msgid "The following information may help to resolve the situation:" msgstr "Informazio honek arazoa konpontzen lagun dezake:" -#: cmdline/apt-get.cc:1822 +#: cmdline/apt-get.cc:1824 msgid "Internal Error, AutoRemover broke stuff" msgstr "Barne Errorea, AutoRemover-ek zerbait apurtu du" -#: cmdline/apt-get.cc:1829 +#: cmdline/apt-get.cc:1831 #, fuzzy msgid "" "The following package was automatically installed and is no longer required:" @@ -744,7 +746,7 @@ msgstr[1] "" "Ondorengo pakete automatikoki instalatuak izan ziren eta ez dira luzaroago " "behar." -#: cmdline/apt-get.cc:1833 +#: cmdline/apt-get.cc:1835 #, fuzzy, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -756,22 +758,22 @@ msgstr[1] "" "Ondorengo pakete automatikoki instalatuak izan ziren eta ez dira luzaroago " "behar." -#: cmdline/apt-get.cc:1835 +#: cmdline/apt-get.cc:1837 #, fuzzy msgid "Use 'apt-get autoremove' to remove it." msgid_plural "Use 'apt-get autoremove' to remove them." msgstr[0] "'apt-get autoremove' erabili ezabatzeko." msgstr[1] "'apt-get autoremove' erabili ezabatzeko." -#: cmdline/apt-get.cc:1854 +#: cmdline/apt-get.cc:1856 msgid "Internal error, AllUpgrade broke stuff" msgstr "Barne Errorea, AllUpgade-k zerbait apurtu du" -#: cmdline/apt-get.cc:1953 +#: cmdline/apt-get.cc:1955 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "Beharbada 'apt-get -f install' exekutatu nahiko duzu hauek zuzentzeko:" -#: cmdline/apt-get.cc:1957 +#: cmdline/apt-get.cc:1959 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -779,7 +781,7 @@ msgstr "" "Bete gabeko mendekotasunak. Probatu 'apt-get -f install' paketerik gabe (edo " "zehaztu konponbide bat)." -#: cmdline/apt-get.cc:1972 +#: cmdline/apt-get.cc:1974 msgid "" "Some packages could not be installed. This may mean that you have\n" "requested an impossible situation or if you are using the unstable\n" @@ -791,85 +793,85 @@ msgstr "" "beharrezko pakete batzuk ez ziren sortuko oraindik, edo \n" "Sarrerakoetan (Incoming) egoten jarraituko dute." -#: cmdline/apt-get.cc:1993 +#: cmdline/apt-get.cc:1995 msgid "Broken packages" msgstr "Hautsitako paketeak" -#: cmdline/apt-get.cc:2019 +#: cmdline/apt-get.cc:2021 msgid "The following extra packages will be installed:" msgstr "Ondorengo pakete gehigarriak instalatuko dira:" -#: cmdline/apt-get.cc:2109 +#: cmdline/apt-get.cc:2111 msgid "Suggested packages:" msgstr "Iradokitako paketeak:" -#: cmdline/apt-get.cc:2110 +#: cmdline/apt-get.cc:2112 msgid "Recommended packages:" msgstr "Gomendatutako paketeak:" -#: cmdline/apt-get.cc:2152 +#: cmdline/apt-get.cc:2154 #, c-format msgid "Couldn't find package %s" msgstr "Ezin izan da %s paketea aurkitu" -#: cmdline/apt-get.cc:2159 cmdline/apt-mark.cc:70 +#: cmdline/apt-get.cc:2161 cmdline/apt-mark.cc:70 #, fuzzy, c-format msgid "%s set to automatically installed.\n" msgstr "%s eskuz instalatua bezala ezarri.\n" -#: cmdline/apt-get.cc:2167 cmdline/apt-mark.cc:114 +#: cmdline/apt-get.cc:2169 cmdline/apt-mark.cc:114 msgid "" "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " "instead." msgstr "" -#: cmdline/apt-get.cc:2183 +#: cmdline/apt-get.cc:2185 msgid "Calculating upgrade... " msgstr "Berriketak kalkulatzen... " -#: cmdline/apt-get.cc:2186 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 msgid "Failed" msgstr "Huts egin du" -#: cmdline/apt-get.cc:2191 +#: cmdline/apt-get.cc:2193 msgid "Done" msgstr "Eginda" -#: cmdline/apt-get.cc:2258 cmdline/apt-get.cc:2266 +#: cmdline/apt-get.cc:2260 cmdline/apt-get.cc:2268 msgid "Internal error, problem resolver broke stuff" msgstr "Barne Errorea, arazo konpontzaileak zerbait apurtu du" -#: cmdline/apt-get.cc:2294 cmdline/apt-get.cc:2330 +#: cmdline/apt-get.cc:2296 cmdline/apt-get.cc:2332 msgid "Unable to lock the download directory" msgstr "Ezin da deskarga direktorioa blokeatu" -#: cmdline/apt-get.cc:2386 +#: cmdline/apt-get.cc:2388 #, c-format msgid "Can't find a source to download version '%s' of '%s'" msgstr "" -#: cmdline/apt-get.cc:2391 +#: cmdline/apt-get.cc:2393 #, c-format msgid "Downloading %s %s" msgstr "" -#: cmdline/apt-get.cc:2451 +#: cmdline/apt-get.cc:2453 msgid "Must specify at least one package to fetch source for" msgstr "Gutxienez pakete bat zehaztu behar duzu iturburua lortzeko" -#: cmdline/apt-get.cc:2491 cmdline/apt-get.cc:2803 +#: cmdline/apt-get.cc:2493 cmdline/apt-get.cc:2805 #, c-format msgid "Unable to find a source package for %s" msgstr "Ezin da iturburu paketerik aurkitu %s(r)entzat" -#: cmdline/apt-get.cc:2508 +#: cmdline/apt-get.cc:2510 #, c-format msgid "" "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" "%s\n" msgstr "" -#: cmdline/apt-get.cc:2513 +#: cmdline/apt-get.cc:2515 #, c-format msgid "" "Please use:\n" @@ -877,87 +879,87 @@ msgid "" "to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -#: cmdline/apt-get.cc:2566 +#: cmdline/apt-get.cc:2568 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Dagoeneko deskargaturiko '%s' fitxategia saltatzen\n" -#: cmdline/apt-get.cc:2603 +#: cmdline/apt-get.cc:2605 #, c-format msgid "You don't have enough free space in %s" msgstr "Ez daukazu nahikoa leku libre %s(e)n." #. TRANSLATOR: The required space between number and unit is already included #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:2612 +#: cmdline/apt-get.cc:2614 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "Iturburu artxiboetako %sB/%sB eskuratu behar dira.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:2617 +#: cmdline/apt-get.cc:2619 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Iturburu artxiboetako %sB eskuratu behar dira.\n" -#: cmdline/apt-get.cc:2623 +#: cmdline/apt-get.cc:2625 #, c-format msgid "Fetch source %s\n" msgstr "Eskuratu %s iturburua\n" -#: cmdline/apt-get.cc:2661 +#: cmdline/apt-get.cc:2663 msgid "Failed to fetch some archives." msgstr "Huts egin du zenbat artxibo lortzean." -#: cmdline/apt-get.cc:2692 +#: cmdline/apt-get.cc:2694 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "" "%s(e)n dagoeneko deskonprimitutako iturburua deskonprimitzea saltatzen\n" -#: cmdline/apt-get.cc:2704 +#: cmdline/apt-get.cc:2706 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Deskonprimitzeko '%s' komandoak huts egin du.\n" -#: cmdline/apt-get.cc:2705 +#: cmdline/apt-get.cc:2707 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "Egiaztatu 'dpkg-dev' paketea instalaturik dagoen.\n" -#: cmdline/apt-get.cc:2727 +#: cmdline/apt-get.cc:2729 #, c-format msgid "Build command '%s' failed.\n" msgstr "Eraikitzeko '%s' komandoak huts egin du.\n" -#: cmdline/apt-get.cc:2747 +#: cmdline/apt-get.cc:2749 msgid "Child process failed" msgstr "Prozesu umeak huts egin du" -#: cmdline/apt-get.cc:2766 +#: cmdline/apt-get.cc:2768 msgid "Must specify at least one package to check builddeps for" msgstr "" "Gutxienez pakete bat zehaztu behar duzu eraikitze mendekotasunak egiaztatzeko" -#: cmdline/apt-get.cc:2791 +#: cmdline/apt-get.cc:2793 #, c-format msgid "" "No architecture information available for %s. See apt.conf(5) APT::" "Architectures for setup" msgstr "" -#: cmdline/apt-get.cc:2815 cmdline/apt-get.cc:2818 +#: cmdline/apt-get.cc:2817 cmdline/apt-get.cc:2820 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "Ezin izan da %s(r)en eraikitze mendekotasunen informazioa eskuratu" -#: cmdline/apt-get.cc:2838 +#: cmdline/apt-get.cc:2840 #, c-format msgid "%s has no build depends.\n" msgstr "%s: ez du eraikitze mendekotasunik.\n" -#: cmdline/apt-get.cc:3008 +#: cmdline/apt-get.cc:3010 #, fuzzy, c-format msgid "" "%s dependency for %s can't be satisfied because %s is not allowed on '%s' " @@ -965,7 +967,7 @@ msgid "" msgstr "" "%2$s(r)en %1$s mendekotasuna ezin da bete, %3$s paketea ezin delako aurkitu" -#: cmdline/apt-get.cc:3026 +#: cmdline/apt-get.cc:3028 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -973,14 +975,14 @@ msgid "" msgstr "" "%2$s(r)en %1$s mendekotasuna ezin da bete, %3$s paketea ezin delako aurkitu" -#: cmdline/apt-get.cc:3049 +#: cmdline/apt-get.cc:3051 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "Huts egin du %2$s(r)en %1$s mendekotasuna betetzean: instalatutako %3$s " "paketea berriegia da" -#: cmdline/apt-get.cc:3088 +#: cmdline/apt-get.cc:3090 #, fuzzy, c-format msgid "" "%s dependency for %s cannot be satisfied because candidate version of " @@ -989,7 +991,7 @@ msgstr "" "%2$s(r)en %1$s mendekotasuna ezin da bete, ez baitago bertsio-eskakizunak " "betetzen dituen %3$s paketearen bertsio erabilgarririk" -#: cmdline/apt-get.cc:3094 +#: cmdline/apt-get.cc:3096 #, fuzzy, c-format msgid "" "%s dependency for %s cannot be satisfied because package %s has no candidate " @@ -997,30 +999,30 @@ msgid "" msgstr "" "%2$s(r)en %1$s mendekotasuna ezin da bete, %3$s paketea ezin delako aurkitu" -#: cmdline/apt-get.cc:3117 +#: cmdline/apt-get.cc:3119 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "Huts egin du %2$s(r)en %1$s mendekotasuna betetzean: %3$s" -#: cmdline/apt-get.cc:3133 +#: cmdline/apt-get.cc:3135 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "%s(r)en eraikitze mendekotasunak ezin izan dira bete." -#: cmdline/apt-get.cc:3138 +#: cmdline/apt-get.cc:3140 msgid "Failed to process build dependencies" msgstr "Huts egin du eraikitze mendekotasunak prozesatzean" -#: cmdline/apt-get.cc:3231 cmdline/apt-get.cc:3243 +#: cmdline/apt-get.cc:3233 cmdline/apt-get.cc:3245 #, fuzzy, c-format msgid "Changelog for %s (%s)" msgstr "Konektatzen -> %s.(%s)" -#: cmdline/apt-get.cc:3366 +#: cmdline/apt-get.cc:3368 msgid "Supported modules:" msgstr "Onartutako Moduluak:" -#: cmdline/apt-get.cc:3407 +#: cmdline/apt-get.cc:3409 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1107,7 +1109,7 @@ msgstr "" "sources.list(5) eta apt.conf(5) orrialdeak eskuliburuan.\n" " APT honek Super Behiaren Ahalmenak ditu.\n" -#: cmdline/apt-get.cc:3572 +#: cmdline/apt-get.cc:3574 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1703,7 +1705,7 @@ msgstr "" " -c=? Irakurri konfigurazio fitxategi hau\n" " -o=? Ezarri konfigurazio aukera arbitrario bat. Adib.: -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1335 +#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1339 #, c-format msgid "Unable to write to %s" msgstr "%s : ezin da idatzi" @@ -2742,19 +2744,19 @@ msgstr "Gaizki osatutako %u lerroa %s Iturburu zerrendan (type)" msgid "Type '%s' is not known on line %u in source list %s" msgstr "'%s' mota ez da ezagutzen %u lerroan %s Iturburu zerrendan" -#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:896 +#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:898 #, c-format msgid "" "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " "under APT::Immediate-Configure for details. (%d)" msgstr "" -#: apt-pkg/packagemanager.cc:473 apt-pkg/packagemanager.cc:503 +#: apt-pkg/packagemanager.cc:473 apt-pkg/packagemanager.cc:504 #, fuzzy, c-format msgid "Could not configure '%s'. " msgstr "%s fitxategia ezin izan da ireki" -#: apt-pkg/packagemanager.cc:545 +#: apt-pkg/packagemanager.cc:546 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2790,7 +2792,7 @@ msgstr "" msgid "Unable to correct problems, you have held broken packages." msgstr "Ezin dira arazoak konpondu; hautsitako paketeak atxiki dituzu." -#: apt-pkg/algorithms.cc:1574 apt-pkg/algorithms.cc:1576 +#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 #, fuzzy msgid "" "Some index files failed to download. They have been ignored, or old ones " @@ -2932,21 +2934,21 @@ msgstr "APT honek maneia dezakeen mendekotasun muga gainditu duzu." msgid "Package %s %s was not found while processing file dependencies" msgstr "%s %s paketea ez da aurkitu fitxategi mendekotasunak prozesatzean" -#: apt-pkg/pkgcachegen.cc:1146 +#: apt-pkg/pkgcachegen.cc:1150 #, c-format msgid "Couldn't stat source package list %s" msgstr "Ezin da atzitu %s iturburu paketeen zerrenda" -#: apt-pkg/pkgcachegen.cc:1234 apt-pkg/pkgcachegen.cc:1338 -#: apt-pkg/pkgcachegen.cc:1344 apt-pkg/pkgcachegen.cc:1501 +#: apt-pkg/pkgcachegen.cc:1238 apt-pkg/pkgcachegen.cc:1342 +#: apt-pkg/pkgcachegen.cc:1348 apt-pkg/pkgcachegen.cc:1505 msgid "Reading package lists" msgstr "Pakete Zerrenda irakurtzen" -#: apt-pkg/pkgcachegen.cc:1251 +#: apt-pkg/pkgcachegen.cc:1255 msgid "Collecting File Provides" msgstr "Fitxategiaren erreferentziak biltzen" -#: apt-pkg/pkgcachegen.cc:1443 apt-pkg/pkgcachegen.cc:1450 +#: apt-pkg/pkgcachegen.cc:1447 apt-pkg/pkgcachegen.cc:1454 msgid "IO Error saving source cache" msgstr "S/I errorea iturburu katxea gordetzean" diff --git a/po/fi.po b/po/fi.po index 0fb9320a7..849bfc2f6 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 \n" -"POT-Creation-Date: 2012-10-15 09:49+0200\n" +"POT-Creation-Date: 2013-03-14 08:05+0100\n" "PO-Revision-Date: 2008-12-11 14:52+0200\n" "Last-Translator: Tapio Lehtonen \n" "Language-Team: Finnish \n" @@ -156,7 +156,7 @@ msgid " Version table:" msgstr " Versiotaulukko:" #: cmdline/apt-cache.cc:1683 cmdline/apt-cdrom.cc:198 cmdline/apt-config.cc:81 -#: cmdline/apt-get.cc:3361 cmdline/apt-mark.cc:375 +#: cmdline/apt-get.cc:3363 cmdline/apt-mark.cc:375 #: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:590 #: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147 #, c-format @@ -483,7 +483,7 @@ msgstr "Paketin %s uudelleenasennus ei ole mahdollista, sitä ei voi noutaa.\n" msgid "%s is already the newest version.\n" msgstr "%s on jo uusin versio.\n" -#: cmdline/apt-get.cc:858 cmdline/apt-get.cc:2157 cmdline/apt-mark.cc:68 +#: cmdline/apt-get.cc:858 cmdline/apt-get.cc:2159 cmdline/apt-mark.cc:68 #, c-format msgid "%s set to manually installed.\n" msgstr "%s on merkitty käyttäjän toimesta asennetuksi.\n" @@ -591,8 +591,8 @@ msgstr "Toiminnon jälkeen käytetään %s t lisää levytilaa.\n" msgid "After this operation, %sB disk space will be freed.\n" msgstr "Toiminnon jälkeen vapautuu %s t levytilaa.\n" -#: cmdline/apt-get.cc:1228 cmdline/apt-get.cc:1231 cmdline/apt-get.cc:2589 -#: cmdline/apt-get.cc:2592 +#: cmdline/apt-get.cc:1228 cmdline/apt-get.cc:1231 cmdline/apt-get.cc:2591 +#: cmdline/apt-get.cc:2594 #, c-format msgid "Couldn't determine free space in %s" msgstr "Kansion %s vapaan tilan määrä ei selvinnyt" @@ -602,16 +602,18 @@ msgstr "Kansion %s vapaan tilan määrä ei selvinnyt" msgid "You don't have enough free space in %s." msgstr "Kansiossa %s ei ole riittävästi vapaata tilaa." -#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1277 +#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1279 msgid "Trivial Only specified but this is not a trivial operation." msgstr "" "On määritetty Trivial Only mutta tämä ei ole itsestäänselvä toimenpide." -#: cmdline/apt-get.cc:1259 +#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be +#. careful with hard to type or special characters (like non-breaking spaces) +#: cmdline/apt-get.cc:1261 msgid "Yes, do as I say!" msgstr "Kyllä, tee kuten käsketään!" -#: cmdline/apt-get.cc:1261 +#: cmdline/apt-get.cc:1263 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -622,28 +624,28 @@ msgstr "" "Jatka kirjoittamalla \"%s\"\n" " ?] " -#: cmdline/apt-get.cc:1267 cmdline/apt-get.cc:1286 +#: cmdline/apt-get.cc:1269 cmdline/apt-get.cc:1288 msgid "Abort." msgstr "Keskeytä." -#: cmdline/apt-get.cc:1282 +#: cmdline/apt-get.cc:1284 msgid "Do you want to continue [Y/n]? " msgstr "Haluatko jatkaa [K/e]? " -#: cmdline/apt-get.cc:1354 cmdline/apt-get.cc:2654 apt-pkg/algorithms.cc:1548 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Tiedoston %s nouto ei onnistunut %s\n" -#: cmdline/apt-get.cc:1372 +#: cmdline/apt-get.cc:1374 msgid "Some files failed to download" msgstr "Joidenkin tiedostojen nouto ei onnistunut" -#: cmdline/apt-get.cc:1373 cmdline/apt-get.cc:2666 +#: cmdline/apt-get.cc:1375 cmdline/apt-get.cc:2668 msgid "Download complete and in download only mode" msgstr "Nouto on valmis ja määrätty vain nouto" -#: cmdline/apt-get.cc:1379 +#: cmdline/apt-get.cc:1381 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -651,19 +653,19 @@ msgstr "" "Joidenkin arkistojen nouto ei onnistunut, ehkä \"apt-get update\" auttaa tai " "kokeile --fix-missing?" -#: cmdline/apt-get.cc:1383 +#: cmdline/apt-get.cc:1385 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix-missing ja taltion vaihto ei ole nyt tuettu" -#: cmdline/apt-get.cc:1388 +#: cmdline/apt-get.cc:1390 msgid "Unable to correct missing packages." msgstr "Puuttuvia paketteja ei voi korjata." -#: cmdline/apt-get.cc:1389 +#: cmdline/apt-get.cc:1391 msgid "Aborting install." msgstr "Asennus keskeytetään." -#: cmdline/apt-get.cc:1417 +#: cmdline/apt-get.cc:1419 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -673,36 +675,36 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: cmdline/apt-get.cc:1421 +#: cmdline/apt-get.cc:1423 msgid "Note: This is done automatically and on purpose by dpkg." msgstr "" -#: cmdline/apt-get.cc:1559 +#: cmdline/apt-get.cc:1561 #, c-format msgid "Ignore unavailable target release '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:1591 +#: cmdline/apt-get.cc:1593 #, fuzzy, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "stat ei toiminut lähdepakettiluettelolle %s" #. if (VerTag.empty() == false && Last == 0) -#: cmdline/apt-get.cc:1629 +#: cmdline/apt-get.cc:1631 #, c-format msgid "Ignore unavailable version '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:1645 +#: cmdline/apt-get.cc:1647 msgid "The update command takes no arguments" msgstr "Komento update ei käytä parametreja" -#: cmdline/apt-get.cc:1711 +#: cmdline/apt-get.cc:1713 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" "On tarkoitus olla poistamatta mitään, joten AutoRemover:ia ei voi käynnistää" -#: cmdline/apt-get.cc:1815 +#: cmdline/apt-get.cc:1817 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -720,15 +722,15 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1818 cmdline/apt-get.cc:1987 +#: cmdline/apt-get.cc:1820 cmdline/apt-get.cc:1989 msgid "The following information may help to resolve the situation:" msgstr "Seuraavista tiedoista voi olla hyötyä selvitettäessä tilannetta:" -#: cmdline/apt-get.cc:1822 +#: cmdline/apt-get.cc:1824 msgid "Internal Error, AutoRemover broke stuff" msgstr "Sisäinen virhe, AutoRemover rikkoi jotain" -#: cmdline/apt-get.cc:1829 +#: cmdline/apt-get.cc:1831 #, fuzzy msgid "" "The following package was automatically installed and is no longer required:" @@ -742,7 +744,7 @@ msgstr[1] "" "Seuraavat paketit asennettiin automaattisesti, eivätkä ne ole enää " "vaadittuja:" -#: cmdline/apt-get.cc:1833 +#: cmdline/apt-get.cc:1835 #, fuzzy, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -754,22 +756,22 @@ msgstr[1] "" "Seuraavat paketit asennettiin automaattisesti, eivätkä ne ole enää " "vaadittuja:" -#: cmdline/apt-get.cc:1835 +#: cmdline/apt-get.cc:1837 #, fuzzy msgid "Use 'apt-get autoremove' to remove it." msgid_plural "Use 'apt-get autoremove' to remove them." msgstr[0] "Poista ne komennolla \"apt-get autoremove\"." msgstr[1] "Poista ne komennolla \"apt-get autoremove\"." -#: cmdline/apt-get.cc:1854 +#: cmdline/apt-get.cc:1856 msgid "Internal error, AllUpgrade broke stuff" msgstr "Sisäinen virhe, AllUpgrade rikkoi jotain" -#: cmdline/apt-get.cc:1953 +#: cmdline/apt-get.cc:1955 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "Saatat haluta suorittaa \"apt-get -f install\" korjaamaan nämä:" -#: cmdline/apt-get.cc:1957 +#: cmdline/apt-get.cc:1959 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -777,7 +779,7 @@ msgstr "" "Kaikkia riippuvuuksia ei ole tyydytetty. Kokeile \"apt-get -f install\" " "ilmanpaketteja (tai ratkaise itse)." -#: cmdline/apt-get.cc:1972 +#: cmdline/apt-get.cc:1974 msgid "" "Some packages could not be installed. This may mean that you have\n" "requested an impossible situation or if you are using the unstable\n" @@ -788,85 +790,85 @@ msgstr "" "jos käytetään epävakaata jakelua, joitain vaadittuja paketteja ei ole\n" "vielä luotu tai siirretty Incoming-kansiosta." -#: cmdline/apt-get.cc:1993 +#: cmdline/apt-get.cc:1995 msgid "Broken packages" msgstr "Rikkinäiset paketit" -#: cmdline/apt-get.cc:2019 +#: cmdline/apt-get.cc:2021 msgid "The following extra packages will be installed:" msgstr "Seuraavat ylimääräiset paketit on merkitty asennettaviksi:" -#: cmdline/apt-get.cc:2109 +#: cmdline/apt-get.cc:2111 msgid "Suggested packages:" msgstr "Ehdotetut paketit:" -#: cmdline/apt-get.cc:2110 +#: cmdline/apt-get.cc:2112 msgid "Recommended packages:" msgstr "Suositellut paketit:" -#: cmdline/apt-get.cc:2152 +#: cmdline/apt-get.cc:2154 #, c-format msgid "Couldn't find package %s" msgstr "Pakettia %s ei löytynyt" -#: cmdline/apt-get.cc:2159 cmdline/apt-mark.cc:70 +#: cmdline/apt-get.cc:2161 cmdline/apt-mark.cc:70 #, fuzzy, c-format msgid "%s set to automatically installed.\n" msgstr "%s on merkitty käyttäjän toimesta asennetuksi.\n" -#: cmdline/apt-get.cc:2167 cmdline/apt-mark.cc:114 +#: cmdline/apt-get.cc:2169 cmdline/apt-mark.cc:114 msgid "" "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " "instead." msgstr "" -#: cmdline/apt-get.cc:2183 +#: cmdline/apt-get.cc:2185 msgid "Calculating upgrade... " msgstr "Käsitellään päivitystä ... " -#: cmdline/apt-get.cc:2186 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 msgid "Failed" msgstr "Ei onnistunut" -#: cmdline/apt-get.cc:2191 +#: cmdline/apt-get.cc:2193 msgid "Done" msgstr "Valmis" -#: cmdline/apt-get.cc:2258 cmdline/apt-get.cc:2266 +#: cmdline/apt-get.cc:2260 cmdline/apt-get.cc:2268 msgid "Internal error, problem resolver broke stuff" msgstr "Sisäinen virhe, resolver rikkoi jotain" -#: cmdline/apt-get.cc:2294 cmdline/apt-get.cc:2330 +#: cmdline/apt-get.cc:2296 cmdline/apt-get.cc:2332 msgid "Unable to lock the download directory" msgstr "Noutokansiota ei saatu lukittua" -#: cmdline/apt-get.cc:2386 +#: cmdline/apt-get.cc:2388 #, c-format msgid "Can't find a source to download version '%s' of '%s'" msgstr "" -#: cmdline/apt-get.cc:2391 +#: cmdline/apt-get.cc:2393 #, c-format msgid "Downloading %s %s" msgstr "" -#: cmdline/apt-get.cc:2451 +#: cmdline/apt-get.cc:2453 msgid "Must specify at least one package to fetch source for" msgstr "On annettava ainakin yksi paketti jonka lähdekoodi noudetaan" -#: cmdline/apt-get.cc:2491 cmdline/apt-get.cc:2803 +#: cmdline/apt-get.cc:2493 cmdline/apt-get.cc:2805 #, c-format msgid "Unable to find a source package for %s" msgstr "Paketin %s lähdekoodipakettia ei löytynyt" -#: cmdline/apt-get.cc:2508 +#: cmdline/apt-get.cc:2510 #, c-format msgid "" "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" "%s\n" msgstr "" -#: cmdline/apt-get.cc:2513 +#: cmdline/apt-get.cc:2515 #, c-format msgid "" "Please use:\n" @@ -874,86 +876,86 @@ msgid "" "to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -#: cmdline/apt-get.cc:2566 +#: cmdline/apt-get.cc:2568 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Ohitetaan jo noudettu tiedosto \"%s\"\n" -#: cmdline/apt-get.cc:2603 +#: cmdline/apt-get.cc:2605 #, c-format msgid "You don't have enough free space in %s" msgstr "Kansiossa %s ei ole riittävästi vapaata tilaa" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:2612 +#: cmdline/apt-get.cc:2614 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "On noudettava %st/%st lähdekoodiarkistoja.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:2617 +#: cmdline/apt-get.cc:2619 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "On noudettava %st lähdekoodiarkistoja.\n" -#: cmdline/apt-get.cc:2623 +#: cmdline/apt-get.cc:2625 #, c-format msgid "Fetch source %s\n" msgstr "Nouda lähdekoodi %s\n" -#: cmdline/apt-get.cc:2661 +#: cmdline/apt-get.cc:2663 msgid "Failed to fetch some archives." msgstr "Joidenkin arkistojen noutaminen ei onnistunut." -#: cmdline/apt-get.cc:2692 +#: cmdline/apt-get.cc:2694 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "Ohitetaan purku jo puretun lähdekoodin %s kohdalla\n" -#: cmdline/apt-get.cc:2704 +#: cmdline/apt-get.cc:2706 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Purkukomento \"%s\" ei onnistunut.\n" -#: cmdline/apt-get.cc:2705 +#: cmdline/apt-get.cc:2707 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "Tarkista onko paketti \"dpkg-dev\" asennettu.\n" -#: cmdline/apt-get.cc:2727 +#: cmdline/apt-get.cc:2729 #, c-format msgid "Build command '%s' failed.\n" msgstr "Paketointikomento \"%s\" ei onnistunut.\n" -#: cmdline/apt-get.cc:2747 +#: cmdline/apt-get.cc:2749 msgid "Child process failed" msgstr "Lapsiprosessi kaatui" -#: cmdline/apt-get.cc:2766 +#: cmdline/apt-get.cc:2768 msgid "Must specify at least one package to check builddeps for" msgstr "" "On annettava ainakin yksi paketti jonka paketointiriippuvuudet tarkistetaan" -#: cmdline/apt-get.cc:2791 +#: cmdline/apt-get.cc:2793 #, c-format msgid "" "No architecture information available for %s. See apt.conf(5) APT::" "Architectures for setup" msgstr "" -#: cmdline/apt-get.cc:2815 cmdline/apt-get.cc:2818 +#: cmdline/apt-get.cc:2817 cmdline/apt-get.cc:2820 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "Paketille %s ei ole saatavilla riippuvuustietoja" -#: cmdline/apt-get.cc:2838 +#: cmdline/apt-get.cc:2840 #, c-format msgid "%s has no build depends.\n" msgstr "Paketille %s ei ole määritetty paketointiriippuvuuksia.\n" -#: cmdline/apt-get.cc:3008 +#: cmdline/apt-get.cc:3010 #, fuzzy, c-format msgid "" "%s dependency for %s can't be satisfied because %s is not allowed on '%s' " @@ -961,7 +963,7 @@ msgid "" msgstr "" "riippuvuutta %s paketille %s ei voi tyydyttää koska pakettia %s ei löydy" -#: cmdline/apt-get.cc:3026 +#: cmdline/apt-get.cc:3028 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -969,14 +971,14 @@ msgid "" msgstr "" "riippuvuutta %s paketille %s ei voi tyydyttää koska pakettia %s ei löydy" -#: cmdline/apt-get.cc:3049 +#: cmdline/apt-get.cc:3051 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "Riippuvutta %s paketille %s ei voi tyydyttää: Asennettu paketti %s on liian " "uusi" -#: cmdline/apt-get.cc:3088 +#: cmdline/apt-get.cc:3090 #, fuzzy, c-format msgid "" "%s dependency for %s cannot be satisfied because candidate version of " @@ -985,7 +987,7 @@ msgstr "" "%s riippuvuutta paketille %s ei voi tyydyttää koska mikään paketin %s versio " "ei vastaa versioriippuvuuksia" -#: cmdline/apt-get.cc:3094 +#: cmdline/apt-get.cc:3096 #, fuzzy, c-format msgid "" "%s dependency for %s cannot be satisfied because package %s has no candidate " @@ -993,30 +995,30 @@ msgid "" msgstr "" "riippuvuutta %s paketille %s ei voi tyydyttää koska pakettia %s ei löydy" -#: cmdline/apt-get.cc:3117 +#: cmdline/apt-get.cc:3119 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "Riippuvuutta %s paketille %s ei voi tyydyttää: %s" -#: cmdline/apt-get.cc:3133 +#: cmdline/apt-get.cc:3135 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "Paketointiriippuvuuksia paketille %s ei voi tyydyttää." -#: cmdline/apt-get.cc:3138 +#: cmdline/apt-get.cc:3140 msgid "Failed to process build dependencies" msgstr "Paketointiriippuvuuksien käsittely ei onnistunut" -#: cmdline/apt-get.cc:3231 cmdline/apt-get.cc:3243 +#: cmdline/apt-get.cc:3233 cmdline/apt-get.cc:3245 #, fuzzy, c-format msgid "Changelog for %s (%s)" msgstr "Avataan yhteys %s (%s)" -#: cmdline/apt-get.cc:3366 +#: cmdline/apt-get.cc:3368 msgid "Supported modules:" msgstr "Tuetut moduulit:" -#: cmdline/apt-get.cc:3407 +#: cmdline/apt-get.cc:3409 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1102,7 +1104,7 @@ msgstr "" "lisätietoja ja lisää valitsimia.\n" " This APT has Super Cow Powers.\n" -#: cmdline/apt-get.cc:3572 +#: cmdline/apt-get.cc:3574 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1696,7 +1698,7 @@ msgstr "" " -c=? Lue tämä asetustiedosto\n" " -o=? Aseta mikä asetusvalitsin tahansa, esim. -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1335 +#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1339 #, c-format msgid "Unable to write to %s" msgstr "Tiedostoon %s kirjoittaminen ei onnistu" @@ -2734,19 +2736,19 @@ msgstr "Rivi %u on väärän muotoinen lähdeluettelossa %s (tyyppi)" msgid "Type '%s' is not known on line %u in source list %s" msgstr "Tyyppi \"%s\" on tuntematon rivillä %u lähdeluettelossa %s" -#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:896 +#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:898 #, c-format msgid "" "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " "under APT::Immediate-Configure for details. (%d)" msgstr "" -#: apt-pkg/packagemanager.cc:473 apt-pkg/packagemanager.cc:503 +#: apt-pkg/packagemanager.cc:473 apt-pkg/packagemanager.cc:504 #, fuzzy, c-format msgid "Could not configure '%s'. " msgstr "Tiedostoa %s ei voitu avata" -#: apt-pkg/packagemanager.cc:545 +#: apt-pkg/packagemanager.cc:546 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2780,7 +2782,7 @@ msgstr "" msgid "Unable to correct problems, you have held broken packages." msgstr "Pulmia ei voi korjata, rikkinäisiä paketteja on pysytetty." -#: apt-pkg/algorithms.cc:1574 apt-pkg/algorithms.cc:1576 +#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 #, fuzzy msgid "" "Some index files failed to download. They have been ignored, or old ones " @@ -2924,21 +2926,21 @@ msgstr "Jummijammi, annoit enemmän riippuvuuksia kuin tämä APT osaa käsitell msgid "Package %s %s was not found while processing file dependencies" msgstr "Pakettia %s %s ei löytynyt käsiteltäessä tiedostojen riippuvuuksia." -#: apt-pkg/pkgcachegen.cc:1146 +#: apt-pkg/pkgcachegen.cc:1150 #, c-format msgid "Couldn't stat source package list %s" msgstr "stat ei toiminut lähdepakettiluettelolle %s" -#: apt-pkg/pkgcachegen.cc:1234 apt-pkg/pkgcachegen.cc:1338 -#: apt-pkg/pkgcachegen.cc:1344 apt-pkg/pkgcachegen.cc:1501 +#: apt-pkg/pkgcachegen.cc:1238 apt-pkg/pkgcachegen.cc:1342 +#: apt-pkg/pkgcachegen.cc:1348 apt-pkg/pkgcachegen.cc:1505 msgid "Reading package lists" msgstr "Luetaan pakettiluetteloita" -#: apt-pkg/pkgcachegen.cc:1251 +#: apt-pkg/pkgcachegen.cc:1255 msgid "Collecting File Provides" msgstr "Kootaan tiedostojen tarjoamistietoja" -#: apt-pkg/pkgcachegen.cc:1443 apt-pkg/pkgcachegen.cc:1450 +#: apt-pkg/pkgcachegen.cc:1447 apt-pkg/pkgcachegen.cc:1454 msgid "IO Error saving source cache" msgstr "Syöttö/Tulostus -virhe tallennettaessa pakettivarastoa" diff --git a/po/fr.po b/po/fr.po index 8277aae65..8407d3231 100644 --- a/po/fr.po +++ b/po/fr.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: fr\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2012-06-27 11:17+0200\n" +"POT-Creation-Date: 2013-03-14 08:05+0100\n" "PO-Revision-Date: 2012-06-25 19:58+0200\n" "Last-Translator: Christian Perrier \n" "Language-Team: French \n" @@ -92,77 +92,77 @@ msgstr "Espace disque gaspillé : " msgid "Total space accounted for: " msgstr "Total de l'espace attribué : " -#: cmdline/apt-cache.cc:515 cmdline/apt-cache.cc:1143 +#: cmdline/apt-cache.cc:515 cmdline/apt-cache.cc:1147 #, c-format msgid "Package file %s is out of sync." msgstr "Fichier %s désynchronisé." -#: cmdline/apt-cache.cc:593 cmdline/apt-cache.cc:1378 -#: cmdline/apt-cache.cc:1380 cmdline/apt-cache.cc:1457 cmdline/apt-mark.cc:46 +#: cmdline/apt-cache.cc:593 cmdline/apt-cache.cc:1382 +#: cmdline/apt-cache.cc:1384 cmdline/apt-cache.cc:1461 cmdline/apt-mark.cc:46 #: cmdline/apt-mark.cc:93 cmdline/apt-mark.cc:219 msgid "No packages found" msgstr "Aucun paquet n'a été trouvé" -#: cmdline/apt-cache.cc:1222 +#: cmdline/apt-cache.cc:1226 msgid "You must give at least one search pattern" msgstr "Vous devez fournir au moins un motif de recherche" -#: cmdline/apt-cache.cc:1357 +#: cmdline/apt-cache.cc:1361 msgid "This command is deprecated. Please use 'apt-mark showauto' instead." msgstr "Cette commande est obsolète. Veuillez utiliser « apt-mark showauto »." -#: cmdline/apt-cache.cc:1452 apt-pkg/cacheset.cc:508 +#: cmdline/apt-cache.cc:1456 apt-pkg/cacheset.cc:510 #, c-format msgid "Unable to locate package %s" msgstr "Impossible de trouver le paquet %s" -#: cmdline/apt-cache.cc:1482 +#: cmdline/apt-cache.cc:1486 msgid "Package files:" msgstr "Fichiers du paquet :" -#: cmdline/apt-cache.cc:1489 cmdline/apt-cache.cc:1580 +#: cmdline/apt-cache.cc:1493 cmdline/apt-cache.cc:1584 msgid "Cache is out of sync, can't x-ref a package file" msgstr "Le cache est désynchronisé, impossible de référencer un fichier" #. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1503 +#: cmdline/apt-cache.cc:1507 msgid "Pinned packages:" msgstr "Paquets épinglés :" -#: cmdline/apt-cache.cc:1515 cmdline/apt-cache.cc:1560 +#: cmdline/apt-cache.cc:1519 cmdline/apt-cache.cc:1564 msgid "(not found)" msgstr "(non trouvé)" -#: cmdline/apt-cache.cc:1523 +#: cmdline/apt-cache.cc:1527 msgid " Installed: " msgstr " Installé : " -#: cmdline/apt-cache.cc:1524 +#: cmdline/apt-cache.cc:1528 msgid " Candidate: " msgstr " Candidat : " -#: cmdline/apt-cache.cc:1542 cmdline/apt-cache.cc:1550 +#: cmdline/apt-cache.cc:1546 cmdline/apt-cache.cc:1554 msgid "(none)" msgstr "(aucun)" -#: cmdline/apt-cache.cc:1557 +#: cmdline/apt-cache.cc:1561 msgid " Package pin: " msgstr " Épinglage de paquet : " #. Show the priority tables -#: cmdline/apt-cache.cc:1566 +#: cmdline/apt-cache.cc:1570 msgid " Version table:" msgstr " Table de version :" -#: cmdline/apt-cache.cc:1679 cmdline/apt-cdrom.cc:198 cmdline/apt-config.cc:81 -#: cmdline/apt-get.cc:3350 cmdline/apt-mark.cc:363 +#: cmdline/apt-cache.cc:1683 cmdline/apt-cdrom.cc:198 cmdline/apt-config.cc:81 +#: cmdline/apt-get.cc:3363 cmdline/apt-mark.cc:375 #: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:590 #: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147 #, c-format msgid "%s %s for %s compiled on %s %s\n" msgstr "%s %s pour %s compilé sur %s %s\n" -#: cmdline/apt-cache.cc:1686 +#: cmdline/apt-cache.cc:1690 msgid "" "Usage: apt-cache [options] command\n" " apt-cache [options] showpkg pkg1 [pkg2 ...]\n" @@ -493,7 +493,7 @@ msgstr "" msgid "%s is already the newest version.\n" msgstr "%s est déjà la plus récente version disponible.\n" -#: cmdline/apt-get.cc:858 cmdline/apt-get.cc:2157 cmdline/apt-mark.cc:68 +#: cmdline/apt-get.cc:858 cmdline/apt-get.cc:2159 cmdline/apt-mark.cc:68 #, c-format msgid "%s set to manually installed.\n" msgstr "%s passé en « installé manuellement ».\n" @@ -604,8 +604,8 @@ msgstr "" msgid "After this operation, %sB disk space will be freed.\n" msgstr "Après cette opération, %so d'espace disque seront libérés.\n" -#: cmdline/apt-get.cc:1228 cmdline/apt-get.cc:1231 cmdline/apt-get.cc:2589 -#: cmdline/apt-get.cc:2592 +#: cmdline/apt-get.cc:1228 cmdline/apt-get.cc:1231 cmdline/apt-get.cc:2591 +#: cmdline/apt-get.cc:2594 #, c-format msgid "Couldn't determine free space in %s" msgstr "Impossible de déterminer l'espace disponible sur %s" @@ -615,7 +615,7 @@ msgstr "Impossible de déterminer l'espace disponible sur %s" msgid "You don't have enough free space in %s." msgstr "Pas assez d'espace disponible sur %s" -#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1277 +#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1279 msgid "Trivial Only specified but this is not a trivial operation." msgstr "" "L'option --trivial-only a été indiquée mais il ne s'agit pas d'une opération " @@ -623,11 +623,13 @@ msgstr "" # The space before the exclamation mark must not be a non-breaking space; this # sentence is supposed to be typed by a user who cannot see the difference. -#: cmdline/apt-get.cc:1259 +#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be +#. careful with hard to type or special characters (like non-breaking spaces) +#: cmdline/apt-get.cc:1261 msgid "Yes, do as I say!" msgstr "Oui, faites ce que je vous dis !" -#: cmdline/apt-get.cc:1261 +#: cmdline/apt-get.cc:1263 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -638,28 +640,28 @@ msgstr "" "Pour continuer, tapez la phrase « %s »\n" " ?]" -#: cmdline/apt-get.cc:1267 cmdline/apt-get.cc:1286 +#: cmdline/apt-get.cc:1269 cmdline/apt-get.cc:1288 msgid "Abort." msgstr "Annulation." -#: cmdline/apt-get.cc:1282 +#: cmdline/apt-get.cc:1284 msgid "Do you want to continue [Y/n]? " msgstr "Souhaitez-vous continuer [O/n] ? " -#: cmdline/apt-get.cc:1354 cmdline/apt-get.cc:2654 apt-pkg/algorithms.cc:1543 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Impossible de récupérer %s %s\n" -#: cmdline/apt-get.cc:1372 +#: cmdline/apt-get.cc:1374 msgid "Some files failed to download" msgstr "Certains fichiers n'ont pu être téléchargés." -#: cmdline/apt-get.cc:1373 cmdline/apt-get.cc:2666 +#: cmdline/apt-get.cc:1375 cmdline/apt-get.cc:2668 msgid "Download complete and in download only mode" msgstr "Téléchargement achevé et dans le mode téléchargement uniquement" -#: cmdline/apt-get.cc:1379 +#: cmdline/apt-get.cc:1381 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -667,20 +669,20 @@ msgstr "" "Impossible de récupérer quelques archives, peut-être devrez-vous lancer apt-" "get update ou essayer avec --fix-missing ?" -#: cmdline/apt-get.cc:1383 +#: cmdline/apt-get.cc:1385 msgid "--fix-missing and media swapping is not currently supported" msgstr "" "l'option --fix-missing et l'échange de support ne sont pas encore reconnus." -#: cmdline/apt-get.cc:1388 +#: cmdline/apt-get.cc:1390 msgid "Unable to correct missing packages." msgstr "Impossible de corriger le fait que les paquets manquent." -#: cmdline/apt-get.cc:1389 +#: cmdline/apt-get.cc:1391 msgid "Aborting install." msgstr "Annulation de l'installation." -#: cmdline/apt-get.cc:1417 +#: cmdline/apt-get.cc:1419 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -694,39 +696,39 @@ msgstr[1] "" "Les paquets suivants ont disparu du système car tous leurs fichiers\n" "ont été remplacés par d'autres paquets :" -#: cmdline/apt-get.cc:1421 +#: cmdline/apt-get.cc:1423 msgid "Note: This is done automatically and on purpose by dpkg." msgstr "" "Note : cette opération volontaire (effectuée par dpkg) est automatique." -#: cmdline/apt-get.cc:1559 +#: cmdline/apt-get.cc:1561 #, c-format msgid "Ignore unavailable target release '%s' of package '%s'" msgstr "" "La distribution cible « %s » indisponible pour le paquet « %s » est ignorée" -#: cmdline/apt-get.cc:1591 +#: cmdline/apt-get.cc:1593 #, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "Choix de « %s » comme paquet source à la place de « %s »\n" #. if (VerTag.empty() == false && Last == 0) -#: cmdline/apt-get.cc:1629 +#: cmdline/apt-get.cc:1631 #, c-format msgid "Ignore unavailable version '%s' of package '%s'" msgstr "La version « %s » indisponible du paquet « %s » est ignorée" -#: cmdline/apt-get.cc:1645 +#: cmdline/apt-get.cc:1647 msgid "The update command takes no arguments" msgstr "La commande de mise à jour ne prend pas de paramètre" -#: cmdline/apt-get.cc:1711 +#: cmdline/apt-get.cc:1713 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" "Aucune suppression n'est censée se produire : impossible de lancer " "« Autoremover »" -#: cmdline/apt-get.cc:1815 +#: cmdline/apt-get.cc:1817 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -745,16 +747,16 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1818 cmdline/apt-get.cc:1987 +#: cmdline/apt-get.cc:1820 cmdline/apt-get.cc:1989 msgid "The following information may help to resolve the situation:" msgstr "L'information suivante devrait vous aider à résoudre la situation : " -#: cmdline/apt-get.cc:1822 +#: cmdline/apt-get.cc:1824 msgid "Internal Error, AutoRemover broke stuff" msgstr "" "Erreur interne, l'outil de suppression automatique a cassé quelque chose." -#: cmdline/apt-get.cc:1829 +#: cmdline/apt-get.cc:1831 msgid "" "The following package was automatically installed and is no longer required:" msgid_plural "" @@ -766,7 +768,7 @@ msgstr[1] "" "Les paquets suivants ont été installés automatiquement et ne sont plus " "nécessaires :" -#: cmdline/apt-get.cc:1833 +#: cmdline/apt-get.cc:1835 #, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -776,22 +778,22 @@ msgstr[0] "" msgstr[1] "" "%lu paquets ont été installés automatiquement et ne sont plus nécessaires.\n" -#: cmdline/apt-get.cc:1835 +#: cmdline/apt-get.cc:1837 msgid "Use 'apt-get autoremove' to remove it." msgid_plural "Use 'apt-get autoremove' to remove them." msgstr[0] "Veuillez utiliser « apt-get autoremove » pour le supprimer." msgstr[1] "Veuillez utiliser « apt-get autoremove » pour les supprimer." -#: cmdline/apt-get.cc:1854 +#: cmdline/apt-get.cc:1856 msgid "Internal error, AllUpgrade broke stuff" msgstr "Erreur interne, AllUpgrade a cassé le boulot !" -#: cmdline/apt-get.cc:1953 +#: cmdline/apt-get.cc:1955 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "" "Vous pouvez lancer « apt-get -f install » pour corriger ces problèmes :" -#: cmdline/apt-get.cc:1957 +#: cmdline/apt-get.cc:1959 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -799,7 +801,7 @@ msgstr "" "Dépendances non satisfaites. Essayez « apt-get -f install » sans paquet\n" "(ou indiquez une solution)." -#: cmdline/apt-get.cc:1972 +#: cmdline/apt-get.cc:1974 msgid "" "Some packages could not be installed. This may mean that you have\n" "requested an impossible situation or if you are using the unstable\n" @@ -811,33 +813,33 @@ msgstr "" "la distribution unstable, que certains paquets n'ont pas encore\n" "été créés ou ne sont pas sortis d'Incoming." -#: cmdline/apt-get.cc:1993 +#: cmdline/apt-get.cc:1995 msgid "Broken packages" msgstr "Paquets défectueux" -#: cmdline/apt-get.cc:2019 +#: cmdline/apt-get.cc:2021 msgid "The following extra packages will be installed:" msgstr "Les paquets supplémentaires suivants seront installés : " -#: cmdline/apt-get.cc:2109 +#: cmdline/apt-get.cc:2111 msgid "Suggested packages:" msgstr "Paquets suggérés :" -#: cmdline/apt-get.cc:2110 +#: cmdline/apt-get.cc:2112 msgid "Recommended packages:" msgstr "Paquets recommandés :" -#: cmdline/apt-get.cc:2152 +#: cmdline/apt-get.cc:2154 #, c-format msgid "Couldn't find package %s" msgstr "Impossible de trouver le paquet %s" -#: cmdline/apt-get.cc:2159 cmdline/apt-mark.cc:70 +#: cmdline/apt-get.cc:2161 cmdline/apt-mark.cc:70 #, c-format msgid "%s set to automatically installed.\n" msgstr "%s passé en « installé automatiquement ».\n" -#: cmdline/apt-get.cc:2167 cmdline/apt-mark.cc:114 +#: cmdline/apt-get.cc:2169 cmdline/apt-mark.cc:114 msgid "" "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " "instead." @@ -845,50 +847,50 @@ msgstr "" "Cette commande est obsolète. Veuillez utiliser « apt-mark auto » et « apt-" "mark manual »." -#: cmdline/apt-get.cc:2183 +#: cmdline/apt-get.cc:2185 msgid "Calculating upgrade... " msgstr "Calcul de la mise à jour... " -#: cmdline/apt-get.cc:2186 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 msgid "Failed" msgstr "Échec" -#: cmdline/apt-get.cc:2191 +#: cmdline/apt-get.cc:2193 msgid "Done" msgstr "Fait" -#: cmdline/apt-get.cc:2258 cmdline/apt-get.cc:2266 +#: cmdline/apt-get.cc:2260 cmdline/apt-get.cc:2268 msgid "Internal error, problem resolver broke stuff" msgstr "" "Erreur interne, la tentative de résolution du problème a cassé certaines " "parties" -#: cmdline/apt-get.cc:2294 cmdline/apt-get.cc:2330 +#: cmdline/apt-get.cc:2296 cmdline/apt-get.cc:2332 msgid "Unable to lock the download directory" msgstr "Impossible de verrouiller le répertoire de téléchargement" -#: cmdline/apt-get.cc:2386 +#: cmdline/apt-get.cc:2388 #, c-format msgid "Can't find a source to download version '%s' of '%s'" msgstr "" "Impossible de trouver une source de téléchargement de la version « %s » de " "« %s »" -#: cmdline/apt-get.cc:2391 +#: cmdline/apt-get.cc:2393 #, c-format msgid "Downloading %s %s" msgstr "Téléchargement de %s %s" -#: cmdline/apt-get.cc:2451 +#: cmdline/apt-get.cc:2453 msgid "Must specify at least one package to fetch source for" msgstr "Vous devez spécifier au moins un paquet source" -#: cmdline/apt-get.cc:2491 cmdline/apt-get.cc:2803 +#: cmdline/apt-get.cc:2493 cmdline/apt-get.cc:2805 #, c-format msgid "Unable to find a source package for %s" msgstr "Impossible de trouver une source de paquet pour %s" -#: cmdline/apt-get.cc:2508 +#: cmdline/apt-get.cc:2510 #, c-format msgid "" "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" @@ -898,7 +900,7 @@ msgstr "" "suivi de versions « %s » à l'adresse :\n" "%s\n" -#: cmdline/apt-get.cc:2513 +#: cmdline/apt-get.cc:2515 #, c-format msgid "" "Please use:\n" @@ -910,70 +912,70 @@ msgstr "" "pour récupérer les dernières mises à jour (éventuellement non encore " "publiées) du paquet.\n" -#: cmdline/apt-get.cc:2566 +#: cmdline/apt-get.cc:2568 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Saut du téléchargement du fichier « %s », déjà téléchargé\n" -#: cmdline/apt-get.cc:2603 +#: cmdline/apt-get.cc:2605 #, c-format msgid "You don't have enough free space in %s" msgstr "Pas assez d'espace disponible sur %s" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:2612 +#: cmdline/apt-get.cc:2614 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "Nécessité de prendre %so/%so dans les sources.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:2617 +#: cmdline/apt-get.cc:2619 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Nécessité de prendre %so dans les sources.\n" -#: cmdline/apt-get.cc:2623 +#: cmdline/apt-get.cc:2625 #, c-format msgid "Fetch source %s\n" msgstr "Récupération des sources %s\n" -#: cmdline/apt-get.cc:2661 +#: cmdline/apt-get.cc:2663 msgid "Failed to fetch some archives." msgstr "Échec lors de la récupération de quelques archives." -#: cmdline/apt-get.cc:2692 +#: cmdline/apt-get.cc:2694 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "Saut du décompactage des paquets sources déjà décompactés dans %s\n" -#: cmdline/apt-get.cc:2704 +#: cmdline/apt-get.cc:2706 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "La commande de décompactage « %s » a échoué.\n" -#: cmdline/apt-get.cc:2705 +#: cmdline/apt-get.cc:2707 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "Veuillez vérifier si le paquet dpkg-dev est installé.\n" -#: cmdline/apt-get.cc:2727 +#: cmdline/apt-get.cc:2729 #, c-format msgid "Build command '%s' failed.\n" msgstr "La commande de construction « %s » a échoué.\n" -#: cmdline/apt-get.cc:2747 +#: cmdline/apt-get.cc:2749 msgid "Child process failed" msgstr "Échec du processus fils" -#: cmdline/apt-get.cc:2766 +#: cmdline/apt-get.cc:2768 msgid "Must specify at least one package to check builddeps for" msgstr "" "Il faut spécifier au moins un paquet pour vérifier les dépendances de " "construction" -#: cmdline/apt-get.cc:2791 +#: cmdline/apt-get.cc:2793 #, c-format msgid "" "No architecture information available for %s. See apt.conf(5) APT::" @@ -983,17 +985,17 @@ msgstr "" "consulter la section à propos de APT::Architectures dans la page de manuel " "apt.conf(5)." -#: cmdline/apt-get.cc:2815 cmdline/apt-get.cc:2818 +#: cmdline/apt-get.cc:2817 cmdline/apt-get.cc:2820 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "Impossible d'obtenir les dépendances de construction pour %s" -#: cmdline/apt-get.cc:2838 +#: cmdline/apt-get.cc:2840 #, c-format msgid "%s has no build depends.\n" msgstr "%s n'a pas de dépendance de construction.\n" -#: cmdline/apt-get.cc:2997 +#: cmdline/apt-get.cc:3010 #, c-format msgid "" "%s dependency for %s can't be satisfied because %s is not allowed on '%s' " @@ -1002,7 +1004,7 @@ msgstr "" "La dépendance %s vis-à-vis de %s ne peut être satisfaite car %s n'est pas " "autorisé avec les paquets « %s »." -#: cmdline/apt-get.cc:3015 +#: cmdline/apt-get.cc:3028 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -1011,14 +1013,14 @@ msgstr "" "La dépendance %s vis-à-vis de %s ne peut être satisfaite car le paquet %s ne " "peut être trouvé" -#: cmdline/apt-get.cc:3038 +#: cmdline/apt-get.cc:3051 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "Impossible de satisfaire la dépendance %s pour %s : le paquet installé %s " "est trop récent" -#: cmdline/apt-get.cc:3077 +#: cmdline/apt-get.cc:3090 #, c-format msgid "" "%s dependency for %s cannot be satisfied because candidate version of " @@ -1027,7 +1029,7 @@ msgstr "" "La dépendance %s vis-à-vis de %s ne peut être satisfaite car aucune version " "disponible du paquet %s ne peut satisfaire les prérequis de version." -#: cmdline/apt-get.cc:3083 +#: cmdline/apt-get.cc:3096 #, c-format msgid "" "%s dependency for %s cannot be satisfied because package %s has no candidate " @@ -1036,31 +1038,31 @@ msgstr "" "La dépendance %s vis-à-vis de %s ne peut être satisfaite car le paquet %s " "n'a pas de version disponible." -#: cmdline/apt-get.cc:3106 +#: cmdline/apt-get.cc:3119 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "Impossible de satisfaire les dépendances %s pour %s : %s" -#: cmdline/apt-get.cc:3122 +#: cmdline/apt-get.cc:3135 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "" "Les dépendances de compilation pour %s ne peuvent pas être satisfaites." -#: cmdline/apt-get.cc:3127 +#: cmdline/apt-get.cc:3140 msgid "Failed to process build dependencies" msgstr "Impossible d'activer les dépendances de construction" -#: cmdline/apt-get.cc:3220 cmdline/apt-get.cc:3232 +#: cmdline/apt-get.cc:3233 cmdline/apt-get.cc:3245 #, c-format msgid "Changelog for %s (%s)" msgstr "Journal des modifications pour %s (%s)" -#: cmdline/apt-get.cc:3355 +#: cmdline/apt-get.cc:3368 msgid "Supported modules:" msgstr "Modules reconnus :" -#: cmdline/apt-get.cc:3396 +#: cmdline/apt-get.cc:3409 msgid "" "Usage: apt-get [options] command\n" " apt-get [options] install|remove pkg1 [pkg2 ...]\n" @@ -1150,7 +1152,7 @@ msgstr "" "apt.conf(5) pour plus d'informations et d'options.\n" " Cet APT a les « Super Cow Powers »\n" -#: cmdline/apt-get.cc:3561 +#: cmdline/apt-get.cc:3574 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1226,29 +1228,29 @@ msgstr "%s était déjà marqué comme figé (« hold »).\n" msgid "%s was already not hold.\n" msgstr "%s était déjà marqué comme non figé.\n" -#: cmdline/apt-mark.cc:245 cmdline/apt-mark.cc:314 +#: cmdline/apt-mark.cc:245 cmdline/apt-mark.cc:326 #: apt-pkg/contrib/fileutl.cc:828 apt-pkg/deb/dpkgpm.cc:1002 #, c-format msgid "Waited for %s but it wasn't there" msgstr "A attendu %s mais il n'était pas présent" -#: cmdline/apt-mark.cc:260 cmdline/apt-mark.cc:297 +#: cmdline/apt-mark.cc:260 cmdline/apt-mark.cc:309 #, c-format msgid "%s set on hold.\n" msgstr "%s passé en figé (« hold »).\n" -#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:302 +#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:314 #, c-format msgid "Canceled hold on %s.\n" msgstr "Annulation de l'état figé pour %s.\n" -#: cmdline/apt-mark.cc:320 +#: cmdline/apt-mark.cc:332 msgid "Executing dpkg failed. Are you root?" msgstr "" "Échec de l'exécution de dpkg. Possédez-vous les privilèges du " "superutilisateur ?" -#: cmdline/apt-mark.cc:367 +#: cmdline/apt-mark.cc:379 msgid "" "Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" "\n" @@ -1659,7 +1661,7 @@ msgstr "Erreur interne" #: apt-pkg/contrib/cdromutl.cc:183 apt-pkg/contrib/fileutl.cc:400 #: apt-pkg/contrib/fileutl.cc:513 apt-pkg/sourcelist.cc:208 #: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:108 -#: apt-pkg/init.cc:116 apt-pkg/clean.cc:36 apt-pkg/policy.cc:359 +#: apt-pkg/init.cc:116 apt-pkg/clean.cc:36 apt-pkg/policy.cc:362 #, c-format msgid "Unable to read %s" msgstr "Impossible de lire %s" @@ -1667,7 +1669,7 @@ msgstr "Impossible de lire %s" #: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/contrib/cdromutl.cc:179 #: apt-pkg/contrib/cdromutl.cc:213 apt-pkg/acquire.cc:491 #: apt-pkg/acquire.cc:516 apt-pkg/clean.cc:42 apt-pkg/clean.cc:60 -#: apt-pkg/clean.cc:122 +#: apt-pkg/clean.cc:123 #, c-format msgid "Unable to change to %s" msgstr "Impossible d'accéder à %s" @@ -1785,7 +1787,7 @@ msgstr "" " -c=? Lit ce fichier de configuration\n" " -o=? Spécifie une option de configuration, p. ex. -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1277 +#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1339 #, c-format msgid "Unable to write to %s" msgstr "Impossible d'écrire sur %s" @@ -2329,34 +2331,34 @@ msgstr "Fichier de contrôle non traitable" msgid "Can't mmap an empty file" msgstr "Impossible de mapper un fichier vide en mémoire" -#: apt-pkg/contrib/mmap.cc:110 +#: apt-pkg/contrib/mmap.cc:111 #, c-format msgid "Couldn't duplicate file descriptor %i" msgstr "Impossible de dupliquer le descripteur de fichier %i" -#: apt-pkg/contrib/mmap.cc:118 +#: apt-pkg/contrib/mmap.cc:119 #, c-format msgid "Couldn't make mmap of %llu bytes" msgstr "Impossible de réaliser un mapping de %llu octets en mémoire" -#: apt-pkg/contrib/mmap.cc:145 +#: apt-pkg/contrib/mmap.cc:146 msgid "Unable to close mmap" msgstr "Impossible de fermer la « mmap »" -#: apt-pkg/contrib/mmap.cc:173 apt-pkg/contrib/mmap.cc:201 +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 msgid "Unable to synchronize mmap" msgstr "Impossible de synchroniser la « mmap »" -#: apt-pkg/contrib/mmap.cc:279 +#: apt-pkg/contrib/mmap.cc:290 #, c-format msgid "Couldn't make mmap of %lu bytes" msgstr "Impossible de réaliser un mapping de %lu octets en mémoire" -#: apt-pkg/contrib/mmap.cc:311 +#: apt-pkg/contrib/mmap.cc:322 msgid "Failed to truncate file" msgstr "Échec de la troncature du fichier" -#: apt-pkg/contrib/mmap.cc:330 +#: apt-pkg/contrib/mmap.cc:341 #, c-format msgid "" "Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " @@ -2366,7 +2368,7 @@ msgstr "" "Vous devriez augmenter la taille de APT::Cache-Start, dont la valeur " "actuelle est de %lu (voir « man 5 apt.conf »)." -#: apt-pkg/contrib/mmap.cc:429 +#: apt-pkg/contrib/mmap.cc:440 #, c-format msgid "" "Unable to increase the size of the MMap as the limit of %lu bytes is already " @@ -2375,7 +2377,7 @@ msgstr "" "Impossible d'augmenter la taille de la « mmap » car la limite de %lu octets " "est déjà atteinte." -#: apt-pkg/contrib/mmap.cc:432 +#: apt-pkg/contrib/mmap.cc:443 msgid "" "Unable to increase size of the MMap as automatic growing is disabled by user." msgstr "" @@ -2609,7 +2611,7 @@ msgstr "Le sous-processus %s a renvoyé un code d'erreur (%u)" msgid "Sub-process %s exited unexpectedly" msgstr "Le sous-processus %s s'est arrêté prématurément" -#: apt-pkg/contrib/fileutl.cc:984 apt-pkg/indexcopy.cc:655 +#: apt-pkg/contrib/fileutl.cc:984 apt-pkg/indexcopy.cc:661 #, c-format msgid "Could not open file %s" msgstr "Impossible d'ouvrir le fichier %s" @@ -2652,7 +2654,7 @@ msgstr "Problème de renommage du fichier %s en %s" msgid "Problem unlinking the file %s" msgstr "Problème de suppression du lien %s" -#: apt-pkg/contrib/fileutl.cc:1755 +#: apt-pkg/contrib/fileutl.cc:1754 msgid "Problem syncing the file" msgstr "Problème de synchronisation du fichier" @@ -2838,7 +2840,7 @@ msgstr "" msgid "Opening %s" msgstr "Ouverture de %s" -#: apt-pkg/sourcelist.cc:265 apt-pkg/cdrom.cc:469 +#: apt-pkg/sourcelist.cc:265 apt-pkg/cdrom.cc:495 #, c-format msgid "Line %u too long in source list %s." msgstr "La ligne %u du fichier des listes de sources %s est trop longue." @@ -2854,7 +2856,7 @@ msgid "Type '%s' is not known on line %u in source list %s" msgstr "" "Le type « %s » est inconnu sur la ligne %u dans la liste des sources %s" -#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:891 +#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:898 #, c-format msgid "" "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " @@ -2864,12 +2866,12 @@ msgstr "" "consulter la page de manuel apt.conf(5) et notamment la section à propos de " "APT::Immediate-Configure, pour plus d'informations. (%d)" -#: apt-pkg/packagemanager.cc:473 apt-pkg/packagemanager.cc:503 +#: apt-pkg/packagemanager.cc:473 apt-pkg/packagemanager.cc:504 #, c-format msgid "Could not configure '%s'. " msgstr "Impossible de configurer « %s »." -#: apt-pkg/packagemanager.cc:545 +#: apt-pkg/packagemanager.cc:546 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2886,7 +2888,7 @@ msgstr "" msgid "Index file type '%s' is not supported" msgstr "Le type de fichier d'index « %s » n'est pas accepté" -#: apt-pkg/algorithms.cc:261 +#: apt-pkg/algorithms.cc:266 #, c-format msgid "" "The package %s needs to be reinstalled, but I can't find an archive for it." @@ -2894,7 +2896,7 @@ msgstr "" "Le paquet %s doit être réinstallé, mais il est impossible de trouver son " "archive." -#: apt-pkg/algorithms.cc:1223 +#: apt-pkg/algorithms.cc:1228 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2902,13 +2904,13 @@ msgstr "" "Erreur, pkgProblem::Resolve a généré des ruptures, ce qui a pu être causé " "par les paquets devant être gardés en l'état." -#: apt-pkg/algorithms.cc:1225 +#: apt-pkg/algorithms.cc:1230 msgid "Unable to correct problems, you have held broken packages." msgstr "" "Impossible de corriger les problèmes, des paquets défectueux sont en mode " "« garder en l'état »." -#: apt-pkg/algorithms.cc:1569 apt-pkg/algorithms.cc:1571 +#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 msgid "" "Some index files failed to download. They have been ignored, or old ones " "used instead." @@ -2993,7 +2995,7 @@ msgstr "Vous pouvez lancer « apt-get update » pour corriger ces problèmes." msgid "The list of sources could not be read." msgstr "La liste des sources ne peut être lue." -#: apt-pkg/policy.cc:74 +#: apt-pkg/policy.cc:75 #, c-format msgid "" "The value '%s' is invalid for APT::Default-Release as such a release is not " @@ -3002,86 +3004,87 @@ msgstr "" "La valeur « %s » n'est pas valable pour APT::Default-Release car cette " "version ne fait pas partie des sources disponibles." -#: apt-pkg/policy.cc:396 +#: apt-pkg/policy.cc:399 #, c-format msgid "Invalid record in the preferences file %s, no Package header" msgstr "" "Enregistrement non valable dans le fichier de préférences %s, aucune entrée " "« Package »." -#: apt-pkg/policy.cc:418 +#: apt-pkg/policy.cc:421 #, c-format msgid "Did not understand pin type %s" msgstr "Type d'épinglage %s inconnu" -#: apt-pkg/policy.cc:426 +#: apt-pkg/policy.cc:429 msgid "No priority (or zero) specified for pin" msgstr "Aucune priorité (ou zéro) n'a été spécifiée pour l'épinglage" -#: apt-pkg/pkgcachegen.cc:85 +#: apt-pkg/pkgcachegen.cc:87 msgid "Cache has an incompatible versioning system" msgstr "Le cache possède un système de version incompatible" #. TRANSLATOR: The first placeholder is a package name, #. the other two should be copied verbatim as they include debug info -#: apt-pkg/pkgcachegen.cc:211 apt-pkg/pkgcachegen.cc:277 -#: apt-pkg/pkgcachegen.cc:308 apt-pkg/pkgcachegen.cc:316 -#: apt-pkg/pkgcachegen.cc:358 apt-pkg/pkgcachegen.cc:362 -#: apt-pkg/pkgcachegen.cc:379 apt-pkg/pkgcachegen.cc:389 -#: apt-pkg/pkgcachegen.cc:393 apt-pkg/pkgcachegen.cc:397 -#: apt-pkg/pkgcachegen.cc:418 apt-pkg/pkgcachegen.cc:423 -#: apt-pkg/pkgcachegen.cc:463 apt-pkg/pkgcachegen.cc:471 -#: apt-pkg/pkgcachegen.cc:502 apt-pkg/pkgcachegen.cc:516 +#: apt-pkg/pkgcachegen.cc:218 apt-pkg/pkgcachegen.cc:228 +#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:325 +#: apt-pkg/pkgcachegen.cc:333 apt-pkg/pkgcachegen.cc:375 +#: apt-pkg/pkgcachegen.cc:379 apt-pkg/pkgcachegen.cc:396 +#: apt-pkg/pkgcachegen.cc:406 apt-pkg/pkgcachegen.cc:410 +#: apt-pkg/pkgcachegen.cc:414 apt-pkg/pkgcachegen.cc:435 +#: apt-pkg/pkgcachegen.cc:477 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:525 apt-pkg/pkgcachegen.cc:556 +#: apt-pkg/pkgcachegen.cc:570 #, c-format msgid "Error occurred while processing %s (%s%d)" msgstr "Erreur apparue lors du traitement de %s (%s%d)" -#: apt-pkg/pkgcachegen.cc:234 +#: apt-pkg/pkgcachegen.cc:251 msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "" "Vous avez dépassé le nombre de noms de paquets que cette version d'APT est " "capable de traiter." -#: apt-pkg/pkgcachegen.cc:237 +#: apt-pkg/pkgcachegen.cc:254 msgid "Wow, you exceeded the number of versions this APT is capable of." msgstr "" "Vous avez dépassé le nombre de versions que cette version d'APT est capable " "de traiter." -#: apt-pkg/pkgcachegen.cc:240 +#: apt-pkg/pkgcachegen.cc:257 msgid "Wow, you exceeded the number of descriptions this APT is capable of." msgstr "" "Vous avez dépassé le nombre de descriptions que cette version d'APT est " "capable de traiter." -#: apt-pkg/pkgcachegen.cc:243 +#: apt-pkg/pkgcachegen.cc:260 msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "" "Vous avez dépassé le nombre de dépendances que cette version d'APT est " "capable de traiter." -#: apt-pkg/pkgcachegen.cc:523 +#: apt-pkg/pkgcachegen.cc:577 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "" "Le paquet %s %s n'a pu être trouvé lors du traitement des dépendances des " "fichiers" -#: apt-pkg/pkgcachegen.cc:1088 +#: apt-pkg/pkgcachegen.cc:1150 #, c-format msgid "Couldn't stat source package list %s" msgstr "Impossible de localiser la liste des paquets sources %s" -#: apt-pkg/pkgcachegen.cc:1176 apt-pkg/pkgcachegen.cc:1280 -#: apt-pkg/pkgcachegen.cc:1286 apt-pkg/pkgcachegen.cc:1443 +#: apt-pkg/pkgcachegen.cc:1238 apt-pkg/pkgcachegen.cc:1342 +#: apt-pkg/pkgcachegen.cc:1348 apt-pkg/pkgcachegen.cc:1505 msgid "Reading package lists" msgstr "Lecture des listes de paquets" -#: apt-pkg/pkgcachegen.cc:1193 +#: apt-pkg/pkgcachegen.cc:1255 msgid "Collecting File Provides" msgstr "Assemblage des fichiers listés dans les champs Provides" -#: apt-pkg/pkgcachegen.cc:1385 apt-pkg/pkgcachegen.cc:1392 +#: apt-pkg/pkgcachegen.cc:1447 apt-pkg/pkgcachegen.cc:1454 msgid "IO Error saving source cache" msgstr "" "Erreur d'entrée/sortie lors de la sauvegarde du fichier de cache des sources" @@ -3210,7 +3213,7 @@ msgstr "Entrée « Date » non valable dans le fichier Release %s" msgid "Vendor block %s contains no fingerprint" msgstr "Le bloc de fournisseur %s ne comporte pas d'empreinte" -#: apt-pkg/cdrom.cc:550 +#: apt-pkg/cdrom.cc:576 #, c-format msgid "" "Using CD-ROM mount point %s\n" @@ -3219,41 +3222,41 @@ msgstr "" "Utilisation du point de montage %s pour le cédérom\n" "Montage du cédérom\n" -#: apt-pkg/cdrom.cc:559 apt-pkg/cdrom.cc:656 +#: apt-pkg/cdrom.cc:585 apt-pkg/cdrom.cc:682 msgid "Identifying.. " msgstr "Identification..." -#: apt-pkg/cdrom.cc:587 +#: apt-pkg/cdrom.cc:613 #, c-format msgid "Stored label: %s\n" msgstr "Étiquette stockée : %s\n" -#: apt-pkg/cdrom.cc:596 apt-pkg/cdrom.cc:879 +#: apt-pkg/cdrom.cc:622 apt-pkg/cdrom.cc:907 msgid "Unmounting CD-ROM...\n" msgstr "Démontage du cédérom...\n" -#: apt-pkg/cdrom.cc:616 +#: apt-pkg/cdrom.cc:642 #, c-format msgid "Using CD-ROM mount point %s\n" msgstr "Utilisation du point de montage %s pour le cédérom\n" -#: apt-pkg/cdrom.cc:634 +#: apt-pkg/cdrom.cc:660 msgid "Unmounting CD-ROM\n" msgstr "Démontage du cédérom\n" -#: apt-pkg/cdrom.cc:639 +#: apt-pkg/cdrom.cc:665 msgid "Waiting for disc...\n" msgstr "Attente du disque...\n" -#: apt-pkg/cdrom.cc:648 +#: apt-pkg/cdrom.cc:674 msgid "Mounting CD-ROM...\n" msgstr "Montage du cédérom...\n" -#: apt-pkg/cdrom.cc:667 +#: apt-pkg/cdrom.cc:693 msgid "Scanning disc for index files..\n" msgstr "Examen du disque à la recherche de fichiers d'index...\n" -#: apt-pkg/cdrom.cc:716 +#: apt-pkg/cdrom.cc:744 #, c-format msgid "" "Found %zu package indexes, %zu source indexes, %zu translation indexes and " @@ -3262,7 +3265,7 @@ msgstr "" "%zu index de paquets trouvés, %zu index de sources, %zu index de traductions " "et %zu signatures\n" -#: apt-pkg/cdrom.cc:727 +#: apt-pkg/cdrom.cc:755 msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" @@ -3270,16 +3273,16 @@ msgstr "" "Aucun fichier de paquets trouvé. Ceci n'est peut-être pas un disque Debian " "ou bien l'architecture est-elle incorrecte." -#: apt-pkg/cdrom.cc:754 +#: apt-pkg/cdrom.cc:782 #, c-format msgid "Found label '%s'\n" msgstr "Étiquette « %s » trouvée\n" -#: apt-pkg/cdrom.cc:783 +#: apt-pkg/cdrom.cc:811 msgid "That is not a valid name, try again.\n" msgstr "Ce nom n'est pas valable, veuillez recommencer.\n" -#: apt-pkg/cdrom.cc:800 +#: apt-pkg/cdrom.cc:828 #, c-format msgid "" "This disc is called: \n" @@ -3288,96 +3291,91 @@ msgstr "" "Ce disque s'appelle :\n" "« %s »\n" -#: apt-pkg/cdrom.cc:802 +#: apt-pkg/cdrom.cc:830 msgid "Copying package lists..." msgstr "Copie des listes de paquets..." -#: apt-pkg/cdrom.cc:829 +#: apt-pkg/cdrom.cc:857 msgid "Writing new source list\n" msgstr "Écriture de la nouvelle liste de sources\n" -#: apt-pkg/cdrom.cc:837 +#: apt-pkg/cdrom.cc:865 msgid "Source list entries for this disc are:\n" msgstr "Les entrées de listes de sources pour ce disque sont :\n" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:873 +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:884 #, c-format msgid "Wrote %i records.\n" msgstr "%i enregistrements écrits.\n" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:875 +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:886 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "%i enregistrements écrits avec %i fichiers manquants.\n" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:878 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:889 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "%i enregistrements écrits avec %i fichiers qui ne correspondent pas\n" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:881 +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:892 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" "%i enregistrements écrits avec %i fichiers manquants et %i qui ne " "correspondent pas\n" -#: apt-pkg/indexcopy.cc:503 -#, c-format -msgid "Skipping nonexistent file %s" -msgstr "Fichier %s inexistant ignoré" - -#: apt-pkg/indexcopy.cc:509 +#: apt-pkg/indexcopy.cc:515 #, c-format msgid "Can't find authentication record for: %s" msgstr "Impossible de trouver l'enregistrement d'authentification pour %s" -#: apt-pkg/indexcopy.cc:515 +#: apt-pkg/indexcopy.cc:521 #, c-format msgid "Hash mismatch for: %s" msgstr "Somme de contrôle de hachage incohérente pour %s" -#: apt-pkg/indexcopy.cc:659 +#: apt-pkg/indexcopy.cc:665 #, c-format msgid "File %s doesn't start with a clearsigned message" msgstr "Le fichier %s ne commence pas par un message signé en clair." #. TRANSLATOR: %s is the trusted keyring parts directory -#: apt-pkg/indexcopy.cc:690 +#: apt-pkg/indexcopy.cc:696 #, c-format msgid "No keyring installed in %s." msgstr "Pas de porte-clés installé dans %s." -#: apt-pkg/cacheset.cc:401 +#: apt-pkg/cacheset.cc:403 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "La version « %s » de « %s » est introuvable" -#: apt-pkg/cacheset.cc:404 +#: apt-pkg/cacheset.cc:406 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "La version « %s » de « %s » n'a pu être trouvée" -#: apt-pkg/cacheset.cc:515 +#: apt-pkg/cacheset.cc:517 #, c-format msgid "Couldn't find task '%s'" msgstr "Impossible de trouver la tâche « %s »" -#: apt-pkg/cacheset.cc:521 +#: apt-pkg/cacheset.cc:523 #, c-format msgid "Couldn't find any package by regex '%s'" msgstr "" "Impossible de trouver de paquet correspondant à l'expression rationnelle " "« %s »" -#: apt-pkg/cacheset.cc:532 +#: apt-pkg/cacheset.cc:534 #, c-format msgid "Can't select versions from package '%s' as it is purely virtual" msgstr "" "Impossible de choisir les versions du paquet « %s » qui n'est qu'un paquet " "virtuel" -#: apt-pkg/cacheset.cc:539 apt-pkg/cacheset.cc:546 +#: apt-pkg/cacheset.cc:541 apt-pkg/cacheset.cc:548 #, c-format msgid "" "Can't select installed nor candidate version from package '%s' as it has " @@ -3386,20 +3384,20 @@ msgstr "" "Impossible de choisir une version installée ou candidate du paquet « %s » " "qui n'en n'a aucune" -#: apt-pkg/cacheset.cc:553 +#: apt-pkg/cacheset.cc:555 #, c-format msgid "Can't select newest version from package '%s' as it is purely virtual" msgstr "" "Impossible de choisir une nouvelle version du paquet « %s » qui n'est qu'un " "paquet virtuel" -#: apt-pkg/cacheset.cc:561 +#: apt-pkg/cacheset.cc:563 #, c-format msgid "Can't select candidate version from package %s as it has no candidate" msgstr "" "Impossible de choisir une version candidate du paquet « %s » qui n'en n'a pas" -#: apt-pkg/cacheset.cc:569 +#: apt-pkg/cacheset.cc:571 #, c-format msgid "Can't select installed version from package %s as it is not installed" msgstr "" @@ -3414,15 +3412,15 @@ msgstr "Envoi du scénario au solveur" msgid "Send request to solver" msgstr "Envoi d'une requête au solveur" -#: apt-pkg/edsp.cc:277 +#: apt-pkg/edsp.cc:279 msgid "Prepare for receiving solution" msgstr "Préparation à la réception de la solution" -#: apt-pkg/edsp.cc:284 +#: apt-pkg/edsp.cc:286 msgid "External solver failed without a proper error message" msgstr "Échec du solveur externe sans message d'erreur adapté" -#: apt-pkg/edsp.cc:555 apt-pkg/edsp.cc:558 apt-pkg/edsp.cc:563 +#: apt-pkg/edsp.cc:557 apt-pkg/edsp.cc:560 apt-pkg/edsp.cc:565 msgid "Execute external solver" msgstr "Exécu tion du solveur externe" @@ -3507,30 +3505,30 @@ msgstr "Préparation de la suppression complète de %s" msgid "Completely removed %s" msgstr "%s complètement supprimé" -#: apt-pkg/deb/dpkgpm.cc:1209 +#: apt-pkg/deb/dpkgpm.cc:1213 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "" "Impossible d'écrire le journal, échec d'openpty()\n" "(/dev/pts est-il monté ?)\n" -#: apt-pkg/deb/dpkgpm.cc:1239 +#: apt-pkg/deb/dpkgpm.cc:1243 msgid "Running dpkg" msgstr "Exécution de dpkg" -#: apt-pkg/deb/dpkgpm.cc:1411 +#: apt-pkg/deb/dpkgpm.cc:1415 msgid "Operation was interrupted before it could finish" msgstr "L'opération a été interrompue avant de se terminer" -#: apt-pkg/deb/dpkgpm.cc:1473 +#: apt-pkg/deb/dpkgpm.cc:1477 msgid "No apport report written because MaxReports is reached already" msgstr "Aucun rapport « apport » écrit car MaxReports a déjà été atteint" #. check if its not a follow up error -#: apt-pkg/deb/dpkgpm.cc:1478 +#: apt-pkg/deb/dpkgpm.cc:1482 msgid "dependency problems - leaving unconfigured" msgstr "problème de dépendances : laissé non configuré" -#: apt-pkg/deb/dpkgpm.cc:1480 +#: apt-pkg/deb/dpkgpm.cc:1484 msgid "" "No apport report written because the error message indicates its a followup " "error from a previous failure." @@ -3538,14 +3536,14 @@ msgstr "" "Aucun rapport « apport » n'a été créé car le message d'erreur indique une " "erreur consécutive à un échec précédent." -#: apt-pkg/deb/dpkgpm.cc:1486 +#: apt-pkg/deb/dpkgpm.cc:1490 msgid "" "No apport report written because the error message indicates a disk full " "error" msgstr "" "Aucun rapport « apport » n'a été créé car un disque plein a été signalé" -#: apt-pkg/deb/dpkgpm.cc:1492 +#: apt-pkg/deb/dpkgpm.cc:1496 msgid "" "No apport report written because the error message indicates a out of memory " "error" @@ -3553,7 +3551,7 @@ msgstr "" "Aucun « apport » n'a été créé car une erreur de dépassement de capacité " "mémoire a été signalée" -#: apt-pkg/deb/dpkgpm.cc:1499 +#: apt-pkg/deb/dpkgpm.cc:1503 msgid "" "No apport report written because the error message indicates a dpkg I/O error" msgstr "" @@ -3590,6 +3588,9 @@ msgstr "" msgid "Not locked" msgstr "Non verrouillé" +#~ msgid "Skipping nonexistent file %s" +#~ msgstr "Fichier %s inexistant ignoré" + #~ msgid "Failed to remove %s" #~ msgstr "Impossible de supprimer %s" diff --git a/po/gl.po b/po/gl.po index fe80c041c..15d867bc7 100644 --- a/po/gl.po +++ b/po/gl.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: apt_po_gl\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2012-10-15 09:49+0200\n" +"POT-Creation-Date: 2013-03-14 08:05+0100\n" "PO-Revision-Date: 2011-05-12 15:28+0100\n" "Last-Translator: Miguel Anxo Bouzada \n" "Language-Team: galician \n" @@ -160,7 +160,7 @@ msgid " Version table:" msgstr " Táboa de versións:" #: cmdline/apt-cache.cc:1683 cmdline/apt-cdrom.cc:198 cmdline/apt-config.cc:81 -#: cmdline/apt-get.cc:3361 cmdline/apt-mark.cc:375 +#: cmdline/apt-get.cc:3363 cmdline/apt-mark.cc:375 #: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:590 #: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147 #, c-format @@ -488,7 +488,7 @@ msgstr "A reinstalación de %s non é posíbel, non se pode descargar.\n" msgid "%s is already the newest version.\n" msgstr "%s xa é a versión máis recente.\n" -#: cmdline/apt-get.cc:858 cmdline/apt-get.cc:2157 cmdline/apt-mark.cc:68 +#: cmdline/apt-get.cc:858 cmdline/apt-get.cc:2159 cmdline/apt-mark.cc:68 #, c-format msgid "%s set to manually installed.\n" msgstr "%s cambiado a instalado manualmente.\n" @@ -599,8 +599,8 @@ msgstr "Despois desta operación ocuparanse %sB de disco adicionais.\n" msgid "After this operation, %sB disk space will be freed.\n" msgstr "Despois desta operación liberaranse %sB de espazo de disco.\n" -#: cmdline/apt-get.cc:1228 cmdline/apt-get.cc:1231 cmdline/apt-get.cc:2589 -#: cmdline/apt-get.cc:2592 +#: cmdline/apt-get.cc:1228 cmdline/apt-get.cc:1231 cmdline/apt-get.cc:2591 +#: cmdline/apt-get.cc:2594 #, c-format msgid "Couldn't determine free space in %s" msgstr "Non foi posíbel determinar o espazo libre en %s" @@ -610,15 +610,17 @@ msgstr "Non foi posíbel determinar o espazo libre en %s" msgid "You don't have enough free space in %s." msgstr "Non hai espazo libre abondo en %s." -#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1277 +#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1279 msgid "Trivial Only specified but this is not a trivial operation." msgstr "Especificouse «Só triviais» mais esta non é unha operación trivial." -#: cmdline/apt-get.cc:1259 +#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be +#. careful with hard to type or special characters (like non-breaking spaces) +#: cmdline/apt-get.cc:1261 msgid "Yes, do as I say!" msgstr "Si, fai o que digo!" -#: cmdline/apt-get.cc:1261 +#: cmdline/apt-get.cc:1263 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -629,28 +631,28 @@ msgstr "" "Para continuar escriba a frase «%s»\n" " ?] " -#: cmdline/apt-get.cc:1267 cmdline/apt-get.cc:1286 +#: cmdline/apt-get.cc:1269 cmdline/apt-get.cc:1288 msgid "Abort." msgstr "Interromper." -#: cmdline/apt-get.cc:1282 +#: cmdline/apt-get.cc:1284 msgid "Do you want to continue [Y/n]? " msgstr "Quere continuar [S/n]? " -#: cmdline/apt-get.cc:1354 cmdline/apt-get.cc:2654 apt-pkg/algorithms.cc:1548 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Non foi posíbel obter %s %s\n" -#: cmdline/apt-get.cc:1372 +#: cmdline/apt-get.cc:1374 msgid "Some files failed to download" msgstr "Non foi posíbel descargar algúns ficheiros" -#: cmdline/apt-get.cc:1373 cmdline/apt-get.cc:2666 +#: cmdline/apt-get.cc:1375 cmdline/apt-get.cc:2668 msgid "Download complete and in download only mode" msgstr "Completouse a descarga no modo de só descargas" -#: cmdline/apt-get.cc:1379 +#: cmdline/apt-get.cc:1381 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -658,20 +660,20 @@ msgstr "" "Non foi posíbel obter algúns arquivos; probe con apt-get update ou --fix-" "missing." -#: cmdline/apt-get.cc:1383 +#: cmdline/apt-get.cc:1385 msgid "--fix-missing and media swapping is not currently supported" msgstr "" "O emprego conxunto de --fix-missing e intercambio de discos non está admitido" -#: cmdline/apt-get.cc:1388 +#: cmdline/apt-get.cc:1390 msgid "Unable to correct missing packages." msgstr "Non é posíbel corrixir os paquetes non dispoñíbeis." -#: cmdline/apt-get.cc:1389 +#: cmdline/apt-get.cc:1391 msgid "Aborting install." msgstr "Interrompendo a instalación." -#: cmdline/apt-get.cc:1417 +#: cmdline/apt-get.cc:1419 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -685,37 +687,37 @@ msgstr[1] "" "Os seguintes paquetes desapareceron do seu sistema e todos os \n" "ficheiros serán sobrescritos por outros paquetes:" -#: cmdline/apt-get.cc:1421 +#: cmdline/apt-get.cc:1423 msgid "Note: This is done automatically and on purpose by dpkg." msgstr "Nota: Isto será feito automaticamente por dpkg." -#: cmdline/apt-get.cc:1559 +#: cmdline/apt-get.cc:1561 #, c-format msgid "Ignore unavailable target release '%s' of package '%s'" msgstr "Ignorase a versión de destino «%s» non dispoñíbel do paquete «%s»" -#: cmdline/apt-get.cc:1591 +#: cmdline/apt-get.cc:1593 #, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "Tome «%s» como paquete fonte no canto de «%s»\n" #. if (VerTag.empty() == false && Last == 0) -#: cmdline/apt-get.cc:1629 +#: cmdline/apt-get.cc:1631 #, c-format msgid "Ignore unavailable version '%s' of package '%s'" msgstr "Ignorar a versión non dispoñíbel «%s» do paquete «%s»" -#: cmdline/apt-get.cc:1645 +#: cmdline/apt-get.cc:1647 msgid "The update command takes no arguments" msgstr "A orde «update» non toma argumentos" -#: cmdline/apt-get.cc:1711 +#: cmdline/apt-get.cc:1713 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" "Non se agarda que eliminemos cousas, non se pode iniciar o Retirado " "automático" -#: cmdline/apt-get.cc:1815 +#: cmdline/apt-get.cc:1817 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -733,15 +735,15 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1818 cmdline/apt-get.cc:1987 +#: cmdline/apt-get.cc:1820 cmdline/apt-get.cc:1989 msgid "The following information may help to resolve the situation:" msgstr "A seguinte información pode axudar a solucionar a situación:" -#: cmdline/apt-get.cc:1822 +#: cmdline/apt-get.cc:1824 msgid "Internal Error, AutoRemover broke stuff" msgstr "Produciuse un erro interno, o Retirado automático estragou cousas" -#: cmdline/apt-get.cc:1829 +#: cmdline/apt-get.cc:1831 msgid "" "The following package was automatically installed and is no longer required:" msgid_plural "" @@ -753,7 +755,7 @@ msgstr[1] "" "Os seguintes paquetes foron instalados automaticamente e xa non son " "necesarios:" -#: cmdline/apt-get.cc:1833 +#: cmdline/apt-get.cc:1835 #, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -762,22 +764,22 @@ msgstr[0] "%lu paquete foi instalado automaticamente e xa non é necesario.\n" msgstr[1] "" "%lu paquetes foron instalados automaticamente e xa non son necesarios.\n" -#: cmdline/apt-get.cc:1835 +#: cmdline/apt-get.cc:1837 #, fuzzy msgid "Use 'apt-get autoremove' to remove it." msgid_plural "Use 'apt-get autoremove' to remove them." msgstr[0] "Empregue «apt-get autoremove» para eliminalos." msgstr[1] "Empregue «apt-get autoremove» para eliminalos." -#: cmdline/apt-get.cc:1854 +#: cmdline/apt-get.cc:1856 msgid "Internal error, AllUpgrade broke stuff" msgstr "Produciuse un erro interno, AllUpgrade estragou cousas" -#: cmdline/apt-get.cc:1953 +#: cmdline/apt-get.cc:1955 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "Pode querer executar «apt-get -f install» para corrixir isto:" -#: cmdline/apt-get.cc:1957 +#: cmdline/apt-get.cc:1959 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -785,7 +787,7 @@ msgstr "" "Dependencias incumpridas. Probe «apt-get -f install» sen paquetes (ou " "especifique unha solución)." -#: cmdline/apt-get.cc:1972 +#: cmdline/apt-get.cc:1974 msgid "" "Some packages could not be installed. This may mean that you have\n" "requested an impossible situation or if you are using the unstable\n" @@ -798,78 +800,78 @@ msgstr "" "algúns paquetes solicitados aínda non se creasen ou que se movesen da " "entrada." -#: cmdline/apt-get.cc:1993 +#: cmdline/apt-get.cc:1995 msgid "Broken packages" msgstr "Paquetes estragados" -#: cmdline/apt-get.cc:2019 +#: cmdline/apt-get.cc:2021 msgid "The following extra packages will be installed:" msgstr "Instalaranse os seguintes paquetes extra:" -#: cmdline/apt-get.cc:2109 +#: cmdline/apt-get.cc:2111 msgid "Suggested packages:" msgstr "Paquetes suxeridos:" -#: cmdline/apt-get.cc:2110 +#: cmdline/apt-get.cc:2112 msgid "Recommended packages:" msgstr "Paquetes recomendados:" -#: cmdline/apt-get.cc:2152 +#: cmdline/apt-get.cc:2154 #, c-format msgid "Couldn't find package %s" msgstr "Non foi posíbel atopar o paquete %s" -#: cmdline/apt-get.cc:2159 cmdline/apt-mark.cc:70 +#: cmdline/apt-get.cc:2161 cmdline/apt-mark.cc:70 #, c-format msgid "%s set to automatically installed.\n" msgstr "%s está estabelecido para a súa instalación automática.\n" -#: cmdline/apt-get.cc:2167 cmdline/apt-mark.cc:114 +#: cmdline/apt-get.cc:2169 cmdline/apt-mark.cc:114 msgid "" "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " "instead." msgstr "" -#: cmdline/apt-get.cc:2183 +#: cmdline/apt-get.cc:2185 msgid "Calculating upgrade... " msgstr "Calculando a anovación... " -#: cmdline/apt-get.cc:2186 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 msgid "Failed" msgstr "Fallou" -#: cmdline/apt-get.cc:2191 +#: cmdline/apt-get.cc:2193 msgid "Done" msgstr "Feito" -#: cmdline/apt-get.cc:2258 cmdline/apt-get.cc:2266 +#: cmdline/apt-get.cc:2260 cmdline/apt-get.cc:2268 msgid "Internal error, problem resolver broke stuff" msgstr "Produciuse un erro interno, o solucionador interno estragou cousas" -#: cmdline/apt-get.cc:2294 cmdline/apt-get.cc:2330 +#: cmdline/apt-get.cc:2296 cmdline/apt-get.cc:2332 msgid "Unable to lock the download directory" msgstr "Non é posíbel bloquear o directorio de descargas" -#: cmdline/apt-get.cc:2386 +#: cmdline/apt-get.cc:2388 #, c-format msgid "Can't find a source to download version '%s' of '%s'" msgstr "" -#: cmdline/apt-get.cc:2391 +#: cmdline/apt-get.cc:2393 #, c-format msgid "Downloading %s %s" msgstr "Descargando %s %s" -#: cmdline/apt-get.cc:2451 +#: cmdline/apt-get.cc:2453 msgid "Must specify at least one package to fetch source for" msgstr "Ten que especificar polo menos un paquete para obter o código fonte" -#: cmdline/apt-get.cc:2491 cmdline/apt-get.cc:2803 +#: cmdline/apt-get.cc:2493 cmdline/apt-get.cc:2805 #, c-format msgid "Unable to find a source package for %s" msgstr "Non sé posíbel atopar un paquete fonte para %s" -#: cmdline/apt-get.cc:2508 +#: cmdline/apt-get.cc:2510 #, c-format msgid "" "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" @@ -878,7 +880,7 @@ msgstr "" "AVISO: o paquete «%s» mantense no sistema de control de versións «%s» en:\n" "%s\n" -#: cmdline/apt-get.cc:2513 +#: cmdline/apt-get.cc:2515 #, fuzzy, c-format msgid "" "Please use:\n" @@ -890,87 +892,87 @@ msgstr "" "para obter as últimas actualizacións (posibelmente non publicadas) do " "paquete.\n" -#: cmdline/apt-get.cc:2566 +#: cmdline/apt-get.cc:2568 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Omítese o ficheiro xa descargado «%s»\n" -#: cmdline/apt-get.cc:2603 +#: cmdline/apt-get.cc:2605 #, c-format msgid "You don't have enough free space in %s" msgstr "Non hai espazo libre abondo en %s" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:2612 +#: cmdline/apt-get.cc:2614 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "Ten que recibir %sB/%sB de arquivos de fonte.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:2617 +#: cmdline/apt-get.cc:2619 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Ten que recibir %sB de arquivos de fonte.\n" -#: cmdline/apt-get.cc:2623 +#: cmdline/apt-get.cc:2625 #, c-format msgid "Fetch source %s\n" msgstr "Obter fonte %s\n" -#: cmdline/apt-get.cc:2661 +#: cmdline/apt-get.cc:2663 msgid "Failed to fetch some archives." msgstr "Non se puideron obter algúns arquivos." -#: cmdline/apt-get.cc:2692 +#: cmdline/apt-get.cc:2694 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "Omítese o desempaquetado do código fonte xa desempaquetado en %s\n" -#: cmdline/apt-get.cc:2704 +#: cmdline/apt-get.cc:2706 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Fallou a orde de desempaquetado «%s».\n" -#: cmdline/apt-get.cc:2705 +#: cmdline/apt-get.cc:2707 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "Comprobe que o paquete «dpkg-dev» estea instalado.\n" -#: cmdline/apt-get.cc:2727 +#: cmdline/apt-get.cc:2729 #, c-format msgid "Build command '%s' failed.\n" msgstr "Fallou a orde de construción de «%s».\n" -#: cmdline/apt-get.cc:2747 +#: cmdline/apt-get.cc:2749 msgid "Child process failed" msgstr "O proceso fillo fallou" -#: cmdline/apt-get.cc:2766 +#: cmdline/apt-get.cc:2768 msgid "Must specify at least one package to check builddeps for" msgstr "" "Ten que especificar polo menos un paquete para comprobarlle as dependencias " "de compilación" -#: cmdline/apt-get.cc:2791 +#: cmdline/apt-get.cc:2793 #, c-format msgid "" "No architecture information available for %s. See apt.conf(5) APT::" "Architectures for setup" msgstr "" -#: cmdline/apt-get.cc:2815 cmdline/apt-get.cc:2818 +#: cmdline/apt-get.cc:2817 cmdline/apt-get.cc:2820 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "Non é posíbel obter a información de dependencias de compilación de %s" -#: cmdline/apt-get.cc:2838 +#: cmdline/apt-get.cc:2840 #, c-format msgid "%s has no build depends.\n" msgstr "%s non ten dependencias de compilación.\n" -#: cmdline/apt-get.cc:3008 +#: cmdline/apt-get.cc:3010 #, fuzzy, c-format msgid "" "%s dependency for %s can't be satisfied because %s is not allowed on '%s' " @@ -979,7 +981,7 @@ msgstr "" "A dependencia «%s» de %s non se pode satisfacer porque non se pode atopar o " "paquete %s" -#: cmdline/apt-get.cc:3026 +#: cmdline/apt-get.cc:3028 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -988,14 +990,14 @@ msgstr "" "A dependencia «%s» de %s non se pode satisfacer porque non se pode atopar o " "paquete %s" -#: cmdline/apt-get.cc:3049 +#: cmdline/apt-get.cc:3051 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "Non foi posíbel satisfacer a dependencia «%s» de %s: O paquete instalado %s " "é novo de máis" -#: cmdline/apt-get.cc:3088 +#: cmdline/apt-get.cc:3090 #, fuzzy, c-format msgid "" "%s dependency for %s cannot be satisfied because candidate version of " @@ -1004,7 +1006,7 @@ msgstr "" "A dependencia «%s» de %s non se pode satisfacer porque ningunha versión " "dispoñíbel do paquete %s satisfai os requirimentos de versión" -#: cmdline/apt-get.cc:3094 +#: cmdline/apt-get.cc:3096 #, fuzzy, c-format msgid "" "%s dependency for %s cannot be satisfied because package %s has no candidate " @@ -1013,30 +1015,30 @@ msgstr "" "A dependencia «%s» de %s non se pode satisfacer porque non se pode atopar o " "paquete %s" -#: cmdline/apt-get.cc:3117 +#: cmdline/apt-get.cc:3119 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "Non foi posíbel satisfacer a dependencia «%s» de %s: %s" -#: cmdline/apt-get.cc:3133 +#: cmdline/apt-get.cc:3135 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "Non se puideron satisfacer as dependencias de construción de %s." -#: cmdline/apt-get.cc:3138 +#: cmdline/apt-get.cc:3140 msgid "Failed to process build dependencies" msgstr "Non se puideron procesar as dependencias de construción" -#: cmdline/apt-get.cc:3231 cmdline/apt-get.cc:3243 +#: cmdline/apt-get.cc:3233 cmdline/apt-get.cc:3245 #, c-format msgid "Changelog for %s (%s)" msgstr "Rexistro de cambios de %s (%s)" -#: cmdline/apt-get.cc:3366 +#: cmdline/apt-get.cc:3368 msgid "Supported modules:" msgstr "Módulos admitidos:" -#: cmdline/apt-get.cc:3407 +#: cmdline/apt-get.cc:3409 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1129,7 +1131,7 @@ msgstr "" "para obter mais información e opcións\n" " Este APT ten poderes da Super Vaca.\n" -#: cmdline/apt-get.cc:3572 +#: cmdline/apt-get.cc:3574 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1735,7 +1737,7 @@ msgstr "" " -o=? Estabelece unha opción de configuración, por exemplo: -o dir::cache=/" "tmp\n" -#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1335 +#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1339 #, c-format msgid "Unable to write to %s" msgstr "Non é posíbel escribir en %s" @@ -2789,7 +2791,7 @@ msgstr "Liña %u mal construída na lista de orixes %s (tipo)" msgid "Type '%s' is not known on line %u in source list %s" msgstr "O tipo «%s» non se coñece na liña %u da lista de orixes %s" -#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:896 +#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:898 #, c-format msgid "" "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " @@ -2798,12 +2800,12 @@ msgstr "" "Non foi posíbel facer a configuración inmediata en «%s». Vexa man 5 apt.conf " "baixo APT::Immediate-Configure para obter máis detalles. (%d)" -#: apt-pkg/packagemanager.cc:473 apt-pkg/packagemanager.cc:503 +#: apt-pkg/packagemanager.cc:473 apt-pkg/packagemanager.cc:504 #, fuzzy, c-format msgid "Could not configure '%s'. " msgstr "Non foi posíbel abrir o ficheiro «%s»" -#: apt-pkg/packagemanager.cc:545 +#: apt-pkg/packagemanager.cc:546 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2839,7 +2841,7 @@ msgstr "" msgid "Unable to correct problems, you have held broken packages." msgstr "Non é posíbel solucionar os problemas, ten retidos paquetes rotos." -#: apt-pkg/algorithms.cc:1574 apt-pkg/algorithms.cc:1576 +#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 #, fuzzy msgid "" "Some index files failed to download. They have been ignored, or old ones " @@ -2988,21 +2990,21 @@ msgstr "" "Non foi posíbel atopar o paquete %s %s ao procesar as dependencias de " "ficheiros" -#: apt-pkg/pkgcachegen.cc:1146 +#: apt-pkg/pkgcachegen.cc:1150 #, c-format msgid "Couldn't stat source package list %s" msgstr "Non foi posíbel atopar a lista de paquetes fonte %s" -#: apt-pkg/pkgcachegen.cc:1234 apt-pkg/pkgcachegen.cc:1338 -#: apt-pkg/pkgcachegen.cc:1344 apt-pkg/pkgcachegen.cc:1501 +#: apt-pkg/pkgcachegen.cc:1238 apt-pkg/pkgcachegen.cc:1342 +#: apt-pkg/pkgcachegen.cc:1348 apt-pkg/pkgcachegen.cc:1505 msgid "Reading package lists" msgstr "Lendo as listas de paquetes" -#: apt-pkg/pkgcachegen.cc:1251 +#: apt-pkg/pkgcachegen.cc:1255 msgid "Collecting File Provides" msgstr "Recollendo as provisións de ficheiros" -#: apt-pkg/pkgcachegen.cc:1443 apt-pkg/pkgcachegen.cc:1450 +#: apt-pkg/pkgcachegen.cc:1447 apt-pkg/pkgcachegen.cc:1454 msgid "IO Error saving source cache" msgstr "Produciuse un erro de E/S ao gravar a caché de fontes" diff --git a/po/hu.po b/po/hu.po index 1cc329864..d526ceb40 100644 --- a/po/hu.po +++ b/po/hu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: apt trunk\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2012-10-15 09:49+0200\n" +"POT-Creation-Date: 2013-03-14 08:05+0100\n" "PO-Revision-Date: 2012-06-25 17:09+0200\n" "Last-Translator: Gabor Kelemen \n" "Language-Team: Hungarian \n" @@ -158,7 +158,7 @@ msgid " Version table:" msgstr " Verziótáblázat:" #: cmdline/apt-cache.cc:1683 cmdline/apt-cdrom.cc:198 cmdline/apt-config.cc:81 -#: cmdline/apt-get.cc:3361 cmdline/apt-mark.cc:375 +#: cmdline/apt-get.cc:3363 cmdline/apt-mark.cc:375 #: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:590 #: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147 #, c-format @@ -481,7 +481,7 @@ msgstr "%s újratelepítése nem lehetséges, mert nem lehet letölteni.\n" msgid "%s is already the newest version.\n" msgstr "%s már a legújabb verzió.\n" -#: cmdline/apt-get.cc:858 cmdline/apt-get.cc:2157 cmdline/apt-mark.cc:68 +#: cmdline/apt-get.cc:858 cmdline/apt-get.cc:2159 cmdline/apt-mark.cc:68 #, c-format msgid "%s set to manually installed.\n" msgstr "%s kézi telepítésűre állítva.\n" @@ -588,8 +588,8 @@ msgstr "A művelet után %sB lemezterület kerül felhasználásra.\n" msgid "After this operation, %sB disk space will be freed.\n" msgstr "A művelet után %sB lemezterület szabadul fel.\n" -#: cmdline/apt-get.cc:1228 cmdline/apt-get.cc:1231 cmdline/apt-get.cc:2589 -#: cmdline/apt-get.cc:2592 +#: cmdline/apt-get.cc:1228 cmdline/apt-get.cc:1231 cmdline/apt-get.cc:2591 +#: cmdline/apt-get.cc:2594 #, c-format msgid "Couldn't determine free space in %s" msgstr "Nem határozható meg a szabad hely mennyisége itt: %s" @@ -599,15 +599,17 @@ msgstr "Nem határozható meg a szabad hely mennyisége itt: %s" msgid "You don't have enough free space in %s." msgstr "Nincs elég szabad hely itt: %s." -#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1277 +#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1279 msgid "Trivial Only specified but this is not a trivial operation." msgstr "A „Trivial Only” meg van adva, de ez nem egy triviális művelet." -#: cmdline/apt-get.cc:1259 +#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be +#. careful with hard to type or special characters (like non-breaking spaces) +#: cmdline/apt-get.cc:1261 msgid "Yes, do as I say!" msgstr "Igen, tedd amit mondok!" -#: cmdline/apt-get.cc:1261 +#: cmdline/apt-get.cc:1263 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -618,28 +620,28 @@ msgstr "" "A folytatáshoz írja be ezt a mondatot: „%s”\n" " ?] " -#: cmdline/apt-get.cc:1267 cmdline/apt-get.cc:1286 +#: cmdline/apt-get.cc:1269 cmdline/apt-get.cc:1288 msgid "Abort." msgstr "Megszakítva." -#: cmdline/apt-get.cc:1282 +#: cmdline/apt-get.cc:1284 msgid "Do you want to continue [Y/n]? " msgstr "Folytatni akarja [I/n]? " -#: cmdline/apt-get.cc:1354 cmdline/apt-get.cc:2654 apt-pkg/algorithms.cc:1548 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Sikertelen letöltés: %s %s\n" -#: cmdline/apt-get.cc:1372 +#: cmdline/apt-get.cc:1374 msgid "Some files failed to download" msgstr "Néhány fájlt nem sikerült letölteni" -#: cmdline/apt-get.cc:1373 cmdline/apt-get.cc:2666 +#: cmdline/apt-get.cc:1375 cmdline/apt-get.cc:2668 msgid "Download complete and in download only mode" msgstr "A letöltés befejeződött a „csak letöltés” módban" -#: cmdline/apt-get.cc:1379 +#: cmdline/apt-get.cc:1381 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -647,19 +649,19 @@ msgstr "" "Nem lehet letölteni néhány archívumot. Próbálja futtatni az „apt-get update” " "parancsot, vagy használja a --fix-missing kapcsolót." -#: cmdline/apt-get.cc:1383 +#: cmdline/apt-get.cc:1385 msgid "--fix-missing and media swapping is not currently supported" msgstr "A --fix-missing és az adathordozó-csere jelenleg nem támogatott" -#: cmdline/apt-get.cc:1388 +#: cmdline/apt-get.cc:1390 msgid "Unable to correct missing packages." msgstr "Nem lehet javítani a hiányzó csomagokat." -#: cmdline/apt-get.cc:1389 +#: cmdline/apt-get.cc:1391 msgid "Aborting install." msgstr "Telepítés megszakítása." -#: cmdline/apt-get.cc:1417 +#: cmdline/apt-get.cc:1419 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -673,38 +675,38 @@ msgstr[1] "" "A következő csomagok eltűntek a rendszerből, mivel\n" "az összes fájlt más csomagok fölülírták:" -#: cmdline/apt-get.cc:1421 +#: cmdline/apt-get.cc:1423 msgid "Note: This is done automatically and on purpose by dpkg." msgstr "Megjegyzés: ezt a dpkg automatikusan és szándékosan hajtja végre." -#: cmdline/apt-get.cc:1559 +#: cmdline/apt-get.cc:1561 #, c-format msgid "Ignore unavailable target release '%s' of package '%s'" msgstr "" "A(z) „%2$s” csomag el nem érhető „%1$s” cél kiadásának figyelmen kívül " "hagyása" -#: cmdline/apt-get.cc:1591 +#: cmdline/apt-get.cc:1593 #, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "„%s” kiválasztása forráscsomagként „%s” helyett\n" #. if (VerTag.empty() == false && Last == 0) -#: cmdline/apt-get.cc:1629 +#: cmdline/apt-get.cc:1631 #, c-format msgid "Ignore unavailable version '%s' of package '%s'" msgstr "" "A(z) „%2$s” csomag el nem érhető „%1$s” verziójának figyelmen kívül hagyása" -#: cmdline/apt-get.cc:1645 +#: cmdline/apt-get.cc:1647 msgid "The update command takes no arguments" msgstr "Az update parancsnak nincsenek argumentumai" -#: cmdline/apt-get.cc:1711 +#: cmdline/apt-get.cc:1713 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "Nem kellene semmit törölni, az AutoRemover nem indítható" -#: cmdline/apt-get.cc:1815 +#: cmdline/apt-get.cc:1817 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -722,15 +724,15 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1818 cmdline/apt-get.cc:1987 +#: cmdline/apt-get.cc:1820 cmdline/apt-get.cc:1989 msgid "The following information may help to resolve the situation:" msgstr "Az alábbi információk segíthetnek megoldani a problémát:" -#: cmdline/apt-get.cc:1822 +#: cmdline/apt-get.cc:1824 msgid "Internal Error, AutoRemover broke stuff" msgstr "Belső hiba, az AutoRemover sérült" -#: cmdline/apt-get.cc:1829 +#: cmdline/apt-get.cc:1831 msgid "" "The following package was automatically installed and is no longer required:" msgid_plural "" @@ -742,7 +744,7 @@ msgstr[1] "" "A következő csomagok automatikusan lettek telepítve, és már nincs rájuk " "szükség:" -#: cmdline/apt-get.cc:1833 +#: cmdline/apt-get.cc:1835 #, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -751,22 +753,22 @@ msgstr[0] "%lu csomag automatikusan lett telepítve, és már nincs rá szüksé msgstr[1] "" "%lu csomag automatikusan lett telepítve, és már nincs rájuk szükség.\n" -#: cmdline/apt-get.cc:1835 +#: cmdline/apt-get.cc:1837 msgid "Use 'apt-get autoremove' to remove it." msgid_plural "Use 'apt-get autoremove' to remove them." msgstr[0] "Ezt az „apt-get autoremove” paranccsal törölheti." msgstr[1] "Ezeket az „apt-get autoremove” paranccsal törölheti." -#: cmdline/apt-get.cc:1854 +#: cmdline/apt-get.cc:1856 msgid "Internal error, AllUpgrade broke stuff" msgstr "Belső hiba, az AllUpgrade megsértett valamit" -#: cmdline/apt-get.cc:1953 +#: cmdline/apt-get.cc:1955 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "" "Próbálja futtatni az „apt-get -f install” parancsot az alábbiak javításához:" -#: cmdline/apt-get.cc:1957 +#: cmdline/apt-get.cc:1959 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -774,7 +776,7 @@ msgstr "" "Teljesítetlen függőségek. Próbálja kiadni az „apt-get -f install” parancsot " "csomagok nélkül (vagy telepítse a függőségeket is!)." -#: cmdline/apt-get.cc:1972 +#: cmdline/apt-get.cc:1974 msgid "" "Some packages could not be installed. This may mean that you have\n" "requested an impossible situation or if you are using the unstable\n" @@ -786,33 +788,33 @@ msgstr "" "használja, akkor néhány igényelt csomag még nem készült el vagy ki\n" "lett mozdítva az Incoming-ból." -#: cmdline/apt-get.cc:1993 +#: cmdline/apt-get.cc:1995 msgid "Broken packages" msgstr "Törött csomagok" -#: cmdline/apt-get.cc:2019 +#: cmdline/apt-get.cc:2021 msgid "The following extra packages will be installed:" msgstr "Az alábbi extra csomagok kerülnek telepítésre:" -#: cmdline/apt-get.cc:2109 +#: cmdline/apt-get.cc:2111 msgid "Suggested packages:" msgstr "Javasolt csomagok:" -#: cmdline/apt-get.cc:2110 +#: cmdline/apt-get.cc:2112 msgid "Recommended packages:" msgstr "Ajánlott csomagok:" -#: cmdline/apt-get.cc:2152 +#: cmdline/apt-get.cc:2154 #, c-format msgid "Couldn't find package %s" msgstr "Az alábbi csomag nem található: %s" -#: cmdline/apt-get.cc:2159 cmdline/apt-mark.cc:70 +#: cmdline/apt-get.cc:2161 cmdline/apt-mark.cc:70 #, c-format msgid "%s set to automatically installed.\n" msgstr "%s megjelölve automatikusan telepítettként.\n" -#: cmdline/apt-get.cc:2167 cmdline/apt-mark.cc:114 +#: cmdline/apt-get.cc:2169 cmdline/apt-mark.cc:114 msgid "" "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " "instead." @@ -820,47 +822,47 @@ msgstr "" "Ez a parancs elavult. Használja helyette az „apt-mark auto” és az „apt-mark " "auto” parancsokat." -#: cmdline/apt-get.cc:2183 +#: cmdline/apt-get.cc:2185 msgid "Calculating upgrade... " msgstr "Frissítés kiszámítása... " -#: cmdline/apt-get.cc:2186 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 msgid "Failed" msgstr "Sikertelen" -#: cmdline/apt-get.cc:2191 +#: cmdline/apt-get.cc:2193 msgid "Done" msgstr "Kész" -#: cmdline/apt-get.cc:2258 cmdline/apt-get.cc:2266 +#: cmdline/apt-get.cc:2260 cmdline/apt-get.cc:2268 msgid "Internal error, problem resolver broke stuff" msgstr "Belső hiba, a problémamegoldó hibát okozott" -#: cmdline/apt-get.cc:2294 cmdline/apt-get.cc:2330 +#: cmdline/apt-get.cc:2296 cmdline/apt-get.cc:2332 msgid "Unable to lock the download directory" msgstr "Nem lehet zárolni a letöltési könyvtárat" -#: cmdline/apt-get.cc:2386 +#: cmdline/apt-get.cc:2388 #, c-format msgid "Can't find a source to download version '%s' of '%s'" msgstr "Nem található forrás a(z) „%2$s” „%1$s” verziójának letöltéséhez" -#: cmdline/apt-get.cc:2391 +#: cmdline/apt-get.cc:2393 #, c-format msgid "Downloading %s %s" msgstr "Letöltés: %s %s" -#: cmdline/apt-get.cc:2451 +#: cmdline/apt-get.cc:2453 msgid "Must specify at least one package to fetch source for" msgstr "" "Legalább egy csomagot meg kell adni, amelynek a forrását le kell tölteni" -#: cmdline/apt-get.cc:2491 cmdline/apt-get.cc:2803 +#: cmdline/apt-get.cc:2493 cmdline/apt-get.cc:2805 #, c-format msgid "Unable to find a source package for %s" msgstr "Nem található forráscsomag ehhez: %s" -#: cmdline/apt-get.cc:2508 +#: cmdline/apt-get.cc:2510 #, c-format msgid "" "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" @@ -870,7 +872,7 @@ msgstr "" "karbantartva:\n" "%s\n" -#: cmdline/apt-get.cc:2513 +#: cmdline/apt-get.cc:2515 #, c-format msgid "" "Please use:\n" @@ -881,70 +883,70 @@ msgstr "" "bzr branch %s\n" "a csomag legújabb (esetleg kiadatlan) frissítéseinek letöltéséhez.\n" -#: cmdline/apt-get.cc:2566 +#: cmdline/apt-get.cc:2568 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "A már letöltött „%s” fájl kihagyása\n" -#: cmdline/apt-get.cc:2603 +#: cmdline/apt-get.cc:2605 #, c-format msgid "You don't have enough free space in %s" msgstr "Nincs elég szabad hely itt: %s" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:2612 +#: cmdline/apt-get.cc:2614 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "Letöltendő forrásadat-mennyiség: %sB/%sB.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:2617 +#: cmdline/apt-get.cc:2619 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Letöltendő forrásadat-mennyiség: %sB.\n" -#: cmdline/apt-get.cc:2623 +#: cmdline/apt-get.cc:2625 #, c-format msgid "Fetch source %s\n" msgstr "Forrás letöltése: %s\n" -#: cmdline/apt-get.cc:2661 +#: cmdline/apt-get.cc:2663 msgid "Failed to fetch some archives." msgstr "Nem sikerült néhány archívumot letölteni." -#: cmdline/apt-get.cc:2692 +#: cmdline/apt-get.cc:2694 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "Egy már kibontott forrás kibontásának kihagyása itt: %s\n" -#: cmdline/apt-get.cc:2704 +#: cmdline/apt-get.cc:2706 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "„%s” kibontási parancs nem sikerült.\n" -#: cmdline/apt-get.cc:2705 +#: cmdline/apt-get.cc:2707 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "Ellenőrizze, hogy a „dpkg-dev” csomag telepítve van-e.\n" -#: cmdline/apt-get.cc:2727 +#: cmdline/apt-get.cc:2729 #, c-format msgid "Build command '%s' failed.\n" msgstr "„%s” elkészítési parancs nem sikerült.\n" -#: cmdline/apt-get.cc:2747 +#: cmdline/apt-get.cc:2749 msgid "Child process failed" msgstr "Hiba a gyermekfolyamatnál" -#: cmdline/apt-get.cc:2766 +#: cmdline/apt-get.cc:2768 msgid "Must specify at least one package to check builddeps for" msgstr "" "Legalább egy csomagot adjon meg, amelynek fordítási függőségeit ellenőrizni " "kell" -#: cmdline/apt-get.cc:2791 +#: cmdline/apt-get.cc:2793 #, c-format msgid "" "No architecture information available for %s. See apt.conf(5) APT::" @@ -953,17 +955,17 @@ msgstr "" "Nem érhetők el architektúrainformációk ehhez: %s. A beállításokkal " "kapcsolatban lásd az apt.conf(5) APT::Architectures részét." -#: cmdline/apt-get.cc:2815 cmdline/apt-get.cc:2818 +#: cmdline/apt-get.cc:2817 cmdline/apt-get.cc:2820 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "Nem lehet %s fordítási függőségeinek információit letölteni" -#: cmdline/apt-get.cc:2838 +#: cmdline/apt-get.cc:2840 #, c-format msgid "%s has no build depends.\n" msgstr "Nincs fordítási függősége a következőnek: %s.\n" -#: cmdline/apt-get.cc:3008 +#: cmdline/apt-get.cc:3010 #, c-format msgid "" "%s dependency for %s can't be satisfied because %s is not allowed on '%s' " @@ -972,7 +974,7 @@ msgstr "" "%2$s csomag %1$s függősége nem elégíthető ki, mert a(z) %3$s nem " "engedélyezett a(z) „%4$s” csomagokon" -#: cmdline/apt-get.cc:3026 +#: cmdline/apt-get.cc:3028 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -981,14 +983,14 @@ msgstr "" "%2$s csomag %1$s függősége nem elégíthető ki, mert a(z) %3$s csomag nem " "található" -#: cmdline/apt-get.cc:3049 +#: cmdline/apt-get.cc:3051 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "%2$s csomag %1$s függősége nem elégíthető ki: a telepített %3$s csomag túl " "friss" -#: cmdline/apt-get.cc:3088 +#: cmdline/apt-get.cc:3090 #, c-format msgid "" "%s dependency for %s cannot be satisfied because candidate version of " @@ -997,7 +999,7 @@ msgstr "" "%2$s csomag %1$s függősége nem elégíthető ki, mert a(z) %3$s csomag elérhető " "verziója nem elégíti ki a verziókövetelményeket" -#: cmdline/apt-get.cc:3094 +#: cmdline/apt-get.cc:3096 #, c-format msgid "" "%s dependency for %s cannot be satisfied because package %s has no candidate " @@ -1006,30 +1008,30 @@ msgstr "" "%2$s csomag %1$s függősége nem elégíthető ki, mert a(z) %3$s csomagnak nincs " "jelölt verziója" -#: cmdline/apt-get.cc:3117 +#: cmdline/apt-get.cc:3119 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "%2$s csomag %1$s függősége nem elégíthető ki: %3$s" -#: cmdline/apt-get.cc:3133 +#: cmdline/apt-get.cc:3135 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "%s építési függőségei nem elégíthetők ki." -#: cmdline/apt-get.cc:3138 +#: cmdline/apt-get.cc:3140 msgid "Failed to process build dependencies" msgstr "Nem sikerült az építési függőségeket feldolgozni" -#: cmdline/apt-get.cc:3231 cmdline/apt-get.cc:3243 +#: cmdline/apt-get.cc:3233 cmdline/apt-get.cc:3245 #, c-format msgid "Changelog for %s (%s)" msgstr "Változási napló ehhez: %s (%s)" -#: cmdline/apt-get.cc:3366 +#: cmdline/apt-get.cc:3368 msgid "Supported modules:" msgstr "Támogatott modulok:" -#: cmdline/apt-get.cc:3407 +#: cmdline/apt-get.cc:3409 msgid "" "Usage: apt-get [options] command\n" " apt-get [options] install|remove pkg1 [pkg2 ...]\n" @@ -1118,7 +1120,7 @@ msgstr "" "információkért és opciókért.\n" " Ez az APT a SzuperTehén Hatalmával rendelkezik.\n" -#: cmdline/apt-get.cc:3572 +#: cmdline/apt-get.cc:3574 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1740,7 +1742,7 @@ msgstr "" " -c=? Ezt a konfigurációs fájlt olvassa be\n" " -o=? Beállít egy tetszőleges konfigurációs opciót, pl -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1335 +#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1339 #, c-format msgid "Unable to write to %s" msgstr "Nem lehet írni ebbe: %s" @@ -2796,7 +2798,7 @@ msgstr "A(z) %u. sor hibás a(z) %s forráslistában (típus)" msgid "Type '%s' is not known on line %u in source list %s" msgstr "„%1$s” típus nem ismert a(z) %3$s forráslista %2$u. sorában" -#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:896 +#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:898 #, c-format msgid "" "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " @@ -2805,12 +2807,12 @@ msgstr "" "Nem lehetett a(z) „%s” közvetlen beállítását végrehajtani. A részletekért " "lásd a man 5 apt.conf oldalt az APT::Immediate-Configure címszó alatt. (%d)" -#: apt-pkg/packagemanager.cc:473 apt-pkg/packagemanager.cc:503 +#: apt-pkg/packagemanager.cc:473 apt-pkg/packagemanager.cc:504 #, c-format msgid "Could not configure '%s'. " msgstr "A(z) „%s” beállítása sikertelen" -#: apt-pkg/packagemanager.cc:545 +#: apt-pkg/packagemanager.cc:546 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2845,7 +2847,7 @@ msgstr "" msgid "Unable to correct problems, you have held broken packages." msgstr "A problémák nem javíthatók, sérült csomagokat fogott vissza." -#: apt-pkg/algorithms.cc:1574 apt-pkg/algorithms.cc:1576 +#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 msgid "" "Some index files failed to download. They have been ignored, or old ones " "used instead." @@ -2994,22 +2996,22 @@ msgstr "" "A(z) %s %s csomag nem volt megtalálható a fájl függőségeinek feldolgozása " "közben" -#: apt-pkg/pkgcachegen.cc:1146 +#: apt-pkg/pkgcachegen.cc:1150 #, c-format msgid "Couldn't stat source package list %s" msgstr "Nem lehet a(z) %s forrás csomaglistáját elérni" -#: apt-pkg/pkgcachegen.cc:1234 apt-pkg/pkgcachegen.cc:1338 -#: apt-pkg/pkgcachegen.cc:1344 apt-pkg/pkgcachegen.cc:1501 +#: apt-pkg/pkgcachegen.cc:1238 apt-pkg/pkgcachegen.cc:1342 +#: apt-pkg/pkgcachegen.cc:1348 apt-pkg/pkgcachegen.cc:1505 msgid "Reading package lists" msgstr "Csomaglisták olvasása" # FIXME -#: apt-pkg/pkgcachegen.cc:1251 +#: apt-pkg/pkgcachegen.cc:1255 msgid "Collecting File Provides" msgstr "„Biztosítja” kapcsolatok összegyűjtése" -#: apt-pkg/pkgcachegen.cc:1443 apt-pkg/pkgcachegen.cc:1450 +#: apt-pkg/pkgcachegen.cc:1447 apt-pkg/pkgcachegen.cc:1454 msgid "IO Error saving source cache" msgstr "IO hiba a forrás-gyorsítótár mentésekor" diff --git a/po/it.po b/po/it.po index 51d09990d..98269398e 100644 --- a/po/it.po +++ b/po/it.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2012-10-15 09:49+0200\n" +"POT-Creation-Date: 2013-03-14 08:05+0100\n" "PO-Revision-Date: 2012-06-25 21:54+0200\n" "Last-Translator: Milo Casagrande \n" "Language-Team: Italian \n" @@ -158,7 +158,7 @@ msgid " Version table:" msgstr " Tabella versione:" #: cmdline/apt-cache.cc:1683 cmdline/apt-cdrom.cc:198 cmdline/apt-config.cc:81 -#: cmdline/apt-get.cc:3361 cmdline/apt-mark.cc:375 +#: cmdline/apt-get.cc:3363 cmdline/apt-mark.cc:375 #: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:590 #: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147 #, c-format @@ -490,7 +490,7 @@ msgstr "La reinstallazione di %s non è possibile, non può essere scaricato.\n" msgid "%s is already the newest version.\n" msgstr "%s è già alla versione più recente.\n" -#: cmdline/apt-get.cc:858 cmdline/apt-get.cc:2157 cmdline/apt-mark.cc:68 +#: cmdline/apt-get.cc:858 cmdline/apt-get.cc:2159 cmdline/apt-mark.cc:68 #, c-format msgid "%s set to manually installed.\n" msgstr "È stato impostato %s per l'installazione manuale.\n" @@ -601,8 +601,8 @@ msgstr "Dopo quest'operazione, verranno occupati %sB di spazio su disco.\n" msgid "After this operation, %sB disk space will be freed.\n" msgstr "Dopo quest'operazione, verranno liberati %sB di spazio su disco.\n" -#: cmdline/apt-get.cc:1228 cmdline/apt-get.cc:1231 cmdline/apt-get.cc:2589 -#: cmdline/apt-get.cc:2592 +#: cmdline/apt-get.cc:1228 cmdline/apt-get.cc:1231 cmdline/apt-get.cc:2591 +#: cmdline/apt-get.cc:2594 #, c-format msgid "Couldn't determine free space in %s" msgstr "Impossibile determinare lo spazio libero in %s" @@ -612,17 +612,19 @@ msgstr "Impossibile determinare lo spazio libero in %s" msgid "You don't have enough free space in %s." msgstr "Spazio libero in %s insufficiente." -#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1277 +#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1279 msgid "Trivial Only specified but this is not a trivial operation." msgstr "" "È stata specificata la modalità \"Trivial Only\", ma questa non è " "un'operazione banale." -#: cmdline/apt-get.cc:1259 +#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be +#. careful with hard to type or special characters (like non-breaking spaces) +#: cmdline/apt-get.cc:1261 msgid "Yes, do as I say!" msgstr "Sì, esegui come da richiesta." -#: cmdline/apt-get.cc:1261 +#: cmdline/apt-get.cc:1263 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -633,28 +635,28 @@ msgstr "" "Per continuare scrivere la frase \"%s\"\n" " ?] " -#: cmdline/apt-get.cc:1267 cmdline/apt-get.cc:1286 +#: cmdline/apt-get.cc:1269 cmdline/apt-get.cc:1288 msgid "Abort." msgstr "Interrotto." -#: cmdline/apt-get.cc:1282 +#: cmdline/apt-get.cc:1284 msgid "Do you want to continue [Y/n]? " msgstr "Continuare [S/n]? " -#: cmdline/apt-get.cc:1354 cmdline/apt-get.cc:2654 apt-pkg/algorithms.cc:1548 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Impossibile recuperare %s %s\n" -#: cmdline/apt-get.cc:1372 +#: cmdline/apt-get.cc:1374 msgid "Some files failed to download" msgstr "Scaricamento di alcuni file non riuscito" -#: cmdline/apt-get.cc:1373 cmdline/apt-get.cc:2666 +#: cmdline/apt-get.cc:1375 cmdline/apt-get.cc:2668 msgid "Download complete and in download only mode" msgstr "Scaricamento completato e in modalità solo scaricamento" -#: cmdline/apt-get.cc:1379 +#: cmdline/apt-get.cc:1381 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -662,19 +664,19 @@ msgstr "" "Impossibile scaricare alcuni pacchetti. Potrebbe essere utile eseguire \"apt-" "get update\" o provare l'opzione \"--fix-missing\"." -#: cmdline/apt-get.cc:1383 +#: cmdline/apt-get.cc:1385 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix-missing su supporti estraibili non è ancora supportato" -#: cmdline/apt-get.cc:1388 +#: cmdline/apt-get.cc:1390 msgid "Unable to correct missing packages." msgstr "Impossibile correggere i pacchetti mancanti." -#: cmdline/apt-get.cc:1389 +#: cmdline/apt-get.cc:1391 msgid "Aborting install." msgstr "Interruzione dell'installazione." -#: cmdline/apt-get.cc:1417 +#: cmdline/apt-get.cc:1419 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -688,36 +690,36 @@ msgstr[1] "" "I seguenti pacchetti sono spariti dal sistema poiché\n" "tutti i file sono stati sovrascritti da altri pacchetti:" -#: cmdline/apt-get.cc:1421 +#: cmdline/apt-get.cc:1423 msgid "Note: This is done automatically and on purpose by dpkg." msgstr "Nota: questo viene svolto automaticamente e volutamente da dpkg." -#: cmdline/apt-get.cc:1559 +#: cmdline/apt-get.cc:1561 #, c-format msgid "Ignore unavailable target release '%s' of package '%s'" msgstr "Ignorato il rilascio non disponibile \"%s\" del pacchetto \"%s\"" -#: cmdline/apt-get.cc:1591 +#: cmdline/apt-get.cc:1593 #, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "Scelto \"%s\" come pacchetto sorgente al posto di \"%s\"\n" #. if (VerTag.empty() == false && Last == 0) -#: cmdline/apt-get.cc:1629 +#: cmdline/apt-get.cc:1631 #, c-format msgid "Ignore unavailable version '%s' of package '%s'" msgstr "Ignorata la versione \"%s\" non disponibile del pacchetto \"%s\"" -#: cmdline/apt-get.cc:1645 +#: cmdline/apt-get.cc:1647 msgid "The update command takes no arguments" msgstr "Il comando update non accetta argomenti" -#: cmdline/apt-get.cc:1711 +#: cmdline/apt-get.cc:1713 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" "Non si è autorizzati a rimuovere nulla, impossibile avviare AutoRemover" -#: cmdline/apt-get.cc:1815 +#: cmdline/apt-get.cc:1817 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -735,15 +737,15 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1818 cmdline/apt-get.cc:1987 +#: cmdline/apt-get.cc:1820 cmdline/apt-get.cc:1989 msgid "The following information may help to resolve the situation:" msgstr "Le seguenti informazioni possono aiutare a risolvere la situazione:" -#: cmdline/apt-get.cc:1822 +#: cmdline/apt-get.cc:1824 msgid "Internal Error, AutoRemover broke stuff" msgstr "Errore interno, AutoRemover ha rovinato qualche cosa" -#: cmdline/apt-get.cc:1829 +#: cmdline/apt-get.cc:1831 msgid "" "The following package was automatically installed and is no longer required:" msgid_plural "" @@ -756,7 +758,7 @@ msgstr[1] "" "I seguenti pacchetti sono stati installati automaticamente e non sono più " "richiesti:" -#: cmdline/apt-get.cc:1833 +#: cmdline/apt-get.cc:1835 #, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -767,22 +769,22 @@ msgstr[1] "" "%lu pacchetti sono stati installati automaticamente e non sono più " "richiesti.\n" -#: cmdline/apt-get.cc:1835 +#: cmdline/apt-get.cc:1837 msgid "Use 'apt-get autoremove' to remove it." msgid_plural "Use 'apt-get autoremove' to remove them." msgstr[0] "Usare \"apt-get autoremove\" per rimuoverlo." msgstr[1] "Usare \"apt-get autoremove\" per rimuoverli." -#: cmdline/apt-get.cc:1854 +#: cmdline/apt-get.cc:1856 msgid "Internal error, AllUpgrade broke stuff" msgstr "Errore interno, AllUpgrade ha rovinato qualche cosa" -#: cmdline/apt-get.cc:1953 +#: cmdline/apt-get.cc:1955 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "" "È utile eseguire \"apt-get -f install\" per correggere questi problemi:" -#: cmdline/apt-get.cc:1957 +#: cmdline/apt-get.cc:1959 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -790,7 +792,7 @@ msgstr "" "Dipendenze non soddisfatte. Provare \"apt-get -f install\" senza pacchetti " "(o specificare una soluzione)." -#: cmdline/apt-get.cc:1972 +#: cmdline/apt-get.cc:1974 msgid "" "Some packages could not be installed. This may mean that you have\n" "requested an impossible situation or if you are using the unstable\n" @@ -802,33 +804,33 @@ msgstr "" "usando una distribuzione in sviluppo, che alcuni pacchetti richiesti\n" "non sono ancora stati creati o sono stati rimossi da Incoming." -#: cmdline/apt-get.cc:1993 +#: cmdline/apt-get.cc:1995 msgid "Broken packages" msgstr "Pacchetti danneggiati" -#: cmdline/apt-get.cc:2019 +#: cmdline/apt-get.cc:2021 msgid "The following extra packages will be installed:" msgstr "I seguenti pacchetti saranno inoltre installati:" -#: cmdline/apt-get.cc:2109 +#: cmdline/apt-get.cc:2111 msgid "Suggested packages:" msgstr "Pacchetti suggeriti:" -#: cmdline/apt-get.cc:2110 +#: cmdline/apt-get.cc:2112 msgid "Recommended packages:" msgstr "Pacchetti raccomandati:" -#: cmdline/apt-get.cc:2152 +#: cmdline/apt-get.cc:2154 #, c-format msgid "Couldn't find package %s" msgstr "Impossibile trovare il pacchetto %s" -#: cmdline/apt-get.cc:2159 cmdline/apt-mark.cc:70 +#: cmdline/apt-get.cc:2161 cmdline/apt-mark.cc:70 #, c-format msgid "%s set to automatically installed.\n" msgstr "%s impostato automaticamente come installato.\n" -#: cmdline/apt-get.cc:2167 cmdline/apt-mark.cc:114 +#: cmdline/apt-get.cc:2169 cmdline/apt-mark.cc:114 msgid "" "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " "instead." @@ -836,48 +838,48 @@ msgstr "" "Questo comando è deprecato. Utilizzare \"apt-mark auto\" e \"apt-mark manual" "\" al suo posto." -#: cmdline/apt-get.cc:2183 +#: cmdline/apt-get.cc:2185 msgid "Calculating upgrade... " msgstr "Calcolo dell'aggiornamento... " -#: cmdline/apt-get.cc:2186 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 msgid "Failed" msgstr "Non riuscito" -#: cmdline/apt-get.cc:2191 +#: cmdline/apt-get.cc:2193 msgid "Done" msgstr "Eseguito" -#: cmdline/apt-get.cc:2258 cmdline/apt-get.cc:2266 +#: cmdline/apt-get.cc:2260 cmdline/apt-get.cc:2268 msgid "Internal error, problem resolver broke stuff" msgstr "Errore interno, \"problem resolver\" ha rovinato qualcosa" -#: cmdline/apt-get.cc:2294 cmdline/apt-get.cc:2330 +#: cmdline/apt-get.cc:2296 cmdline/apt-get.cc:2332 msgid "Unable to lock the download directory" msgstr "Impossibile bloccare la directory di scaricamento" -#: cmdline/apt-get.cc:2386 +#: cmdline/apt-get.cc:2388 #, c-format msgid "Can't find a source to download version '%s' of '%s'" msgstr "" "Impossibile trovare una sorgente per scaricare la versione \"%s\" di \"%s\"" -#: cmdline/apt-get.cc:2391 +#: cmdline/apt-get.cc:2393 #, c-format msgid "Downloading %s %s" msgstr "Scaricamento di %s %s" -#: cmdline/apt-get.cc:2451 +#: cmdline/apt-get.cc:2453 msgid "Must specify at least one package to fetch source for" msgstr "" "È necessario specificare almeno un pacchetto di cui recuperare il sorgente" -#: cmdline/apt-get.cc:2491 cmdline/apt-get.cc:2803 +#: cmdline/apt-get.cc:2493 cmdline/apt-get.cc:2805 #, c-format msgid "Unable to find a source package for %s" msgstr "Impossibile trovare un pacchetto sorgente per %s" -#: cmdline/apt-get.cc:2508 +#: cmdline/apt-get.cc:2510 #, c-format msgid "" "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" @@ -887,7 +889,7 @@ msgstr "" "all'interno del sistema di controllo della versione \"%s\" presso:\n" "%s\n" -#: cmdline/apt-get.cc:2513 +#: cmdline/apt-get.cc:2515 #, c-format msgid "" "Please use:\n" @@ -899,70 +901,70 @@ msgstr "" "per recuperare gli ultimi (forse non rilasciati) aggiornamenti del " "pacchetto.\n" -#: cmdline/apt-get.cc:2566 +#: cmdline/apt-get.cc:2568 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Il pacchetto \"%s\" già scaricato viene saltato\n" -#: cmdline/apt-get.cc:2603 +#: cmdline/apt-get.cc:2605 #, c-format msgid "You don't have enough free space in %s" msgstr "Lo spazio libero in %s è insufficiente" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:2612 +#: cmdline/apt-get.cc:2614 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "È necessario recuperare %sB/%sB di sorgenti.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:2617 +#: cmdline/apt-get.cc:2619 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "È necessario scaricare %sB di sorgenti.\n" -#: cmdline/apt-get.cc:2623 +#: cmdline/apt-get.cc:2625 #, c-format msgid "Fetch source %s\n" msgstr "Recupero sorgente %s\n" -#: cmdline/apt-get.cc:2661 +#: cmdline/apt-get.cc:2663 msgid "Failed to fetch some archives." msgstr "Recupero di alcuni archivi non riuscito." -#: cmdline/apt-get.cc:2692 +#: cmdline/apt-get.cc:2694 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "Estrazione del pacchetto sorgente già estratto in %s saltata\n" -#: cmdline/apt-get.cc:2704 +#: cmdline/apt-get.cc:2706 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Comando di estrazione \"%s\" non riuscito.\n" -#: cmdline/apt-get.cc:2705 +#: cmdline/apt-get.cc:2707 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "Verificare che il pacchetto \"dpkg-dev\" sia installato.\n" -#: cmdline/apt-get.cc:2727 +#: cmdline/apt-get.cc:2729 #, c-format msgid "Build command '%s' failed.\n" msgstr "Comando \"%s\" di generazione non riuscito.\n" -#: cmdline/apt-get.cc:2747 +#: cmdline/apt-get.cc:2749 msgid "Child process failed" msgstr "Creazione processo figlio non riuscita" -#: cmdline/apt-get.cc:2766 +#: cmdline/apt-get.cc:2768 msgid "Must specify at least one package to check builddeps for" msgstr "" "È necessario specificare almeno un pacchetto di cui controllare le " "dipendenze di generazione" -#: cmdline/apt-get.cc:2791 +#: cmdline/apt-get.cc:2793 #, c-format msgid "" "No architecture information available for %s. See apt.conf(5) APT::" @@ -971,17 +973,17 @@ msgstr "" "Informazioni sull'architettura non disponibili per %s. Consultare apt.conf" "(5) APT::Architectures per l'impostazione" -#: cmdline/apt-get.cc:2815 cmdline/apt-get.cc:2818 +#: cmdline/apt-get.cc:2817 cmdline/apt-get.cc:2820 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "Impossibile ottenere informazioni di dipendenza di generazione per %s" -#: cmdline/apt-get.cc:2838 +#: cmdline/apt-get.cc:2840 #, c-format msgid "%s has no build depends.\n" msgstr "%s non ha dipendenze di generazione.\n" -#: cmdline/apt-get.cc:3008 +#: cmdline/apt-get.cc:3010 #, c-format msgid "" "%s dependency for %s can't be satisfied because %s is not allowed on '%s' " @@ -990,7 +992,7 @@ msgstr "" "La dipendenza %s per %s non può essere soddisfatta perché %s non è " "consentito su pacchetti \"%s\"" -#: cmdline/apt-get.cc:3026 +#: cmdline/apt-get.cc:3028 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -999,14 +1001,14 @@ msgstr "" "%s dipendenze per %s non possono essere soddisfatte perché il pacchetto %s " "non può essere trovato" -#: cmdline/apt-get.cc:3049 +#: cmdline/apt-get.cc:3051 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "La dipendenza %s per %s non è stata soddisfatta: il pacchetto installato %s " "è troppo recente" -#: cmdline/apt-get.cc:3088 +#: cmdline/apt-get.cc:3090 #, c-format msgid "" "%s dependency for %s cannot be satisfied because candidate version of " @@ -1015,7 +1017,7 @@ msgstr "" "La dipendenza %s per %s non può essere soddisfatta perché la versione " "candidata del pacchetto %s non può soddisfare i requisiti di versione" -#: cmdline/apt-get.cc:3094 +#: cmdline/apt-get.cc:3096 #, c-format msgid "" "%s dependency for %s cannot be satisfied because package %s has no candidate " @@ -1024,30 +1026,30 @@ msgstr "" "La dipendenza %s per %s non può essere soddisfatta perché il pacchetto %s " "non ha una versione candidata" -#: cmdline/apt-get.cc:3117 +#: cmdline/apt-get.cc:3119 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "La dipendenza %s per %s non è stata soddisfatta: %s" -#: cmdline/apt-get.cc:3133 +#: cmdline/apt-get.cc:3135 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "Le dipendenze di generazione per %s non sono state soddisfatte." -#: cmdline/apt-get.cc:3138 +#: cmdline/apt-get.cc:3140 msgid "Failed to process build dependencies" msgstr "Elaborazione delle dipendenze di generazione non riuscita" -#: cmdline/apt-get.cc:3231 cmdline/apt-get.cc:3243 +#: cmdline/apt-get.cc:3233 cmdline/apt-get.cc:3245 #, c-format msgid "Changelog for %s (%s)" msgstr "Changelog per %s (%s)" -#: cmdline/apt-get.cc:3366 +#: cmdline/apt-get.cc:3368 msgid "Supported modules:" msgstr "Moduli supportati:" -#: cmdline/apt-get.cc:3407 +#: cmdline/apt-get.cc:3409 msgid "" "Usage: apt-get [options] command\n" " apt-get [options] install|remove pkg1 [pkg2 ...]\n" @@ -1137,7 +1139,7 @@ msgstr "" "apt-get(8), sources.list(5) e apt.conf(5).\n" " Questo APT ha i poteri della Super Mucca.\n" -#: cmdline/apt-get.cc:3572 +#: cmdline/apt-get.cc:3574 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1767,7 +1769,7 @@ msgstr "" " -c=? Legge come configurazione il file specificato\n" " -o=? Imposta un'opzione di configurazione, come -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1335 +#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1339 #, c-format msgid "Unable to write to %s" msgstr "Impossibile scrivere in %s" @@ -2832,7 +2834,7 @@ msgstr "La riga %u nel file %s non è corretta (type)" msgid "Type '%s' is not known on line %u in source list %s" msgstr "Tipo \"%s\" non riconosciuto alla riga %u nel file %s" -#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:896 +#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:898 #, c-format msgid "" "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " @@ -2842,12 +2844,12 @@ msgstr "" "maggiori informazioni, consultare \"man 5 apt.conf\" alla sezione \"APT::" "Immediate-Configure\" (%d)." -#: apt-pkg/packagemanager.cc:473 apt-pkg/packagemanager.cc:503 +#: apt-pkg/packagemanager.cc:473 apt-pkg/packagemanager.cc:504 #, c-format msgid "Could not configure '%s'. " msgstr "Impossibile configurare \"%s\". " -#: apt-pkg/packagemanager.cc:545 +#: apt-pkg/packagemanager.cc:546 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2885,7 +2887,7 @@ msgid "Unable to correct problems, you have held broken packages." msgstr "" "Impossibile correggere i problemi, ci sono pacchetti danneggiati bloccati." -#: apt-pkg/algorithms.cc:1574 apt-pkg/algorithms.cc:1576 +#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 msgid "" "Some index files failed to download. They have been ignored, or old ones " "used instead." @@ -3038,22 +3040,22 @@ msgstr "" "Il pacchetto %s v.%s non è stato trovato durante l'elaborazione delle " "dipendenze" -#: apt-pkg/pkgcachegen.cc:1146 +#: apt-pkg/pkgcachegen.cc:1150 #, c-format msgid "Couldn't stat source package list %s" msgstr "Impossibile eseguire stat sull'elenco dei pacchetti sorgente %s" -#: apt-pkg/pkgcachegen.cc:1234 apt-pkg/pkgcachegen.cc:1338 -#: apt-pkg/pkgcachegen.cc:1344 apt-pkg/pkgcachegen.cc:1501 +#: apt-pkg/pkgcachegen.cc:1238 apt-pkg/pkgcachegen.cc:1342 +#: apt-pkg/pkgcachegen.cc:1348 apt-pkg/pkgcachegen.cc:1505 msgid "Reading package lists" msgstr "Lettura elenco dei pacchetti" # (ndt) non mi convince per niente, ma vediamo cosa salta fuori -#: apt-pkg/pkgcachegen.cc:1251 +#: apt-pkg/pkgcachegen.cc:1255 msgid "Collecting File Provides" msgstr "Il file fornisce" -#: apt-pkg/pkgcachegen.cc:1443 apt-pkg/pkgcachegen.cc:1450 +#: apt-pkg/pkgcachegen.cc:1447 apt-pkg/pkgcachegen.cc:1454 msgid "IO Error saving source cache" msgstr "Errore di I/O nel salvare la cache sorgente" diff --git a/po/ja.po b/po/ja.po index fb455abcc..48ee00f58 100644 --- a/po/ja.po +++ b/po/ja.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.9.7.1\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2012-10-15 09:49+0200\n" +"POT-Creation-Date: 2013-03-14 08:05+0100\n" "PO-Revision-Date: 2012-07-01 00:14+0900\n" "Last-Translator: Kenshi Muto \n" "Language-Team: Debian Japanese List \n" @@ -155,7 +155,7 @@ msgid " Version table:" msgstr " バージョンテーブル:" #: cmdline/apt-cache.cc:1683 cmdline/apt-cdrom.cc:198 cmdline/apt-config.cc:81 -#: cmdline/apt-get.cc:3361 cmdline/apt-mark.cc:375 +#: cmdline/apt-get.cc:3363 cmdline/apt-mark.cc:375 #: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:590 #: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147 #, c-format @@ -485,7 +485,7 @@ msgstr "ダウンロードできないため、%s の再インストールは不 msgid "%s is already the newest version.\n" msgstr "%s はすでに最新バージョンです。\n" -#: cmdline/apt-get.cc:858 cmdline/apt-get.cc:2157 cmdline/apt-mark.cc:68 +#: cmdline/apt-get.cc:858 cmdline/apt-get.cc:2159 cmdline/apt-mark.cc:68 #, c-format msgid "%s set to manually installed.\n" msgstr "%s は手動でインストールしたと設定されました。\n" @@ -595,8 +595,8 @@ msgstr "この操作後に追加で %sB のディスク容量が消費されま msgid "After this operation, %sB disk space will be freed.\n" msgstr "この操作後に %sB のディスク容量が解放されます。\n" -#: cmdline/apt-get.cc:1228 cmdline/apt-get.cc:1231 cmdline/apt-get.cc:2589 -#: cmdline/apt-get.cc:2592 +#: cmdline/apt-get.cc:1228 cmdline/apt-get.cc:1231 cmdline/apt-get.cc:2591 +#: cmdline/apt-get.cc:2594 #, c-format msgid "Couldn't determine free space in %s" msgstr "%s の空き領域を測定できません" @@ -606,15 +606,17 @@ msgstr "%s の空き領域を測定できません" msgid "You don't have enough free space in %s." msgstr "%s に充分な空きスペースがありません。" -#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1277 +#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1279 msgid "Trivial Only specified but this is not a trivial operation." msgstr "Trivial Only が指定されましたが、これは簡単な操作ではありません。" -#: cmdline/apt-get.cc:1259 +#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be +#. careful with hard to type or special characters (like non-breaking spaces) +#: cmdline/apt-get.cc:1261 msgid "Yes, do as I say!" msgstr "Yes, do as I say!" -#: cmdline/apt-get.cc:1261 +#: cmdline/apt-get.cc:1263 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -625,28 +627,28 @@ msgstr "" "続行するには、'%s' というフレーズをタイプしてください。\n" " ?] " -#: cmdline/apt-get.cc:1267 cmdline/apt-get.cc:1286 +#: cmdline/apt-get.cc:1269 cmdline/apt-get.cc:1288 msgid "Abort." msgstr "中断しました。" -#: cmdline/apt-get.cc:1282 +#: cmdline/apt-get.cc:1284 msgid "Do you want to continue [Y/n]? " msgstr "続行しますか [Y/n]? " -#: cmdline/apt-get.cc:1354 cmdline/apt-get.cc:2654 apt-pkg/algorithms.cc:1548 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 #, c-format msgid "Failed to fetch %s %s\n" msgstr "%s の取得に失敗しました %s\n" -#: cmdline/apt-get.cc:1372 +#: cmdline/apt-get.cc:1374 msgid "Some files failed to download" msgstr "いくつかのファイルの取得に失敗しました" -#: cmdline/apt-get.cc:1373 cmdline/apt-get.cc:2666 +#: cmdline/apt-get.cc:1375 cmdline/apt-get.cc:2668 msgid "Download complete and in download only mode" msgstr "ダウンロードオンリーモードでパッケージのダウンロードが完了しました" -#: cmdline/apt-get.cc:1379 +#: cmdline/apt-get.cc:1381 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -654,19 +656,19 @@ msgstr "" "いくつかのアーカイブを取得できません。apt-get update を実行するか --fix-" "missing オプションを付けて試してみてください。" -#: cmdline/apt-get.cc:1383 +#: cmdline/apt-get.cc:1385 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix-missing とメディア交換は現在同時にはサポートされていません" -#: cmdline/apt-get.cc:1388 +#: cmdline/apt-get.cc:1390 msgid "Unable to correct missing packages." msgstr "足りないパッケージを直すことができません。" -#: cmdline/apt-get.cc:1389 +#: cmdline/apt-get.cc:1391 msgid "Aborting install." msgstr "インストールを中断します。" -#: cmdline/apt-get.cc:1417 +#: cmdline/apt-get.cc:1419 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -677,36 +679,36 @@ msgstr[0] "" "以下のパッケージは、全ファイルが別のパッケージで上書きされたため、\n" "システムから消えました:" -#: cmdline/apt-get.cc:1421 +#: cmdline/apt-get.cc:1423 msgid "Note: This is done automatically and on purpose by dpkg." msgstr "注意: これは dpkg により自動でわざと行われれます。" -#: cmdline/apt-get.cc:1559 +#: cmdline/apt-get.cc:1561 #, c-format msgid "Ignore unavailable target release '%s' of package '%s'" msgstr "パッケージ '%2$s' の利用できないターゲットリリース '%1$s' を無視" -#: cmdline/apt-get.cc:1591 +#: cmdline/apt-get.cc:1593 #, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "'%2$s' の代わりに '%1$s' をソースパッケージとして選出しています\n" #. if (VerTag.empty() == false && Last == 0) -#: cmdline/apt-get.cc:1629 +#: cmdline/apt-get.cc:1631 #, c-format msgid "Ignore unavailable version '%s' of package '%s'" msgstr "パッケージ '%2$s' の利用できないバージョン '%1$s' を無視" -#: cmdline/apt-get.cc:1645 +#: cmdline/apt-get.cc:1647 msgid "The update command takes no arguments" msgstr "update コマンドは引数をとりません" -#: cmdline/apt-get.cc:1711 +#: cmdline/apt-get.cc:1713 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" "一連のものを削除するようになっていないので、AutoRemover を開始できません" -#: cmdline/apt-get.cc:1815 +#: cmdline/apt-get.cc:1817 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -724,15 +726,15 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1818 cmdline/apt-get.cc:1987 +#: cmdline/apt-get.cc:1820 cmdline/apt-get.cc:1989 msgid "The following information may help to resolve the situation:" msgstr "以下の情報がこの問題を解決するために役立つかもしれません:" -#: cmdline/apt-get.cc:1822 +#: cmdline/apt-get.cc:1824 msgid "Internal Error, AutoRemover broke stuff" msgstr "内部エラー、AutoRemover が何かを破壊しました" -#: cmdline/apt-get.cc:1829 +#: cmdline/apt-get.cc:1831 msgid "" "The following package was automatically installed and is no longer required:" msgid_plural "" @@ -741,7 +743,7 @@ msgid_plural "" msgstr[0] "" "以下のパッケージが自動でインストールされましたが、もう必要とされていません:" -#: cmdline/apt-get.cc:1833 +#: cmdline/apt-get.cc:1835 #, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -750,22 +752,22 @@ msgstr[0] "" "%lu つのパッケージが自動でインストールされましたが、もう必要とされていませ" "ん:\n" -#: cmdline/apt-get.cc:1835 +#: cmdline/apt-get.cc:1837 msgid "Use 'apt-get autoremove' to remove it." msgid_plural "Use 'apt-get autoremove' to remove them." msgstr[0] "これを削除するには 'apt-get autoremove' を利用してください。" -#: cmdline/apt-get.cc:1854 +#: cmdline/apt-get.cc:1856 msgid "Internal error, AllUpgrade broke stuff" msgstr "内部エラー、AllUpgrade が何かを破壊しました" -#: cmdline/apt-get.cc:1953 +#: cmdline/apt-get.cc:1955 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "" "以下の問題を解決するために 'apt-get -f install' を実行する必要があるかもしれ" "ません:" -#: cmdline/apt-get.cc:1957 +#: cmdline/apt-get.cc:1959 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -773,7 +775,7 @@ msgstr "" "未解決の依存関係です。'apt-get -f install' を実行してみてください (または解法" "を明示してください)。" -#: cmdline/apt-get.cc:1972 +#: cmdline/apt-get.cc:1974 msgid "" "Some packages could not be installed. This may mean that you have\n" "requested an impossible situation or if you are using the unstable\n" @@ -785,33 +787,33 @@ msgstr "" "であれば) 必要なパッケージがまだ作成されていなかったり Incoming から移\n" "動されていないことが考えられます。" -#: cmdline/apt-get.cc:1993 +#: cmdline/apt-get.cc:1995 msgid "Broken packages" msgstr "壊れたパッケージ" -#: cmdline/apt-get.cc:2019 +#: cmdline/apt-get.cc:2021 msgid "The following extra packages will be installed:" msgstr "以下の特別パッケージがインストールされます:" -#: cmdline/apt-get.cc:2109 +#: cmdline/apt-get.cc:2111 msgid "Suggested packages:" msgstr "提案パッケージ:" -#: cmdline/apt-get.cc:2110 +#: cmdline/apt-get.cc:2112 msgid "Recommended packages:" msgstr "推奨パッケージ:" -#: cmdline/apt-get.cc:2152 +#: cmdline/apt-get.cc:2154 #, c-format msgid "Couldn't find package %s" msgstr "パッケージ %s が見つかりません" -#: cmdline/apt-get.cc:2159 cmdline/apt-mark.cc:70 +#: cmdline/apt-get.cc:2161 cmdline/apt-mark.cc:70 #, c-format msgid "%s set to automatically installed.\n" msgstr "%s は自動でインストールしたと設定されました。\n" -#: cmdline/apt-get.cc:2167 cmdline/apt-mark.cc:114 +#: cmdline/apt-get.cc:2169 cmdline/apt-mark.cc:114 msgid "" "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " "instead." @@ -819,47 +821,47 @@ msgstr "" "このコマンドは時代遅れです。'apt-mark auto' および 'apt-mark manual' を代わり" "に使用してください。" -#: cmdline/apt-get.cc:2183 +#: cmdline/apt-get.cc:2185 msgid "Calculating upgrade... " msgstr "アップグレードパッケージを検出しています ... " -#: cmdline/apt-get.cc:2186 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 msgid "Failed" msgstr "失敗" -#: cmdline/apt-get.cc:2191 +#: cmdline/apt-get.cc:2193 msgid "Done" msgstr "完了" -#: cmdline/apt-get.cc:2258 cmdline/apt-get.cc:2266 +#: cmdline/apt-get.cc:2260 cmdline/apt-get.cc:2268 msgid "Internal error, problem resolver broke stuff" msgstr "内部エラー、問題リゾルバが何かを破壊しました" -#: cmdline/apt-get.cc:2294 cmdline/apt-get.cc:2330 +#: cmdline/apt-get.cc:2296 cmdline/apt-get.cc:2332 msgid "Unable to lock the download directory" msgstr "ダウンロードディレクトリをロックできません" -#: cmdline/apt-get.cc:2386 +#: cmdline/apt-get.cc:2388 #, c-format msgid "Can't find a source to download version '%s' of '%s'" msgstr "'%2$s' のバージョン '%1$s' をダウンロードするソースが見つかりません" -#: cmdline/apt-get.cc:2391 +#: cmdline/apt-get.cc:2393 #, c-format msgid "Downloading %s %s" msgstr "%s %s をダウンロードしています" -#: cmdline/apt-get.cc:2451 +#: cmdline/apt-get.cc:2453 msgid "Must specify at least one package to fetch source for" msgstr "" "ソースを取得するには少なくとも 1 つのパッケージ名を指定する必要があります" -#: cmdline/apt-get.cc:2491 cmdline/apt-get.cc:2803 +#: cmdline/apt-get.cc:2493 cmdline/apt-get.cc:2805 #, c-format msgid "Unable to find a source package for %s" msgstr "%s のソースパッケージが見つかりません" -#: cmdline/apt-get.cc:2508 +#: cmdline/apt-get.cc:2510 #, c-format msgid "" "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" @@ -869,7 +871,7 @@ msgstr "" "ます:\n" "%s\n" -#: cmdline/apt-get.cc:2513 +#: cmdline/apt-get.cc:2515 #, c-format msgid "" "Please use:\n" @@ -881,70 +883,70 @@ msgstr "" "bzr branch %s\n" "を使用してください。\n" -#: cmdline/apt-get.cc:2566 +#: cmdline/apt-get.cc:2568 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "すでにダウンロードされたファイル '%s' をスキップします\n" -#: cmdline/apt-get.cc:2603 +#: cmdline/apt-get.cc:2605 #, c-format msgid "You don't have enough free space in %s" msgstr "%s に充分な空きスペースがありません" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:2612 +#: cmdline/apt-get.cc:2614 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "%2$sB 中 %1$sB のソースアーカイブを取得する必要があります。\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:2617 +#: cmdline/apt-get.cc:2619 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "%sB のソースアーカイブを取得する必要があります。\n" -#: cmdline/apt-get.cc:2623 +#: cmdline/apt-get.cc:2625 #, c-format msgid "Fetch source %s\n" msgstr "ソース %s を取得\n" -#: cmdline/apt-get.cc:2661 +#: cmdline/apt-get.cc:2663 msgid "Failed to fetch some archives." msgstr "いくつかのアーカイブの取得に失敗しました。" -#: cmdline/apt-get.cc:2692 +#: cmdline/apt-get.cc:2694 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "すでに %s に展開されたソースがあるため、展開をスキップします\n" -#: cmdline/apt-get.cc:2704 +#: cmdline/apt-get.cc:2706 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "展開コマンド '%s' が失敗しました。\n" -#: cmdline/apt-get.cc:2705 +#: cmdline/apt-get.cc:2707 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "" "'dpkg-dev' パッケージがインストールされていることを確認してください。\n" -#: cmdline/apt-get.cc:2727 +#: cmdline/apt-get.cc:2729 #, c-format msgid "Build command '%s' failed.\n" msgstr "ビルドコマンド '%s' が失敗しました。\n" -#: cmdline/apt-get.cc:2747 +#: cmdline/apt-get.cc:2749 msgid "Child process failed" msgstr "子プロセスが失敗しました" -#: cmdline/apt-get.cc:2766 +#: cmdline/apt-get.cc:2768 msgid "Must specify at least one package to check builddeps for" msgstr "" "ビルド依存関係をチェックするパッケージを少なくとも 1 つ指定する必要があります" -#: cmdline/apt-get.cc:2791 +#: cmdline/apt-get.cc:2793 #, c-format msgid "" "No architecture information available for %s. See apt.conf(5) APT::" @@ -953,17 +955,17 @@ msgstr "" "%s に利用可能なアーキテクチャ情報がありません。セットアップのために apt.conf" "(5) の APT::Architectures を参照してください。" -#: cmdline/apt-get.cc:2815 cmdline/apt-get.cc:2818 +#: cmdline/apt-get.cc:2817 cmdline/apt-get.cc:2820 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "%s のビルド依存情報を取得できません" -#: cmdline/apt-get.cc:2838 +#: cmdline/apt-get.cc:2840 #, c-format msgid "%s has no build depends.\n" msgstr "%s にはビルド依存情報が指定されていません。\n" -#: cmdline/apt-get.cc:3008 +#: cmdline/apt-get.cc:3010 #, c-format msgid "" "%s dependency for %s can't be satisfied because %s is not allowed on '%s' " @@ -972,7 +974,7 @@ msgstr "" "パッケージ %3$s が '%4$s' パッケージで許されていないため、%2$s に対する %1$s " "の依存関係を満たすことができません" -#: cmdline/apt-get.cc:3026 +#: cmdline/apt-get.cc:3028 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -981,14 +983,14 @@ msgstr "" "パッケージ %3$s が見つからないため、%2$s に対する %1$s の依存関係を満たすこと" "ができません" -#: cmdline/apt-get.cc:3049 +#: cmdline/apt-get.cc:3051 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "%2$s の依存関係 %1$s を満たすことができません: インストールされた %3$s パッ" "ケージは新しすぎます" -#: cmdline/apt-get.cc:3088 +#: cmdline/apt-get.cc:3090 #, c-format msgid "" "%s dependency for %s cannot be satisfied because candidate version of " @@ -997,7 +999,7 @@ msgstr "" "パッケージ %3$s の候補バージョンはバージョンについての要求を満たせないた" "め、%2$s に対する %1$s の依存関係を満たすことができません" -#: cmdline/apt-get.cc:3094 +#: cmdline/apt-get.cc:3096 #, c-format msgid "" "%s dependency for %s cannot be satisfied because package %s has no candidate " @@ -1006,30 +1008,30 @@ msgstr "" "パッケージ %3$s の候補バージョンが存在しないため、%2$s に対する %1$s の依存関" "係を満たすことができません" -#: cmdline/apt-get.cc:3117 +#: cmdline/apt-get.cc:3119 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "%2$s の依存関係 %1$s を満たすことができません: %3$s" -#: cmdline/apt-get.cc:3133 +#: cmdline/apt-get.cc:3135 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "%s のビルド依存関係を満たすことができませんでした。" -#: cmdline/apt-get.cc:3138 +#: cmdline/apt-get.cc:3140 msgid "Failed to process build dependencies" msgstr "ビルド依存関係の処理に失敗しました" -#: cmdline/apt-get.cc:3231 cmdline/apt-get.cc:3243 +#: cmdline/apt-get.cc:3233 cmdline/apt-get.cc:3245 #, c-format msgid "Changelog for %s (%s)" msgstr "%s (%s) の変更履歴" -#: cmdline/apt-get.cc:3366 +#: cmdline/apt-get.cc:3368 msgid "Supported modules:" msgstr "サポートされているモジュール:" -#: cmdline/apt-get.cc:3407 +#: cmdline/apt-get.cc:3409 msgid "" "Usage: apt-get [options] command\n" " apt-get [options] install|remove pkg1 [pkg2 ...]\n" @@ -1121,7 +1123,7 @@ msgstr "" "apt-get(8)、sources.list(5)、apt.conf(5) を参照してください。\n" " この APT は Super Cow Powers 化されています。\n" -#: cmdline/apt-get.cc:3572 +#: cmdline/apt-get.cc:3574 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1734,7 +1736,7 @@ msgstr "" " -c=? 指定した設定ファイルを読み込む\n" " -o=? 指定した設定オプションを適用する (例: -o dir::cache=/tmp)\n" -#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1335 +#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1339 #, c-format msgid "Unable to write to %s" msgstr "%s に書き込めません" @@ -2779,7 +2781,7 @@ msgstr "ソースリスト %2$s の %1$u 行目が不正です (type)" msgid "Type '%s' is not known on line %u in source list %s" msgstr "ソースリスト %3$s の %2$u 行にあるタイプ '%1$s' は不明です" -#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:896 +#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:898 #, c-format msgid "" "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " @@ -2788,12 +2790,12 @@ msgstr "" "'%s' の即時設定は動作しません。詳細については man 5 apt.conf の APT::" "Immediate-Configure の項を参照してください。(%d)" -#: apt-pkg/packagemanager.cc:473 apt-pkg/packagemanager.cc:503 +#: apt-pkg/packagemanager.cc:473 apt-pkg/packagemanager.cc:504 #, c-format msgid "Could not configure '%s'. " msgstr "'%s' を設定できませんでした。" -#: apt-pkg/packagemanager.cc:545 +#: apt-pkg/packagemanager.cc:546 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2829,7 +2831,7 @@ msgstr "" msgid "Unable to correct problems, you have held broken packages." msgstr "問題を解決することができません。壊れた変更禁止パッケージがあります。" -#: apt-pkg/algorithms.cc:1574 apt-pkg/algorithms.cc:1576 +#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 msgid "" "Some index files failed to download. They have been ignored, or old ones " "used instead." @@ -2980,21 +2982,21 @@ msgstr "この APT が対応している以上の数の依存関係が発生し msgid "Package %s %s was not found while processing file dependencies" msgstr "パッケージ %s %s がファイル依存の処理中に見つかりませんでした" -#: apt-pkg/pkgcachegen.cc:1146 +#: apt-pkg/pkgcachegen.cc:1150 #, c-format msgid "Couldn't stat source package list %s" msgstr "ソースパッケージリスト %s の状態を取得できません" -#: apt-pkg/pkgcachegen.cc:1234 apt-pkg/pkgcachegen.cc:1338 -#: apt-pkg/pkgcachegen.cc:1344 apt-pkg/pkgcachegen.cc:1501 +#: apt-pkg/pkgcachegen.cc:1238 apt-pkg/pkgcachegen.cc:1342 +#: apt-pkg/pkgcachegen.cc:1348 apt-pkg/pkgcachegen.cc:1505 msgid "Reading package lists" msgstr "パッケージリストを読み込んでいます" -#: apt-pkg/pkgcachegen.cc:1251 +#: apt-pkg/pkgcachegen.cc:1255 msgid "Collecting File Provides" msgstr "ファイル提供情報を収集しています" -#: apt-pkg/pkgcachegen.cc:1443 apt-pkg/pkgcachegen.cc:1450 +#: apt-pkg/pkgcachegen.cc:1447 apt-pkg/pkgcachegen.cc:1454 msgid "IO Error saving source cache" msgstr "ソースキャッシュの保存中に IO エラーが発生しました" diff --git a/po/km.po b/po/km.po index 78ae4d462..578e246a7 100644 --- a/po/km.po +++ b/po/km.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: apt_po_km\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2012-10-15 09:49+0200\n" +"POT-Creation-Date: 2013-03-14 08:05+0100\n" "PO-Revision-Date: 2006-10-10 09:48+0700\n" "Last-Translator: Khoem Sokhem \n" "Language-Team: Khmer \n" @@ -160,7 +160,7 @@ msgid " Version table:" msgstr " តារាង​កំណែ ៖" #: cmdline/apt-cache.cc:1683 cmdline/apt-cdrom.cc:198 cmdline/apt-config.cc:81 -#: cmdline/apt-get.cc:3361 cmdline/apt-mark.cc:375 +#: cmdline/apt-get.cc:3363 cmdline/apt-mark.cc:375 #: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:590 #: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147 #, fuzzy, c-format @@ -488,7 +488,7 @@ msgstr "មិនអាចធ្វើការដំឡើង %s ឡើងវ msgid "%s is already the newest version.\n" msgstr "%s ជាកំណែ​ដែលថ្មីបំផុតរួចទៅហើយ ។\n" -#: cmdline/apt-get.cc:858 cmdline/apt-get.cc:2157 cmdline/apt-mark.cc:68 +#: cmdline/apt-get.cc:858 cmdline/apt-get.cc:2159 cmdline/apt-mark.cc:68 #, fuzzy, c-format msgid "%s set to manually installed.\n" msgstr "ប៉ុន្តែ​ %s នឹង​ត្រូវ​បាន​ដំឡើ​ង" @@ -595,8 +595,8 @@ msgstr "បន្ទាប់​ពី​ពន្លា​ %sB នៃ​កា msgid "After this operation, %sB disk space will be freed.\n" msgstr "បន្ទាប់​ពី​ពន្លា​ %sB ទំហំ​ថាសនឹង​​ទំនេរ ។ \n" -#: cmdline/apt-get.cc:1228 cmdline/apt-get.cc:1231 cmdline/apt-get.cc:2589 -#: cmdline/apt-get.cc:2592 +#: cmdline/apt-get.cc:1228 cmdline/apt-get.cc:1231 cmdline/apt-get.cc:2591 +#: cmdline/apt-get.cc:2594 #, c-format msgid "Couldn't determine free space in %s" msgstr "មិន​អាច​កំណត់​ទំហំ​ទំនេរ​ក្នុង​ %s បានឡើយ" @@ -606,15 +606,17 @@ msgstr "មិន​អាច​កំណត់​ទំហំ​ទំនេរ msgid "You don't have enough free space in %s." msgstr "អ្នក​គ្មាន​ទំហំ​​ទំនេរ​គ្រប់គ្រាន់​ក្នុង​​ %s ឡើយ ។" -#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1277 +#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1279 msgid "Trivial Only specified but this is not a trivial operation." msgstr "បានបញ្ជាក់​តែប្រតិបត្តិការដែលមិនសំខាន់ប៉ុណ្ណោះ ប៉ុន្តែ​នេះមិនមែនជាប្រតិបត្តិការមិនសំខាន់នោះទេ ។" -#: cmdline/apt-get.cc:1259 +#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be +#. careful with hard to type or special characters (like non-breaking spaces) +#: cmdline/apt-get.cc:1261 msgid "Yes, do as I say!" msgstr "បាទ/ចាស ធ្វើ​ដូច​ដែល​ខ្ញុំ​និយាយ !" -#: cmdline/apt-get.cc:1261 +#: cmdline/apt-get.cc:1263 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -625,28 +627,28 @@ msgstr "" "ដើម្បី​បន្ត ​​វាយ​ក្នុង​ឃ្លា​ '%s'\n" " ?] " -#: cmdline/apt-get.cc:1267 cmdline/apt-get.cc:1286 +#: cmdline/apt-get.cc:1269 cmdline/apt-get.cc:1288 msgid "Abort." msgstr "បោះបង់ ។" -#: cmdline/apt-get.cc:1282 +#: cmdline/apt-get.cc:1284 msgid "Do you want to continue [Y/n]? " msgstr "តើ​អ្នក​ចង់​បន្តឬ​ [បាទ ចាស/ទេ​] ? " -#: cmdline/apt-get.cc:1354 cmdline/apt-get.cc:2654 apt-pkg/algorithms.cc:1548 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 #, c-format msgid "Failed to fetch %s %s\n" msgstr "បរាជ័យ​ក្នុង​ការ​ទៅ​ប្រមូល​យក​ %s %s\n" -#: cmdline/apt-get.cc:1372 +#: cmdline/apt-get.cc:1374 msgid "Some files failed to download" msgstr "ឯកសារ​មួយ​ចំនួន​បាន​បរាជ័យ​ក្នុង​ការ​ទាញ​យក​" -#: cmdline/apt-get.cc:1373 cmdline/apt-get.cc:2666 +#: cmdline/apt-get.cc:1375 cmdline/apt-get.cc:2668 msgid "Download complete and in download only mode" msgstr "បានបញ្ចប់ការទាញ​យក​ ហើយ​តែ​ក្នុង​របៀប​​ទាញ​យក​ប៉ុណ្ណោះ" -#: cmdline/apt-get.cc:1379 +#: cmdline/apt-get.cc:1381 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -654,19 +656,19 @@ msgstr "" "អនុញ្ញាត​ឲ្យ​ទៅ​ប្រមូល​យក​ប័ណ្ណសារ​មួយ​ចំនួន​ ប្រហែល​ជា​រត់​ភាព​ទាន់​សម័យ apt-get ឬ ព្យាយាមប្រើ​ជាមួយ --" "fix- ដែលបាត់ឬ់ ?" -#: cmdline/apt-get.cc:1383 +#: cmdline/apt-get.cc:1385 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix- ដែលបាត់​ និង ​ស្វប​មេឌៀ​ដែល​មិនបាន​​គាំទ្រនៅពេល​បច្ចុប្បន្ន​" -#: cmdline/apt-get.cc:1388 +#: cmdline/apt-get.cc:1390 msgid "Unable to correct missing packages." msgstr "មិន​អាច​កែ​កញ្ចប់​ដែលបាត់បង់​បានឡើយ ។" -#: cmdline/apt-get.cc:1389 +#: cmdline/apt-get.cc:1391 msgid "Aborting install." msgstr "កំពុង​បោះបង់​ការ​ដំឡើង​ ។" -#: cmdline/apt-get.cc:1417 +#: cmdline/apt-get.cc:1419 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -676,35 +678,35 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: cmdline/apt-get.cc:1421 +#: cmdline/apt-get.cc:1423 msgid "Note: This is done automatically and on purpose by dpkg." msgstr "" -#: cmdline/apt-get.cc:1559 +#: cmdline/apt-get.cc:1561 #, c-format msgid "Ignore unavailable target release '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:1591 +#: cmdline/apt-get.cc:1593 #, fuzzy, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "មិនអាចថ្លែង បញ្ជី​កញ្ចប់​ប្រភពចប់​ បានឡើយ %s" #. if (VerTag.empty() == false && Last == 0) -#: cmdline/apt-get.cc:1629 +#: cmdline/apt-get.cc:1631 #, c-format msgid "Ignore unavailable version '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:1645 +#: cmdline/apt-get.cc:1647 msgid "The update command takes no arguments" msgstr "ពាក្យ​បញ្ជា​ដែលធ្វើ​ឲ្យ​ទាន់​សម័យ​គ្មាន​អាគុយម៉ង់​ទេ" -#: cmdline/apt-get.cc:1711 +#: cmdline/apt-get.cc:1713 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -#: cmdline/apt-get.cc:1815 +#: cmdline/apt-get.cc:1817 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -720,16 +722,16 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1818 cmdline/apt-get.cc:1987 +#: cmdline/apt-get.cc:1820 cmdline/apt-get.cc:1989 msgid "The following information may help to resolve the situation:" msgstr "ព័ត៌មាន​ដូចតទៅនេះ អាចជួយ​ដោះស្រាយ​ស្ថានភាព​បាន ៖" -#: cmdline/apt-get.cc:1822 +#: cmdline/apt-get.cc:1824 #, fuzzy msgid "Internal Error, AutoRemover broke stuff" msgstr "កំហុស​ខាងក្នុង អ្នក​ដោះស្រាយ​បញ្ហា​បានធ្វើឲ្យខូច​ឧបករណ៍" -#: cmdline/apt-get.cc:1829 +#: cmdline/apt-get.cc:1831 #, fuzzy msgid "" "The following package was automatically installed and is no longer required:" @@ -739,7 +741,7 @@ msgid_plural "" msgstr[0] "កញ្ចប់​ថ្មី​ខាងក្រោម​នឹង​ត្រូវ​បាន​ដំឡើង​ ៖" msgstr[1] "កញ្ចប់​ថ្មី​ខាងក្រោម​នឹង​ត្រូវ​បាន​ដំឡើង​ ៖" -#: cmdline/apt-get.cc:1833 +#: cmdline/apt-get.cc:1835 #, fuzzy, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -747,28 +749,28 @@ msgid_plural "" msgstr[0] "កញ្ចប់​ថ្មី​ខាងក្រោម​នឹង​ត្រូវ​បាន​ដំឡើង​ ៖" msgstr[1] "កញ្ចប់​ថ្មី​ខាងក្រោម​នឹង​ត្រូវ​បាន​ដំឡើង​ ៖" -#: cmdline/apt-get.cc:1835 +#: cmdline/apt-get.cc:1837 msgid "Use 'apt-get autoremove' to remove it." msgid_plural "Use 'apt-get autoremove' to remove them." msgstr[0] "" msgstr[1] "" -#: cmdline/apt-get.cc:1854 +#: cmdline/apt-get.cc:1856 msgid "Internal error, AllUpgrade broke stuff" msgstr "កំហុស​ខាងក្នុង ការធ្វើឲ្យប្រសើរ​ទាំងអស់បានធ្វើឲ្យ​ឧបករណ៍​ខូច" -#: cmdline/apt-get.cc:1953 +#: cmdline/apt-get.cc:1955 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "អ្នក​ប្រហែល​ជា​ចង់​រត់ 'apt-get -f install' ដើម្បី​កែ​ពួក​វា​ទាំង​នេះ ៖" -#: cmdline/apt-get.cc:1957 +#: cmdline/apt-get.cc:1959 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." msgstr "" "ភាពអស្រ័យ​ដែល​ខុស​គ្នា ។ ព្យាយាម​ 'apt-get -f install' ដោយ​គ្មាន​កញ្ចប់ (ឬ បញ្ជាក់​ដំណោះស្រាយ) ។" -#: cmdline/apt-get.cc:1972 +#: cmdline/apt-get.cc:1974 msgid "" "Some packages could not be installed. This may mean that you have\n" "requested an impossible situation or if you are using the unstable\n" @@ -780,85 +782,85 @@ msgstr "" "ដែលបាន​ទាមទារនឹងមិនទាន់បានបង្កើត​ឡើយ​\n" " ឬ ​បានយក​ចេញ​ពីការមកដល់ ។" -#: cmdline/apt-get.cc:1993 +#: cmdline/apt-get.cc:1995 msgid "Broken packages" msgstr "កញ្ចប់​ដែល​បាន​ខូច​" -#: cmdline/apt-get.cc:2019 +#: cmdline/apt-get.cc:2021 msgid "The following extra packages will be installed:" msgstr "កញ្ចប់​បន្ថែម​ដូចតទៅនេះ នឹងត្រូវបាន​ដំឡើង ៖" -#: cmdline/apt-get.cc:2109 +#: cmdline/apt-get.cc:2111 msgid "Suggested packages:" msgstr "កញ្ចប់​ដែល​បាន​ផ្ដល់​យោបល់ ៖" -#: cmdline/apt-get.cc:2110 +#: cmdline/apt-get.cc:2112 msgid "Recommended packages:" msgstr "កញ្ចប់​ដែល​បាន​ផ្ដល់​អនុសាសន៍ ៖" -#: cmdline/apt-get.cc:2152 +#: cmdline/apt-get.cc:2154 #, c-format msgid "Couldn't find package %s" msgstr "មិន​អាច​រក​កញ្ចប់ %s បានទេ" -#: cmdline/apt-get.cc:2159 cmdline/apt-mark.cc:70 +#: cmdline/apt-get.cc:2161 cmdline/apt-mark.cc:70 #, fuzzy, c-format msgid "%s set to automatically installed.\n" msgstr "ប៉ុន្តែ​ %s នឹង​ត្រូវ​បាន​ដំឡើ​ង" -#: cmdline/apt-get.cc:2167 cmdline/apt-mark.cc:114 +#: cmdline/apt-get.cc:2169 cmdline/apt-mark.cc:114 msgid "" "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " "instead." msgstr "" -#: cmdline/apt-get.cc:2183 +#: cmdline/apt-get.cc:2185 msgid "Calculating upgrade... " msgstr "កំពុង​គណនា​ការ​ធ្វើ​ឲ្យ​ប្រសើរ... " -#: cmdline/apt-get.cc:2186 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 msgid "Failed" msgstr "បាន​បរាជ័យ" -#: cmdline/apt-get.cc:2191 +#: cmdline/apt-get.cc:2193 msgid "Done" msgstr "ធ្វើរួច​" -#: cmdline/apt-get.cc:2258 cmdline/apt-get.cc:2266 +#: cmdline/apt-get.cc:2260 cmdline/apt-get.cc:2268 msgid "Internal error, problem resolver broke stuff" msgstr "កំហុស​ខាងក្នុង អ្នក​ដោះស្រាយ​បញ្ហា​បានធ្វើឲ្យខូច​ឧបករណ៍" -#: cmdline/apt-get.cc:2294 cmdline/apt-get.cc:2330 +#: cmdline/apt-get.cc:2296 cmdline/apt-get.cc:2332 msgid "Unable to lock the download directory" msgstr "មិន​អាច​ចាក់​សោ​ថត​ទាញ​យក​បាន​ឡើយ" -#: cmdline/apt-get.cc:2386 +#: cmdline/apt-get.cc:2388 #, c-format msgid "Can't find a source to download version '%s' of '%s'" msgstr "" -#: cmdline/apt-get.cc:2391 +#: cmdline/apt-get.cc:2393 #, c-format msgid "Downloading %s %s" msgstr "" -#: cmdline/apt-get.cc:2451 +#: cmdline/apt-get.cc:2453 msgid "Must specify at least one package to fetch source for" msgstr "យ៉ាងហោចណាស់​ត្រូវ​​បញ្ជាក់​​កញ្ចប់​មួយ ​ដើម្បី​ទៅ​​ប្រមូល​យក​ប្រភព​សម្រាប់" -#: cmdline/apt-get.cc:2491 cmdline/apt-get.cc:2803 +#: cmdline/apt-get.cc:2493 cmdline/apt-get.cc:2805 #, c-format msgid "Unable to find a source package for %s" msgstr "មិន​អាច​រក​កញ្ចប់ប្រភព​​សម្រាប់ %s បានឡើយ" -#: cmdline/apt-get.cc:2508 +#: cmdline/apt-get.cc:2510 #, c-format msgid "" "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" "%s\n" msgstr "" -#: cmdline/apt-get.cc:2513 +#: cmdline/apt-get.cc:2515 #, c-format msgid "" "Please use:\n" @@ -866,104 +868,104 @@ msgid "" "to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -#: cmdline/apt-get.cc:2566 +#: cmdline/apt-get.cc:2568 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "កំពុង​រំលង​ឯកសារ​ដែល​បាន​ទាញយក​រួច​ '%s'\n" -#: cmdline/apt-get.cc:2603 +#: cmdline/apt-get.cc:2605 #, c-format msgid "You don't have enough free space in %s" msgstr "អ្នក​ពុំ​មាន​ទំហំ​ទំនេរ​គ្រប់គ្រាន់​ទេ​នៅក្នុង​ %s ឡើយ" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:2612 +#: cmdline/apt-get.cc:2614 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "ត្រូវការ​យក​ %sB/%sB នៃ​ប័ណ្ណសារ​ប្រភព ។\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:2617 +#: cmdline/apt-get.cc:2619 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "ត្រូវការ​យក​ %sB នៃ​ប័ណ្ណសារ​ប្រភព​ ។\n" -#: cmdline/apt-get.cc:2623 +#: cmdline/apt-get.cc:2625 #, c-format msgid "Fetch source %s\n" msgstr "ទៅប្រមូល​ប្រភព​ %s\n" -#: cmdline/apt-get.cc:2661 +#: cmdline/apt-get.cc:2663 msgid "Failed to fetch some archives." msgstr "បរាជ័យ​ក្នុងការទៅប្រមូលយក​ប័ណ្ណសារ​មួយចំនួន ។" -#: cmdline/apt-get.cc:2692 +#: cmdline/apt-get.cc:2694 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "កំពុង​រំលង​ការស្រាយ​នៃប្រភព​ដែលបានស្រាយរួច​នៅក្នុង %s\n" -#: cmdline/apt-get.cc:2704 +#: cmdline/apt-get.cc:2706 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "ពាក្យ​បញ្ជា​ស្រាយ '%s' បាន​បរាជ័យ​ ។\n" -#: cmdline/apt-get.cc:2705 +#: cmdline/apt-get.cc:2707 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "ពិនិត្យ​ប្រសិន​បើកញ្ចប់ 'dpkg-dev' មិន​ទាន់​បាន​ដំឡើង​ ។\n" -#: cmdline/apt-get.cc:2727 +#: cmdline/apt-get.cc:2729 #, c-format msgid "Build command '%s' failed.\n" msgstr "សាងសង​ពាក្យ​បញ្ជា​ '%s' បានបរាជ័យ​ ។\n" -#: cmdline/apt-get.cc:2747 +#: cmdline/apt-get.cc:2749 msgid "Child process failed" msgstr "ដំណើរ​ការ​កូន​បាន​បរាជ័យ​" -#: cmdline/apt-get.cc:2766 +#: cmdline/apt-get.cc:2768 msgid "Must specify at least one package to check builddeps for" msgstr "ត្រូវតែ​បញ្ជាក់​យ៉ាងហោចណាស់​មួយកញ្ចប់ដើម្បីពិនិត្យ builddeps សម្រាប់" -#: cmdline/apt-get.cc:2791 +#: cmdline/apt-get.cc:2793 #, c-format msgid "" "No architecture information available for %s. See apt.conf(5) APT::" "Architectures for setup" msgstr "" -#: cmdline/apt-get.cc:2815 cmdline/apt-get.cc:2818 +#: cmdline/apt-get.cc:2817 cmdline/apt-get.cc:2820 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "មិន​អាច​សាងសង់​​ព័ត៌មាន​ភាពអស្រ័យ​សម្រាប់ %s" -#: cmdline/apt-get.cc:2838 +#: cmdline/apt-get.cc:2840 #, c-format msgid "%s has no build depends.\n" msgstr "%s មិនមានភាពអាស្រ័យ​ស្ថាបនាឡើយ​ ។\n" -#: cmdline/apt-get.cc:3008 +#: cmdline/apt-get.cc:3010 #, fuzzy, c-format msgid "" "%s dependency for %s can't be satisfied because %s is not allowed on '%s' " "packages" msgstr "%s ភាពអស្រ័យ​សម្រាប់​ %s មិន​អាច​ធ្វើ​ឲ្យ​ពេញចិត្ត​ ព្រោះ​រក​​ %s កញ្ចប់​មិន​ឃើញ​ " -#: cmdline/apt-get.cc:3026 +#: cmdline/apt-get.cc:3028 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " "found" msgstr "%s ភាពអស្រ័យ​សម្រាប់​ %s មិន​អាច​ធ្វើ​ឲ្យ​ពេញចិត្ត​ ព្រោះ​រក​​ %s កញ្ចប់​មិន​ឃើញ​ " -#: cmdline/apt-get.cc:3049 +#: cmdline/apt-get.cc:3051 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "បរាជ័យ​ក្នុងការ​តម្រូវចិត្តភាពអាស្រ័យ %s សម្រាប់ %s ៖ កញ្ចប់ %s ដែលបានដំឡើង គឺថ្មីពេក" -#: cmdline/apt-get.cc:3088 +#: cmdline/apt-get.cc:3090 #, fuzzy, c-format msgid "" "%s dependency for %s cannot be satisfied because candidate version of " @@ -972,37 +974,37 @@ msgstr "" "ភាពអាស្រ័យ %s សម្រាប់ %s មិនអាច​តម្រូវចិត្តបានទេ ព្រោះ មិនមាន​កំណែ​នៃកញ្ចប់ %s ដែលអាច​តម្រូវចិត្ត​" "តម្រូវការ​កំណែបានឡើយ" -#: cmdline/apt-get.cc:3094 +#: cmdline/apt-get.cc:3096 #, fuzzy, c-format msgid "" "%s dependency for %s cannot be satisfied because package %s has no candidate " "version" msgstr "%s ភាពអស្រ័យ​សម្រាប់​ %s មិន​អាច​ធ្វើ​ឲ្យ​ពេញចិត្ត​ ព្រោះ​រក​​ %s កញ្ចប់​មិន​ឃើញ​ " -#: cmdline/apt-get.cc:3117 +#: cmdline/apt-get.cc:3119 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "បរាជ័យ​ក្នុងការ​តម្រូវចិត្តភាពអាស្រ័យ %s សម្រាប់ %s: %s" -#: cmdline/apt-get.cc:3133 +#: cmdline/apt-get.cc:3135 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "ភាពអាស្រ័យ​ដែល​បង្កើត​ %s មិន​អាច​បំពេញ​សេចក្ដី​ត្រូវការ​បាន​ទេ ។" -#: cmdline/apt-get.cc:3138 +#: cmdline/apt-get.cc:3140 msgid "Failed to process build dependencies" msgstr "បាន​បរាជ័យ​ក្នុង​ការ​ដំណើរ​​ការ​បង្កើត​ភាព​អាស្រ័យ" -#: cmdline/apt-get.cc:3231 cmdline/apt-get.cc:3243 +#: cmdline/apt-get.cc:3233 cmdline/apt-get.cc:3245 #, fuzzy, c-format msgid "Changelog for %s (%s)" msgstr "កំពុង​តភ្ជាប់​ទៅ​កាន់​ %s (%s)" -#: cmdline/apt-get.cc:3366 +#: cmdline/apt-get.cc:3368 msgid "Supported modules:" msgstr "ម៉ូឌុល​ដែល​គាំទ្រ ៖ " -#: cmdline/apt-get.cc:3407 +#: cmdline/apt-get.cc:3409 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1087,7 +1089,7 @@ msgstr "" "pages for more information and options.\n" " This APT has Super Cow Powers.\n" -#: cmdline/apt-get.cc:3572 +#: cmdline/apt-get.cc:3574 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1673,7 +1675,7 @@ msgstr "" " -c=? អាន​ឯកសារ​ការ​កំណត់​រចនាស្ព័ន្ធ​នេះ\n" " -o=? កំណត់​ជម្រើស​ការ​កំណត់​រចនា​សម្ព័ន្ធ​តាម​ចិត្ត ឧ. eg -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1335 +#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1339 #, c-format msgid "Unable to write to %s" msgstr "មិន​អាច​សរសេរ​ទៅ %s" @@ -2709,19 +2711,19 @@ msgstr "បន្ទាត់​ Malformed %u ក្នុង​បញ្ជី msgid "Type '%s' is not known on line %u in source list %s" msgstr "ប្រភេទ​ '%s' មិន​ស្គាល់នៅលើបន្ទាត់​ %u ក្នុង​បញ្ជី​ប្រភព​ %s ឡើយ" -#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:896 +#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:898 #, c-format msgid "" "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " "under APT::Immediate-Configure for details. (%d)" msgstr "" -#: apt-pkg/packagemanager.cc:473 apt-pkg/packagemanager.cc:503 +#: apt-pkg/packagemanager.cc:473 apt-pkg/packagemanager.cc:504 #, fuzzy, c-format msgid "Could not configure '%s'. " msgstr "មិន​អាច​បើក​ឯកសារ​ %s បានឡើយ" -#: apt-pkg/packagemanager.cc:545 +#: apt-pkg/packagemanager.cc:546 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2755,7 +2757,7 @@ msgstr "" msgid "Unable to correct problems, you have held broken packages." msgstr "មិន​អាច​កែ​បញ្ហាបានទេេ អ្កបានទុក​កញ្ចប់​ដែល​ខូច ។។" -#: apt-pkg/algorithms.cc:1574 apt-pkg/algorithms.cc:1576 +#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 #, fuzzy msgid "" "Some index files failed to download. They have been ignored, or old ones " @@ -2897,21 +2899,21 @@ msgstr "អស្ចារ្យ​, អ្នក​មាន​ភាពអា msgid "Package %s %s was not found while processing file dependencies" msgstr "កញ្ចប់​ %s %s រក​មិន​ឃើញ​ខណៈ​ពេល​កំពុង​ដំណើរការ​ភាពអាស្រ័យ​​ឯកសារ" -#: apt-pkg/pkgcachegen.cc:1146 +#: apt-pkg/pkgcachegen.cc:1150 #, c-format msgid "Couldn't stat source package list %s" msgstr "មិនអាចថ្លែង បញ្ជី​កញ្ចប់​ប្រភពចប់​ បានឡើយ %s" -#: apt-pkg/pkgcachegen.cc:1234 apt-pkg/pkgcachegen.cc:1338 -#: apt-pkg/pkgcachegen.cc:1344 apt-pkg/pkgcachegen.cc:1501 +#: apt-pkg/pkgcachegen.cc:1238 apt-pkg/pkgcachegen.cc:1342 +#: apt-pkg/pkgcachegen.cc:1348 apt-pkg/pkgcachegen.cc:1505 msgid "Reading package lists" msgstr "កំពុង​អាន​បញ្ជី​កញ្ចប់" -#: apt-pkg/pkgcachegen.cc:1251 +#: apt-pkg/pkgcachegen.cc:1255 msgid "Collecting File Provides" msgstr "ការផ្ដល់​ឯកសារ​ប្រមូលផ្ដុំ" -#: apt-pkg/pkgcachegen.cc:1443 apt-pkg/pkgcachegen.cc:1450 +#: apt-pkg/pkgcachegen.cc:1447 apt-pkg/pkgcachegen.cc:1454 msgid "IO Error saving source cache" msgstr "IO កំហុសក្នុងការររក្សាទុក​ឃ្លាំង​សម្ងាត់​ប្រភព​" diff --git a/po/ko.po b/po/ko.po index 6d1527870..0c0b978d6 100644 --- a/po/ko.po +++ b/po/ko.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2012-10-15 09:49+0200\n" +"POT-Creation-Date: 2013-03-14 08:05+0100\n" "PO-Revision-Date: 2010-08-30 02:31+0900\n" "Last-Translator: Changwoo Ryu \n" "Language-Team: Korean \n" @@ -151,7 +151,7 @@ msgid " Version table:" msgstr " 버전 테이블:" #: cmdline/apt-cache.cc:1683 cmdline/apt-cdrom.cc:198 cmdline/apt-config.cc:81 -#: cmdline/apt-get.cc:3361 cmdline/apt-mark.cc:375 +#: cmdline/apt-get.cc:3363 cmdline/apt-mark.cc:375 #: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:590 #: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147 #, c-format @@ -479,7 +479,7 @@ msgstr "%s 패키지를 다시 설치하는 건 불가능합니다. 다운로드 msgid "%s is already the newest version.\n" msgstr "%s 패키지는 이미 최신 버전입니다.\n" -#: cmdline/apt-get.cc:858 cmdline/apt-get.cc:2157 cmdline/apt-mark.cc:68 +#: cmdline/apt-get.cc:858 cmdline/apt-get.cc:2159 cmdline/apt-mark.cc:68 #, c-format msgid "%s set to manually installed.\n" msgstr "%s 패키지 수동설치로 지정합니다.\n" @@ -589,8 +589,8 @@ msgstr "이 작업 후 %s바이트의 디스크 공간을 더 사용하게 됩 msgid "After this operation, %sB disk space will be freed.\n" msgstr "이 작업 후 %s바이트의 디스크 공간이 비워집니다.\n" -#: cmdline/apt-get.cc:1228 cmdline/apt-get.cc:1231 cmdline/apt-get.cc:2589 -#: cmdline/apt-get.cc:2592 +#: cmdline/apt-get.cc:1228 cmdline/apt-get.cc:1231 cmdline/apt-get.cc:2591 +#: cmdline/apt-get.cc:2594 #, c-format msgid "Couldn't determine free space in %s" msgstr "%s의 여유 공간의 크기를 파악할 수 없습니다" @@ -600,18 +600,20 @@ msgstr "%s의 여유 공간의 크기를 파악할 수 없습니다" msgid "You don't have enough free space in %s." msgstr "%s 안에 충분한 여유 공간이 없습니다." -#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1277 +#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1279 msgid "Trivial Only specified but this is not a trivial operation." msgstr "" "사소한 작업만 가능하도록(Trivial Only) 지정되었지만 이 작업은 사소한 작업이 " "아닙니다." # 입력을 받아야 한다. 한글 입력을 못 할 수 있으므로 원문 그대로 사용. -#: cmdline/apt-get.cc:1259 +#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be +#. careful with hard to type or special characters (like non-breaking spaces) +#: cmdline/apt-get.cc:1261 msgid "Yes, do as I say!" msgstr "Yes, do as I say!" -#: cmdline/apt-get.cc:1261 +#: cmdline/apt-get.cc:1263 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -622,28 +624,28 @@ msgstr "" "계속하시려면 다음 문구를 입력하십시오: '%s'\n" " ?] " -#: cmdline/apt-get.cc:1267 cmdline/apt-get.cc:1286 +#: cmdline/apt-get.cc:1269 cmdline/apt-get.cc:1288 msgid "Abort." msgstr "중단." -#: cmdline/apt-get.cc:1282 +#: cmdline/apt-get.cc:1284 msgid "Do you want to continue [Y/n]? " msgstr "계속 하시겠습니까 [Y/n]? " -#: cmdline/apt-get.cc:1354 cmdline/apt-get.cc:2654 apt-pkg/algorithms.cc:1548 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 #, c-format msgid "Failed to fetch %s %s\n" msgstr "%s 파일을 받는데 실패했습니다 %s\n" -#: cmdline/apt-get.cc:1372 +#: cmdline/apt-get.cc:1374 msgid "Some files failed to download" msgstr "일부 파일을 받는데 실패했습니다" -#: cmdline/apt-get.cc:1373 cmdline/apt-get.cc:2666 +#: cmdline/apt-get.cc:1375 cmdline/apt-get.cc:2668 msgid "Download complete and in download only mode" msgstr "다운로드를 마쳤고 다운로드 전용 모드입니다" -#: cmdline/apt-get.cc:1379 +#: cmdline/apt-get.cc:1381 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -651,19 +653,19 @@ msgstr "" "아카이브를 받을 수 없습니다. 아마도 apt-get update를 실행해야 하거나 --fix-" "missing 옵션을 줘서 실행해야 할 것입니다." -#: cmdline/apt-get.cc:1383 +#: cmdline/apt-get.cc:1385 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix-missing 옵션과 동시에 미디어 바꾸기는 현재 지원하지 않습니다" -#: cmdline/apt-get.cc:1388 +#: cmdline/apt-get.cc:1390 msgid "Unable to correct missing packages." msgstr "빠진 패키지를 바로잡을 수 없습니다." -#: cmdline/apt-get.cc:1389 +#: cmdline/apt-get.cc:1391 msgid "Aborting install." msgstr "설치를 중단합니다." -#: cmdline/apt-get.cc:1417 +#: cmdline/apt-get.cc:1419 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -674,35 +676,35 @@ msgstr[0] "" "다음 패키지는 패키지의 파일을 모두 다른 패키지가\n" "덮어썼기 때문에 사라졌습니다:" -#: cmdline/apt-get.cc:1421 +#: cmdline/apt-get.cc:1423 msgid "Note: This is done automatically and on purpose by dpkg." msgstr "주의: dpkg에서 자동으로 의도적으로 수행했습니다." -#: cmdline/apt-get.cc:1559 +#: cmdline/apt-get.cc:1561 #, c-format msgid "Ignore unavailable target release '%s' of package '%s'" msgstr "'%2$s' 패키지의 '%1$s' 대상 릴리스는 없으므로 무시합니다." -#: cmdline/apt-get.cc:1591 +#: cmdline/apt-get.cc:1593 #, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "소스 패키지로 '%s'을(를) '%s' 대신 선택합니다\n" #. if (VerTag.empty() == false && Last == 0) -#: cmdline/apt-get.cc:1629 +#: cmdline/apt-get.cc:1631 #, c-format msgid "Ignore unavailable version '%s' of package '%s'" msgstr "'%2$s' 패키지의 '%1$s' 버전은 없으므로 무시합니다." -#: cmdline/apt-get.cc:1645 +#: cmdline/apt-get.cc:1647 msgid "The update command takes no arguments" msgstr "update 명령은 인수를 받지 않습니다" -#: cmdline/apt-get.cc:1711 +#: cmdline/apt-get.cc:1713 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "삭제를 할 수 없으므로 AutoRemover를 실행하지 못합니다" -#: cmdline/apt-get.cc:1815 +#: cmdline/apt-get.cc:1817 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -720,15 +722,15 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1818 cmdline/apt-get.cc:1987 +#: cmdline/apt-get.cc:1820 cmdline/apt-get.cc:1989 msgid "The following information may help to resolve the situation:" msgstr "이 상황을 해결하는데 다음 정보가 도움이 될 수도 있습니다:" -#: cmdline/apt-get.cc:1822 +#: cmdline/apt-get.cc:1824 msgid "Internal Error, AutoRemover broke stuff" msgstr "내부 오류, 문제 해결 프로그램이 무언가를 망가뜨렸습니다" -#: cmdline/apt-get.cc:1829 +#: cmdline/apt-get.cc:1831 msgid "" "The following package was automatically installed and is no longer required:" msgid_plural "" @@ -736,29 +738,29 @@ msgid_plural "" "required:" msgstr[0] "다음 패키지가 자동으로 설치되었지만 더 이상 필요하지 않습니다:" -#: cmdline/apt-get.cc:1833 +#: cmdline/apt-get.cc:1835 #, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" "%lu packages were automatically installed and are no longer required.\n" msgstr[0] "패키지 %lu개가 자동으로 설치되었지만 더 이상 필요하지 않습니다.\n" -#: cmdline/apt-get.cc:1835 +#: cmdline/apt-get.cc:1837 #, fuzzy msgid "Use 'apt-get autoremove' to remove it." msgid_plural "Use 'apt-get autoremove' to remove them." msgstr[0] "이들을 지우려면 'apt-get autoremove'를 사용하십시오." -#: cmdline/apt-get.cc:1854 +#: cmdline/apt-get.cc:1856 msgid "Internal error, AllUpgrade broke stuff" msgstr "내부 오류, AllUpgrade 프로그램이 무언가를 망가뜨렸습니다" -#: cmdline/apt-get.cc:1953 +#: cmdline/apt-get.cc:1955 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "다음을 바로잡으려면 'apt-get -f install'을 실행해 보십시오:" # FIXME: specify a solution? 무슨 솔루션? -#: cmdline/apt-get.cc:1957 +#: cmdline/apt-get.cc:1959 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -766,7 +768,7 @@ msgstr "" "의존성이 맞지 않습니다. 패키지 없이 'apt-get -f install'을 시도해 보십시오 " "(아니면 해결 방법을 지정하십시오)." -#: cmdline/apt-get.cc:1972 +#: cmdline/apt-get.cc:1974 msgid "" "Some packages could not be installed. This may mean that you have\n" "requested an impossible situation or if you are using the unstable\n" @@ -777,78 +779,78 @@ msgstr "" "불안정 배포판을 사용해서 일부 필요한 패키지를 아직 만들지 않았거나,\n" "아직 Incoming에서 나오지 않은 경우일 수도 있습니다." -#: cmdline/apt-get.cc:1993 +#: cmdline/apt-get.cc:1995 msgid "Broken packages" msgstr "망가진 패키지" -#: cmdline/apt-get.cc:2019 +#: cmdline/apt-get.cc:2021 msgid "The following extra packages will be installed:" msgstr "다음 패키지를 더 설치할 것입니다:" -#: cmdline/apt-get.cc:2109 +#: cmdline/apt-get.cc:2111 msgid "Suggested packages:" msgstr "제안하는 패키지:" -#: cmdline/apt-get.cc:2110 +#: cmdline/apt-get.cc:2112 msgid "Recommended packages:" msgstr "추천하는 패키지:" -#: cmdline/apt-get.cc:2152 +#: cmdline/apt-get.cc:2154 #, c-format msgid "Couldn't find package %s" msgstr "%s 패키지를 찾을 수 없습니다" -#: cmdline/apt-get.cc:2159 cmdline/apt-mark.cc:70 +#: cmdline/apt-get.cc:2161 cmdline/apt-mark.cc:70 #, c-format msgid "%s set to automatically installed.\n" msgstr "%s 패키지는 수동설치로 지정합니다.\n" -#: cmdline/apt-get.cc:2167 cmdline/apt-mark.cc:114 +#: cmdline/apt-get.cc:2169 cmdline/apt-mark.cc:114 msgid "" "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " "instead." msgstr "" -#: cmdline/apt-get.cc:2183 +#: cmdline/apt-get.cc:2185 msgid "Calculating upgrade... " msgstr "업그레이드를 계산하는 중입니다... " -#: cmdline/apt-get.cc:2186 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 msgid "Failed" msgstr "실패" -#: cmdline/apt-get.cc:2191 +#: cmdline/apt-get.cc:2193 msgid "Done" msgstr "완료" -#: cmdline/apt-get.cc:2258 cmdline/apt-get.cc:2266 +#: cmdline/apt-get.cc:2260 cmdline/apt-get.cc:2268 msgid "Internal error, problem resolver broke stuff" msgstr "내부 오류, 문제 해결 프로그램이 무언가를 망가뜨렸습니다" -#: cmdline/apt-get.cc:2294 cmdline/apt-get.cc:2330 +#: cmdline/apt-get.cc:2296 cmdline/apt-get.cc:2332 msgid "Unable to lock the download directory" msgstr "다운로드 디렉터리를 잠글 수 없습니다" -#: cmdline/apt-get.cc:2386 +#: cmdline/apt-get.cc:2388 #, c-format msgid "Can't find a source to download version '%s' of '%s'" msgstr "" -#: cmdline/apt-get.cc:2391 +#: cmdline/apt-get.cc:2393 #, c-format msgid "Downloading %s %s" msgstr "" -#: cmdline/apt-get.cc:2451 +#: cmdline/apt-get.cc:2453 msgid "Must specify at least one package to fetch source for" msgstr "해당되는 소스 패키지를 가져올 패키지를 최소한 하나 지정해야 합니다" -#: cmdline/apt-get.cc:2491 cmdline/apt-get.cc:2803 +#: cmdline/apt-get.cc:2493 cmdline/apt-get.cc:2805 #, c-format msgid "Unable to find a source package for %s" msgstr "%s의 소스 패키지를 찾을 수 없습니다" -#: cmdline/apt-get.cc:2508 +#: cmdline/apt-get.cc:2510 #, c-format msgid "" "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" @@ -857,7 +859,7 @@ msgstr "" "알림: '%s' 패키징은 다음 '%s' 버전 컨트롤 시스템에서 관리합니다:\n" "%s\n" -#: cmdline/apt-get.cc:2513 +#: cmdline/apt-get.cc:2515 #, fuzzy, c-format msgid "" "Please use:\n" @@ -868,85 +870,85 @@ msgstr "" "다음과 같이 하십시오:\n" "bzr get %s\n" -#: cmdline/apt-get.cc:2566 +#: cmdline/apt-get.cc:2568 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "이미 다운로드 받은 파일 '%s'은(는) 다시 받지 않고 건너 뜁니다.\n" -#: cmdline/apt-get.cc:2603 +#: cmdline/apt-get.cc:2605 #, c-format msgid "You don't have enough free space in %s" msgstr "%s에 충분한 공간이 없습니다" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:2612 +#: cmdline/apt-get.cc:2614 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "소스 아카이브를 %s바이트/%s바이트 받아야 합니다.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:2617 +#: cmdline/apt-get.cc:2619 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "소스 아카이브를 %s바이트 받아야 합니다.\n" -#: cmdline/apt-get.cc:2623 +#: cmdline/apt-get.cc:2625 #, c-format msgid "Fetch source %s\n" msgstr "%s 소스를 가져옵니다\n" -#: cmdline/apt-get.cc:2661 +#: cmdline/apt-get.cc:2663 msgid "Failed to fetch some archives." msgstr "일부 아카이브를 가져오는데 실패했습니다." -#: cmdline/apt-get.cc:2692 +#: cmdline/apt-get.cc:2694 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "%s에 이미 풀려 있는 소스의 압축을 풀지 않고 건너 뜁니다.\n" -#: cmdline/apt-get.cc:2704 +#: cmdline/apt-get.cc:2706 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "압축 풀기 명령 '%s' 실패.\n" -#: cmdline/apt-get.cc:2705 +#: cmdline/apt-get.cc:2707 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "'dpkg-dev' 패키지가 설치되었는지를 확인하십시오.\n" -#: cmdline/apt-get.cc:2727 +#: cmdline/apt-get.cc:2729 #, c-format msgid "Build command '%s' failed.\n" msgstr "빌드 명령 '%s' 실패.\n" -#: cmdline/apt-get.cc:2747 +#: cmdline/apt-get.cc:2749 msgid "Child process failed" msgstr "하위 프로세스가 실패했습니다" -#: cmdline/apt-get.cc:2766 +#: cmdline/apt-get.cc:2768 msgid "Must specify at least one package to check builddeps for" msgstr "해당되는 빌드 의존성을 검사할 패키지를 최소한 하나 지정해야 합니다" -#: cmdline/apt-get.cc:2791 +#: cmdline/apt-get.cc:2793 #, c-format msgid "" "No architecture information available for %s. See apt.conf(5) APT::" "Architectures for setup" msgstr "" -#: cmdline/apt-get.cc:2815 cmdline/apt-get.cc:2818 +#: cmdline/apt-get.cc:2817 cmdline/apt-get.cc:2820 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "%s의 빌드 의존성 정보를 가져올 수 없습니다" -#: cmdline/apt-get.cc:2838 +#: cmdline/apt-get.cc:2840 #, c-format msgid "%s has no build depends.\n" msgstr "%s 패키지에 빌드 의존성이 없습니다.\n" -#: cmdline/apt-get.cc:3008 +#: cmdline/apt-get.cc:3010 #, fuzzy, c-format msgid "" "%s dependency for %s can't be satisfied because %s is not allowed on '%s' " @@ -955,7 +957,7 @@ msgstr "" "%2$s에 대한 %1$s 의존성을 만족시킬 수 없습니다. %3$s 패키지를 찾을 수 없습니" "다" -#: cmdline/apt-get.cc:3026 +#: cmdline/apt-get.cc:3028 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -964,14 +966,14 @@ msgstr "" "%2$s에 대한 %1$s 의존성을 만족시킬 수 없습니다. %3$s 패키지를 찾을 수 없습니" "다" -#: cmdline/apt-get.cc:3049 +#: cmdline/apt-get.cc:3051 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "%2$s에 대한 %1$s 의존성을 만족시키는데 실패했습니다: 설치한 %3$s 패키지가 너" "무 최근 버전입니다" -#: cmdline/apt-get.cc:3088 +#: cmdline/apt-get.cc:3090 #, fuzzy, c-format msgid "" "%s dependency for %s cannot be satisfied because candidate version of " @@ -980,7 +982,7 @@ msgstr "" "%2$s에 대한 %1$s 의존성을 만족시킬 수 없습니다. %3$s 패키지의 사용 가능한 버" "전 중에서는 이 버전 요구사항을 만족시킬 수 없습니다" -#: cmdline/apt-get.cc:3094 +#: cmdline/apt-get.cc:3096 #, fuzzy, c-format msgid "" "%s dependency for %s cannot be satisfied because package %s has no candidate " @@ -989,30 +991,30 @@ msgstr "" "%2$s에 대한 %1$s 의존성을 만족시킬 수 없습니다. %3$s 패키지를 찾을 수 없습니" "다" -#: cmdline/apt-get.cc:3117 +#: cmdline/apt-get.cc:3119 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "%2$s에 대한 %1$s 의존성을 만족시키는데 실패했습니다: %3$s" -#: cmdline/apt-get.cc:3133 +#: cmdline/apt-get.cc:3135 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "%s의 빌드 의존성을 만족시키지 못했습니다." -#: cmdline/apt-get.cc:3138 +#: cmdline/apt-get.cc:3140 msgid "Failed to process build dependencies" msgstr "빌드 의존성을 처리하는데 실패했습니다" -#: cmdline/apt-get.cc:3231 cmdline/apt-get.cc:3243 +#: cmdline/apt-get.cc:3233 cmdline/apt-get.cc:3245 #, fuzzy, c-format msgid "Changelog for %s (%s)" msgstr "%s(%s)에 연결하는 중입니다" -#: cmdline/apt-get.cc:3366 +#: cmdline/apt-get.cc:3368 msgid "Supported modules:" msgstr "지원하는 모듈:" -#: cmdline/apt-get.cc:3407 +#: cmdline/apt-get.cc:3409 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1100,7 +1102,7 @@ msgstr "" "apt.conf(5) 매뉴얼 페이지를 보십시오.\n" " 이 APT는 Super Cow Powers로 무장했습니다.\n" -#: cmdline/apt-get.cc:3572 +#: cmdline/apt-get.cc:3574 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1694,7 +1696,7 @@ msgstr "" " -c=? 설정 파일을 읽습니다\n" " -o=? 임의의 옵션을 설정합니다. 예를 들어 -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1335 +#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1339 #, c-format msgid "Unable to write to %s" msgstr "%s에 쓸 수 없습니다" @@ -2732,7 +2734,7 @@ msgstr "소스 리스트 %2$s의 %1$u번 줄이 잘못되었습니다 (타입)" msgid "Type '%s' is not known on line %u in source list %s" msgstr "소스 목록 %3$s의 %2$u번 줄의 '%1$s' 타입을 알 수 없습니다" -#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:896 +#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:898 #, c-format msgid "" "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " @@ -2741,12 +2743,12 @@ msgstr "" "'%s'에 대해 즉시 설정을 할 수 없습니다. 자세한 설명은 man 5 apt.conf 페이지에" "서 APT::Immediate-Configure 항목을 보십시오. (%d)" -#: apt-pkg/packagemanager.cc:473 apt-pkg/packagemanager.cc:503 +#: apt-pkg/packagemanager.cc:473 apt-pkg/packagemanager.cc:504 #, fuzzy, c-format msgid "Could not configure '%s'. " msgstr "'%s' 파일을 열 수 없습니다" -#: apt-pkg/packagemanager.cc:545 +#: apt-pkg/packagemanager.cc:546 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2781,7 +2783,7 @@ msgstr "" msgid "Unable to correct problems, you have held broken packages." msgstr "문제를 바로잡을 수 없습니다. 망가진 고정 패키지가 있습니다." -#: apt-pkg/algorithms.cc:1574 apt-pkg/algorithms.cc:1576 +#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 #, fuzzy msgid "" "Some index files failed to download. They have been ignored, or old ones " @@ -2924,21 +2926,21 @@ msgstr "우와, 이 APT가 처리할 수 있는 의존성 개수를 넘어갔습 msgid "Package %s %s was not found while processing file dependencies" msgstr "파일 의존성을 처리하는 데, %s %s 패키지가 없습니다" -#: apt-pkg/pkgcachegen.cc:1146 +#: apt-pkg/pkgcachegen.cc:1150 #, c-format msgid "Couldn't stat source package list %s" msgstr "소스 패키지 목록 %s의 정보를 읽을 수 없습니다" -#: apt-pkg/pkgcachegen.cc:1234 apt-pkg/pkgcachegen.cc:1338 -#: apt-pkg/pkgcachegen.cc:1344 apt-pkg/pkgcachegen.cc:1501 +#: apt-pkg/pkgcachegen.cc:1238 apt-pkg/pkgcachegen.cc:1342 +#: apt-pkg/pkgcachegen.cc:1348 apt-pkg/pkgcachegen.cc:1505 msgid "Reading package lists" msgstr "패키지 목록을 읽는 중입니다" -#: apt-pkg/pkgcachegen.cc:1251 +#: apt-pkg/pkgcachegen.cc:1255 msgid "Collecting File Provides" msgstr "파일에서 제공하는 것을 모으는 중입니다" -#: apt-pkg/pkgcachegen.cc:1443 apt-pkg/pkgcachegen.cc:1450 +#: apt-pkg/pkgcachegen.cc:1447 apt-pkg/pkgcachegen.cc:1454 msgid "IO Error saving source cache" msgstr "소스 캐시를 저장하는데 입출력 오류가 발생했습니다" diff --git a/po/ku.po b/po/ku.po index 6e14e08d6..befc58323 100644 --- a/po/ku.po +++ b/po/ku.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: apt-ku\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2012-10-15 09:49+0200\n" +"POT-Creation-Date: 2013-03-14 08:05+0100\n" "PO-Revision-Date: 2008-05-08 12:48+0200\n" "Last-Translator: Erdal Ronahi \n" "Language-Team: ku \n" @@ -159,7 +159,7 @@ msgid " Version table:" msgstr " Tabloya guhertoyan:" #: cmdline/apt-cache.cc:1683 cmdline/apt-cdrom.cc:198 cmdline/apt-config.cc:81 -#: cmdline/apt-get.cc:3361 cmdline/apt-mark.cc:375 +#: cmdline/apt-get.cc:3363 cmdline/apt-mark.cc:375 #: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:590 #: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147 #, fuzzy, c-format @@ -446,7 +446,7 @@ msgstr "" msgid "%s is already the newest version.\n" msgstr "%s jixwe guhertoya nûtirîn e.\n" -#: cmdline/apt-get.cc:858 cmdline/apt-get.cc:2157 cmdline/apt-mark.cc:68 +#: cmdline/apt-get.cc:858 cmdline/apt-get.cc:2159 cmdline/apt-mark.cc:68 #, fuzzy, c-format msgid "%s set to manually installed.\n" msgstr "lê %s dê were sazkirin" @@ -553,8 +553,8 @@ msgstr "" msgid "After this operation, %sB disk space will be freed.\n" msgstr "" -#: cmdline/apt-get.cc:1228 cmdline/apt-get.cc:1231 cmdline/apt-get.cc:2589 -#: cmdline/apt-get.cc:2592 +#: cmdline/apt-get.cc:1228 cmdline/apt-get.cc:1231 cmdline/apt-get.cc:2591 +#: cmdline/apt-get.cc:2594 #, c-format msgid "Couldn't determine free space in %s" msgstr "Nikarî cihê vala li %s tesbît bike" @@ -564,15 +564,17 @@ msgstr "Nikarî cihê vala li %s tesbît bike" msgid "You don't have enough free space in %s." msgstr "Cihê vala li %s têre nake." -#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1277 +#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1279 msgid "Trivial Only specified but this is not a trivial operation." msgstr "" -#: cmdline/apt-get.cc:1259 +#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be +#. careful with hard to type or special characters (like non-breaking spaces) +#: cmdline/apt-get.cc:1261 msgid "Yes, do as I say!" msgstr "Erê, wusa bike!" -#: cmdline/apt-get.cc:1261 +#: cmdline/apt-get.cc:1263 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -580,46 +582,46 @@ msgid "" " ?] " msgstr "" -#: cmdline/apt-get.cc:1267 cmdline/apt-get.cc:1286 +#: cmdline/apt-get.cc:1269 cmdline/apt-get.cc:1288 msgid "Abort." msgstr "Betal." -#: cmdline/apt-get.cc:1282 +#: cmdline/apt-get.cc:1284 msgid "Do you want to continue [Y/n]? " msgstr "Dixwazî bidomînî [E/n]?" -#: cmdline/apt-get.cc:1354 cmdline/apt-get.cc:2654 apt-pkg/algorithms.cc:1548 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Anîna %s %s biserneket\n" -#: cmdline/apt-get.cc:1372 +#: cmdline/apt-get.cc:1374 msgid "Some files failed to download" msgstr "Daxistina çend pelan biserneket" -#: cmdline/apt-get.cc:1373 cmdline/apt-get.cc:2666 +#: cmdline/apt-get.cc:1375 cmdline/apt-get.cc:2668 msgid "Download complete and in download only mode" msgstr "" -#: cmdline/apt-get.cc:1379 +#: cmdline/apt-get.cc:1381 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" msgstr "" -#: cmdline/apt-get.cc:1383 +#: cmdline/apt-get.cc:1385 msgid "--fix-missing and media swapping is not currently supported" msgstr "" -#: cmdline/apt-get.cc:1388 +#: cmdline/apt-get.cc:1390 msgid "Unable to correct missing packages." msgstr "" -#: cmdline/apt-get.cc:1389 +#: cmdline/apt-get.cc:1391 msgid "Aborting install." msgstr "Sazkirin tê betalkirin." -#: cmdline/apt-get.cc:1417 +#: cmdline/apt-get.cc:1419 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -629,35 +631,35 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: cmdline/apt-get.cc:1421 +#: cmdline/apt-get.cc:1423 msgid "Note: This is done automatically and on purpose by dpkg." msgstr "" -#: cmdline/apt-get.cc:1559 +#: cmdline/apt-get.cc:1561 #, c-format msgid "Ignore unavailable target release '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:1591 +#: cmdline/apt-get.cc:1593 #, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "" #. if (VerTag.empty() == false && Last == 0) -#: cmdline/apt-get.cc:1629 +#: cmdline/apt-get.cc:1631 #, c-format msgid "Ignore unavailable version '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:1645 +#: cmdline/apt-get.cc:1647 msgid "The update command takes no arguments" msgstr "" -#: cmdline/apt-get.cc:1711 +#: cmdline/apt-get.cc:1713 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -#: cmdline/apt-get.cc:1815 +#: cmdline/apt-get.cc:1817 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -673,15 +675,15 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1818 cmdline/apt-get.cc:1987 +#: cmdline/apt-get.cc:1820 cmdline/apt-get.cc:1989 msgid "The following information may help to resolve the situation:" msgstr "" -#: cmdline/apt-get.cc:1822 +#: cmdline/apt-get.cc:1824 msgid "Internal Error, AutoRemover broke stuff" msgstr "" -#: cmdline/apt-get.cc:1829 +#: cmdline/apt-get.cc:1831 #, fuzzy msgid "" "The following package was automatically installed and is no longer required:" @@ -691,7 +693,7 @@ msgid_plural "" msgstr[0] "Ev pakêtên NÛ dê werine sazkirin:" msgstr[1] "Ev pakêtên NÛ dê werine sazkirin:" -#: cmdline/apt-get.cc:1833 +#: cmdline/apt-get.cc:1835 #, fuzzy, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -699,27 +701,27 @@ msgid_plural "" msgstr[0] "Ev pakêtên NÛ dê werine sazkirin:" msgstr[1] "Ev pakêtên NÛ dê werine sazkirin:" -#: cmdline/apt-get.cc:1835 +#: cmdline/apt-get.cc:1837 msgid "Use 'apt-get autoremove' to remove it." msgid_plural "Use 'apt-get autoremove' to remove them." msgstr[0] "" msgstr[1] "" -#: cmdline/apt-get.cc:1854 +#: cmdline/apt-get.cc:1856 msgid "Internal error, AllUpgrade broke stuff" msgstr "" -#: cmdline/apt-get.cc:1953 +#: cmdline/apt-get.cc:1955 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "" -#: cmdline/apt-get.cc:1957 +#: cmdline/apt-get.cc:1959 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." msgstr "" -#: cmdline/apt-get.cc:1972 +#: cmdline/apt-get.cc:1974 msgid "" "Some packages could not be installed. This may mean that you have\n" "requested an impossible situation or if you are using the unstable\n" @@ -727,85 +729,85 @@ msgid "" "or been moved out of Incoming." msgstr "" -#: cmdline/apt-get.cc:1993 +#: cmdline/apt-get.cc:1995 msgid "Broken packages" msgstr "Paketên şikestî" -#: cmdline/apt-get.cc:2019 +#: cmdline/apt-get.cc:2021 msgid "The following extra packages will be installed:" msgstr "" -#: cmdline/apt-get.cc:2109 +#: cmdline/apt-get.cc:2111 msgid "Suggested packages:" msgstr "Paketên tên pêşniyaz kirin:" -#: cmdline/apt-get.cc:2110 +#: cmdline/apt-get.cc:2112 msgid "Recommended packages:" msgstr "Paketên tên tawsiyê kirin:" -#: cmdline/apt-get.cc:2152 +#: cmdline/apt-get.cc:2154 #, c-format msgid "Couldn't find package %s" msgstr "Nikarî pakêta %s bibîne" -#: cmdline/apt-get.cc:2159 cmdline/apt-mark.cc:70 +#: cmdline/apt-get.cc:2161 cmdline/apt-mark.cc:70 #, fuzzy, c-format msgid "%s set to automatically installed.\n" msgstr "lê %s dê were sazkirin" -#: cmdline/apt-get.cc:2167 cmdline/apt-mark.cc:114 +#: cmdline/apt-get.cc:2169 cmdline/apt-mark.cc:114 msgid "" "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " "instead." msgstr "" -#: cmdline/apt-get.cc:2183 +#: cmdline/apt-get.cc:2185 msgid "Calculating upgrade... " msgstr "Bilindkirin tê hesibandin..." -#: cmdline/apt-get.cc:2186 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 msgid "Failed" msgstr "Serneket" -#: cmdline/apt-get.cc:2191 +#: cmdline/apt-get.cc:2193 msgid "Done" msgstr "Temam" -#: cmdline/apt-get.cc:2258 cmdline/apt-get.cc:2266 +#: cmdline/apt-get.cc:2260 cmdline/apt-get.cc:2268 msgid "Internal error, problem resolver broke stuff" msgstr "" -#: cmdline/apt-get.cc:2294 cmdline/apt-get.cc:2330 +#: cmdline/apt-get.cc:2296 cmdline/apt-get.cc:2332 msgid "Unable to lock the download directory" msgstr "Pelrêça daxistinê nayê quflekirin" -#: cmdline/apt-get.cc:2386 +#: cmdline/apt-get.cc:2388 #, c-format msgid "Can't find a source to download version '%s' of '%s'" msgstr "" -#: cmdline/apt-get.cc:2391 +#: cmdline/apt-get.cc:2393 #, c-format msgid "Downloading %s %s" msgstr "" -#: cmdline/apt-get.cc:2451 +#: cmdline/apt-get.cc:2453 msgid "Must specify at least one package to fetch source for" msgstr "" -#: cmdline/apt-get.cc:2491 cmdline/apt-get.cc:2803 +#: cmdline/apt-get.cc:2493 cmdline/apt-get.cc:2805 #, c-format msgid "Unable to find a source package for %s" msgstr "" -#: cmdline/apt-get.cc:2508 +#: cmdline/apt-get.cc:2510 #, c-format msgid "" "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" "%s\n" msgstr "" -#: cmdline/apt-get.cc:2513 +#: cmdline/apt-get.cc:2515 #, c-format msgid "" "Please use:\n" @@ -813,141 +815,141 @@ msgid "" "to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -#: cmdline/apt-get.cc:2566 +#: cmdline/apt-get.cc:2568 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "" -#: cmdline/apt-get.cc:2603 +#: cmdline/apt-get.cc:2605 #, c-format msgid "You don't have enough free space in %s" msgstr "Cihê vala li %s têre nake" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:2612 +#: cmdline/apt-get.cc:2614 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:2617 +#: cmdline/apt-get.cc:2619 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "" -#: cmdline/apt-get.cc:2623 +#: cmdline/apt-get.cc:2625 #, c-format msgid "Fetch source %s\n" msgstr "Çavkanîna %s bîne\n" -#: cmdline/apt-get.cc:2661 +#: cmdline/apt-get.cc:2663 msgid "Failed to fetch some archives." msgstr "Anîna çend arşîvan biserneket." -#: cmdline/apt-get.cc:2692 +#: cmdline/apt-get.cc:2694 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "" -#: cmdline/apt-get.cc:2704 +#: cmdline/apt-get.cc:2706 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "" -#: cmdline/apt-get.cc:2705 +#: cmdline/apt-get.cc:2707 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "" -#: cmdline/apt-get.cc:2727 +#: cmdline/apt-get.cc:2729 #, c-format msgid "Build command '%s' failed.\n" msgstr "" -#: cmdline/apt-get.cc:2747 +#: cmdline/apt-get.cc:2749 msgid "Child process failed" msgstr "" -#: cmdline/apt-get.cc:2766 +#: cmdline/apt-get.cc:2768 msgid "Must specify at least one package to check builddeps for" msgstr "" -#: cmdline/apt-get.cc:2791 +#: cmdline/apt-get.cc:2793 #, c-format msgid "" "No architecture information available for %s. See apt.conf(5) APT::" "Architectures for setup" msgstr "" -#: cmdline/apt-get.cc:2815 cmdline/apt-get.cc:2818 +#: cmdline/apt-get.cc:2817 cmdline/apt-get.cc:2820 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "" -#: cmdline/apt-get.cc:2838 +#: cmdline/apt-get.cc:2840 #, c-format msgid "%s has no build depends.\n" msgstr "" -#: cmdline/apt-get.cc:3008 +#: cmdline/apt-get.cc:3010 #, c-format msgid "" "%s dependency for %s can't be satisfied because %s is not allowed on '%s' " "packages" msgstr "" -#: cmdline/apt-get.cc:3026 +#: cmdline/apt-get.cc:3028 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " "found" msgstr "" -#: cmdline/apt-get.cc:3049 +#: cmdline/apt-get.cc:3051 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" -#: cmdline/apt-get.cc:3088 +#: cmdline/apt-get.cc:3090 #, c-format msgid "" "%s dependency for %s cannot be satisfied because candidate version of " "package %s can't satisfy version requirements" msgstr "" -#: cmdline/apt-get.cc:3094 +#: cmdline/apt-get.cc:3096 #, c-format msgid "" "%s dependency for %s cannot be satisfied because package %s has no candidate " "version" msgstr "" -#: cmdline/apt-get.cc:3117 +#: cmdline/apt-get.cc:3119 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "" -#: cmdline/apt-get.cc:3133 +#: cmdline/apt-get.cc:3135 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "" -#: cmdline/apt-get.cc:3138 +#: cmdline/apt-get.cc:3140 msgid "Failed to process build dependencies" msgstr "" -#: cmdline/apt-get.cc:3231 cmdline/apt-get.cc:3243 +#: cmdline/apt-get.cc:3233 cmdline/apt-get.cc:3245 #, fuzzy, c-format msgid "Changelog for %s (%s)" msgstr "Girêdan bi %s (%s) re pêk tê" -#: cmdline/apt-get.cc:3366 +#: cmdline/apt-get.cc:3368 msgid "Supported modules:" msgstr "" -#: cmdline/apt-get.cc:3407 +#: cmdline/apt-get.cc:3409 msgid "" "Usage: apt-get [options] command\n" " apt-get [options] install|remove pkg1 [pkg2 ...]\n" @@ -993,7 +995,7 @@ msgid "" " This APT has Super Cow Powers.\n" msgstr "" -#: cmdline/apt-get.cc:3572 +#: cmdline/apt-get.cc:3574 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1564,7 +1566,7 @@ msgid "" " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" msgstr "" -#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1335 +#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1339 #, c-format msgid "Unable to write to %s" msgstr "Nivîsandin ji bo %s ne pêkane" @@ -2551,19 +2553,19 @@ msgstr "" msgid "Type '%s' is not known on line %u in source list %s" msgstr "" -#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:896 +#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:898 #, c-format msgid "" "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " "under APT::Immediate-Configure for details. (%d)" msgstr "" -#: apt-pkg/packagemanager.cc:473 apt-pkg/packagemanager.cc:503 +#: apt-pkg/packagemanager.cc:473 apt-pkg/packagemanager.cc:504 #, fuzzy, c-format msgid "Could not configure '%s'. " msgstr "Nikarî pelê %s veke" -#: apt-pkg/packagemanager.cc:545 +#: apt-pkg/packagemanager.cc:546 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2592,7 +2594,7 @@ msgstr "" msgid "Unable to correct problems, you have held broken packages." msgstr "" -#: apt-pkg/algorithms.cc:1574 apt-pkg/algorithms.cc:1576 +#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 msgid "" "Some index files failed to download. They have been ignored, or old ones " "used instead." @@ -2731,21 +2733,21 @@ msgstr "" msgid "Package %s %s was not found while processing file dependencies" msgstr "" -#: apt-pkg/pkgcachegen.cc:1146 +#: apt-pkg/pkgcachegen.cc:1150 #, c-format msgid "Couldn't stat source package list %s" msgstr "" -#: apt-pkg/pkgcachegen.cc:1234 apt-pkg/pkgcachegen.cc:1338 -#: apt-pkg/pkgcachegen.cc:1344 apt-pkg/pkgcachegen.cc:1501 +#: apt-pkg/pkgcachegen.cc:1238 apt-pkg/pkgcachegen.cc:1342 +#: apt-pkg/pkgcachegen.cc:1348 apt-pkg/pkgcachegen.cc:1505 msgid "Reading package lists" msgstr "Lîsteya pakêtan tê xwendin" -#: apt-pkg/pkgcachegen.cc:1251 +#: apt-pkg/pkgcachegen.cc:1255 msgid "Collecting File Provides" msgstr "" -#: apt-pkg/pkgcachegen.cc:1443 apt-pkg/pkgcachegen.cc:1450 +#: apt-pkg/pkgcachegen.cc:1447 apt-pkg/pkgcachegen.cc:1454 msgid "IO Error saving source cache" msgstr "" diff --git a/po/lt.po b/po/lt.po index 754d721d3..e159afa43 100644 --- a/po/lt.po +++ b/po/lt.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2012-10-15 09:49+0200\n" +"POT-Creation-Date: 2013-03-14 08:05+0100\n" "PO-Revision-Date: 2008-08-02 01:47-0400\n" "Last-Translator: Gintautas Miliauskas \n" "Language-Team: Lithuanian \n" @@ -157,7 +157,7 @@ msgid " Version table:" msgstr " Versijų lentelė:" #: cmdline/apt-cache.cc:1683 cmdline/apt-cdrom.cc:198 cmdline/apt-config.cc:81 -#: cmdline/apt-get.cc:3361 cmdline/apt-mark.cc:375 +#: cmdline/apt-get.cc:3363 cmdline/apt-mark.cc:375 #: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:590 #: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147 #, c-format @@ -450,7 +450,7 @@ msgstr "Pakartotinas %s įdiegimas neįmanomas, jo nepavyksta parsiųsti.\n" msgid "%s is already the newest version.\n" msgstr "%s ir taip jau yra naujausias.\n" -#: cmdline/apt-get.cc:858 cmdline/apt-get.cc:2157 cmdline/apt-mark.cc:68 +#: cmdline/apt-get.cc:858 cmdline/apt-get.cc:2159 cmdline/apt-mark.cc:68 #, c-format msgid "%s set to manually installed.\n" msgstr "%s nustatytas kaip įdiegtas rankiniu būdu\n" @@ -558,8 +558,8 @@ msgstr "Po šios operacijos bus naudojama %sB papildomos disko vietos.\n" msgid "After this operation, %sB disk space will be freed.\n" msgstr "Po šios operacijos bus atlaisvinta %sB disko vietos.\n" -#: cmdline/apt-get.cc:1228 cmdline/apt-get.cc:1231 cmdline/apt-get.cc:2589 -#: cmdline/apt-get.cc:2592 +#: cmdline/apt-get.cc:1228 cmdline/apt-get.cc:1231 cmdline/apt-get.cc:2591 +#: cmdline/apt-get.cc:2594 #, c-format msgid "Couldn't determine free space in %s" msgstr "Nepavyko nustatyti %s laisvos vietos" @@ -569,15 +569,17 @@ msgstr "Nepavyko nustatyti %s laisvos vietos" msgid "You don't have enough free space in %s." msgstr "%s nėra pakankamai laisvos vietos." -#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1277 +#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1279 msgid "Trivial Only specified but this is not a trivial operation." msgstr "" -#: cmdline/apt-get.cc:1259 +#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be +#. careful with hard to type or special characters (like non-breaking spaces) +#: cmdline/apt-get.cc:1261 msgid "Yes, do as I say!" msgstr "Taip, daryk kaip liepiu!" -#: cmdline/apt-get.cc:1261 +#: cmdline/apt-get.cc:1263 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -588,28 +590,28 @@ msgstr "" "Jei norite tęsti, įveskite frazę „%s“\n" " ?] " -#: cmdline/apt-get.cc:1267 cmdline/apt-get.cc:1286 +#: cmdline/apt-get.cc:1269 cmdline/apt-get.cc:1288 msgid "Abort." msgstr "Nutraukti." -#: cmdline/apt-get.cc:1282 +#: cmdline/apt-get.cc:1284 msgid "Do you want to continue [Y/n]? " msgstr "Ar norite tęsti [T/n]? " -#: cmdline/apt-get.cc:1354 cmdline/apt-get.cc:2654 apt-pkg/algorithms.cc:1548 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Nepavyko parsiųsti %s %s\n" -#: cmdline/apt-get.cc:1372 +#: cmdline/apt-get.cc:1374 msgid "Some files failed to download" msgstr "Nepavyko parsiųsti kai kurių failų" -#: cmdline/apt-get.cc:1373 cmdline/apt-get.cc:2666 +#: cmdline/apt-get.cc:1375 cmdline/apt-get.cc:2668 msgid "Download complete and in download only mode" msgstr "Pavyko parsiųsti tik parsiuntimo režime" -#: cmdline/apt-get.cc:1379 +#: cmdline/apt-get.cc:1381 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -617,19 +619,19 @@ msgstr "" "Nepavyko parsiųsti kai kurių archyvų, pabandykite paleisti „apt-get update“ " "arba pabandykite su parametru --fix-missing?" -#: cmdline/apt-get.cc:1383 +#: cmdline/apt-get.cc:1385 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix-missing bei laikmenų apkeitimas nepalaikomas" -#: cmdline/apt-get.cc:1388 +#: cmdline/apt-get.cc:1390 msgid "Unable to correct missing packages." msgstr "Nepavyko pataisyti dingusių paketų." -#: cmdline/apt-get.cc:1389 +#: cmdline/apt-get.cc:1391 msgid "Aborting install." msgstr "Diegimas nutraukiamas." -#: cmdline/apt-get.cc:1417 +#: cmdline/apt-get.cc:1419 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -639,35 +641,35 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: cmdline/apt-get.cc:1421 +#: cmdline/apt-get.cc:1423 msgid "Note: This is done automatically and on purpose by dpkg." msgstr "" -#: cmdline/apt-get.cc:1559 +#: cmdline/apt-get.cc:1561 #, c-format msgid "Ignore unavailable target release '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:1591 +#: cmdline/apt-get.cc:1593 #, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "" #. if (VerTag.empty() == false && Last == 0) -#: cmdline/apt-get.cc:1629 +#: cmdline/apt-get.cc:1631 #, c-format msgid "Ignore unavailable version '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:1645 +#: cmdline/apt-get.cc:1647 msgid "The update command takes no arguments" msgstr "Atnaujinimo komandai argumentų nereikia" -#: cmdline/apt-get.cc:1711 +#: cmdline/apt-get.cc:1713 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -#: cmdline/apt-get.cc:1815 +#: cmdline/apt-get.cc:1817 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -683,15 +685,15 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1818 cmdline/apt-get.cc:1987 +#: cmdline/apt-get.cc:1820 cmdline/apt-get.cc:1989 msgid "The following information may help to resolve the situation:" msgstr "Ši informacija gali padėti išspręsti šią situaciją:" -#: cmdline/apt-get.cc:1822 +#: cmdline/apt-get.cc:1824 msgid "Internal Error, AutoRemover broke stuff" msgstr "" -#: cmdline/apt-get.cc:1829 +#: cmdline/apt-get.cc:1831 #, fuzzy msgid "" "The following package was automatically installed and is no longer required:" @@ -701,7 +703,7 @@ msgid_plural "" msgstr[0] "Šie paketai buvo automatiškai įdiegti ir daugiau nebėra reikalingi:" msgstr[1] "Šie paketai buvo automatiškai įdiegti ir daugiau nebėra reikalingi:" -#: cmdline/apt-get.cc:1833 +#: cmdline/apt-get.cc:1835 #, fuzzy, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -709,22 +711,22 @@ msgid_plural "" msgstr[0] "Šie paketai buvo automatiškai įdiegti ir daugiau nebėra reikalingi:" msgstr[1] "Šie paketai buvo automatiškai įdiegti ir daugiau nebėra reikalingi:" -#: cmdline/apt-get.cc:1835 +#: cmdline/apt-get.cc:1837 #, fuzzy msgid "Use 'apt-get autoremove' to remove it." msgid_plural "Use 'apt-get autoremove' to remove them." msgstr[0] "Norėdami juos pašalinti, paleiskite „apt-get autoremove“" msgstr[1] "Norėdami juos pašalinti, paleiskite „apt-get autoremove“" -#: cmdline/apt-get.cc:1854 +#: cmdline/apt-get.cc:1856 msgid "Internal error, AllUpgrade broke stuff" msgstr "" -#: cmdline/apt-get.cc:1953 +#: cmdline/apt-get.cc:1955 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "Jūs galite norėti paleisti 'apt-get -f install\" klaidų taisymui:" -#: cmdline/apt-get.cc:1957 +#: cmdline/apt-get.cc:1959 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -732,7 +734,7 @@ msgstr "" "Nepatenkintos priklausomybės. Pabandykite įvykdyti 'apt-get -f install' be " "nurodytų paketų (arba nurodykite išeitį)." -#: cmdline/apt-get.cc:1972 +#: cmdline/apt-get.cc:1974 msgid "" "Some packages could not be installed. This may mean that you have\n" "requested an impossible situation or if you are using the unstable\n" @@ -744,85 +746,85 @@ msgstr "" "leidimą, kuomet kai kurie paketai dar nebuvo sukurti arba buvo\n" "pašalinti iš \"Incoming\" aplanko." -#: cmdline/apt-get.cc:1993 +#: cmdline/apt-get.cc:1995 msgid "Broken packages" msgstr "Sugadinti paketai" -#: cmdline/apt-get.cc:2019 +#: cmdline/apt-get.cc:2021 msgid "The following extra packages will be installed:" msgstr "Bus įdiegti šie papildomi paketai:" -#: cmdline/apt-get.cc:2109 +#: cmdline/apt-get.cc:2111 msgid "Suggested packages:" msgstr "Siūlomi paketai:" -#: cmdline/apt-get.cc:2110 +#: cmdline/apt-get.cc:2112 msgid "Recommended packages:" msgstr "Rekomenduojami paketai:" -#: cmdline/apt-get.cc:2152 +#: cmdline/apt-get.cc:2154 #, c-format msgid "Couldn't find package %s" msgstr "Nepavyko rasti paketo %s" -#: cmdline/apt-get.cc:2159 cmdline/apt-mark.cc:70 +#: cmdline/apt-get.cc:2161 cmdline/apt-mark.cc:70 #, fuzzy, c-format msgid "%s set to automatically installed.\n" msgstr "%s nustatytas kaip įdiegtas rankiniu būdu\n" -#: cmdline/apt-get.cc:2167 cmdline/apt-mark.cc:114 +#: cmdline/apt-get.cc:2169 cmdline/apt-mark.cc:114 msgid "" "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " "instead." msgstr "" -#: cmdline/apt-get.cc:2183 +#: cmdline/apt-get.cc:2185 msgid "Calculating upgrade... " msgstr "Skaičiuojami atnaujinimai... " -#: cmdline/apt-get.cc:2186 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 msgid "Failed" msgstr "Nepavyko" -#: cmdline/apt-get.cc:2191 +#: cmdline/apt-get.cc:2193 msgid "Done" msgstr "Įvykdyta" -#: cmdline/apt-get.cc:2258 cmdline/apt-get.cc:2266 +#: cmdline/apt-get.cc:2260 cmdline/apt-get.cc:2268 msgid "Internal error, problem resolver broke stuff" msgstr "Vidinė klaida, problemos sprendimas kažką sugadino" -#: cmdline/apt-get.cc:2294 cmdline/apt-get.cc:2330 +#: cmdline/apt-get.cc:2296 cmdline/apt-get.cc:2332 msgid "Unable to lock the download directory" msgstr "Nepavyko užrakinti parsiuntimų aplanko" -#: cmdline/apt-get.cc:2386 +#: cmdline/apt-get.cc:2388 #, c-format msgid "Can't find a source to download version '%s' of '%s'" msgstr "" -#: cmdline/apt-get.cc:2391 +#: cmdline/apt-get.cc:2393 #, c-format msgid "Downloading %s %s" msgstr "" -#: cmdline/apt-get.cc:2451 +#: cmdline/apt-get.cc:2453 msgid "Must specify at least one package to fetch source for" msgstr "Būtina nurodyti bent vieną paketą, kad parsiųsti jo išeities tekstą" -#: cmdline/apt-get.cc:2491 cmdline/apt-get.cc:2803 +#: cmdline/apt-get.cc:2493 cmdline/apt-get.cc:2805 #, c-format msgid "Unable to find a source package for %s" msgstr "Nepavyko surasti išeities teksto paketo, skirto %s" -#: cmdline/apt-get.cc:2508 +#: cmdline/apt-get.cc:2510 #, c-format msgid "" "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" "%s\n" msgstr "" -#: cmdline/apt-get.cc:2513 +#: cmdline/apt-get.cc:2515 #, c-format msgid "" "Please use:\n" @@ -830,85 +832,85 @@ msgid "" "to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -#: cmdline/apt-get.cc:2566 +#: cmdline/apt-get.cc:2568 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Praleidžiama jau parsiųsta byla „%s“\n" -#: cmdline/apt-get.cc:2603 +#: cmdline/apt-get.cc:2605 #, c-format msgid "You don't have enough free space in %s" msgstr "Neturite pakankamai laisvos vietos %s" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:2612 +#: cmdline/apt-get.cc:2614 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "Reikia parsiųsti %sB/%sB išeities archyvų.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:2617 +#: cmdline/apt-get.cc:2619 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Reikia parsiųsti %sB išeities archyvų.\n" -#: cmdline/apt-get.cc:2623 +#: cmdline/apt-get.cc:2625 #, c-format msgid "Fetch source %s\n" msgstr "Parsiunčiamas archyvas %s\n" -#: cmdline/apt-get.cc:2661 +#: cmdline/apt-get.cc:2663 msgid "Failed to fetch some archives." msgstr "Nepavyko gauti kai kurių arhcyvų." -#: cmdline/apt-get.cc:2692 +#: cmdline/apt-get.cc:2694 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "Jau išpakuotas archyvas %s praleidžiama\n" -#: cmdline/apt-get.cc:2704 +#: cmdline/apt-get.cc:2706 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Nepavyko įvykdyti išpakavimo komandos „%s“\n" -#: cmdline/apt-get.cc:2705 +#: cmdline/apt-get.cc:2707 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "Patikrinkite, ar įdiegtas „dpkg-dev“ paketas.\n" -#: cmdline/apt-get.cc:2727 +#: cmdline/apt-get.cc:2729 #, c-format msgid "Build command '%s' failed.\n" msgstr "Nepavyko įvykdyti paketo kompiliavimo komandos „%s“\n" -#: cmdline/apt-get.cc:2747 +#: cmdline/apt-get.cc:2749 msgid "Child process failed" msgstr "Klaida procese-palikuonyje" -#: cmdline/apt-get.cc:2766 +#: cmdline/apt-get.cc:2768 msgid "Must specify at least one package to check builddeps for" msgstr "Būtina nurodyti bent vieną paketą, kuriam norite įvykdyti builddeps" -#: cmdline/apt-get.cc:2791 +#: cmdline/apt-get.cc:2793 #, c-format msgid "" "No architecture information available for %s. See apt.conf(5) APT::" "Architectures for setup" msgstr "" -#: cmdline/apt-get.cc:2815 cmdline/apt-get.cc:2818 +#: cmdline/apt-get.cc:2817 cmdline/apt-get.cc:2820 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "Nepavyko gauti kūrimo-priklausomybių informacijos paketui %s" -#: cmdline/apt-get.cc:2838 +#: cmdline/apt-get.cc:2840 #, c-format msgid "%s has no build depends.\n" msgstr "" -#: cmdline/apt-get.cc:3008 +#: cmdline/apt-get.cc:3010 #, fuzzy, c-format msgid "" "%s dependency for %s can't be satisfied because %s is not allowed on '%s' " @@ -916,7 +918,7 @@ msgid "" msgstr "" "%s priklausomybė %s paketui negali būti patenkinama, nes paketas %s nerastas" -#: cmdline/apt-get.cc:3026 +#: cmdline/apt-get.cc:3028 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -924,14 +926,14 @@ msgid "" msgstr "" "%s priklausomybė %s paketui negali būti patenkinama, nes paketas %s nerastas" -#: cmdline/apt-get.cc:3049 +#: cmdline/apt-get.cc:3051 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "Nepavyko patenkinti %s priklausomybės %s paketui: Įdiegtas paketas %s yra " "per naujas" -#: cmdline/apt-get.cc:3088 +#: cmdline/apt-get.cc:3090 #, fuzzy, c-format msgid "" "%s dependency for %s cannot be satisfied because candidate version of " @@ -940,7 +942,7 @@ msgstr "" "%s priklausomybė %s paketui negali būti patenkinama, nes nėra tinkamos " "versijos %s paketo" -#: cmdline/apt-get.cc:3094 +#: cmdline/apt-get.cc:3096 #, fuzzy, c-format msgid "" "%s dependency for %s cannot be satisfied because package %s has no candidate " @@ -948,30 +950,30 @@ msgid "" msgstr "" "%s priklausomybė %s paketui negali būti patenkinama, nes paketas %s nerastas" -#: cmdline/apt-get.cc:3117 +#: cmdline/apt-get.cc:3119 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "Nepavyko patenkinti %s priklausomybės %s: %s" -#: cmdline/apt-get.cc:3133 +#: cmdline/apt-get.cc:3135 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "" -#: cmdline/apt-get.cc:3138 +#: cmdline/apt-get.cc:3140 msgid "Failed to process build dependencies" msgstr "" -#: cmdline/apt-get.cc:3231 cmdline/apt-get.cc:3243 +#: cmdline/apt-get.cc:3233 cmdline/apt-get.cc:3245 #, fuzzy, c-format msgid "Changelog for %s (%s)" msgstr "Jungiamasi prie %s (%s)" -#: cmdline/apt-get.cc:3366 +#: cmdline/apt-get.cc:3368 msgid "Supported modules:" msgstr "Palaikomi moduliai:" -#: cmdline/apt-get.cc:3407 +#: cmdline/apt-get.cc:3409 msgid "" "Usage: apt-get [options] command\n" " apt-get [options] install|remove pkg1 [pkg2 ...]\n" @@ -1017,7 +1019,7 @@ msgid "" " This APT has Super Cow Powers.\n" msgstr "" -#: cmdline/apt-get.cc:3572 +#: cmdline/apt-get.cc:3574 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1604,7 +1606,7 @@ msgstr "" " -c=? Nuskaityti šį konfigūracijų failą\n" " -o=? Nustatyti savarankiškas nuostatas, pvz.: -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1335 +#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1339 #, c-format msgid "Unable to write to %s" msgstr "Nepavyko įrašyti į %s" @@ -2645,19 +2647,19 @@ msgstr "" msgid "Type '%s' is not known on line %u in source list %s" msgstr "" -#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:896 +#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:898 #, c-format msgid "" "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " "under APT::Immediate-Configure for details. (%d)" msgstr "" -#: apt-pkg/packagemanager.cc:473 apt-pkg/packagemanager.cc:503 +#: apt-pkg/packagemanager.cc:473 apt-pkg/packagemanager.cc:504 #, fuzzy, c-format msgid "Could not configure '%s'. " msgstr "Nepavyko atverti failo %s" -#: apt-pkg/packagemanager.cc:545 +#: apt-pkg/packagemanager.cc:546 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2686,7 +2688,7 @@ msgstr "" msgid "Unable to correct problems, you have held broken packages." msgstr "" -#: apt-pkg/algorithms.cc:1574 apt-pkg/algorithms.cc:1576 +#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 #, fuzzy msgid "" "Some index files failed to download. They have been ignored, or old ones " @@ -2830,21 +2832,21 @@ msgstr "" msgid "Package %s %s was not found while processing file dependencies" msgstr "" -#: apt-pkg/pkgcachegen.cc:1146 +#: apt-pkg/pkgcachegen.cc:1150 #, c-format msgid "Couldn't stat source package list %s" msgstr "" -#: apt-pkg/pkgcachegen.cc:1234 apt-pkg/pkgcachegen.cc:1338 -#: apt-pkg/pkgcachegen.cc:1344 apt-pkg/pkgcachegen.cc:1501 +#: apt-pkg/pkgcachegen.cc:1238 apt-pkg/pkgcachegen.cc:1342 +#: apt-pkg/pkgcachegen.cc:1348 apt-pkg/pkgcachegen.cc:1505 msgid "Reading package lists" msgstr "Skaitomi paketų sąrašai" -#: apt-pkg/pkgcachegen.cc:1251 +#: apt-pkg/pkgcachegen.cc:1255 msgid "Collecting File Provides" msgstr "" -#: apt-pkg/pkgcachegen.cc:1443 apt-pkg/pkgcachegen.cc:1450 +#: apt-pkg/pkgcachegen.cc:1447 apt-pkg/pkgcachegen.cc:1454 msgid "IO Error saving source cache" msgstr "" diff --git a/po/mr.po b/po/mr.po index 524521952..1bedf2b34 100644 --- a/po/mr.po +++ b/po/mr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2012-10-15 09:49+0200\n" +"POT-Creation-Date: 2013-03-14 08:05+0100\n" "PO-Revision-Date: 2008-11-20 23:27+0530\n" "Last-Translator: Sampada \n" "Language-Team: Marathi, janabhaaratii, C-DAC, Mumbai, India " @@ -154,7 +154,7 @@ msgid " Version table:" msgstr "आवृत्ती कोष्टक:" #: cmdline/apt-cache.cc:1683 cmdline/apt-cdrom.cc:198 cmdline/apt-config.cc:81 -#: cmdline/apt-get.cc:3361 cmdline/apt-mark.cc:375 +#: cmdline/apt-get.cc:3363 cmdline/apt-mark.cc:375 #: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:590 #: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147 #, c-format @@ -482,7 +482,7 @@ msgstr "%s चे पुनर्संस्थापन शक्य नाह msgid "%s is already the newest version.\n" msgstr "%s ही आधीच नविन आवृत्ती आहे.\n" -#: cmdline/apt-get.cc:858 cmdline/apt-get.cc:2157 cmdline/apt-mark.cc:68 +#: cmdline/apt-get.cc:858 cmdline/apt-get.cc:2159 cmdline/apt-mark.cc:68 #, c-format msgid "%s set to manually installed.\n" msgstr "%s स्वहस्ते संस्थापित करायचे आहे.\n" @@ -589,8 +589,8 @@ msgstr "या क्रियेनंतर, %sB एवढी अधिक ड msgid "After this operation, %sB disk space will be freed.\n" msgstr "या क्रियेनंतर, %sB डिस्क जागा मोकळी होईल.\n" -#: cmdline/apt-get.cc:1228 cmdline/apt-get.cc:1231 cmdline/apt-get.cc:2589 -#: cmdline/apt-get.cc:2592 +#: cmdline/apt-get.cc:1228 cmdline/apt-get.cc:1231 cmdline/apt-get.cc:2591 +#: cmdline/apt-get.cc:2594 #, c-format msgid "Couldn't determine free space in %s" msgstr "%s मध्ये रिकामी जागा सांगू शकत नाही" @@ -600,15 +600,17 @@ msgstr "%s मध्ये रिकामी जागा सांगू श msgid "You don't have enough free space in %s." msgstr "%s मध्ये तुमच्याकडे पुरेशी जागा नाही." -#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1277 +#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1279 msgid "Trivial Only specified but this is not a trivial operation." msgstr "क्षुल्लक फक्त निर्देशित केले आहे पण हे क्षुल्लक कृति/ऑपरेशन नाही." -#: cmdline/apt-get.cc:1259 +#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be +#. careful with hard to type or special characters (like non-breaking spaces) +#: cmdline/apt-get.cc:1261 msgid "Yes, do as I say!" msgstr "हो, मी म्ह्टल्याप्रमाणे करा!" -#: cmdline/apt-get.cc:1261 +#: cmdline/apt-get.cc:1263 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -619,28 +621,28 @@ msgstr "" "पुढे '%s' उक्ती मध्ये लिहिणार \n" " ?] " -#: cmdline/apt-get.cc:1267 cmdline/apt-get.cc:1286 +#: cmdline/apt-get.cc:1269 cmdline/apt-get.cc:1288 msgid "Abort." msgstr "व्यत्यय/बंद करा." -#: cmdline/apt-get.cc:1282 +#: cmdline/apt-get.cc:1284 msgid "Do you want to continue [Y/n]? " msgstr "तुम्हाला पुढे जायचे आहे [Y/n]? " -#: cmdline/apt-get.cc:1354 cmdline/apt-get.cc:2654 apt-pkg/algorithms.cc:1548 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 #, c-format msgid "Failed to fetch %s %s\n" msgstr "%s %s आणणे असफल\n" -#: cmdline/apt-get.cc:1372 +#: cmdline/apt-get.cc:1374 msgid "Some files failed to download" msgstr "काही संचिका डाऊनलोड करण्यास असमर्थ" -#: cmdline/apt-get.cc:1373 cmdline/apt-get.cc:2666 +#: cmdline/apt-get.cc:1375 cmdline/apt-get.cc:2668 msgid "Download complete and in download only mode" msgstr "डाऊनलोड संपूर्ण आणि डाऊनलोड मध्ये फक्त पद्धती" -#: cmdline/apt-get.cc:1379 +#: cmdline/apt-get.cc:1381 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -648,20 +650,20 @@ msgstr "" "काही आर्काइव्हज आणण्यास असमर्थ, कदाचित apt-get रन करुन अद्ययावत करा किंवा --fix- " "बरोबर प्रयत्न कराहरवलेले/गहाळ?" -#: cmdline/apt-get.cc:1383 +#: cmdline/apt-get.cc:1385 msgid "--fix-missing and media swapping is not currently supported" msgstr "" "--fix- सापडत नाही आणि माध्यम/मिडिया अदलाबदल हे सध्या तांत्रिक मदत देऊ शकत नाही" -#: cmdline/apt-get.cc:1388 +#: cmdline/apt-get.cc:1390 msgid "Unable to correct missing packages." msgstr "न सापडणारी पॅकेजेस नीट करण्यास असमर्थ." -#: cmdline/apt-get.cc:1389 +#: cmdline/apt-get.cc:1391 msgid "Aborting install." msgstr "संस्थापन खंडित करत आहे." -#: cmdline/apt-get.cc:1417 +#: cmdline/apt-get.cc:1419 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -671,35 +673,35 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: cmdline/apt-get.cc:1421 +#: cmdline/apt-get.cc:1423 msgid "Note: This is done automatically and on purpose by dpkg." msgstr "" -#: cmdline/apt-get.cc:1559 +#: cmdline/apt-get.cc:1561 #, c-format msgid "Ignore unavailable target release '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:1591 +#: cmdline/apt-get.cc:1593 #, fuzzy, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "%s उगम पॅकेज यादी सुरू करता येत नाही" #. if (VerTag.empty() == false && Last == 0) -#: cmdline/apt-get.cc:1629 +#: cmdline/apt-get.cc:1631 #, c-format msgid "Ignore unavailable version '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:1645 +#: cmdline/apt-get.cc:1647 msgid "The update command takes no arguments" msgstr "सुधारित आवृत्तीचा विधान आर्ग्युमेंटस घेऊ शकत नाही." -#: cmdline/apt-get.cc:1711 +#: cmdline/apt-get.cc:1713 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "आपण या गोष्टी काढून टाकता नये, ऑटोरिमूव्हर सुरू करता येत नाही" -#: cmdline/apt-get.cc:1815 +#: cmdline/apt-get.cc:1817 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -717,15 +719,15 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1818 cmdline/apt-get.cc:1987 +#: cmdline/apt-get.cc:1820 cmdline/apt-get.cc:1989 msgid "The following information may help to resolve the situation:" msgstr "खालील माहिती परिस्थिती निवळण्यासाठी मदत ठरू शकेल:" -#: cmdline/apt-get.cc:1822 +#: cmdline/apt-get.cc:1824 msgid "Internal Error, AutoRemover broke stuff" msgstr "अंतर्गत त्रुटी, AutoRemoverने स्टफला तोडले" -#: cmdline/apt-get.cc:1829 +#: cmdline/apt-get.cc:1831 #, fuzzy msgid "" "The following package was automatically installed and is no longer required:" @@ -735,7 +737,7 @@ msgid_plural "" msgstr[0] "खालील नवीन पॅकेजेस स्वयंचलितपणे संस्थापित झाली होती व आता आवश्यक नाहीत:" msgstr[1] "खालील नवीन पॅकेजेस स्वयंचलितपणे संस्थापित झाली होती व आता आवश्यक नाहीत:" -#: cmdline/apt-get.cc:1833 +#: cmdline/apt-get.cc:1835 #, fuzzy, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -743,24 +745,24 @@ msgid_plural "" msgstr[0] "खालील नवीन पॅकेजेस स्वयंचलितपणे संस्थापित झाली होती व आता आवश्यक नाहीत:" msgstr[1] "खालील नवीन पॅकेजेस स्वयंचलितपणे संस्थापित झाली होती व आता आवश्यक नाहीत:" -#: cmdline/apt-get.cc:1835 +#: cmdline/apt-get.cc:1837 #, fuzzy msgid "Use 'apt-get autoremove' to remove it." msgid_plural "Use 'apt-get autoremove' to remove them." msgstr[0] "ती काढून टाकण्यासाठी 'apt-get autoremove' वापरा." msgstr[1] "ती काढून टाकण्यासाठी 'apt-get autoremove' वापरा." -#: cmdline/apt-get.cc:1854 +#: cmdline/apt-get.cc:1856 msgid "Internal error, AllUpgrade broke stuff" msgstr "अंतर्गत त्रुटी,ऑलअपग्रेडने स्टफला तोडले" -#: cmdline/apt-get.cc:1953 +#: cmdline/apt-get.cc:1955 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "" "तुम्हाला कदाचित 'apt-get -f install'(एपीटी-गेट -एफ संस्थापन') प्रोग्राम चालू करावा " "लागेल'यात बदल करण्यासाठी:" -#: cmdline/apt-get.cc:1957 +#: cmdline/apt-get.cc:1959 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -768,7 +770,7 @@ msgstr "" "अनमेट डिपेंडन्सीज.एपीटी-गेट -एफ संस्थापन ('apt-get -f install') पॅकेजशिवाय प्रयत्न करा " "(किंवा पर्याय सांगा)." -#: cmdline/apt-get.cc:1972 +#: cmdline/apt-get.cc:1974 msgid "" "Some packages could not be installed. This may mean that you have\n" "requested an impossible situation or if you are using the unstable\n" @@ -780,85 +782,85 @@ msgstr "" "विभागणी असणारी पण हवी असणारी, तयार केली नसलेली पॅकेजेस वापरत असाल \n" "किंवा ती येणाऱ्यांपैकी बाहेर हलविली असतील." -#: cmdline/apt-get.cc:1993 +#: cmdline/apt-get.cc:1995 msgid "Broken packages" msgstr "तुटलेली पॅकेजेस" -#: cmdline/apt-get.cc:2019 +#: cmdline/apt-get.cc:2021 msgid "The following extra packages will be installed:" msgstr "खालील अतिरिक्त पॅकेजेस संस्थापित होतील:" -#: cmdline/apt-get.cc:2109 +#: cmdline/apt-get.cc:2111 msgid "Suggested packages:" msgstr "सुचवलेली पॅकेजेस:" -#: cmdline/apt-get.cc:2110 +#: cmdline/apt-get.cc:2112 msgid "Recommended packages:" msgstr "शिफारस केलेली पॅकेजेस:" -#: cmdline/apt-get.cc:2152 +#: cmdline/apt-get.cc:2154 #, c-format msgid "Couldn't find package %s" msgstr "%s पॅकेज सापडू शकले नाही" -#: cmdline/apt-get.cc:2159 cmdline/apt-mark.cc:70 +#: cmdline/apt-get.cc:2161 cmdline/apt-mark.cc:70 #, fuzzy, c-format msgid "%s set to automatically installed.\n" msgstr "%s स्वहस्ते संस्थापित करायचे आहे.\n" -#: cmdline/apt-get.cc:2167 cmdline/apt-mark.cc:114 +#: cmdline/apt-get.cc:2169 cmdline/apt-mark.cc:114 msgid "" "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " "instead." msgstr "" -#: cmdline/apt-get.cc:2183 +#: cmdline/apt-get.cc:2185 msgid "Calculating upgrade... " msgstr "पुढिल आवृत्तीची गणती करीत आहे..." -#: cmdline/apt-get.cc:2186 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 msgid "Failed" msgstr "असमर्थ" -#: cmdline/apt-get.cc:2191 +#: cmdline/apt-get.cc:2193 msgid "Done" msgstr "झाले" -#: cmdline/apt-get.cc:2258 cmdline/apt-get.cc:2266 +#: cmdline/apt-get.cc:2260 cmdline/apt-get.cc:2268 msgid "Internal error, problem resolver broke stuff" msgstr "अंतर्गत त्रुटी, अडचण निवारकाने स्टफला तोडले" -#: cmdline/apt-get.cc:2294 cmdline/apt-get.cc:2330 +#: cmdline/apt-get.cc:2296 cmdline/apt-get.cc:2332 msgid "Unable to lock the download directory" msgstr "डाऊनलोड डिरेक्टरी कुलूपबंद करण्यास असमर्थ" -#: cmdline/apt-get.cc:2386 +#: cmdline/apt-get.cc:2388 #, c-format msgid "Can't find a source to download version '%s' of '%s'" msgstr "" -#: cmdline/apt-get.cc:2391 +#: cmdline/apt-get.cc:2393 #, c-format msgid "Downloading %s %s" msgstr "" -#: cmdline/apt-get.cc:2451 +#: cmdline/apt-get.cc:2453 msgid "Must specify at least one package to fetch source for" msgstr "उगम शोधण्यासाठी किमान एक पॅकेज देणे/सांगणे गरजेचे आहे" -#: cmdline/apt-get.cc:2491 cmdline/apt-get.cc:2803 +#: cmdline/apt-get.cc:2493 cmdline/apt-get.cc:2805 #, c-format msgid "Unable to find a source package for %s" msgstr "%s उगम पॅकेज शोधणे शक्य नाही/शोधण्यास असमर्थ आहे" -#: cmdline/apt-get.cc:2508 +#: cmdline/apt-get.cc:2510 #, c-format msgid "" "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" "%s\n" msgstr "" -#: cmdline/apt-get.cc:2513 +#: cmdline/apt-get.cc:2515 #, c-format msgid "" "Please use:\n" @@ -866,104 +868,104 @@ msgid "" "to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -#: cmdline/apt-get.cc:2566 +#: cmdline/apt-get.cc:2568 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "आधीच डाऊनलोड केलेली '%s' फाईल सोडून द्या\n" -#: cmdline/apt-get.cc:2603 +#: cmdline/apt-get.cc:2605 #, c-format msgid "You don't have enough free space in %s" msgstr "%s मध्ये पुरेशी जागा नाही" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:2612 +#: cmdline/apt-get.cc:2614 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "उगम अर्काईव्हज चा %sB/%sB घेण्याची गरज आहे.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:2617 +#: cmdline/apt-get.cc:2619 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "उगम अर्काईव्हजचा %sB घेण्याची गरज आहे.\n" -#: cmdline/apt-get.cc:2623 +#: cmdline/apt-get.cc:2625 #, c-format msgid "Fetch source %s\n" msgstr "%s उगम घ्या\n" -#: cmdline/apt-get.cc:2661 +#: cmdline/apt-get.cc:2663 msgid "Failed to fetch some archives." msgstr "काही अर्काईव्हज आणण्यास असमर्थ." -#: cmdline/apt-get.cc:2692 +#: cmdline/apt-get.cc:2694 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "%s मध्ये आधीच उघडलेल्या उगमातील उघडलेल्याला सोडून द्या किंवा वगळा\n" -#: cmdline/apt-get.cc:2704 +#: cmdline/apt-get.cc:2706 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "'%s' आज्ञा सुट्या करण्यास असमर्थ.\n" -#: cmdline/apt-get.cc:2705 +#: cmdline/apt-get.cc:2707 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "'dpkg-dev' पॅकेज संस्थापित केले आहे का ते पडताळून पहा.\n" -#: cmdline/apt-get.cc:2727 +#: cmdline/apt-get.cc:2729 #, c-format msgid "Build command '%s' failed.\n" msgstr "बांधणी करणाऱ्या आज्ञा '%s' अयशस्वी.\n" -#: cmdline/apt-get.cc:2747 +#: cmdline/apt-get.cc:2749 msgid "Child process failed" msgstr "चाईल्ड प्रक्रिया अयशस्वी" -#: cmdline/apt-get.cc:2766 +#: cmdline/apt-get.cc:2768 msgid "Must specify at least one package to check builddeps for" msgstr "बिल्डेपस् कशासाठी ते पडताळण्यासाठी किमान एक पॅकेज सांगणे गरजेचे आहे" -#: cmdline/apt-get.cc:2791 +#: cmdline/apt-get.cc:2793 #, c-format msgid "" "No architecture information available for %s. See apt.conf(5) APT::" "Architectures for setup" msgstr "" -#: cmdline/apt-get.cc:2815 cmdline/apt-get.cc:2818 +#: cmdline/apt-get.cc:2817 cmdline/apt-get.cc:2820 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "%s साठी बांधणी डिपेंडन्सी माहिती मिळवण्यास असमर्थ" -#: cmdline/apt-get.cc:2838 +#: cmdline/apt-get.cc:2840 #, c-format msgid "%s has no build depends.\n" msgstr "%s ला बांधणी डिपेंडन्स नाहीत.\n" -#: cmdline/apt-get.cc:3008 +#: cmdline/apt-get.cc:3010 #, fuzzy, c-format msgid "" "%s dependency for %s can't be satisfied because %s is not allowed on '%s' " "packages" msgstr "%s पॅकेज न सापडल्याने %s साठी %s डिपेंडन्सी पूर्ण होऊ शकत नाही" -#: cmdline/apt-get.cc:3026 +#: cmdline/apt-get.cc:3028 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " "found" msgstr "%s पॅकेज न सापडल्याने %s साठी %s डिपेंडन्सी पूर्ण होऊ शकत नाही" -#: cmdline/apt-get.cc:3049 +#: cmdline/apt-get.cc:3051 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "%s अवलंबित्व %s साठी पूर्ण होण्यास असमर्थ: संस्थापित पॅकेज %s खूपच नवीन आहे" -#: cmdline/apt-get.cc:3088 +#: cmdline/apt-get.cc:3090 #, fuzzy, c-format msgid "" "%s dependency for %s cannot be satisfied because candidate version of " @@ -972,37 +974,37 @@ msgstr "" "आवृतीची मागणी पूर्ण करण्यासाठी %s पॅकेजची आवृत्ती उपलब्ध नाही,त्यामुळे %s साठी %s " "डिपेंडन्सी पूर्ण होऊ शकत नाही" -#: cmdline/apt-get.cc:3094 +#: cmdline/apt-get.cc:3096 #, fuzzy, c-format msgid "" "%s dependency for %s cannot be satisfied because package %s has no candidate " "version" msgstr "%s पॅकेज न सापडल्याने %s साठी %s डिपेंडन्सी पूर्ण होऊ शकत नाही" -#: cmdline/apt-get.cc:3117 +#: cmdline/apt-get.cc:3119 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "%s साठी %s डिपेंडन्सी पूर्ण होण्यास असमर्थ: %s" -#: cmdline/apt-get.cc:3133 +#: cmdline/apt-get.cc:3135 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "%s साठी बांधणी-डिपेंडन्सीज पूर्ण होऊ शकत नाही." -#: cmdline/apt-get.cc:3138 +#: cmdline/apt-get.cc:3140 msgid "Failed to process build dependencies" msgstr "बांधणी-डिपेंडन्सीज क्रिया पूर्ण करण्यास असमर्थ " -#: cmdline/apt-get.cc:3231 cmdline/apt-get.cc:3243 +#: cmdline/apt-get.cc:3233 cmdline/apt-get.cc:3245 #, fuzzy, c-format msgid "Changelog for %s (%s)" msgstr "%s (%s) ला जोडत आहे" -#: cmdline/apt-get.cc:3366 +#: cmdline/apt-get.cc:3368 msgid "Supported modules:" msgstr "प्रोग्राम गटाला तांत्रिक मदत दिली:" -#: cmdline/apt-get.cc:3407 +#: cmdline/apt-get.cc:3409 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1089,7 +1091,7 @@ msgstr "" " apt.conf(5) पुस्तिका पाने पहा.\n" " ह्या APT ला सुपर काऊ पॉवर्स आहेत\n" -#: cmdline/apt-get.cc:3572 +#: cmdline/apt-get.cc:3574 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1678,7 +1680,7 @@ msgstr "" " -c=? ही संरचना संचिका वाचा \n" " -o=? एखादा अहेतुक संरचना पर्याय निर्धारित करा जसे- -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1335 +#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1339 #, c-format msgid "Unable to write to %s" msgstr "%s मध्ये लिहिण्यास असमर्थ " @@ -2713,19 +2715,19 @@ msgstr "स्त्रोत सुची %s (प्रकार) मध्य msgid "Type '%s' is not known on line %u in source list %s" msgstr "%s स्त्रोत सुचीमध्ये %u रेषेवर '%s' प्रकार माहित नाही " -#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:896 +#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:898 #, c-format msgid "" "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " "under APT::Immediate-Configure for details. (%d)" msgstr "" -#: apt-pkg/packagemanager.cc:473 apt-pkg/packagemanager.cc:503 +#: apt-pkg/packagemanager.cc:473 apt-pkg/packagemanager.cc:504 #, fuzzy, c-format msgid "Could not configure '%s'. " msgstr "%s फाईल उघडता येत नाही" -#: apt-pkg/packagemanager.cc:545 +#: apt-pkg/packagemanager.cc:546 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2760,7 +2762,7 @@ msgstr "" msgid "Unable to correct problems, you have held broken packages." msgstr "अडचणी दूर करण्यास असमर्थ, तुम्ही तुटलेले पॅकेज घेतलेले आहे." -#: apt-pkg/algorithms.cc:1574 apt-pkg/algorithms.cc:1576 +#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 #, fuzzy msgid "" "Some index files failed to download. They have been ignored, or old ones " @@ -2907,21 +2909,21 @@ msgstr "" msgid "Package %s %s was not found while processing file dependencies" msgstr "अवलंबित/विसंबून असणाऱ्या संचिकांची प्रक्रिया करीत असतांना पॅकेज %s %s सापडले नाही " -#: apt-pkg/pkgcachegen.cc:1146 +#: apt-pkg/pkgcachegen.cc:1150 #, c-format msgid "Couldn't stat source package list %s" msgstr "%s उगम पॅकेज यादी सुरू करता येत नाही" -#: apt-pkg/pkgcachegen.cc:1234 apt-pkg/pkgcachegen.cc:1338 -#: apt-pkg/pkgcachegen.cc:1344 apt-pkg/pkgcachegen.cc:1501 +#: apt-pkg/pkgcachegen.cc:1238 apt-pkg/pkgcachegen.cc:1342 +#: apt-pkg/pkgcachegen.cc:1348 apt-pkg/pkgcachegen.cc:1505 msgid "Reading package lists" msgstr "पॅकेज याद्या वाचत आहोत" -#: apt-pkg/pkgcachegen.cc:1251 +#: apt-pkg/pkgcachegen.cc:1255 msgid "Collecting File Provides" msgstr "तरतूद/पुरवलेल्या संचिका संग्रहित करीत आहे" -#: apt-pkg/pkgcachegen.cc:1443 apt-pkg/pkgcachegen.cc:1450 +#: apt-pkg/pkgcachegen.cc:1447 apt-pkg/pkgcachegen.cc:1454 msgid "IO Error saving source cache" msgstr "IO त्रुटी उगम निवडक संचयस्थानात संग्रहित होत आहे" diff --git a/po/nb.po b/po/nb.po index 51e5cf196..397e74536 100644 --- a/po/nb.po +++ b/po/nb.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2012-10-15 09:49+0200\n" +"POT-Creation-Date: 2013-03-14 08:05+0100\n" "PO-Revision-Date: 2010-09-01 21:10+0200\n" "Last-Translator: Hans Fredrik Nordhaug \n" "Language-Team: Norwegian Bokmål \n" @@ -159,7 +159,7 @@ msgid " Version table:" msgstr " Versjonstabell:" #: cmdline/apt-cache.cc:1683 cmdline/apt-cdrom.cc:198 cmdline/apt-config.cc:81 -#: cmdline/apt-get.cc:3361 cmdline/apt-mark.cc:375 +#: cmdline/apt-get.cc:3363 cmdline/apt-mark.cc:375 #: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:590 #: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147 #, c-format @@ -490,7 +490,7 @@ msgstr "Det er ikke mulig å installere %s på nytt - den kan ikke nedlastes.\n" msgid "%s is already the newest version.\n" msgstr "%s er allerede nyeste versjon.\n" -#: cmdline/apt-get.cc:858 cmdline/apt-get.cc:2157 cmdline/apt-mark.cc:68 +#: cmdline/apt-get.cc:858 cmdline/apt-get.cc:2159 cmdline/apt-mark.cc:68 #, c-format msgid "%s set to manually installed.\n" msgstr "%s satt til manuell installasjon.\n" @@ -599,8 +599,8 @@ msgstr "Etter denne operasjonen vil %sB ekstra diskplass bli brukt.\n" msgid "After this operation, %sB disk space will be freed.\n" msgstr "Etter denne operasjonen vil %sB diskplass bli ledig.\n" -#: cmdline/apt-get.cc:1228 cmdline/apt-get.cc:1231 cmdline/apt-get.cc:2589 -#: cmdline/apt-get.cc:2592 +#: cmdline/apt-get.cc:1228 cmdline/apt-get.cc:1231 cmdline/apt-get.cc:2591 +#: cmdline/apt-get.cc:2594 #, c-format msgid "Couldn't determine free space in %s" msgstr "Klarte ikke bestemme ledig plass i %s" @@ -610,16 +610,18 @@ msgstr "Klarte ikke bestemme ledig plass i %s" msgid "You don't have enough free space in %s." msgstr "Dessverre, ikke nok ledig plass i %s" -#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1277 +#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1279 msgid "Trivial Only specified but this is not a trivial operation." msgstr "" "«Bare trivielle endringer» ble angitt, men dette er ikke en triviell endring." -#: cmdline/apt-get.cc:1259 +#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be +#. careful with hard to type or special characters (like non-breaking spaces) +#: cmdline/apt-get.cc:1261 msgid "Yes, do as I say!" msgstr "Ja, gjør som jeg sier!" -#: cmdline/apt-get.cc:1261 +#: cmdline/apt-get.cc:1263 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -630,28 +632,28 @@ msgstr "" "For å fortsette skriv inn teksten «%s»\n" " ?] " -#: cmdline/apt-get.cc:1267 cmdline/apt-get.cc:1286 +#: cmdline/apt-get.cc:1269 cmdline/apt-get.cc:1288 msgid "Abort." msgstr "Avbryter." -#: cmdline/apt-get.cc:1282 +#: cmdline/apt-get.cc:1284 msgid "Do you want to continue [Y/n]? " msgstr "Vil du fortsette [Y/n]? " -#: cmdline/apt-get.cc:1354 cmdline/apt-get.cc:2654 apt-pkg/algorithms.cc:1548 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Klarte ikke å skaffe %s %s\n" -#: cmdline/apt-get.cc:1372 +#: cmdline/apt-get.cc:1374 msgid "Some files failed to download" msgstr "Klarte ikke laste ned alle filene" -#: cmdline/apt-get.cc:1373 cmdline/apt-get.cc:2666 +#: cmdline/apt-get.cc:1375 cmdline/apt-get.cc:2668 msgid "Download complete and in download only mode" msgstr "Nedlasting fullført med innstillinga «bare nedlasting»" -#: cmdline/apt-get.cc:1379 +#: cmdline/apt-get.cc:1381 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -659,19 +661,19 @@ msgstr "" "Klarte ikke å hente alle arkivene. Du kan prøve med «apt-get update» eller " "«--fix-missing»." -#: cmdline/apt-get.cc:1383 +#: cmdline/apt-get.cc:1385 msgid "--fix-missing and media swapping is not currently supported" msgstr "«--fix-missing» og bytte av media støttes nå ikke" -#: cmdline/apt-get.cc:1388 +#: cmdline/apt-get.cc:1390 msgid "Unable to correct missing packages." msgstr "Klarer ikke å rette på manglende pakker." -#: cmdline/apt-get.cc:1389 +#: cmdline/apt-get.cc:1391 msgid "Aborting install." msgstr "Avbryter installasjonen." -#: cmdline/apt-get.cc:1417 +#: cmdline/apt-get.cc:1419 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -685,35 +687,35 @@ msgstr[1] "" "De følgende pakkene forsvant fra systemet ditt siden\n" "alle filene er overskrevet av andre pakker:" -#: cmdline/apt-get.cc:1421 +#: cmdline/apt-get.cc:1423 msgid "Note: This is done automatically and on purpose by dpkg." msgstr "Merk: Dette er gjort automatisk og med hensikt av dpkg." -#: cmdline/apt-get.cc:1559 +#: cmdline/apt-get.cc:1561 #, c-format msgid "Ignore unavailable target release '%s' of package '%s'" msgstr "Ignorer utilgjengelig målutgave «%s» av pakke «%s»" -#: cmdline/apt-get.cc:1591 +#: cmdline/apt-get.cc:1593 #, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "Velger «%s» som kildepakke istedenfor «%s»\n" #. if (VerTag.empty() == false && Last == 0) -#: cmdline/apt-get.cc:1629 +#: cmdline/apt-get.cc:1631 #, c-format msgid "Ignore unavailable version '%s' of package '%s'" msgstr "Ignorer utilgjengelig versjon «%s» av pakke «%s»" -#: cmdline/apt-get.cc:1645 +#: cmdline/apt-get.cc:1647 msgid "The update command takes no arguments" msgstr "Oppdaterings-kommandoen tar ingen argumenter" -#: cmdline/apt-get.cc:1711 +#: cmdline/apt-get.cc:1713 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "Vi skal ikke slette ting, kan ikke starte auto-fjerner (AutoRemover)" -#: cmdline/apt-get.cc:1815 +#: cmdline/apt-get.cc:1817 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -731,15 +733,15 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1818 cmdline/apt-get.cc:1987 +#: cmdline/apt-get.cc:1820 cmdline/apt-get.cc:1989 msgid "The following information may help to resolve the situation:" msgstr "Følgende informasjon kan være til hjelp med å løse problemet:" -#: cmdline/apt-get.cc:1822 +#: cmdline/apt-get.cc:1824 msgid "Internal Error, AutoRemover broke stuff" msgstr "Intern feil, autofjerneren (AutoRemover) ødela noe" -#: cmdline/apt-get.cc:1829 +#: cmdline/apt-get.cc:1831 msgid "" "The following package was automatically installed and is no longer required:" msgid_plural "" @@ -750,7 +752,7 @@ msgstr[0] "" msgstr[1] "" "Følgende pakker ble automatisk installert og er ikke lenger påkrevet:" -#: cmdline/apt-get.cc:1833 +#: cmdline/apt-get.cc:1835 #, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -758,22 +760,22 @@ msgid_plural "" msgstr[0] "%lu pakke ble automatisk installert og er ikke lenger påkrevet.\n" msgstr[1] "%lu pakker ble automatisk installert og er ikke lenger påkrevet.\n" -#: cmdline/apt-get.cc:1835 +#: cmdline/apt-get.cc:1837 #, fuzzy msgid "Use 'apt-get autoremove' to remove it." msgid_plural "Use 'apt-get autoremove' to remove them." msgstr[0] "Bruk «apt-get autoremove» for å fjerne dem." msgstr[1] "Bruk «apt-get autoremove» for å fjerne dem." -#: cmdline/apt-get.cc:1854 +#: cmdline/apt-get.cc:1856 msgid "Internal error, AllUpgrade broke stuff" msgstr "Intern feil - «AllUpgrade» ødela noe" -#: cmdline/apt-get.cc:1953 +#: cmdline/apt-get.cc:1955 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "Du vil kanskje utføre «apt-get -f install» for å rette på disse:" -#: cmdline/apt-get.cc:1957 +#: cmdline/apt-get.cc:1959 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -781,7 +783,7 @@ msgstr "" "Uinnfridde avhengighetsforhold. Prøv «apt-get -f install» uten pakker (eller " "angi en løsning)." -#: cmdline/apt-get.cc:1972 +#: cmdline/apt-get.cc:1974 msgid "" "Some packages could not be installed. This may mean that you have\n" "requested an impossible situation or if you are using the unstable\n" @@ -793,78 +795,78 @@ msgstr "" "at visse kjernepakker ennå ikke er laget eller flyttet ut av «Incoming» for\n" "distribusjonen." -#: cmdline/apt-get.cc:1993 +#: cmdline/apt-get.cc:1995 msgid "Broken packages" msgstr "Ødelagte pakker" -#: cmdline/apt-get.cc:2019 +#: cmdline/apt-get.cc:2021 msgid "The following extra packages will be installed:" msgstr "Følgende ekstra pakker vil bli installert." -#: cmdline/apt-get.cc:2109 +#: cmdline/apt-get.cc:2111 msgid "Suggested packages:" msgstr "Foreslåtte pakker:" -#: cmdline/apt-get.cc:2110 +#: cmdline/apt-get.cc:2112 msgid "Recommended packages:" msgstr "Anbefalte pakker" -#: cmdline/apt-get.cc:2152 +#: cmdline/apt-get.cc:2154 #, c-format msgid "Couldn't find package %s" msgstr "Klarte ikke å finne pakken %s" -#: cmdline/apt-get.cc:2159 cmdline/apt-mark.cc:70 +#: cmdline/apt-get.cc:2161 cmdline/apt-mark.cc:70 #, c-format msgid "%s set to automatically installed.\n" msgstr "%s satt til automatisk installasjon.\n" -#: cmdline/apt-get.cc:2167 cmdline/apt-mark.cc:114 +#: cmdline/apt-get.cc:2169 cmdline/apt-mark.cc:114 msgid "" "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " "instead." msgstr "" -#: cmdline/apt-get.cc:2183 +#: cmdline/apt-get.cc:2185 msgid "Calculating upgrade... " msgstr "Beregner oppgradering... " -#: cmdline/apt-get.cc:2186 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 msgid "Failed" msgstr "Mislyktes" -#: cmdline/apt-get.cc:2191 +#: cmdline/apt-get.cc:2193 msgid "Done" msgstr "Utført" -#: cmdline/apt-get.cc:2258 cmdline/apt-get.cc:2266 +#: cmdline/apt-get.cc:2260 cmdline/apt-get.cc:2268 msgid "Internal error, problem resolver broke stuff" msgstr "Intern feil, problemløser ødela noe" -#: cmdline/apt-get.cc:2294 cmdline/apt-get.cc:2330 +#: cmdline/apt-get.cc:2296 cmdline/apt-get.cc:2332 msgid "Unable to lock the download directory" msgstr "Klarer ikke å låse nedlastingsmappa" -#: cmdline/apt-get.cc:2386 +#: cmdline/apt-get.cc:2388 #, c-format msgid "Can't find a source to download version '%s' of '%s'" msgstr "" -#: cmdline/apt-get.cc:2391 +#: cmdline/apt-get.cc:2393 #, c-format msgid "Downloading %s %s" msgstr "" -#: cmdline/apt-get.cc:2451 +#: cmdline/apt-get.cc:2453 msgid "Must specify at least one package to fetch source for" msgstr "Du må angi minst en pakke du vil ha kildekoden til" -#: cmdline/apt-get.cc:2491 cmdline/apt-get.cc:2803 +#: cmdline/apt-get.cc:2493 cmdline/apt-get.cc:2805 #, c-format msgid "Unable to find a source package for %s" msgstr "Klarer ikke å finne en kildekodepakke for %s" -#: cmdline/apt-get.cc:2508 +#: cmdline/apt-get.cc:2510 #, c-format msgid "" "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" @@ -873,7 +875,7 @@ msgstr "" "MERK: «%s»-pakker blir vedlikeholdt i versjonskontrollsystemet «%s» på:\n" "%s\n" -#: cmdline/apt-get.cc:2513 +#: cmdline/apt-get.cc:2515 #, fuzzy, c-format msgid "" "Please use:\n" @@ -884,106 +886,106 @@ msgstr "" "bzr get %s\n" "for å hente siste (muligens ikke utgitte) oppdateringer for pakken.\n" -#: cmdline/apt-get.cc:2566 +#: cmdline/apt-get.cc:2568 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Hopper over allerede nedlastet fil «%s»\n" -#: cmdline/apt-get.cc:2603 +#: cmdline/apt-get.cc:2605 #, c-format msgid "You don't have enough free space in %s" msgstr "Du har ikke nok ledig plass i %s" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:2612 +#: cmdline/apt-get.cc:2614 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "Trenger å skaffe %sB av %sB fra kildekodearkivet.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:2617 +#: cmdline/apt-get.cc:2619 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Trenger å skaffe %sB fra kildekodearkivet.\n" -#: cmdline/apt-get.cc:2623 +#: cmdline/apt-get.cc:2625 #, c-format msgid "Fetch source %s\n" msgstr "Skaffer kildekode %s\n" -#: cmdline/apt-get.cc:2661 +#: cmdline/apt-get.cc:2663 msgid "Failed to fetch some archives." msgstr "Klarte ikke å skaffe alle arkivene." -#: cmdline/apt-get.cc:2692 +#: cmdline/apt-get.cc:2694 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "Omgår utpakking av allerede utpakket kilde i %s\n" -#: cmdline/apt-get.cc:2704 +#: cmdline/apt-get.cc:2706 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Utpakkingskommandoen «%s» mislyktes.\n" -#: cmdline/apt-get.cc:2705 +#: cmdline/apt-get.cc:2707 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "Sjekk om pakken «dpkg-dev» er installert.\n" -#: cmdline/apt-get.cc:2727 +#: cmdline/apt-get.cc:2729 #, c-format msgid "Build command '%s' failed.\n" msgstr "Byggekommandoen «%s» mislyktes.\n" -#: cmdline/apt-get.cc:2747 +#: cmdline/apt-get.cc:2749 msgid "Child process failed" msgstr "Barneprosessen mislyktes" -#: cmdline/apt-get.cc:2766 +#: cmdline/apt-get.cc:2768 msgid "Must specify at least one package to check builddeps for" msgstr "Du må angi minst en pakke du vil sjekke «builddeps» for" -#: cmdline/apt-get.cc:2791 +#: cmdline/apt-get.cc:2793 #, c-format msgid "" "No architecture information available for %s. See apt.conf(5) APT::" "Architectures for setup" msgstr "" -#: cmdline/apt-get.cc:2815 cmdline/apt-get.cc:2818 +#: cmdline/apt-get.cc:2817 cmdline/apt-get.cc:2820 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "Klarer ikke å skaffe informasjon om bygge-avhengighetene for %s" -#: cmdline/apt-get.cc:2838 +#: cmdline/apt-get.cc:2840 #, c-format msgid "%s has no build depends.\n" msgstr "%s har ingen avhengigheter.\n" -#: cmdline/apt-get.cc:3008 +#: cmdline/apt-get.cc:3010 #, fuzzy, c-format msgid "" "%s dependency for %s can't be satisfied because %s is not allowed on '%s' " "packages" msgstr "Kravet %s for %s kan ikke oppfylles fordi pakken %s ikke finnes" -#: cmdline/apt-get.cc:3026 +#: cmdline/apt-get.cc:3028 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " "found" msgstr "Kravet %s for %s kan ikke oppfylles fordi pakken %s ikke finnes" -#: cmdline/apt-get.cc:3049 +#: cmdline/apt-get.cc:3051 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "Klarte ikke å tilfredsstille %s avhengighet for %s: den installerte pakken " "%s er for ny" -#: cmdline/apt-get.cc:3088 +#: cmdline/apt-get.cc:3090 #, fuzzy, c-format msgid "" "%s dependency for %s cannot be satisfied because candidate version of " @@ -992,37 +994,37 @@ msgstr "" "Kravet %s for %s kan ikke oppfylles fordi det ikke finnes noen tilgjengelige " "versjoner av pakken %s som oppfyller versjonskravene" -#: cmdline/apt-get.cc:3094 +#: cmdline/apt-get.cc:3096 #, fuzzy, c-format msgid "" "%s dependency for %s cannot be satisfied because package %s has no candidate " "version" msgstr "Kravet %s for %s kan ikke oppfylles fordi pakken %s ikke finnes" -#: cmdline/apt-get.cc:3117 +#: cmdline/apt-get.cc:3119 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "Klarte ikke å tilfredsstille %s avhengighet for %s: %s" -#: cmdline/apt-get.cc:3133 +#: cmdline/apt-get.cc:3135 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "Klarte ikke å tilfredstille bygg-avhengighetene for %s." -#: cmdline/apt-get.cc:3138 +#: cmdline/apt-get.cc:3140 msgid "Failed to process build dependencies" msgstr "Klarte ikke å behandle forutsetningene for bygging" -#: cmdline/apt-get.cc:3231 cmdline/apt-get.cc:3243 +#: cmdline/apt-get.cc:3233 cmdline/apt-get.cc:3245 #, fuzzy, c-format msgid "Changelog for %s (%s)" msgstr "Kobler til %s (%s)" -#: cmdline/apt-get.cc:3366 +#: cmdline/apt-get.cc:3368 msgid "Supported modules:" msgstr "Støttede moduler:" -#: cmdline/apt-get.cc:3407 +#: cmdline/apt-get.cc:3409 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1111,7 +1113,7 @@ msgstr "" "for mer informasjon og flere valg.\n" " Denne APT har kraften til en Superku.\n" -#: cmdline/apt-get.cc:3572 +#: cmdline/apt-get.cc:3574 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1712,7 +1714,7 @@ msgstr "" " -c=? Les denne innstillingsfila.\n" " -o=? Sett en vilkårlig innstilling, f.eks. -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1335 +#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1339 #, c-format msgid "Unable to write to %s" msgstr "Kan ikke skrive til %s" @@ -2753,7 +2755,7 @@ msgstr "Feil på %u i kildelista %s (type)" msgid "Type '%s' is not known on line %u in source list %s" msgstr "Typen «%s» er ukjent i linje %u i kildelista %s" -#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:896 +#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:898 #, c-format msgid "" "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " @@ -2762,12 +2764,12 @@ msgstr "" "Klarte ikke gjennomføre umiddelbar konfigurasjon av «%s». Se man 5 apt.conf " "under APT::Immediate-Configure for detaljer. (%d)" -#: apt-pkg/packagemanager.cc:473 apt-pkg/packagemanager.cc:503 +#: apt-pkg/packagemanager.cc:473 apt-pkg/packagemanager.cc:504 #, fuzzy, c-format msgid "Could not configure '%s'. " msgstr "Klarte ikke åpne fila «%s»" -#: apt-pkg/packagemanager.cc:545 +#: apt-pkg/packagemanager.cc:546 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2802,7 +2804,7 @@ msgstr "" msgid "Unable to correct problems, you have held broken packages." msgstr "Klarer ikke å rette problemene, noen ødelagte pakker er holdt tilbake." -#: apt-pkg/algorithms.cc:1574 apt-pkg/algorithms.cc:1576 +#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 #, fuzzy msgid "" "Some index files failed to download. They have been ignored, or old ones " @@ -2946,21 +2948,21 @@ msgstr "Jøss, du har overgått antallet avhengighetsforhold denne APT klarer." msgid "Package %s %s was not found while processing file dependencies" msgstr "Fant ikke pakken %s %s ved behandling av filkrav" -#: apt-pkg/pkgcachegen.cc:1146 +#: apt-pkg/pkgcachegen.cc:1150 #, c-format msgid "Couldn't stat source package list %s" msgstr "Klarte ikke finne informasjon om %s - lista over kildekodepakker" -#: apt-pkg/pkgcachegen.cc:1234 apt-pkg/pkgcachegen.cc:1338 -#: apt-pkg/pkgcachegen.cc:1344 apt-pkg/pkgcachegen.cc:1501 +#: apt-pkg/pkgcachegen.cc:1238 apt-pkg/pkgcachegen.cc:1342 +#: apt-pkg/pkgcachegen.cc:1348 apt-pkg/pkgcachegen.cc:1505 msgid "Reading package lists" msgstr "Leser pakkelister" -#: apt-pkg/pkgcachegen.cc:1251 +#: apt-pkg/pkgcachegen.cc:1255 msgid "Collecting File Provides" msgstr "Samler inn filtilbud" -#: apt-pkg/pkgcachegen.cc:1443 apt-pkg/pkgcachegen.cc:1450 +#: apt-pkg/pkgcachegen.cc:1447 apt-pkg/pkgcachegen.cc:1454 msgid "IO Error saving source cache" msgstr "IO-feil ved lagring av kildekode-lager" diff --git a/po/ne.po b/po/ne.po index 302d8c661..672ecbdc2 100644 --- a/po/ne.po +++ b/po/ne.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: apt_po\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2012-10-15 09:49+0200\n" +"POT-Creation-Date: 2013-03-14 08:05+0100\n" "PO-Revision-Date: 2006-06-12 14:35+0545\n" "Last-Translator: Shiva Pokharel \n" "Language-Team: Nepali \n" @@ -157,7 +157,7 @@ msgid " Version table:" msgstr " संस्करण तालिका:" #: cmdline/apt-cache.cc:1683 cmdline/apt-cdrom.cc:198 cmdline/apt-config.cc:81 -#: cmdline/apt-get.cc:3361 cmdline/apt-mark.cc:375 +#: cmdline/apt-get.cc:3363 cmdline/apt-mark.cc:375 #: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:590 #: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147 #, fuzzy, c-format @@ -486,7 +486,7 @@ msgstr " %s को पुन: स्थापना सम्भव छैन, msgid "%s is already the newest version.\n" msgstr "%s पहिल्यै नयाँ संस्करण हो ।\n" -#: cmdline/apt-get.cc:858 cmdline/apt-get.cc:2157 cmdline/apt-mark.cc:68 +#: cmdline/apt-get.cc:858 cmdline/apt-get.cc:2159 cmdline/apt-mark.cc:68 #, fuzzy, c-format msgid "%s set to manually installed.\n" msgstr "तर %s स्थापना हुनुपर्यो" @@ -593,8 +593,8 @@ msgstr "अनप्याक गरिसके पछि थप डिस् msgid "After this operation, %sB disk space will be freed.\n" msgstr "%sB अनप्याक गरिसके पछि डिस्क खाली ठाउँ खाली हुनेछ ।\n" -#: cmdline/apt-get.cc:1228 cmdline/apt-get.cc:1231 cmdline/apt-get.cc:2589 -#: cmdline/apt-get.cc:2592 +#: cmdline/apt-get.cc:1228 cmdline/apt-get.cc:1231 cmdline/apt-get.cc:2591 +#: cmdline/apt-get.cc:2594 #, c-format msgid "Couldn't determine free space in %s" msgstr " %s मा खाली ठाऊँ निर्धारण गर्न सकिएन" @@ -604,15 +604,17 @@ msgstr " %s मा खाली ठाऊँ निर्धारण गर् msgid "You don't have enough free space in %s." msgstr "तपाईँ संग %s मा पर्याप्त खाली ठाऊँ छैन ।" -#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1277 +#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1279 msgid "Trivial Only specified but this is not a trivial operation." msgstr "त्रिभियल मात्र निर्दिष्ट गरिएको छ तर यो त्रिभियल सञ्चालन होइन ।" -#: cmdline/apt-get.cc:1259 +#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be +#. careful with hard to type or special characters (like non-breaking spaces) +#: cmdline/apt-get.cc:1261 msgid "Yes, do as I say!" msgstr "हो,मैले भने जस्तै गर्नुहोस्!" -#: cmdline/apt-get.cc:1261 +#: cmdline/apt-get.cc:1263 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -623,28 +625,28 @@ msgstr "" "निरन्तरता दिन '%s' वाक्यांशमा टाइप गर्नुहोस् \n" " ?] " -#: cmdline/apt-get.cc:1267 cmdline/apt-get.cc:1286 +#: cmdline/apt-get.cc:1269 cmdline/apt-get.cc:1288 msgid "Abort." msgstr "परित्याग गर्नुहोस् ।" -#: cmdline/apt-get.cc:1282 +#: cmdline/apt-get.cc:1284 msgid "Do you want to continue [Y/n]? " msgstr "के तपाईँ निरन्तरता दिन चाहनुहुन्छ [Y/n]? " -#: cmdline/apt-get.cc:1354 cmdline/apt-get.cc:2654 apt-pkg/algorithms.cc:1548 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 #, c-format msgid "Failed to fetch %s %s\n" msgstr "%s %s तान्न असफल भयो\n" -#: cmdline/apt-get.cc:1372 +#: cmdline/apt-get.cc:1374 msgid "Some files failed to download" msgstr "केही फाइलहरू डाउनलोड गर्न असफल भयो" -#: cmdline/apt-get.cc:1373 cmdline/apt-get.cc:2666 +#: cmdline/apt-get.cc:1375 cmdline/apt-get.cc:2668 msgid "Download complete and in download only mode" msgstr "डाउनलोड समाप्त भयो र डाउनलोडमा मोड मात्रै छ" -#: cmdline/apt-get.cc:1379 +#: cmdline/apt-get.cc:1381 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -652,19 +654,19 @@ msgstr "" "केही संग्रहहरू तान्न असक्षम भयो,apt-get अद्यावधिक चलिरहेछ वा हराइरहेको --fix-संगै प्रयास " "गर्नुहुन्छ ?" -#: cmdline/apt-get.cc:1383 +#: cmdline/apt-get.cc:1385 msgid "--fix-missing and media swapping is not currently supported" msgstr "हराइरहेको --fix-र स्वाप भइरहेको मेडिया हाल समर्थित भइरहेको छैन" -#: cmdline/apt-get.cc:1388 +#: cmdline/apt-get.cc:1390 msgid "Unable to correct missing packages." msgstr "हराइरहेको प्याकेजहरू सुधार्न असक्षम भयो ।" -#: cmdline/apt-get.cc:1389 +#: cmdline/apt-get.cc:1391 msgid "Aborting install." msgstr "स्थापना परित्याग गरिदैछ ।" -#: cmdline/apt-get.cc:1417 +#: cmdline/apt-get.cc:1419 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -674,35 +676,35 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: cmdline/apt-get.cc:1421 +#: cmdline/apt-get.cc:1423 msgid "Note: This is done automatically and on purpose by dpkg." msgstr "" -#: cmdline/apt-get.cc:1559 +#: cmdline/apt-get.cc:1561 #, c-format msgid "Ignore unavailable target release '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:1591 +#: cmdline/apt-get.cc:1593 #, fuzzy, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "स्रोत प्याकेज सूची %s स्थिर गर्न सकिएन " #. if (VerTag.empty() == false && Last == 0) -#: cmdline/apt-get.cc:1629 +#: cmdline/apt-get.cc:1631 #, c-format msgid "Ignore unavailable version '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:1645 +#: cmdline/apt-get.cc:1647 msgid "The update command takes no arguments" msgstr "अद्यावधिक आदेशले कुनै तर्कहरू लिदैन" -#: cmdline/apt-get.cc:1711 +#: cmdline/apt-get.cc:1713 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -#: cmdline/apt-get.cc:1815 +#: cmdline/apt-get.cc:1817 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -718,16 +720,16 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1818 cmdline/apt-get.cc:1987 +#: cmdline/apt-get.cc:1820 cmdline/apt-get.cc:1989 msgid "The following information may help to resolve the situation:" msgstr "निम्न सूचनाले अवस्थालाई हल गर्न मद्दत गर्नेछ: " -#: cmdline/apt-get.cc:1822 +#: cmdline/apt-get.cc:1824 #, fuzzy msgid "Internal Error, AutoRemover broke stuff" msgstr "आन्तरिक त्रुटि,समस्या हलकर्ताले उत्तम गुण भाँच्यो " -#: cmdline/apt-get.cc:1829 +#: cmdline/apt-get.cc:1831 #, fuzzy msgid "" "The following package was automatically installed and is no longer required:" @@ -737,7 +739,7 @@ msgid_plural "" msgstr[0] "निम्न नयाँ प्याकेजहरू स्थापना हुनेछन्:" msgstr[1] "निम्न नयाँ प्याकेजहरू स्थापना हुनेछन्:" -#: cmdline/apt-get.cc:1833 +#: cmdline/apt-get.cc:1835 #, fuzzy, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -745,21 +747,21 @@ msgid_plural "" msgstr[0] "निम्न नयाँ प्याकेजहरू स्थापना हुनेछन्:" msgstr[1] "निम्न नयाँ प्याकेजहरू स्थापना हुनेछन्:" -#: cmdline/apt-get.cc:1835 +#: cmdline/apt-get.cc:1837 msgid "Use 'apt-get autoremove' to remove it." msgid_plural "Use 'apt-get autoremove' to remove them." msgstr[0] "" msgstr[1] "" -#: cmdline/apt-get.cc:1854 +#: cmdline/apt-get.cc:1856 msgid "Internal error, AllUpgrade broke stuff" msgstr "आन्तरिक त्रुटि,सबै स्तरवृद्धिले उत्तम गुण नष्ट गर्दछ" -#: cmdline/apt-get.cc:1953 +#: cmdline/apt-get.cc:1955 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "तपाईँ यसलाई सुधार गर्न 'apt-get -f install' चलाउन चाहनुहुन्छ:" -#: cmdline/apt-get.cc:1957 +#: cmdline/apt-get.cc:1959 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -767,7 +769,7 @@ msgstr "" "नभेटिएका निर्भरताहरू । प्याकेजहरू बिना 'apt-get -f install' प्रयास गर्नुहोस् ( वा " "समाधान निर्दिष्ट गर्नुहोस्) ।" -#: cmdline/apt-get.cc:1972 +#: cmdline/apt-get.cc:1974 msgid "" "Some packages could not be installed. This may mean that you have\n" "requested an impossible situation or if you are using the unstable\n" @@ -780,85 +782,85 @@ msgstr "" " वितरण अहिले सम्म सिर्जना\n" " भएको छैन वा आवगमन विनानै सर्यो ।" -#: cmdline/apt-get.cc:1993 +#: cmdline/apt-get.cc:1995 msgid "Broken packages" msgstr "भाँचिएका प्याकेजहरू" -#: cmdline/apt-get.cc:2019 +#: cmdline/apt-get.cc:2021 msgid "The following extra packages will be installed:" msgstr "निम्न अतिरिक्त प्याकेजहरू स्थापना हुनेछन्:" -#: cmdline/apt-get.cc:2109 +#: cmdline/apt-get.cc:2111 msgid "Suggested packages:" msgstr "सुझाव दिएका प्याकेजहरू:" -#: cmdline/apt-get.cc:2110 +#: cmdline/apt-get.cc:2112 msgid "Recommended packages:" msgstr "सिफारिस गरिएका प्याकेजहरू:" -#: cmdline/apt-get.cc:2152 +#: cmdline/apt-get.cc:2154 #, c-format msgid "Couldn't find package %s" msgstr "प्याकेज फेला पार्न सकिएन %s" -#: cmdline/apt-get.cc:2159 cmdline/apt-mark.cc:70 +#: cmdline/apt-get.cc:2161 cmdline/apt-mark.cc:70 #, fuzzy, c-format msgid "%s set to automatically installed.\n" msgstr "तर %s स्थापना हुनुपर्यो" -#: cmdline/apt-get.cc:2167 cmdline/apt-mark.cc:114 +#: cmdline/apt-get.cc:2169 cmdline/apt-mark.cc:114 msgid "" "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " "instead." msgstr "" -#: cmdline/apt-get.cc:2183 +#: cmdline/apt-get.cc:2185 msgid "Calculating upgrade... " msgstr "स्तर वृद्धि गणना गरिदैछ..." -#: cmdline/apt-get.cc:2186 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 msgid "Failed" msgstr "असफल भयो" -#: cmdline/apt-get.cc:2191 +#: cmdline/apt-get.cc:2193 msgid "Done" msgstr "काम भयो" -#: cmdline/apt-get.cc:2258 cmdline/apt-get.cc:2266 +#: cmdline/apt-get.cc:2260 cmdline/apt-get.cc:2268 msgid "Internal error, problem resolver broke stuff" msgstr "आन्तरिक त्रुटि,समस्या हलकर्ताले उत्तम गुण भाँच्यो " -#: cmdline/apt-get.cc:2294 cmdline/apt-get.cc:2330 +#: cmdline/apt-get.cc:2296 cmdline/apt-get.cc:2332 msgid "Unable to lock the download directory" msgstr "डाउनलोड डाइरेक्ट्री ताल्चा मार्न असक्षम" -#: cmdline/apt-get.cc:2386 +#: cmdline/apt-get.cc:2388 #, c-format msgid "Can't find a source to download version '%s' of '%s'" msgstr "" -#: cmdline/apt-get.cc:2391 +#: cmdline/apt-get.cc:2393 #, c-format msgid "Downloading %s %s" msgstr "" -#: cmdline/apt-get.cc:2451 +#: cmdline/apt-get.cc:2453 msgid "Must specify at least one package to fetch source for" msgstr "को लागि स्रोत तान्न कम्तिमा एउटा प्याकेज निर्दिष्ट गर्नुपर्छ" -#: cmdline/apt-get.cc:2491 cmdline/apt-get.cc:2803 +#: cmdline/apt-get.cc:2493 cmdline/apt-get.cc:2805 #, c-format msgid "Unable to find a source package for %s" msgstr "%s को लागि स्रोत प्याकेज फेला पार्न असफल भयो" -#: cmdline/apt-get.cc:2508 +#: cmdline/apt-get.cc:2510 #, c-format msgid "" "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" "%s\n" msgstr "" -#: cmdline/apt-get.cc:2513 +#: cmdline/apt-get.cc:2515 #, c-format msgid "" "Please use:\n" @@ -866,104 +868,104 @@ msgid "" "to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -#: cmdline/apt-get.cc:2566 +#: cmdline/apt-get.cc:2568 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "पहिल्यै डाउनलोड भएका फाइलहरु फड्काइदैछ '%s'\n" -#: cmdline/apt-get.cc:2603 +#: cmdline/apt-get.cc:2605 #, c-format msgid "You don't have enough free space in %s" msgstr "तपाईँ संग %s मा पर्याप्त खाली ठाऊँ छैन" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:2612 +#: cmdline/apt-get.cc:2614 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "स्रोत संग्रहहरुको %sB/%sB प्राप्त गर्न आवश्यक छ ।\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:2617 +#: cmdline/apt-get.cc:2619 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "स्रोत संग्रहहरुको %sB प्राप्त गर्न आवश्यक छ ।\n" -#: cmdline/apt-get.cc:2623 +#: cmdline/apt-get.cc:2625 #, c-format msgid "Fetch source %s\n" msgstr "स्रोत फड्काउनुहोस् %s\n" -#: cmdline/apt-get.cc:2661 +#: cmdline/apt-get.cc:2663 msgid "Failed to fetch some archives." msgstr "केही संग्रह फड्काउन असफल भयो ।" -#: cmdline/apt-get.cc:2692 +#: cmdline/apt-get.cc:2694 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr " %s मा पहिल्यै अनप्याक गरिएका स्रोतको अनप्याक फड्काइदैछ\n" -#: cmdline/apt-get.cc:2704 +#: cmdline/apt-get.cc:2706 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "अनप्याक आदेश '%s' असफल भयो ।\n" -#: cmdline/apt-get.cc:2705 +#: cmdline/apt-get.cc:2707 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "जाँच्नुहोस् यदि 'dpkg-dev' प्याकेज स्थापना भयो ।\n" -#: cmdline/apt-get.cc:2727 +#: cmdline/apt-get.cc:2729 #, c-format msgid "Build command '%s' failed.\n" msgstr "निर्माण आदेश '%s' असफल भयो ।\n" -#: cmdline/apt-get.cc:2747 +#: cmdline/apt-get.cc:2749 msgid "Child process failed" msgstr "शाखा प्रक्रिया असफल भयो" -#: cmdline/apt-get.cc:2766 +#: cmdline/apt-get.cc:2768 msgid "Must specify at least one package to check builddeps for" msgstr "को लागि builddeps जाँच्न कम्तिमा एउटा प्याकेज निर्दष्ट गर्नुपर्छ" -#: cmdline/apt-get.cc:2791 +#: cmdline/apt-get.cc:2793 #, c-format msgid "" "No architecture information available for %s. See apt.conf(5) APT::" "Architectures for setup" msgstr "" -#: cmdline/apt-get.cc:2815 cmdline/apt-get.cc:2818 +#: cmdline/apt-get.cc:2817 cmdline/apt-get.cc:2820 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "%s को लागि निर्माण-निर्भरता सूचना प्राप्त गर्न असक्षम भयो" -#: cmdline/apt-get.cc:2838 +#: cmdline/apt-get.cc:2840 #, c-format msgid "%s has no build depends.\n" msgstr "%s कुनै निर्माणमा आधारित हुदैन ।\n" -#: cmdline/apt-get.cc:3008 +#: cmdline/apt-get.cc:3010 #, fuzzy, c-format msgid "" "%s dependency for %s can't be satisfied because %s is not allowed on '%s' " "packages" msgstr "%s को लागि %s निर्भरता सन्तुष्ट हुन सकेन किनभने प्याकेज %s फेला पार्न सकिएन" -#: cmdline/apt-get.cc:3026 +#: cmdline/apt-get.cc:3028 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " "found" msgstr "%s को लागि %s निर्भरता सन्तुष्ट हुन सकेन किनभने प्याकेज %s फेला पार्न सकिएन" -#: cmdline/apt-get.cc:3049 +#: cmdline/apt-get.cc:3051 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "%s को लागि %s निर्भरता सन्तुष्ट पार्न असफल भयो: स्थापित प्याकेज %s अति नयाँ छ" -#: cmdline/apt-get.cc:3088 +#: cmdline/apt-get.cc:3090 #, fuzzy, c-format msgid "" "%s dependency for %s cannot be satisfied because candidate version of " @@ -972,37 +974,37 @@ msgstr "" "%sको लागि %s निर्भरता सन्तुष्ट हुन सकेन किन भने प्याकेज %s को कुनै उपलब्ध संस्करणले संस्करण " "आवश्यकताहरुलाई सन्तुष्ट पार्न सकेन " -#: cmdline/apt-get.cc:3094 +#: cmdline/apt-get.cc:3096 #, fuzzy, c-format msgid "" "%s dependency for %s cannot be satisfied because package %s has no candidate " "version" msgstr "%s को लागि %s निर्भरता सन्तुष्ट हुन सकेन किनभने प्याकेज %s फेला पार्न सकिएन" -#: cmdline/apt-get.cc:3117 +#: cmdline/apt-get.cc:3119 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "%s को लागि %s निर्भरता सन्तुष्ट गर्न असफल: %s" -#: cmdline/apt-get.cc:3133 +#: cmdline/apt-get.cc:3135 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "%s को लागि निर्माण निर्भरताहरू सन्तुष्ट गर्न सकिएन । " -#: cmdline/apt-get.cc:3138 +#: cmdline/apt-get.cc:3140 msgid "Failed to process build dependencies" msgstr "निर्माण निर्भरताहरू प्रक्रिया गर्न असफल" -#: cmdline/apt-get.cc:3231 cmdline/apt-get.cc:3243 +#: cmdline/apt-get.cc:3233 cmdline/apt-get.cc:3245 #, fuzzy, c-format msgid "Changelog for %s (%s)" msgstr "%s (%s) मा जडान गरिदैछ" -#: cmdline/apt-get.cc:3366 +#: cmdline/apt-get.cc:3368 msgid "Supported modules:" msgstr "समर्थित मोड्युलहरू:" -#: cmdline/apt-get.cc:3407 +#: cmdline/apt-get.cc:3409 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1087,7 +1089,7 @@ msgstr "" "pages हेर्नुहोस् ।\n" " APT संग सुपर काउ शक्तिहरू छ ।\n" -#: cmdline/apt-get.cc:3572 +#: cmdline/apt-get.cc:3574 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1676,7 +1678,7 @@ msgstr "" " -c=? यो कनफिगरेसन फाइल पढ्नुहोस्\n" " -o=? एउटा स्वेच्छाचारी कनफिगरेसन विकल्प सेट गर्नुहोस्, जस्तै -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1335 +#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1339 #, c-format msgid "Unable to write to %s" msgstr " %s मा लेख्न असक्षम" @@ -2711,19 +2713,19 @@ msgstr "वैरुप्य लाइन %u स्रोत सूचिमा msgid "Type '%s' is not known on line %u in source list %s" msgstr "स्रोत सूची %s भित्र %u लाइनमा टाइप '%s' ज्ञात छैन" -#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:896 +#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:898 #, c-format msgid "" "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " "under APT::Immediate-Configure for details. (%d)" msgstr "" -#: apt-pkg/packagemanager.cc:473 apt-pkg/packagemanager.cc:503 +#: apt-pkg/packagemanager.cc:473 apt-pkg/packagemanager.cc:504 #, fuzzy, c-format msgid "Could not configure '%s'. " msgstr "फाइल %s खोल्न सकिएन" -#: apt-pkg/packagemanager.cc:545 +#: apt-pkg/packagemanager.cc:546 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2757,7 +2759,7 @@ msgstr "" msgid "Unable to correct problems, you have held broken packages." msgstr "समस्याहरू सुधार्न असक्षम भयो, तपाईँले प्याकेजहरु भाँच्नुभयो ।" -#: apt-pkg/algorithms.cc:1574 apt-pkg/algorithms.cc:1576 +#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 #, fuzzy msgid "" "Some index files failed to download. They have been ignored, or old ones " @@ -2900,21 +2902,21 @@ msgstr "वाऊ, APT ले सक्षम गरेको निर्भर msgid "Package %s %s was not found while processing file dependencies" msgstr "फाइल निर्भरताहरू प्रक्रिया गर्दा प्याकेज %s %s फेला परेन" -#: apt-pkg/pkgcachegen.cc:1146 +#: apt-pkg/pkgcachegen.cc:1150 #, c-format msgid "Couldn't stat source package list %s" msgstr "स्रोत प्याकेज सूची %s स्थिर गर्न सकिएन " -#: apt-pkg/pkgcachegen.cc:1234 apt-pkg/pkgcachegen.cc:1338 -#: apt-pkg/pkgcachegen.cc:1344 apt-pkg/pkgcachegen.cc:1501 +#: apt-pkg/pkgcachegen.cc:1238 apt-pkg/pkgcachegen.cc:1342 +#: apt-pkg/pkgcachegen.cc:1348 apt-pkg/pkgcachegen.cc:1505 msgid "Reading package lists" msgstr "प्याकेज सूचिहरू पढिदैछ" -#: apt-pkg/pkgcachegen.cc:1251 +#: apt-pkg/pkgcachegen.cc:1255 msgid "Collecting File Provides" msgstr "फाइल उपलब्धताहरू संकलन गरिदैछ" -#: apt-pkg/pkgcachegen.cc:1443 apt-pkg/pkgcachegen.cc:1450 +#: apt-pkg/pkgcachegen.cc:1447 apt-pkg/pkgcachegen.cc:1454 msgid "IO Error saving source cache" msgstr "स्रोत क्यास बचत गर्दा IO त्रुटि" diff --git a/po/nl.po b/po/nl.po index 0579b1199..67840c55b 100644 --- a/po/nl.po +++ b/po/nl.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.8.15.9\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2012-10-15 09:49+0200\n" +"POT-Creation-Date: 2013-03-14 08:05+0100\n" "PO-Revision-Date: 2011-12-05 17:10+0100\n" "Last-Translator: Jeroen Schot \n" "Language-Team: Debian l10n Dutch \n" @@ -157,7 +157,7 @@ msgid " Version table:" msgstr " Versietabel:" #: cmdline/apt-cache.cc:1683 cmdline/apt-cdrom.cc:198 cmdline/apt-config.cc:81 -#: cmdline/apt-get.cc:3361 cmdline/apt-mark.cc:375 +#: cmdline/apt-get.cc:3363 cmdline/apt-mark.cc:375 #: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:590 #: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147 #, c-format @@ -492,7 +492,7 @@ msgstr "" msgid "%s is already the newest version.\n" msgstr "%s is reeds de nieuwste versie.\n" -#: cmdline/apt-get.cc:858 cmdline/apt-get.cc:2157 cmdline/apt-mark.cc:68 +#: cmdline/apt-get.cc:858 cmdline/apt-get.cc:2159 cmdline/apt-mark.cc:68 #, c-format msgid "%s set to manually installed.\n" msgstr "%s is ingesteld voor handmatige installatie.\n" @@ -602,8 +602,8 @@ msgstr "Door deze operatie zal er %sB extra schijfruimte gebruikt worden.\n" msgid "After this operation, %sB disk space will be freed.\n" msgstr "Door deze operatie zal er %sB schijfruimte vrijkomen.\n" -#: cmdline/apt-get.cc:1228 cmdline/apt-get.cc:1231 cmdline/apt-get.cc:2589 -#: cmdline/apt-get.cc:2592 +#: cmdline/apt-get.cc:1228 cmdline/apt-get.cc:1231 cmdline/apt-get.cc:2591 +#: cmdline/apt-get.cc:2594 #, c-format msgid "Couldn't determine free space in %s" msgstr "Kon de hoeveelheid vrije schijfruimte op %s niet bepalen" @@ -613,15 +613,17 @@ msgstr "Kon de hoeveelheid vrije schijfruimte op %s niet bepalen" msgid "You don't have enough free space in %s." msgstr "U heeft onvoldoende vrije schijfruimte op %s." -#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1277 +#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1279 msgid "Trivial Only specified but this is not a trivial operation." msgstr "'Trivial Only' is opgegeven, dit is echter geen triviale bewerking." -#: cmdline/apt-get.cc:1259 +#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be +#. careful with hard to type or special characters (like non-breaking spaces) +#: cmdline/apt-get.cc:1261 msgid "Yes, do as I say!" msgstr "Ja, doe wat ik zeg!" -#: cmdline/apt-get.cc:1261 +#: cmdline/apt-get.cc:1263 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -632,28 +634,28 @@ msgstr "" "Als u wilt doorgaan, dient u de zin '%s' in te typen.\n" " ?] " -#: cmdline/apt-get.cc:1267 cmdline/apt-get.cc:1286 +#: cmdline/apt-get.cc:1269 cmdline/apt-get.cc:1288 msgid "Abort." msgstr "Afbreken." -#: cmdline/apt-get.cc:1282 +#: cmdline/apt-get.cc:1284 msgid "Do you want to continue [Y/n]? " msgstr "Wilt u doorgaan [J/n]? " -#: cmdline/apt-get.cc:1354 cmdline/apt-get.cc:2654 apt-pkg/algorithms.cc:1548 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Ophalen van %s is mislukt %s\n" -#: cmdline/apt-get.cc:1372 +#: cmdline/apt-get.cc:1374 msgid "Some files failed to download" msgstr "Ophalen van sommige bestanden is mislukt" -#: cmdline/apt-get.cc:1373 cmdline/apt-get.cc:2666 +#: cmdline/apt-get.cc:1375 cmdline/apt-get.cc:2668 msgid "Download complete and in download only mode" msgstr "Ophalen klaar en alleen-ophalen-modus staat aan" -#: cmdline/apt-get.cc:1379 +#: cmdline/apt-get.cc:1381 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -661,19 +663,19 @@ msgstr "" "Kon sommige archieven niet ophalen, misschien kunt u 'apt-get update' of --" "fix-missing proberen?" -#: cmdline/apt-get.cc:1383 +#: cmdline/apt-get.cc:1385 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix-missing en medium wisselen wordt op dit moment niet ondersteund" -#: cmdline/apt-get.cc:1388 +#: cmdline/apt-get.cc:1390 msgid "Unable to correct missing packages." msgstr "Geen oplossing voor de missende pakketten gevonden." -#: cmdline/apt-get.cc:1389 +#: cmdline/apt-get.cc:1391 msgid "Aborting install." msgstr "Installatie wordt afgebroken." -#: cmdline/apt-get.cc:1417 +#: cmdline/apt-get.cc:1419 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -687,35 +689,35 @@ msgstr[1] "" "De volgende pakketten zijn van uw systeem verdwenen omdat\n" "alle bestanden zijn overschreven door andere pakketten:" -#: cmdline/apt-get.cc:1421 +#: cmdline/apt-get.cc:1423 msgid "Note: This is done automatically and on purpose by dpkg." msgstr "Let op: Dit wordt automatische en bewust door dpkg gedaan." -#: cmdline/apt-get.cc:1559 +#: cmdline/apt-get.cc:1561 #, c-format msgid "Ignore unavailable target release '%s' of package '%s'" msgstr "Negeer niet beschikbare doelrelease '%s' van pakket '%s'" -#: cmdline/apt-get.cc:1591 +#: cmdline/apt-get.cc:1593 #, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "'%s' wordt genomen als bronpakket in plaats van '%s'\n" #. if (VerTag.empty() == false && Last == 0) -#: cmdline/apt-get.cc:1629 +#: cmdline/apt-get.cc:1631 #, c-format msgid "Ignore unavailable version '%s' of package '%s'" msgstr "Negeer niet beschikbare versie '%s' van pakket '%s'" -#: cmdline/apt-get.cc:1645 +#: cmdline/apt-get.cc:1647 msgid "The update command takes no arguments" msgstr "De opdracht 'update' aanvaard geen argumenten" -#: cmdline/apt-get.cc:1711 +#: cmdline/apt-get.cc:1713 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "We mogen geen dingen verwijderen, kan AutoRemover niet starten" -#: cmdline/apt-get.cc:1815 +#: cmdline/apt-get.cc:1817 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -733,15 +735,15 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1818 cmdline/apt-get.cc:1987 +#: cmdline/apt-get.cc:1820 cmdline/apt-get.cc:1989 msgid "The following information may help to resolve the situation:" msgstr "De volgende informatie helpt u mogelijk verder:" -#: cmdline/apt-get.cc:1822 +#: cmdline/apt-get.cc:1824 msgid "Internal Error, AutoRemover broke stuff" msgstr "Interne fout, AutoRemover heeft dingen stukgemaakt" -#: cmdline/apt-get.cc:1829 +#: cmdline/apt-get.cc:1831 msgid "" "The following package was automatically installed and is no longer required:" msgid_plural "" @@ -753,7 +755,7 @@ msgstr[1] "" "De volgende pakketten zijn automatisch geïnstalleerd en zijn niet langer " "nodig:" -#: cmdline/apt-get.cc:1833 +#: cmdline/apt-get.cc:1835 #, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -762,24 +764,24 @@ msgstr[0] "%lu pakket is automatisch geïnstalleerd en is niet langer nodig.\n" msgstr[1] "" "%lu pakketten zijn automatisch geïnstalleerd en zijn niet langer nodig.\n" -#: cmdline/apt-get.cc:1835 +#: cmdline/apt-get.cc:1837 #, fuzzy msgid "Use 'apt-get autoremove' to remove it." msgid_plural "Use 'apt-get autoremove' to remove them." msgstr[0] "U kunt deze verwijderen via 'apt-get autoremove'." msgstr[1] "U kunt deze verwijderen via 'apt-get autoremove'." -#: cmdline/apt-get.cc:1854 +#: cmdline/apt-get.cc:1856 msgid "Internal error, AllUpgrade broke stuff" msgstr "Interne fout, AllUpgrade heeft dingen stukgemaakt" -#: cmdline/apt-get.cc:1953 +#: cmdline/apt-get.cc:1955 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "" "U wilt waarschijnlijk 'apt-get -f install' uitvoeren om volgende op te " "lossen:" -#: cmdline/apt-get.cc:1957 +#: cmdline/apt-get.cc:1959 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -787,7 +789,7 @@ msgstr "" "Er zijn niet-voldane vereisten. U kunt best 'apt-get -f install' uitvoeren " "zonder pakketten op te geven, (of u kunt zelf een oplossing specificeren)." -#: cmdline/apt-get.cc:1972 +#: cmdline/apt-get.cc:1974 msgid "" "Some packages could not be installed. This may mean that you have\n" "requested an impossible situation or if you are using the unstable\n" @@ -798,80 +800,80 @@ msgstr "" "een onmogelijke situatie gevraagd hebt of dat u de 'unstable'-distributie \n" "gebruikt en sommige benodigde pakketten nog vastzitten in 'incoming'." -#: cmdline/apt-get.cc:1993 +#: cmdline/apt-get.cc:1995 msgid "Broken packages" msgstr "Niet-werkende pakketten:" -#: cmdline/apt-get.cc:2019 +#: cmdline/apt-get.cc:2021 msgid "The following extra packages will be installed:" msgstr "De volgende extra pakketten zullen geïnstalleerd worden:" -#: cmdline/apt-get.cc:2109 +#: cmdline/apt-get.cc:2111 msgid "Suggested packages:" msgstr "Voorgestelde pakketten:" -#: cmdline/apt-get.cc:2110 +#: cmdline/apt-get.cc:2112 msgid "Recommended packages:" msgstr "Aanbevolen pakketten:" -#: cmdline/apt-get.cc:2152 +#: cmdline/apt-get.cc:2154 #, c-format msgid "Couldn't find package %s" msgstr "Kon pakket %s niet vinden" -#: cmdline/apt-get.cc:2159 cmdline/apt-mark.cc:70 +#: cmdline/apt-get.cc:2161 cmdline/apt-mark.cc:70 #, c-format msgid "%s set to automatically installed.\n" msgstr "%s is ingesteld op automatische geïnstalleerd.\n" -#: cmdline/apt-get.cc:2167 cmdline/apt-mark.cc:114 +#: cmdline/apt-get.cc:2169 cmdline/apt-mark.cc:114 msgid "" "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " "instead." msgstr "" -#: cmdline/apt-get.cc:2183 +#: cmdline/apt-get.cc:2185 msgid "Calculating upgrade... " msgstr "Opwaardering wordt doorgerekend... " -#: cmdline/apt-get.cc:2186 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 msgid "Failed" msgstr "Mislukt" -#: cmdline/apt-get.cc:2191 +#: cmdline/apt-get.cc:2193 msgid "Done" msgstr "Klaar" -#: cmdline/apt-get.cc:2258 cmdline/apt-get.cc:2266 +#: cmdline/apt-get.cc:2260 cmdline/apt-get.cc:2268 msgid "Internal error, problem resolver broke stuff" msgstr "Interne fout, probleemoplosser heeft dingen stukgemaakt" -#: cmdline/apt-get.cc:2294 cmdline/apt-get.cc:2330 +#: cmdline/apt-get.cc:2296 cmdline/apt-get.cc:2332 msgid "Unable to lock the download directory" msgstr "Kon de ophaalmap niet vergrendelen" -#: cmdline/apt-get.cc:2386 +#: cmdline/apt-get.cc:2388 #, c-format msgid "Can't find a source to download version '%s' of '%s'" msgstr "" -#: cmdline/apt-get.cc:2391 +#: cmdline/apt-get.cc:2393 #, c-format msgid "Downloading %s %s" msgstr "" -#: cmdline/apt-get.cc:2451 +#: cmdline/apt-get.cc:2453 msgid "Must specify at least one package to fetch source for" msgstr "" "U dient minstens 1 pakket op te geven waarvan de broncode opgehaald moet " "worden" -#: cmdline/apt-get.cc:2491 cmdline/apt-get.cc:2803 +#: cmdline/apt-get.cc:2493 cmdline/apt-get.cc:2805 #, c-format msgid "Unable to find a source package for %s" msgstr "Kan geen bronpakket vinden voor %s" -#: cmdline/apt-get.cc:2508 +#: cmdline/apt-get.cc:2510 #, c-format msgid "" "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" @@ -881,7 +883,7 @@ msgstr "" "'%s' op:\n" "%s\n" -#: cmdline/apt-get.cc:2513 +#: cmdline/apt-get.cc:2515 #, fuzzy, c-format msgid "" "Please use:\n" @@ -893,87 +895,87 @@ msgstr "" "om de nieuwste (mogelijk nog niet uit uitgebrachte) versie van het pakket op " "te halen.\n" -#: cmdline/apt-get.cc:2566 +#: cmdline/apt-get.cc:2568 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Reeds opgehaald bestand '%s' wordt overgeslagen\n" -#: cmdline/apt-get.cc:2603 +#: cmdline/apt-get.cc:2605 #, c-format msgid "You don't have enough free space in %s" msgstr "U heeft niet voldoende vrije schijfruimte op %s" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:2612 +#: cmdline/apt-get.cc:2614 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "Moet %sB/%sB aan bronarchieven ophalen.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:2617 +#: cmdline/apt-get.cc:2619 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Moet %sB aan bronarchieven ophalen.\n" -#: cmdline/apt-get.cc:2623 +#: cmdline/apt-get.cc:2625 #, c-format msgid "Fetch source %s\n" msgstr "Ophalen bron %s\n" -#: cmdline/apt-get.cc:2661 +#: cmdline/apt-get.cc:2663 msgid "Failed to fetch some archives." msgstr "Ophalen van sommige archieven is mislukt." -#: cmdline/apt-get.cc:2692 +#: cmdline/apt-get.cc:2694 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "Het uitpakken van de reeds uitgepakte bron in %s wordt overgeslagen\n" -#: cmdline/apt-get.cc:2704 +#: cmdline/apt-get.cc:2706 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Uitpakopdracht '%s' is mislukt.\n" -#: cmdline/apt-get.cc:2705 +#: cmdline/apt-get.cc:2707 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "Gelieve na te gaan of het 'dpkg-dev'-pakket geïnstalleerd is.\n" -#: cmdline/apt-get.cc:2727 +#: cmdline/apt-get.cc:2729 #, c-format msgid "Build command '%s' failed.\n" msgstr "Bouwopdracht '%s' is mislukt.\n" -#: cmdline/apt-get.cc:2747 +#: cmdline/apt-get.cc:2749 msgid "Child process failed" msgstr "Dochterproces is mislukt" -#: cmdline/apt-get.cc:2766 +#: cmdline/apt-get.cc:2768 msgid "Must specify at least one package to check builddeps for" msgstr "" "U dient tenminste één pakket op te geven om de bouwvereisten van te " "controleren" -#: cmdline/apt-get.cc:2791 +#: cmdline/apt-get.cc:2793 #, c-format msgid "" "No architecture information available for %s. See apt.conf(5) APT::" "Architectures for setup" msgstr "" -#: cmdline/apt-get.cc:2815 cmdline/apt-get.cc:2818 +#: cmdline/apt-get.cc:2817 cmdline/apt-get.cc:2820 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "Kan de informatie over de bouwvereisten voor %s niet ophalen" -#: cmdline/apt-get.cc:2838 +#: cmdline/apt-get.cc:2840 #, c-format msgid "%s has no build depends.\n" msgstr "%s heeft geen bouwvereisten.\n" -#: cmdline/apt-get.cc:3008 +#: cmdline/apt-get.cc:3010 #, fuzzy, c-format msgid "" "%s dependency for %s can't be satisfied because %s is not allowed on '%s' " @@ -982,7 +984,7 @@ msgstr "" "De vereiste %s van pakket %s kan niet voldaan worden omdat pakket %s " "onvindbaar is" -#: cmdline/apt-get.cc:3026 +#: cmdline/apt-get.cc:3028 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -991,14 +993,14 @@ msgstr "" "De vereiste %s van pakket %s kan niet voldaan worden omdat pakket %s " "onvindbaar is" -#: cmdline/apt-get.cc:3049 +#: cmdline/apt-get.cc:3051 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "Voldoen van Vereiste %s van pakket %s is mislukt: geïnstalleerde versie %s " "is te nieuw" -#: cmdline/apt-get.cc:3088 +#: cmdline/apt-get.cc:3090 #, fuzzy, c-format msgid "" "%s dependency for %s cannot be satisfied because candidate version of " @@ -1007,7 +1009,7 @@ msgstr "" "De vereiste %s van pakket %s kan niet voldaan worden omdat er geen " "beschikbare versies zijn van pakket %s die aan de versievereisten voldoen" -#: cmdline/apt-get.cc:3094 +#: cmdline/apt-get.cc:3096 #, fuzzy, c-format msgid "" "%s dependency for %s cannot be satisfied because package %s has no candidate " @@ -1016,30 +1018,30 @@ msgstr "" "De vereiste %s van pakket %s kan niet voldaan worden omdat pakket %s " "onvindbaar is" -#: cmdline/apt-get.cc:3117 +#: cmdline/apt-get.cc:3119 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "Voldoen van de vereiste %s van pakket %s is mislukt: %s" -#: cmdline/apt-get.cc:3133 +#: cmdline/apt-get.cc:3135 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "Bouwvereisten voor %s konden niet voldaan worden." -#: cmdline/apt-get.cc:3138 +#: cmdline/apt-get.cc:3140 msgid "Failed to process build dependencies" msgstr "Verwerken van de bouwvereisten is mislukt" -#: cmdline/apt-get.cc:3231 cmdline/apt-get.cc:3243 +#: cmdline/apt-get.cc:3233 cmdline/apt-get.cc:3245 #, fuzzy, c-format msgid "Changelog for %s (%s)" msgstr "Er wordt verbinding gemaakt met %s (%s)" -#: cmdline/apt-get.cc:3366 +#: cmdline/apt-get.cc:3368 msgid "Supported modules:" msgstr "Ondersteunde modules:" -#: cmdline/apt-get.cc:3407 +#: cmdline/apt-get.cc:3409 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1128,7 +1130,7 @@ msgstr "" "voor meer informatie en opties.\n" " Deze APT heeft Super Koe kracht.\n" -#: cmdline/apt-get.cc:3572 +#: cmdline/apt-get.cc:3574 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1738,7 +1740,7 @@ msgstr "" " -c=? Lees dit configuratiebestand.\n" " -o=? Stel een willekeurige optie in, b.v. -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1335 +#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1339 #, c-format msgid "Unable to write to %s" msgstr "Kan niet naar %s schrijven" @@ -2789,7 +2791,7 @@ msgstr "Misvormde regel %u in bronlijst %s (type)" msgid "Type '%s' is not known on line %u in source list %s" msgstr "Type '%s' op regel %u in bronlijst %s is onbekend" -#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:896 +#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:898 #, c-format msgid "" "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " @@ -2798,12 +2800,12 @@ msgstr "" "Kon onmiddellijke configuratie van '%s' niet uitvoeren. Voor details zie " "'man 5 apt.conf', onder APT::Immediate-Configure. (%d)" -#: apt-pkg/packagemanager.cc:473 apt-pkg/packagemanager.cc:503 +#: apt-pkg/packagemanager.cc:473 apt-pkg/packagemanager.cc:504 #, fuzzy, c-format msgid "Could not configure '%s'. " msgstr "Kon het bestand '%s' niet openen" -#: apt-pkg/packagemanager.cc:545 +#: apt-pkg/packagemanager.cc:546 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2840,7 +2842,7 @@ msgstr "" msgid "Unable to correct problems, you have held broken packages." msgstr "Kan problemen niet verhelpen, u houdt defecte pakketten vast." -#: apt-pkg/algorithms.cc:1574 apt-pkg/algorithms.cc:1576 +#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 #, fuzzy msgid "" "Some index files failed to download. They have been ignored, or old ones " @@ -2994,21 +2996,21 @@ msgstr "" "Pakket %s %s werd niet gevonden bij het verwerken van de " "bestandsafhankelijkheden" -#: apt-pkg/pkgcachegen.cc:1146 +#: apt-pkg/pkgcachegen.cc:1150 #, c-format msgid "Couldn't stat source package list %s" msgstr "Kon de status van de bronpakketlijst %s niet opvragen" -#: apt-pkg/pkgcachegen.cc:1234 apt-pkg/pkgcachegen.cc:1338 -#: apt-pkg/pkgcachegen.cc:1344 apt-pkg/pkgcachegen.cc:1501 +#: apt-pkg/pkgcachegen.cc:1238 apt-pkg/pkgcachegen.cc:1342 +#: apt-pkg/pkgcachegen.cc:1348 apt-pkg/pkgcachegen.cc:1505 msgid "Reading package lists" msgstr "Pakketlijsten worden ingelezen" -#: apt-pkg/pkgcachegen.cc:1251 +#: apt-pkg/pkgcachegen.cc:1255 msgid "Collecting File Provides" msgstr "Voorziene bestanden worden verzameld" -#: apt-pkg/pkgcachegen.cc:1443 apt-pkg/pkgcachegen.cc:1450 +#: apt-pkg/pkgcachegen.cc:1447 apt-pkg/pkgcachegen.cc:1454 msgid "IO Error saving source cache" msgstr "Invoer/Uitvoer-fout tijdens wegschrijven bronpakket-cache" diff --git a/po/nn.po b/po/nn.po index 278de9eba..95b70357e 100644 --- a/po/nn.po +++ b/po/nn.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: apt_nn\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2012-10-15 09:49+0200\n" +"POT-Creation-Date: 2013-03-14 08:05+0100\n" "PO-Revision-Date: 2005-02-14 23:30+0100\n" "Last-Translator: Havard Korsvoll \n" "Language-Team: Norwegian nynorsk \n" @@ -159,7 +159,7 @@ msgid " Version table:" msgstr " Versjonstabell:" #: cmdline/apt-cache.cc:1683 cmdline/apt-cdrom.cc:198 cmdline/apt-config.cc:81 -#: cmdline/apt-get.cc:3361 cmdline/apt-mark.cc:375 +#: cmdline/apt-get.cc:3363 cmdline/apt-mark.cc:375 #: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:590 #: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147 #, fuzzy, c-format @@ -495,7 +495,7 @@ msgstr "%s kan ikkje installerast p msgid "%s is already the newest version.\n" msgstr "Den nyaste versjonen av %s er installert fr fr.\n" -#: cmdline/apt-get.cc:858 cmdline/apt-get.cc:2157 cmdline/apt-mark.cc:68 +#: cmdline/apt-get.cc:858 cmdline/apt-get.cc:2159 cmdline/apt-mark.cc:68 #, fuzzy, c-format msgid "%s set to manually installed.\n" msgstr "men %s skal installerast" @@ -604,8 +604,8 @@ msgstr "Etter utpakking vil %sB meir diskplass verta brukt.\n" msgid "After this operation, %sB disk space will be freed.\n" msgstr "Etter utpakking vil %sB meir diskplass verta frigjort.\n" -#: cmdline/apt-get.cc:1228 cmdline/apt-get.cc:1231 cmdline/apt-get.cc:2589 -#: cmdline/apt-get.cc:2592 +#: cmdline/apt-get.cc:1228 cmdline/apt-get.cc:1231 cmdline/apt-get.cc:2591 +#: cmdline/apt-get.cc:2594 #, fuzzy, c-format msgid "Couldn't determine free space in %s" msgstr "Du har ikkje nok ledig plass i %s" @@ -615,16 +615,18 @@ msgstr "Du har ikkje nok ledig plass i %s" msgid "You don't have enough free space in %s." msgstr "Du har ikkje nok ledig plass i %s." -#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1277 +#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1279 msgid "Trivial Only specified but this is not a trivial operation." msgstr "" "Trivial Only var spesifisert, men dette er ikkje noka triviell handling." -#: cmdline/apt-get.cc:1259 +#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be +#. careful with hard to type or special characters (like non-breaking spaces) +#: cmdline/apt-get.cc:1261 msgid "Yes, do as I say!" msgstr "Ja, gjer som eg seier!" -#: cmdline/apt-get.cc:1261 +#: cmdline/apt-get.cc:1263 #, fuzzy, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -635,28 +637,28 @@ msgstr "" "For halda fram, m du skriva nyaktig %s.\n" " ?] " -#: cmdline/apt-get.cc:1267 cmdline/apt-get.cc:1286 +#: cmdline/apt-get.cc:1269 cmdline/apt-get.cc:1288 msgid "Abort." msgstr "Avbryt." -#: cmdline/apt-get.cc:1282 +#: cmdline/apt-get.cc:1284 msgid "Do you want to continue [Y/n]? " msgstr "Vil du halda fram [J/n]? " -#: cmdline/apt-get.cc:1354 cmdline/apt-get.cc:2654 apt-pkg/algorithms.cc:1548 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Klarte ikkje henta %s %s\n" -#: cmdline/apt-get.cc:1372 +#: cmdline/apt-get.cc:1374 msgid "Some files failed to download" msgstr "Klarte ikkje henta nokre av filene" -#: cmdline/apt-get.cc:1373 cmdline/apt-get.cc:2666 +#: cmdline/apt-get.cc:1375 cmdline/apt-get.cc:2668 msgid "Download complete and in download only mode" msgstr "Nedlastinga er ferdig i nedlastingsmodus" -#: cmdline/apt-get.cc:1379 +#: cmdline/apt-get.cc:1381 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -664,19 +666,19 @@ msgstr "" "Klarte ikkje henta nokre av arkiva. Du kan prva med apt-get update eller " "--fix-missing." -#: cmdline/apt-get.cc:1383 +#: cmdline/apt-get.cc:1385 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix-missing og byte av medium er ikkje sttta for tida" -#: cmdline/apt-get.cc:1388 +#: cmdline/apt-get.cc:1390 msgid "Unable to correct missing packages." msgstr "Klarte ikkje retta opp manglande pakkar." -#: cmdline/apt-get.cc:1389 +#: cmdline/apt-get.cc:1391 msgid "Aborting install." msgstr "Avbryt installasjon." -#: cmdline/apt-get.cc:1417 +#: cmdline/apt-get.cc:1419 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -686,35 +688,35 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: cmdline/apt-get.cc:1421 +#: cmdline/apt-get.cc:1423 msgid "Note: This is done automatically and on purpose by dpkg." msgstr "" -#: cmdline/apt-get.cc:1559 +#: cmdline/apt-get.cc:1561 #, c-format msgid "Ignore unavailable target release '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:1591 +#: cmdline/apt-get.cc:1593 #, fuzzy, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "Klarte ikkje f status p kjeldepakkelista %s" #. if (VerTag.empty() == false && Last == 0) -#: cmdline/apt-get.cc:1629 +#: cmdline/apt-get.cc:1631 #, c-format msgid "Ignore unavailable version '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:1645 +#: cmdline/apt-get.cc:1647 msgid "The update command takes no arguments" msgstr "Oppdateringskommandoen tek ingen argument" -#: cmdline/apt-get.cc:1711 +#: cmdline/apt-get.cc:1713 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -#: cmdline/apt-get.cc:1815 +#: cmdline/apt-get.cc:1817 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -730,16 +732,16 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1818 cmdline/apt-get.cc:1987 +#: cmdline/apt-get.cc:1820 cmdline/apt-get.cc:1989 msgid "The following information may help to resolve the situation:" msgstr "Flgjande informasjon kan hjelpa med lysa situasjonen:" -#: cmdline/apt-get.cc:1822 +#: cmdline/apt-get.cc:1824 #, fuzzy msgid "Internal Error, AutoRemover broke stuff" msgstr "Intern feil. AllUpgrade ydelagde noko" -#: cmdline/apt-get.cc:1829 +#: cmdline/apt-get.cc:1831 #, fuzzy msgid "" "The following package was automatically installed and is no longer required:" @@ -749,7 +751,7 @@ msgid_plural "" msgstr[0] "Dei flgjande NYE pakkane vil verta installerte:" msgstr[1] "Dei flgjande NYE pakkane vil verta installerte:" -#: cmdline/apt-get.cc:1833 +#: cmdline/apt-get.cc:1835 #, fuzzy, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -757,22 +759,22 @@ msgid_plural "" msgstr[0] "Dei flgjande NYE pakkane vil verta installerte:" msgstr[1] "Dei flgjande NYE pakkane vil verta installerte:" -#: cmdline/apt-get.cc:1835 +#: cmdline/apt-get.cc:1837 msgid "Use 'apt-get autoremove' to remove it." msgid_plural "Use 'apt-get autoremove' to remove them." msgstr[0] "" msgstr[1] "" -#: cmdline/apt-get.cc:1854 +#: cmdline/apt-get.cc:1856 msgid "Internal error, AllUpgrade broke stuff" msgstr "Intern feil. AllUpgrade ydelagde noko" -#: cmdline/apt-get.cc:1953 +#: cmdline/apt-get.cc:1955 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "" "Du vil kanskje prva retta p desse ved kyra apt-get -f install." -#: cmdline/apt-get.cc:1957 +#: cmdline/apt-get.cc:1959 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -780,7 +782,7 @@ msgstr "" "Nokre krav er ikkje oppfylte. Du kan prva apt-get -f install (eller velja " "ei lysing)." -#: cmdline/apt-get.cc:1972 +#: cmdline/apt-get.cc:1974 msgid "" "Some packages could not be installed. This may mean that you have\n" "requested an impossible situation or if you are using the unstable\n" @@ -792,86 +794,86 @@ msgstr "" "distribusjonen, kan det g henda at nokre av pakkane som trengst ikkje\n" "er laga enno eller at dei framleis ligg i Incoming." -#: cmdline/apt-get.cc:1993 +#: cmdline/apt-get.cc:1995 msgid "Broken packages" msgstr "ydelagde pakkar" -#: cmdline/apt-get.cc:2019 +#: cmdline/apt-get.cc:2021 msgid "The following extra packages will be installed:" msgstr "Dei flgjande tilleggspakkane vil verta installerte:" -#: cmdline/apt-get.cc:2109 +#: cmdline/apt-get.cc:2111 msgid "Suggested packages:" msgstr "Fresltte pakkar:" -#: cmdline/apt-get.cc:2110 +#: cmdline/apt-get.cc:2112 msgid "Recommended packages:" msgstr "Tilrdde pakkar" -#: cmdline/apt-get.cc:2152 +#: cmdline/apt-get.cc:2154 #, c-format msgid "Couldn't find package %s" msgstr "Fann ikkje pakken %s" -#: cmdline/apt-get.cc:2159 cmdline/apt-mark.cc:70 +#: cmdline/apt-get.cc:2161 cmdline/apt-mark.cc:70 #, fuzzy, c-format msgid "%s set to automatically installed.\n" msgstr "men %s skal installerast" -#: cmdline/apt-get.cc:2167 cmdline/apt-mark.cc:114 +#: cmdline/apt-get.cc:2169 cmdline/apt-mark.cc:114 msgid "" "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " "instead." msgstr "" -#: cmdline/apt-get.cc:2183 +#: cmdline/apt-get.cc:2185 msgid "Calculating upgrade... " msgstr "Reknar ut oppgradering ... " -#: cmdline/apt-get.cc:2186 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 msgid "Failed" msgstr "Mislukkast" -#: cmdline/apt-get.cc:2191 +#: cmdline/apt-get.cc:2193 msgid "Done" msgstr "Ferdig" -#: cmdline/apt-get.cc:2258 cmdline/apt-get.cc:2266 +#: cmdline/apt-get.cc:2260 cmdline/apt-get.cc:2268 #, fuzzy msgid "Internal error, problem resolver broke stuff" msgstr "Intern feil. AllUpgrade ydelagde noko" -#: cmdline/apt-get.cc:2294 cmdline/apt-get.cc:2330 +#: cmdline/apt-get.cc:2296 cmdline/apt-get.cc:2332 msgid "Unable to lock the download directory" msgstr "Klarte ikkje lsa nedlastingskatalogen" -#: cmdline/apt-get.cc:2386 +#: cmdline/apt-get.cc:2388 #, c-format msgid "Can't find a source to download version '%s' of '%s'" msgstr "" -#: cmdline/apt-get.cc:2391 +#: cmdline/apt-get.cc:2393 #, c-format msgid "Downloading %s %s" msgstr "" -#: cmdline/apt-get.cc:2451 +#: cmdline/apt-get.cc:2453 msgid "Must specify at least one package to fetch source for" msgstr "Du m velja minst in pakke som kjeldekoden skal hentast for" -#: cmdline/apt-get.cc:2491 cmdline/apt-get.cc:2803 +#: cmdline/apt-get.cc:2493 cmdline/apt-get.cc:2805 #, c-format msgid "Unable to find a source package for %s" msgstr "Finn ingen kjeldepakke for %s" -#: cmdline/apt-get.cc:2508 +#: cmdline/apt-get.cc:2510 #, c-format msgid "" "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" "%s\n" msgstr "" -#: cmdline/apt-get.cc:2513 +#: cmdline/apt-get.cc:2515 #, c-format msgid "" "Please use:\n" @@ -879,105 +881,105 @@ msgid "" "to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -#: cmdline/apt-get.cc:2566 +#: cmdline/apt-get.cc:2568 #, fuzzy, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Hoppar over utpakking av kjeldekode som er utpakka fr fr i %s\n" -#: cmdline/apt-get.cc:2603 +#: cmdline/apt-get.cc:2605 #, c-format msgid "You don't have enough free space in %s" msgstr "Du har ikkje nok ledig plass i %s" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:2612 +#: cmdline/apt-get.cc:2614 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "M henta %sB/%sB med kjeldekodearkiv.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:2617 +#: cmdline/apt-get.cc:2619 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "M henta %sB med kjeldekodearkiv.\n" -#: cmdline/apt-get.cc:2623 +#: cmdline/apt-get.cc:2625 #, c-format msgid "Fetch source %s\n" msgstr "Hent kjeldekode %s\n" -#: cmdline/apt-get.cc:2661 +#: cmdline/apt-get.cc:2663 msgid "Failed to fetch some archives." msgstr "Klarte ikkje henta nokre av arkiva." -#: cmdline/apt-get.cc:2692 +#: cmdline/apt-get.cc:2694 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "Hoppar over utpakking av kjeldekode som er utpakka fr fr i %s\n" -#: cmdline/apt-get.cc:2704 +#: cmdline/apt-get.cc:2706 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Utpakkingskommandoen %s mislukkast.\n" -#: cmdline/apt-get.cc:2705 +#: cmdline/apt-get.cc:2707 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "" -#: cmdline/apt-get.cc:2727 +#: cmdline/apt-get.cc:2729 #, c-format msgid "Build command '%s' failed.\n" msgstr "Byggjekommandoen %s mislukkast.\n" -#: cmdline/apt-get.cc:2747 +#: cmdline/apt-get.cc:2749 msgid "Child process failed" msgstr "Barneprosessen mislukkast" -#: cmdline/apt-get.cc:2766 +#: cmdline/apt-get.cc:2768 msgid "Must specify at least one package to check builddeps for" msgstr "Du m velja minst ein pakke som byggjekrava skal sjekkast for" -#: cmdline/apt-get.cc:2791 +#: cmdline/apt-get.cc:2793 #, c-format msgid "" "No architecture information available for %s. See apt.conf(5) APT::" "Architectures for setup" msgstr "" -#: cmdline/apt-get.cc:2815 cmdline/apt-get.cc:2818 +#: cmdline/apt-get.cc:2817 cmdline/apt-get.cc:2820 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "Klarte ikkje henta byggjekrav for %s" -#: cmdline/apt-get.cc:2838 +#: cmdline/apt-get.cc:2840 #, c-format msgid "%s has no build depends.\n" msgstr "%s har ingen byggjekrav.\n" -#: cmdline/apt-get.cc:3008 +#: cmdline/apt-get.cc:3010 #, fuzzy, c-format msgid "" "%s dependency for %s can't be satisfied because %s is not allowed on '%s' " "packages" msgstr "Kravet %s for %s kan ikkje oppfyllast fordi pakken %s ikkje finst" -#: cmdline/apt-get.cc:3026 +#: cmdline/apt-get.cc:3028 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " "found" msgstr "Kravet %s for %s kan ikkje oppfyllast fordi pakken %s ikkje finst" -#: cmdline/apt-get.cc:3049 +#: cmdline/apt-get.cc:3051 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "Klarte ikkje oppfylla kravet %s for %s: Den installerte pakken %s er for ny" -#: cmdline/apt-get.cc:3088 +#: cmdline/apt-get.cc:3090 #, fuzzy, c-format msgid "" "%s dependency for %s cannot be satisfied because candidate version of " @@ -986,37 +988,37 @@ msgstr "" "Kravet %s for %s kan ikkje oppfyllast fordi det ikkje finst nokon " "tilgjengelege versjonar av pakken %s som oppfyller versjonskrava" -#: cmdline/apt-get.cc:3094 +#: cmdline/apt-get.cc:3096 #, fuzzy, c-format msgid "" "%s dependency for %s cannot be satisfied because package %s has no candidate " "version" msgstr "Kravet %s for %s kan ikkje oppfyllast fordi pakken %s ikkje finst" -#: cmdline/apt-get.cc:3117 +#: cmdline/apt-get.cc:3119 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "Klarte ikkje oppfylla kravet %s for %s: %s" -#: cmdline/apt-get.cc:3133 +#: cmdline/apt-get.cc:3135 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "Byggjekrav for %s kunne ikkje tilfredstillast." -#: cmdline/apt-get.cc:3138 +#: cmdline/apt-get.cc:3140 msgid "Failed to process build dependencies" msgstr "Klarte ikkje behandla byggjekrava" -#: cmdline/apt-get.cc:3231 cmdline/apt-get.cc:3243 +#: cmdline/apt-get.cc:3233 cmdline/apt-get.cc:3245 #, fuzzy, c-format msgid "Changelog for %s (%s)" msgstr "Koplar til %s (%s)" -#: cmdline/apt-get.cc:3366 +#: cmdline/apt-get.cc:3368 msgid "Supported modules:" msgstr "Sttta modular:" -#: cmdline/apt-get.cc:3407 +#: cmdline/apt-get.cc:3409 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1102,7 +1104,7 @@ msgstr "" "til apt-get(8), sources.list(5) og apt.conf(5).\n" " APT har superku-krefter.\n" -#: cmdline/apt-get.cc:3572 +#: cmdline/apt-get.cc:3574 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1691,7 +1693,7 @@ msgstr "" " -c=? Les denne innstillingsfila.\n" " -o=? Set ei vilkrleg innstilling, t.d. -o dir::cache=/tmp.\n" -#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1335 +#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1339 #, c-format msgid "Unable to write to %s" msgstr "Klarte ikkje skriva til %s" @@ -2724,19 +2726,19 @@ msgstr "Misforma linje %u i kjeldelista %s (type)" msgid "Type '%s' is not known on line %u in source list %s" msgstr "Typen %s er ukjend i linja %u i kjeldelista %s" -#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:896 +#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:898 #, c-format msgid "" "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " "under APT::Immediate-Configure for details. (%d)" msgstr "" -#: apt-pkg/packagemanager.cc:473 apt-pkg/packagemanager.cc:503 +#: apt-pkg/packagemanager.cc:473 apt-pkg/packagemanager.cc:504 #, fuzzy, c-format msgid "Could not configure '%s'. " msgstr "Klarte ikkje opna fila %s" -#: apt-pkg/packagemanager.cc:545 +#: apt-pkg/packagemanager.cc:546 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2772,7 +2774,7 @@ msgid "Unable to correct problems, you have held broken packages." msgstr "" "Klarte ikkje retta opp problema. Nokre ydelagde pakkar er haldne tilbake." -#: apt-pkg/algorithms.cc:1574 apt-pkg/algorithms.cc:1576 +#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 #, fuzzy msgid "" "Some index files failed to download. They have been ignored, or old ones " @@ -2919,21 +2921,21 @@ msgstr "J msgid "Package %s %s was not found while processing file dependencies" msgstr "Fann ikkje pakken %s %s ved behandling av filkrav" -#: apt-pkg/pkgcachegen.cc:1146 +#: apt-pkg/pkgcachegen.cc:1150 #, c-format msgid "Couldn't stat source package list %s" msgstr "Klarte ikkje f status p kjeldepakkelista %s" -#: apt-pkg/pkgcachegen.cc:1234 apt-pkg/pkgcachegen.cc:1338 -#: apt-pkg/pkgcachegen.cc:1344 apt-pkg/pkgcachegen.cc:1501 +#: apt-pkg/pkgcachegen.cc:1238 apt-pkg/pkgcachegen.cc:1342 +#: apt-pkg/pkgcachegen.cc:1348 apt-pkg/pkgcachegen.cc:1505 msgid "Reading package lists" msgstr "Les pakkelister" -#: apt-pkg/pkgcachegen.cc:1251 +#: apt-pkg/pkgcachegen.cc:1255 msgid "Collecting File Provides" msgstr "Samlar inn filtilbod" -#: apt-pkg/pkgcachegen.cc:1443 apt-pkg/pkgcachegen.cc:1450 +#: apt-pkg/pkgcachegen.cc:1447 apt-pkg/pkgcachegen.cc:1454 msgid "IO Error saving source cache" msgstr "IU-feil ved lagring av kjeldelager" diff --git a/po/pl.po b/po/pl.po index 246c32e97..04eba799f 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 \n" -"POT-Creation-Date: 2012-10-15 09:49+0200\n" +"POT-Creation-Date: 2013-03-14 08:05+0100\n" "PO-Revision-Date: 2012-07-28 21:53+0200\n" "Last-Translator: Michał Kułach \n" "Language-Team: Polish \n" @@ -161,7 +161,7 @@ msgid " Version table:" msgstr " Tabela wersji:" #: cmdline/apt-cache.cc:1683 cmdline/apt-cdrom.cc:198 cmdline/apt-config.cc:81 -#: cmdline/apt-get.cc:3361 cmdline/apt-mark.cc:375 +#: cmdline/apt-get.cc:3363 cmdline/apt-mark.cc:375 #: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:590 #: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147 #, c-format @@ -490,7 +490,7 @@ msgstr "" msgid "%s is already the newest version.\n" msgstr "%s jest już w najnowszej wersji.\n" -#: cmdline/apt-get.cc:858 cmdline/apt-get.cc:2157 cmdline/apt-mark.cc:68 +#: cmdline/apt-get.cc:858 cmdline/apt-get.cc:2159 cmdline/apt-mark.cc:68 #, c-format msgid "%s set to manually installed.\n" msgstr "%s zaznaczony jako zainstalowany ręcznie.\n" @@ -599,8 +599,8 @@ msgstr "Po tej operacji zostanie dodatkowo użyte %sB miejsca na dysku.\n" msgid "After this operation, %sB disk space will be freed.\n" msgstr "Po tej operacji zostanie zwolnione %sB miejsca na dysku.\n" -#: cmdline/apt-get.cc:1228 cmdline/apt-get.cc:1231 cmdline/apt-get.cc:2589 -#: cmdline/apt-get.cc:2592 +#: cmdline/apt-get.cc:1228 cmdline/apt-get.cc:1231 cmdline/apt-get.cc:2591 +#: cmdline/apt-get.cc:2594 #, c-format msgid "Couldn't determine free space in %s" msgstr "Nie udało się ustalić ilości wolnego miejsca w %s" @@ -610,16 +610,18 @@ msgstr "Nie udało się ustalić ilości wolnego miejsca w %s" msgid "You don't have enough free space in %s." msgstr "Niestety w %s nie ma wystarczającej ilości wolnego miejsca." -#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1277 +#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1279 msgid "Trivial Only specified but this is not a trivial operation." msgstr "Nakazano wykonywać tylko trywialne operacje, a ta do nich nie należy." # Bezpieczniej jest nie używać tu polskich znaków. -#: cmdline/apt-get.cc:1259 +#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be +#. careful with hard to type or special characters (like non-breaking spaces) +#: cmdline/apt-get.cc:1261 msgid "Yes, do as I say!" msgstr "Tak, jestem pewien!" -#: cmdline/apt-get.cc:1261 +#: cmdline/apt-get.cc:1263 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -630,28 +632,28 @@ msgstr "" "Aby kontynuować proszę napisać zdanie \"%s\"\n" " ?] " -#: cmdline/apt-get.cc:1267 cmdline/apt-get.cc:1286 +#: cmdline/apt-get.cc:1269 cmdline/apt-get.cc:1288 msgid "Abort." msgstr "Przerwane." -#: cmdline/apt-get.cc:1282 +#: cmdline/apt-get.cc:1284 msgid "Do you want to continue [Y/n]? " msgstr "Kontynuować [T/n]? " -#: cmdline/apt-get.cc:1354 cmdline/apt-get.cc:2654 apt-pkg/algorithms.cc:1548 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Nie udało się pobrać %s %s\n" -#: cmdline/apt-get.cc:1372 +#: cmdline/apt-get.cc:1374 msgid "Some files failed to download" msgstr "Nie udało się pobrać niektórych plików" -#: cmdline/apt-get.cc:1373 cmdline/apt-get.cc:2666 +#: cmdline/apt-get.cc:1375 cmdline/apt-get.cc:2668 msgid "Download complete and in download only mode" msgstr "Ukończono pobieranie w trybie samego pobierania" -#: cmdline/apt-get.cc:1379 +#: cmdline/apt-get.cc:1381 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -659,19 +661,19 @@ msgstr "" "Nie udało się pobrać niektórych archiwów, proszę spróbować uruchomić apt-get " "update lub użyć opcji --fix-missing." -#: cmdline/apt-get.cc:1383 +#: cmdline/apt-get.cc:1385 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix-missing i zamiana nośników nie są obecnie obsługiwane" -#: cmdline/apt-get.cc:1388 +#: cmdline/apt-get.cc:1390 msgid "Unable to correct missing packages." msgstr "Nie udało się poprawić brakujących pakietów." -#: cmdline/apt-get.cc:1389 +#: cmdline/apt-get.cc:1391 msgid "Aborting install." msgstr "Przerywanie instalacji" -#: cmdline/apt-get.cc:1417 +#: cmdline/apt-get.cc:1419 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -688,35 +690,35 @@ msgstr[2] "" "Następujące pakiety zniknęły z tego systemu, ponieważ wszystkie ich pliki " "zostały nadpisane przez inne pakiety:" -#: cmdline/apt-get.cc:1421 +#: cmdline/apt-get.cc:1423 msgid "Note: This is done automatically and on purpose by dpkg." msgstr "Uwaga: dpkg wykonał to automatycznie i celowo." -#: cmdline/apt-get.cc:1559 +#: cmdline/apt-get.cc:1561 #, c-format msgid "Ignore unavailable target release '%s' of package '%s'" msgstr "Ignorowanie niedostępnego wydania docelowego %s pakietu %s" -#: cmdline/apt-get.cc:1591 +#: cmdline/apt-get.cc:1593 #, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "Zmieniono wybrany pakiet źródłowy na \"%s\" z \"%s\"\n" #. if (VerTag.empty() == false && Last == 0) -#: cmdline/apt-get.cc:1629 +#: cmdline/apt-get.cc:1631 #, c-format msgid "Ignore unavailable version '%s' of package '%s'" msgstr "Ignorowanie niedostępnej wersji \"%s\" pakietu \"%s\"" -#: cmdline/apt-get.cc:1645 +#: cmdline/apt-get.cc:1647 msgid "The update command takes no arguments" msgstr "Polecenie update nie wymaga żadnych argumentów" -#: cmdline/apt-get.cc:1711 +#: cmdline/apt-get.cc:1713 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "Nic nie powinno być usuwane, AutoRemover nie zostanie uruchomiony" -#: cmdline/apt-get.cc:1815 +#: cmdline/apt-get.cc:1817 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -734,15 +736,15 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1818 cmdline/apt-get.cc:1987 +#: cmdline/apt-get.cc:1820 cmdline/apt-get.cc:1989 msgid "The following information may help to resolve the situation:" msgstr "Następujące informacje mogą pomóc rozwiązać sytuację:" -#: cmdline/apt-get.cc:1822 +#: cmdline/apt-get.cc:1824 msgid "Internal Error, AutoRemover broke stuff" msgstr "Błąd wewnętrzny spowodowany przez AutoRemover" -#: cmdline/apt-get.cc:1829 +#: cmdline/apt-get.cc:1831 msgid "" "The following package was automatically installed and is no longer required:" msgid_plural "" @@ -758,7 +760,7 @@ msgstr[2] "" "Następujące pakiety zostały zainstalowane automatycznie i nie są już więcej " "wymagane:" -#: cmdline/apt-get.cc:1833 +#: cmdline/apt-get.cc:1835 #, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -773,23 +775,23 @@ msgstr[2] "" "%lu pakietów zostało zainstalowanych automatycznie i nie są już więcej " "wymagane.\n" -#: cmdline/apt-get.cc:1835 +#: cmdline/apt-get.cc:1837 msgid "Use 'apt-get autoremove' to remove it." msgid_plural "Use 'apt-get autoremove' to remove them." msgstr[0] "Aby go usunąć należy użyć \"apt-get autoremove\"." msgstr[1] "Aby je usunąć należy użyć \"apt-get autoremove\"." msgstr[2] "Aby je usunąć należy użyć \"apt-get autoremove\"." -#: cmdline/apt-get.cc:1854 +#: cmdline/apt-get.cc:1856 msgid "Internal error, AllUpgrade broke stuff" msgstr "Błąd wewnętrzny spowodowany przez AllUpgrade" -#: cmdline/apt-get.cc:1953 +#: cmdline/apt-get.cc:1955 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "" "Należy uruchomić \"apt-get -f install\", aby naprawić poniższe problemy:" -#: cmdline/apt-get.cc:1957 +#: cmdline/apt-get.cc:1959 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -797,7 +799,7 @@ msgstr "" "Niespełnione zależności. Proszę spróbować wykonać \"apt-get -f install\" bez " "pakietów (lub podać rozwiązanie)." -#: cmdline/apt-get.cc:1972 +#: cmdline/apt-get.cc:1974 msgid "" "Some packages could not be installed. This may mean that you have\n" "requested an impossible situation or if you are using the unstable\n" @@ -809,33 +811,33 @@ msgstr "" "w której niektóre pakiety nie zostały jeszcze utworzone lub przeniesione\n" "z katalogu Incoming (\"Przychodzące\")." -#: cmdline/apt-get.cc:1993 +#: cmdline/apt-get.cc:1995 msgid "Broken packages" msgstr "Pakiety są uszkodzone" -#: cmdline/apt-get.cc:2019 +#: cmdline/apt-get.cc:2021 msgid "The following extra packages will be installed:" msgstr "Zostaną zainstalowane następujące dodatkowe pakiety:" -#: cmdline/apt-get.cc:2109 +#: cmdline/apt-get.cc:2111 msgid "Suggested packages:" msgstr "Sugerowane pakiety:" -#: cmdline/apt-get.cc:2110 +#: cmdline/apt-get.cc:2112 msgid "Recommended packages:" msgstr "Polecane pakiety:" -#: cmdline/apt-get.cc:2152 +#: cmdline/apt-get.cc:2154 #, c-format msgid "Couldn't find package %s" msgstr "Nie udało się odnaleźć pakietu %s" -#: cmdline/apt-get.cc:2159 cmdline/apt-mark.cc:70 +#: cmdline/apt-get.cc:2161 cmdline/apt-mark.cc:70 #, c-format msgid "%s set to automatically installed.\n" msgstr "%s zaznaczony jako zainstalowany automatycznie.\n" -#: cmdline/apt-get.cc:2167 cmdline/apt-mark.cc:114 +#: cmdline/apt-get.cc:2169 cmdline/apt-mark.cc:114 msgid "" "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " "instead." @@ -843,48 +845,48 @@ msgstr "" "To polecenie jest przestarzałe. Prosimy używać \"apt-mark auto\" i \"apt-" "mark manual\"." -#: cmdline/apt-get.cc:2183 +#: cmdline/apt-get.cc:2185 msgid "Calculating upgrade... " msgstr "Obliczanie aktualizacji..." -#: cmdline/apt-get.cc:2186 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 msgid "Failed" msgstr "Nie udało się" -#: cmdline/apt-get.cc:2191 +#: cmdline/apt-get.cc:2193 msgid "Done" msgstr "Gotowe" -#: cmdline/apt-get.cc:2258 cmdline/apt-get.cc:2266 +#: cmdline/apt-get.cc:2260 cmdline/apt-get.cc:2268 msgid "Internal error, problem resolver broke stuff" msgstr "Błąd wewnętrzny, spowodowany przez moduł rozwiązywania problemów" -#: cmdline/apt-get.cc:2294 cmdline/apt-get.cc:2330 +#: cmdline/apt-get.cc:2296 cmdline/apt-get.cc:2332 msgid "Unable to lock the download directory" msgstr "Nie udało się zablokować katalogu pobierania" -#: cmdline/apt-get.cc:2386 +#: cmdline/apt-get.cc:2388 #, c-format msgid "Can't find a source to download version '%s' of '%s'" msgstr "Nie można znaleźć źródła do pobrania wersji \"%s\" pakietu \"%s\"" -#: cmdline/apt-get.cc:2391 +#: cmdline/apt-get.cc:2393 #, c-format msgid "Downloading %s %s" msgstr "Pobieranie %s %s" -#: cmdline/apt-get.cc:2451 +#: cmdline/apt-get.cc:2453 msgid "Must specify at least one package to fetch source for" msgstr "" "Należy podać przynajmniej jeden pakiet, dla którego mają zostać pobrane " "źródła" -#: cmdline/apt-get.cc:2491 cmdline/apt-get.cc:2803 +#: cmdline/apt-get.cc:2493 cmdline/apt-get.cc:2805 #, c-format msgid "Unable to find a source package for %s" msgstr "Nie udało się odnaleźć źródła dla pakietu %s" -#: cmdline/apt-get.cc:2508 +#: cmdline/apt-get.cc:2510 #, c-format msgid "" "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" @@ -894,7 +896,7 @@ msgstr "" "pod adresem:\n" "%s\n" -#: cmdline/apt-get.cc:2513 +#: cmdline/apt-get.cc:2515 #, c-format msgid "" "Please use:\n" @@ -906,70 +908,70 @@ msgstr "" "by pobrać najnowsze (prawdopodobnie jeszcze niewydane) poprawki tego " "pakietu.\n" -#: cmdline/apt-get.cc:2566 +#: cmdline/apt-get.cc:2568 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Pomijanie już pobranego pliku \"%s\"\n" -#: cmdline/apt-get.cc:2603 +#: cmdline/apt-get.cc:2605 #, c-format msgid "You don't have enough free space in %s" msgstr "W %s nie ma wystarczającej ilości wolnego miejsca" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:2612 +#: cmdline/apt-get.cc:2614 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "Konieczne pobranie %sB/%sB archiwów źródeł.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:2617 +#: cmdline/apt-get.cc:2619 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Konieczne pobranie %sB archiwów źródeł.\n" -#: cmdline/apt-get.cc:2623 +#: cmdline/apt-get.cc:2625 #, c-format msgid "Fetch source %s\n" msgstr "Pobieranie źródeł %s\n" -#: cmdline/apt-get.cc:2661 +#: cmdline/apt-get.cc:2663 msgid "Failed to fetch some archives." msgstr "Nie udało się pobrać niektórych archiwów." -#: cmdline/apt-get.cc:2692 +#: cmdline/apt-get.cc:2694 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "Pomijanie rozpakowania już rozpakowanego źródła w %s\n" -#: cmdline/apt-get.cc:2704 +#: cmdline/apt-get.cc:2706 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Polecenie rozpakowania \"%s\" zawiodło.\n" -#: cmdline/apt-get.cc:2705 +#: cmdline/apt-get.cc:2707 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "Proszę sprawdzić czy pakiet \"dpkg-dev\" jest zainstalowany.\n" -#: cmdline/apt-get.cc:2727 +#: cmdline/apt-get.cc:2729 #, c-format msgid "Build command '%s' failed.\n" msgstr "Polecenie budowania \"%s\" zawiodło.\n" -#: cmdline/apt-get.cc:2747 +#: cmdline/apt-get.cc:2749 msgid "Child process failed" msgstr "Proces potomny zawiódł" -#: cmdline/apt-get.cc:2766 +#: cmdline/apt-get.cc:2768 msgid "Must specify at least one package to check builddeps for" msgstr "" "Należy podać przynajmniej jeden pakiet, dla którego mają zostać sprawdzone " "zależności dla budowania" -#: cmdline/apt-get.cc:2791 +#: cmdline/apt-get.cc:2793 #, c-format msgid "" "No architecture information available for %s. See apt.conf(5) APT::" @@ -978,17 +980,17 @@ msgstr "" "Nie znaleziono informacji o architekturze dla %s. Proszę zapoznać się z apt." "conf(5) APT::Architectures" -#: cmdline/apt-get.cc:2815 cmdline/apt-get.cc:2818 +#: cmdline/apt-get.cc:2817 cmdline/apt-get.cc:2820 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "Nie udało się pobrać informacji o zależnościach dla budowania %s" -#: cmdline/apt-get.cc:2838 +#: cmdline/apt-get.cc:2840 #, c-format msgid "%s has no build depends.\n" msgstr "%s nie ma zależności dla budowania.\n" -#: cmdline/apt-get.cc:3008 +#: cmdline/apt-get.cc:3010 #, c-format msgid "" "%s dependency for %s can't be satisfied because %s is not allowed on '%s' " @@ -997,7 +999,7 @@ msgstr "" "Zależność %s od %s nie może zostać spełniona, ponieważ %s nie jest dozwolone " "w pakietach \"%s\"" -#: cmdline/apt-get.cc:3026 +#: cmdline/apt-get.cc:3028 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -1006,14 +1008,14 @@ msgstr "" "Zależność %s od %s nie może zostać spełniona, ponieważ nie znaleziono " "pakietu %s" -#: cmdline/apt-get.cc:3049 +#: cmdline/apt-get.cc:3051 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "Nie udało się spełnić zależności %s od %s: Zainstalowany pakiet %s jest zbyt " "nowy" -#: cmdline/apt-get.cc:3088 +#: cmdline/apt-get.cc:3090 #, c-format msgid "" "%s dependency for %s cannot be satisfied because candidate version of " @@ -1022,7 +1024,7 @@ msgstr "" "Zależność %s od %s nie może zostać spełniona, ponieważ kandydująca wersja " "pakietu %s nie spełnia wymagań wersji" -#: cmdline/apt-get.cc:3094 +#: cmdline/apt-get.cc:3096 #, c-format msgid "" "%s dependency for %s cannot be satisfied because package %s has no candidate " @@ -1031,30 +1033,30 @@ msgstr "" "Zależność %s od %s nie może zostać spełniona, ponieważ pakiet %s nie ma " "wersji kandydującej" -#: cmdline/apt-get.cc:3117 +#: cmdline/apt-get.cc:3119 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "Nie udało się spełnić zależności %s od %s: %s" -#: cmdline/apt-get.cc:3133 +#: cmdline/apt-get.cc:3135 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "Nie udało się spełnić zależności dla budowania %s." -#: cmdline/apt-get.cc:3138 +#: cmdline/apt-get.cc:3140 msgid "Failed to process build dependencies" msgstr "Nie udało się przetworzyć zależności dla budowania" -#: cmdline/apt-get.cc:3231 cmdline/apt-get.cc:3243 +#: cmdline/apt-get.cc:3233 cmdline/apt-get.cc:3245 #, c-format msgid "Changelog for %s (%s)" msgstr "Dziennik zmian %s (%s)" -#: cmdline/apt-get.cc:3366 +#: cmdline/apt-get.cc:3368 msgid "Supported modules:" msgstr "Obsługiwane moduły:" -#: cmdline/apt-get.cc:3407 +#: cmdline/apt-get.cc:3409 msgid "" "Usage: apt-get [options] command\n" " apt-get [options] install|remove pkg1 [pkg2 ...]\n" @@ -1142,7 +1144,7 @@ msgstr "" "apt-get(8), sources.list(5) i apt.conf(5).\n" " Ten APT ma moce Super Krowy.\n" -#: cmdline/apt-get.cc:3572 +#: cmdline/apt-get.cc:3574 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1772,7 +1774,7 @@ msgstr "" " -c=? Czyta wskazany plik konfiguracyjny.\n" " -o=? Ustawia dowolną opcję konfiguracji, np. -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1335 +#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1339 #, c-format msgid "Unable to write to %s" msgstr "Nie udało się pisać do %s" @@ -2821,7 +2823,7 @@ msgstr "Nieprawidłowa linia %u w liście źródeł %s (typ)" msgid "Type '%s' is not known on line %u in source list %s" msgstr "Typ \"%s\" jest nieznany w linii %u listy źródeł %s" -#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:896 +#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:898 #, c-format msgid "" "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " @@ -2831,12 +2833,12 @@ msgstr "" "5 apt.conf\" i zapoznać się z wpisem APT::Immediate-Configure aby dowiedzieć " "się więcej. (%d)" -#: apt-pkg/packagemanager.cc:473 apt-pkg/packagemanager.cc:503 +#: apt-pkg/packagemanager.cc:473 apt-pkg/packagemanager.cc:504 #, c-format msgid "Could not configure '%s'. " msgstr "Nie udało się skonfigurować \"%s\". " -#: apt-pkg/packagemanager.cc:545 +#: apt-pkg/packagemanager.cc:546 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2873,7 +2875,7 @@ msgstr "" msgid "Unable to correct problems, you have held broken packages." msgstr "Nie udało się naprawić problemów, zatrzymano uszkodzone pakiety." -#: apt-pkg/algorithms.cc:1574 apt-pkg/algorithms.cc:1576 +#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 msgid "" "Some index files failed to download. They have been ignored, or old ones " "used instead." @@ -3017,21 +3019,21 @@ msgid "Package %s %s was not found while processing file dependencies" msgstr "" "Pakiet %s %s nie został odnaleziony podczas przetwarzania zależności plików" -#: apt-pkg/pkgcachegen.cc:1146 +#: apt-pkg/pkgcachegen.cc:1150 #, c-format msgid "Couldn't stat source package list %s" msgstr "Nie udało się wykonać operacji stat na liście pakietów źródłowych %s" -#: apt-pkg/pkgcachegen.cc:1234 apt-pkg/pkgcachegen.cc:1338 -#: apt-pkg/pkgcachegen.cc:1344 apt-pkg/pkgcachegen.cc:1501 +#: apt-pkg/pkgcachegen.cc:1238 apt-pkg/pkgcachegen.cc:1342 +#: apt-pkg/pkgcachegen.cc:1348 apt-pkg/pkgcachegen.cc:1505 msgid "Reading package lists" msgstr "Czytanie list pakietów" -#: apt-pkg/pkgcachegen.cc:1251 +#: apt-pkg/pkgcachegen.cc:1255 msgid "Collecting File Provides" msgstr "Zbieranie zapewnień plików" -#: apt-pkg/pkgcachegen.cc:1443 apt-pkg/pkgcachegen.cc:1450 +#: apt-pkg/pkgcachegen.cc:1447 apt-pkg/pkgcachegen.cc:1454 msgid "IO Error saving source cache" msgstr "Błąd wejścia/wyjścia przy zapisywaniu podręcznego magazynu źródeł" diff --git a/po/pt.po b/po/pt.po index 0127d3f4c..05fcc2142 100644 --- a/po/pt.po +++ b/po/pt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2012-10-15 09:49+0200\n" +"POT-Creation-Date: 2013-03-14 08:05+0100\n" "PO-Revision-Date: 2012-06-29 15:45+0100\n" "Last-Translator: Miguel Figueiredo \n" "Language-Team: Portuguese \n" @@ -157,7 +157,7 @@ msgid " Version table:" msgstr " Tabela de Versão:" #: cmdline/apt-cache.cc:1683 cmdline/apt-cdrom.cc:198 cmdline/apt-config.cc:81 -#: cmdline/apt-get.cc:3361 cmdline/apt-mark.cc:375 +#: cmdline/apt-get.cc:3363 cmdline/apt-mark.cc:375 #: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:590 #: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147 #, c-format @@ -487,7 +487,7 @@ msgstr "" msgid "%s is already the newest version.\n" msgstr "%s já está na versão mais recente.\n" -#: cmdline/apt-get.cc:858 cmdline/apt-get.cc:2157 cmdline/apt-mark.cc:68 +#: cmdline/apt-get.cc:858 cmdline/apt-get.cc:2159 cmdline/apt-mark.cc:68 #, c-format msgid "%s set to manually installed.\n" msgstr "%s está definido para ser instalado manualmente.\n" @@ -596,8 +596,8 @@ msgstr "" msgid "After this operation, %sB disk space will be freed.\n" msgstr "Após esta operação, será libertado %sB de espaço em disco.\n" -#: cmdline/apt-get.cc:1228 cmdline/apt-get.cc:1231 cmdline/apt-get.cc:2589 -#: cmdline/apt-get.cc:2592 +#: cmdline/apt-get.cc:1228 cmdline/apt-get.cc:1231 cmdline/apt-get.cc:2591 +#: cmdline/apt-get.cc:2594 #, c-format msgid "Couldn't determine free space in %s" msgstr "Não foi possível determinar o espaço livre em %s" @@ -607,15 +607,17 @@ msgstr "Não foi possível determinar o espaço livre em %s" msgid "You don't have enough free space in %s." msgstr "Você não possui espaço livre suficiente em %s." -#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1277 +#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1279 msgid "Trivial Only specified but this is not a trivial operation." msgstr "Trivial Only especificado mas isto não é uma operação trivial." -#: cmdline/apt-get.cc:1259 +#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be +#. careful with hard to type or special characters (like non-breaking spaces) +#: cmdline/apt-get.cc:1261 msgid "Yes, do as I say!" msgstr "Sim, faça como eu digo!" -#: cmdline/apt-get.cc:1261 +#: cmdline/apt-get.cc:1263 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -626,28 +628,28 @@ msgstr "" "Para continuar escreva a frase '%s'\n" " ?] " -#: cmdline/apt-get.cc:1267 cmdline/apt-get.cc:1286 +#: cmdline/apt-get.cc:1269 cmdline/apt-get.cc:1288 msgid "Abort." msgstr "Abortado." -#: cmdline/apt-get.cc:1282 +#: cmdline/apt-get.cc:1284 msgid "Do you want to continue [Y/n]? " msgstr "Deseja continuar [Y/n]? " -#: cmdline/apt-get.cc:1354 cmdline/apt-get.cc:2654 apt-pkg/algorithms.cc:1548 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Falhou obter %s %s\n" -#: cmdline/apt-get.cc:1372 +#: cmdline/apt-get.cc:1374 msgid "Some files failed to download" msgstr "Falhou o download de alguns ficheiros" -#: cmdline/apt-get.cc:1373 cmdline/apt-get.cc:2666 +#: cmdline/apt-get.cc:1375 cmdline/apt-get.cc:2668 msgid "Download complete and in download only mode" msgstr "Download completo e em modo de fazer apenas o download" -#: cmdline/apt-get.cc:1379 +#: cmdline/apt-get.cc:1381 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -655,19 +657,19 @@ msgstr "" "Não foi possível obter alguns arquivos, tente talvez correr apt-get update " "ou tente com --fix-missing?" -#: cmdline/apt-get.cc:1383 +#: cmdline/apt-get.cc:1385 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix-missing e troca de mídia não são suportados actualmente" -#: cmdline/apt-get.cc:1388 +#: cmdline/apt-get.cc:1390 msgid "Unable to correct missing packages." msgstr "Não foi possível corrigir os pacotes em falta." -#: cmdline/apt-get.cc:1389 +#: cmdline/apt-get.cc:1391 msgid "Aborting install." msgstr "A abortar a instalação." -#: cmdline/apt-get.cc:1417 +#: cmdline/apt-get.cc:1419 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -681,35 +683,35 @@ msgstr[1] "" "Os seguintes pacotes desapareceram do seu sistema pois\n" "todos os ficheiros foram por outros pacotes:" -#: cmdline/apt-get.cc:1421 +#: cmdline/apt-get.cc:1423 msgid "Note: This is done automatically and on purpose by dpkg." msgstr "Nota: Isto foi feito automaticamente e intencionalmente pelo dpkg." -#: cmdline/apt-get.cc:1559 +#: cmdline/apt-get.cc:1561 #, c-format msgid "Ignore unavailable target release '%s' of package '%s'" msgstr "Ignorar o lançamento pretendido, não disponível, '%s' do pacote '%s'" -#: cmdline/apt-get.cc:1591 +#: cmdline/apt-get.cc:1593 #, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "A escolher '%s' como pacote pacote de código fonte em vez de '%s'\n" #. if (VerTag.empty() == false && Last == 0) -#: cmdline/apt-get.cc:1629 +#: cmdline/apt-get.cc:1631 #, c-format msgid "Ignore unavailable version '%s' of package '%s'" msgstr "Ignorar a versão '%s', não disponível, do pacote '%s'" -#: cmdline/apt-get.cc:1645 +#: cmdline/apt-get.cc:1647 msgid "The update command takes no arguments" msgstr "O comando update não leva argumentos" -#: cmdline/apt-get.cc:1711 +#: cmdline/apt-get.cc:1713 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "Não é suposto nós apagarmos coisas, não pode iniciar o AutoRemover" -#: cmdline/apt-get.cc:1815 +#: cmdline/apt-get.cc:1817 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -727,15 +729,15 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1818 cmdline/apt-get.cc:1987 +#: cmdline/apt-get.cc:1820 cmdline/apt-get.cc:1989 msgid "The following information may help to resolve the situation:" msgstr "A seguinte informação pode ajudar a resolver a situação:" -#: cmdline/apt-get.cc:1822 +#: cmdline/apt-get.cc:1824 msgid "Internal Error, AutoRemover broke stuff" msgstr "Erro Interno, o AutoRemover estragou coisas" -#: cmdline/apt-get.cc:1829 +#: cmdline/apt-get.cc:1831 msgid "" "The following package was automatically installed and is no longer required:" msgid_plural "" @@ -747,7 +749,7 @@ msgstr[1] "" "Os seguintes pacotes foram instalados automaticamente e já não são " "necessários:" -#: cmdline/apt-get.cc:1833 +#: cmdline/apt-get.cc:1835 #, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -756,21 +758,21 @@ msgstr[0] "O pacote %lu foi instalado automaticamente e já não é necessário. msgstr[1] "" "Os pacotes %lu foram instalados automaticamente e já não são necessários.\n" -#: cmdline/apt-get.cc:1835 +#: cmdline/apt-get.cc:1837 msgid "Use 'apt-get autoremove' to remove it." msgid_plural "Use 'apt-get autoremove' to remove them." msgstr[0] "Utilize 'apt-get autoremove' para o remover." msgstr[1] "Utilize 'apt-get autoremove' para os remover." -#: cmdline/apt-get.cc:1854 +#: cmdline/apt-get.cc:1856 msgid "Internal error, AllUpgrade broke stuff" msgstr "Erro Interno, AllUpgrade estragou algo" -#: cmdline/apt-get.cc:1953 +#: cmdline/apt-get.cc:1955 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "Você deve querer executar 'apt-get -f install' para corrigir estes:" -#: cmdline/apt-get.cc:1957 +#: cmdline/apt-get.cc:1959 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -778,7 +780,7 @@ msgstr "" "Dependências não satisfeitas. Tente 'apt-get -f install' sem nenhum pacote " "(ou especifique uma solução)." -#: cmdline/apt-get.cc:1972 +#: cmdline/apt-get.cc:1974 msgid "" "Some packages could not be installed. This may mean that you have\n" "requested an impossible situation or if you are using the unstable\n" @@ -790,33 +792,33 @@ msgstr "" "distribuição unstable em que alguns pacotes pedidos ainda não foram \n" "criados ou foram movidos do Incoming." -#: cmdline/apt-get.cc:1993 +#: cmdline/apt-get.cc:1995 msgid "Broken packages" msgstr "Pacotes estragados" -#: cmdline/apt-get.cc:2019 +#: cmdline/apt-get.cc:2021 msgid "The following extra packages will be installed:" msgstr "Os seguintes pacotes extra serão instalados:" -#: cmdline/apt-get.cc:2109 +#: cmdline/apt-get.cc:2111 msgid "Suggested packages:" msgstr "Pacotes sugeridos:" -#: cmdline/apt-get.cc:2110 +#: cmdline/apt-get.cc:2112 msgid "Recommended packages:" msgstr "Pacotes recomendados:" -#: cmdline/apt-get.cc:2152 +#: cmdline/apt-get.cc:2154 #, c-format msgid "Couldn't find package %s" msgstr "Impossível encontrar o pacote %s" -#: cmdline/apt-get.cc:2159 cmdline/apt-mark.cc:70 +#: cmdline/apt-get.cc:2161 cmdline/apt-mark.cc:70 #, c-format msgid "%s set to automatically installed.\n" msgstr "%s está definido para ser instalado automaticamente.\n" -#: cmdline/apt-get.cc:2167 cmdline/apt-mark.cc:114 +#: cmdline/apt-get.cc:2169 cmdline/apt-mark.cc:114 msgid "" "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " "instead." @@ -824,46 +826,46 @@ msgstr "" "Este comando foi depreceado. Em vez disso, por favor utilize 'apt-mark auto' " "e 'apt-mark manual'." -#: cmdline/apt-get.cc:2183 +#: cmdline/apt-get.cc:2185 msgid "Calculating upgrade... " msgstr "A calcular a actualização... " -#: cmdline/apt-get.cc:2186 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 msgid "Failed" msgstr "Falhou" -#: cmdline/apt-get.cc:2191 +#: cmdline/apt-get.cc:2193 msgid "Done" msgstr "Pronto" -#: cmdline/apt-get.cc:2258 cmdline/apt-get.cc:2266 +#: cmdline/apt-get.cc:2260 cmdline/apt-get.cc:2268 msgid "Internal error, problem resolver broke stuff" msgstr "Erro Interno, o solucionador de problemas estragou coisas" -#: cmdline/apt-get.cc:2294 cmdline/apt-get.cc:2330 +#: cmdline/apt-get.cc:2296 cmdline/apt-get.cc:2332 msgid "Unable to lock the download directory" msgstr "Impossível criar acesso exclusivo ao directório de downloads" -#: cmdline/apt-get.cc:2386 +#: cmdline/apt-get.cc:2388 #, c-format msgid "Can't find a source to download version '%s' of '%s'" msgstr "Não conseguiu encontrar uma fonte para obter a versão '%s' de '%s'" -#: cmdline/apt-get.cc:2391 +#: cmdline/apt-get.cc:2393 #, c-format msgid "Downloading %s %s" msgstr "A obter %s %s" -#: cmdline/apt-get.cc:2451 +#: cmdline/apt-get.cc:2453 msgid "Must specify at least one package to fetch source for" msgstr "Tem de especificar pelo menos um pacote para obter o código fonte de" -#: cmdline/apt-get.cc:2491 cmdline/apt-get.cc:2803 +#: cmdline/apt-get.cc:2493 cmdline/apt-get.cc:2805 #, c-format msgid "Unable to find a source package for %s" msgstr "Não foi possível encontrar um pacote de código fonte para %s" -#: cmdline/apt-get.cc:2508 +#: cmdline/apt-get.cc:2510 #, c-format msgid "" "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" @@ -873,7 +875,7 @@ msgstr "" "'%s' em:\n" "%s\n" -#: cmdline/apt-get.cc:2513 +#: cmdline/apt-get.cc:2515 #, c-format msgid "" "Please use:\n" @@ -884,71 +886,71 @@ msgstr "" "bzr branch %s\n" "para obter as últimas actualizações (possivelmente por lançar) ao pacote.\n" -#: cmdline/apt-get.cc:2566 +#: cmdline/apt-get.cc:2568 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "A saltar o ficheiro '%s', já tinha sido feito download'\n" -#: cmdline/apt-get.cc:2603 +#: cmdline/apt-get.cc:2605 #, c-format msgid "You don't have enough free space in %s" msgstr "Você não possui espaço livre suficiente em %s" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:2612 +#: cmdline/apt-get.cc:2614 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "É necessário obter %sB/%sB de arquivos de código fonte.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:2617 +#: cmdline/apt-get.cc:2619 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "É necessário obter %sB de arquivos de código fonte.\n" -#: cmdline/apt-get.cc:2623 +#: cmdline/apt-get.cc:2625 #, c-format msgid "Fetch source %s\n" msgstr "Obter código fonte %s\n" -#: cmdline/apt-get.cc:2661 +#: cmdline/apt-get.cc:2663 msgid "Failed to fetch some archives." msgstr "Falhou obter alguns arquivos." -#: cmdline/apt-get.cc:2692 +#: cmdline/apt-get.cc:2694 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "" "A saltar a descompactação do pacote de código fonte já descompactado em %s\n" -#: cmdline/apt-get.cc:2704 +#: cmdline/apt-get.cc:2706 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "O comando de descompactação '%s' falhou.\n" -#: cmdline/apt-get.cc:2705 +#: cmdline/apt-get.cc:2707 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "Verifique se o pacote 'dpkg-dev' está instalado.\n" -#: cmdline/apt-get.cc:2727 +#: cmdline/apt-get.cc:2729 #, c-format msgid "Build command '%s' failed.\n" msgstr "O comando de compilação '%s' falhou.\n" -#: cmdline/apt-get.cc:2747 +#: cmdline/apt-get.cc:2749 msgid "Child process failed" msgstr "O processo filho falhou" -#: cmdline/apt-get.cc:2766 +#: cmdline/apt-get.cc:2768 msgid "Must specify at least one package to check builddeps for" msgstr "" "Deve especificar pelo menos um pacote para verificar as dependências de " "compilação" -#: cmdline/apt-get.cc:2791 +#: cmdline/apt-get.cc:2793 #, c-format msgid "" "No architecture information available for %s. See apt.conf(5) APT::" @@ -957,18 +959,18 @@ msgstr "" "Nenhuma informação de arquitectura disponível para %s. Para configuração " "veja apt.conf(5) APT::Architectures" -#: cmdline/apt-get.cc:2815 cmdline/apt-get.cc:2818 +#: cmdline/apt-get.cc:2817 cmdline/apt-get.cc:2820 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "" "Não foi possível obter informações de dependências de compilação para %s" -#: cmdline/apt-get.cc:2838 +#: cmdline/apt-get.cc:2840 #, c-format msgid "%s has no build depends.\n" msgstr "%s não tem dependências de compilação.\n" -#: cmdline/apt-get.cc:3008 +#: cmdline/apt-get.cc:3010 #, c-format msgid "" "%s dependency for %s can't be satisfied because %s is not allowed on '%s' " @@ -977,7 +979,7 @@ msgstr "" "a dependência de %s por %s não pode ser satisfeita porque %s não é permitido " "em pacotes '%s'" -#: cmdline/apt-get.cc:3026 +#: cmdline/apt-get.cc:3028 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -986,14 +988,14 @@ msgstr "" "a dependência de %s para %s não pôde ser satisfeita porque o pacote %s não " "pôde ser encontrado" -#: cmdline/apt-get.cc:3049 +#: cmdline/apt-get.cc:3051 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "Falha ao satisfazer a dependência %s para %s: O pacote instalado %s é " "demasiado novo" -#: cmdline/apt-get.cc:3088 +#: cmdline/apt-get.cc:3090 #, c-format msgid "" "%s dependency for %s cannot be satisfied because candidate version of " @@ -1002,7 +1004,7 @@ msgstr "" "a dependência de %s para %s não pode ser satisfeita porque a versão " "candidata do pacote %s não pode satisfazer os requisitos de versão" -#: cmdline/apt-get.cc:3094 +#: cmdline/apt-get.cc:3096 #, c-format msgid "" "%s dependency for %s cannot be satisfied because package %s has no candidate " @@ -1011,30 +1013,30 @@ msgstr "" "a dependência de %s para %s não pode ser satisfeita porque o pacote %s não " "tem versão candidata" -#: cmdline/apt-get.cc:3117 +#: cmdline/apt-get.cc:3119 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "Falha ao satisfazer a dependência %s para %s: %s" -#: cmdline/apt-get.cc:3133 +#: cmdline/apt-get.cc:3135 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "Não foi possível satisfazer as dependências de compilação para %s." -#: cmdline/apt-get.cc:3138 +#: cmdline/apt-get.cc:3140 msgid "Failed to process build dependencies" msgstr "Falhou processar as dependências de compilação" -#: cmdline/apt-get.cc:3231 cmdline/apt-get.cc:3243 +#: cmdline/apt-get.cc:3233 cmdline/apt-get.cc:3245 #, c-format msgid "Changelog for %s (%s)" msgstr "Changlog para %s (%s)" -#: cmdline/apt-get.cc:3366 +#: cmdline/apt-get.cc:3368 msgid "Supported modules:" msgstr "Módulos Suportados:" -#: cmdline/apt-get.cc:3407 +#: cmdline/apt-get.cc:3409 msgid "" "Usage: apt-get [options] command\n" " apt-get [options] install|remove pkg1 [pkg2 ...]\n" @@ -1124,7 +1126,7 @@ msgstr "" "apt-get(8), sources.list(5) e apt.conf(5)\n" " Este APT tem Poderes de Super Vaca.\n" -#: cmdline/apt-get.cc:3572 +#: cmdline/apt-get.cc:3574 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1749,7 +1751,7 @@ msgstr "" " -o=? Definir uma opção arbitrária de configuração, p.e.: -o dir::cache=/" "tmp\n" -#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1335 +#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1339 #, c-format msgid "Unable to write to %s" msgstr "Não conseguiu escrever para %s" @@ -2799,7 +2801,7 @@ msgstr "Linha mal formada %u na lista de fontes %s (tipo)" msgid "Type '%s' is not known on line %u in source list %s" msgstr "O tipo '%s' não é conhecido na linha %u na lista de fontes %s" -#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:896 +#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:898 #, c-format msgid "" "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " @@ -2808,12 +2810,12 @@ msgstr "" "Não foi possível proceder à configuração imediata em '%s'. Para detalhes, " "por favor veja man 5 apt.conf em APT::Immediate-Configure. (%d)" -#: apt-pkg/packagemanager.cc:473 apt-pkg/packagemanager.cc:503 +#: apt-pkg/packagemanager.cc:473 apt-pkg/packagemanager.cc:504 #, c-format msgid "Could not configure '%s'. " msgstr "Não pode configurar '%s'. " -#: apt-pkg/packagemanager.cc:545 +#: apt-pkg/packagemanager.cc:546 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2852,7 +2854,7 @@ msgstr "" "Não foi possível corrigir problemas, você tem pacotes mantidos (hold) " "estragados." -#: apt-pkg/algorithms.cc:1574 apt-pkg/algorithms.cc:1576 +#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 msgid "" "Some index files failed to download. They have been ignored, or old ones " "used instead." @@ -3005,21 +3007,21 @@ msgid "Package %s %s was not found while processing file dependencies" msgstr "" "O pacote %s %s não foi encontrado ao processar as dependências de ficheiros" -#: apt-pkg/pkgcachegen.cc:1146 +#: apt-pkg/pkgcachegen.cc:1150 #, c-format msgid "Couldn't stat source package list %s" msgstr "Não foi possível executar stat à lista de pacotes de código fonte %s" -#: apt-pkg/pkgcachegen.cc:1234 apt-pkg/pkgcachegen.cc:1338 -#: apt-pkg/pkgcachegen.cc:1344 apt-pkg/pkgcachegen.cc:1501 +#: apt-pkg/pkgcachegen.cc:1238 apt-pkg/pkgcachegen.cc:1342 +#: apt-pkg/pkgcachegen.cc:1348 apt-pkg/pkgcachegen.cc:1505 msgid "Reading package lists" msgstr "A ler as listas de pacotes" -#: apt-pkg/pkgcachegen.cc:1251 +#: apt-pkg/pkgcachegen.cc:1255 msgid "Collecting File Provides" msgstr "A obter File Provides" -#: apt-pkg/pkgcachegen.cc:1443 apt-pkg/pkgcachegen.cc:1450 +#: apt-pkg/pkgcachegen.cc:1447 apt-pkg/pkgcachegen.cc:1454 msgid "IO Error saving source cache" msgstr "Erro de I/O ao gravar a cache de código fonte" diff --git a/po/pt_BR.po b/po/pt_BR.po index 6d578fd09..593a509e3 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2012-10-15 09:49+0200\n" +"POT-Creation-Date: 2013-03-14 08:05+0100\n" "PO-Revision-Date: 2008-11-17 02:33-0200\n" "Last-Translator: Felipe Augusto van de Wiel (faw) \n" "Language-Team: Brazilian Portuguese \n" -"POT-Creation-Date: 2012-10-15 09:49+0200\n" +"POT-Creation-Date: 2013-03-14 08:05+0100\n" "PO-Revision-Date: 2008-11-15 02:21+0200\n" "Last-Translator: Eddy Petrișor \n" "Language-Team: Romanian \n" @@ -158,7 +158,7 @@ msgid " Version table:" msgstr " Tabela de versiuni:" #: cmdline/apt-cache.cc:1683 cmdline/apt-cdrom.cc:198 cmdline/apt-config.cc:81 -#: cmdline/apt-get.cc:3361 cmdline/apt-mark.cc:375 +#: cmdline/apt-get.cc:3363 cmdline/apt-mark.cc:375 #: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:590 #: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147 #, c-format @@ -487,7 +487,7 @@ msgstr "Reinstalarea lui %s nu este posibilă, nu poate fi descărcat.\n" msgid "%s is already the newest version.\n" msgstr "%s este deja la cea mai nouă versiune.\n" -#: cmdline/apt-get.cc:858 cmdline/apt-get.cc:2157 cmdline/apt-mark.cc:68 +#: cmdline/apt-get.cc:858 cmdline/apt-get.cc:2159 cmdline/apt-mark.cc:68 #, c-format msgid "%s set to manually installed.\n" msgstr "%s este marcat ca fiind instalat manual.\n" @@ -595,8 +595,8 @@ msgstr "După această operație vor fi folosiți din disc încă %sB.\n" msgid "After this operation, %sB disk space will be freed.\n" msgstr "După această operație se vor elibera %sB din spațiul ocupat pe disc.\n" -#: cmdline/apt-get.cc:1228 cmdline/apt-get.cc:1231 cmdline/apt-get.cc:2589 -#: cmdline/apt-get.cc:2592 +#: cmdline/apt-get.cc:1228 cmdline/apt-get.cc:1231 cmdline/apt-get.cc:2591 +#: cmdline/apt-get.cc:2594 #, c-format msgid "Couldn't determine free space in %s" msgstr "N-am putut determina spațiul disponibil în %s" @@ -606,16 +606,18 @@ msgstr "N-am putut determina spațiul disponibil în %s" msgid "You don't have enough free space in %s." msgstr "Nu aveți suficient spațiu în %s." -#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1277 +#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1279 msgid "Trivial Only specified but this is not a trivial operation." msgstr "" "A fost specificat 'doar neimportant' dar nu este o operațiune neimportantă." -#: cmdline/apt-get.cc:1259 +#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be +#. careful with hard to type or special characters (like non-breaking spaces) +#: cmdline/apt-get.cc:1261 msgid "Yes, do as I say!" msgstr "Da, fă cum îți spun!" -#: cmdline/apt-get.cc:1261 +#: cmdline/apt-get.cc:1263 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -626,28 +628,28 @@ msgstr "" "Pentru a continua tastați fraza '%s'\n" " ?] " -#: cmdline/apt-get.cc:1267 cmdline/apt-get.cc:1286 +#: cmdline/apt-get.cc:1269 cmdline/apt-get.cc:1288 msgid "Abort." msgstr "Renunțare." -#: cmdline/apt-get.cc:1282 +#: cmdline/apt-get.cc:1284 msgid "Do you want to continue [Y/n]? " msgstr "Vreți să continuați [Y/n]? " -#: cmdline/apt-get.cc:1354 cmdline/apt-get.cc:2654 apt-pkg/algorithms.cc:1548 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Eșec la aducerea lui %s %s\n" -#: cmdline/apt-get.cc:1372 +#: cmdline/apt-get.cc:1374 msgid "Some files failed to download" msgstr "Descărcarea unor fișiere a eșuat" -#: cmdline/apt-get.cc:1373 cmdline/apt-get.cc:2666 +#: cmdline/apt-get.cc:1375 cmdline/apt-get.cc:2668 msgid "Download complete and in download only mode" msgstr "Descărcare completă și în modul doar descărcare" -#: cmdline/apt-get.cc:1379 +#: cmdline/apt-get.cc:1381 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -655,19 +657,19 @@ msgstr "" "Nu s-au putut aduce unele arhive, poate ar fi o idee bună să rulați 'apt-get " "update' sau încercați cu --fix-missing?" -#: cmdline/apt-get.cc:1383 +#: cmdline/apt-get.cc:1385 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix-missing și schimbul de mediu nu este deocamdată suportat" -#: cmdline/apt-get.cc:1388 +#: cmdline/apt-get.cc:1390 msgid "Unable to correct missing packages." msgstr "Nu pot corecta pachetele lipsă." -#: cmdline/apt-get.cc:1389 +#: cmdline/apt-get.cc:1391 msgid "Aborting install." msgstr "Abandonez instalarea." -#: cmdline/apt-get.cc:1417 +#: cmdline/apt-get.cc:1419 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -678,36 +680,36 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: cmdline/apt-get.cc:1421 +#: cmdline/apt-get.cc:1423 msgid "Note: This is done automatically and on purpose by dpkg." msgstr "" -#: cmdline/apt-get.cc:1559 +#: cmdline/apt-get.cc:1561 #, c-format msgid "Ignore unavailable target release '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:1591 +#: cmdline/apt-get.cc:1593 #, fuzzy, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "Nu pot determina starea listei surse de pachete %s" #. if (VerTag.empty() == false && Last == 0) -#: cmdline/apt-get.cc:1629 +#: cmdline/apt-get.cc:1631 #, c-format msgid "Ignore unavailable version '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:1645 +#: cmdline/apt-get.cc:1647 msgid "The update command takes no arguments" msgstr "Comanda de actualizare nu are argumente" # XXX: orice sugestie este bine-venită -#: cmdline/apt-get.cc:1711 +#: cmdline/apt-get.cc:1713 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "Nu este voie să se șteargă lucruri, nu se poate porni AutoRemover" -#: cmdline/apt-get.cc:1815 +#: cmdline/apt-get.cc:1817 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -726,15 +728,15 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1818 cmdline/apt-get.cc:1987 +#: cmdline/apt-get.cc:1820 cmdline/apt-get.cc:1989 msgid "The following information may help to resolve the situation:" msgstr "Următoarele informații ar putea să vă ajute la rezolvarea situației:" -#: cmdline/apt-get.cc:1822 +#: cmdline/apt-get.cc:1824 msgid "Internal Error, AutoRemover broke stuff" msgstr "Eroare internă, AutoRemover a deteriorat diverse chestiuni" -#: cmdline/apt-get.cc:1829 +#: cmdline/apt-get.cc:1831 #, fuzzy msgid "" "The following package was automatically installed and is no longer required:" @@ -748,7 +750,7 @@ msgstr[1] "" msgstr[2] "" "Următoarele pachete au fost instalate automat și nu mai sunt necesare:" -#: cmdline/apt-get.cc:1833 +#: cmdline/apt-get.cc:1835 #, fuzzy, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -760,7 +762,7 @@ msgstr[1] "" msgstr[2] "" "Următoarele pachete au fost instalate automat și nu mai sunt necesare:" -#: cmdline/apt-get.cc:1835 +#: cmdline/apt-get.cc:1837 #, fuzzy msgid "Use 'apt-get autoremove' to remove it." msgid_plural "Use 'apt-get autoremove' to remove them." @@ -768,15 +770,15 @@ msgstr[0] "Folosiți 'apt-get autoremove' pentru a le șterge." msgstr[1] "Folosiți 'apt-get autoremove' pentru a le șterge." msgstr[2] "Folosiți 'apt-get autoremove' pentru a le șterge." -#: cmdline/apt-get.cc:1854 +#: cmdline/apt-get.cc:1856 msgid "Internal error, AllUpgrade broke stuff" msgstr "Eroare internă, înnoire totală a defectat diverse chestiuni" -#: cmdline/apt-get.cc:1953 +#: cmdline/apt-get.cc:1955 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "Ați putea porni 'apt-get -f install' pentru a corecta acestea:" -#: cmdline/apt-get.cc:1957 +#: cmdline/apt-get.cc:1959 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -784,7 +786,7 @@ msgstr "" "Dependențe neîndeplinite. Încercați 'apt-get -f install' fără nici un pachet " "(sau oferiți o altă soluție)." -#: cmdline/apt-get.cc:1972 +#: cmdline/apt-get.cc:1974 msgid "" "Some packages could not be installed. This may mean that you have\n" "requested an impossible situation or if you are using the unstable\n" @@ -797,86 +799,86 @@ msgstr "" "pachete\n" "cerute n-au fost create încă sau au fost mutate din Incoming." -#: cmdline/apt-get.cc:1993 +#: cmdline/apt-get.cc:1995 msgid "Broken packages" msgstr "Pachete deteriorate" -#: cmdline/apt-get.cc:2019 +#: cmdline/apt-get.cc:2021 msgid "The following extra packages will be installed:" msgstr "Următoarele extra pachete vor fi instalate:" -#: cmdline/apt-get.cc:2109 +#: cmdline/apt-get.cc:2111 msgid "Suggested packages:" msgstr "Pachete sugerate:" -#: cmdline/apt-get.cc:2110 +#: cmdline/apt-get.cc:2112 msgid "Recommended packages:" msgstr "Pachete recomandate:" -#: cmdline/apt-get.cc:2152 +#: cmdline/apt-get.cc:2154 #, c-format msgid "Couldn't find package %s" msgstr "Nu pot găsi pachetul %s" -#: cmdline/apt-get.cc:2159 cmdline/apt-mark.cc:70 +#: cmdline/apt-get.cc:2161 cmdline/apt-mark.cc:70 #, fuzzy, c-format msgid "%s set to automatically installed.\n" msgstr "%s este marcat ca fiind instalat manual.\n" -#: cmdline/apt-get.cc:2167 cmdline/apt-mark.cc:114 +#: cmdline/apt-get.cc:2169 cmdline/apt-mark.cc:114 msgid "" "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " "instead." msgstr "" -#: cmdline/apt-get.cc:2183 +#: cmdline/apt-get.cc:2185 msgid "Calculating upgrade... " msgstr "Calculez înnoirea... " -#: cmdline/apt-get.cc:2186 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 msgid "Failed" msgstr "Eșec" -#: cmdline/apt-get.cc:2191 +#: cmdline/apt-get.cc:2193 msgid "Done" msgstr "Terminat" -#: cmdline/apt-get.cc:2258 cmdline/apt-get.cc:2266 +#: cmdline/apt-get.cc:2260 cmdline/apt-get.cc:2268 msgid "Internal error, problem resolver broke stuff" msgstr "" "Eroare internă, rezolvatorul de probleme a deteriorat diverse chestiuni" -#: cmdline/apt-get.cc:2294 cmdline/apt-get.cc:2330 +#: cmdline/apt-get.cc:2296 cmdline/apt-get.cc:2332 msgid "Unable to lock the download directory" msgstr "Nu s-a putut bloca directorul de descărcare" -#: cmdline/apt-get.cc:2386 +#: cmdline/apt-get.cc:2388 #, c-format msgid "Can't find a source to download version '%s' of '%s'" msgstr "" -#: cmdline/apt-get.cc:2391 +#: cmdline/apt-get.cc:2393 #, c-format msgid "Downloading %s %s" msgstr "" -#: cmdline/apt-get.cc:2451 +#: cmdline/apt-get.cc:2453 msgid "Must specify at least one package to fetch source for" msgstr "Trebuie specificat cel puțin un pachet pentru a-i aduce sursa" -#: cmdline/apt-get.cc:2491 cmdline/apt-get.cc:2803 +#: cmdline/apt-get.cc:2493 cmdline/apt-get.cc:2805 #, c-format msgid "Unable to find a source package for %s" msgstr "Nu s-a putut găsi o sursă pachet pentru %s" -#: cmdline/apt-get.cc:2508 +#: cmdline/apt-get.cc:2510 #, c-format msgid "" "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" "%s\n" msgstr "" -#: cmdline/apt-get.cc:2513 +#: cmdline/apt-get.cc:2515 #, c-format msgid "" "Please use:\n" @@ -884,87 +886,87 @@ msgid "" "to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -#: cmdline/apt-get.cc:2566 +#: cmdline/apt-get.cc:2568 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Sar peste fișierul deja descărcat '%s'\n" -#: cmdline/apt-get.cc:2603 +#: cmdline/apt-get.cc:2605 #, c-format msgid "You don't have enough free space in %s" msgstr "Nu aveți suficient spațiu în %s" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:2612 +#: cmdline/apt-get.cc:2614 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "Este nevoie să descărcați %sB/%sB din arhivele surselor.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:2617 +#: cmdline/apt-get.cc:2619 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Este nevoie să descărcați %sB din arhivele surselor.\n" -#: cmdline/apt-get.cc:2623 +#: cmdline/apt-get.cc:2625 #, c-format msgid "Fetch source %s\n" msgstr "Aducere sursa %s\n" -#: cmdline/apt-get.cc:2661 +#: cmdline/apt-get.cc:2663 msgid "Failed to fetch some archives." msgstr "Eșec la aducerea unor arhive." -#: cmdline/apt-get.cc:2692 +#: cmdline/apt-get.cc:2694 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "Sar peste despachetarea sursei deja despachetate în %s\n" -#: cmdline/apt-get.cc:2704 +#: cmdline/apt-get.cc:2706 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Comanda de despachetare '%s' eșuată.\n" -#: cmdline/apt-get.cc:2705 +#: cmdline/apt-get.cc:2707 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "Verificați dacă pachetul 'dpkg-dev' este instalat.\n" -#: cmdline/apt-get.cc:2727 +#: cmdline/apt-get.cc:2729 #, c-format msgid "Build command '%s' failed.\n" msgstr "Comanda de construire '%s' eșuată.\n" -#: cmdline/apt-get.cc:2747 +#: cmdline/apt-get.cc:2749 msgid "Child process failed" msgstr "Procesul copil a eșuat" -#: cmdline/apt-get.cc:2766 +#: cmdline/apt-get.cc:2768 msgid "Must specify at least one package to check builddeps for" msgstr "" "Trebuie specificat cel puțin un pachet pentru a-i verifica dependențele " "înglobate" -#: cmdline/apt-get.cc:2791 +#: cmdline/apt-get.cc:2793 #, c-format msgid "" "No architecture information available for %s. See apt.conf(5) APT::" "Architectures for setup" msgstr "" -#: cmdline/apt-get.cc:2815 cmdline/apt-get.cc:2818 +#: cmdline/apt-get.cc:2817 cmdline/apt-get.cc:2820 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "Nu pot prelua informațiile despre dependențele înglobate ale lui %s" -#: cmdline/apt-get.cc:2838 +#: cmdline/apt-get.cc:2840 #, c-format msgid "%s has no build depends.\n" msgstr "%s nu are dependențe înglobate.\n" -#: cmdline/apt-get.cc:3008 +#: cmdline/apt-get.cc:3010 #, fuzzy, c-format msgid "" "%s dependency for %s can't be satisfied because %s is not allowed on '%s' " @@ -973,7 +975,7 @@ msgstr "" "Dependența lui %s de %s nu poate fi satisfăcută deoarece pachetul %s nu " "poate fi găsit" -#: cmdline/apt-get.cc:3026 +#: cmdline/apt-get.cc:3028 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -982,14 +984,14 @@ msgstr "" "Dependența lui %s de %s nu poate fi satisfăcută deoarece pachetul %s nu " "poate fi găsit" -#: cmdline/apt-get.cc:3049 +#: cmdline/apt-get.cc:3051 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "Eșec la satisfacerea dependenței %s pentru %s: Pachetul instalat %s este " "prea nou" -#: cmdline/apt-get.cc:3088 +#: cmdline/apt-get.cc:3090 #, fuzzy, c-format msgid "" "%s dependency for %s cannot be satisfied because candidate version of " @@ -998,7 +1000,7 @@ msgstr "" "Dependența lui %s de %s nu poate fi satisfăcută deoarece nici o versiune " "disponibilă a pachetului %s nu poate satisface versiunile cerute" -#: cmdline/apt-get.cc:3094 +#: cmdline/apt-get.cc:3096 #, fuzzy, c-format msgid "" "%s dependency for %s cannot be satisfied because package %s has no candidate " @@ -1007,30 +1009,30 @@ msgstr "" "Dependența lui %s de %s nu poate fi satisfăcută deoarece pachetul %s nu " "poate fi găsit" -#: cmdline/apt-get.cc:3117 +#: cmdline/apt-get.cc:3119 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "Eșec la satisfacerea dependenței %s pentru %s: %s" -#: cmdline/apt-get.cc:3133 +#: cmdline/apt-get.cc:3135 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "Dependențele înglobate pentru %s nu pot fi satisfăcute." -#: cmdline/apt-get.cc:3138 +#: cmdline/apt-get.cc:3140 msgid "Failed to process build dependencies" msgstr "Eșec la prelucrarea dependențelor de compilare" -#: cmdline/apt-get.cc:3231 cmdline/apt-get.cc:3243 +#: cmdline/apt-get.cc:3233 cmdline/apt-get.cc:3245 #, fuzzy, c-format msgid "Changelog for %s (%s)" msgstr "Conectare la %s (%s)" -#: cmdline/apt-get.cc:3366 +#: cmdline/apt-get.cc:3368 msgid "Supported modules:" msgstr "Module suportate:" -#: cmdline/apt-get.cc:3407 +#: cmdline/apt-get.cc:3409 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1119,7 +1121,7 @@ msgstr "" "pentru mai multe informații și opțiuni.\n" " Acest APT are puterile unei Super Vaci.\n" -#: cmdline/apt-get.cc:3572 +#: cmdline/apt-get.cc:3574 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1718,7 +1720,7 @@ msgstr "" " -c=? Citește acest fișier de configurare\n" " -o=? Ajustează o opțiune de configurare arbitrară, ex. -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1335 +#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1339 #, c-format msgid "Unable to write to %s" msgstr "Nu s-a putut scrie în %s" @@ -2768,19 +2770,19 @@ msgstr "Linie greșită %u în lista sursă %s (tip)" msgid "Type '%s' is not known on line %u in source list %s" msgstr "Tipul '%s' nu este cunoscut în linia %u din lista sursă %s" -#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:896 +#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:898 #, c-format msgid "" "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " "under APT::Immediate-Configure for details. (%d)" msgstr "" -#: apt-pkg/packagemanager.cc:473 apt-pkg/packagemanager.cc:503 +#: apt-pkg/packagemanager.cc:473 apt-pkg/packagemanager.cc:504 #, fuzzy, c-format msgid "Could not configure '%s'. " msgstr "Nu s-a putut deschide fișierul %s" -#: apt-pkg/packagemanager.cc:545 +#: apt-pkg/packagemanager.cc:546 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2816,7 +2818,7 @@ msgstr "" msgid "Unable to correct problems, you have held broken packages." msgstr "Nu pot corecta problema, ați ținut pachete deteriorate." -#: apt-pkg/algorithms.cc:1574 apt-pkg/algorithms.cc:1576 +#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 #, fuzzy msgid "" "Some index files failed to download. They have been ignored, or old ones " @@ -2968,21 +2970,21 @@ msgid "Package %s %s was not found while processing file dependencies" msgstr "" "Nu s-a găsit pachetul %s %s în timpul procesării dependențelor de fișiere" -#: apt-pkg/pkgcachegen.cc:1146 +#: apt-pkg/pkgcachegen.cc:1150 #, c-format msgid "Couldn't stat source package list %s" msgstr "Nu pot determina starea listei surse de pachete %s" -#: apt-pkg/pkgcachegen.cc:1234 apt-pkg/pkgcachegen.cc:1338 -#: apt-pkg/pkgcachegen.cc:1344 apt-pkg/pkgcachegen.cc:1501 +#: apt-pkg/pkgcachegen.cc:1238 apt-pkg/pkgcachegen.cc:1342 +#: apt-pkg/pkgcachegen.cc:1348 apt-pkg/pkgcachegen.cc:1505 msgid "Reading package lists" msgstr "Citire liste de pachete" -#: apt-pkg/pkgcachegen.cc:1251 +#: apt-pkg/pkgcachegen.cc:1255 msgid "Collecting File Provides" msgstr "Colectare furnizori fișier" -#: apt-pkg/pkgcachegen.cc:1443 apt-pkg/pkgcachegen.cc:1450 +#: apt-pkg/pkgcachegen.cc:1447 apt-pkg/pkgcachegen.cc:1454 msgid "IO Error saving source cache" msgstr "Eroare IO în timpul salvării sursei cache" diff --git a/po/ru.po b/po/ru.po index c60c9a384..5cf651fff 100644 --- a/po/ru.po +++ b/po/ru.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: apt rev2227.1.3\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2012-10-15 09:49+0200\n" +"POT-Creation-Date: 2013-03-14 08:05+0100\n" "PO-Revision-Date: 2012-06-30 08:47+0400\n" "Last-Translator: Yuri Kozlov \n" "Language-Team: Russian \n" @@ -162,7 +162,7 @@ msgid " Version table:" msgstr " Таблица версий:" #: cmdline/apt-cache.cc:1683 cmdline/apt-cdrom.cc:198 cmdline/apt-config.cc:81 -#: cmdline/apt-get.cc:3361 cmdline/apt-mark.cc:375 +#: cmdline/apt-get.cc:3363 cmdline/apt-mark.cc:375 #: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:590 #: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147 #, c-format @@ -490,7 +490,7 @@ msgstr "Переустановка %s невозможна, он не скачи msgid "%s is already the newest version.\n" msgstr "Уже установлена самая новая версия %s.\n" -#: cmdline/apt-get.cc:858 cmdline/apt-get.cc:2157 cmdline/apt-mark.cc:68 +#: cmdline/apt-get.cc:858 cmdline/apt-get.cc:2159 cmdline/apt-mark.cc:68 #, c-format msgid "%s set to manually installed.\n" msgstr "%s установлен вручную.\n" @@ -605,8 +605,8 @@ msgstr "" "После данной операции, объём занятого дискового пространства уменьшится на " "%sB.\n" -#: cmdline/apt-get.cc:1228 cmdline/apt-get.cc:1231 cmdline/apt-get.cc:2589 -#: cmdline/apt-get.cc:2592 +#: cmdline/apt-get.cc:1228 cmdline/apt-get.cc:1231 cmdline/apt-get.cc:2591 +#: cmdline/apt-get.cc:2594 #, c-format msgid "Couldn't determine free space in %s" msgstr "Не удалось определить количество свободного места в %s" @@ -616,17 +616,19 @@ msgstr "Не удалось определить количество свобо msgid "You don't have enough free space in %s." msgstr "Недостаточно свободного места в %s." -#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1277 +#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1279 msgid "Trivial Only specified but this is not a trivial operation." msgstr "" "Запрошено выполнение только тривиальных операций, но это не тривиальная " "операция." -#: cmdline/apt-get.cc:1259 +#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be +#. careful with hard to type or special characters (like non-breaking spaces) +#: cmdline/apt-get.cc:1261 msgid "Yes, do as I say!" msgstr "Да, делать, как я скажу!" -#: cmdline/apt-get.cc:1261 +#: cmdline/apt-get.cc:1263 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -637,28 +639,28 @@ msgstr "" "Чтобы продолжить, введите фразу: «%s»\n" " ?] " -#: cmdline/apt-get.cc:1267 cmdline/apt-get.cc:1286 +#: cmdline/apt-get.cc:1269 cmdline/apt-get.cc:1288 msgid "Abort." msgstr "Аварийное завершение." -#: cmdline/apt-get.cc:1282 +#: cmdline/apt-get.cc:1284 msgid "Do you want to continue [Y/n]? " msgstr "Хотите продолжить [Д/н]? " -#: cmdline/apt-get.cc:1354 cmdline/apt-get.cc:2654 apt-pkg/algorithms.cc:1548 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Не удалось получить %s %s\n" -#: cmdline/apt-get.cc:1372 +#: cmdline/apt-get.cc:1374 msgid "Some files failed to download" msgstr "Некоторые файлы скачать не удалось" -#: cmdline/apt-get.cc:1373 cmdline/apt-get.cc:2666 +#: cmdline/apt-get.cc:1375 cmdline/apt-get.cc:2668 msgid "Download complete and in download only mode" msgstr "Указан режим «только скачивание», и скачивание завершено" -#: cmdline/apt-get.cc:1379 +#: cmdline/apt-get.cc:1381 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -666,19 +668,19 @@ msgstr "" "Невозможно получить некоторые архивы, вероятно надо запустить apt-get update " "или попытаться повторить запуск с ключом --fix-missing" -#: cmdline/apt-get.cc:1383 +#: cmdline/apt-get.cc:1385 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix-missing и смена носителя в данный момент не поддерживаются" -#: cmdline/apt-get.cc:1388 +#: cmdline/apt-get.cc:1390 msgid "Unable to correct missing packages." msgstr "Невозможно исправить ситуацию с пропущенными пакетами." -#: cmdline/apt-get.cc:1389 +#: cmdline/apt-get.cc:1391 msgid "Aborting install." msgstr "Аварийное завершение установки." -#: cmdline/apt-get.cc:1417 +#: cmdline/apt-get.cc:1419 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -695,35 +697,35 @@ msgstr[2] "" "Следующие пакеты исчез из системы, так как все их файлы\n" "теперь берутся из других пакетов:" -#: cmdline/apt-get.cc:1421 +#: cmdline/apt-get.cc:1423 msgid "Note: This is done automatically and on purpose by dpkg." msgstr "Замечание: это сделано автоматически и специально программой dpkg." -#: cmdline/apt-get.cc:1559 +#: cmdline/apt-get.cc:1561 #, c-format msgid "Ignore unavailable target release '%s' of package '%s'" msgstr "Игнорируется недоступный выпуск «%s» пакета «%s»" -#: cmdline/apt-get.cc:1591 +#: cmdline/apt-get.cc:1593 #, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "Используется «%s» в качестве исходного пакета вместо «%s»\n" #. if (VerTag.empty() == false && Last == 0) -#: cmdline/apt-get.cc:1629 +#: cmdline/apt-get.cc:1631 #, c-format msgid "Ignore unavailable version '%s' of package '%s'" msgstr "Игнорируется недоступная версия «%s» пакета «%s»" -#: cmdline/apt-get.cc:1645 +#: cmdline/apt-get.cc:1647 msgid "The update command takes no arguments" msgstr "Команде update не нужны аргументы" -#: cmdline/apt-get.cc:1711 +#: cmdline/apt-get.cc:1713 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "Не предполагалось удалять stuff, невозможно запустить AutoRemover" -#: cmdline/apt-get.cc:1815 +#: cmdline/apt-get.cc:1817 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -741,15 +743,15 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1818 cmdline/apt-get.cc:1987 +#: cmdline/apt-get.cc:1820 cmdline/apt-get.cc:1989 msgid "The following information may help to resolve the situation:" msgstr "Следующая информация, возможно, поможет вам:" -#: cmdline/apt-get.cc:1822 +#: cmdline/apt-get.cc:1824 msgid "Internal Error, AutoRemover broke stuff" msgstr "Внутренняя ошибка, AutoRemover всё поломал" -#: cmdline/apt-get.cc:1829 +#: cmdline/apt-get.cc:1831 msgid "" "The following package was automatically installed and is no longer required:" msgid_plural "" @@ -761,7 +763,7 @@ msgstr[1] "" msgstr[2] "" "Следующие пакеты устанавливались автоматически и больше не требуются:" -#: cmdline/apt-get.cc:1833 +#: cmdline/apt-get.cc:1835 #, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -770,24 +772,24 @@ msgstr[0] "%lu пакет был установлен автоматически msgstr[1] "%lu пакета было установлено автоматически и больше не требуется.\n" msgstr[2] "%lu пакетов было установлены автоматически и больше не требуются.\n" -#: cmdline/apt-get.cc:1835 +#: cmdline/apt-get.cc:1837 msgid "Use 'apt-get autoremove' to remove it." msgid_plural "Use 'apt-get autoremove' to remove them." msgstr[0] "Для его удаления используйте «apt-get autoremove»." msgstr[1] "Для их удаления используйте «apt-get autoremove»." msgstr[2] "Для их удаления используйте «apt-get autoremove»." -#: cmdline/apt-get.cc:1854 +#: cmdline/apt-get.cc:1856 msgid "Internal error, AllUpgrade broke stuff" msgstr "Внутренняя ошибка, AllUpgrade всё поломал" -#: cmdline/apt-get.cc:1953 +#: cmdline/apt-get.cc:1955 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "" "Возможно, для исправления этих ошибок вы захотите воспользоваться «apt-get -" "f install»:" -#: cmdline/apt-get.cc:1957 +#: cmdline/apt-get.cc:1959 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -795,7 +797,7 @@ msgstr "" "Неудовлетворённые зависимости. Попытайтесь выполнить «apt-get -f install», " "не указывая имени пакета, (или найдите другое решение)." -#: cmdline/apt-get.cc:1972 +#: cmdline/apt-get.cc:1974 msgid "" "Some packages could not be installed. This may mean that you have\n" "requested an impossible situation or if you are using the unstable\n" @@ -806,33 +808,33 @@ msgstr "" "или же используете нестабильную версию дистрибутива, где запрошенные вами\n" "пакеты ещё не созданы или были удалены из Incoming." -#: cmdline/apt-get.cc:1993 +#: cmdline/apt-get.cc:1995 msgid "Broken packages" msgstr "Сломанные пакеты" -#: cmdline/apt-get.cc:2019 +#: cmdline/apt-get.cc:2021 msgid "The following extra packages will be installed:" msgstr "Будут установлены следующие дополнительные пакеты:" -#: cmdline/apt-get.cc:2109 +#: cmdline/apt-get.cc:2111 msgid "Suggested packages:" msgstr "Предлагаемые пакеты:" -#: cmdline/apt-get.cc:2110 +#: cmdline/apt-get.cc:2112 msgid "Recommended packages:" msgstr "Рекомендуемые пакеты:" -#: cmdline/apt-get.cc:2152 +#: cmdline/apt-get.cc:2154 #, c-format msgid "Couldn't find package %s" msgstr "Не удалось найти пакет %s" -#: cmdline/apt-get.cc:2159 cmdline/apt-mark.cc:70 +#: cmdline/apt-get.cc:2161 cmdline/apt-mark.cc:70 #, c-format msgid "%s set to automatically installed.\n" msgstr "%s выбран для автоматической установки.\n" -#: cmdline/apt-get.cc:2167 cmdline/apt-mark.cc:114 +#: cmdline/apt-get.cc:2169 cmdline/apt-mark.cc:114 msgid "" "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " "instead." @@ -840,47 +842,47 @@ msgstr "" "Эта команда устарела. Используйте вместо неё «apt-mark auto» и «apt-mark " "manual»." -#: cmdline/apt-get.cc:2183 +#: cmdline/apt-get.cc:2185 msgid "Calculating upgrade... " msgstr "Расчёт обновлений…" -#: cmdline/apt-get.cc:2186 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 msgid "Failed" msgstr "Неудачно" -#: cmdline/apt-get.cc:2191 +#: cmdline/apt-get.cc:2193 msgid "Done" msgstr "Готово" -#: cmdline/apt-get.cc:2258 cmdline/apt-get.cc:2266 +#: cmdline/apt-get.cc:2260 cmdline/apt-get.cc:2268 msgid "Internal error, problem resolver broke stuff" msgstr "Внутренняя ошибка, решатель проблем всё поломал" -#: cmdline/apt-get.cc:2294 cmdline/apt-get.cc:2330 +#: cmdline/apt-get.cc:2296 cmdline/apt-get.cc:2332 msgid "Unable to lock the download directory" msgstr "Невозможно заблокировать каталог, куда складываются скачиваемые файлы" -#: cmdline/apt-get.cc:2386 +#: cmdline/apt-get.cc:2388 #, c-format msgid "Can't find a source to download version '%s' of '%s'" msgstr "Невозможно найти источник для загрузки «%2$s» версии «%1$s»" -#: cmdline/apt-get.cc:2391 +#: cmdline/apt-get.cc:2393 #, c-format msgid "Downloading %s %s" msgstr "Выполняется загрузка %s %s" -#: cmdline/apt-get.cc:2451 +#: cmdline/apt-get.cc:2453 msgid "Must specify at least one package to fetch source for" msgstr "" "Укажите как минимум один пакет, исходный код которого необходимо получить" -#: cmdline/apt-get.cc:2491 cmdline/apt-get.cc:2803 +#: cmdline/apt-get.cc:2493 cmdline/apt-get.cc:2805 #, c-format msgid "Unable to find a source package for %s" msgstr "Невозможно найти пакет с исходным кодом для %s" -#: cmdline/apt-get.cc:2508 +#: cmdline/apt-get.cc:2510 #, c-format msgid "" "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" @@ -889,7 +891,7 @@ msgstr "" "ВНИМАНИЕ: упаковка «%s» поддерживается в системе контроля версий «%s»:\n" "%s\n" -#: cmdline/apt-get.cc:2513 +#: cmdline/apt-get.cc:2515 #, c-format msgid "" "Please use:\n" @@ -900,70 +902,70 @@ msgstr "" "bzr branch %s\n" "для получения последних (возможно не выпущенных) обновлений пакета.\n" -#: cmdline/apt-get.cc:2566 +#: cmdline/apt-get.cc:2568 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Пропускаем уже скачанный файл «%s»\n" -#: cmdline/apt-get.cc:2603 +#: cmdline/apt-get.cc:2605 #, c-format msgid "You don't have enough free space in %s" msgstr "Недостаточно места в %s" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:2612 +#: cmdline/apt-get.cc:2614 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "Необходимо получить %sб/%sб архивов исходного кода.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:2617 +#: cmdline/apt-get.cc:2619 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Необходимо получить %sб архивов исходного кода.\n" -#: cmdline/apt-get.cc:2623 +#: cmdline/apt-get.cc:2625 #, c-format msgid "Fetch source %s\n" msgstr "Получение исходного кода %s\n" -#: cmdline/apt-get.cc:2661 +#: cmdline/apt-get.cc:2663 msgid "Failed to fetch some archives." msgstr "Некоторые архивы не удалось получить." -#: cmdline/apt-get.cc:2692 +#: cmdline/apt-get.cc:2694 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "Пропускается распаковка уже распакованного исходного кода в %s\n" -#: cmdline/apt-get.cc:2704 +#: cmdline/apt-get.cc:2706 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Команда распаковки «%s» завершилась неудачно.\n" -#: cmdline/apt-get.cc:2705 +#: cmdline/apt-get.cc:2707 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "Проверьте, установлен ли пакет «dpkg-dev».\n" -#: cmdline/apt-get.cc:2727 +#: cmdline/apt-get.cc:2729 #, c-format msgid "Build command '%s' failed.\n" msgstr "Команда сборки «%s» завершилась неудачно.\n" -#: cmdline/apt-get.cc:2747 +#: cmdline/apt-get.cc:2749 msgid "Child process failed" msgstr "Порождённый процесс завершился неудачно" -#: cmdline/apt-get.cc:2766 +#: cmdline/apt-get.cc:2768 msgid "Must specify at least one package to check builddeps for" msgstr "" "Для проверки зависимостей для сборки необходимо указать как минимум один " "пакет" -#: cmdline/apt-get.cc:2791 +#: cmdline/apt-get.cc:2793 #, c-format msgid "" "No architecture information available for %s. See apt.conf(5) APT::" @@ -972,17 +974,17 @@ msgstr "" "У %s отсутствует информация об архитектуре. Для её настройки смотрите apt." "conf(5) APT::Architectures" -#: cmdline/apt-get.cc:2815 cmdline/apt-get.cc:2818 +#: cmdline/apt-get.cc:2817 cmdline/apt-get.cc:2820 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "Невозможно получить информацию о зависимостях для сборки %s" -#: cmdline/apt-get.cc:2838 +#: cmdline/apt-get.cc:2840 #, c-format msgid "%s has no build depends.\n" msgstr "%s не имеет зависимостей для сборки.\n" -#: cmdline/apt-get.cc:3008 +#: cmdline/apt-get.cc:3010 #, c-format msgid "" "%s dependency for %s can't be satisfied because %s is not allowed on '%s' " @@ -991,7 +993,7 @@ msgstr "" "Зависимость типа %s для %s не может быть удовлетворена, так как %s не " "разрешён для пакетов «%s»" -#: cmdline/apt-get.cc:3026 +#: cmdline/apt-get.cc:3028 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -1000,14 +1002,14 @@ msgstr "" "Зависимость типа %s для %s не может быть удовлетворена, так как пакет %s не " "найден" -#: cmdline/apt-get.cc:3049 +#: cmdline/apt-get.cc:3051 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "Не удалось удовлетворить зависимость типа %s для пакета %s: Установленный " "пакет %s новее, чем надо" -#: cmdline/apt-get.cc:3088 +#: cmdline/apt-get.cc:3090 #, c-format msgid "" "%s dependency for %s cannot be satisfied because candidate version of " @@ -1016,7 +1018,7 @@ msgstr "" "Зависимость типа %s для %s не может быть удовлетворена, так как версия-" "кандидат пакета %s не может удовлетворить требованиям по версии" -#: cmdline/apt-get.cc:3094 +#: cmdline/apt-get.cc:3096 #, c-format msgid "" "%s dependency for %s cannot be satisfied because package %s has no candidate " @@ -1025,30 +1027,30 @@ msgstr "" "Зависимость типа %s для %s не может быть удовлетворена, так как пакет %s не " "имеет версии-кандидата" -#: cmdline/apt-get.cc:3117 +#: cmdline/apt-get.cc:3119 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "Невозможно удовлетворить зависимость типа %s для пакета %s: %s" -#: cmdline/apt-get.cc:3133 +#: cmdline/apt-get.cc:3135 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "Зависимости для сборки %s не могут быть удовлетворены." -#: cmdline/apt-get.cc:3138 +#: cmdline/apt-get.cc:3140 msgid "Failed to process build dependencies" msgstr "Обработка зависимостей для сборки завершилась неудачно" -#: cmdline/apt-get.cc:3231 cmdline/apt-get.cc:3243 +#: cmdline/apt-get.cc:3233 cmdline/apt-get.cc:3245 #, c-format msgid "Changelog for %s (%s)" msgstr "Changelog для %s (%s)" -#: cmdline/apt-get.cc:3366 +#: cmdline/apt-get.cc:3368 msgid "Supported modules:" msgstr "Поддерживаемые модули:" -#: cmdline/apt-get.cc:3407 +#: cmdline/apt-get.cc:3409 msgid "" "Usage: apt-get [options] command\n" " apt-get [options] install|remove pkg1 [pkg2 ...]\n" @@ -1140,7 +1142,7 @@ msgstr "" "содержится подробная информация и описание параметров.\n" " В APT есть коровья СУПЕРСИЛА.\n" -#: cmdline/apt-get.cc:3572 +#: cmdline/apt-get.cc:3574 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1765,7 +1767,7 @@ msgstr "" " -c=? Читать указанный файл настройки\n" " -o=? Задать значение произвольной настройке, например, -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1335 +#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1339 #, c-format msgid "Unable to write to %s" msgstr "Невозможно записать в %s" @@ -2824,7 +2826,7 @@ msgstr "Искажённая строка %u в списке источнико msgid "Type '%s' is not known on line %u in source list %s" msgstr "Неизвестный тип «%s» в строке %u в списке источников %s" -#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:896 +#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:898 #, c-format msgid "" "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " @@ -2833,12 +2835,12 @@ msgstr "" "Не удалось выполнить оперативную настройку «%s». Подробней, смотрите в man 5 " "apt.conf о APT::Immediate-Configure. (%d)" -#: apt-pkg/packagemanager.cc:473 apt-pkg/packagemanager.cc:503 +#: apt-pkg/packagemanager.cc:473 apt-pkg/packagemanager.cc:504 #, c-format msgid "Could not configure '%s'. " msgstr "Не удалось настроить «%s»." -#: apt-pkg/packagemanager.cc:545 +#: apt-pkg/packagemanager.cc:546 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2875,7 +2877,7 @@ msgstr "" msgid "Unable to correct problems, you have held broken packages." msgstr "Невозможно исправить ошибки, у вас отложены (held) битые пакеты." -#: apt-pkg/algorithms.cc:1574 apt-pkg/algorithms.cc:1576 +#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 msgid "" "Some index files failed to download. They have been ignored, or old ones " "used instead." @@ -3024,21 +3026,21 @@ msgstr "" msgid "Package %s %s was not found while processing file dependencies" msgstr "Во время обработки файла зависимостей не найден пакет %s %s" -#: apt-pkg/pkgcachegen.cc:1146 +#: apt-pkg/pkgcachegen.cc:1150 #, c-format msgid "Couldn't stat source package list %s" msgstr "Не удалось получить атрибуты списка пакетов исходного кода %s" -#: apt-pkg/pkgcachegen.cc:1234 apt-pkg/pkgcachegen.cc:1338 -#: apt-pkg/pkgcachegen.cc:1344 apt-pkg/pkgcachegen.cc:1501 +#: apt-pkg/pkgcachegen.cc:1238 apt-pkg/pkgcachegen.cc:1342 +#: apt-pkg/pkgcachegen.cc:1348 apt-pkg/pkgcachegen.cc:1505 msgid "Reading package lists" msgstr "Чтение списков пакетов" -#: apt-pkg/pkgcachegen.cc:1251 +#: apt-pkg/pkgcachegen.cc:1255 msgid "Collecting File Provides" msgstr "Сбор информации о Provides" -#: apt-pkg/pkgcachegen.cc:1443 apt-pkg/pkgcachegen.cc:1450 +#: apt-pkg/pkgcachegen.cc:1447 apt-pkg/pkgcachegen.cc:1454 msgid "IO Error saving source cache" msgstr "Ошибка ввода/вывода при попытке сохранить кэш источников" diff --git a/po/sk.po b/po/sk.po index 83396a1a4..ece547d5c 100644 --- a/po/sk.po +++ b/po/sk.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2012-10-15 09:49+0200\n" +"POT-Creation-Date: 2013-03-14 08:05+0100\n" "PO-Revision-Date: 2012-06-28 20:49+0100\n" "Last-Translator: Ivan Masár \n" "Language-Team: Slovak \n" @@ -158,7 +158,7 @@ msgid " Version table:" msgstr " Tabuľka verzií:" #: cmdline/apt-cache.cc:1683 cmdline/apt-cdrom.cc:198 cmdline/apt-config.cc:81 -#: cmdline/apt-get.cc:3361 cmdline/apt-mark.cc:375 +#: cmdline/apt-get.cc:3363 cmdline/apt-mark.cc:375 #: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:590 #: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147 #, c-format @@ -484,7 +484,7 @@ msgstr "Nie je možná reinštalácia %s, pretože sa nedá stiahnuť.\n" msgid "%s is already the newest version.\n" msgstr "%s je už najnovšej verzie.\n" -#: cmdline/apt-get.cc:858 cmdline/apt-get.cc:2157 cmdline/apt-mark.cc:68 +#: cmdline/apt-get.cc:858 cmdline/apt-get.cc:2159 cmdline/apt-mark.cc:68 #, c-format msgid "%s set to manually installed.\n" msgstr "%s je označený ako manuálne nainštalovaný.\n" @@ -593,8 +593,8 @@ msgstr "Po tejto operácii sa na disku použije ďalších %sB.\n" msgid "After this operation, %sB disk space will be freed.\n" msgstr "Po tejto operácii sa na disku uvoľní %sB.\n" -#: cmdline/apt-get.cc:1228 cmdline/apt-get.cc:1231 cmdline/apt-get.cc:2589 -#: cmdline/apt-get.cc:2592 +#: cmdline/apt-get.cc:1228 cmdline/apt-get.cc:1231 cmdline/apt-get.cc:2591 +#: cmdline/apt-get.cc:2594 #, c-format msgid "Couldn't determine free space in %s" msgstr "Na %s sa nedá zistiť veľkosť voľného miesta" @@ -604,15 +604,17 @@ msgstr "Na %s sa nedá zistiť veľkosť voľného miesta" msgid "You don't have enough free space in %s." msgstr "Na %s nemáte dostatok voľného miesta." -#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1277 +#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1279 msgid "Trivial Only specified but this is not a trivial operation." msgstr "Zadané „iba triviálne“, ale toto nie je triviálna operácia." -#: cmdline/apt-get.cc:1259 +#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be +#. careful with hard to type or special characters (like non-breaking spaces) +#: cmdline/apt-get.cc:1261 msgid "Yes, do as I say!" msgstr "Áno, urob to, čo vravím!" -#: cmdline/apt-get.cc:1261 +#: cmdline/apt-get.cc:1263 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -623,28 +625,28 @@ msgstr "" "Ak chcete pokračovať, opíšte frázu „%s“\n" " ?]" -#: cmdline/apt-get.cc:1267 cmdline/apt-get.cc:1286 +#: cmdline/apt-get.cc:1269 cmdline/apt-get.cc:1288 msgid "Abort." msgstr "Prerušené." -#: cmdline/apt-get.cc:1282 +#: cmdline/apt-get.cc:1284 msgid "Do you want to continue [Y/n]? " msgstr "Chcete pokračovať [Y/n]? " -#: cmdline/apt-get.cc:1354 cmdline/apt-get.cc:2654 apt-pkg/algorithms.cc:1548 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Zlyhalo stiahnutie %s %s\n" -#: cmdline/apt-get.cc:1372 +#: cmdline/apt-get.cc:1374 msgid "Some files failed to download" msgstr "Niektoré súbory sa nedajú stiahnuť" -#: cmdline/apt-get.cc:1373 cmdline/apt-get.cc:2666 +#: cmdline/apt-get.cc:1375 cmdline/apt-get.cc:2668 msgid "Download complete and in download only mode" msgstr "Sťahovanie ukončené v režime „iba stiahnuť“" -#: cmdline/apt-get.cc:1379 +#: cmdline/apt-get.cc:1381 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -652,19 +654,19 @@ msgstr "" "Niektoré archívy sa nedajú stiahnuť. Skúste spustiť apt-get update alebo --" "fix-missing" -#: cmdline/apt-get.cc:1383 +#: cmdline/apt-get.cc:1385 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix-missing a výmena nosiča nie sú momentálne podporované" -#: cmdline/apt-get.cc:1388 +#: cmdline/apt-get.cc:1390 msgid "Unable to correct missing packages." msgstr "Chýbajúce balíky sa nedajú opraviť." -#: cmdline/apt-get.cc:1389 +#: cmdline/apt-get.cc:1391 msgid "Aborting install." msgstr "Inštalácia sa prerušuje." -#: cmdline/apt-get.cc:1417 +#: cmdline/apt-get.cc:1419 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -681,35 +683,35 @@ msgstr[2] "" "Nasledovné balíky zmizli z vášho systému, pretože\n" "všetky súbory boli prepísané inými balíkmi:" -#: cmdline/apt-get.cc:1421 +#: cmdline/apt-get.cc:1423 msgid "Note: This is done automatically and on purpose by dpkg." msgstr "Pozn.: Toto robí dpkg automaticky a zámerne." -#: cmdline/apt-get.cc:1559 +#: cmdline/apt-get.cc:1561 #, c-format msgid "Ignore unavailable target release '%s' of package '%s'" msgstr "Ignorovať nedostupné cieľové vydanie „%s“ balíka „%s“" -#: cmdline/apt-get.cc:1591 +#: cmdline/apt-get.cc:1593 #, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "Vyberá sa „%s“ ako zdrojový balík namiesto „%s“\n" #. if (VerTag.empty() == false && Last == 0) -#: cmdline/apt-get.cc:1629 +#: cmdline/apt-get.cc:1631 #, c-format msgid "Ignore unavailable version '%s' of package '%s'" msgstr "Ignorovať nedostupnú verziu „%s“ balíka „%s“" -#: cmdline/apt-get.cc:1645 +#: cmdline/apt-get.cc:1647 msgid "The update command takes no arguments" msgstr "Príkaz update neprijíma žiadne argumenty" -#: cmdline/apt-get.cc:1711 +#: cmdline/apt-get.cc:1713 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "Nemajú sa odstraňovať veci, nespustí sa AutoRemover" -#: cmdline/apt-get.cc:1815 +#: cmdline/apt-get.cc:1817 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -727,15 +729,15 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1818 cmdline/apt-get.cc:1987 +#: cmdline/apt-get.cc:1820 cmdline/apt-get.cc:1989 msgid "The following information may help to resolve the situation:" msgstr "Nasledovné informácie vám možno pomôžu vyriešiť túto situáciu:" -#: cmdline/apt-get.cc:1822 +#: cmdline/apt-get.cc:1824 msgid "Internal Error, AutoRemover broke stuff" msgstr "Vnútorná chyba, AutoRemover niečo pokazil" -#: cmdline/apt-get.cc:1829 +#: cmdline/apt-get.cc:1831 msgid "" "The following package was automatically installed and is no longer required:" msgid_plural "" @@ -748,7 +750,7 @@ msgstr[1] "" msgstr[2] "" "Nasledovné balíky boli nainštalované automaticky a už viac nie sú potrebné:" -#: cmdline/apt-get.cc:1833 +#: cmdline/apt-get.cc:1835 #, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -760,22 +762,22 @@ msgstr[1] "" msgstr[2] "" "%lu balíkov bolo nainštalovaných automaticky a už viac nie sú potrebné.\n" -#: cmdline/apt-get.cc:1835 +#: cmdline/apt-get.cc:1837 msgid "Use 'apt-get autoremove' to remove it." msgid_plural "Use 'apt-get autoremove' to remove them." msgstr[0] "Na jeho odstránenie použite „apt-get autoremove“." msgstr[1] "Na ich odstránenie použite „apt-get autoremove“." msgstr[2] "Na ich odstránenie použite „apt-get autoremove“." -#: cmdline/apt-get.cc:1854 +#: cmdline/apt-get.cc:1856 msgid "Internal error, AllUpgrade broke stuff" msgstr "Vnútorná chyba, AllUpgrade pokazil veci" -#: cmdline/apt-get.cc:1953 +#: cmdline/apt-get.cc:1955 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "Možno to budete chcieť napraviť spustením „apt-get -f install“:" -#: cmdline/apt-get.cc:1957 +#: cmdline/apt-get.cc:1959 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -783,7 +785,7 @@ msgstr "" "Nesplnené závislosti. Skúste spustiť „apt-get -f install“ bez balíkov (alebo " "navrhnite riešenie)." -#: cmdline/apt-get.cc:1972 +#: cmdline/apt-get.cc:1974 msgid "" "Some packages could not be installed. This may mean that you have\n" "requested an impossible situation or if you are using the unstable\n" @@ -795,33 +797,33 @@ msgstr "" "požadované balíky ešte neboli vytvorené alebo presunuté z fronty\n" "Novoprichádzajúcich (Incoming) balíkov." -#: cmdline/apt-get.cc:1993 +#: cmdline/apt-get.cc:1995 msgid "Broken packages" msgstr "Poškodené balíky" -#: cmdline/apt-get.cc:2019 +#: cmdline/apt-get.cc:2021 msgid "The following extra packages will be installed:" msgstr "Nainštalujú sa nasledovné extra balíky:" -#: cmdline/apt-get.cc:2109 +#: cmdline/apt-get.cc:2111 msgid "Suggested packages:" msgstr "Navrhované balíky:" -#: cmdline/apt-get.cc:2110 +#: cmdline/apt-get.cc:2112 msgid "Recommended packages:" msgstr "Odporúčané balíky:" -#: cmdline/apt-get.cc:2152 +#: cmdline/apt-get.cc:2154 #, c-format msgid "Couldn't find package %s" msgstr "Balík %s sa nedá nájsť" -#: cmdline/apt-get.cc:2159 cmdline/apt-mark.cc:70 +#: cmdline/apt-get.cc:2161 cmdline/apt-mark.cc:70 #, c-format msgid "%s set to automatically installed.\n" msgstr "%s je označený ako automaticky nainštalovaný.\n" -#: cmdline/apt-get.cc:2167 cmdline/apt-mark.cc:114 +#: cmdline/apt-get.cc:2169 cmdline/apt-mark.cc:114 msgid "" "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " "instead." @@ -829,46 +831,46 @@ msgstr "" "Tento príkaz je zavrhovaný. Prosím, použite namiesto neho „apt-mark auto“ a " "„apt-mark manual“." -#: cmdline/apt-get.cc:2183 +#: cmdline/apt-get.cc:2185 msgid "Calculating upgrade... " msgstr "Prepočítava sa aktualizácia... " -#: cmdline/apt-get.cc:2186 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 msgid "Failed" msgstr "Chyba" -#: cmdline/apt-get.cc:2191 +#: cmdline/apt-get.cc:2193 msgid "Done" msgstr "Hotovo" -#: cmdline/apt-get.cc:2258 cmdline/apt-get.cc:2266 +#: cmdline/apt-get.cc:2260 cmdline/apt-get.cc:2268 msgid "Internal error, problem resolver broke stuff" msgstr "Vnútorná chyba, „problem resolver“ niečo pokazil" -#: cmdline/apt-get.cc:2294 cmdline/apt-get.cc:2330 +#: cmdline/apt-get.cc:2296 cmdline/apt-get.cc:2332 msgid "Unable to lock the download directory" msgstr "Adresár pre sťahovanie sa nedá zamknúť" -#: cmdline/apt-get.cc:2386 +#: cmdline/apt-get.cc:2388 #, c-format msgid "Can't find a source to download version '%s' of '%s'" msgstr "Nie je možné nájsť zdroj na stiahnutie verzie „%s“ balíka „%s“" -#: cmdline/apt-get.cc:2391 +#: cmdline/apt-get.cc:2393 #, c-format msgid "Downloading %s %s" msgstr "Sťahuje sa %s %s" -#: cmdline/apt-get.cc:2451 +#: cmdline/apt-get.cc:2453 msgid "Must specify at least one package to fetch source for" msgstr "Musíte zadať aspoň jeden balík, pre ktorý sa stiahnu zdrojové texty" -#: cmdline/apt-get.cc:2491 cmdline/apt-get.cc:2803 +#: cmdline/apt-get.cc:2493 cmdline/apt-get.cc:2805 #, c-format msgid "Unable to find a source package for %s" msgstr "Nedá sa nájsť zdrojový balík pre %s" -#: cmdline/apt-get.cc:2508 +#: cmdline/apt-get.cc:2510 #, c-format msgid "" "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" @@ -878,7 +880,7 @@ msgstr "" "adrese:\n" "%s\n" -#: cmdline/apt-get.cc:2513 +#: cmdline/apt-get.cc:2515 #, c-format msgid "" "Please use:\n" @@ -890,70 +892,70 @@ msgstr "" "ak chcete získať najnovšie (a pravdepodobne zatiaľ nevydané) aktualizácie " "balíka.\n" -#: cmdline/apt-get.cc:2566 +#: cmdline/apt-get.cc:2568 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Preskakuje sa už stiahnutý súbor „%s“\n" -#: cmdline/apt-get.cc:2603 +#: cmdline/apt-get.cc:2605 #, c-format msgid "You don't have enough free space in %s" msgstr "Na %s nemáte dostatok voľného miesta" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:2612 +#: cmdline/apt-get.cc:2614 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "Je potrebné stiahnuť %sB/%sB zdrojových archívov.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:2617 +#: cmdline/apt-get.cc:2619 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Je potrebné stiahnuť %sB zdrojových archívov.\n" -#: cmdline/apt-get.cc:2623 +#: cmdline/apt-get.cc:2625 #, c-format msgid "Fetch source %s\n" msgstr "Stiahnuť zdroj %s\n" -#: cmdline/apt-get.cc:2661 +#: cmdline/apt-get.cc:2663 msgid "Failed to fetch some archives." msgstr "Zlyhalo stiahnutie niektorých archívov." -#: cmdline/apt-get.cc:2692 +#: cmdline/apt-get.cc:2694 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "Preskakuje sa rozbalenie už rozbaleného zdroja v %s\n" -#: cmdline/apt-get.cc:2704 +#: cmdline/apt-get.cc:2706 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Príkaz na rozbalenie „%s“ zlyhal.\n" -#: cmdline/apt-get.cc:2705 +#: cmdline/apt-get.cc:2707 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "Skontrolujte, či je nainštalovaný balík „dpkg-dev“.\n" -#: cmdline/apt-get.cc:2727 +#: cmdline/apt-get.cc:2729 #, c-format msgid "Build command '%s' failed.\n" msgstr "Príkaz na zostavenie „%s“ zlyhal.\n" -#: cmdline/apt-get.cc:2747 +#: cmdline/apt-get.cc:2749 msgid "Child process failed" msgstr "Proces potomka zlyhal" -#: cmdline/apt-get.cc:2766 +#: cmdline/apt-get.cc:2768 msgid "Must specify at least one package to check builddeps for" msgstr "" "Musíte zadať aspoň jeden balík, pre ktorý sa budú overovať závislosti na " "zostavenie" -#: cmdline/apt-get.cc:2791 +#: cmdline/apt-get.cc:2793 #, c-format msgid "" "No architecture information available for %s. See apt.conf(5) APT::" @@ -962,17 +964,17 @@ msgstr "" "Informácie o architektúre nie sú dostupné pre %s. Informácie o nastavení " "nájdete v apt.conf(5) APT::Architectures" -#: cmdline/apt-get.cc:2815 cmdline/apt-get.cc:2818 +#: cmdline/apt-get.cc:2817 cmdline/apt-get.cc:2820 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "Nedajú sa získať závislosti na zostavenie %s" -#: cmdline/apt-get.cc:2838 +#: cmdline/apt-get.cc:2840 #, c-format msgid "%s has no build depends.\n" msgstr "%s nemá žiadne závislosti na zostavenie.\n" -#: cmdline/apt-get.cc:3008 +#: cmdline/apt-get.cc:3010 #, c-format msgid "" "%s dependency for %s can't be satisfied because %s is not allowed on '%s' " @@ -981,20 +983,20 @@ msgstr "" "%s závislosť pre %s nemožno splniť, pretože %s nie je povolené na balíkoch " "„%s“" -#: cmdline/apt-get.cc:3026 +#: cmdline/apt-get.cc:3028 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " "found" msgstr "%s závislosť pre %s nemožno splniť, pretože sa nedá nájsť balík %s" -#: cmdline/apt-get.cc:3049 +#: cmdline/apt-get.cc:3051 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "Zlyhalo splnenie %s závislosti pre %s: Inštalovaný balík %s je príliš nový" -#: cmdline/apt-get.cc:3088 +#: cmdline/apt-get.cc:3090 #, c-format msgid "" "%s dependency for %s cannot be satisfied because candidate version of " @@ -1003,7 +1005,7 @@ msgstr "" "%s závislosť pre %s nemožno splniť, pretože kandidátska verzia balíka %s, " "nedokáže splniť požiadavky na verziu" -#: cmdline/apt-get.cc:3094 +#: cmdline/apt-get.cc:3096 #, c-format msgid "" "%s dependency for %s cannot be satisfied because package %s has no candidate " @@ -1011,30 +1013,30 @@ msgid "" msgstr "" "%s závislosť pre %s nemožno splniť, pretože balík %s nemá kandidátsku verziu" -#: cmdline/apt-get.cc:3117 +#: cmdline/apt-get.cc:3119 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "Zlyhalo splnenie %s závislosti pre %s: %s" -#: cmdline/apt-get.cc:3133 +#: cmdline/apt-get.cc:3135 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "Závislosti na zostavenie %s nemožno splniť." -#: cmdline/apt-get.cc:3138 +#: cmdline/apt-get.cc:3140 msgid "Failed to process build dependencies" msgstr "Spracovanie závislostí na zostavenie zlyhalo" -#: cmdline/apt-get.cc:3231 cmdline/apt-get.cc:3243 +#: cmdline/apt-get.cc:3233 cmdline/apt-get.cc:3245 #, c-format msgid "Changelog for %s (%s)" msgstr "Záznam zmien %s (%s)" -#: cmdline/apt-get.cc:3366 +#: cmdline/apt-get.cc:3368 msgid "Supported modules:" msgstr "Podporované moduly:" -#: cmdline/apt-get.cc:3407 +#: cmdline/apt-get.cc:3409 msgid "" "Usage: apt-get [options] command\n" " apt-get [options] install|remove pkg1 [pkg2 ...]\n" @@ -1122,7 +1124,7 @@ msgstr "" "a apt.conf(5).\n" " Tento APT má schopnosti posvätnej kravy.\n" -#: cmdline/apt-get.cc:3572 +#: cmdline/apt-get.cc:3574 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1737,7 +1739,7 @@ msgstr "" " -c=? Načíta tento konfiguračný súbor\n" " -o=? Nastaví ľubovoľnú voľbu, napr. -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1335 +#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1339 #, c-format msgid "Unable to write to %s" msgstr "Do %s sa nedá zapisovať" @@ -2774,7 +2776,7 @@ msgstr "Skomolený riadok %u v zozname zdrojov %s (typ)" msgid "Type '%s' is not known on line %u in source list %s" msgstr "Typ „%s“ je neznámy na riadku %u v zozname zdrojov %s" -#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:896 +#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:898 #, c-format msgid "" "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " @@ -2783,12 +2785,12 @@ msgstr "" "Nebolo možné vykonať okamžitú konfiguráciu „%s“. Pozri prosím podrobnosti v " "man 5 apt.conf pod APT::Immediate-Configure (%d)" -#: apt-pkg/packagemanager.cc:473 apt-pkg/packagemanager.cc:503 +#: apt-pkg/packagemanager.cc:473 apt-pkg/packagemanager.cc:504 #, c-format msgid "Could not configure '%s'. " msgstr "Nedá sa nakonfigurovať „%s“." -#: apt-pkg/packagemanager.cc:545 +#: apt-pkg/packagemanager.cc:546 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2822,7 +2824,7 @@ msgstr "" msgid "Unable to correct problems, you have held broken packages." msgstr "Problémy sa nedajú opraviť, niektoré balíky držíte v poškodenom stave." -#: apt-pkg/algorithms.cc:1574 apt-pkg/algorithms.cc:1576 +#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 msgid "" "Some index files failed to download. They have been ignored, or old ones " "used instead." @@ -2967,21 +2969,21 @@ msgstr "" msgid "Package %s %s was not found while processing file dependencies" msgstr "Pri spracovaní závislostí nebol nájdený balík %s %s" -#: apt-pkg/pkgcachegen.cc:1146 +#: apt-pkg/pkgcachegen.cc:1150 #, c-format msgid "Couldn't stat source package list %s" msgstr "Nedá sa vyhodnotiť zoznam zdrojových balíkov %s" -#: apt-pkg/pkgcachegen.cc:1234 apt-pkg/pkgcachegen.cc:1338 -#: apt-pkg/pkgcachegen.cc:1344 apt-pkg/pkgcachegen.cc:1501 +#: apt-pkg/pkgcachegen.cc:1238 apt-pkg/pkgcachegen.cc:1342 +#: apt-pkg/pkgcachegen.cc:1348 apt-pkg/pkgcachegen.cc:1505 msgid "Reading package lists" msgstr "Načítavajú sa zoznamy balíkov" -#: apt-pkg/pkgcachegen.cc:1251 +#: apt-pkg/pkgcachegen.cc:1255 msgid "Collecting File Provides" msgstr "Collecting File poskytuje" -#: apt-pkg/pkgcachegen.cc:1443 apt-pkg/pkgcachegen.cc:1450 +#: apt-pkg/pkgcachegen.cc:1447 apt-pkg/pkgcachegen.cc:1454 msgid "IO Error saving source cache" msgstr "V/V chyba pri ukladaní zdrojovej vyrovnávacej pamäti" diff --git a/po/sl.po b/po/sl.po index b4b4e552a..a2ff51eb6 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 \n" -"POT-Creation-Date: 2012-10-15 09:49+0200\n" +"POT-Creation-Date: 2013-03-14 08:05+0100\n" "PO-Revision-Date: 2012-06-27 21:29+0000\n" "Last-Translator: Andrej Znidarsic \n" "Language-Team: Slovenian \n" @@ -156,7 +156,7 @@ msgid " Version table:" msgstr " Preglednica različic:" #: cmdline/apt-cache.cc:1683 cmdline/apt-cdrom.cc:198 cmdline/apt-config.cc:81 -#: cmdline/apt-get.cc:3361 cmdline/apt-mark.cc:375 +#: cmdline/apt-get.cc:3363 cmdline/apt-mark.cc:375 #: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:590 #: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147 #, c-format @@ -481,7 +481,7 @@ msgstr "Ponovna namestitev %s ni možna, ker prejem ni možen.\n" msgid "%s is already the newest version.\n" msgstr "Najnovejša različica %s je že nameščena.\n" -#: cmdline/apt-get.cc:858 cmdline/apt-get.cc:2157 cmdline/apt-mark.cc:68 +#: cmdline/apt-get.cc:858 cmdline/apt-get.cc:2159 cmdline/apt-mark.cc:68 #, c-format msgid "%s set to manually installed.\n" msgstr "%s je bil nastavljen na ročno nameščen.\n" @@ -590,8 +590,8 @@ msgstr "Po tem opravilu bo porabljenega %sB dodatnega prostora.\n" msgid "After this operation, %sB disk space will be freed.\n" msgstr "Po tem opravilu bo sproščenega %sB prostora na disku.\n" -#: cmdline/apt-get.cc:1228 cmdline/apt-get.cc:1231 cmdline/apt-get.cc:2589 -#: cmdline/apt-get.cc:2592 +#: cmdline/apt-get.cc:1228 cmdline/apt-get.cc:1231 cmdline/apt-get.cc:2591 +#: cmdline/apt-get.cc:2594 #, c-format msgid "Couldn't determine free space in %s" msgstr "Ni mogoče določiti prostega prostora v %s" @@ -601,15 +601,17 @@ msgstr "Ni mogoče določiti prostega prostora v %s" msgid "You don't have enough free space in %s." msgstr "Na %s je premalo prostora." -#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1277 +#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1279 msgid "Trivial Only specified but this is not a trivial operation." msgstr "Navedena je možnost Samo preprosto, a to opravilo ni preprosto." -#: cmdline/apt-get.cc:1259 +#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be +#. careful with hard to type or special characters (like non-breaking spaces) +#: cmdline/apt-get.cc:1261 msgid "Yes, do as I say!" msgstr "Da, naredi tako kot pravim!" -#: cmdline/apt-get.cc:1261 +#: cmdline/apt-get.cc:1263 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -620,28 +622,28 @@ msgstr "" "Za nadaljevanje vtipkajte frazo '%s'\n" " ?] " -#: cmdline/apt-get.cc:1267 cmdline/apt-get.cc:1286 +#: cmdline/apt-get.cc:1269 cmdline/apt-get.cc:1288 msgid "Abort." msgstr "Prekini." -#: cmdline/apt-get.cc:1282 +#: cmdline/apt-get.cc:1284 msgid "Do you want to continue [Y/n]? " msgstr "Ali želite nadaljevati [Y/n]? " -#: cmdline/apt-get.cc:1354 cmdline/apt-get.cc:2654 apt-pkg/algorithms.cc:1548 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Ni mogoče dobiti %s %s\n" -#: cmdline/apt-get.cc:1372 +#: cmdline/apt-get.cc:1374 msgid "Some files failed to download" msgstr "Prejem nekaterih datotek ni uspel" -#: cmdline/apt-get.cc:1373 cmdline/apt-get.cc:2666 +#: cmdline/apt-get.cc:1375 cmdline/apt-get.cc:2668 msgid "Download complete and in download only mode" msgstr "Prejem je dokončan in uporabljen je način samo prejema" -#: cmdline/apt-get.cc:1379 +#: cmdline/apt-get.cc:1381 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -649,19 +651,19 @@ msgstr "" "Nekaterih arhivov ni mogoče dobiti. Poskusite uporabiti apt-get update ali --" "fix-missing." -#: cmdline/apt-get.cc:1383 +#: cmdline/apt-get.cc:1385 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix-missing in izmenjava medija trenutno nista podprta" -#: cmdline/apt-get.cc:1388 +#: cmdline/apt-get.cc:1390 msgid "Unable to correct missing packages." msgstr "Ni mogoče popraviti manjkajočih paketov." -#: cmdline/apt-get.cc:1389 +#: cmdline/apt-get.cc:1391 msgid "Aborting install." msgstr "Prekinjanje namestitve." -#: cmdline/apt-get.cc:1417 +#: cmdline/apt-get.cc:1419 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -681,37 +683,37 @@ msgstr[3] "" "Naslednji paketi so izginili z vašega sistema, ker so vse\n" "datoteke prepisali drugi paketi:" -#: cmdline/apt-get.cc:1421 +#: cmdline/apt-get.cc:1423 msgid "Note: This is done automatically and on purpose by dpkg." msgstr "Opomba: To je dpkg storil samodejno in namenoma." -#: cmdline/apt-get.cc:1559 +#: cmdline/apt-get.cc:1561 #, c-format msgid "Ignore unavailable target release '%s' of package '%s'" msgstr "Prezri nerazpoložljiv cilj izdaje '%s' paketa '%s'" -#: cmdline/apt-get.cc:1591 +#: cmdline/apt-get.cc:1593 #, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "Izbiranje '%s' kot vir paketa namesto '%s'\n" #. if (VerTag.empty() == false && Last == 0) -#: cmdline/apt-get.cc:1629 +#: cmdline/apt-get.cc:1631 #, c-format msgid "Ignore unavailable version '%s' of package '%s'" msgstr "Prezri nerazpoložljivo različico '%s' paketa '%s'" -#: cmdline/apt-get.cc:1645 +#: cmdline/apt-get.cc:1647 msgid "The update command takes no arguments" msgstr "Ukaz update ne sprejema argumentov" -#: cmdline/apt-get.cc:1711 +#: cmdline/apt-get.cc:1713 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" "Program ne bi smel brisati stvari, ni mogoče zagnati " "SamodejnegaOdstranjevalnika" -#: cmdline/apt-get.cc:1815 +#: cmdline/apt-get.cc:1817 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -730,15 +732,15 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1818 cmdline/apt-get.cc:1987 +#: cmdline/apt-get.cc:1820 cmdline/apt-get.cc:1989 msgid "The following information may help to resolve the situation:" msgstr "Naslednji podatki vam bodo morda pomagali rešiti težavo:" -#: cmdline/apt-get.cc:1822 +#: cmdline/apt-get.cc:1824 msgid "Internal Error, AutoRemover broke stuff" msgstr "Notranja napaka, SamodejniOdstranjevalnik je pokvaril stvari" -#: cmdline/apt-get.cc:1829 +#: cmdline/apt-get.cc:1831 msgid "" "The following package was automatically installed and is no longer required:" msgid_plural "" @@ -750,7 +752,7 @@ msgstr[2] "" "Naslednja paketa sta bila samodejno nameščena in nista več zahtevana:" msgstr[3] "Naslednji paketi so bili samodejno nameščeni in niso več zahtevani:" -#: cmdline/apt-get.cc:1833 +#: cmdline/apt-get.cc:1835 #, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -760,7 +762,7 @@ msgstr[1] "%lu paket je bil samodejno nameščen in ni bil več zahtevan.\n" msgstr[2] "%lu paketa sta bila samodejno nameščena in nista več zahtevana.\n" msgstr[3] "%lu paketi so bili samodejno nameščeni in niso več zahtevani.\n" -#: cmdline/apt-get.cc:1835 +#: cmdline/apt-get.cc:1837 msgid "Use 'apt-get autoremove' to remove it." msgid_plural "Use 'apt-get autoremove' to remove them." msgstr[0] "Uporabite 'apt-get autoremove' za njihovo odstranitev." @@ -768,15 +770,15 @@ msgstr[1] "Uporabite 'apt-get autoremove' za njegovo odstranitev." msgstr[2] "Uporabite 'apt-get autoremove' za njuno odstranitev." msgstr[3] "Uporabite 'apt-get autoremove' za njihovo odstranitev." -#: cmdline/apt-get.cc:1854 +#: cmdline/apt-get.cc:1856 msgid "Internal error, AllUpgrade broke stuff" msgstr "Notranja napaka zaradi AllUpgrade." -#: cmdline/apt-get.cc:1953 +#: cmdline/apt-get.cc:1955 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "Poskusite zagnati 'apt-get -f install', če želite popraviti naslednje:" -#: cmdline/apt-get.cc:1957 +#: cmdline/apt-get.cc:1959 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -784,7 +786,7 @@ msgstr "" "Nerešene odvisnosti. Poskusite 'apt-get -f install' brez paketov (ali " "navedite rešitev)." -#: cmdline/apt-get.cc:1972 +#: cmdline/apt-get.cc:1974 msgid "" "Some packages could not be installed. This may mean that you have\n" "requested an impossible situation or if you are using the unstable\n" @@ -796,33 +798,33 @@ msgstr "" ", da nekateri zahtevani paketi še niso ustvarjeni ali premaknjeni\n" " iz Prihajajočega." -#: cmdline/apt-get.cc:1993 +#: cmdline/apt-get.cc:1995 msgid "Broken packages" msgstr "Pokvarjeni paketi" -#: cmdline/apt-get.cc:2019 +#: cmdline/apt-get.cc:2021 msgid "The following extra packages will be installed:" msgstr "Naslednji dodatni paketi bodo nameščeni:" -#: cmdline/apt-get.cc:2109 +#: cmdline/apt-get.cc:2111 msgid "Suggested packages:" msgstr "Predlagani paketi:" -#: cmdline/apt-get.cc:2110 +#: cmdline/apt-get.cc:2112 msgid "Recommended packages:" msgstr "Priporočeni paketi:" -#: cmdline/apt-get.cc:2152 +#: cmdline/apt-get.cc:2154 #, c-format msgid "Couldn't find package %s" msgstr "Ni mogoče najti paketa %s" -#: cmdline/apt-get.cc:2159 cmdline/apt-mark.cc:70 +#: cmdline/apt-get.cc:2161 cmdline/apt-mark.cc:70 #, c-format msgid "%s set to automatically installed.\n" msgstr "%s je nastavljen na samodejno nameščen.\n" -#: cmdline/apt-get.cc:2167 cmdline/apt-mark.cc:114 +#: cmdline/apt-get.cc:2169 cmdline/apt-mark.cc:114 msgid "" "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " "instead." @@ -830,47 +832,47 @@ msgstr "" "Ta ukaz je zastarel. Namesto njega uporabite 'apt-mark auto' in 'apt-mark " "manual'." -#: cmdline/apt-get.cc:2183 +#: cmdline/apt-get.cc:2185 msgid "Calculating upgrade... " msgstr "Preračunavanje nadgradnje ... " -#: cmdline/apt-get.cc:2186 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 msgid "Failed" msgstr "Spodletelo" -#: cmdline/apt-get.cc:2191 +#: cmdline/apt-get.cc:2193 msgid "Done" msgstr "Opravljeno" -#: cmdline/apt-get.cc:2258 cmdline/apt-get.cc:2266 +#: cmdline/apt-get.cc:2260 cmdline/apt-get.cc:2268 msgid "Internal error, problem resolver broke stuff" msgstr "Notranja napaka, reševalnik težav je pokvaril stvari" -#: cmdline/apt-get.cc:2294 cmdline/apt-get.cc:2330 +#: cmdline/apt-get.cc:2296 cmdline/apt-get.cc:2332 msgid "Unable to lock the download directory" msgstr "Ni mogoče zakleniti mape prejemov" -#: cmdline/apt-get.cc:2386 +#: cmdline/apt-get.cc:2388 #, c-format msgid "Can't find a source to download version '%s' of '%s'" msgstr "Ni mogoče najti vira za prejem različice '%s' paketa '%s'" -#: cmdline/apt-get.cc:2391 +#: cmdline/apt-get.cc:2393 #, c-format msgid "Downloading %s %s" msgstr "Prejemanje %s %s" -#: cmdline/apt-get.cc:2451 +#: cmdline/apt-get.cc:2453 msgid "Must specify at least one package to fetch source for" msgstr "" "Potrebno je navesti vsaj en paket, za katerega želite dobiti izvorno kodo" -#: cmdline/apt-get.cc:2491 cmdline/apt-get.cc:2803 +#: cmdline/apt-get.cc:2493 cmdline/apt-get.cc:2805 #, c-format msgid "Unable to find a source package for %s" msgstr "Izvornega paketa za %s ni mogoče najti" -#: cmdline/apt-get.cc:2508 +#: cmdline/apt-get.cc:2510 #, c-format msgid "" "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" @@ -879,7 +881,7 @@ msgstr "" "OPOMBA: pakiranje '%s' vzdrževano v sistemu nadzora različice '%s' na:\n" "%s\n" -#: cmdline/apt-get.cc:2513 +#: cmdline/apt-get.cc:2515 #, c-format msgid "" "Please use:\n" @@ -890,70 +892,70 @@ msgstr "" "bzr branch %s\n" "za pridobitev zadnjih (morda še neizdanih) posodobitev paketa.\n" -#: cmdline/apt-get.cc:2566 +#: cmdline/apt-get.cc:2568 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Preskok že prejete datoteke '%s'\n" -#: cmdline/apt-get.cc:2603 +#: cmdline/apt-get.cc:2605 #, c-format msgid "You don't have enough free space in %s" msgstr "Nimate dovolj prostora na %s" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:2612 +#: cmdline/apt-get.cc:2614 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "Potrebno je dobiti %sB/%sB izvornih arhivov.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:2617 +#: cmdline/apt-get.cc:2619 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Potrebno je dobiti %sB izvornih arhivov.\n" -#: cmdline/apt-get.cc:2623 +#: cmdline/apt-get.cc:2625 #, c-format msgid "Fetch source %s\n" msgstr "Dobi vir %s\n" -#: cmdline/apt-get.cc:2661 +#: cmdline/apt-get.cc:2663 msgid "Failed to fetch some archives." msgstr "Nekaterih arhivov ni mogoče pridobiti." -#: cmdline/apt-get.cc:2692 +#: cmdline/apt-get.cc:2694 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "Odpakiranje že odpakiranih izvornih paketov v %s je bilo preskočeno\n" -#: cmdline/apt-get.cc:2704 +#: cmdline/apt-get.cc:2706 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Ukaz odpakiranja '%s' ni uspel.\n" -#: cmdline/apt-get.cc:2705 +#: cmdline/apt-get.cc:2707 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "Izberite, če je paket 'dpkg-dev' nameščen.\n" -#: cmdline/apt-get.cc:2727 +#: cmdline/apt-get.cc:2729 #, c-format msgid "Build command '%s' failed.\n" msgstr "Ukaz gradnje '%s' ni uspel.\n" -#: cmdline/apt-get.cc:2747 +#: cmdline/apt-get.cc:2749 msgid "Child process failed" msgstr "Podrejeno opravilo ni uspelo" -#: cmdline/apt-get.cc:2766 +#: cmdline/apt-get.cc:2768 msgid "Must specify at least one package to check builddeps for" msgstr "" "Potrebno je navesti vsaj en paket, za katerega želite preveriti odvisnosti " "za gradnjo" -#: cmdline/apt-get.cc:2791 +#: cmdline/apt-get.cc:2793 #, c-format msgid "" "No architecture information available for %s. See apt.conf(5) APT::" @@ -962,17 +964,17 @@ msgstr "" "Za %s ni bilo mogoče najti podatkov o arhitekturi. Za nastavitev si oglejte " "apt.conf(5) APT::Architectures" -#: cmdline/apt-get.cc:2815 cmdline/apt-get.cc:2818 +#: cmdline/apt-get.cc:2817 cmdline/apt-get.cc:2820 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "Ni mogoče dobiti podrobnosti o odvisnostih za gradnjo za %s" -#: cmdline/apt-get.cc:2838 +#: cmdline/apt-get.cc:2840 #, c-format msgid "%s has no build depends.\n" msgstr "%s nima odvisnosti za gradnjo.\n" -#: cmdline/apt-get.cc:3008 +#: cmdline/apt-get.cc:3010 #, c-format msgid "" "%s dependency for %s can't be satisfied because %s is not allowed on '%s' " @@ -980,20 +982,20 @@ msgid "" msgstr "" "odvisnosti %s za %s ni mogoče zadovoljiti, ker %s ni dovoljen na paketih '%s'" -#: cmdline/apt-get.cc:3026 +#: cmdline/apt-get.cc:3028 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " "found" msgstr "%s odvisnosti za %s ni mogoče zadostiti, ker ni mogoče najti paketa %s" -#: cmdline/apt-get.cc:3049 +#: cmdline/apt-get.cc:3051 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "Ni mogoče zadostiti %s odvisnosti za %s. Nameščen paket %s je preveč nov" -#: cmdline/apt-get.cc:3088 +#: cmdline/apt-get.cc:3090 #, c-format msgid "" "%s dependency for %s cannot be satisfied because candidate version of " @@ -1002,7 +1004,7 @@ msgstr "" "odvisnosti %s za %s ni mogoče zadovoljiti, ker je različica kandidata paketa " "%s ne more zadostiti zahtev različice" -#: cmdline/apt-get.cc:3094 +#: cmdline/apt-get.cc:3096 #, c-format msgid "" "%s dependency for %s cannot be satisfied because package %s has no candidate " @@ -1011,30 +1013,30 @@ msgstr "" "odvisnosti %s za %s ni mogoče zadovoljiti, ker je različica kandidata paketa " "%s nima različice kandidata" -#: cmdline/apt-get.cc:3117 +#: cmdline/apt-get.cc:3119 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "Ni mogoče zadostiti %s odvisnosti za %s: %s" -#: cmdline/apt-get.cc:3133 +#: cmdline/apt-get.cc:3135 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "Odvisnosti za gradnjo %s ni bilo mogoče zadostiti." -#: cmdline/apt-get.cc:3138 +#: cmdline/apt-get.cc:3140 msgid "Failed to process build dependencies" msgstr "Obdelava odvisnosti za gradnjo je spodletela" -#: cmdline/apt-get.cc:3231 cmdline/apt-get.cc:3243 +#: cmdline/apt-get.cc:3233 cmdline/apt-get.cc:3245 #, c-format msgid "Changelog for %s (%s)" msgstr "Dnevnik sprememb za %s (%s)" -#: cmdline/apt-get.cc:3366 +#: cmdline/apt-get.cc:3368 msgid "Supported modules:" msgstr "Podprti moduli:" -#: cmdline/apt-get.cc:3407 +#: cmdline/apt-get.cc:3409 msgid "" "Usage: apt-get [options] command\n" " apt-get [options] install|remove pkg1 [pkg2 ...]\n" @@ -1121,7 +1123,7 @@ msgstr "" " sources.list(5) in apt.conf(5). \n" " Ta APT ima moči super krav.\n" -#: cmdline/apt-get.cc:3572 +#: cmdline/apt-get.cc:3574 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1736,7 +1738,7 @@ msgstr "" " -c=? Prebere podano datoteko z nastavitvami\n" " -o=? Nastavi poljubno nastavitveno možnost, na primer. -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1335 +#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1339 #, c-format msgid "Unable to write to %s" msgstr "Ni mogoče pisati na %s" @@ -2779,7 +2781,7 @@ msgstr "Slabo oblikovana vrstica %u v seznamu virov %s (vrsta)" msgid "Type '%s' is not known on line %u in source list %s" msgstr "Vrsta '%s' v vrstici %u na seznamu virov %s ni znana" -#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:896 +#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:898 #, c-format msgid "" "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " @@ -2788,12 +2790,12 @@ msgstr "" "Ni mogoče izvesti takojąnje nastavitve na '%s'. Oglejte si man5 apt.conf pod " "APT::Immediate-Configure za podrobnosti. (%d)" -#: apt-pkg/packagemanager.cc:473 apt-pkg/packagemanager.cc:503 +#: apt-pkg/packagemanager.cc:473 apt-pkg/packagemanager.cc:504 #, c-format msgid "Could not configure '%s'. " msgstr "Ni mogoče nastaviti '%s' " -#: apt-pkg/packagemanager.cc:545 +#: apt-pkg/packagemanager.cc:546 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2827,7 +2829,7 @@ msgstr "" msgid "Unable to correct problems, you have held broken packages." msgstr "Ni mogoče popraviti težav. Imate pokvarjene pakete." -#: apt-pkg/algorithms.cc:1574 apt-pkg/algorithms.cc:1576 +#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 msgid "" "Some index files failed to download. They have been ignored, or old ones " "used instead." @@ -2970,21 +2972,21 @@ msgstr "Čestitamo, presegli ste število odvisnosti, ki jih zmore APT." msgid "Package %s %s was not found while processing file dependencies" msgstr "Paketa %s %s ni bilo mogoče najti med obdelavo odvisnosti datotek" -#: apt-pkg/pkgcachegen.cc:1146 +#: apt-pkg/pkgcachegen.cc:1150 #, c-format msgid "Couldn't stat source package list %s" msgstr "Ni mogoče določiti seznama izvornih paketov %s" -#: apt-pkg/pkgcachegen.cc:1234 apt-pkg/pkgcachegen.cc:1338 -#: apt-pkg/pkgcachegen.cc:1344 apt-pkg/pkgcachegen.cc:1501 +#: apt-pkg/pkgcachegen.cc:1238 apt-pkg/pkgcachegen.cc:1342 +#: apt-pkg/pkgcachegen.cc:1348 apt-pkg/pkgcachegen.cc:1505 msgid "Reading package lists" msgstr "Branje seznama paketov" -#: apt-pkg/pkgcachegen.cc:1251 +#: apt-pkg/pkgcachegen.cc:1255 msgid "Collecting File Provides" msgstr "Zbiranje dobaviteljev datotek" -#: apt-pkg/pkgcachegen.cc:1443 apt-pkg/pkgcachegen.cc:1450 +#: apt-pkg/pkgcachegen.cc:1447 apt-pkg/pkgcachegen.cc:1454 msgid "IO Error saving source cache" msgstr "Napaka VI med shranjevanjem predpomnilnika virov" diff --git a/po/sv.po b/po/sv.po index ff85a8ba2..02bcf0c49 100644 --- a/po/sv.po +++ b/po/sv.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2012-10-15 09:49+0200\n" +"POT-Creation-Date: 2013-03-14 08:05+0100\n" "PO-Revision-Date: 2010-08-24 21:18+0100\n" "Last-Translator: Daniel Nylander \n" "Language-Team: Swedish \n" @@ -156,7 +156,7 @@ msgid " Version table:" msgstr " Versionstabell:" #: cmdline/apt-cache.cc:1683 cmdline/apt-cdrom.cc:198 cmdline/apt-config.cc:81 -#: cmdline/apt-get.cc:3361 cmdline/apt-mark.cc:375 +#: cmdline/apt-get.cc:3363 cmdline/apt-mark.cc:375 #: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:590 #: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147 #, c-format @@ -486,7 +486,7 @@ msgstr "Ominstallation av %s är inte möjlig, det kan inte hämtas.\n" msgid "%s is already the newest version.\n" msgstr "%s är redan den senaste versionen.\n" -#: cmdline/apt-get.cc:858 cmdline/apt-get.cc:2157 cmdline/apt-mark.cc:68 +#: cmdline/apt-get.cc:858 cmdline/apt-get.cc:2159 cmdline/apt-mark.cc:68 #, c-format msgid "%s set to manually installed.\n" msgstr "%s är satt till manuellt installerad.\n" @@ -596,8 +596,8 @@ msgstr "" msgid "After this operation, %sB disk space will be freed.\n" msgstr "Efter denna åtgärd kommer %sB att frigöras på disken.\n" -#: cmdline/apt-get.cc:1228 cmdline/apt-get.cc:1231 cmdline/apt-get.cc:2589 -#: cmdline/apt-get.cc:2592 +#: cmdline/apt-get.cc:1228 cmdline/apt-get.cc:1231 cmdline/apt-get.cc:2591 +#: cmdline/apt-get.cc:2594 #, c-format msgid "Couldn't determine free space in %s" msgstr "Kunde inte fastställa ledigt utrymme i %s" @@ -607,15 +607,17 @@ msgstr "Kunde inte fastställa ledigt utrymme i %s" msgid "You don't have enough free space in %s." msgstr "Du har inte tillräckligt mycket ledigt utrymme i %s" -#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1277 +#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1279 msgid "Trivial Only specified but this is not a trivial operation." msgstr "\"Trivial Only\" angavs, men detta är inte en trivial handling." -#: cmdline/apt-get.cc:1259 +#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be +#. careful with hard to type or special characters (like non-breaking spaces) +#: cmdline/apt-get.cc:1261 msgid "Yes, do as I say!" msgstr "Ja, gör som jag säger!" -#: cmdline/apt-get.cc:1261 +#: cmdline/apt-get.cc:1263 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -627,28 +629,28 @@ msgstr "" " ?] " # Visas då man svarar nej -#: cmdline/apt-get.cc:1267 cmdline/apt-get.cc:1286 +#: cmdline/apt-get.cc:1269 cmdline/apt-get.cc:1288 msgid "Abort." msgstr "Avbryter." -#: cmdline/apt-get.cc:1282 +#: cmdline/apt-get.cc:1284 msgid "Do you want to continue [Y/n]? " msgstr "Vill du fortsätta [J/n]? " -#: cmdline/apt-get.cc:1354 cmdline/apt-get.cc:2654 apt-pkg/algorithms.cc:1548 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Misslyckades med att hämta %s %s\n" -#: cmdline/apt-get.cc:1372 +#: cmdline/apt-get.cc:1374 msgid "Some files failed to download" msgstr "Misslyckades med att hämta vissa filer" -#: cmdline/apt-get.cc:1373 cmdline/apt-get.cc:2666 +#: cmdline/apt-get.cc:1375 cmdline/apt-get.cc:2668 msgid "Download complete and in download only mode" msgstr "Hämtningen färdig i \"endast-hämta\"-läge" -#: cmdline/apt-get.cc:1379 +#: cmdline/apt-get.cc:1381 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -656,19 +658,19 @@ msgstr "" "Vissa arkiv kunte inte hämtas. Prova att köra \"apt-get update\" eller med --" "fix-missing." -#: cmdline/apt-get.cc:1383 +#: cmdline/apt-get.cc:1385 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix-missing och mediabyte stöds inte för tillfället" -#: cmdline/apt-get.cc:1388 +#: cmdline/apt-get.cc:1390 msgid "Unable to correct missing packages." msgstr "Kunde inte korrigera saknade paket." -#: cmdline/apt-get.cc:1389 +#: cmdline/apt-get.cc:1391 msgid "Aborting install." msgstr "Avbryter installationen." -#: cmdline/apt-get.cc:1417 +#: cmdline/apt-get.cc:1419 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -682,36 +684,36 @@ msgstr[1] "" "Följande paket har försvunnit från ditt system eftersom\n" "alla filer har skrivits över av andra paket:" -#: cmdline/apt-get.cc:1421 +#: cmdline/apt-get.cc:1423 msgid "Note: This is done automatically and on purpose by dpkg." msgstr "Observera: Detta sker med automatik och vid behov av dpkg." -#: cmdline/apt-get.cc:1559 +#: cmdline/apt-get.cc:1561 #, c-format msgid "Ignore unavailable target release '%s' of package '%s'" msgstr "Ignorera otillgängliga målutgåvan \"%s\" av paketet \"%s\"" -#: cmdline/apt-get.cc:1591 +#: cmdline/apt-get.cc:1593 #, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "Väljer \"%s\" som källkodspaket istället för \"%s\"\n" #. if (VerTag.empty() == false && Last == 0) -#: cmdline/apt-get.cc:1629 +#: cmdline/apt-get.cc:1631 #, c-format msgid "Ignore unavailable version '%s' of package '%s'" msgstr "Ignorera otillgängliga versionen \"%s\" av paketet \"%s\"" -#: cmdline/apt-get.cc:1645 +#: cmdline/apt-get.cc:1647 msgid "The update command takes no arguments" msgstr "Uppdateringskommandot tar inga argument" -#: cmdline/apt-get.cc:1711 +#: cmdline/apt-get.cc:1713 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" "Det är inte meningen att vi ska ta bort något, kan inte starta AutoRemover" -#: cmdline/apt-get.cc:1815 +#: cmdline/apt-get.cc:1817 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -729,15 +731,15 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1818 cmdline/apt-get.cc:1987 +#: cmdline/apt-get.cc:1820 cmdline/apt-get.cc:1989 msgid "The following information may help to resolve the situation:" msgstr "Följande information kan vara till hjälp för att lösa situationen:" -#: cmdline/apt-get.cc:1822 +#: cmdline/apt-get.cc:1824 msgid "Internal Error, AutoRemover broke stuff" msgstr "Internt fel, AutoRemover förstörde något" -#: cmdline/apt-get.cc:1829 +#: cmdline/apt-get.cc:1831 msgid "" "The following package was automatically installed and is no longer required:" msgid_plural "" @@ -748,7 +750,7 @@ msgstr[0] "" msgstr[1] "" "Följande paket har installerats automatiskt och är inte längre nödvändiga:" -#: cmdline/apt-get.cc:1833 +#: cmdline/apt-get.cc:1835 #, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -758,22 +760,22 @@ msgstr[0] "" msgstr[1] "" "%lu paket blev installerade automatiskt och är inte längre nödvändiga.\n" -#: cmdline/apt-get.cc:1835 +#: cmdline/apt-get.cc:1837 #, fuzzy msgid "Use 'apt-get autoremove' to remove it." msgid_plural "Use 'apt-get autoremove' to remove them." msgstr[0] "Använd \"apt-get autoremove\" för att ta bort dem." msgstr[1] "Använd \"apt-get autoremove\" för att ta bort dem." -#: cmdline/apt-get.cc:1854 +#: cmdline/apt-get.cc:1856 msgid "Internal error, AllUpgrade broke stuff" msgstr "Internt fel, AllUpgrade förstörde något" -#: cmdline/apt-get.cc:1953 +#: cmdline/apt-get.cc:1955 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "Du bör köra \"apt-get -f install\" för att korrigera dessa:" -#: cmdline/apt-get.cc:1957 +#: cmdline/apt-get.cc:1959 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -781,7 +783,7 @@ msgstr "" "Otillfredsställda beroenden. Prova med \"apt-get -f install\" utan paket " "(eller ange en lösning)." -#: cmdline/apt-get.cc:1972 +#: cmdline/apt-get.cc:1974 msgid "" "Some packages could not be installed. This may mean that you have\n" "requested an impossible situation or if you are using the unstable\n" @@ -793,78 +795,78 @@ msgstr "" "att några nödvändiga paket ännu inte har skapats eller flyttats\n" "ut från \"Incoming\"." -#: cmdline/apt-get.cc:1993 +#: cmdline/apt-get.cc:1995 msgid "Broken packages" msgstr "Trasiga paket" -#: cmdline/apt-get.cc:2019 +#: cmdline/apt-get.cc:2021 msgid "The following extra packages will be installed:" msgstr "Följande ytterligare paket kommer att installeras:" -#: cmdline/apt-get.cc:2109 +#: cmdline/apt-get.cc:2111 msgid "Suggested packages:" msgstr "Föreslagna paket:" -#: cmdline/apt-get.cc:2110 +#: cmdline/apt-get.cc:2112 msgid "Recommended packages:" msgstr "Rekommenderade paket:" -#: cmdline/apt-get.cc:2152 +#: cmdline/apt-get.cc:2154 #, c-format msgid "Couldn't find package %s" msgstr "Kunde inte hitta paketet %s" -#: cmdline/apt-get.cc:2159 cmdline/apt-mark.cc:70 +#: cmdline/apt-get.cc:2161 cmdline/apt-mark.cc:70 #, c-format msgid "%s set to automatically installed.\n" msgstr "%s är satt till automatiskt installerad.\n" -#: cmdline/apt-get.cc:2167 cmdline/apt-mark.cc:114 +#: cmdline/apt-get.cc:2169 cmdline/apt-mark.cc:114 msgid "" "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " "instead." msgstr "" -#: cmdline/apt-get.cc:2183 +#: cmdline/apt-get.cc:2185 msgid "Calculating upgrade... " msgstr "Beräknar uppgradering... " -#: cmdline/apt-get.cc:2186 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 msgid "Failed" msgstr "Misslyckades" -#: cmdline/apt-get.cc:2191 +#: cmdline/apt-get.cc:2193 msgid "Done" msgstr "Färdig" -#: cmdline/apt-get.cc:2258 cmdline/apt-get.cc:2266 +#: cmdline/apt-get.cc:2260 cmdline/apt-get.cc:2268 msgid "Internal error, problem resolver broke stuff" msgstr "Internt fel, problemlösaren förstörde någonting" -#: cmdline/apt-get.cc:2294 cmdline/apt-get.cc:2330 +#: cmdline/apt-get.cc:2296 cmdline/apt-get.cc:2332 msgid "Unable to lock the download directory" msgstr "Kunde inte låsa hämtningskatalogen" -#: cmdline/apt-get.cc:2386 +#: cmdline/apt-get.cc:2388 #, c-format msgid "Can't find a source to download version '%s' of '%s'" msgstr "" -#: cmdline/apt-get.cc:2391 +#: cmdline/apt-get.cc:2393 #, c-format msgid "Downloading %s %s" msgstr "" -#: cmdline/apt-get.cc:2451 +#: cmdline/apt-get.cc:2453 msgid "Must specify at least one package to fetch source for" msgstr "Du måste ange minst ett paket att hämta källkod för" -#: cmdline/apt-get.cc:2491 cmdline/apt-get.cc:2803 +#: cmdline/apt-get.cc:2493 cmdline/apt-get.cc:2805 #, c-format msgid "Unable to find a source package for %s" msgstr "Kunde inte hitta något källkodspaket för %s" -#: cmdline/apt-get.cc:2508 +#: cmdline/apt-get.cc:2510 #, c-format msgid "" "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" @@ -874,7 +876,7 @@ msgstr "" "på:\n" "%s\n" -#: cmdline/apt-get.cc:2513 +#: cmdline/apt-get.cc:2515 #, fuzzy, c-format msgid "" "Please use:\n" @@ -885,85 +887,85 @@ msgstr "" "bzr get %s\n" "för att hämta senaste (möjligen inte utgivna) uppdateringar av paketet.\n" -#: cmdline/apt-get.cc:2566 +#: cmdline/apt-get.cc:2568 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Hoppar över redan hämtade filen \"%s\"\n" -#: cmdline/apt-get.cc:2603 +#: cmdline/apt-get.cc:2605 #, c-format msgid "You don't have enough free space in %s" msgstr "Du har inte tillräckligt mycket ledigt utrymme i %s" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:2612 +#: cmdline/apt-get.cc:2614 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "Behöver hämta %sB/%sB källkodsarkiv.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:2617 +#: cmdline/apt-get.cc:2619 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Behöver hämta %sB källkodsarkiv.\n" -#: cmdline/apt-get.cc:2623 +#: cmdline/apt-get.cc:2625 #, c-format msgid "Fetch source %s\n" msgstr "Hämtar källkoden %s\n" -#: cmdline/apt-get.cc:2661 +#: cmdline/apt-get.cc:2663 msgid "Failed to fetch some archives." msgstr "Misslyckades med att hämta vissa arkiv." -#: cmdline/apt-get.cc:2692 +#: cmdline/apt-get.cc:2694 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "Packar inte upp redan uppackad källkod i %s\n" -#: cmdline/apt-get.cc:2704 +#: cmdline/apt-get.cc:2706 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Uppackningskommandot \"%s\" misslyckades.\n" -#: cmdline/apt-get.cc:2705 +#: cmdline/apt-get.cc:2707 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "Försäkra dig om att paketet \"dpkg-dev\" är installerat.\n" -#: cmdline/apt-get.cc:2727 +#: cmdline/apt-get.cc:2729 #, c-format msgid "Build command '%s' failed.\n" msgstr "Byggkommandot \"%s\" misslyckades.\n" -#: cmdline/apt-get.cc:2747 +#: cmdline/apt-get.cc:2749 msgid "Child process failed" msgstr "Barnprocessen misslyckades" -#: cmdline/apt-get.cc:2766 +#: cmdline/apt-get.cc:2768 msgid "Must specify at least one package to check builddeps for" msgstr "Du måste ange minst ett paket att kontrollera byggberoenden för" -#: cmdline/apt-get.cc:2791 +#: cmdline/apt-get.cc:2793 #, c-format msgid "" "No architecture information available for %s. See apt.conf(5) APT::" "Architectures for setup" msgstr "" -#: cmdline/apt-get.cc:2815 cmdline/apt-get.cc:2818 +#: cmdline/apt-get.cc:2817 cmdline/apt-get.cc:2820 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "Kunde inte hämta information om byggberoenden för %s" -#: cmdline/apt-get.cc:2838 +#: cmdline/apt-get.cc:2840 #, c-format msgid "%s has no build depends.\n" msgstr "%s har inga byggberoenden.\n" -#: cmdline/apt-get.cc:3008 +#: cmdline/apt-get.cc:3010 #, fuzzy, c-format msgid "" "%s dependency for %s can't be satisfied because %s is not allowed on '%s' " @@ -972,7 +974,7 @@ msgstr "" "%s-beroendet på %s kan inte tillfredsställas eftersom paketet %s inte kan " "hittas" -#: cmdline/apt-get.cc:3026 +#: cmdline/apt-get.cc:3028 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -981,14 +983,14 @@ msgstr "" "%s-beroendet på %s kan inte tillfredsställas eftersom paketet %s inte kan " "hittas" -#: cmdline/apt-get.cc:3049 +#: cmdline/apt-get.cc:3051 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "Misslyckades med att tillfredsställa %s-beroendet för %s: Det installerade " "paketet %s är för nytt" -#: cmdline/apt-get.cc:3088 +#: cmdline/apt-get.cc:3090 #, fuzzy, c-format msgid "" "%s dependency for %s cannot be satisfied because candidate version of " @@ -997,7 +999,7 @@ msgstr "" "%s-beroendet på %s kan inte tillfredsställas eftersom inga tillgängliga " "versioner av paketet %s tillfredsställer versionskraven" -#: cmdline/apt-get.cc:3094 +#: cmdline/apt-get.cc:3096 #, fuzzy, c-format msgid "" "%s dependency for %s cannot be satisfied because package %s has no candidate " @@ -1006,31 +1008,31 @@ msgstr "" "%s-beroendet på %s kan inte tillfredsställas eftersom paketet %s inte kan " "hittas" -#: cmdline/apt-get.cc:3117 +#: cmdline/apt-get.cc:3119 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "Misslyckades med att tillfredsställa %s-beroendet för %s: %s" -#: cmdline/apt-get.cc:3133 +#: cmdline/apt-get.cc:3135 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "Byggberoenden för %s kunde inte tillfredsställas." -#: cmdline/apt-get.cc:3138 +#: cmdline/apt-get.cc:3140 msgid "Failed to process build dependencies" msgstr "Misslyckades med att behandla byggberoenden" # Felmeddelande för misslyckad chdir -#: cmdline/apt-get.cc:3231 cmdline/apt-get.cc:3243 +#: cmdline/apt-get.cc:3233 cmdline/apt-get.cc:3245 #, fuzzy, c-format msgid "Changelog for %s (%s)" msgstr "Ansluter till %s (%s)" -#: cmdline/apt-get.cc:3366 +#: cmdline/apt-get.cc:3368 msgid "Supported modules:" msgstr "Moduler som stöds:" -#: cmdline/apt-get.cc:3407 +#: cmdline/apt-get.cc:3409 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1118,7 +1120,7 @@ msgstr "" "för mer information och flaggor.\n" " Denna APT har Speciella Ko-Krafter.\n" -#: cmdline/apt-get.cc:3572 +#: cmdline/apt-get.cc:3574 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1729,7 +1731,7 @@ msgstr "" " -c=? Läs denna konfigurationsfil.\n" " -o=? Ställ in en godtycklig konfigurationsflagga, t.ex -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1335 +#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1339 #, c-format msgid "Unable to write to %s" msgstr "Kunde inte skriva till %s" @@ -2775,7 +2777,7 @@ msgstr "Rad %u i källistan %s har fel format (typ)" msgid "Type '%s' is not known on line %u in source list %s" msgstr "Typ \"%s\" är inte känd på rad %u i listan över källor %s" -#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:896 +#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:898 #, c-format msgid "" "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " @@ -2784,12 +2786,12 @@ msgstr "" "Kunde inte genomföra omedelbar konfiguration på \"%s\". Se man 5 apt.conf " "under APT::Immediate-Configure för information. (%d)" -#: apt-pkg/packagemanager.cc:473 apt-pkg/packagemanager.cc:503 +#: apt-pkg/packagemanager.cc:473 apt-pkg/packagemanager.cc:504 #, fuzzy, c-format msgid "Could not configure '%s'. " msgstr "Kunde inte öppna filen \"%s\"" -#: apt-pkg/packagemanager.cc:545 +#: apt-pkg/packagemanager.cc:546 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2825,7 +2827,7 @@ msgstr "" msgid "Unable to correct problems, you have held broken packages." msgstr "Kunde inte korrigera problemen, du har hållit tillbaka trasiga paket." -#: apt-pkg/algorithms.cc:1574 apt-pkg/algorithms.cc:1576 +#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 #, fuzzy msgid "" "Some index files failed to download. They have been ignored, or old ones " @@ -2971,22 +2973,22 @@ msgstr "Grattis, du överskred antalet beroenden som denna APT kan hantera." msgid "Package %s %s was not found while processing file dependencies" msgstr "Paketet %s %s hittades inte när filberoenden hanterades" -#: apt-pkg/pkgcachegen.cc:1146 +#: apt-pkg/pkgcachegen.cc:1150 #, c-format msgid "Couldn't stat source package list %s" msgstr "Kunde inte ta status på källkodspaketlistan %s" -#: apt-pkg/pkgcachegen.cc:1234 apt-pkg/pkgcachegen.cc:1338 -#: apt-pkg/pkgcachegen.cc:1344 apt-pkg/pkgcachegen.cc:1501 +#: apt-pkg/pkgcachegen.cc:1238 apt-pkg/pkgcachegen.cc:1342 +#: apt-pkg/pkgcachegen.cc:1348 apt-pkg/pkgcachegen.cc:1505 msgid "Reading package lists" msgstr "Läser paketlistor" # Bättre ord? -#: apt-pkg/pkgcachegen.cc:1251 +#: apt-pkg/pkgcachegen.cc:1255 msgid "Collecting File Provides" msgstr "Samlar filtillhandahållningar" -#: apt-pkg/pkgcachegen.cc:1443 apt-pkg/pkgcachegen.cc:1450 +#: apt-pkg/pkgcachegen.cc:1447 apt-pkg/pkgcachegen.cc:1454 msgid "IO Error saving source cache" msgstr "In-/utfel vid lagring av källcache" diff --git a/po/th.po b/po/th.po index 5badf49fb..9da100061 100644 --- a/po/th.po +++ b/po/th.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2012-10-15 09:49+0200\n" +"POT-Creation-Date: 2013-03-14 08:05+0100\n" "PO-Revision-Date: 2012-10-27 22:44+0700\n" "Last-Translator: Theppitak Karoonboonyanan \n" "Language-Team: Thai \n" @@ -154,7 +154,7 @@ msgid " Version table:" msgstr " ตารางรุ่น:" #: cmdline/apt-cache.cc:1683 cmdline/apt-cdrom.cc:198 cmdline/apt-config.cc:81 -#: cmdline/apt-get.cc:3361 cmdline/apt-mark.cc:375 +#: cmdline/apt-get.cc:3363 cmdline/apt-mark.cc:375 #: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:590 #: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147 #, c-format @@ -476,7 +476,7 @@ msgstr "ไม่สามารถติดตั้ง %s ซ้ำได้ msgid "%s is already the newest version.\n" msgstr "%s เป็นรุ่นใหม่ล่าสุดอยู่แล้ว\n" -#: cmdline/apt-get.cc:858 cmdline/apt-get.cc:2157 cmdline/apt-mark.cc:68 +#: cmdline/apt-get.cc:858 cmdline/apt-get.cc:2159 cmdline/apt-mark.cc:68 #, c-format msgid "%s set to manually installed.\n" msgstr "กำหนด %s ให้เป็นการติดตั้งแบบเลือกเองแล้ว\n" @@ -583,8 +583,8 @@ msgstr "หลังจากการกระทำนี้ ต้องใ msgid "After this operation, %sB disk space will be freed.\n" msgstr "หลังจากการกระทำนี้ เนื้อที่บนดิสก์จะว่างเพิ่มอีก %sB\n" -#: cmdline/apt-get.cc:1228 cmdline/apt-get.cc:1231 cmdline/apt-get.cc:2589 -#: cmdline/apt-get.cc:2592 +#: cmdline/apt-get.cc:1228 cmdline/apt-get.cc:1231 cmdline/apt-get.cc:2591 +#: cmdline/apt-get.cc:2594 #, c-format msgid "Couldn't determine free space in %s" msgstr "ไม่สามารถคำนวณพื้นที่ว่างใน %s" @@ -594,15 +594,17 @@ msgstr "ไม่สามารถคำนวณพื้นที่ว่า msgid "You don't have enough free space in %s." msgstr "คุณมีพื้นที่ว่างเหลือไม่พอใน %s" -#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1277 +#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1279 msgid "Trivial Only specified but this is not a trivial operation." msgstr "Trivial Only ถูกกำหนดไว้ แต่คำสั่งนี้ไม่ใช่คำสั่งเล็กน้อย" -#: cmdline/apt-get.cc:1259 +#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be +#. careful with hard to type or special characters (like non-breaking spaces) +#: cmdline/apt-get.cc:1261 msgid "Yes, do as I say!" msgstr "Yes, do as I say!" -#: cmdline/apt-get.cc:1261 +#: cmdline/apt-get.cc:1263 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -613,28 +615,28 @@ msgstr "" "หากต้องการดำเนินการต่อ ให้พิมพ์ประโยค '%s'\n" " ?] " -#: cmdline/apt-get.cc:1267 cmdline/apt-get.cc:1286 +#: cmdline/apt-get.cc:1269 cmdline/apt-get.cc:1288 msgid "Abort." msgstr "เลิกทำ" -#: cmdline/apt-get.cc:1282 +#: cmdline/apt-get.cc:1284 msgid "Do you want to continue [Y/n]? " msgstr "คุณต้องการจะดำเนินการต่อไปหรือไม่ [Y/n]?" -#: cmdline/apt-get.cc:1354 cmdline/apt-get.cc:2654 apt-pkg/algorithms.cc:1548 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 #, c-format msgid "Failed to fetch %s %s\n" msgstr "ไม่สามารถดาวน์โหลด %s %s\n" -#: cmdline/apt-get.cc:1372 +#: cmdline/apt-get.cc:1374 msgid "Some files failed to download" msgstr "ดาวน์โหลดบางแฟ้มไม่สำเร็จ" -#: cmdline/apt-get.cc:1373 cmdline/apt-get.cc:2666 +#: cmdline/apt-get.cc:1375 cmdline/apt-get.cc:2668 msgid "Download complete and in download only mode" msgstr "ดาวน์โหลดสำเร็จแล้ว และอยู่ในโหมดดาวน์โหลดอย่างเดียว" -#: cmdline/apt-get.cc:1379 +#: cmdline/apt-get.cc:1381 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -642,19 +644,19 @@ msgstr "" "ดาวน์โหลดบางแพกเกจไม่สำเร็จ บางที การเรียก apt-get update หรือลองใช้ตัวเลือก --fix-" "missing อาจช่วยได้" -#: cmdline/apt-get.cc:1383 +#: cmdline/apt-get.cc:1385 msgid "--fix-missing and media swapping is not currently supported" msgstr "ยังไม่รองรับ --fix-missing พร้อมกับการเปลี่ยนแผ่น" -#: cmdline/apt-get.cc:1388 +#: cmdline/apt-get.cc:1390 msgid "Unable to correct missing packages." msgstr "ไม่สามารถแก้ปัญหาแพกเกจที่ขาดหายได้" -#: cmdline/apt-get.cc:1389 +#: cmdline/apt-get.cc:1391 msgid "Aborting install." msgstr "จะล้มเลิกการติดตั้ง" -#: cmdline/apt-get.cc:1417 +#: cmdline/apt-get.cc:1419 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -665,35 +667,35 @@ msgstr[0] "" "แพกเกจต่อไปนี้ได้หายไปจากระบบของคุณ เพราะแฟ้มทั้งหมดได้ถูกแทนที่\n" "โดยแพกเกจอื่นแล้ว:" -#: cmdline/apt-get.cc:1421 +#: cmdline/apt-get.cc:1423 msgid "Note: This is done automatically and on purpose by dpkg." msgstr "หมายเหตุ: นี่เป็นสิ่งที่ dpkg ทำโดยอัตโนมัติโดยเจตนา" -#: cmdline/apt-get.cc:1559 +#: cmdline/apt-get.cc:1561 #, c-format msgid "Ignore unavailable target release '%s' of package '%s'" msgstr "จะละเลยรุ่นเป้าหมาย '%s' ซึ่งไม่มีอยู่ของแพกเกจ '%s'" -#: cmdline/apt-get.cc:1591 +#: cmdline/apt-get.cc:1593 #, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "จะเลือก '%s' เป็นแพกเกจซอร์สแทน '%s'\n" #. if (VerTag.empty() == false && Last == 0) -#: cmdline/apt-get.cc:1629 +#: cmdline/apt-get.cc:1631 #, c-format msgid "Ignore unavailable version '%s' of package '%s'" msgstr "จะละเลยรุ่น '%s' ที่ไม่มีอยู่ของแพกเกจ '%s'" -#: cmdline/apt-get.cc:1645 +#: cmdline/apt-get.cc:1647 msgid "The update command takes no arguments" msgstr "คำสั่ง update ไม่รับอาร์กิวเมนต์เพิ่ม" -#: cmdline/apt-get.cc:1711 +#: cmdline/apt-get.cc:1713 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "apt ถูกกำหนดไม่ให้มีการลบใดๆ จึงไม่สามารถดำเนินการถอดถอนอัตโนมัติได้" -#: cmdline/apt-get.cc:1815 +#: cmdline/apt-get.cc:1817 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -711,15 +713,15 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1818 cmdline/apt-get.cc:1987 +#: cmdline/apt-get.cc:1820 cmdline/apt-get.cc:1989 msgid "The following information may help to resolve the situation:" msgstr "ข้อมูลต่อไปนี้อาจช่วยแก้ปัญหาได้:" -#: cmdline/apt-get.cc:1822 +#: cmdline/apt-get.cc:1824 msgid "Internal Error, AutoRemover broke stuff" msgstr "เกิดข้อผิดพลาดภายใน: AutoRemover ทำความเสียหาย" -#: cmdline/apt-get.cc:1829 +#: cmdline/apt-get.cc:1831 msgid "" "The following package was automatically installed and is no longer required:" msgid_plural "" @@ -727,27 +729,27 @@ msgid_plural "" "required:" msgstr[0] "แพกเกจต่อไปนี้ถูกติดตั้งแบบอัตโนมัติไว้ และไม่ต้องใช้อีกต่อไปแล้ว:" -#: cmdline/apt-get.cc:1833 +#: cmdline/apt-get.cc:1835 #, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" "%lu packages were automatically installed and are no longer required.\n" msgstr[0] "มีแพกเกจ %lu แพกเกจถูกติดตั้งแบบอัตโนมัติไว้ และไม่ต้องใช้อีกต่อไปแล้ว\n" -#: cmdline/apt-get.cc:1835 +#: cmdline/apt-get.cc:1837 msgid "Use 'apt-get autoremove' to remove it." msgid_plural "Use 'apt-get autoremove' to remove them." msgstr[0] "ใช้ 'apt-get autoremove' เพื่อถอดถอนแพกเกจดังกล่าวได้" -#: cmdline/apt-get.cc:1854 +#: cmdline/apt-get.cc:1856 msgid "Internal error, AllUpgrade broke stuff" msgstr "เกิดข้อผิดพลาดภายใน: AllUpgrade ทำความเสียหาย" -#: cmdline/apt-get.cc:1953 +#: cmdline/apt-get.cc:1955 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "คุณอาจเรียก 'apt-get -f install' เพื่อแก้ปัญหานี้ได้:" -#: cmdline/apt-get.cc:1957 +#: cmdline/apt-get.cc:1959 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -755,7 +757,7 @@ msgstr "" "มีปัญหาความขึ้นต่อกันระหว่างแพกเกจ กรุณาลองใช้ 'apt-get -f install' โดยไม่ระบุแพกเกจ " "(หรือจะระบุทางแก้ก็ได้)" -#: cmdline/apt-get.cc:1972 +#: cmdline/apt-get.cc:1974 msgid "" "Some packages could not be installed. This may mean that you have\n" "requested an impossible situation or if you are using the unstable\n" @@ -766,78 +768,78 @@ msgstr "" "หรือถ้าคุณกำลังใช้รุ่น unstable ก็เป็นไปได้ว่าแพกเกจที่จำเป็นบางรายการ\n" "ยังไม่ถูกสร้างขึ้น หรือถูกย้ายออกจาก Incoming" -#: cmdline/apt-get.cc:1993 +#: cmdline/apt-get.cc:1995 msgid "Broken packages" msgstr "แพกเกจมีปัญหา" -#: cmdline/apt-get.cc:2019 +#: cmdline/apt-get.cc:2021 msgid "The following extra packages will be installed:" msgstr "จะติดตั้งแพกเกจเพิ่มเติมต่อไปนี้:" -#: cmdline/apt-get.cc:2109 +#: cmdline/apt-get.cc:2111 msgid "Suggested packages:" msgstr "แพกเกจที่แนะนำ:" -#: cmdline/apt-get.cc:2110 +#: cmdline/apt-get.cc:2112 msgid "Recommended packages:" msgstr "แพกเกจที่ควรใช้ร่วมกัน:" -#: cmdline/apt-get.cc:2152 +#: cmdline/apt-get.cc:2154 #, c-format msgid "Couldn't find package %s" msgstr "ไม่พบแพกเกจ %s" -#: cmdline/apt-get.cc:2159 cmdline/apt-mark.cc:70 +#: cmdline/apt-get.cc:2161 cmdline/apt-mark.cc:70 #, c-format msgid "%s set to automatically installed.\n" msgstr "กำหนด %s ให้เป็นการติดตั้งแบบอัตโนมัติแล้ว\n" -#: cmdline/apt-get.cc:2167 cmdline/apt-mark.cc:114 +#: cmdline/apt-get.cc:2169 cmdline/apt-mark.cc:114 msgid "" "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " "instead." msgstr "คำสั่งนี้ไม่แนะนำให้ใช้แล้ว กรุณาใช้ 'apt-mark auto' และ 'apt-mark manual' แทน" -#: cmdline/apt-get.cc:2183 +#: cmdline/apt-get.cc:2185 msgid "Calculating upgrade... " msgstr "กำลังคำนวณการปรับรุ่น... " -#: cmdline/apt-get.cc:2186 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 msgid "Failed" msgstr "ล้มเหลว" -#: cmdline/apt-get.cc:2191 +#: cmdline/apt-get.cc:2193 msgid "Done" msgstr "เสร็จแล้ว" -#: cmdline/apt-get.cc:2258 cmdline/apt-get.cc:2266 +#: cmdline/apt-get.cc:2260 cmdline/apt-get.cc:2268 msgid "Internal error, problem resolver broke stuff" msgstr "เกิดข้อผิดพลาดภายใน: กลไกการแก้ปัญหาทำความเสียหาย" -#: cmdline/apt-get.cc:2294 cmdline/apt-get.cc:2330 +#: cmdline/apt-get.cc:2296 cmdline/apt-get.cc:2332 msgid "Unable to lock the download directory" msgstr "ไม่สามารถล็อคไดเรกทอรีดาวน์โหลด" -#: cmdline/apt-get.cc:2386 +#: cmdline/apt-get.cc:2388 #, c-format msgid "Can't find a source to download version '%s' of '%s'" msgstr "ไม่พบแหล่งที่จะดาวน์โหลดรุ่น '%s' ของ '%s' ได้" -#: cmdline/apt-get.cc:2391 +#: cmdline/apt-get.cc:2393 #, c-format msgid "Downloading %s %s" msgstr "กำลังดาวน์โหลด %s %s" -#: cmdline/apt-get.cc:2451 +#: cmdline/apt-get.cc:2453 msgid "Must specify at least one package to fetch source for" msgstr "ต้องระบุแพกเกจอย่างน้อยหนึ่งแพกเกจที่จะดาวน์โหลดซอร์สโค้ด" -#: cmdline/apt-get.cc:2491 cmdline/apt-get.cc:2803 +#: cmdline/apt-get.cc:2493 cmdline/apt-get.cc:2805 #, c-format msgid "Unable to find a source package for %s" msgstr "ไม่พบแพกเกจซอร์สโค้ดสำหรับ %s" -#: cmdline/apt-get.cc:2508 +#: cmdline/apt-get.cc:2510 #, c-format msgid "" "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" @@ -846,7 +848,7 @@ msgstr "" "ข้อสังเกต: การจัดทำแพกเกจ '%s' พัฒนาผ่านระบบควบคุมรุ่น '%s' อยู่ที่:\n" "%s\n" -#: cmdline/apt-get.cc:2513 +#: cmdline/apt-get.cc:2515 #, c-format msgid "" "Please use:\n" @@ -857,68 +859,68 @@ msgstr "" "bzr branch %s\n" "เพื่อดึงรุ่นล่าสุด (ที่อาจยังไม่ปล่อยออกมา) ของตัวแพกเกจ\n" -#: cmdline/apt-get.cc:2566 +#: cmdline/apt-get.cc:2568 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "จะข้ามแฟ้ม '%s' ที่ดาวน์โหลดไว้แล้ว\n" -#: cmdline/apt-get.cc:2603 +#: cmdline/apt-get.cc:2605 #, c-format msgid "You don't have enough free space in %s" msgstr "คุณมีพื้นที่ว่างเหลือไม่พอใน %s" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:2612 +#: cmdline/apt-get.cc:2614 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "ต้องดาวน์โหลดซอร์สโค้ด %sB/%sB\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:2617 +#: cmdline/apt-get.cc:2619 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "ต้องดาวน์โหลดซอร์สโค้ด %sB\n" -#: cmdline/apt-get.cc:2623 +#: cmdline/apt-get.cc:2625 #, c-format msgid "Fetch source %s\n" msgstr "ดาวน์โหลดซอร์ส %s\n" -#: cmdline/apt-get.cc:2661 +#: cmdline/apt-get.cc:2663 msgid "Failed to fetch some archives." msgstr "ไม่สามารถดาวน์โหลดบางแฟ้ม" -#: cmdline/apt-get.cc:2692 +#: cmdline/apt-get.cc:2694 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "จะข้ามการแตกซอร์สของซอร์สที่แตกไว้แล้วใน %s\n" -#: cmdline/apt-get.cc:2704 +#: cmdline/apt-get.cc:2706 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "คำสั่งแตกแฟ้ม '%s' ล้มเหลว\n" -#: cmdline/apt-get.cc:2705 +#: cmdline/apt-get.cc:2707 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "กรุณาตรวจสอบว่าได้ติดตั้งแพกเกจ 'dpkg-dev' แล้ว\n" -#: cmdline/apt-get.cc:2727 +#: cmdline/apt-get.cc:2729 #, c-format msgid "Build command '%s' failed.\n" msgstr "คำสั่ง build '%s' ล้มเหลว\n" -#: cmdline/apt-get.cc:2747 +#: cmdline/apt-get.cc:2749 msgid "Child process failed" msgstr "โพรเซสลูกล้มเหลว" -#: cmdline/apt-get.cc:2766 +#: cmdline/apt-get.cc:2768 msgid "Must specify at least one package to check builddeps for" msgstr "ต้องระบุแพกเกจอย่างน้อยหนึ่งแพกเกจที่จะตรวจสอบสิ่งที่ต้องการสำหรับการ build" -#: cmdline/apt-get.cc:2791 +#: cmdline/apt-get.cc:2793 #, c-format msgid "" "No architecture information available for %s. See apt.conf(5) APT::" @@ -926,17 +928,17 @@ msgid "" msgstr "" "ไม่มีข้อมูลสถาปัตยกรรมสำหรับ %s ดูวิธีตั้งค่าที่หัวข้อ APT::Architectures ของ apt.conf(5)" -#: cmdline/apt-get.cc:2815 cmdline/apt-get.cc:2818 +#: cmdline/apt-get.cc:2817 cmdline/apt-get.cc:2820 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "ไม่สามารถอ่านข้อมูลสิ่งที่ต้องการสำหรับการ build ของ %s" -#: cmdline/apt-get.cc:2838 +#: cmdline/apt-get.cc:2840 #, c-format msgid "%s has no build depends.\n" msgstr "%s ไม่ต้องการสิ่งใดสำหรับ build\n" -#: cmdline/apt-get.cc:3008 +#: cmdline/apt-get.cc:3010 #, c-format msgid "" "%s dependency for %s can't be satisfied because %s is not allowed on '%s' " @@ -944,19 +946,19 @@ msgid "" msgstr "" "ไม่สามารถติดตั้งสิ่งเชื่อมโยง %s สำหรับ %s ได้ เพราะไม่สามารถใช้ %s กับแพกเกจ '%s' ได้" -#: cmdline/apt-get.cc:3026 +#: cmdline/apt-get.cc:3028 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " "found" msgstr "ไม่สามารถติดตั้งสิ่งเชื่อมโยง %s สำหรับ %s ได้ เพราะไม่พบแพกเกจ %s" -#: cmdline/apt-get.cc:3049 +#: cmdline/apt-get.cc:3051 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "ไม่สามารถติดตั้งสิ่งเชื่อมโยง %s สำหรับ %s ได้: แพกเกจ %s ที่ติดตั้งไว้ใหม่เกินไป" -#: cmdline/apt-get.cc:3088 +#: cmdline/apt-get.cc:3090 #, c-format msgid "" "%s dependency for %s cannot be satisfied because candidate version of " @@ -965,37 +967,37 @@ msgstr "" "ไม่สามารถติดตั้งสิ่งเชื่อมโยง %s สำหรับ %s ได้ เพราะไม่มีแพกเกจ %s " "รุ่นที่จะสอดคล้องกับความต้องการรุ่นของแพกเกจได้" -#: cmdline/apt-get.cc:3094 +#: cmdline/apt-get.cc:3096 #, c-format msgid "" "%s dependency for %s cannot be satisfied because package %s has no candidate " "version" msgstr "ไม่สามารถติดตั้งสิ่งเชื่อมโยง %s สำหรับ %s ได้ เพราะ %s ไม่มีรุ่นที่ติดตั้งได้" -#: cmdline/apt-get.cc:3117 +#: cmdline/apt-get.cc:3119 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "ไม่สามารถติดตั้งสิ่งเชื่อมโยง %s สำหรับ %s ได้: %s" -#: cmdline/apt-get.cc:3133 +#: cmdline/apt-get.cc:3135 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "ไม่สามารถติดตั้งสิ่งที่จำเป็นสำหรับการ build ของ %s ได้" -#: cmdline/apt-get.cc:3138 +#: cmdline/apt-get.cc:3140 msgid "Failed to process build dependencies" msgstr "ติดตั้งสิ่งที่จำเป็นสำหรับการ build ไม่สำเร็จ" -#: cmdline/apt-get.cc:3231 cmdline/apt-get.cc:3243 +#: cmdline/apt-get.cc:3233 cmdline/apt-get.cc:3245 #, c-format msgid "Changelog for %s (%s)" msgstr "ปูมการแก้ไขสำหรับ %s (%s)" -#: cmdline/apt-get.cc:3366 +#: cmdline/apt-get.cc:3368 msgid "Supported modules:" msgstr "มอดูลที่รองรับ:" -#: cmdline/apt-get.cc:3407 +#: cmdline/apt-get.cc:3409 msgid "" "Usage: apt-get [options] command\n" " apt-get [options] install|remove pkg1 [pkg2 ...]\n" @@ -1082,7 +1084,7 @@ msgstr "" "และ apt.conf(5)\n" " APT นี้มีพลังของ Super Cow\n" -#: cmdline/apt-get.cc:3572 +#: cmdline/apt-get.cc:3574 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1685,7 +1687,7 @@ msgstr "" " -c=? อ่านแฟ้มค่าตั้งนี้\n" " -o=? กำหนดตัวเลือกค่าตั้งเป็นรายตัว เช่น -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1335 +#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1339 #, c-format msgid "Unable to write to %s" msgstr "ไม่สามารถเขียนลงแฟ้ม %s" @@ -2711,7 +2713,7 @@ msgstr "บรรทัด %u ในแฟ้มรายชื่อแหล msgid "Type '%s' is not known on line %u in source list %s" msgstr "ไม่รู้จักชนิด '%s' ที่บรรทัด %u ในแฟ้มรายชื่อแหล่งแพกเกจ %s" -#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:896 +#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:898 #, c-format msgid "" "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " @@ -2720,12 +2722,12 @@ msgstr "" "ไม่สามารถตั้งค่า '%s' แบบทันทีได้ กรุณาอ่านรายละเอียดเพิ่มเติมจาก man 5 apt.conf ที่หัวข้อ " "APT::Immediate-Configure (%d)" -#: apt-pkg/packagemanager.cc:473 apt-pkg/packagemanager.cc:503 +#: apt-pkg/packagemanager.cc:473 apt-pkg/packagemanager.cc:504 #, c-format msgid "Could not configure '%s'. " msgstr "ไม่สามารถตั้งค่า '%s'" -#: apt-pkg/packagemanager.cc:545 +#: apt-pkg/packagemanager.cc:546 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2760,7 +2762,7 @@ msgstr "" msgid "Unable to correct problems, you have held broken packages." msgstr "ไม่สามารถแก้ปัญหาได้ คุณได้คงรุ่นแพกเกจที่เสียอยู่ไว้" -#: apt-pkg/algorithms.cc:1574 apt-pkg/algorithms.cc:1576 +#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 msgid "" "Some index files failed to download. They have been ignored, or old ones " "used instead." @@ -2899,21 +2901,21 @@ msgstr "โอ้ คุณมาถึงขีดจำกัดจำนว msgid "Package %s %s was not found while processing file dependencies" msgstr "ไม่พบแพกเกจ %s %s ขณะประมวลผลความขึ้นต่อแฟ้ม" -#: apt-pkg/pkgcachegen.cc:1146 +#: apt-pkg/pkgcachegen.cc:1150 #, c-format msgid "Couldn't stat source package list %s" msgstr "ไม่สามารถ stat รายการแพกเกจซอร์ส %s" -#: apt-pkg/pkgcachegen.cc:1234 apt-pkg/pkgcachegen.cc:1338 -#: apt-pkg/pkgcachegen.cc:1344 apt-pkg/pkgcachegen.cc:1501 +#: apt-pkg/pkgcachegen.cc:1238 apt-pkg/pkgcachegen.cc:1342 +#: apt-pkg/pkgcachegen.cc:1348 apt-pkg/pkgcachegen.cc:1505 msgid "Reading package lists" msgstr "กำลังอ่านรายชื่อแพกเกจ" -#: apt-pkg/pkgcachegen.cc:1251 +#: apt-pkg/pkgcachegen.cc:1255 msgid "Collecting File Provides" msgstr "กำลังเก็บข้อมูลแฟ้มที่ตระเตรียมให้" -#: apt-pkg/pkgcachegen.cc:1443 apt-pkg/pkgcachegen.cc:1450 +#: apt-pkg/pkgcachegen.cc:1447 apt-pkg/pkgcachegen.cc:1454 msgid "IO Error saving source cache" msgstr "เกิดข้อผิดพลาด IO ขณะบันทึกแคชของซอร์ส" diff --git a/po/tl.po b/po/tl.po index f33d578a3..a92a8114e 100644 --- a/po/tl.po +++ b/po/tl.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2012-10-15 09:49+0200\n" +"POT-Creation-Date: 2013-03-14 08:05+0100\n" "PO-Revision-Date: 2007-03-29 21:36+0800\n" "Last-Translator: Eric Pareja \n" "Language-Team: Tagalog \n" @@ -160,7 +160,7 @@ msgid " Version table:" msgstr " Talaang Bersyon:" #: cmdline/apt-cache.cc:1683 cmdline/apt-cdrom.cc:198 cmdline/apt-config.cc:81 -#: cmdline/apt-get.cc:3361 cmdline/apt-mark.cc:375 +#: cmdline/apt-get.cc:3363 cmdline/apt-mark.cc:375 #: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:590 #: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147 #, fuzzy, c-format @@ -493,7 +493,7 @@ msgstr "Ang pagluklok muli ng %s ay hindi maaari, hindi ito makuha.\n" msgid "%s is already the newest version.\n" msgstr "%s ay pinakabagong bersyon na.\n" -#: cmdline/apt-get.cc:858 cmdline/apt-get.cc:2157 cmdline/apt-mark.cc:68 +#: cmdline/apt-get.cc:858 cmdline/apt-get.cc:2159 cmdline/apt-mark.cc:68 #, fuzzy, c-format msgid "%s set to manually installed.\n" msgstr "ngunit ang %s ay iluluklok" @@ -607,8 +607,8 @@ msgstr "" msgid "After this operation, %sB disk space will be freed.\n" msgstr "Matapos magbuklat ay %sB na puwang sa disk ang mapapalaya.\n" -#: cmdline/apt-get.cc:1228 cmdline/apt-get.cc:1231 cmdline/apt-get.cc:2589 -#: cmdline/apt-get.cc:2592 +#: cmdline/apt-get.cc:1228 cmdline/apt-get.cc:1231 cmdline/apt-get.cc:2591 +#: cmdline/apt-get.cc:2594 #, c-format msgid "Couldn't determine free space in %s" msgstr "Hindi matantsa ang libreng puwang sa %s" @@ -618,15 +618,17 @@ msgstr "Hindi matantsa ang libreng puwang sa %s" msgid "You don't have enough free space in %s." msgstr "Kulang kayo ng libreng puwang sa %s." -#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1277 +#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1279 msgid "Trivial Only specified but this is not a trivial operation." msgstr "Tinakdang Trivial Only ngunit hindi ito operasyong trivial." -#: cmdline/apt-get.cc:1259 +#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be +#. careful with hard to type or special characters (like non-breaking spaces) +#: cmdline/apt-get.cc:1261 msgid "Yes, do as I say!" msgstr "Oo, gawin ang sinasabi ko!" -#: cmdline/apt-get.cc:1261 +#: cmdline/apt-get.cc:1263 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -637,28 +639,28 @@ msgstr "" "Upang magpatuloy, ibigay ang pariralang '%s'\n" " ?] " -#: cmdline/apt-get.cc:1267 cmdline/apt-get.cc:1286 +#: cmdline/apt-get.cc:1269 cmdline/apt-get.cc:1288 msgid "Abort." msgstr "Abort." -#: cmdline/apt-get.cc:1282 +#: cmdline/apt-get.cc:1284 msgid "Do you want to continue [Y/n]? " msgstr "Nais niyo bang magpatuloy [O/h]? " -#: cmdline/apt-get.cc:1354 cmdline/apt-get.cc:2654 apt-pkg/algorithms.cc:1548 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Bigo sa pagkuha ng %s %s\n" -#: cmdline/apt-get.cc:1372 +#: cmdline/apt-get.cc:1374 msgid "Some files failed to download" msgstr "May mga talaksang hindi nakuha" -#: cmdline/apt-get.cc:1373 cmdline/apt-get.cc:2666 +#: cmdline/apt-get.cc:1375 cmdline/apt-get.cc:2668 msgid "Download complete and in download only mode" msgstr "Kumpleto ang pagkakuha ng mga talaksan sa modong pagkuha lamang" -#: cmdline/apt-get.cc:1379 +#: cmdline/apt-get.cc:1381 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -666,19 +668,19 @@ msgstr "" "Hindi nakuha ang ilang mga arkibo, maaaring patakbuhin ang apt-get update o " "subukang may --fix-missing?" -#: cmdline/apt-get.cc:1383 +#: cmdline/apt-get.cc:1385 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix-missing at pagpalit ng media ay kasalukuyang hindi suportado" -#: cmdline/apt-get.cc:1388 +#: cmdline/apt-get.cc:1390 msgid "Unable to correct missing packages." msgstr "Hindi maayos ang mga kulang na pakete." -#: cmdline/apt-get.cc:1389 +#: cmdline/apt-get.cc:1391 msgid "Aborting install." msgstr "Ina-abort ang pag-instol." -#: cmdline/apt-get.cc:1417 +#: cmdline/apt-get.cc:1419 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -688,35 +690,35 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: cmdline/apt-get.cc:1421 +#: cmdline/apt-get.cc:1423 msgid "Note: This is done automatically and on purpose by dpkg." msgstr "" -#: cmdline/apt-get.cc:1559 +#: cmdline/apt-get.cc:1561 #, c-format msgid "Ignore unavailable target release '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:1591 +#: cmdline/apt-get.cc:1593 #, fuzzy, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "Hindi ma-stat ang talaan ng pagkukunan ng pakete %s" #. if (VerTag.empty() == false && Last == 0) -#: cmdline/apt-get.cc:1629 +#: cmdline/apt-get.cc:1631 #, c-format msgid "Ignore unavailable version '%s' of package '%s'" msgstr "" -#: cmdline/apt-get.cc:1645 +#: cmdline/apt-get.cc:1647 msgid "The update command takes no arguments" msgstr "Ang utos na update ay hindi tumatanggap ng mga argumento" -#: cmdline/apt-get.cc:1711 +#: cmdline/apt-get.cc:1713 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -#: cmdline/apt-get.cc:1815 +#: cmdline/apt-get.cc:1817 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -732,17 +734,17 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1818 cmdline/apt-get.cc:1987 +#: cmdline/apt-get.cc:1820 cmdline/apt-get.cc:1989 msgid "The following information may help to resolve the situation:" msgstr "" "Ang sumusunod na impormasyon ay maaaring makatulong sa pag-ayos ng problema:" -#: cmdline/apt-get.cc:1822 +#: cmdline/apt-get.cc:1824 #, fuzzy msgid "Internal Error, AutoRemover broke stuff" msgstr "Error na internal, may nasira ang problem resolver" -#: cmdline/apt-get.cc:1829 +#: cmdline/apt-get.cc:1831 #, fuzzy msgid "" "The following package was automatically installed and is no longer required:" @@ -752,7 +754,7 @@ msgid_plural "" msgstr[0] "Ang sumusunod na mga paketeng BAGO ay iluluklok:" msgstr[1] "Ang sumusunod na mga paketeng BAGO ay iluluklok:" -#: cmdline/apt-get.cc:1833 +#: cmdline/apt-get.cc:1835 #, fuzzy, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -760,22 +762,22 @@ msgid_plural "" msgstr[0] "Ang sumusunod na mga paketeng BAGO ay iluluklok:" msgstr[1] "Ang sumusunod na mga paketeng BAGO ay iluluklok:" -#: cmdline/apt-get.cc:1835 +#: cmdline/apt-get.cc:1837 msgid "Use 'apt-get autoremove' to remove it." msgid_plural "Use 'apt-get autoremove' to remove them." msgstr[0] "" msgstr[1] "" -#: cmdline/apt-get.cc:1854 +#: cmdline/apt-get.cc:1856 msgid "Internal error, AllUpgrade broke stuff" msgstr "Internal error, nakasira ng bagay-bagay ang AllUpgrade" -#: cmdline/apt-get.cc:1953 +#: cmdline/apt-get.cc:1955 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "" "Maaaring patakbuhin niyo ang 'apt-get -f install' upang ayusin ang mga ito:" -#: cmdline/apt-get.cc:1957 +#: cmdline/apt-get.cc:1959 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -783,7 +785,7 @@ msgstr "" "May mga dependensiyang kulang. Subukan ang 'apt-get -f install' na walang " "mga pakete (o magtakda ng solusyon)." -#: cmdline/apt-get.cc:1972 +#: cmdline/apt-get.cc:1974 msgid "" "Some packages could not be installed. This may mean that you have\n" "requested an impossible situation or if you are using the unstable\n" @@ -794,85 +796,85 @@ msgstr "" "o kung kayo'y gumagamit ng pamudmod na unstable ay may ilang mga paketeng\n" "kailangan na hindi pa nalikha o linipat mula sa Incoming." -#: cmdline/apt-get.cc:1993 +#: cmdline/apt-get.cc:1995 msgid "Broken packages" msgstr "Sirang mga pakete" -#: cmdline/apt-get.cc:2019 +#: cmdline/apt-get.cc:2021 msgid "The following extra packages will be installed:" msgstr "Ang mga sumusunod na extra na pakete ay luluklokin:" -#: cmdline/apt-get.cc:2109 +#: cmdline/apt-get.cc:2111 msgid "Suggested packages:" msgstr "Mga paketeng mungkahi:" -#: cmdline/apt-get.cc:2110 +#: cmdline/apt-get.cc:2112 msgid "Recommended packages:" msgstr "Mga paketeng rekomendado:" -#: cmdline/apt-get.cc:2152 +#: cmdline/apt-get.cc:2154 #, c-format msgid "Couldn't find package %s" msgstr "Hindi mahanap ang paketeng %s" -#: cmdline/apt-get.cc:2159 cmdline/apt-mark.cc:70 +#: cmdline/apt-get.cc:2161 cmdline/apt-mark.cc:70 #, fuzzy, c-format msgid "%s set to automatically installed.\n" msgstr "ngunit ang %s ay iluluklok" -#: cmdline/apt-get.cc:2167 cmdline/apt-mark.cc:114 +#: cmdline/apt-get.cc:2169 cmdline/apt-mark.cc:114 msgid "" "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " "instead." msgstr "" -#: cmdline/apt-get.cc:2183 +#: cmdline/apt-get.cc:2185 msgid "Calculating upgrade... " msgstr "Sinusuri ang pag-upgrade... " -#: cmdline/apt-get.cc:2186 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 msgid "Failed" msgstr "Bigo" -#: cmdline/apt-get.cc:2191 +#: cmdline/apt-get.cc:2193 msgid "Done" msgstr "Tapos" -#: cmdline/apt-get.cc:2258 cmdline/apt-get.cc:2266 +#: cmdline/apt-get.cc:2260 cmdline/apt-get.cc:2268 msgid "Internal error, problem resolver broke stuff" msgstr "Error na internal, may nasira ang problem resolver" -#: cmdline/apt-get.cc:2294 cmdline/apt-get.cc:2330 +#: cmdline/apt-get.cc:2296 cmdline/apt-get.cc:2332 msgid "Unable to lock the download directory" msgstr "Hindi maaldaba ang directory ng download" -#: cmdline/apt-get.cc:2386 +#: cmdline/apt-get.cc:2388 #, c-format msgid "Can't find a source to download version '%s' of '%s'" msgstr "" -#: cmdline/apt-get.cc:2391 +#: cmdline/apt-get.cc:2393 #, c-format msgid "Downloading %s %s" msgstr "" -#: cmdline/apt-get.cc:2451 +#: cmdline/apt-get.cc:2453 msgid "Must specify at least one package to fetch source for" msgstr "Kailangang magtakda ng kahit isang pakete na kunan ng source" -#: cmdline/apt-get.cc:2491 cmdline/apt-get.cc:2803 +#: cmdline/apt-get.cc:2493 cmdline/apt-get.cc:2805 #, c-format msgid "Unable to find a source package for %s" msgstr "Hindi mahanap ang paketeng source para sa %s" -#: cmdline/apt-get.cc:2508 +#: cmdline/apt-get.cc:2510 #, c-format msgid "" "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" "%s\n" msgstr "" -#: cmdline/apt-get.cc:2513 +#: cmdline/apt-get.cc:2515 #, c-format msgid "" "Please use:\n" @@ -880,85 +882,85 @@ msgid "" "to retrieve the latest (possibly unreleased) updates to the package.\n" msgstr "" -#: cmdline/apt-get.cc:2566 +#: cmdline/apt-get.cc:2568 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Linaktawan ang nakuha na na talaksan '%s'\n" -#: cmdline/apt-get.cc:2603 +#: cmdline/apt-get.cc:2605 #, c-format msgid "You don't have enough free space in %s" msgstr "Kulang kayo ng libreng puwang sa %s" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:2612 +#: cmdline/apt-get.cc:2614 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "Kailangang kumuha ng %sB/%sB ng arkibong source.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:2617 +#: cmdline/apt-get.cc:2619 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Kailangang kumuha ng %sB ng arkibong source.\n" -#: cmdline/apt-get.cc:2623 +#: cmdline/apt-get.cc:2625 #, c-format msgid "Fetch source %s\n" msgstr "Kunin ang Source %s\n" -#: cmdline/apt-get.cc:2661 +#: cmdline/apt-get.cc:2663 msgid "Failed to fetch some archives." msgstr "Bigo sa pagkuha ng ilang mga arkibo." -#: cmdline/apt-get.cc:2692 +#: cmdline/apt-get.cc:2694 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "Linaktawan ang pagbuklat ng nabuklat na na source sa %s\n" -#: cmdline/apt-get.cc:2704 +#: cmdline/apt-get.cc:2706 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Bigo ang utos ng pagbuklat '%s'.\n" -#: cmdline/apt-get.cc:2705 +#: cmdline/apt-get.cc:2707 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "Paki-siguro na nakaluklok ang paketeng 'dpkg-dev'.\n" -#: cmdline/apt-get.cc:2727 +#: cmdline/apt-get.cc:2729 #, c-format msgid "Build command '%s' failed.\n" msgstr "Utos na build '%s' ay bigo.\n" -#: cmdline/apt-get.cc:2747 +#: cmdline/apt-get.cc:2749 msgid "Child process failed" msgstr "Bigo ang prosesong anak" -#: cmdline/apt-get.cc:2766 +#: cmdline/apt-get.cc:2768 msgid "Must specify at least one package to check builddeps for" msgstr "Kailangang magtakda ng kahit isang pakete na susuriin ang builddeps" -#: cmdline/apt-get.cc:2791 +#: cmdline/apt-get.cc:2793 #, c-format msgid "" "No architecture information available for %s. See apt.conf(5) APT::" "Architectures for setup" msgstr "" -#: cmdline/apt-get.cc:2815 cmdline/apt-get.cc:2818 +#: cmdline/apt-get.cc:2817 cmdline/apt-get.cc:2820 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "Hindi makuha ang impormasyong build-dependency para sa %s" -#: cmdline/apt-get.cc:2838 +#: cmdline/apt-get.cc:2840 #, c-format msgid "%s has no build depends.\n" msgstr "Walang build depends ang %s.\n" -#: cmdline/apt-get.cc:3008 +#: cmdline/apt-get.cc:3010 #, fuzzy, c-format msgid "" "%s dependency for %s can't be satisfied because %s is not allowed on '%s' " @@ -967,7 +969,7 @@ msgstr "" "Dependensiyang %s para sa %s ay hindi mabuo dahil ang paketeng %s ay hindi " "mahanap" -#: cmdline/apt-get.cc:3026 +#: cmdline/apt-get.cc:3028 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -976,14 +978,14 @@ msgstr "" "Dependensiyang %s para sa %s ay hindi mabuo dahil ang paketeng %s ay hindi " "mahanap" -#: cmdline/apt-get.cc:3049 +#: cmdline/apt-get.cc:3051 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "Bigo sa pagbuo ng dependensiyang %s para sa %s: Ang naka-instol na paketeng " "%s ay bagong-bago pa lamang." -#: cmdline/apt-get.cc:3088 +#: cmdline/apt-get.cc:3090 #, fuzzy, c-format msgid "" "%s dependency for %s cannot be satisfied because candidate version of " @@ -992,7 +994,7 @@ msgstr "" "Dependensiyang %s para sa %s ay hindi mabuo dahil walang magamit na bersyon " "ng paketeng %s na tumutugon sa kinakailangang bersyon" -#: cmdline/apt-get.cc:3094 +#: cmdline/apt-get.cc:3096 #, fuzzy, c-format msgid "" "%s dependency for %s cannot be satisfied because package %s has no candidate " @@ -1001,30 +1003,30 @@ msgstr "" "Dependensiyang %s para sa %s ay hindi mabuo dahil ang paketeng %s ay hindi " "mahanap" -#: cmdline/apt-get.cc:3117 +#: cmdline/apt-get.cc:3119 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "Bigo sa pagbuo ng dependensiyang %s para sa %s: %s" -#: cmdline/apt-get.cc:3133 +#: cmdline/apt-get.cc:3135 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "Hindi mabuo ang build-dependencies para sa %s." -#: cmdline/apt-get.cc:3138 +#: cmdline/apt-get.cc:3140 msgid "Failed to process build dependencies" msgstr "Bigo sa pagproseso ng build dependencies" -#: cmdline/apt-get.cc:3231 cmdline/apt-get.cc:3243 +#: cmdline/apt-get.cc:3233 cmdline/apt-get.cc:3245 #, fuzzy, c-format msgid "Changelog for %s (%s)" msgstr "Kumokonekta sa %s (%s)" -#: cmdline/apt-get.cc:3366 +#: cmdline/apt-get.cc:3368 msgid "Supported modules:" msgstr "Suportadong mga Module:" -#: cmdline/apt-get.cc:3407 +#: cmdline/apt-get.cc:3409 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1109,7 +1111,7 @@ msgstr "" "para sa karagdagang impormasyon at mga option.\n" " Ang APT na ito ay may Kapangyarihan Super Kalabaw.\n" -#: cmdline/apt-get.cc:3572 +#: cmdline/apt-get.cc:3574 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1704,7 +1706,7 @@ msgstr "" " -c=? Basahin ang talaksang pagkaayos na ito\n" " -o=? Itakda ang isang optiong pagkaayos, hal. -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1335 +#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1339 #, c-format msgid "Unable to write to %s" msgstr "Hindi makapagsulat sa %s" @@ -2753,19 +2755,19 @@ msgstr "Maling anyo ng linyang %u sa talaksang pagkukunan %s (uri)" msgid "Type '%s' is not known on line %u in source list %s" msgstr "Hindi kilalang uri '%s' sa linyang %u sa talaksan ng pagkukunan %s" -#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:896 +#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:898 #, c-format msgid "" "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " "under APT::Immediate-Configure for details. (%d)" msgstr "" -#: apt-pkg/packagemanager.cc:473 apt-pkg/packagemanager.cc:503 +#: apt-pkg/packagemanager.cc:473 apt-pkg/packagemanager.cc:504 #, fuzzy, c-format msgid "Could not configure '%s'. " msgstr "Hindi mabuksan ang talaksang %s" -#: apt-pkg/packagemanager.cc:545 +#: apt-pkg/packagemanager.cc:546 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2803,7 +2805,7 @@ msgid "Unable to correct problems, you have held broken packages." msgstr "" "Hindi maayos ang mga problema, mayroon kayong sirang mga pakete na naka-hold." -#: apt-pkg/algorithms.cc:1574 apt-pkg/algorithms.cc:1576 +#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 #, fuzzy msgid "" "Some index files failed to download. They have been ignored, or old ones " @@ -2952,21 +2954,21 @@ msgid "Package %s %s was not found while processing file dependencies" msgstr "" "Hindi nahanap ang paketeng %s %s habang prinoseso ang mga dependensiya." -#: apt-pkg/pkgcachegen.cc:1146 +#: apt-pkg/pkgcachegen.cc:1150 #, c-format msgid "Couldn't stat source package list %s" msgstr "Hindi ma-stat ang talaan ng pagkukunan ng pakete %s" -#: apt-pkg/pkgcachegen.cc:1234 apt-pkg/pkgcachegen.cc:1338 -#: apt-pkg/pkgcachegen.cc:1344 apt-pkg/pkgcachegen.cc:1501 +#: apt-pkg/pkgcachegen.cc:1238 apt-pkg/pkgcachegen.cc:1342 +#: apt-pkg/pkgcachegen.cc:1348 apt-pkg/pkgcachegen.cc:1505 msgid "Reading package lists" msgstr "Binabasa ang Listahan ng mga Pakete" -#: apt-pkg/pkgcachegen.cc:1251 +#: apt-pkg/pkgcachegen.cc:1255 msgid "Collecting File Provides" msgstr "Kinukuha ang Talaksang Provides" -#: apt-pkg/pkgcachegen.cc:1443 apt-pkg/pkgcachegen.cc:1450 +#: apt-pkg/pkgcachegen.cc:1447 apt-pkg/pkgcachegen.cc:1454 msgid "IO Error saving source cache" msgstr "IO Error sa pag-imbak ng source cache" diff --git a/po/uk.po b/po/uk.po index 2714d23d5..4a1706204 100644 --- a/po/uk.po +++ b/po/uk.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: apt-all\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2012-10-15 09:49+0200\n" +"POT-Creation-Date: 2013-03-14 08:05+0100\n" "PO-Revision-Date: 2012-09-25 20:19+0300\n" "Last-Translator: A. Bondarenko \n" "Language-Team: Українська \n" @@ -163,7 +163,7 @@ msgid " Version table:" msgstr " Таблиця версій:" #: cmdline/apt-cache.cc:1683 cmdline/apt-cdrom.cc:198 cmdline/apt-config.cc:81 -#: cmdline/apt-get.cc:3361 cmdline/apt-mark.cc:375 +#: cmdline/apt-get.cc:3363 cmdline/apt-mark.cc:375 #: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:590 #: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147 #, c-format @@ -491,7 +491,7 @@ msgstr "Перевстановлення %s неможливе, бо він не msgid "%s is already the newest version.\n" msgstr "Вже встановлена найновіша версія %s.\n" -#: cmdline/apt-get.cc:858 cmdline/apt-get.cc:2157 cmdline/apt-mark.cc:68 +#: cmdline/apt-get.cc:858 cmdline/apt-get.cc:2159 cmdline/apt-mark.cc:68 #, c-format msgid "%s set to manually installed.\n" msgstr "%s позначений як встановлений вручну.\n" @@ -603,8 +603,8 @@ msgid "After this operation, %sB disk space will be freed.\n" msgstr "" "Після цієї операції об'єм зайнятого дискового простору зменшиться на %sB.\n" -#: cmdline/apt-get.cc:1228 cmdline/apt-get.cc:1231 cmdline/apt-get.cc:2589 -#: cmdline/apt-get.cc:2592 +#: cmdline/apt-get.cc:1228 cmdline/apt-get.cc:1231 cmdline/apt-get.cc:2591 +#: cmdline/apt-get.cc:2594 #, c-format msgid "Couldn't determine free space in %s" msgstr "Не вдалося визначити кількість вільного місця в %s" @@ -614,16 +614,18 @@ msgstr "Не вдалося визначити кількість вільног msgid "You don't have enough free space in %s." msgstr "Недостатньо вільного місця в %s." -#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1277 +#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1279 msgid "Trivial Only specified but this is not a trivial operation." msgstr "" "Вказано виконання тільки тривіальних операцій, але це не тривіальна операція." -#: cmdline/apt-get.cc:1259 +#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be +#. careful with hard to type or special characters (like non-breaking spaces) +#: cmdline/apt-get.cc:1261 msgid "Yes, do as I say!" msgstr "Так, робити, як я скажу!" -#: cmdline/apt-get.cc:1261 +#: cmdline/apt-get.cc:1263 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -634,28 +636,28 @@ msgstr "" "Щоб продовжити, введіть фразу: '%s'\n" " ?] " -#: cmdline/apt-get.cc:1267 cmdline/apt-get.cc:1286 +#: cmdline/apt-get.cc:1269 cmdline/apt-get.cc:1288 msgid "Abort." msgstr "Перервано." -#: cmdline/apt-get.cc:1282 +#: cmdline/apt-get.cc:1284 msgid "Do you want to continue [Y/n]? " msgstr "Бажаєте продовжити [Y/n]? " -#: cmdline/apt-get.cc:1354 cmdline/apt-get.cc:2654 apt-pkg/algorithms.cc:1548 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Не вдалося завантажити %s %s\n" -#: cmdline/apt-get.cc:1372 +#: cmdline/apt-get.cc:1374 msgid "Some files failed to download" msgstr "Деякі файли не вдалося завантажити" -#: cmdline/apt-get.cc:1373 cmdline/apt-get.cc:2666 +#: cmdline/apt-get.cc:1375 cmdline/apt-get.cc:2668 msgid "Download complete and in download only mode" msgstr "Завантаження завершено в режимі \"тільки завантаження\"" -#: cmdline/apt-get.cc:1379 +#: cmdline/apt-get.cc:1381 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -663,19 +665,19 @@ msgstr "" "Неможливо завантажити деякі архіви, імовірно треба виконати apt-get update " "або спробувати повторити запуск з ключем --fix-missing?" -#: cmdline/apt-get.cc:1383 +#: cmdline/apt-get.cc:1385 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix-missing і зміна носія в даний момент не підтримується" -#: cmdline/apt-get.cc:1388 +#: cmdline/apt-get.cc:1390 msgid "Unable to correct missing packages." msgstr "Неможливо виправити втрачені пакунки." -#: cmdline/apt-get.cc:1389 +#: cmdline/apt-get.cc:1391 msgid "Aborting install." msgstr "Переривається встановлення." -#: cmdline/apt-get.cc:1417 +#: cmdline/apt-get.cc:1419 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -692,35 +694,35 @@ msgstr[2] "" "Вказані пакунки зникли з вашої системи, так як\n" "усі файли були перезаписані іншими пакунками:" -#: cmdline/apt-get.cc:1421 +#: cmdline/apt-get.cc:1423 msgid "Note: This is done automatically and on purpose by dpkg." msgstr "Увага: це зроблено автоматично і умисно dpkg'ем." -#: cmdline/apt-get.cc:1559 +#: cmdline/apt-get.cc:1561 #, c-format msgid "Ignore unavailable target release '%s' of package '%s'" msgstr "Ігнорувати недоступний випуск '%s' пакунку '%s'" -#: cmdline/apt-get.cc:1591 +#: cmdline/apt-get.cc:1593 #, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "Обираю '%s' як пакунок вихідних текстів, замість '%s'\n" #. if (VerTag.empty() == false && Last == 0) -#: cmdline/apt-get.cc:1629 +#: cmdline/apt-get.cc:1631 #, c-format msgid "Ignore unavailable version '%s' of package '%s'" msgstr "Ігнорувати недоступну версію '%s' пакунку '%s'" -#: cmdline/apt-get.cc:1645 +#: cmdline/apt-get.cc:1647 msgid "The update command takes no arguments" msgstr "Команді update не потрібні аргументи" -#: cmdline/apt-get.cc:1711 +#: cmdline/apt-get.cc:1713 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "Нам не дозволено видаляти, неможливо запустити AutoRemover" -#: cmdline/apt-get.cc:1815 +#: cmdline/apt-get.cc:1817 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -738,15 +740,15 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1818 cmdline/apt-get.cc:1987 +#: cmdline/apt-get.cc:1820 cmdline/apt-get.cc:1989 msgid "The following information may help to resolve the situation:" msgstr "Наступна інформація можливо допоможе Вам виправити ситуацію:" -#: cmdline/apt-get.cc:1822 +#: cmdline/apt-get.cc:1824 msgid "Internal Error, AutoRemover broke stuff" msgstr "Внутрішня Помилка, AutoRemover щось поламав" -#: cmdline/apt-get.cc:1829 +#: cmdline/apt-get.cc:1831 msgid "" "The following package was automatically installed and is no longer required:" msgid_plural "" @@ -757,7 +759,7 @@ msgstr[0] "" msgstr[1] "Наступні пакунки були встановлені автоматично і більше не потрібні:" msgstr[2] "Наступні пакунки були встановлені автоматично і більше не потрібні:" -#: cmdline/apt-get.cc:1833 +#: cmdline/apt-get.cc:1835 #, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -768,24 +770,24 @@ msgstr[1] "" msgstr[2] "" "%lu пакунків було встановлено автоматично і вони більше не потрібні.\n" -#: cmdline/apt-get.cc:1835 +#: cmdline/apt-get.cc:1837 msgid "Use 'apt-get autoremove' to remove it." msgid_plural "Use 'apt-get autoremove' to remove them." msgstr[0] "Використовуйте 'apt-get autoremove' щоб видалити його." msgstr[1] "Використовуйте 'apt-get autoremove' щоб видалити їх." msgstr[2] "Використовуйте 'apt-get autoremove' щоб видалити їх." -#: cmdline/apt-get.cc:1854 +#: cmdline/apt-get.cc:1856 msgid "Internal error, AllUpgrade broke stuff" msgstr "Внутрішня помилка, AllUpgrade щось поламав" -#: cmdline/apt-get.cc:1953 +#: cmdline/apt-get.cc:1955 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "" "Можливо, для виправлення цих помилок Ви захочете скористатися 'apt-get -f " "install':" -#: cmdline/apt-get.cc:1957 +#: cmdline/apt-get.cc:1959 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -793,7 +795,7 @@ msgstr "" "Незадоволені залежності. Спробуйте виконати 'apt-get -f install', не " "вказуючи назв пакунків (або вкажіть рішення)." -#: cmdline/apt-get.cc:1972 +#: cmdline/apt-get.cc:1974 msgid "" "Some packages could not be installed. This may mean that you have\n" "requested an impossible situation or if you are using the unstable\n" @@ -804,33 +806,33 @@ msgstr "" "або ж використовуєте нестабільний дистрибутив, і запитані Вами пакунки\n" "ще не створені або були вилучені з Incoming." -#: cmdline/apt-get.cc:1993 +#: cmdline/apt-get.cc:1995 msgid "Broken packages" msgstr "Зламані пакунки" -#: cmdline/apt-get.cc:2019 +#: cmdline/apt-get.cc:2021 msgid "The following extra packages will be installed:" msgstr "Будуть встановлені наступні додаткові пакунки:" -#: cmdline/apt-get.cc:2109 +#: cmdline/apt-get.cc:2111 msgid "Suggested packages:" msgstr "Пропоновані пакунки:" -#: cmdline/apt-get.cc:2110 +#: cmdline/apt-get.cc:2112 msgid "Recommended packages:" msgstr "Рекомендовані пакунки:" -#: cmdline/apt-get.cc:2152 +#: cmdline/apt-get.cc:2154 #, c-format msgid "Couldn't find package %s" msgstr "Не можу знайти пакунок %s" -#: cmdline/apt-get.cc:2159 cmdline/apt-mark.cc:70 +#: cmdline/apt-get.cc:2161 cmdline/apt-mark.cc:70 #, c-format msgid "%s set to automatically installed.\n" msgstr "%s позначений як автоматично встановлений.\n" -#: cmdline/apt-get.cc:2167 cmdline/apt-mark.cc:114 +#: cmdline/apt-get.cc:2169 cmdline/apt-mark.cc:114 msgid "" "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " "instead." @@ -838,48 +840,48 @@ msgstr "" "Ця команда застаріла. Будь-ласка, використовуйте замість неї 'apt-mark auto' " "і 'apt-mark manual'." -#: cmdline/apt-get.cc:2183 +#: cmdline/apt-get.cc:2185 msgid "Calculating upgrade... " msgstr "Обчислення оновлень... " -#: cmdline/apt-get.cc:2186 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 msgid "Failed" msgstr "Невдача" -#: cmdline/apt-get.cc:2191 +#: cmdline/apt-get.cc:2193 msgid "Done" msgstr "Виконано" -#: cmdline/apt-get.cc:2258 cmdline/apt-get.cc:2266 +#: cmdline/apt-get.cc:2260 cmdline/apt-get.cc:2268 msgid "Internal error, problem resolver broke stuff" msgstr "Внутрішня помилка, вирішувач проблем щось поламав" -#: cmdline/apt-get.cc:2294 cmdline/apt-get.cc:2330 +#: cmdline/apt-get.cc:2296 cmdline/apt-get.cc:2332 msgid "Unable to lock the download directory" msgstr "Неможливо заблокувати директорію для завантаження" -#: cmdline/apt-get.cc:2386 +#: cmdline/apt-get.cc:2388 #, c-format msgid "Can't find a source to download version '%s' of '%s'" msgstr "Неможливо знайти джерело для завантаження версії '%s' для '%s'" -#: cmdline/apt-get.cc:2391 +#: cmdline/apt-get.cc:2393 #, c-format msgid "Downloading %s %s" msgstr "Завантаження %s %s" -#: cmdline/apt-get.cc:2451 +#: cmdline/apt-get.cc:2453 msgid "Must specify at least one package to fetch source for" msgstr "" "Вкажіть як мінімум один пакунок, для якого необхідно завантажити вихідні " "тексти" -#: cmdline/apt-get.cc:2491 cmdline/apt-get.cc:2803 +#: cmdline/apt-get.cc:2493 cmdline/apt-get.cc:2805 #, c-format msgid "Unable to find a source package for %s" msgstr "Неможливо знайти пакунок з вихідними текстами для %s" -#: cmdline/apt-get.cc:2508 +#: cmdline/apt-get.cc:2510 #, c-format msgid "" "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" @@ -888,7 +890,7 @@ msgstr "" "УВАГА: Пакування '%s' відбувається в системі контролю версій '%s' на:\n" "%s\n" -#: cmdline/apt-get.cc:2513 +#: cmdline/apt-get.cc:2515 #, c-format msgid "" "Please use:\n" @@ -899,71 +901,71 @@ msgstr "" "bzr branch %s\n" "щоб отримати найновіші (потенційно не випущені) оновлення до пакунку.\n" -#: cmdline/apt-get.cc:2566 +#: cmdline/apt-get.cc:2568 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Пропускаємо вже завантажений файл '%s'\n" -#: cmdline/apt-get.cc:2603 +#: cmdline/apt-get.cc:2605 #, c-format msgid "You don't have enough free space in %s" msgstr "Недостатньо місця в %s" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:2612 +#: cmdline/apt-get.cc:2614 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "Необхідно завантажити %sB/%sB з архівів вихідних текстів.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:2617 +#: cmdline/apt-get.cc:2619 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Потрібно завантажити %sB архівів з вихідними текстами.\n" -#: cmdline/apt-get.cc:2623 +#: cmdline/apt-get.cc:2625 #, c-format msgid "Fetch source %s\n" msgstr "Завантаження вихідних текстів %s\n" -#: cmdline/apt-get.cc:2661 +#: cmdline/apt-get.cc:2663 msgid "Failed to fetch some archives." msgstr "Деякі архіви не вдалося завантажити." -#: cmdline/apt-get.cc:2692 +#: cmdline/apt-get.cc:2694 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "" "Пропускається розпакування вихідних текстів, тому що вже розпаковано в %s\n" -#: cmdline/apt-get.cc:2704 +#: cmdline/apt-get.cc:2706 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Команда розпакування '%s' завершилася невдало.\n" -#: cmdline/apt-get.cc:2705 +#: cmdline/apt-get.cc:2707 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "Перевірте, чи встановлений пакунок 'dpkg-dev'.\n" -#: cmdline/apt-get.cc:2727 +#: cmdline/apt-get.cc:2729 #, c-format msgid "Build command '%s' failed.\n" msgstr "Команда побудови '%s' закінчилася невдало.\n" -#: cmdline/apt-get.cc:2747 +#: cmdline/apt-get.cc:2749 msgid "Child process failed" msgstr "Породжений процес завершився невдало" -#: cmdline/apt-get.cc:2766 +#: cmdline/apt-get.cc:2768 msgid "Must specify at least one package to check builddeps for" msgstr "" "Для перевірки залежностей для побудови необхідно вказати як мінімум один " "пакунок" -#: cmdline/apt-get.cc:2791 +#: cmdline/apt-get.cc:2793 #, c-format msgid "" "No architecture information available for %s. See apt.conf(5) APT::" @@ -972,17 +974,17 @@ msgstr "" "Відсутня інформація про архітектуру для %s. Дивись apt.conf(5) APT::" "Архітектури для налащтування" -#: cmdline/apt-get.cc:2815 cmdline/apt-get.cc:2818 +#: cmdline/apt-get.cc:2817 cmdline/apt-get.cc:2820 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "Неможливо одержати інформацію про залежності для побудови %s" -#: cmdline/apt-get.cc:2838 +#: cmdline/apt-get.cc:2840 #, c-format msgid "%s has no build depends.\n" msgstr "%s не має залежностей для побудови.\n" -#: cmdline/apt-get.cc:3008 +#: cmdline/apt-get.cc:3010 #, c-format msgid "" "%s dependency for %s can't be satisfied because %s is not allowed on '%s' " @@ -991,7 +993,7 @@ msgstr "" "Залежність типу %s для %s не може бути задоволена, бо %s не є дозволеним на " "'%s' пакунках" -#: cmdline/apt-get.cc:3026 +#: cmdline/apt-get.cc:3028 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -999,14 +1001,14 @@ msgid "" msgstr "" "Залежність типу %s для %s не може бути задоволена, бо пакунок %s не знайдено" -#: cmdline/apt-get.cc:3049 +#: cmdline/apt-get.cc:3051 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "Не вдалося задовольнити залежність типу %s для %s: Встановлений пакунок %s " "новіше, аніж треба" -#: cmdline/apt-get.cc:3088 +#: cmdline/apt-get.cc:3090 #, c-format msgid "" "%s dependency for %s cannot be satisfied because candidate version of " @@ -1015,7 +1017,7 @@ msgstr "" "Залежність типу %s для %s не може бути задоволена, бо версія пакунку-" "кандидата %s не задовольняє умови по версіям" -#: cmdline/apt-get.cc:3094 +#: cmdline/apt-get.cc:3096 #, c-format msgid "" "%s dependency for %s cannot be satisfied because package %s has no candidate " @@ -1024,30 +1026,30 @@ msgstr "" "Залежність типу %s для %s не може бути задоволена, бо немає пакунку-" "кандидата %s потрібної версії" -#: cmdline/apt-get.cc:3117 +#: cmdline/apt-get.cc:3119 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "Неможливо задовольнити залежність типу %s для пакунка %s: %s" -#: cmdline/apt-get.cc:3133 +#: cmdline/apt-get.cc:3135 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "Залежності для побудови %s не можуть бути задоволені." -#: cmdline/apt-get.cc:3138 +#: cmdline/apt-get.cc:3140 msgid "Failed to process build dependencies" msgstr "Обробка залежностей для побудови закінчилася невдало" -#: cmdline/apt-get.cc:3231 cmdline/apt-get.cc:3243 +#: cmdline/apt-get.cc:3233 cmdline/apt-get.cc:3245 #, c-format msgid "Changelog for %s (%s)" msgstr "Журнал змін для %s (%s)" -#: cmdline/apt-get.cc:3366 +#: cmdline/apt-get.cc:3368 msgid "Supported modules:" msgstr "Підтримувані модулі:" -#: cmdline/apt-get.cc:3407 +#: cmdline/apt-get.cc:3409 msgid "" "Usage: apt-get [options] command\n" " apt-get [options] install|remove pkg1 [pkg2 ...]\n" @@ -1139,7 +1141,7 @@ msgstr "" "містять більше інформації і опцій.\n" " Цей APT має Супер-Коров'ячу Силу.\n" -#: cmdline/apt-get.cc:3572 +#: cmdline/apt-get.cc:3574 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1761,7 +1763,7 @@ msgstr "" " -c=? Читати зазначений конфігураційний файл\n" " -o=? Вказати довільну опцію, наприклад, -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1335 +#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1339 #, c-format msgid "Unable to write to %s" msgstr "Неможливо записати в %s" @@ -2823,7 +2825,7 @@ msgstr "Спотворений рядок %u у переліку джерел %s msgid "Type '%s' is not known on line %u in source list %s" msgstr "Невідомий тип '%s' на рядку %u в переліку джерел %s" -#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:896 +#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:898 #, c-format msgid "" "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " @@ -2832,12 +2834,12 @@ msgstr "" "Неможливо прямо налаштувати конфігурацію на '%s'. Будь-ласка, дивіться man 5 " "apt.conf, нижче APT::Immediate-Configure для деталей. (%d)" -#: apt-pkg/packagemanager.cc:473 apt-pkg/packagemanager.cc:503 +#: apt-pkg/packagemanager.cc:473 apt-pkg/packagemanager.cc:504 #, c-format msgid "Could not configure '%s'. " msgstr "Неможливо налаштувати '%s'." -#: apt-pkg/packagemanager.cc:545 +#: apt-pkg/packagemanager.cc:546 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2873,7 +2875,7 @@ msgstr "" msgid "Unable to correct problems, you have held broken packages." msgstr "Неможливо усунути проблеми, ви маєте поламані зафіксовані пакунки." -#: apt-pkg/algorithms.cc:1574 apt-pkg/algorithms.cc:1576 +#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 msgid "" "Some index files failed to download. They have been ignored, or old ones " "used instead." @@ -3017,22 +3019,22 @@ msgstr "Ого! Ви перевищили кількість залежност msgid "Package %s %s was not found while processing file dependencies" msgstr "Пакунок %s %s не був знайдений під час обробки залежностей" -#: apt-pkg/pkgcachegen.cc:1146 +#: apt-pkg/pkgcachegen.cc:1150 #, c-format msgid "Couldn't stat source package list %s" msgstr "Не вдалося прочитати атрибути переліку вихідних текстів %s" -#: apt-pkg/pkgcachegen.cc:1234 apt-pkg/pkgcachegen.cc:1338 -#: apt-pkg/pkgcachegen.cc:1344 apt-pkg/pkgcachegen.cc:1501 +#: apt-pkg/pkgcachegen.cc:1238 apt-pkg/pkgcachegen.cc:1342 +#: apt-pkg/pkgcachegen.cc:1348 apt-pkg/pkgcachegen.cc:1505 msgid "Reading package lists" msgstr "Зчитування переліків пакунків" -#: apt-pkg/pkgcachegen.cc:1251 +#: apt-pkg/pkgcachegen.cc:1255 #, fuzzy msgid "Collecting File Provides" msgstr "Збирання інформації про 'File Provides'" -#: apt-pkg/pkgcachegen.cc:1443 apt-pkg/pkgcachegen.cc:1450 +#: apt-pkg/pkgcachegen.cc:1447 apt-pkg/pkgcachegen.cc:1454 msgid "IO Error saving source cache" msgstr "Помилка IO під час збереження кешу вихідних текстів" diff --git a/po/vi.po b/po/vi.po index 391efe621..fc79aa87a 100644 --- a/po/vi.po +++ b/po/vi.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.9.7.5\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2012-10-15 09:49+0200\n" +"POT-Creation-Date: 2013-03-14 08:05+0100\n" "PO-Revision-Date: 2012-11-20 14:12+0700\n" "Last-Translator: Trần Ngọc Quân \n" "Language-Team: Vietnamese \n" @@ -159,7 +159,7 @@ msgid " Version table:" msgstr " Bảng phiên bản:" #: cmdline/apt-cache.cc:1683 cmdline/apt-cdrom.cc:198 cmdline/apt-config.cc:81 -#: cmdline/apt-get.cc:3361 cmdline/apt-mark.cc:375 +#: cmdline/apt-get.cc:3363 cmdline/apt-mark.cc:375 #: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:590 #: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147 #, c-format @@ -489,7 +489,7 @@ msgstr "Không thể cài đặt lại %s vì không thể tải về nó.\n" msgid "%s is already the newest version.\n" msgstr "%s là phiên bản mơi nhất.\n" -#: cmdline/apt-get.cc:858 cmdline/apt-get.cc:2157 cmdline/apt-mark.cc:68 +#: cmdline/apt-get.cc:858 cmdline/apt-get.cc:2159 cmdline/apt-mark.cc:68 #, c-format msgid "%s set to manually installed.\n" msgstr "%s được đặt thành “được cài đặt bằng tay”.\n" @@ -599,8 +599,8 @@ msgstr "Sau thao tác này, %sB dung lượng đĩa thêm sẽ được dùng th msgid "After this operation, %sB disk space will be freed.\n" msgstr "Sau thao tác này, %sB dung lượng đĩa sẽ được giải phóng.\n" -#: cmdline/apt-get.cc:1228 cmdline/apt-get.cc:1231 cmdline/apt-get.cc:2589 -#: cmdline/apt-get.cc:2592 +#: cmdline/apt-get.cc:1228 cmdline/apt-get.cc:1231 cmdline/apt-get.cc:2591 +#: cmdline/apt-get.cc:2594 #, c-format msgid "Couldn't determine free space in %s" msgstr "Không thể tìm được chỗ trống trong %s" @@ -610,16 +610,18 @@ msgstr "Không thể tìm được chỗ trống trong %s" msgid "You don't have enough free space in %s." msgstr "Bạn không có đủ dung lượng đĩa còn trống trong %s." -#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1277 +#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1279 msgid "Trivial Only specified but this is not a trivial operation." msgstr "" "Đã đưa ra “Chỉ không đáng kể” (Trivial Only) nhưng mà thao tác này đáng kể." -#: cmdline/apt-get.cc:1259 +#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be +#. careful with hard to type or special characters (like non-breaking spaces) +#: cmdline/apt-get.cc:1261 msgid "Yes, do as I say!" msgstr "Có, làm đi!" -#: cmdline/apt-get.cc:1261 +#: cmdline/apt-get.cc:1263 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -630,28 +632,28 @@ msgstr "" "Để tiếp tục thì gõ cụm từ “%s”\n" "?]" -#: cmdline/apt-get.cc:1267 cmdline/apt-get.cc:1286 +#: cmdline/apt-get.cc:1269 cmdline/apt-get.cc:1288 msgid "Abort." msgstr "Hủy bỏ." -#: cmdline/apt-get.cc:1282 +#: cmdline/apt-get.cc:1284 msgid "Do you want to continue [Y/n]? " msgstr "Bạn có muốn tiếp tục không? [C/k] " -#: cmdline/apt-get.cc:1354 cmdline/apt-get.cc:2654 apt-pkg/algorithms.cc:1548 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Việc lấy %s bị lỗi %s\n" -#: cmdline/apt-get.cc:1372 +#: cmdline/apt-get.cc:1374 msgid "Some files failed to download" msgstr "Một số tập tin không tải về được" -#: cmdline/apt-get.cc:1373 cmdline/apt-get.cc:2666 +#: cmdline/apt-get.cc:1375 cmdline/apt-get.cc:2668 msgid "Download complete and in download only mode" msgstr "Mới tải về xong và trong chế độ chỉ tải về" -#: cmdline/apt-get.cc:1379 +#: cmdline/apt-get.cc:1381 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -659,21 +661,21 @@ msgstr "" "Không thể lấy một số kho, có lẽ hãy chạy lệnh “apt-get update” (apt lấy cập " "nhật) hay cố với “--fix-missing” (sửa thiếu sót) không?" -#: cmdline/apt-get.cc:1383 +#: cmdline/apt-get.cc:1385 msgid "--fix-missing and media swapping is not currently supported" msgstr "" "Chưa hô trợ tùy chọn “--fix-missing” (sửa khi thiếu điều) và trao đổi phương " "tiện." -#: cmdline/apt-get.cc:1388 +#: cmdline/apt-get.cc:1390 msgid "Unable to correct missing packages." msgstr "Không thể sửa những gói còn thiếu." -#: cmdline/apt-get.cc:1389 +#: cmdline/apt-get.cc:1391 msgid "Aborting install." msgstr "Đang hủy bỏ tiến trình cài đặt." -#: cmdline/apt-get.cc:1417 +#: cmdline/apt-get.cc:1419 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -684,35 +686,35 @@ msgstr[0] "" "Những gói theo đây không còn nằm trên hệ thống này vì mọi tập tin đều bị gói " "khác ghi đè:" -#: cmdline/apt-get.cc:1421 +#: cmdline/apt-get.cc:1423 msgid "Note: This is done automatically and on purpose by dpkg." msgstr "Ghi chú: thay đổi này được tự động thực hiệnbởi dpkg." -#: cmdline/apt-get.cc:1559 +#: cmdline/apt-get.cc:1561 #, c-format msgid "Ignore unavailable target release '%s' of package '%s'" msgstr "Bỏ qua bản phát hành đích không sẵn sàng “%s” của gói “%s”" -#: cmdline/apt-get.cc:1591 +#: cmdline/apt-get.cc:1593 #, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "Đang chọn “%s” làm gói nguồn, thay cho “%s”\n" #. if (VerTag.empty() == false && Last == 0) -#: cmdline/apt-get.cc:1629 +#: cmdline/apt-get.cc:1631 #, c-format msgid "Ignore unavailable version '%s' of package '%s'" msgstr "Bỏ qua phiên bản không sẵn sàng “%s” của gói “%s”" -#: cmdline/apt-get.cc:1645 +#: cmdline/apt-get.cc:1647 msgid "The update command takes no arguments" msgstr "Lệnh cập nhật không chấp nhận đối số" -#: cmdline/apt-get.cc:1711 +#: cmdline/apt-get.cc:1713 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "Không nên xoá gì thì không thể khởi chạy Bộ Gỡ bỏ Tự động" -#: cmdline/apt-get.cc:1815 +#: cmdline/apt-get.cc:1817 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -730,15 +732,15 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1818 cmdline/apt-get.cc:1987 +#: cmdline/apt-get.cc:1820 cmdline/apt-get.cc:1989 msgid "The following information may help to resolve the situation:" msgstr "Có lẽ thông tin theo đây sẽ giúp đỡ quyết định trường hợp:" -#: cmdline/apt-get.cc:1822 +#: cmdline/apt-get.cc:1824 msgid "Internal Error, AutoRemover broke stuff" msgstr "Lỗi nội bộ: Bộ Gỡ bỏ Tự động đã làm hư gì." -#: cmdline/apt-get.cc:1829 +#: cmdline/apt-get.cc:1831 msgid "" "The following package was automatically installed and is no longer required:" msgid_plural "" @@ -747,27 +749,27 @@ msgid_plural "" msgstr[0] "" "Gói nào theo đây đã được tự động cài đặt nên không còn cần thiết lại:" -#: cmdline/apt-get.cc:1833 +#: cmdline/apt-get.cc:1835 #, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" "%lu packages were automatically installed and are no longer required.\n" msgstr[0] "%lu gói đã được tự động cài đặt nên không còn cần thiết lại.\n" -#: cmdline/apt-get.cc:1835 +#: cmdline/apt-get.cc:1837 msgid "Use 'apt-get autoremove' to remove it." msgid_plural "Use 'apt-get autoremove' to remove them." msgstr[0] "Hãy dùng lệnh `apt-get autoremove' để gỡ bỏ chúng." -#: cmdline/apt-get.cc:1854 +#: cmdline/apt-get.cc:1856 msgid "Internal error, AllUpgrade broke stuff" msgstr "Lỗi nội bộ: AllUpgrade (toàn bộ nâng cấp) đã ngắt gì" -#: cmdline/apt-get.cc:1953 +#: cmdline/apt-get.cc:1955 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "Có lẽ bạn hãy chạy lênh “apt-get -f install” để sửa hết:" -#: cmdline/apt-get.cc:1957 +#: cmdline/apt-get.cc:1959 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -775,7 +777,7 @@ msgstr "" "Gói còn phụ thuộc vào phần mềm chưa có. Hãy cố chạy lệnh “apt-get -f " "install” mà không có gói nào (hoặc ghi rõ cách quyết định)." -#: cmdline/apt-get.cc:1972 +#: cmdline/apt-get.cc:1974 msgid "" "Some packages could not be installed. This may mean that you have\n" "requested an impossible situation or if you are using the unstable\n" @@ -787,33 +789,33 @@ msgstr "" "bất định, có lẽ chưa tạo một số gói cần thiết,\n" "hoặc chưa di chuyển chúng ra phần Incoming (Đến)." -#: cmdline/apt-get.cc:1993 +#: cmdline/apt-get.cc:1995 msgid "Broken packages" msgstr "Gói bị hỏng" -#: cmdline/apt-get.cc:2019 +#: cmdline/apt-get.cc:2021 msgid "The following extra packages will be installed:" msgstr "Những gói thêm theo đây sẽ được cài đặt:" -#: cmdline/apt-get.cc:2109 +#: cmdline/apt-get.cc:2111 msgid "Suggested packages:" msgstr "Các gói đề nghị:" -#: cmdline/apt-get.cc:2110 +#: cmdline/apt-get.cc:2112 msgid "Recommended packages:" msgstr "Gói khuyến khích:" -#: cmdline/apt-get.cc:2152 +#: cmdline/apt-get.cc:2154 #, c-format msgid "Couldn't find package %s" msgstr "Không tìm thấy gói %s" -#: cmdline/apt-get.cc:2159 cmdline/apt-mark.cc:70 +#: cmdline/apt-get.cc:2161 cmdline/apt-mark.cc:70 #, c-format msgid "%s set to automatically installed.\n" msgstr "%s được đặt thành “được tự động cài đặt”.\n" -#: cmdline/apt-get.cc:2167 cmdline/apt-mark.cc:114 +#: cmdline/apt-get.cc:2169 cmdline/apt-mark.cc:114 msgid "" "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " "instead." @@ -821,46 +823,46 @@ msgstr "" "Lệnh này đã bị loại bỏ. Xin hãy dùng lệnh 'apt-mark auto' và 'apt-mark " "manual' để thay thế." -#: cmdline/apt-get.cc:2183 +#: cmdline/apt-get.cc:2185 msgid "Calculating upgrade... " msgstr "Đang tính bước nâng cấp... " -#: cmdline/apt-get.cc:2186 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 msgid "Failed" msgstr "Gặp lỗi" -#: cmdline/apt-get.cc:2191 +#: cmdline/apt-get.cc:2193 msgid "Done" msgstr "Hoàn tất" -#: cmdline/apt-get.cc:2258 cmdline/apt-get.cc:2266 +#: cmdline/apt-get.cc:2260 cmdline/apt-get.cc:2268 msgid "Internal error, problem resolver broke stuff" msgstr "Lỗi nội bộ: bộ tháo gỡ vấn đề đã ngắt gì" -#: cmdline/apt-get.cc:2294 cmdline/apt-get.cc:2330 +#: cmdline/apt-get.cc:2296 cmdline/apt-get.cc:2332 msgid "Unable to lock the download directory" msgstr "Không thể khoá thư mục tải về" -#: cmdline/apt-get.cc:2386 +#: cmdline/apt-get.cc:2388 #, c-format msgid "Can't find a source to download version '%s' of '%s'" msgstr "Không tìm thấy nguồn cho việc tải về phiên bản '%s' of '%s'" -#: cmdline/apt-get.cc:2391 +#: cmdline/apt-get.cc:2393 #, c-format msgid "Downloading %s %s" msgstr "Đang tải về %s %s" -#: cmdline/apt-get.cc:2451 +#: cmdline/apt-get.cc:2453 msgid "Must specify at least one package to fetch source for" msgstr "Phải ghi rõ ít nhất một gói cho đó cần lấy mã nguồn" -#: cmdline/apt-get.cc:2491 cmdline/apt-get.cc:2803 +#: cmdline/apt-get.cc:2493 cmdline/apt-get.cc:2805 #, c-format msgid "Unable to find a source package for %s" msgstr "Không tìm thấy gói nguồn cho %s" -#: cmdline/apt-get.cc:2508 +#: cmdline/apt-get.cc:2510 #, c-format msgid "" "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" @@ -870,7 +872,7 @@ msgstr "" "“%s” tại:\n" "%s\n" -#: cmdline/apt-get.cc:2513 +#: cmdline/apt-get.cc:2515 #, c-format msgid "" "Please use:\n" @@ -881,69 +883,69 @@ msgstr "" "bzr branch %s\n" "để lấy các gói mới nhất (có thể là chưa phát hành).\n" -#: cmdline/apt-get.cc:2566 +#: cmdline/apt-get.cc:2568 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Đang bỏ qua tập tin đã được tải về “%s”\n" -#: cmdline/apt-get.cc:2603 +#: cmdline/apt-get.cc:2605 #, c-format msgid "You don't have enough free space in %s" msgstr "Không đủ sức chứa còn rảnh trong %s" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:2612 +#: cmdline/apt-get.cc:2614 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "Cần phải lấy %sB/%sB kho nguồn.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:2617 +#: cmdline/apt-get.cc:2619 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Cần phải lấy %sB từ kho nguồn.\n" -#: cmdline/apt-get.cc:2623 +#: cmdline/apt-get.cc:2625 #, c-format msgid "Fetch source %s\n" msgstr "Lấy nguồn %s\n" -#: cmdline/apt-get.cc:2661 +#: cmdline/apt-get.cc:2663 msgid "Failed to fetch some archives." msgstr "Việc lấy một số kho bị lỗi." -#: cmdline/apt-get.cc:2692 +#: cmdline/apt-get.cc:2694 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "Đang bỏ qua giải nén nguồn đã giải nén trong %s\n" -#: cmdline/apt-get.cc:2704 +#: cmdline/apt-get.cc:2706 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Lệnh giải nén “%s” bị lỗi.\n" -#: cmdline/apt-get.cc:2705 +#: cmdline/apt-get.cc:2707 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "Hãy kiểm tra xem gói “dpkg-dev” có được cài đặt chưa.\n" -#: cmdline/apt-get.cc:2727 +#: cmdline/apt-get.cc:2729 #, c-format msgid "Build command '%s' failed.\n" msgstr "Lệnh xây dụng “%s” bị lỗi.\n" -#: cmdline/apt-get.cc:2747 +#: cmdline/apt-get.cc:2749 msgid "Child process failed" msgstr "Tiến trình con bị lỗi" -#: cmdline/apt-get.cc:2766 +#: cmdline/apt-get.cc:2768 msgid "Must specify at least one package to check builddeps for" msgstr "" "Phải ghi rõ ít nhất một gói cần kiểm tra cách phụ thuộc khi xây dụng cho nó" -#: cmdline/apt-get.cc:2791 +#: cmdline/apt-get.cc:2793 #, c-format msgid "" "No architecture information available for %s. See apt.conf(5) APT::" @@ -952,17 +954,17 @@ msgstr "" "Không có thông tin kiến trúc sẵn sàng cho %s. Xem apt.conf(5) APT::" "Architectures để cài đặt" -#: cmdline/apt-get.cc:2815 cmdline/apt-get.cc:2818 +#: cmdline/apt-get.cc:2817 cmdline/apt-get.cc:2820 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "Không thể lấy thông tin về cách phụ thuộc khi xây dụng cho %s" -#: cmdline/apt-get.cc:2838 +#: cmdline/apt-get.cc:2840 #, c-format msgid "%s has no build depends.\n" msgstr "%s không phụ thuộc vào gì khi xây dụng.\n" -#: cmdline/apt-get.cc:3008 +#: cmdline/apt-get.cc:3010 #, c-format msgid "" "%s dependency for %s can't be satisfied because %s is not allowed on '%s' " @@ -970,20 +972,20 @@ msgid "" msgstr "" "phụ thuộc %s cho %s không ổn thỏa bởi vì %s không được cho phép trên gói '%s'" -#: cmdline/apt-get.cc:3026 +#: cmdline/apt-get.cc:3028 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " "found" msgstr "cách phụ thuộc %s cho %s không thể được thỏa vì không tìm thấy gọi %s" -#: cmdline/apt-get.cc:3049 +#: cmdline/apt-get.cc:3051 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "Việc cố thỏa cách phụ thuộc %s cho %s bị lỗi vì gói đã cài đặt %s quá mới" -#: cmdline/apt-get.cc:3088 +#: cmdline/apt-get.cc:3090 #, c-format msgid "" "%s dependency for %s cannot be satisfied because candidate version of " @@ -992,7 +994,7 @@ msgstr "" "cách phụ thuộc %s cho %s không thể được thỏa mãn phiên bản ứng cử của gói %s " "có thể thỏa mãn điều kiện phiên bản" -#: cmdline/apt-get.cc:3094 +#: cmdline/apt-get.cc:3096 #, c-format msgid "" "%s dependency for %s cannot be satisfied because package %s has no candidate " @@ -1001,30 +1003,30 @@ msgstr "" "cách phụ thuộc %s cho %s không thể được thỏa mãn bởi vì gói %s không có bản " "ứng cử" -#: cmdline/apt-get.cc:3117 +#: cmdline/apt-get.cc:3119 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "Việc cố thỏa cách phụ thuộc %s cho %s bị lỗi: %s." -#: cmdline/apt-get.cc:3133 +#: cmdline/apt-get.cc:3135 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "Không thể thỏa cách phụ thuộc khi xây dụng cho %s." -#: cmdline/apt-get.cc:3138 +#: cmdline/apt-get.cc:3140 msgid "Failed to process build dependencies" msgstr "Việc xử lý cách phụ thuộc khi xây dụng bị lỗi" -#: cmdline/apt-get.cc:3231 cmdline/apt-get.cc:3243 +#: cmdline/apt-get.cc:3233 cmdline/apt-get.cc:3245 #, c-format msgid "Changelog for %s (%s)" msgstr "Changelog cho %s (%s)" -#: cmdline/apt-get.cc:3366 +#: cmdline/apt-get.cc:3368 msgid "Supported modules:" msgstr "Mô-đun đã hỗ trợ:" -#: cmdline/apt-get.cc:3407 +#: cmdline/apt-get.cc:3409 msgid "" "Usage: apt-get [options] command\n" " apt-get [options] install|remove pkg1 [pkg2 ...]\n" @@ -1117,7 +1119,7 @@ msgstr "" " apt-get(8), sources.list(5) và apt.conf(5).\n" " Trình APT này có năng lực của siêu bò.\n" -#: cmdline/apt-get.cc:3572 +#: cmdline/apt-get.cc:3574 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1742,7 +1744,7 @@ msgstr "" " -c=? Đọc tập tin cấu hình này\n" " -o=? Đặt một tùy chọn cấu hình nhiệm ý, v.d. “-o dir::cache=/tmp”\n" -#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1335 +#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1339 #, c-format msgid "Unable to write to %s" msgstr "Không thể ghi vào %s" @@ -2810,7 +2812,7 @@ msgstr "Gặp dòng dạng sai %u trong danh sách nguồn %s (kiểu)." msgid "Type '%s' is not known on line %u in source list %s" msgstr "Không biết kiểu “%s” trên dòng %u trong danh sách nguồn %s." -#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:896 +#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:898 #, c-format msgid "" "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " @@ -2819,12 +2821,12 @@ msgstr "" "Không thể thực hiện ngay lập tức tiến trình cấu hình “%s”. Xem “man 5 apt." "conf ” dưới “APT::Immediate-Configure” để tìm chi tiết. (%d)" -#: apt-pkg/packagemanager.cc:473 apt-pkg/packagemanager.cc:503 +#: apt-pkg/packagemanager.cc:473 apt-pkg/packagemanager.cc:504 #, c-format msgid "Could not configure '%s'. " msgstr "Không thể cấu hình '%s'. " -#: apt-pkg/packagemanager.cc:545 +#: apt-pkg/packagemanager.cc:546 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2859,7 +2861,7 @@ msgstr "" msgid "Unable to correct problems, you have held broken packages." msgstr "Không thể sửa vấn đề, bạn đã giữ lại một số gói bị ngắt." -#: apt-pkg/algorithms.cc:1574 apt-pkg/algorithms.cc:1576 +#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 msgid "" "Some index files failed to download. They have been ignored, or old ones " "used instead." @@ -3005,21 +3007,21 @@ msgstr "Ồ, bạn đã vượt quá số cách phụ thuộc mà trình APT nà msgid "Package %s %s was not found while processing file dependencies" msgstr "Không tìm thấy gói %s %s khi xử lý quan hệ phụ thuộc của tập tin" -#: apt-pkg/pkgcachegen.cc:1146 +#: apt-pkg/pkgcachegen.cc:1150 #, c-format msgid "Couldn't stat source package list %s" msgstr "Không thể lấy các thông tin về danh sách gói nguồn %s" -#: apt-pkg/pkgcachegen.cc:1234 apt-pkg/pkgcachegen.cc:1338 -#: apt-pkg/pkgcachegen.cc:1344 apt-pkg/pkgcachegen.cc:1501 +#: apt-pkg/pkgcachegen.cc:1238 apt-pkg/pkgcachegen.cc:1342 +#: apt-pkg/pkgcachegen.cc:1348 apt-pkg/pkgcachegen.cc:1505 msgid "Reading package lists" msgstr "Đang đọc các danh sách gói" -#: apt-pkg/pkgcachegen.cc:1251 +#: apt-pkg/pkgcachegen.cc:1255 msgid "Collecting File Provides" msgstr "Đang tập hợp các Nhà cung cấp Tập tin" -#: apt-pkg/pkgcachegen.cc:1443 apt-pkg/pkgcachegen.cc:1450 +#: apt-pkg/pkgcachegen.cc:1447 apt-pkg/pkgcachegen.cc:1454 msgid "IO Error saving source cache" msgstr "Lỗi nhập/xuất khi lưu bộ nhớ tạm nguồn" diff --git a/po/zh_CN.po b/po/zh_CN.po index 59f51dd87..8c3120001 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.8.0~pre1\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2012-10-15 09:49+0200\n" +"POT-Creation-Date: 2013-03-14 08:05+0100\n" "PO-Revision-Date: 2010-08-26 14:42+0800\n" "Last-Translator: Aron Xu \n" "Language-Team: Chinese (simplified) \n" @@ -155,7 +155,7 @@ msgid " Version table:" msgstr " 版本列表:" #: cmdline/apt-cache.cc:1683 cmdline/apt-cdrom.cc:198 cmdline/apt-config.cc:81 -#: cmdline/apt-get.cc:3361 cmdline/apt-mark.cc:375 +#: cmdline/apt-get.cc:3363 cmdline/apt-mark.cc:375 #: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:590 #: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147 #, c-format @@ -482,7 +482,7 @@ msgstr "不能重新安装 %s,因为无法下载它。\n" msgid "%s is already the newest version.\n" msgstr "%s 已经是最新的版本了。\n" -#: cmdline/apt-get.cc:858 cmdline/apt-get.cc:2157 cmdline/apt-mark.cc:68 +#: cmdline/apt-get.cc:858 cmdline/apt-get.cc:2159 cmdline/apt-mark.cc:68 #, c-format msgid "%s set to manually installed.\n" msgstr "%s 被设置为手动安装。\n" @@ -589,8 +589,8 @@ msgstr "解压缩后会消耗掉 %sB 的额外空间。\n" msgid "After this operation, %sB disk space will be freed.\n" msgstr "解压缩后将会空出 %sB 的空间。\n" -#: cmdline/apt-get.cc:1228 cmdline/apt-get.cc:1231 cmdline/apt-get.cc:2589 -#: cmdline/apt-get.cc:2592 +#: cmdline/apt-get.cc:1228 cmdline/apt-get.cc:1231 cmdline/apt-get.cc:2591 +#: cmdline/apt-get.cc:2594 #, c-format msgid "Couldn't determine free space in %s" msgstr "无法获知您在 %s 上的可用空间" @@ -600,15 +600,17 @@ msgstr "无法获知您在 %s 上的可用空间" msgid "You don't have enough free space in %s." msgstr "您在 %s 上没有足够的可用空间。" -#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1277 +#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1279 msgid "Trivial Only specified but this is not a trivial operation." msgstr "虽然您指定了仅执行常规操作,但这不是个常规操作。" -#: cmdline/apt-get.cc:1259 +#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be +#. careful with hard to type or special characters (like non-breaking spaces) +#: cmdline/apt-get.cc:1261 msgid "Yes, do as I say!" msgstr "是,按我说的做!" -#: cmdline/apt-get.cc:1261 +#: cmdline/apt-get.cc:1263 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -619,28 +621,28 @@ msgstr "" "若还想继续的话,就输入下面的短句“%s”\n" " ?] " -#: cmdline/apt-get.cc:1267 cmdline/apt-get.cc:1286 +#: cmdline/apt-get.cc:1269 cmdline/apt-get.cc:1288 msgid "Abort." msgstr "中止执行。" -#: cmdline/apt-get.cc:1282 +#: cmdline/apt-get.cc:1284 msgid "Do you want to continue [Y/n]? " msgstr "您希望继续执行吗?[Y/n]" -#: cmdline/apt-get.cc:1354 cmdline/apt-get.cc:2654 apt-pkg/algorithms.cc:1548 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 #, c-format msgid "Failed to fetch %s %s\n" msgstr "无法下载 %s %s\n" -#: cmdline/apt-get.cc:1372 +#: cmdline/apt-get.cc:1374 msgid "Some files failed to download" msgstr "有一些文件无法下载" -#: cmdline/apt-get.cc:1373 cmdline/apt-get.cc:2666 +#: cmdline/apt-get.cc:1375 cmdline/apt-get.cc:2668 msgid "Download complete and in download only mode" msgstr "下载完毕,目前是“仅下载”模式" -#: cmdline/apt-get.cc:1379 +#: cmdline/apt-get.cc:1381 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -648,19 +650,19 @@ msgstr "" "有几个软件包无法下载,您可以运行 apt-get update 或者加上 --fix-missing 的选项" "再试试?" -#: cmdline/apt-get.cc:1383 +#: cmdline/apt-get.cc:1385 msgid "--fix-missing and media swapping is not currently supported" msgstr "目前还不支持 --fix-missing 和介质交换" -#: cmdline/apt-get.cc:1388 +#: cmdline/apt-get.cc:1390 msgid "Unable to correct missing packages." msgstr "无法更正缺少的软件包。" -#: cmdline/apt-get.cc:1389 +#: cmdline/apt-get.cc:1391 msgid "Aborting install." msgstr "中止安装。" -#: cmdline/apt-get.cc:1417 +#: cmdline/apt-get.cc:1419 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -669,35 +671,35 @@ msgid_plural "" "all files have been overwritten by other packages:" msgstr[0] "以下软件包因为文件已被其他软件包覆盖而消失:" -#: cmdline/apt-get.cc:1421 +#: cmdline/apt-get.cc:1423 msgid "Note: This is done automatically and on purpose by dpkg." msgstr "注意:这是自动被 dpkg 有意完成的。" -#: cmdline/apt-get.cc:1559 +#: cmdline/apt-get.cc:1561 #, c-format msgid "Ignore unavailable target release '%s' of package '%s'" msgstr "忽略不可用的软件包 %2$s 的目标发行版本 %1$s" -#: cmdline/apt-get.cc:1591 +#: cmdline/apt-get.cc:1593 #, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "选择 %s 作为源代码包而非 %s\n" #. if (VerTag.empty() == false && Last == 0) -#: cmdline/apt-get.cc:1629 +#: cmdline/apt-get.cc:1631 #, c-format msgid "Ignore unavailable version '%s' of package '%s'" msgstr "忽略不可用的 %2$s 软件包的 %1$s 版" -#: cmdline/apt-get.cc:1645 +#: cmdline/apt-get.cc:1647 msgid "The update command takes no arguments" msgstr " update 命令不需要参数" -#: cmdline/apt-get.cc:1711 +#: cmdline/apt-get.cc:1713 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "我们不应该进行删除,无法启动自动删除器" -#: cmdline/apt-get.cc:1815 +#: cmdline/apt-get.cc:1817 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -713,15 +715,15 @@ msgstr "似乎自动卸载工具损坏了一些软件,这不应该发生。请 #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1818 cmdline/apt-get.cc:1987 +#: cmdline/apt-get.cc:1820 cmdline/apt-get.cc:1989 msgid "The following information may help to resolve the situation:" msgstr "下列信息可能会对解决问题有所帮助:" -#: cmdline/apt-get.cc:1822 +#: cmdline/apt-get.cc:1824 msgid "Internal Error, AutoRemover broke stuff" msgstr "内部错误,自动卸载工具坏事了" -#: cmdline/apt-get.cc:1829 +#: cmdline/apt-get.cc:1831 msgid "" "The following package was automatically installed and is no longer required:" msgid_plural "" @@ -729,28 +731,28 @@ msgid_plural "" "required:" msgstr[0] "下列软件包是自动安装的并且现在不需要了:" -#: cmdline/apt-get.cc:1833 +#: cmdline/apt-get.cc:1835 #, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" "%lu packages were automatically installed and are no longer required.\n" msgstr[0] "%lu 个自动安装的的软件包现在已不再需要了。\n" -#: cmdline/apt-get.cc:1835 +#: cmdline/apt-get.cc:1837 #, fuzzy msgid "Use 'apt-get autoremove' to remove it." msgid_plural "Use 'apt-get autoremove' to remove them." msgstr[0] "使用'apt-get autoremove'来卸载它们" -#: cmdline/apt-get.cc:1854 +#: cmdline/apt-get.cc:1856 msgid "Internal error, AllUpgrade broke stuff" msgstr "内部错误,全部升级工具坏事了" -#: cmdline/apt-get.cc:1953 +#: cmdline/apt-get.cc:1955 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "您可能需要运行“apt-get -f install”来纠正下列错误:" -#: cmdline/apt-get.cc:1957 +#: cmdline/apt-get.cc:1959 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -758,7 +760,7 @@ msgstr "" "有未能满足的依赖关系。请尝试不指明软件包的名字来运行“apt-get -f install”(也可" "以指定一个解决办法)。" -#: cmdline/apt-get.cc:1972 +#: cmdline/apt-get.cc:1974 msgid "" "Some packages could not be installed. This may mean that you have\n" "requested an impossible situation or if you are using the unstable\n" @@ -769,78 +771,78 @@ msgstr "" "因为系统无法达到您要求的状态造成的。该版本中可能会有一些您需要的软件\n" "包尚未被创建或是它们已被从新到(Incoming)目录移出。" -#: cmdline/apt-get.cc:1993 +#: cmdline/apt-get.cc:1995 msgid "Broken packages" msgstr "破损的软件包" -#: cmdline/apt-get.cc:2019 +#: cmdline/apt-get.cc:2021 msgid "The following extra packages will be installed:" msgstr "将会安装下列额外的软件包:" -#: cmdline/apt-get.cc:2109 +#: cmdline/apt-get.cc:2111 msgid "Suggested packages:" msgstr "建议安装的软件包:" -#: cmdline/apt-get.cc:2110 +#: cmdline/apt-get.cc:2112 msgid "Recommended packages:" msgstr "推荐安装的软件包:" -#: cmdline/apt-get.cc:2152 +#: cmdline/apt-get.cc:2154 #, c-format msgid "Couldn't find package %s" msgstr "无法找到软件包 %s" -#: cmdline/apt-get.cc:2159 cmdline/apt-mark.cc:70 +#: cmdline/apt-get.cc:2161 cmdline/apt-mark.cc:70 #, c-format msgid "%s set to automatically installed.\n" msgstr "%s 被设置为手动安装。\n" -#: cmdline/apt-get.cc:2167 cmdline/apt-mark.cc:114 +#: cmdline/apt-get.cc:2169 cmdline/apt-mark.cc:114 msgid "" "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " "instead." msgstr "" -#: cmdline/apt-get.cc:2183 +#: cmdline/apt-get.cc:2185 msgid "Calculating upgrade... " msgstr "正在对升级进行计算... " -#: cmdline/apt-get.cc:2186 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 msgid "Failed" msgstr "失败" -#: cmdline/apt-get.cc:2191 +#: cmdline/apt-get.cc:2193 msgid "Done" msgstr "完成" -#: cmdline/apt-get.cc:2258 cmdline/apt-get.cc:2266 +#: cmdline/apt-get.cc:2260 cmdline/apt-get.cc:2268 msgid "Internal error, problem resolver broke stuff" msgstr "内部错误,问题解决工具坏事了" -#: cmdline/apt-get.cc:2294 cmdline/apt-get.cc:2330 +#: cmdline/apt-get.cc:2296 cmdline/apt-get.cc:2332 msgid "Unable to lock the download directory" msgstr "无法锁定下载目录" -#: cmdline/apt-get.cc:2386 +#: cmdline/apt-get.cc:2388 #, c-format msgid "Can't find a source to download version '%s' of '%s'" msgstr "" -#: cmdline/apt-get.cc:2391 +#: cmdline/apt-get.cc:2393 #, c-format msgid "Downloading %s %s" msgstr "" -#: cmdline/apt-get.cc:2451 +#: cmdline/apt-get.cc:2453 msgid "Must specify at least one package to fetch source for" msgstr "要下载源代码,必须指定至少一个对应的软件包" -#: cmdline/apt-get.cc:2491 cmdline/apt-get.cc:2803 +#: cmdline/apt-get.cc:2493 cmdline/apt-get.cc:2805 #, c-format msgid "Unable to find a source package for %s" msgstr "无法找到与 %s 对应的源代码包" -#: cmdline/apt-get.cc:2508 +#: cmdline/apt-get.cc:2510 #, c-format msgid "" "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" @@ -849,7 +851,7 @@ msgstr "" "提示:%s 的打包工作被维护于以下位置的 %s 版本控制系统中:\n" "%s\n" -#: cmdline/apt-get.cc:2513 +#: cmdline/apt-get.cc:2515 #, fuzzy, c-format msgid "" "Please use:\n" @@ -860,104 +862,104 @@ msgstr "" "bzr get %s\n" "获得该软件包的最近更新(可能尚未正式发布)。\n" -#: cmdline/apt-get.cc:2566 +#: cmdline/apt-get.cc:2568 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "忽略已下载过的文件“%s”\n" -#: cmdline/apt-get.cc:2603 +#: cmdline/apt-get.cc:2605 #, c-format msgid "You don't have enough free space in %s" msgstr "您在 %s 上没有足够的可用空间" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:2612 +#: cmdline/apt-get.cc:2614 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "需要下载 %sB/%sB 的源代码包。\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:2617 +#: cmdline/apt-get.cc:2619 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "需要下载 %sB 的源代码包。\n" -#: cmdline/apt-get.cc:2623 +#: cmdline/apt-get.cc:2625 #, c-format msgid "Fetch source %s\n" msgstr "下载源代码 %s\n" -#: cmdline/apt-get.cc:2661 +#: cmdline/apt-get.cc:2663 msgid "Failed to fetch some archives." msgstr "有一些包文件无法下载。" -#: cmdline/apt-get.cc:2692 +#: cmdline/apt-get.cc:2694 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "忽略已经被解包到 %s 目录的源代码包\n" -#: cmdline/apt-get.cc:2704 +#: cmdline/apt-get.cc:2706 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "运行解包的命令“%s”出错。\n" -#: cmdline/apt-get.cc:2705 +#: cmdline/apt-get.cc:2707 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "请检查是否安装了“dpkg-dev”软件包。\n" -#: cmdline/apt-get.cc:2727 +#: cmdline/apt-get.cc:2729 #, c-format msgid "Build command '%s' failed.\n" msgstr "执行构造软件包命令“%s”失败。\n" -#: cmdline/apt-get.cc:2747 +#: cmdline/apt-get.cc:2749 msgid "Child process failed" msgstr "子进程出错" -#: cmdline/apt-get.cc:2766 +#: cmdline/apt-get.cc:2768 msgid "Must specify at least one package to check builddeps for" msgstr "要检查生成软件包的构建依赖关系,必须指定至少一个软件包" -#: cmdline/apt-get.cc:2791 +#: cmdline/apt-get.cc:2793 #, c-format msgid "" "No architecture information available for %s. See apt.conf(5) APT::" "Architectures for setup" msgstr "" -#: cmdline/apt-get.cc:2815 cmdline/apt-get.cc:2818 +#: cmdline/apt-get.cc:2817 cmdline/apt-get.cc:2820 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "无法获得 %s 的构建依赖关系信息" -#: cmdline/apt-get.cc:2838 +#: cmdline/apt-get.cc:2840 #, c-format msgid "%s has no build depends.\n" msgstr " %s 没有构建依赖关系信息。\n" -#: cmdline/apt-get.cc:3008 +#: cmdline/apt-get.cc:3010 #, fuzzy, c-format msgid "" "%s dependency for %s can't be satisfied because %s is not allowed on '%s' " "packages" msgstr "由于无法找到软件包 %3$s ,因此不能满足 %2$s 所要求的 %1$s 依赖关系" -#: cmdline/apt-get.cc:3026 +#: cmdline/apt-get.cc:3028 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " "found" msgstr "由于无法找到软件包 %3$s ,因此不能满足 %2$s 所要求的 %1$s 依赖关系" -#: cmdline/apt-get.cc:3049 +#: cmdline/apt-get.cc:3051 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "无法满足 %2$s 所要求 %1$s 依赖关系:已安装的软件包 %3$s 太新" -#: cmdline/apt-get.cc:3088 +#: cmdline/apt-get.cc:3090 #, fuzzy, c-format msgid "" "%s dependency for %s cannot be satisfied because candidate version of " @@ -966,37 +968,37 @@ msgstr "" "由于无法找到符合要求的软件包 %3$s 的可用版本,因此不能满足 %2$s 所要求的 " "%1$s 依赖关系" -#: cmdline/apt-get.cc:3094 +#: cmdline/apt-get.cc:3096 #, fuzzy, c-format msgid "" "%s dependency for %s cannot be satisfied because package %s has no candidate " "version" msgstr "由于无法找到软件包 %3$s ,因此不能满足 %2$s 所要求的 %1$s 依赖关系" -#: cmdline/apt-get.cc:3117 +#: cmdline/apt-get.cc:3119 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "无法满足 %2$s 所要求 %1$s 依赖关系:%3$s" -#: cmdline/apt-get.cc:3133 +#: cmdline/apt-get.cc:3135 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "不能满足软件包 %s 所要求的构建依赖关系。" -#: cmdline/apt-get.cc:3138 +#: cmdline/apt-get.cc:3140 msgid "Failed to process build dependencies" msgstr "无法处理构建依赖关系" -#: cmdline/apt-get.cc:3231 cmdline/apt-get.cc:3243 +#: cmdline/apt-get.cc:3233 cmdline/apt-get.cc:3245 #, fuzzy, c-format msgid "Changelog for %s (%s)" msgstr "正在连接 %s (%s)" -#: cmdline/apt-get.cc:3366 +#: cmdline/apt-get.cc:3368 msgid "Supported modules:" msgstr "支持的模块:" -#: cmdline/apt-get.cc:3407 +#: cmdline/apt-get.cc:3409 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1084,7 +1086,7 @@ msgstr "" "以获取更多信息和选项。\n" " 本 APT 具有超级牛力。\n" -#: cmdline/apt-get.cc:3572 +#: cmdline/apt-get.cc:3574 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1670,7 +1672,7 @@ msgstr "" " -c=? 读指定的配置文件\n" " -o=? 设置任意指定的配置选项,例如 -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1335 +#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1339 #, c-format msgid "Unable to write to %s" msgstr "无法写入 %s" @@ -2701,7 +2703,7 @@ msgstr "在源列表 %2$s 中第 %1$u 行的格式有误(类型)" msgid "Type '%s' is not known on line %u in source list %s" msgstr "无法识别在源列表 %3$s 里,第 %2$u 行中的软件包类别“%1$s”" -#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:896 +#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:898 #, c-format msgid "" "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " @@ -2710,12 +2712,12 @@ msgstr "" "无法立即对 %s 进行配置。请查看 man 5 apt.conf 中的 APT::Immediate-Configure " "(%d)" -#: apt-pkg/packagemanager.cc:473 apt-pkg/packagemanager.cc:503 +#: apt-pkg/packagemanager.cc:473 apt-pkg/packagemanager.cc:504 #, fuzzy, c-format msgid "Could not configure '%s'. " msgstr "无法打开文件 %s" -#: apt-pkg/packagemanager.cc:545 +#: apt-pkg/packagemanager.cc:546 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2751,7 +2753,7 @@ msgstr "" "无法修正错误,因为您要求某些软件包保持现状,就是它们破坏了软件包间的依赖关" "系。" -#: apt-pkg/algorithms.cc:1574 apt-pkg/algorithms.cc:1576 +#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 #, fuzzy msgid "" "Some index files failed to download. They have been ignored, or old ones " @@ -2892,21 +2894,21 @@ msgstr "哇,依赖关系数量超出了本 APT 的处理能力。" msgid "Package %s %s was not found while processing file dependencies" msgstr "当处理文件依赖关系时,无法找到软件包 %s %s" -#: apt-pkg/pkgcachegen.cc:1146 +#: apt-pkg/pkgcachegen.cc:1150 #, c-format msgid "Couldn't stat source package list %s" msgstr "无法获取源软件包列表 %s 的状态" -#: apt-pkg/pkgcachegen.cc:1234 apt-pkg/pkgcachegen.cc:1338 -#: apt-pkg/pkgcachegen.cc:1344 apt-pkg/pkgcachegen.cc:1501 +#: apt-pkg/pkgcachegen.cc:1238 apt-pkg/pkgcachegen.cc:1342 +#: apt-pkg/pkgcachegen.cc:1348 apt-pkg/pkgcachegen.cc:1505 msgid "Reading package lists" msgstr "正在读取软件包列表" -#: apt-pkg/pkgcachegen.cc:1251 +#: apt-pkg/pkgcachegen.cc:1255 msgid "Collecting File Provides" msgstr "正在收集文件所提供的软件包" -#: apt-pkg/pkgcachegen.cc:1443 apt-pkg/pkgcachegen.cc:1450 +#: apt-pkg/pkgcachegen.cc:1447 apt-pkg/pkgcachegen.cc:1454 msgid "IO Error saving source cache" msgstr "无法读取或写入软件源缓存" diff --git a/po/zh_TW.po b/po/zh_TW.po index d121e965f..4a8d6b9e8 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: 0.5.4\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2012-10-15 09:49+0200\n" +"POT-Creation-Date: 2013-03-14 08:05+0100\n" "PO-Revision-Date: 2009-01-28 10:41+0800\n" "Last-Translator: Tetralet \n" "Language-Team: Debian-user in Chinese [Big5] > testaptgetupdate.diff >> testaptgetupdate.diff || true - sed -i -e '/^Fetched / d' -e '/Ign / d' -e 's#\[[0-9]* [kMGTPY]*B\]#\[\]#' testaptgetupdate.diff + sed -i -e '/^Fetched / d' -e '/Ign / d' -e '/Release/ d' -e 's#Get:[0-9]\+ #Get: #' -e 's#\[[0-9]* [kMGTPY]*B\]#\[\]#' testaptgetupdate.diff GIVEN="$1" shift msgtest "Test for correctness of" "apt-get update with $*" @@ -81,22 +81,18 @@ testoverfile() { setupcompressor "$1" createemptyfile 'en' - testaptgetupdate "Get:1 file: InRelease [] -Reading package lists..." "empty file en.$COMPRESS over file" + testaptgetupdate 'Reading package lists...' "empty file en.$COMPRESS over file" createemptyarchive 'en' - testaptgetupdate "Get:1 file: InRelease [] -Reading package lists..." "empty archive en.$COMPRESS over file" + testaptgetupdate 'Reading package lists...' "empty archive en.$COMPRESS over file" createemptyarchive 'Packages' # FIXME: Why omits the file transport the Packages Get line? #Get:3 file: Packages [] - testaptgetupdate "Get:1 file: InRelease [] -Reading package lists..." "empty archive Packages.$COMPRESS over file" + testaptgetupdate 'Reading package lists...' "empty archive Packages.$COMPRESS over file" createemptyfile 'Packages' - testaptgetupdate "Get:1 file: InRelease [] -Err file: Packages + testaptgetupdate "Err file: Packages Empty files can't be valid archives W: Failed to fetch ${COMPRESSOR}:$(readlink -f aptarchive/Packages.$COMPRESS) Empty files can't be valid archives @@ -107,26 +103,22 @@ testoverhttp() { setupcompressor "$1" createemptyfile 'en' - testaptgetupdate "Get:1 http://localhost InRelease [] -Get:2 http://localhost Packages [] -Get:3 http://localhost Translation-en + testaptgetupdate "Get: http://localhost Packages [] +Get: http://localhost Translation-en Reading package lists..." "empty file en.$COMPRESS over http" createemptyarchive 'en' - testaptgetupdate "Get:1 http://localhost InRelease [] -Get:2 http://localhost Packages [] -Get:3 http://localhost Translation-en [] + testaptgetupdate "Get: http://localhost Packages [] +Get: http://localhost Translation-en [] Reading package lists..." "empty archive en.$COMPRESS over http" createemptyarchive 'Packages' - testaptgetupdate "Get:1 http://localhost InRelease [] -Get:2 http://localhost Packages [] + testaptgetupdate "Get: http://localhost Packages [] Reading package lists..." "empty archive Packages.$COMPRESS over http" createemptyfile 'Packages' #FIXME: we should response with a good error message instead - testaptgetupdate "Get:1 http://localhost InRelease [] -Get:2 http://localhost Packages + testaptgetupdate "Get: http://localhost Packages Err http://localhost Packages Empty files can't be valid archives W: Failed to fetch ${COMPRESSOR}:$(readlink -f rootdir/var/lib/apt/lists/partial/localhost:8080_Packages) Empty files can't be valid archives diff --git a/test/integration/test-releasefile-verification b/test/integration/test-releasefile-verification index d3ea91de5..01fb2e529 100755 --- a/test/integration/test-releasefile-verification +++ b/test/integration/test-releasefile-verification @@ -184,5 +184,5 @@ runtest2 DELETEFILE="InRelease" runtest -DELETEFILE="Release.gpg" -runtest +#DELETEFILE="Release.gpg" +#runtest -- cgit v1.2.3 From 2f5b615169aef2d9c74bb337af229dee2dce595e Mon Sep 17 00:00:00 2001 From: David Kalnischkies Date: Fri, 15 Mar 2013 14:17:01 +0100 Subject: * apt-pkg/indexcopy.cc: - rename RunGPGV to ExecGPGV and move it to apt-pkg/contrib/gpgv.cc --- apt-pkg/contrib/gpgv.cc | 138 ++++++++++++++++++++++++++++++++++++++++++++++++ apt-pkg/contrib/gpgv.h | 24 +++++++++ apt-pkg/indexcopy.cc | 122 +----------------------------------------- apt-pkg/indexcopy.h | 15 +++--- apt-pkg/makefile | 14 +++-- debian/changelog | 8 +++ methods/gpgv.cc | 3 +- 7 files changed, 189 insertions(+), 135 deletions(-) create mode 100644 apt-pkg/contrib/gpgv.cc create mode 100644 apt-pkg/contrib/gpgv.h diff --git a/apt-pkg/contrib/gpgv.cc b/apt-pkg/contrib/gpgv.cc new file mode 100644 index 000000000..9b008dd4f --- /dev/null +++ b/apt-pkg/contrib/gpgv.cc @@ -0,0 +1,138 @@ +// -*- mode: cpp; mode: fold -*- +// Include Files /*{{{*/ +#include + +#include +#include +#include +#include +#include +#include +#include +#include + +#include +#include +#include +#include + +#include + /*}}}*/ + +using namespace std; + +// RunGPGV - returns the command needed for verify /*{{{*/ +// --------------------------------------------------------------------- +/* Generating the commandline for calling gpgv is somehow complicated as + we need to add multiple keyrings and user supplied options. */ +bool ExecGPGV(std::string const &File, std::string const &FileGPG, + int const &statusfd, int fd[2]) +{ + if (File == FileGPG) + { + #define SIGMSG "-----BEGIN PGP SIGNED MESSAGE-----\n" + char buffer[sizeof(SIGMSG)]; + FILE* gpg = fopen(File.c_str(), "r"); + if (gpg == NULL) + return _error->Errno("RunGPGV", _("Could not open file %s"), File.c_str()); + char const * const test = fgets(buffer, sizeof(buffer), gpg); + fclose(gpg); + if (test == NULL || strcmp(buffer, SIGMSG) != 0) + return _error->Error(_("File %s doesn't start with a clearsigned message"), File.c_str()); + #undef SIGMSG + } + + + string const gpgvpath = _config->Find("Dir::Bin::gpg", "/usr/bin/gpgv"); + // FIXME: remove support for deprecated APT::GPGV setting + string const trustedFile = _config->Find("APT::GPGV::TrustedKeyring", _config->FindFile("Dir::Etc::Trusted")); + string const trustedPath = _config->FindDir("Dir::Etc::TrustedParts"); + + bool const Debug = _config->FindB("Debug::Acquire::gpgv", false); + + if (Debug == true) + { + std::clog << "gpgv path: " << gpgvpath << std::endl; + std::clog << "Keyring file: " << trustedFile << std::endl; + std::clog << "Keyring path: " << trustedPath << std::endl; + } + + std::vector keyrings; + if (DirectoryExists(trustedPath)) + keyrings = GetListOfFilesInDir(trustedPath, "gpg", false, true); + if (RealFileExists(trustedFile) == true) + keyrings.push_back(trustedFile); + + std::vector Args; + Args.reserve(30); + + if (keyrings.empty() == true) + { + // TRANSLATOR: %s is the trusted keyring parts directory + return _error->Error(_("No keyring installed in %s."), + _config->FindDir("Dir::Etc::TrustedParts").c_str()); + } + + Args.push_back(gpgvpath.c_str()); + Args.push_back("--ignore-time-conflict"); + + if (statusfd != -1) + { + Args.push_back("--status-fd"); + char fd[10]; + snprintf(fd, sizeof(fd), "%i", statusfd); + Args.push_back(fd); + } + + for (vector::const_iterator K = keyrings.begin(); + K != keyrings.end(); ++K) + { + Args.push_back("--keyring"); + Args.push_back(K->c_str()); + } + + Configuration::Item const *Opts; + Opts = _config->Tree("Acquire::gpgv::Options"); + if (Opts != 0) + { + Opts = Opts->Child; + for (; Opts != 0; Opts = Opts->Next) + { + if (Opts->Value.empty() == true) + continue; + Args.push_back(Opts->Value.c_str()); + } + } + + Args.push_back(FileGPG.c_str()); + if (FileGPG != File) + Args.push_back(File.c_str()); + Args.push_back(NULL); + + if (Debug == true) + { + std::clog << "Preparing to exec: " << gpgvpath; + for (std::vector::const_iterator a = Args.begin(); *a != NULL; ++a) + std::clog << " " << *a; + std::clog << std::endl; + } + + if (statusfd != -1) + { + int const nullfd = open("/dev/null", O_RDONLY); + close(fd[0]); + // Redirect output to /dev/null; we read from the status fd + dup2(nullfd, STDOUT_FILENO); + dup2(nullfd, STDERR_FILENO); + // Redirect the pipe to the status fd (3) + dup2(fd[1], statusfd); + + putenv((char *)"LANG="); + putenv((char *)"LC_ALL="); + putenv((char *)"LC_MESSAGES="); + } + + execvp(gpgvpath.c_str(), (char **) &Args[0]); + return true; +} + /*}}}*/ diff --git a/apt-pkg/contrib/gpgv.h b/apt-pkg/contrib/gpgv.h new file mode 100644 index 000000000..c15166c94 --- /dev/null +++ b/apt-pkg/contrib/gpgv.h @@ -0,0 +1,24 @@ +// -*- mode: cpp; mode: fold -*- +// Description /*{{{*/ +/* ###################################################################### + + Helpers to deal with gpgv better and more easily + + ##################################################################### */ + /*}}}*/ +#ifndef CONTRIB_GPGV_H +#define CONTRIB_GPGV_H + +#include + +/** \brief generates and run the command to verify a file with gpgv */ +bool ExecGPGV(std::string const &File, std::string const &FileOut, + int const &statusfd, int fd[2]); + +inline bool ExecGPGV(std::string const &File, std::string const &FileOut, + int const &statusfd = -1) { + int fd[2]; + return ExecGPGV(File, FileOut, statusfd, fd); +} + +#endif diff --git a/apt-pkg/indexcopy.cc b/apt-pkg/indexcopy.cc index aa1f01a4a..f53989bdb 100644 --- a/apt-pkg/indexcopy.cc +++ b/apt-pkg/indexcopy.cc @@ -593,9 +593,9 @@ bool SigVerify::CopyAndVerify(string CDROM,string Name,vector &SigList, if(pid == 0) { if (useInRelease == true) - RunGPGV(inrelease, inrelease); + ExecGPGV(inrelease, inrelease); else - RunGPGV(release, releasegpg); + ExecGPGV(release, releasegpg); } if(!ExecWait(pid, "gpgv")) { @@ -639,124 +639,6 @@ bool SigVerify::CopyAndVerify(string CDROM,string Name,vector &SigList, } } - return true; -} - /*}}}*/ -// SigVerify::RunGPGV - returns the command needed for verify /*{{{*/ -// --------------------------------------------------------------------- -/* Generating the commandline for calling gpgv is somehow complicated as - we need to add multiple keyrings and user supplied options. Also, as - the cdrom code currently can not use the gpgv method we have two places - these need to be done - so the place for this method is wrong but better - than code duplication… */ -bool SigVerify::RunGPGV(std::string const &File, std::string const &FileGPG, - int const &statusfd, int fd[2]) -{ - if (File == FileGPG) - { - #define SIGMSG "-----BEGIN PGP SIGNED MESSAGE-----\n" - char buffer[sizeof(SIGMSG)]; - FILE* gpg = fopen(File.c_str(), "r"); - if (gpg == NULL) - return _error->Errno("RunGPGV", _("Could not open file %s"), File.c_str()); - char const * const test = fgets(buffer, sizeof(buffer), gpg); - fclose(gpg); - if (test == NULL || strcmp(buffer, SIGMSG) != 0) - return _error->Error(_("File %s doesn't start with a clearsigned message"), File.c_str()); - #undef SIGMSG - } - - - string const gpgvpath = _config->Find("Dir::Bin::gpg", "/usr/bin/gpgv"); - // FIXME: remove support for deprecated APT::GPGV setting - string const trustedFile = _config->Find("APT::GPGV::TrustedKeyring", _config->FindFile("Dir::Etc::Trusted")); - string const trustedPath = _config->FindDir("Dir::Etc::TrustedParts"); - - bool const Debug = _config->FindB("Debug::Acquire::gpgv", false); - - if (Debug == true) - { - std::clog << "gpgv path: " << gpgvpath << std::endl; - std::clog << "Keyring file: " << trustedFile << std::endl; - std::clog << "Keyring path: " << trustedPath << std::endl; - } - - std::vector keyrings; - if (DirectoryExists(trustedPath)) - keyrings = GetListOfFilesInDir(trustedPath, "gpg", false, true); - if (RealFileExists(trustedFile) == true) - keyrings.push_back(trustedFile); - - std::vector Args; - Args.reserve(30); - - if (keyrings.empty() == true) - { - // TRANSLATOR: %s is the trusted keyring parts directory - return _error->Error(_("No keyring installed in %s."), - _config->FindDir("Dir::Etc::TrustedParts").c_str()); - } - - Args.push_back(gpgvpath.c_str()); - Args.push_back("--ignore-time-conflict"); - - if (statusfd != -1) - { - Args.push_back("--status-fd"); - char fd[10]; - snprintf(fd, sizeof(fd), "%i", statusfd); - Args.push_back(fd); - } - - for (vector::const_iterator K = keyrings.begin(); - K != keyrings.end(); ++K) - { - Args.push_back("--keyring"); - Args.push_back(K->c_str()); - } - - Configuration::Item const *Opts; - Opts = _config->Tree("Acquire::gpgv::Options"); - if (Opts != 0) - { - Opts = Opts->Child; - for (; Opts != 0; Opts = Opts->Next) - { - if (Opts->Value.empty() == true) - continue; - Args.push_back(Opts->Value.c_str()); - } - } - - Args.push_back(FileGPG.c_str()); - if (FileGPG != File) - Args.push_back(File.c_str()); - Args.push_back(NULL); - - if (Debug == true) - { - std::clog << "Preparing to exec: " << gpgvpath; - for (std::vector::const_iterator a = Args.begin(); *a != NULL; ++a) - std::clog << " " << *a; - std::clog << std::endl; - } - - if (statusfd != -1) - { - int const nullfd = open("/dev/null", O_RDONLY); - close(fd[0]); - // Redirect output to /dev/null; we read from the status fd - dup2(nullfd, STDOUT_FILENO); - dup2(nullfd, STDERR_FILENO); - // Redirect the pipe to the status fd (3) - dup2(fd[1], statusfd); - - putenv((char *)"LANG="); - putenv((char *)"LC_ALL="); - putenv((char *)"LC_MESSAGES="); - } - - execvp(gpgvpath.c_str(), (char **) &Args[0]); return true; } /*}}}*/ diff --git a/apt-pkg/indexcopy.h b/apt-pkg/indexcopy.h index e3de1afd9..49e724f2f 100644 --- a/apt-pkg/indexcopy.h +++ b/apt-pkg/indexcopy.h @@ -14,6 +14,9 @@ #include #include +#include +#include + #ifndef APT_8_CLEANER_HEADERS using std::string; using std::vector; @@ -96,13 +99,13 @@ class SigVerify /*{{{*/ bool CopyAndVerify(std::string CDROM,std::string Name,std::vector &SigList, std::vector PkgList,std::vector SrcList); - /** \brief generates and run the command to verify a file with gpgv */ - static bool RunGPGV(std::string const &File, std::string const &FileOut, - int const &statusfd, int fd[2]); - inline static bool RunGPGV(std::string const &File, std::string const &FileOut, + __deprecated static bool RunGPGV(std::string const &File, std::string const &FileOut, + int const &statusfd, int fd[2]) { + return ExecGPGV(File, FileOut, statusfd, fd); + }; + __deprecated static bool RunGPGV(std::string const &File, std::string const &FileOut, int const &statusfd = -1) { - int fd[2]; - return RunGPGV(File, FileOut, statusfd, fd); + return ExecGPGV(File, FileOut, statusfd); }; }; /*}}}*/ diff --git a/apt-pkg/makefile b/apt-pkg/makefile index 27d7ead24..59729faf5 100644 --- a/apt-pkg/makefile +++ b/apt-pkg/makefile @@ -27,15 +27,13 @@ APT_DOMAIN:=libapt-pkg$(LIBAPTPKG_MAJOR) SOURCE = contrib/mmap.cc contrib/error.cc contrib/strutl.cc \ contrib/configuration.cc contrib/progress.cc contrib/cmndline.cc \ contrib/hashsum.cc contrib/md5.cc contrib/sha1.cc \ - contrib/sha2_internal.cc\ - contrib/hashes.cc \ + contrib/sha2_internal.cc contrib/hashes.cc \ contrib/cdromutl.cc contrib/crc-16.cc contrib/netrc.cc \ - contrib/fileutl.cc -HEADERS = mmap.h error.h configuration.h fileutl.h cmndline.h netrc.h\ - md5.h crc-16.h cdromutl.h strutl.h sptr.h sha1.h sha2.h sha256.h\ - sha2_internal.h \ - hashes.h hashsum_template.h\ - macros.h weakptr.h + contrib/fileutl.cc contrib/gpgv.cc +HEADERS = mmap.h error.h configuration.h fileutl.h cmndline.h netrc.h \ + md5.h crc-16.h cdromutl.h strutl.h sptr.h sha1.h sha2.h sha256.h \ + sha2_internal.h hashes.h hashsum_template.h \ + macros.h weakptr.h gpgv.h # Source code for the core main library SOURCE+= pkgcache.cc version.cc depcache.cc \ diff --git a/debian/changelog b/debian/changelog index 9ed9b4d61..ac630ad7e 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +apt (0.9.7.9) UNRELEASED; urgency=low + + [ David Kalnischkies ] + * apt-pkg/indexcopy.cc: + - rename RunGPGV to ExecGPGV and move it to apt-pkg/contrib/gpgv.cc + + -- David Kalnischkies Fri, 15 Mar 2013 14:15:43 +0100 + apt (0.9.7.8) unstable; urgency=criticial * SECURITY UPDATE: InRelease verification bypass diff --git a/methods/gpgv.cc b/methods/gpgv.cc index 25ba0d063..98381b845 100644 --- a/methods/gpgv.cc +++ b/methods/gpgv.cc @@ -6,6 +6,7 @@ #include #include #include +#include #include #include @@ -72,7 +73,7 @@ string GPGVMethod::VerifyGetSigners(const char *file, const char *outfile, else if (pid == 0) { _error->PushToStack(); - bool const success = SigVerify::RunGPGV(outfile, file, 3, fd); + bool const success = ExecGPGV(outfile, file, 3, fd); if (success == false) { string errmsg; -- cgit v1.2.3 From 99ed26d32226f0dffe5a37fb78c5588f9d9ecfd5 Mon Sep 17 00:00:00 2001 From: David Kalnischkies Date: Fri, 15 Mar 2013 14:29:46 +0100 Subject: * apt-pkg/contrib/gpgv.cc: - ExecGPGV is a method which should never return, so mark it as such and fix the inconsistency of returning in error cases --- apt-pkg/contrib/gpgv.cc | 22 ++++++++++++++++------ apt-pkg/contrib/gpgv.h | 26 ++++++++++++++++++++------ apt-pkg/indexcopy.h | 6 ++++-- debian/changelog | 3 +++ methods/gpgv.cc | 14 +------------- 5 files changed, 44 insertions(+), 27 deletions(-) diff --git a/apt-pkg/contrib/gpgv.cc b/apt-pkg/contrib/gpgv.cc index 9b008dd4f..9760bd21f 100644 --- a/apt-pkg/contrib/gpgv.cc +++ b/apt-pkg/contrib/gpgv.cc @@ -25,20 +25,28 @@ using namespace std; // --------------------------------------------------------------------- /* Generating the commandline for calling gpgv is somehow complicated as we need to add multiple keyrings and user supplied options. */ -bool ExecGPGV(std::string const &File, std::string const &FileGPG, +void ExecGPGV(std::string const &File, std::string const &FileGPG, int const &statusfd, int fd[2]) { + #define EINTERNAL 111 + if (File == FileGPG) { #define SIGMSG "-----BEGIN PGP SIGNED MESSAGE-----\n" char buffer[sizeof(SIGMSG)]; FILE* gpg = fopen(File.c_str(), "r"); if (gpg == NULL) - return _error->Errno("RunGPGV", _("Could not open file %s"), File.c_str()); + { + ioprintf(std::cerr, _("Could not open file %s"), File.c_str()); + exit(EINTERNAL); + } char const * const test = fgets(buffer, sizeof(buffer), gpg); fclose(gpg); if (test == NULL || strcmp(buffer, SIGMSG) != 0) - return _error->Error(_("File %s doesn't start with a clearsigned message"), File.c_str()); + { + ioprintf(std::cerr, _("File %s doesn't start with a clearsigned message"), File.c_str()); + exit(EINTERNAL); + } #undef SIGMSG } @@ -69,8 +77,9 @@ bool ExecGPGV(std::string const &File, std::string const &FileGPG, if (keyrings.empty() == true) { // TRANSLATOR: %s is the trusted keyring parts directory - return _error->Error(_("No keyring installed in %s."), - _config->FindDir("Dir::Etc::TrustedParts").c_str()); + ioprintf(std::cerr, _("No keyring installed in %s."), + _config->FindDir("Dir::Etc::TrustedParts").c_str()); + exit(EINTERNAL); } Args.push_back(gpgvpath.c_str()); @@ -133,6 +142,7 @@ bool ExecGPGV(std::string const &File, std::string const &FileGPG, } execvp(gpgvpath.c_str(), (char **) &Args[0]); - return true; + ioprintf(std::cerr, "Couldn't execute %s to check %s", Args[0], File.c_str()); + exit(EINTERNAL); } /*}}}*/ diff --git a/apt-pkg/contrib/gpgv.h b/apt-pkg/contrib/gpgv.h index c15166c94..8aeea2fb3 100644 --- a/apt-pkg/contrib/gpgv.h +++ b/apt-pkg/contrib/gpgv.h @@ -11,14 +11,28 @@ #include -/** \brief generates and run the command to verify a file with gpgv */ -bool ExecGPGV(std::string const &File, std::string const &FileOut, - int const &statusfd, int fd[2]); +#if __GNUC__ >= 4 + #define APT_noreturn __attribute__ ((noreturn)) +#else + #define APT_noreturn /* no support */ +#endif -inline bool ExecGPGV(std::string const &File, std::string const &FileOut, +/** \brief generates and run the command to verify a file with gpgv + * + * If File and FileSig specify the same file it is assumed that we + * deal with a clear-signed message. + * + * @param File is the message (unsigned or clear-signed) + * @param FileSig is the signature (detached or clear-signed) + */ +void ExecGPGV(std::string const &File, std::string const &FileSig, + int const &statusfd, int fd[2]) APT_noreturn; +inline void ExecGPGV(std::string const &File, std::string const &FileSig, int const &statusfd = -1) { int fd[2]; - return ExecGPGV(File, FileOut, statusfd, fd); -} + ExecGPGV(File, FileSig, statusfd, fd); +}; + +#undef APT_noreturn #endif diff --git a/apt-pkg/indexcopy.h b/apt-pkg/indexcopy.h index 49e724f2f..aa221158e 100644 --- a/apt-pkg/indexcopy.h +++ b/apt-pkg/indexcopy.h @@ -101,11 +101,13 @@ class SigVerify /*{{{*/ __deprecated static bool RunGPGV(std::string const &File, std::string const &FileOut, int const &statusfd, int fd[2]) { - return ExecGPGV(File, FileOut, statusfd, fd); + ExecGPGV(File, FileOut, statusfd, fd); + return false; }; __deprecated static bool RunGPGV(std::string const &File, std::string const &FileOut, int const &statusfd = -1) { - return ExecGPGV(File, FileOut, statusfd); + ExecGPGV(File, FileOut, statusfd); + return false; }; }; /*}}}*/ diff --git a/debian/changelog b/debian/changelog index ac630ad7e..bd4116406 100644 --- a/debian/changelog +++ b/debian/changelog @@ -3,6 +3,9 @@ apt (0.9.7.9) UNRELEASED; urgency=low [ David Kalnischkies ] * apt-pkg/indexcopy.cc: - rename RunGPGV to ExecGPGV and move it to apt-pkg/contrib/gpgv.cc + * apt-pkg/contrib/gpgv.cc: + - ExecGPGV is a method which should never return, so mark it as such + and fix the inconsistency of returning in error cases -- David Kalnischkies Fri, 15 Mar 2013 14:15:43 +0100 diff --git a/methods/gpgv.cc b/methods/gpgv.cc index 98381b845..3f814b9f0 100644 --- a/methods/gpgv.cc +++ b/methods/gpgv.cc @@ -71,19 +71,7 @@ string GPGVMethod::VerifyGetSigners(const char *file, const char *outfile, if (pid < 0) return string("Couldn't spawn new process") + strerror(errno); else if (pid == 0) - { - _error->PushToStack(); - bool const success = ExecGPGV(outfile, file, 3, fd); - if (success == false) - { - string errmsg; - _error->PopMessage(errmsg); - _error->RevertToStack(); - return errmsg; - } - _error->RevertToStack(); - exit(111); - } + ExecGPGV(outfile, file, 3, fd); close(fd[1]); FILE *pipein = fdopen(fd[0], "r"); -- cgit v1.2.3 From b38bb727530a7e836689ef100b07926522066986 Mon Sep 17 00:00:00 2001 From: David Kalnischkies Date: Fri, 15 Mar 2013 14:49:05 +0100 Subject: don't close stdout/stderr if it is also the statusfd --- apt-pkg/contrib/gpgv.cc | 21 +++++++++++---------- debian/changelog | 1 + 2 files changed, 12 insertions(+), 10 deletions(-) diff --git a/apt-pkg/contrib/gpgv.cc b/apt-pkg/contrib/gpgv.cc index 9760bd21f..94a1f8778 100644 --- a/apt-pkg/contrib/gpgv.cc +++ b/apt-pkg/contrib/gpgv.cc @@ -2,14 +2,13 @@ // Include Files /*{{{*/ #include -#include -#include -#include +#include +#include #include #include #include -#include -#include + +#include #include #include @@ -85,12 +84,12 @@ void ExecGPGV(std::string const &File, std::string const &FileGPG, Args.push_back(gpgvpath.c_str()); Args.push_back("--ignore-time-conflict"); + char statusfdstr[10]; if (statusfd != -1) { Args.push_back("--status-fd"); - char fd[10]; - snprintf(fd, sizeof(fd), "%i", statusfd); - Args.push_back(fd); + snprintf(statusfdstr, sizeof(fd), "%i", statusfd); + Args.push_back(statusfdstr); } for (vector::const_iterator K = keyrings.begin(); @@ -131,8 +130,10 @@ void ExecGPGV(std::string const &File, std::string const &FileGPG, int const nullfd = open("/dev/null", O_RDONLY); close(fd[0]); // Redirect output to /dev/null; we read from the status fd - dup2(nullfd, STDOUT_FILENO); - dup2(nullfd, STDERR_FILENO); + if (statusfd != STDOUT_FILENO) + dup2(nullfd, STDOUT_FILENO); + if (statusfd != STDERR_FILENO) + dup2(nullfd, STDERR_FILENO); // Redirect the pipe to the status fd (3) dup2(fd[1], statusfd); diff --git a/debian/changelog b/debian/changelog index bd4116406..0423cefa6 100644 --- a/debian/changelog +++ b/debian/changelog @@ -6,6 +6,7 @@ apt (0.9.7.9) UNRELEASED; urgency=low * apt-pkg/contrib/gpgv.cc: - ExecGPGV is a method which should never return, so mark it as such and fix the inconsistency of returning in error cases + - don't close stdout/stderr if it is also the statusfd -- David Kalnischkies Fri, 15 Mar 2013 14:15:43 +0100 -- cgit v1.2.3 From 39f38a81b85edf2e1bdc4e92267a63cc6c928734 Mon Sep 17 00:00:00 2001 From: David Kalnischkies Date: Fri, 15 Mar 2013 14:55:43 +0100 Subject: * apt-pkg/acquire-item.cc: - keep the last good InRelease file around just as we do it with Release.gpg in case the new one we download isn't good for us --- apt-pkg/acquire-item.cc | 26 ++++++++++++++++---------- debian/changelog | 3 +++ 2 files changed, 19 insertions(+), 10 deletions(-) diff --git a/apt-pkg/acquire-item.cc b/apt-pkg/acquire-item.cc index a30e98858..39b842dfb 100644 --- a/apt-pkg/acquire-item.cc +++ b/apt-pkg/acquire-item.cc @@ -1503,20 +1503,17 @@ void pkgAcqMetaIndex::Failed(string Message,pkgAcquire::MethodConfig *Cnf) if (AuthPass == true) { // gpgv method failed, if we have a good signature - string LastGoodSigFile = _config->FindDir("Dir::State::lists"); - if (DestFile == SigFile) - LastGoodSigFile.append(URItoFileName(RealURI)); - else - LastGoodSigFile.append("partial/").append(URItoFileName(RealURI)).append(".gpg.reverify"); + string LastGoodSigFile = _config->FindDir("Dir::State::lists").append("partial/").append(URItoFileName(RealURI)); + if (DestFile != SigFile) + LastGoodSigFile.append(".gpg"); + LastGoodSigFile.append(".reverify"); if(FileExists(LastGoodSigFile)) { + string VerifiedSigFile = _config->FindDir("Dir::State::lists") + URItoFileName(RealURI); if (DestFile != SigFile) - { - string VerifiedSigFile = _config->FindDir("Dir::State::lists") + - URItoFileName(RealURI) + ".gpg"; - Rename(LastGoodSigFile,VerifiedSigFile); - } + VerifiedSigFile.append(".gpg"); + Rename(LastGoodSigFile, VerifiedSigFile); Status = StatTransientNetworkError; _error->Warning(_("A error occurred during the signature " "verification. The repository is not updated " @@ -1577,6 +1574,15 @@ pkgAcqMetaClearSig::pkgAcqMetaClearSig(pkgAcquire *Owner, /*{{{*/ MetaSigURI(MetaSigURI), MetaSigURIDesc(MetaSigURIDesc), MetaSigShortDesc(MetaSigShortDesc) { SigFile = DestFile; + + // keep the old InRelease around in case of transistent network errors + string const Final = _config->FindDir("Dir::State::lists") + URItoFileName(RealURI); + struct stat Buf; + if (stat(Final.c_str(),&Buf) == 0) + { + string const LastGoodSig = DestFile + ".reverify"; + Rename(Final,LastGoodSig); + } } /*}}}*/ // pkgAcqMetaClearSig::Custom600Headers - Insert custom request headers /*{{{*/ diff --git a/debian/changelog b/debian/changelog index 0423cefa6..77e8674a0 100644 --- a/debian/changelog +++ b/debian/changelog @@ -7,6 +7,9 @@ apt (0.9.7.9) UNRELEASED; urgency=low - ExecGPGV is a method which should never return, so mark it as such and fix the inconsistency of returning in error cases - don't close stdout/stderr if it is also the statusfd + * apt-pkg/acquire-item.cc: + - keep the last good InRelease file around just as we do it with + Release.gpg in case the new one we download isn't good for us -- David Kalnischkies Fri, 15 Mar 2013 14:15:43 +0100 -- cgit v1.2.3 From 4fb400a66f2436cba6c89cecdc9560c9b1c54337 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Fri, 15 Mar 2013 14:57:27 +0100 Subject: split out a method to strip whitespaces only on the right side --- apt-pkg/contrib/strutl.cc | 8 +++++++- apt-pkg/contrib/strutl.h | 1 + 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/apt-pkg/contrib/strutl.cc b/apt-pkg/contrib/strutl.cc index ca096d736..9726138a0 100644 --- a/apt-pkg/contrib/strutl.cc +++ b/apt-pkg/contrib/strutl.cc @@ -117,7 +117,13 @@ char *_strstrip(char *String) if (*String == 0) return String; - + return _strrstrip(String); +} + /*}}}*/ +// strrstrip - Remove white space from the back of a string /*{{{*/ +// --------------------------------------------------------------------- +char *_strrstrip(char *String) +{ char *End = String + strlen(String) - 1; for (;End != String - 1 && (*End == ' ' || *End == '\t' || *End == '\n' || *End == '\r'); End--); diff --git a/apt-pkg/contrib/strutl.h b/apt-pkg/contrib/strutl.h index 337139d5d..e92f91dc0 100644 --- a/apt-pkg/contrib/strutl.h +++ b/apt-pkg/contrib/strutl.h @@ -35,6 +35,7 @@ using std::ostream; bool UTF8ToCodeset(const char *codeset, const std::string &orig, std::string *dest); char *_strstrip(char *String); +char *_strrstrip(char *String); // right strip only char *_strtabexpand(char *String,size_t Len); bool ParseQuoteWord(const char *&String,std::string &Res); bool ParseCWord(const char *&String,std::string &Res); -- cgit v1.2.3 From 2d3fe9cfadb33556b7563a98bb5a4698888e6c40 Mon Sep 17 00:00:00 2001 From: David Kalnischkies Date: Fri, 15 Mar 2013 18:53:53 +0100 Subject: - if ExecGPGV deals with a clear-signed file it will split this file into data and signatures, pass it to gpgv for verification and recombines it after that in a known-good way without unsigned blocks and whitespaces resulting usually in more or less the same file as before, but later code can be sure about the format * apt-pkg/deb/debmetaindex.cc: - reenable InRelease by default --- apt-pkg/contrib/gpgv.cc | 302 ++++++++++++++++++--- apt-pkg/contrib/gpgv.h | 41 ++- apt-pkg/deb/debmetaindex.cc | 31 ++- debian/changelog | 7 + ...st-ubuntu-bug-784473-InRelease-one-message-only | 14 +- 5 files changed, 337 insertions(+), 58 deletions(-) diff --git a/apt-pkg/contrib/gpgv.cc b/apt-pkg/contrib/gpgv.cc index 94a1f8778..c236a7289 100644 --- a/apt-pkg/contrib/gpgv.cc +++ b/apt-pkg/contrib/gpgv.cc @@ -2,58 +2,54 @@ // Include Files /*{{{*/ #include +#include #include +#include #include +#include #include #include -#include - -#include +#include -#include -#include -#include -#include +#include +#include +#include +#include +#include #include /*}}}*/ +char * GenerateTemporaryFileTemplate(const char *basename) /*{{{*/ +{ + const char *tmpdir = getenv("TMPDIR"); +#ifdef P_tmpdir + if (!tmpdir) + tmpdir = P_tmpdir; +#endif + if (!tmpdir) + tmpdir = "/tmp"; -using namespace std; - -// RunGPGV - returns the command needed for verify /*{{{*/ + std::string out; + strprintf(out, "%s/%s.XXXXXX", tmpdir, basename); + return strdup(out.c_str()); +} + /*}}}*/ +// ExecGPGV - returns the command needed for verify /*{{{*/ // --------------------------------------------------------------------- /* Generating the commandline for calling gpgv is somehow complicated as - we need to add multiple keyrings and user supplied options. */ + we need to add multiple keyrings and user supplied options. + Also, as gpgv has no options to enforce a certain reduced style of + clear-signed files (=the complete content of the file is signed and + the content isn't encoded) we do a divide and conquer approach here +*/ void ExecGPGV(std::string const &File, std::string const &FileGPG, - int const &statusfd, int fd[2]) + int const &statusfd, int fd[2]) { #define EINTERNAL 111 - - if (File == FileGPG) - { - #define SIGMSG "-----BEGIN PGP SIGNED MESSAGE-----\n" - char buffer[sizeof(SIGMSG)]; - FILE* gpg = fopen(File.c_str(), "r"); - if (gpg == NULL) - { - ioprintf(std::cerr, _("Could not open file %s"), File.c_str()); - exit(EINTERNAL); - } - char const * const test = fgets(buffer, sizeof(buffer), gpg); - fclose(gpg); - if (test == NULL || strcmp(buffer, SIGMSG) != 0) - { - ioprintf(std::cerr, _("File %s doesn't start with a clearsigned message"), File.c_str()); - exit(EINTERNAL); - } - #undef SIGMSG - } - - - string const gpgvpath = _config->Find("Dir::Bin::gpg", "/usr/bin/gpgv"); + std::string const gpgvpath = _config->Find("Dir::Bin::gpg", "/usr/bin/gpgv"); // FIXME: remove support for deprecated APT::GPGV setting - string const trustedFile = _config->Find("APT::GPGV::TrustedKeyring", _config->FindFile("Dir::Etc::Trusted")); - string const trustedPath = _config->FindDir("Dir::Etc::TrustedParts"); + std::string const trustedFile = _config->Find("APT::GPGV::TrustedKeyring", _config->FindFile("Dir::Etc::Trusted")); + std::string const trustedPath = _config->FindDir("Dir::Etc::TrustedParts"); bool const Debug = _config->FindB("Debug::Acquire::gpgv", false); @@ -64,7 +60,7 @@ void ExecGPGV(std::string const &File, std::string const &FileGPG, std::clog << "Keyring path: " << trustedPath << std::endl; } - std::vector keyrings; + std::vector keyrings; if (DirectoryExists(trustedPath)) keyrings = GetListOfFilesInDir(trustedPath, "gpg", false, true); if (RealFileExists(trustedFile) == true) @@ -88,11 +84,11 @@ void ExecGPGV(std::string const &File, std::string const &FileGPG, if (statusfd != -1) { Args.push_back("--status-fd"); - snprintf(statusfdstr, sizeof(fd), "%i", statusfd); + snprintf(statusfdstr, sizeof(statusfdstr), "%i", statusfd); Args.push_back(statusfdstr); } - for (vector::const_iterator K = keyrings.begin(); + for (std::vector::const_iterator K = keyrings.begin(); K != keyrings.end(); ++K) { Args.push_back("--keyring"); @@ -112,9 +108,49 @@ void ExecGPGV(std::string const &File, std::string const &FileGPG, } } - Args.push_back(FileGPG.c_str()); + int sigFd = -1; + int dataFd = -1; + std::vector dataHeader; + char * sig = NULL; + char * data = NULL; + + // file with detached signature if (FileGPG != File) + { + Args.push_back(FileGPG.c_str()); Args.push_back(File.c_str()); + } + else // clear-signed file + { + sig = GenerateTemporaryFileTemplate("apt.sig"); + data = GenerateTemporaryFileTemplate("apt.data"); + if (sig == NULL || data == NULL) + { + ioprintf(std::cerr, "Couldn't create tempfiles for splitting up %s", File.c_str()); + exit(EINTERNAL); + } + + sigFd = mkstemp(sig); + dataFd = mkstemp(data); + int const duppedSigFd = dup(sigFd); + int const duppedDataFd = dup(dataFd); + + if (dataFd == -1 || sigFd == -1 || duppedDataFd == -1 || duppedSigFd == -1 || + SplitClearSignedFile(File, duppedDataFd, &dataHeader, duppedSigFd) == false) + { + if (dataFd != -1) + unlink(sig); + if (sigFd != -1) + unlink(data); + ioprintf(std::cerr, "Splitting up %s into data and signature failed", File.c_str()); + exit(EINTERNAL); + } + lseek(dataFd, 0, SEEK_SET); + lseek(sigFd, 0, SEEK_SET); + Args.push_back(sig); + Args.push_back(data); + } + Args.push_back(NULL); if (Debug == true) @@ -142,8 +178,186 @@ void ExecGPGV(std::string const &File, std::string const &FileGPG, putenv((char *)"LC_MESSAGES="); } - execvp(gpgvpath.c_str(), (char **) &Args[0]); - ioprintf(std::cerr, "Couldn't execute %s to check %s", Args[0], File.c_str()); - exit(EINTERNAL); + if (FileGPG != File) + { + execvp(gpgvpath.c_str(), (char **) &Args[0]); + ioprintf(std::cerr, "Couldn't execute %s to check %s", Args[0], File.c_str()); + exit(EINTERNAL); + } + else + { +//#define UNLINK_EXIT(X) exit(X) +#define UNLINK_EXIT(X) unlink(sig);unlink(data);exit(X) + + // for clear-signed files we have created tempfiles we have to clean up + // and we do an additional check, so fork yet another time … + pid_t pid = ExecFork(); + if(pid < 0) { + ioprintf(std::cerr, "Fork failed for %s to check %s", Args[0], File.c_str()); + UNLINK_EXIT(EINTERNAL); + } + if(pid == 0) + { + if (statusfd != -1) + dup2(fd[1], statusfd); + execvp(gpgvpath.c_str(), (char **) &Args[0]); + ioprintf(std::cerr, "Couldn't execute %s to check %s", Args[0], File.c_str()); + UNLINK_EXIT(EINTERNAL); + } + + // Wait and collect the error code - taken from WaitPid as we need the exact Status + int Status; + while (waitpid(pid,&Status,0) != pid) + { + if (errno == EINTR) + continue; + ioprintf(std::cerr, _("Waited for %s but it wasn't there"), "gpgv"); + UNLINK_EXIT(EINTERNAL); + } + + // check if it exit'ed normally … + if (WIFEXITED(Status) == false) + { + ioprintf(std::cerr, _("Sub-process %s exited unexpectedly"), "gpgv"); + UNLINK_EXIT(EINTERNAL); + } + + // … and with a good exit code + if (WEXITSTATUS(Status) != 0) + { + ioprintf(std::cerr, _("Sub-process %s returned an error code (%u)"), "gpgv", WEXITSTATUS(Status)); + UNLINK_EXIT(WEXITSTATUS(Status)); + } + + /* looks like its fine. Our caller will check the status fd, + but we construct a good-known clear-signed file without garbage + and other non-sense. In a perfect world, we get the same file, + but empty lines, trailing whitespaces and stuff makes it inperfect … */ + if (RecombineToClearSignedFile(File, dataFd, dataHeader, sigFd) == false) + { + _error->DumpErrors(std::cerr); + UNLINK_EXIT(EINTERNAL); + } + + // everything fine, we have a clean file now! + UNLINK_EXIT(0); +#undef UNLINK_EXIT + } + exit(EINTERNAL); // unreachable safe-guard +} + /*}}}*/ +// RecombineToClearSignedFile - combine data/signature to message /*{{{*/ +bool RecombineToClearSignedFile(std::string const &OutFile, int const ContentFile, + std::vector const &ContentHeader, int const SignatureFile) +{ + FILE *clean_file = fopen(OutFile.c_str(), "w"); + fputs("-----BEGIN PGP SIGNED MESSAGE-----\n", clean_file); + for (std::vector::const_iterator h = ContentHeader.begin(); h != ContentHeader.end(); ++h) + fprintf(clean_file, "%s\n", h->c_str()); + fputs("\n", clean_file); + + FILE *data_file = fdopen(ContentFile, "r"); + FILE *sig_file = fdopen(SignatureFile, "r"); + if (data_file == NULL || sig_file == NULL) + return _error->Error("Couldn't open splitfiles to recombine them into %s", OutFile.c_str()); + char *buf = NULL; + size_t buf_size = 0; + while (getline(&buf, &buf_size, data_file) != -1) + fputs(buf, clean_file); + fclose(data_file); + fputs("\n", clean_file); + while (getline(&buf, &buf_size, sig_file) != -1) + fputs(buf, clean_file); + fclose(sig_file); + fclose(clean_file); + return true; } /*}}}*/ +// SplitClearSignedFile - split message into data/signature /*{{{*/ +bool SplitClearSignedFile(std::string const &InFile, int const ContentFile, + std::vector * const ContentHeader, int const SignatureFile) +{ + FILE *in = fopen(InFile.c_str(), "r"); + if (in == NULL) + return _error->Errno("fopen", "can not open %s", InFile.c_str()); + + FILE *out_content = NULL; + FILE *out_signature = NULL; + if (ContentFile != -1) + { + out_content = fdopen(ContentFile, "w"); + if (out_content == NULL) + return _error->Errno("fdopen", "Failed to open file to write content to from %s", InFile.c_str()); + } + if (SignatureFile != -1) + { + out_signature = fdopen(SignatureFile, "w"); + if (out_signature == NULL) + return _error->Errno("fdopen", "Failed to open file to write signature to from %s", InFile.c_str()); + } + + bool found_message_start = false; + bool found_message_end = false; + bool skip_until_empty_line = false; + bool found_signature = false; + bool first_line = true; + + char *buf = NULL; + size_t buf_size = 0; + while (getline(&buf, &buf_size, in) != -1) + { + _strrstrip(buf); + if (found_message_start == false) + { + if (strcmp(buf, "-----BEGIN PGP SIGNED MESSAGE-----") == 0) + { + found_message_start = true; + skip_until_empty_line = true; + } + } + else if (skip_until_empty_line == true) + { + if (strlen(buf) == 0) + skip_until_empty_line = false; + // save "Hash" Armor Headers, others aren't allowed + else if (ContentHeader != NULL && strncmp(buf, "Hash: ", strlen("Hash: ")) == 0) + ContentHeader->push_back(buf); + } + else if (found_signature == false) + { + if (strcmp(buf, "-----BEGIN PGP SIGNATURE-----") == 0) + { + found_signature = true; + found_message_end = true; + if (out_signature != NULL) + fprintf(out_signature, "%s\n", buf); + } + else if (found_message_end == false) + { + // we are in the message block + if(first_line == true) // first line does not need a newline + { + if (out_content != NULL) + fprintf(out_content, "%s", buf); + first_line = false; + } + else if (out_content != NULL) + fprintf(out_content, "\n%s", buf); + } + } + else if (found_signature == true) + { + if (out_signature != NULL) + fprintf(out_signature, "%s\n", buf); + if (strcmp(buf, "-----END PGP SIGNATURE-----") == 0) + found_signature = false; // look for other signatures + } + // all the rest is whitespace, unsigned garbage or additional message blocks we ignore + } + if (out_content != NULL) + fclose(out_content); + if (out_signature != NULL) + fclose(out_signature); + + return true; +} diff --git a/apt-pkg/contrib/gpgv.h b/apt-pkg/contrib/gpgv.h index 8aeea2fb3..8e04855e4 100644 --- a/apt-pkg/contrib/gpgv.h +++ b/apt-pkg/contrib/gpgv.h @@ -10,6 +10,7 @@ #define CONTRIB_GPGV_H #include +#include #if __GNUC__ >= 4 #define APT_noreturn __attribute__ ((noreturn)) @@ -20,7 +21,9 @@ /** \brief generates and run the command to verify a file with gpgv * * If File and FileSig specify the same file it is assumed that we - * deal with a clear-signed message. + * deal with a clear-signed message. In that case the file will be + * rewritten to be in a good-known format without uneeded whitespaces + * and additional messages (unsigned or signed). * * @param File is the message (unsigned or clear-signed) * @param FileSig is the signature (detached or clear-signed) @@ -35,4 +38,40 @@ inline void ExecGPGV(std::string const &File, std::string const &FileSig, #undef APT_noreturn +/** \brief Split an inline signature into message and signature + * + * Takes a clear-signed message and puts the first signed message + * in the content file and all signatures following it into the + * second. Unsigned messages, additional messages as well as + * whitespaces are discarded. The resulting files are suitable to + * be checked with gpgv. + * + * If one or all Fds are -1 they will not be used and the content + * which would have been written to them is discarded. + * + * The code doesn't support dash-encoded lines as these are not + * expected to be present in files we have to deal with. + * + * @param InFile is the clear-signed file + * @param ContentFile is the Fd the message will be written to + * @param ContentHeader is a list of all required Amored Headers for the message + * @param SignatureFile is the Fd all signatures will be written to + */ +bool SplitClearSignedFile(std::string const &InFile, int const ContentFile, + std::vector * const ContentHeader, int const SignatureFile); + +/** \brief recombines message and signature to an inline signature + * + * Reverses the splitting down by #SplitClearSignedFile by writing + * a well-formed clear-signed message without unsigned messages, + * additional signed messages or just trailing whitespaces + * + * @param OutFile will be clear-signed file + * @param ContentFile is the Fd the message will be read from + * @param ContentHeader is a list of all required Amored Headers for the message + * @param SignatureFile is the Fd all signatures will be read from + */ +bool RecombineToClearSignedFile(std::string const &OutFile, int const ContentFile, + std::vector const &ContentHeader, int const SignatureFile); + #endif diff --git a/apt-pkg/deb/debmetaindex.cc b/apt-pkg/deb/debmetaindex.cc index 6c191fd95..7a88d71e3 100644 --- a/apt-pkg/deb/debmetaindex.cc +++ b/apt-pkg/deb/debmetaindex.cc @@ -229,6 +229,8 @@ vector * debReleaseIndex::ComputeIndexTargets() const { /*}}}*/ bool debReleaseIndex::GetIndexes(pkgAcquire *Owner, bool const &GetAll) const { + bool const tryInRelease = _config->FindB("Acquire::TryInRelease", true); + // special case for --print-uris if (GetAll) { vector *targets = ComputeIndexTargets(); @@ -239,18 +241,27 @@ bool debReleaseIndex::GetIndexes(pkgAcquire *Owner, bool const &GetAll) const // this is normally created in pkgAcqMetaSig, but if we run // in --print-uris mode, we add it here - new pkgAcqMetaIndex(Owner, MetaIndexURI("Release"), - MetaIndexInfo("Release"), "Release", - MetaIndexURI("Release.gpg"), - ComputeIndexTargets(), - new indexRecords (Dist)); + if (tryInRelease == false) + new pkgAcqMetaIndex(Owner, MetaIndexURI("Release"), + MetaIndexInfo("Release"), "Release", + MetaIndexURI("Release.gpg"), + ComputeIndexTargets(), + new indexRecords (Dist)); } - new pkgAcqMetaSig(Owner, MetaIndexURI("Release.gpg"), - MetaIndexInfo("Release.gpg"), "Release.gpg", - MetaIndexURI("Release"), MetaIndexInfo("Release"), "Release", - ComputeIndexTargets(), - new indexRecords (Dist)); + if (tryInRelease == true) + new pkgAcqMetaClearSig(Owner, MetaIndexURI("InRelease"), + MetaIndexInfo("InRelease"), "InRelease", + MetaIndexURI("Release"), MetaIndexInfo("Release"), "Release", + MetaIndexURI("Release.gpg"), MetaIndexInfo("Release.gpg"), "Release.gpg", + ComputeIndexTargets(), + new indexRecords (Dist)); + else + new pkgAcqMetaSig(Owner, MetaIndexURI("Release.gpg"), + MetaIndexInfo("Release.gpg"), "Release.gpg", + MetaIndexURI("Release"), MetaIndexInfo("Release"), "Release", + ComputeIndexTargets(), + new indexRecords (Dist)); return true; } diff --git a/debian/changelog b/debian/changelog index 77e8674a0..7ebbb1cb4 100644 --- a/debian/changelog +++ b/debian/changelog @@ -7,9 +7,16 @@ apt (0.9.7.9) UNRELEASED; urgency=low - ExecGPGV is a method which should never return, so mark it as such and fix the inconsistency of returning in error cases - don't close stdout/stderr if it is also the statusfd + - if ExecGPGV deals with a clear-signed file it will split this file + into data and signatures, pass it to gpgv for verification and + recombines it after that in a known-good way without unsigned blocks + and whitespaces resulting usually in more or less the same file as + before, but later code can be sure about the format * apt-pkg/acquire-item.cc: - keep the last good InRelease file around just as we do it with Release.gpg in case the new one we download isn't good for us + * apt-pkg/deb/debmetaindex.cc: + - reenable InRelease by default -- David Kalnischkies Fri, 15 Mar 2013 14:15:43 +0100 diff --git a/test/integration/test-ubuntu-bug-784473-InRelease-one-message-only b/test/integration/test-ubuntu-bug-784473-InRelease-one-message-only index d97011914..fad5488fb 100755 --- a/test/integration/test-ubuntu-bug-784473-InRelease-one-message-only +++ b/test/integration/test-ubuntu-bug-784473-InRelease-one-message-only @@ -26,6 +26,14 @@ MD5Sum: 2182897e0a2a0c09e760beaae117a015 2023 Packages.diff/Index 1b895931853981ad8204d2439821b999 4144 Packages.gz'; echo; cat ${RELEASE}.old;) > ${RELEASE} done -aptget update -qq > /dev/null 2> starts-with-unsigned.msg -sed -i 's#File .*InRelease#File InRelease#' starts-with-unsigned.msg -testfileequal starts-with-unsigned.msg "W: GPG error: file: unstable InRelease: File InRelease doesn't start with a clearsigned message" + +msgtest 'The unsigned garbage before signed block is' 'ignored' +aptget update -qq > /dev/null 2>&1 && msgpass || msgfail + +ROOTDIR="$(readlink -f .)" +testequal "Package files: + 100 ${ROOTDIR}/rootdir/var/lib/dpkg/status + release a=now + 500 file:${ROOTDIR}/aptarchive/ unstable/main i386 Packages + release a=unstable,n=unstable,c=main +Pinned packages:" aptcache policy -- cgit v1.2.3 From ad000f6b68f9216412a6a70bcfe6cb11fb0c2fe6 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Sat, 16 Mar 2013 10:08:28 +0100 Subject: add testcase and update changelog --- debian/changelog | 5 ++ test/integration/test-inrelease-verification-fail | 80 +++++++++++++++++++++++ 2 files changed, 85 insertions(+) create mode 100755 test/integration/test-inrelease-verification-fail diff --git a/debian/changelog b/debian/changelog index 7ebbb1cb4..3ef652c56 100644 --- a/debian/changelog +++ b/debian/changelog @@ -17,6 +17,11 @@ apt (0.9.7.9) UNRELEASED; urgency=low Release.gpg in case the new one we download isn't good for us * apt-pkg/deb/debmetaindex.cc: - reenable InRelease by default + + [ Michael Vogt ] + * add regression test for CVE-2013-1051 + * implement GPGSplit() based on the idea from Ansgar Burchardt + (many thanks!) -- David Kalnischkies Fri, 15 Mar 2013 14:15:43 +0100 diff --git a/test/integration/test-inrelease-verification-fail b/test/integration/test-inrelease-verification-fail new file mode 100755 index 000000000..5cbf1ab4d --- /dev/null +++ b/test/integration/test-inrelease-verification-fail @@ -0,0 +1,80 @@ +#!/bin/sh + +set -e + +TESTDIR=$(readlink -f $(dirname $0)) +. $TESTDIR/framework + +setupenvironment +configarchitecture "i386" + +buildsimplenativepackage 'good-pkg' 'all' '1.0' 'stable' + +setupaptarchive + +# now exchange to the Packages file, note that this could be +# done via MITM too +cat > aptarchive/dists/stable/main/binary-i386/Packages < aptarchive/dists/stable/main/binary-i386/Packages.$extension +done + +# add a space into the BEGIN PGP SIGNATURE PART/END PGP SIGNATURE part +# to trick apt - this is still legal to gpg(v) +sed -i '/^-----BEGIN PGP SIGNATURE-----/,/^-----END PGP SIGNATURE-----/ s/^$/ /g' aptarchive/dists/stable/InRelease + +# and append our own hashes for the modified Packages files +cat >> aptarchive/dists/stable/InRelease <> aptarchive/dists/stable/InRelease + # Sources + s="$(sha512sum aptarchive/dists/stable/main/source/Sources$comp | cut -f1 -d' ') $(stat -c %s aptarchive/dists/stable/main/source/Sources$comp) main/source/Sources$comp" + echo " $s" >> aptarchive/dists/stable/InRelease +done; + +# deliver this +changetowebserver + +# ensure the update fails +# useful for debugging to add "-o Debug::pkgAcquire::auth=true" +if aptget update -qq; then + msgfail "apt-get update should NOT work for MITM" + exit 1 +fi + +# ensure there is no package +testequal 'Reading package lists... +Building dependency tree... +E: Unable to locate package bad-mitm' aptget install bad-mitm + +# and verify that its not picked up +#testequal 'N: Unable to locate package bad-mitm' aptcache policy bad-mitm + +# and that the right one is used +#testequal 'good-pkg: +#+ Installed: (none) +#+ Candidate: 1.0 +#+ Version table: +#+ 1.0 0 +#+ 500 http://localhost/ stable/main i386 Packages' aptcache policy good-pkg -- cgit v1.2.3 From bea263c2c0ecd6715ce996fd9b54599ac2cfa7c2 Mon Sep 17 00:00:00 2001 From: David Kalnischkies Date: Sat, 16 Mar 2013 12:40:43 +0100 Subject: ensure that we fclose/unlink/free in the new gpg-code as soon as possible --- apt-pkg/contrib/gpgv.cc | 27 ++++++++++++++++++++++----- 1 file changed, 22 insertions(+), 5 deletions(-) diff --git a/apt-pkg/contrib/gpgv.cc b/apt-pkg/contrib/gpgv.cc index c236a7289..5921d7c67 100644 --- a/apt-pkg/contrib/gpgv.cc +++ b/apt-pkg/contrib/gpgv.cc @@ -214,19 +214,25 @@ void ExecGPGV(std::string const &File, std::string const &FileGPG, ioprintf(std::cerr, _("Waited for %s but it wasn't there"), "gpgv"); UNLINK_EXIT(EINTERNAL); } +#undef UNLINK_EXIT + // we don't need the files any longer as we have the filedescriptors still open + unlink(sig); + unlink(data); + free(sig); + free(data); // check if it exit'ed normally … if (WIFEXITED(Status) == false) { ioprintf(std::cerr, _("Sub-process %s exited unexpectedly"), "gpgv"); - UNLINK_EXIT(EINTERNAL); + exit(EINTERNAL); } // … and with a good exit code if (WEXITSTATUS(Status) != 0) { ioprintf(std::cerr, _("Sub-process %s returned an error code (%u)"), "gpgv", WEXITSTATUS(Status)); - UNLINK_EXIT(WEXITSTATUS(Status)); + exit(WEXITSTATUS(Status)); } /* looks like its fine. Our caller will check the status fd, @@ -236,12 +242,11 @@ void ExecGPGV(std::string const &File, std::string const &FileGPG, if (RecombineToClearSignedFile(File, dataFd, dataHeader, sigFd) == false) { _error->DumpErrors(std::cerr); - UNLINK_EXIT(EINTERNAL); + exit(EINTERNAL); } // everything fine, we have a clean file now! - UNLINK_EXIT(0); -#undef UNLINK_EXIT + exit(0); } exit(EINTERNAL); // unreachable safe-guard } @@ -259,7 +264,10 @@ bool RecombineToClearSignedFile(std::string const &OutFile, int const ContentFil FILE *data_file = fdopen(ContentFile, "r"); FILE *sig_file = fdopen(SignatureFile, "r"); if (data_file == NULL || sig_file == NULL) + { + fclose(clean_file); return _error->Error("Couldn't open splitfiles to recombine them into %s", OutFile.c_str()); + } char *buf = NULL; size_t buf_size = 0; while (getline(&buf, &buf_size, data_file) != -1) @@ -287,13 +295,21 @@ bool SplitClearSignedFile(std::string const &InFile, int const ContentFile, { out_content = fdopen(ContentFile, "w"); if (out_content == NULL) + { + fclose(in); return _error->Errno("fdopen", "Failed to open file to write content to from %s", InFile.c_str()); + } } if (SignatureFile != -1) { out_signature = fdopen(SignatureFile, "w"); if (out_signature == NULL) + { + fclose(in); + if (out_content != NULL) + fclose(out_content); return _error->Errno("fdopen", "Failed to open file to write signature to from %s", InFile.c_str()); + } } bool found_message_start = false; @@ -358,6 +374,7 @@ bool SplitClearSignedFile(std::string const &InFile, int const ContentFile, fclose(out_content); if (out_signature != NULL) fclose(out_signature); + fclose(in); return true; } -- cgit v1.2.3 From d4ddc5b94d6abbd33a3001d27ff5d9698be3f820 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Sun, 17 Mar 2013 19:51:02 +0100 Subject: * test/libapt/assert.h, test/libapt/run-tests: - exit with status 1 on test failure --- debian/changelog | 8 ++++++++ test/libapt/assert.h | 2 ++ test/libapt/run-tests | 9 ++++++++- 3 files changed, 18 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index bfc4279b3..ef622c994 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +apt (0.9.7.8~exp3) UNRELEASEDexperimental; urgency=low + + [ Niels Thykier ] + * test/libapt/assert.h, test/libapt/run-tests: + - exit with status 1 on test failure + + -- Michael Vogt Sun, 17 Mar 2013 19:46:23 +0100 + apt (0.9.7.8~exp2) experimental; urgency=low * include two missing patches to really fix bug #696225, thanks to diff --git a/test/libapt/assert.h b/test/libapt/assert.h index fdf6740c6..113c057ed 100644 --- a/test/libapt/assert.h +++ b/test/libapt/assert.h @@ -1,4 +1,5 @@ #include +#include #define equals(x,y) assertEquals(y, x, __LINE__) #define equalsNot(x,y) assertEqualsNot(y, x, __LINE__) @@ -6,6 +7,7 @@ template < typename X, typename Y > void OutputAssertEqual(X expect, char const* compare, Y get, unsigned long const &line) { std::cerr << "Test FAILED: »" << expect << "« " << compare << " »" << get << "« at line " << line << std::endl; + std::exit(EXIT_FAILURE); } template < typename X, typename Y > diff --git a/test/libapt/run-tests b/test/libapt/run-tests index 45a3157f7..f18be6d2b 100755 --- a/test/libapt/run-tests +++ b/test/libapt/run-tests @@ -7,6 +7,7 @@ echo "Compiling the tests …" echo "Running all testcases …" LDPATH="$DIR/../../build/bin" EXT="_libapt_test" +EXIT_CODE=0 # detect if output is on a terminal (colorful) or better not if expr match "$(readlink -f /proc/$$/fd/1)" '/dev/pts/[0-9]\+' > /dev/null; then @@ -106,9 +107,15 @@ do fi echo -n "Testing with ${NAME} " - LD_LIBRARY_PATH=${LDPATH} ${testapp} ${tmppath} && echo "$TESTOKAY" || echo "$TESTFAIL" + if LD_LIBRARY_PATH=${LDPATH} ${testapp} ${tmppath} ; then + echo "$TESTOKAY" + else + echo "$TESTFAIL" + EXIT_CODE=1 + fi if [ -n "$tmppath" -a -d "$tmppath" ]; then rm -rf "$tmppath" fi done +exit $EXIT_CODE -- cgit v1.2.3 From 8c1dd12cb53ce141d8ade2c8abc619dcfa7f37a1 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Mon, 18 Mar 2013 08:08:37 +0100 Subject: * test/integration/framework: - continue after test failure but preserve exit status --- debian/changelog | 4 ++++ test/integration/framework | 10 ++++++++-- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index ef622c994..2a86d688a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -3,6 +3,10 @@ apt (0.9.7.8~exp3) UNRELEASEDexperimental; urgency=low [ Niels Thykier ] * test/libapt/assert.h, test/libapt/run-tests: - exit with status 1 on test failure + + [ Daniel Hartwig ] + * test/integration/framework: + - continue after test failure but preserve exit status -- Michael Vogt Sun, 17 Mar 2013 19:46:23 +0100 diff --git a/test/integration/framework b/test/integration/framework index 1c4872c8e..883b65bba 100644 --- a/test/integration/framework +++ b/test/integration/framework @@ -1,5 +1,7 @@ #!/bin/sh -- # no runable script, just for vi +TESTFAILURES="no" + # we all like colorful messages if expr match "$(readlink -f /proc/$$/fd/1)" '/dev/pts/[0-9]\+' > /dev/null && \ expr match "$(readlink -f /proc/$$/fd/2)" '/dev/pts/[0-9]\+' > /dev/null; then @@ -36,7 +38,7 @@ msgtest() { } msgpass() { echo "${CPASS}PASS${CNORMAL}" >&2; } msgskip() { echo "${CWARNING}SKIP${CNORMAL}" >&2; } -msgfail() { echo "${CFAIL}FAIL${CNORMAL}" >&2; } +msgfail() { echo "${CFAIL}FAIL${CNORMAL}" >&2; TESTFAILURES="yes"; } # enable / disable Debugging MSGLEVEL=${MSGLEVEL:-3} @@ -113,9 +115,13 @@ gdb() { APT_CONFIG=aptconfig.conf LD_LIBRARY_PATH=${BUILDDIRECTORY} $(which gdb) ${BUILDDIRECTORY}/$1 } +exitwithstatus() { + [ "$TESTFAILURES" = "yes" ] && exit 1 || exit 0; +} + addtrap() { CURRENTTRAP="$CURRENTTRAP $1" - trap "$CURRENTTRAP exit;" 0 HUP INT QUIT ILL ABRT FPE SEGV PIPE TERM + trap "$CURRENTTRAP exitwithstatus;" 0 HUP INT QUIT ILL ABRT FPE SEGV PIPE TERM } setupenvironment() { -- cgit v1.2.3 From f91bd741d223395cc3b1a609459e7d7226916e86 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Mon, 18 Mar 2013 11:38:19 +0100 Subject: report failures via exit and ensure we don't overflow --- test/integration/framework | 11 ++++++++--- test/integration/run-tests | 3 ++- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/test/integration/framework b/test/integration/framework index 883b65bba..cdaa20627 100644 --- a/test/integration/framework +++ b/test/integration/framework @@ -1,6 +1,6 @@ #!/bin/sh -- # no runable script, just for vi -TESTFAILURES="no" +TESTFAILURES=0 # we all like colorful messages if expr match "$(readlink -f /proc/$$/fd/1)" '/dev/pts/[0-9]\+' > /dev/null && \ @@ -38,7 +38,7 @@ msgtest() { } msgpass() { echo "${CPASS}PASS${CNORMAL}" >&2; } msgskip() { echo "${CWARNING}SKIP${CNORMAL}" >&2; } -msgfail() { echo "${CFAIL}FAIL${CNORMAL}" >&2; TESTFAILURES="yes"; } +msgfail() { echo "${CFAIL}FAIL${CNORMAL}" >&2; TESTFAILURES=$((TESTFAILURES+1)); } # enable / disable Debugging MSGLEVEL=${MSGLEVEL:-3} @@ -116,7 +116,12 @@ gdb() { } exitwithstatus() { - [ "$TESTFAILURES" = "yes" ] && exit 1 || exit 0; + # error if we about to overflow, but ... + # "255 failures ought to be enough for everybody" + if [ $TESTFAILURES -gt 255 ]; then + msgdie "Total failure count $TESTFAILURES too big" + fi + exit $((TESTFAILURES <= 255 ? TESTFAILURES : 255)); } addtrap() { diff --git a/test/integration/run-tests b/test/integration/run-tests index 75f2ad662..18474b20f 100755 --- a/test/integration/run-tests +++ b/test/integration/run-tests @@ -37,4 +37,5 @@ for testcase in $(run-parts --list $DIR | grep '/test-'); do done echo "failures: $FAIL" -exit $FAIL +# ensure we don't overflow +exit $((FAIL <= 255 ? FAIL : 255)) -- cgit v1.2.3 From 5d76cee187ea6f1443c6afd0d1cf99f3555304ef Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Mon, 18 Mar 2013 11:46:20 +0100 Subject: test/integration/framework: use EXIT_CODE to be consistent with the run-tests code --- test/integration/framework | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/test/integration/framework b/test/integration/framework index cdaa20627..4a70573c8 100644 --- a/test/integration/framework +++ b/test/integration/framework @@ -1,6 +1,6 @@ #!/bin/sh -- # no runable script, just for vi -TESTFAILURES=0 +EXIT_CODE=0 # we all like colorful messages if expr match "$(readlink -f /proc/$$/fd/1)" '/dev/pts/[0-9]\+' > /dev/null && \ @@ -38,7 +38,7 @@ msgtest() { } msgpass() { echo "${CPASS}PASS${CNORMAL}" >&2; } msgskip() { echo "${CWARNING}SKIP${CNORMAL}" >&2; } -msgfail() { echo "${CFAIL}FAIL${CNORMAL}" >&2; TESTFAILURES=$((TESTFAILURES+1)); } +msgfail() { echo "${CFAIL}FAIL${CNORMAL}" >&2; EXIT_CODE=$((EXIT_CODE+1)); } # enable / disable Debugging MSGLEVEL=${MSGLEVEL:-3} @@ -118,10 +118,10 @@ gdb() { exitwithstatus() { # error if we about to overflow, but ... # "255 failures ought to be enough for everybody" - if [ $TESTFAILURES -gt 255 ]; then - msgdie "Total failure count $TESTFAILURES too big" + if [ $EXIT_CODE -gt 255 ]; then + msgdie "Total failure count $EXIT_CODE too big" fi - exit $((TESTFAILURES <= 255 ? TESTFAILURES : 255)); + exit $((EXIT_CODE <= 255 ? EXIT_CODE : 255)); } addtrap() { -- cgit v1.2.3 From c8b860fb8d0f1531f99db4fad74f5892c6806f1b Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Mon, 18 Mar 2013 12:10:35 +0100 Subject: fix pkgTagSection::Exists() and add test --- apt-pkg/tagfile.cc | 9 ++++++- apt-pkg/tagfile.h | 4 ++-- test/libapt/makefile | 9 ++++++- test/libapt/tagfile_test.cc | 57 +++++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 75 insertions(+), 4 deletions(-) create mode 100644 test/libapt/tagfile_test.cc diff --git a/apt-pkg/tagfile.cc b/apt-pkg/tagfile.cc index 79811899a..1c79ee74f 100644 --- a/apt-pkg/tagfile.cc +++ b/apt-pkg/tagfile.cc @@ -282,10 +282,17 @@ void pkgTagSection::Trim() for (; Stop > Section + 2 && (Stop[-2] == '\n' || Stop[-2] == '\r'); Stop--); } /*}}}*/ +// TagSection::Exists - return True if a tag exists /*{{{*/ +bool pkgTagSection::Exists(const char* const Tag) +{ + unsigned int tmp; + return Find(Tag, tmp); +} + /*}}}*/ // TagSection::Find - Locate a tag /*{{{*/ // --------------------------------------------------------------------- /* This searches the section for a tag that matches the given string. */ -bool pkgTagSection::Find(const char *Tag,unsigned &Pos) const +bool pkgTagSection::Find(const char *Tag,unsigned int &Pos) const { unsigned int Length = strlen(Tag); unsigned int I = AlphaIndexes[AlphaHash(Tag)]; diff --git a/apt-pkg/tagfile.h b/apt-pkg/tagfile.h index fd24471c1..4718f5101 100644 --- a/apt-pkg/tagfile.h +++ b/apt-pkg/tagfile.h @@ -59,7 +59,7 @@ class pkgTagSection inline bool operator !=(const pkgTagSection &rhs) {return Section != rhs.Section;}; bool Find(const char *Tag,const char *&Start, const char *&End) const; - bool Find(const char *Tag,unsigned &Pos) const; + bool Find(const char *Tag,unsigned int &Pos) const; std::string FindS(const char *Tag) const; signed int FindI(const char *Tag,signed long Default = 0) const ; unsigned long long FindULL(const char *Tag, unsigned long long const &Default = 0) const; @@ -73,7 +73,7 @@ class pkgTagSection virtual void TrimRecord(bool BeforeRecord, const char* &End); inline unsigned int Count() const {return TagCount;}; - inline bool Exists(const char* const Tag) {return AlphaIndexes[AlphaHash(Tag)] != 0;} + bool Exists(const char* const Tag); inline void Get(const char *&Start,const char *&Stop,unsigned int I) const {Start = Section + Indexes[I]; Stop = Section + Indexes[I+1];} diff --git a/test/libapt/makefile b/test/libapt/makefile index 5e225f240..953e455e0 100644 --- a/test/libapt/makefile +++ b/test/libapt/makefile @@ -93,8 +93,15 @@ SLIBS = -lapt-pkg SOURCE = cdromreducesourcelist_test.cc include $(PROGRAM_H) -# text IndexCopy::ConvertToSourceList +# test IndexCopy::ConvertToSourceList PROGRAM = IndexCopyToSourceList${BASENAME} SLIBS = -lapt-pkg SOURCE = indexcopytosourcelist_test.cc include $(PROGRAM_H) + +# test tagfile +PROGRAM = PkgTagFile${BASENAME} +SLIBS = -lapt-pkg +SOURCE = tagfile_test.cc +include $(PROGRAM_H) + diff --git a/test/libapt/tagfile_test.cc b/test/libapt/tagfile_test.cc new file mode 100644 index 000000000..2e2144f99 --- /dev/null +++ b/test/libapt/tagfile_test.cc @@ -0,0 +1,57 @@ +#include +#include + +#include "assert.h" +#include +#include + +char *tempfile = NULL; +int tempfile_fd = -1; + +void remove_tmpfile(void) +{ + if (tempfile_fd > 0) + close(tempfile_fd); + if (tempfile != NULL) { + unlink(tempfile); + free(tempfile); + } +} + +int main(int argc, char *argv[]) +{ + FileFd fd; + const char contents[] = "FieldA-12345678: the value of the field"; + atexit(remove_tmpfile); + tempfile = strdup("apt-test.XXXXXXXX"); + tempfile_fd = mkstemp(tempfile); + + /* (Re-)Open (as FileFd), write and seek to start of the temp file */ + equals(fd.OpenDescriptor(tempfile_fd, FileFd::ReadWrite), true); + equals(fd.Write(contents, strlen(contents)), true); + equals(fd.Seek(0), true); + + pkgTagFile tfile(&fd); + pkgTagSection section; + equals(tfile.Step(section), true); + + /* It has one field */ + equals(section.Count(), 1); + + /* ... and it is called FieldA-12345678 */ + equals(section.Exists("FieldA-12345678"), true); + + /* its value is correct */ + equals(section.FindS("FieldA-12345678"), std::string("the value of the field")); + /* A non-existent field has an empty string as value */ + equals(section.FindS("FieldB-12345678"), std::string()); + + /* ... and Exists does not lie about missing fields... */ + equalsNot(section.Exists("FieldB-12345678"), true); + + /* There is only one section in this tag file */ + equals(tfile.Step(section), false); + + /* clean up handled by atexit handler, so just return here */ + return 0; +} -- cgit v1.2.3 From 0c98ee5ade6bb660bf23b09d759e0bb3c52068b9 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Mon, 18 Mar 2013 13:52:43 +0100 Subject: test/libapt/tagfile_test.cc: add missing "unistd.h" (thanks to Niels Thykier) --- test/libapt/tagfile_test.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/test/libapt/tagfile_test.cc b/test/libapt/tagfile_test.cc index 2e2144f99..d12c74c95 100644 --- a/test/libapt/tagfile_test.cc +++ b/test/libapt/tagfile_test.cc @@ -4,6 +4,7 @@ #include "assert.h" #include #include +#include char *tempfile = NULL; int tempfile_fd = -1; -- cgit v1.2.3 From 34747d46be3a15105d896266d8043f55d04e7735 Mon Sep 17 00:00:00 2001 From: David Kalnischkies Date: Mon, 18 Mar 2013 17:06:51 +0100 Subject: rename testcase to mention CVE number, make the code more consistent with the rest and add some more tests (by fixing commented ones) --- .../test-cve-2013-1051-InRelease-parsing | 61 +++++++++++++++++ test/integration/test-inrelease-verification-fail | 80 ---------------------- 2 files changed, 61 insertions(+), 80 deletions(-) create mode 100755 test/integration/test-cve-2013-1051-InRelease-parsing delete mode 100755 test/integration/test-inrelease-verification-fail diff --git a/test/integration/test-cve-2013-1051-InRelease-parsing b/test/integration/test-cve-2013-1051-InRelease-parsing new file mode 100755 index 000000000..bd68fccf6 --- /dev/null +++ b/test/integration/test-cve-2013-1051-InRelease-parsing @@ -0,0 +1,61 @@ +#!/bin/sh +set -e + +TESTDIR=$(readlink -f $(dirname $0)) +. $TESTDIR/framework + +setupenvironment +configarchitecture 'i386' + +insertpackage 'stable' 'good-pkg' 'all' '1.0' + +setupaptarchive + +changetowebserver +ARCHIVE='http://localhost/' +msgtest 'Initial apt-get update should work with' 'InRelease' +aptget update -qq && msgpass || msgfail + +# check that the setup is correct +testequal "good-pkg: + Installed: (none) + Candidate: 1.0 + Version table: + 1.0 0 + 500 ${ARCHIVE} stable/main i386 Packages" aptcache policy good-pkg + +# now exchange to the Packages file, note that this could be +# done via MITM too +insertpackage 'stable' 'bad-mitm' 'all' '1.0' + +# this builds compressed files and a new (unsigned) Release +buildaptarchivefromfiles '+1hour' + +# add a space into the BEGIN PGP SIGNATURE PART/END PGP SIGNATURE part +# to trick apt - this is still legal to gpg(v) +sed -i '/^-----BEGIN PGP SIGNATURE-----/,/^-----END PGP SIGNATURE-----/ s/^$/ /g' aptarchive/dists/stable/InRelease + +# we append the (evil unsigned) Release file to the (good signed) InRelease +cat aptarchive/dists/stable/Release >> aptarchive/dists/stable/InRelease + + +# ensure the update fails +# useful for debugging to add "-o Debug::pkgAcquire::auth=true" +msgtest 'apt-get update for should fail with the modified' 'InRelease' +aptget update 2>&1 | grep -q 'Hash Sum mismatch' > /dev/null && msgpass || msgfail + +# ensure there is no package +testequal 'Reading package lists... +Building dependency tree... +E: Unable to locate package bad-mitm' aptget install bad-mitm -s + +# and verify that its not picked up +testequal 'N: Unable to locate package bad-mitm' aptcache policy bad-mitm -q=0 + +# and that the right one is used +testequal "good-pkg: + Installed: (none) + Candidate: 1.0 + Version table: + 1.0 0 + 500 ${ARCHIVE} stable/main i386 Packages" aptcache policy good-pkg diff --git a/test/integration/test-inrelease-verification-fail b/test/integration/test-inrelease-verification-fail deleted file mode 100755 index 5cbf1ab4d..000000000 --- a/test/integration/test-inrelease-verification-fail +++ /dev/null @@ -1,80 +0,0 @@ -#!/bin/sh - -set -e - -TESTDIR=$(readlink -f $(dirname $0)) -. $TESTDIR/framework - -setupenvironment -configarchitecture "i386" - -buildsimplenativepackage 'good-pkg' 'all' '1.0' 'stable' - -setupaptarchive - -# now exchange to the Packages file, note that this could be -# done via MITM too -cat > aptarchive/dists/stable/main/binary-i386/Packages < aptarchive/dists/stable/main/binary-i386/Packages.$extension -done - -# add a space into the BEGIN PGP SIGNATURE PART/END PGP SIGNATURE part -# to trick apt - this is still legal to gpg(v) -sed -i '/^-----BEGIN PGP SIGNATURE-----/,/^-----END PGP SIGNATURE-----/ s/^$/ /g' aptarchive/dists/stable/InRelease - -# and append our own hashes for the modified Packages files -cat >> aptarchive/dists/stable/InRelease <> aptarchive/dists/stable/InRelease - # Sources - s="$(sha512sum aptarchive/dists/stable/main/source/Sources$comp | cut -f1 -d' ') $(stat -c %s aptarchive/dists/stable/main/source/Sources$comp) main/source/Sources$comp" - echo " $s" >> aptarchive/dists/stable/InRelease -done; - -# deliver this -changetowebserver - -# ensure the update fails -# useful for debugging to add "-o Debug::pkgAcquire::auth=true" -if aptget update -qq; then - msgfail "apt-get update should NOT work for MITM" - exit 1 -fi - -# ensure there is no package -testequal 'Reading package lists... -Building dependency tree... -E: Unable to locate package bad-mitm' aptget install bad-mitm - -# and verify that its not picked up -#testequal 'N: Unable to locate package bad-mitm' aptcache policy bad-mitm - -# and that the right one is used -#testequal 'good-pkg: -#+ Installed: (none) -#+ Candidate: 1.0 -#+ Version table: -#+ 1.0 0 -#+ 500 http://localhost/ stable/main i386 Packages' aptcache policy good-pkg -- cgit v1.2.3 From f1828b6977972b4ef6da6401602b7938f6570c32 Mon Sep 17 00:00:00 2001 From: David Kalnischkies Date: Mon, 18 Mar 2013 19:36:55 +0100 Subject: - add method to open (maybe) clearsigned files transparently * ftparchive/writer.cc: - use OpenMaybeClearSignedFile to be free from detecting and skipping clearsigning metadata in dsc files --- apt-pkg/contrib/gpgv.cc | 55 +++++++++++++++++++++++- apt-pkg/contrib/gpgv.h | 22 ++++++++++ debian/changelog | 6 ++- ftparchive/writer.cc | 105 ++++++++++++++++++++------------------------- test/integration/framework | 10 ++++- 5 files changed, 135 insertions(+), 63 deletions(-) diff --git a/apt-pkg/contrib/gpgv.cc b/apt-pkg/contrib/gpgv.cc index 5921d7c67..fc16dd32c 100644 --- a/apt-pkg/contrib/gpgv.cc +++ b/apt-pkg/contrib/gpgv.cc @@ -19,7 +19,7 @@ #include /*}}}*/ -char * GenerateTemporaryFileTemplate(const char *basename) /*{{{*/ +static char * GenerateTemporaryFileTemplate(const char *basename) /*{{{*/ { const char *tmpdir = getenv("TMPDIR"); #ifdef P_tmpdir @@ -376,5 +376,58 @@ bool SplitClearSignedFile(std::string const &InFile, int const ContentFile, fclose(out_signature); fclose(in); + if (found_signature == true) + return _error->Error("Signature in file %s wasn't closed", InFile.c_str()); + + // if we haven't found any of them, this an unsigned file, + // so don't generate an error, but splitting was unsuccessful none-the-less + if (found_message_start == false && found_message_end == false) + return false; + // otherwise one missing indicates a syntax error + else if (found_message_start == false || found_message_end == false) + return _error->Error("Splitting of file %s failed as it doesn't contain all expected parts", InFile.c_str()); + return true; } + /*}}}*/ +bool OpenMaybeClearSignedFile(std::string const &ClearSignedFileName, FileFd &MessageFile) /*{{{*/ +{ + char * const message = GenerateTemporaryFileTemplate("fileutl.message"); + int const messageFd = mkstemp(message); + if (messageFd == -1) + { + free(message); + return _error->Errno("mkstemp", "Couldn't create temporary file to work with %s", ClearSignedFileName.c_str()); + } + // we have the fd, thats enough for us + unlink(message); + free(message); + + int const duppedMsg = dup(messageFd); + if (duppedMsg == -1) + return _error->Errno("dup", "Couldn't duplicate FD to work with %s", ClearSignedFileName.c_str()); + + _error->PushToStack(); + bool const splitDone = SplitClearSignedFile(ClearSignedFileName.c_str(), messageFd, NULL, -1); + bool const errorDone = _error->PendingError(); + _error->MergeWithStack(); + if (splitDone == false) + { + close(duppedMsg); + + if (errorDone == true) + return false; + + // we deal with an unsigned file + MessageFile.Open(ClearSignedFileName, FileFd::ReadOnly); + } + else // clear-signed + { + if (lseek(duppedMsg, 0, SEEK_SET) < 0) + return _error->Errno("lseek", "Unable to seek back in message fd for file %s", ClearSignedFileName.c_str()); + MessageFile.OpenDescriptor(duppedMsg, FileFd::ReadOnly, true); + } + + return MessageFile.Failed() == false; +} + /*}}}*/ diff --git a/apt-pkg/contrib/gpgv.h b/apt-pkg/contrib/gpgv.h index 8e04855e4..ab7d35ab1 100644 --- a/apt-pkg/contrib/gpgv.h +++ b/apt-pkg/contrib/gpgv.h @@ -12,6 +12,8 @@ #include #include +#include + #if __GNUC__ >= 4 #define APT_noreturn __attribute__ ((noreturn)) #else @@ -52,10 +54,17 @@ inline void ExecGPGV(std::string const &File, std::string const &FileSig, * The code doesn't support dash-encoded lines as these are not * expected to be present in files we have to deal with. * + * The content of the split files is undefined if the splitting was + * unsuccessful. + * + * Note that trying to split an unsigned file will fail, but + * not generate an error message. + * * @param InFile is the clear-signed file * @param ContentFile is the Fd the message will be written to * @param ContentHeader is a list of all required Amored Headers for the message * @param SignatureFile is the Fd all signatures will be written to + * @return true if the splitting was successful, false otherwise */ bool SplitClearSignedFile(std::string const &InFile, int const ContentFile, std::vector * const ContentHeader, int const SignatureFile); @@ -74,4 +83,17 @@ bool SplitClearSignedFile(std::string const &InFile, int const ContentFile, bool RecombineToClearSignedFile(std::string const &OutFile, int const ContentFile, std::vector const &ContentHeader, int const SignatureFile); +/** \brief open a file which might be clear-signed + * + * This method tries to extract the (signed) message of a file. + * If the file isn't signed it will just open the given filename. + * Otherwise the message is extracted to a temporary file which + * will be opened instead. + * + * @param ClearSignedFileName is the name of the file to open + * @param[out] MessageFile is the FileFd in which the file will be opened + * @return true if opening was successful, otherwise false + */ +bool OpenMaybeClearSignedFile(std::string const &ClearSignedFileName, FileFd &MessageFile); + #endif diff --git a/debian/changelog b/debian/changelog index 3ef652c56..27fae657c 100644 --- a/debian/changelog +++ b/debian/changelog @@ -12,12 +12,16 @@ apt (0.9.7.9) UNRELEASED; urgency=low recombines it after that in a known-good way without unsigned blocks and whitespaces resulting usually in more or less the same file as before, but later code can be sure about the format + - add method to open (maybe) clearsigned files transparently * apt-pkg/acquire-item.cc: - keep the last good InRelease file around just as we do it with Release.gpg in case the new one we download isn't good for us * apt-pkg/deb/debmetaindex.cc: - reenable InRelease by default - + * ftparchive/writer.cc: + - use OpenMaybeClearSignedFile to be free from detecting and + skipping clearsigning metadata in dsc files + [ Michael Vogt ] * add regression test for CVE-2013-1051 * implement GPGSplit() based on the idea from Ansgar Burchardt diff --git a/ftparchive/writer.cc b/ftparchive/writer.cc index 3065526ad..d26b160f9 100644 --- a/ftparchive/writer.cc +++ b/ftparchive/writer.cc @@ -20,6 +20,8 @@ #include #include #include +#include +#include #include #include @@ -598,77 +600,62 @@ SourcesWriter::SourcesWriter(string const &BOverrides,string const &SOverrides, // --------------------------------------------------------------------- /* */ bool SourcesWriter::DoPackage(string FileName) -{ +{ // Open the archive - FileFd F(FileName,FileFd::ReadOnly); - if (_error->PendingError() == true) + FileFd F; + if (OpenMaybeClearSignedFile(FileName, F) == false) return false; - - // Stat the file for later - struct stat St; - if (fstat(F.Fd(),&St) != 0) - return _error->Errno("fstat","Failed to stat %s",FileName.c_str()); - if (St.st_size > 128*1024) + unsigned long long const FSize = F.FileSize(); + //FIXME: do we really need to enforce a maximum size of the dsc file? + if (FSize > 128*1024) return _error->Error("DSC file '%s' is too large!",FileName.c_str()); - - if (BufSize < (unsigned long long)St.st_size+1) + + if (BufSize < FSize + 2) { - BufSize = St.st_size+1; - Buffer = (char *)realloc(Buffer,St.st_size+1); + BufSize = FSize + 2; + Buffer = (char *)realloc(Buffer , BufSize); } - - if (F.Read(Buffer,St.st_size) == false) + + if (F.Read(Buffer, FSize) == false) return false; + // Stat the file for later (F might be clearsigned, so not F.FileSize()) + struct stat St; + if (stat(FileName.c_str(), &St) != 0) + return _error->Errno("fstat","Failed to stat %s",FileName.c_str()); + // Hash the file char *Start = Buffer; - char *BlkEnd = Buffer + St.st_size; - - MD5Summation MD5; - SHA1Summation SHA1; - SHA256Summation SHA256; - SHA256Summation SHA512; - - if (DoMD5 == true) - MD5.Add((unsigned char *)Start,BlkEnd - Start); - if (DoSHA1 == true) - SHA1.Add((unsigned char *)Start,BlkEnd - Start); - if (DoSHA256 == true) - SHA256.Add((unsigned char *)Start,BlkEnd - Start); - if (DoSHA512 == true) - SHA512.Add((unsigned char *)Start,BlkEnd - Start); + char *BlkEnd = Buffer + FSize; - // Add an extra \n to the end, just in case - *BlkEnd++ = '\n'; - - /* Remove the PGP trailer. Some .dsc's have this without a blank line - before */ - const char *Key = "-----BEGIN PGP SIGNATURE-----"; - for (char *MsgEnd = Start; MsgEnd < BlkEnd - strlen(Key) -1; MsgEnd++) + Hashes DscHashes; + if (FSize == (unsigned long long) St.st_size) { - if (*MsgEnd == '\n' && strncmp(MsgEnd+1,Key,strlen(Key)) == 0) - { - MsgEnd[1] = '\n'; - break; - } + if (DoMD5 == true) + DscHashes.MD5.Add((unsigned char *)Start,BlkEnd - Start); + if (DoSHA1 == true) + DscHashes.SHA1.Add((unsigned char *)Start,BlkEnd - Start); + if (DoSHA256 == true) + DscHashes.SHA256.Add((unsigned char *)Start,BlkEnd - Start); + if (DoSHA512 == true) + DscHashes.SHA512.Add((unsigned char *)Start,BlkEnd - Start); } - - /* Read records until we locate the Source record. This neatly skips the - GPG header (which is RFC822 formed) without any trouble. */ - pkgTagSection Tags; - do + else { - unsigned Pos; - if (Tags.Scan(Start,BlkEnd - Start) == false) - return _error->Error("Could not find a record in the DSC '%s'",FileName.c_str()); - if (Tags.Find("Source",Pos) == true) - break; - Start += Tags.size(); + FileFd DscFile(FileName, FileFd::ReadOnly); + DscHashes.AddFD(DscFile, St.st_size, DoMD5, DoSHA1, DoSHA256, DoSHA512); } - while (1); + + // Add extra \n to the end, just in case (as in clearsigned they are missing) + *BlkEnd++ = '\n'; + *BlkEnd++ = '\n'; + + pkgTagSection Tags; + if (Tags.Scan(Start,BlkEnd - Start) == false || Tags.Exists("Source") == false) + return _error->Error("Could not find a record in the DSC '%s'",FileName.c_str()); Tags.Trim(); - + // Lookup the overide information, finding first the best priority. string BestPrio; string Bins = Tags.FindS("Binary"); @@ -732,25 +719,25 @@ bool SourcesWriter::DoPackage(string FileName) string const strippedName = flNotDir(FileName); std::ostringstream ostreamFiles; if (DoMD5 == true && Tags.Exists("Files")) - ostreamFiles << "\n " << string(MD5.Result()) << " " << St.st_size << " " + ostreamFiles << "\n " << string(DscHashes.MD5.Result()) << " " << St.st_size << " " << strippedName << "\n " << Tags.FindS("Files"); string const Files = ostreamFiles.str(); std::ostringstream ostreamSha1; if (DoSHA1 == true && Tags.Exists("Checksums-Sha1")) - ostreamSha1 << "\n " << string(SHA1.Result()) << " " << St.st_size << " " + ostreamSha1 << "\n " << string(DscHashes.SHA1.Result()) << " " << St.st_size << " " << strippedName << "\n " << Tags.FindS("Checksums-Sha1"); string const ChecksumsSha1 = ostreamSha1.str(); std::ostringstream ostreamSha256; if (DoSHA256 == true && Tags.Exists("Checksums-Sha256")) - ostreamSha256 << "\n " << string(SHA256.Result()) << " " << St.st_size << " " + ostreamSha256 << "\n " << string(DscHashes.SHA256.Result()) << " " << St.st_size << " " << strippedName << "\n " << Tags.FindS("Checksums-Sha256"); string const ChecksumsSha256 = ostreamSha256.str(); std::ostringstream ostreamSha512; if (Tags.Exists("Checksums-Sha512")) - ostreamSha512 << "\n " << string(SHA512.Result()) << " " << St.st_size << " " + ostreamSha512 << "\n " << string(DscHashes.SHA512.Result()) << " " << St.st_size << " " << strippedName << "\n " << Tags.FindS("Checksums-Sha512"); string const ChecksumsSha512 = ostreamSha512.str(); diff --git a/test/integration/framework b/test/integration/framework index 1c4872c8e..2ef61ca84 100644 --- a/test/integration/framework +++ b/test/integration/framework @@ -328,9 +328,15 @@ Package: $NAME" >> ${BUILDDIR}/debian/control fi echo '3.0 (native)' > ${BUILDDIR}/debian/source/format - local SRCS="$( (cd ${BUILDDIR}/..; dpkg-source -b ${NAME}-${VERSION} 2>&1) | grep '^dpkg-source: info: building' | grep -o '[a-z0-9._+~-]*$')" - for SRC in $SRCS; do + (cd ${BUILDDIR}/..; dpkg-source -b ${NAME}-${VERSION} 2>&1) | sed -n 's#^dpkg-source: info: building [^ ]\+ in ##p' \ + | while read SRC; do echo "pool/${SRC}" >> ${BUILDDIR}/../${RELEASE}.${DISTSECTION}.srclist +# if expr match "${SRC}" '.*\.dsc' >/dev/null 2>&1; then +# gpg --yes --no-default-keyring --secret-keyring ./keys/joesixpack.sec \ +# --keyring ./keys/joesixpack.pub --default-key 'Joe Sixpack' \ +# --clearsign -o "${BUILDDIR}/../${SRC}.sign" "${BUILDDIR}/../$SRC" +# mv "${BUILDDIR}/../${SRC}.sign" "${BUILDDIR}/../$SRC" +# fi done for arch in $(echo "$ARCH" | sed -e 's#,#\n#g' | sed -e "s#^native\$#$(getarchitecture 'native')#"); do -- cgit v1.2.3 From 233b78083f6f79730fcb5a6faeb74e2a78b6038a Mon Sep 17 00:00:00 2001 From: David Kalnischkies Date: Mon, 18 Mar 2013 22:57:08 +0100 Subject: * apt-pkg/deb/debindexfile.cc, apt-pkg/deb/deblistparser.cc: - use OpenMaybeClearSignedFile to be free from detecting and skipping clearsigning metadata in dsc and Release files We can't write a "clean" file to disk as not all acquire methods copy Release files before checking them (e.g. cdrom), so this reverts recombining, but uses the method we use for dsc files also in the two places we deal with Release files --- apt-pkg/contrib/gpgv.cc | 44 ++--------------------------------------- apt-pkg/contrib/gpgv.h | 14 ------------- apt-pkg/deb/debindexfile.cc | 8 +++++++- apt-pkg/deb/deblistparser.cc | 12 +---------- apt-pkg/indexrecords.cc | 6 +++++- debian/changelog | 11 +++++------ test/integration/framework | 2 +- test/integration/test-apt-cdrom | 2 ++ 8 files changed, 23 insertions(+), 76 deletions(-) diff --git a/apt-pkg/contrib/gpgv.cc b/apt-pkg/contrib/gpgv.cc index fc16dd32c..7e244c623 100644 --- a/apt-pkg/contrib/gpgv.cc +++ b/apt-pkg/contrib/gpgv.cc @@ -215,7 +215,7 @@ void ExecGPGV(std::string const &File, std::string const &FileGPG, UNLINK_EXIT(EINTERNAL); } #undef UNLINK_EXIT - // we don't need the files any longer as we have the filedescriptors still open + // we don't need the files any longer unlink(sig); unlink(data); free(sig); @@ -235,52 +235,12 @@ void ExecGPGV(std::string const &File, std::string const &FileGPG, exit(WEXITSTATUS(Status)); } - /* looks like its fine. Our caller will check the status fd, - but we construct a good-known clear-signed file without garbage - and other non-sense. In a perfect world, we get the same file, - but empty lines, trailing whitespaces and stuff makes it inperfect … */ - if (RecombineToClearSignedFile(File, dataFd, dataHeader, sigFd) == false) - { - _error->DumpErrors(std::cerr); - exit(EINTERNAL); - } - - // everything fine, we have a clean file now! + // everything fine exit(0); } exit(EINTERNAL); // unreachable safe-guard } /*}}}*/ -// RecombineToClearSignedFile - combine data/signature to message /*{{{*/ -bool RecombineToClearSignedFile(std::string const &OutFile, int const ContentFile, - std::vector const &ContentHeader, int const SignatureFile) -{ - FILE *clean_file = fopen(OutFile.c_str(), "w"); - fputs("-----BEGIN PGP SIGNED MESSAGE-----\n", clean_file); - for (std::vector::const_iterator h = ContentHeader.begin(); h != ContentHeader.end(); ++h) - fprintf(clean_file, "%s\n", h->c_str()); - fputs("\n", clean_file); - - FILE *data_file = fdopen(ContentFile, "r"); - FILE *sig_file = fdopen(SignatureFile, "r"); - if (data_file == NULL || sig_file == NULL) - { - fclose(clean_file); - return _error->Error("Couldn't open splitfiles to recombine them into %s", OutFile.c_str()); - } - char *buf = NULL; - size_t buf_size = 0; - while (getline(&buf, &buf_size, data_file) != -1) - fputs(buf, clean_file); - fclose(data_file); - fputs("\n", clean_file); - while (getline(&buf, &buf_size, sig_file) != -1) - fputs(buf, clean_file); - fclose(sig_file); - fclose(clean_file); - return true; -} - /*}}}*/ // SplitClearSignedFile - split message into data/signature /*{{{*/ bool SplitClearSignedFile(std::string const &InFile, int const ContentFile, std::vector * const ContentHeader, int const SignatureFile) diff --git a/apt-pkg/contrib/gpgv.h b/apt-pkg/contrib/gpgv.h index ab7d35ab1..8cbe553bc 100644 --- a/apt-pkg/contrib/gpgv.h +++ b/apt-pkg/contrib/gpgv.h @@ -69,20 +69,6 @@ inline void ExecGPGV(std::string const &File, std::string const &FileSig, bool SplitClearSignedFile(std::string const &InFile, int const ContentFile, std::vector * const ContentHeader, int const SignatureFile); -/** \brief recombines message and signature to an inline signature - * - * Reverses the splitting down by #SplitClearSignedFile by writing - * a well-formed clear-signed message without unsigned messages, - * additional signed messages or just trailing whitespaces - * - * @param OutFile will be clear-signed file - * @param ContentFile is the Fd the message will be read from - * @param ContentHeader is a list of all required Amored Headers for the message - * @param SignatureFile is the Fd all signatures will be read from - */ -bool RecombineToClearSignedFile(std::string const &OutFile, int const ContentFile, - std::vector const &ContentHeader, int const SignatureFile); - /** \brief open a file which might be clear-signed * * This method tries to extract the (signed) message of a file. diff --git a/apt-pkg/deb/debindexfile.cc b/apt-pkg/deb/debindexfile.cc index de645bb6e..909dfcf47 100644 --- a/apt-pkg/deb/debindexfile.cc +++ b/apt-pkg/deb/debindexfile.cc @@ -22,6 +22,7 @@ #include #include #include +#include #include /*}}}*/ @@ -337,7 +338,12 @@ bool debPackagesIndex::Merge(pkgCacheGenerator &Gen,OpProgress *Prog) const if (releaseExists == true || FileExists(ReleaseFile) == true) { - FileFd Rel(ReleaseFile,FileFd::ReadOnly); + FileFd Rel; + // Beware: The 'Release' file might be clearsigned in case the + // signature for an 'InRelease' file couldn't be checked + if (OpenMaybeClearSignedFile(ReleaseFile, Rel) == false) + return false; + if (_error->PendingError() == true) return false; Parser.LoadReleaseInfo(File,Rel,Section); diff --git a/apt-pkg/deb/deblistparser.cc b/apt-pkg/deb/deblistparser.cc index b84bd6fdd..2c014a734 100644 --- a/apt-pkg/deb/deblistparser.cc +++ b/apt-pkg/deb/deblistparser.cc @@ -800,13 +800,12 @@ bool debListParser::LoadReleaseInfo(pkgCache::PkgFileIterator &FileI, map_ptrloc const storage = WriteUniqString(component); FileI->Component = storage; - // FIXME: Code depends on the fact that Release files aren't compressed + // FIXME: should use FileFd and TagSection FILE* release = fdopen(dup(File.Fd()), "r"); if (release == NULL) return false; char buffer[101]; - bool gpgClose = false; while (fgets(buffer, sizeof(buffer), release) != NULL) { size_t len = 0; @@ -818,15 +817,6 @@ bool debListParser::LoadReleaseInfo(pkgCache::PkgFileIterator &FileI, if (buffer[len] == '\0') continue; - // only evalute the first GPG section - if (strncmp("-----", buffer, 5) == 0) - { - if (gpgClose == true) - break; - gpgClose = true; - continue; - } - // seperate the tag from the data const char* dataStart = strchr(buffer + len, ':'); if (dataStart == NULL) diff --git a/apt-pkg/indexrecords.cc b/apt-pkg/indexrecords.cc index af2639beb..1461a24bb 100644 --- a/apt-pkg/indexrecords.cc +++ b/apt-pkg/indexrecords.cc @@ -12,6 +12,7 @@ #include #include #include +#include #include #include @@ -57,7 +58,10 @@ bool indexRecords::Exists(string const &MetaKey) const bool indexRecords::Load(const string Filename) /*{{{*/ { - FileFd Fd(Filename, FileFd::ReadOnly); + FileFd Fd; + if (OpenMaybeClearSignedFile(Filename, Fd) == false) + return false; + pkgTagFile TagFile(&Fd, Fd.Size() + 256); // XXX if (_error->PendingError() == true) { diff --git a/debian/changelog b/debian/changelog index 27fae657c..7c02b2689 100644 --- a/debian/changelog +++ b/debian/changelog @@ -8,19 +8,18 @@ apt (0.9.7.9) UNRELEASED; urgency=low and fix the inconsistency of returning in error cases - don't close stdout/stderr if it is also the statusfd - if ExecGPGV deals with a clear-signed file it will split this file - into data and signatures, pass it to gpgv for verification and - recombines it after that in a known-good way without unsigned blocks - and whitespaces resulting usually in more or less the same file as - before, but later code can be sure about the format + into data and signatures, pass it to gpgv for verification - add method to open (maybe) clearsigned files transparently * apt-pkg/acquire-item.cc: - keep the last good InRelease file around just as we do it with Release.gpg in case the new one we download isn't good for us * apt-pkg/deb/debmetaindex.cc: - reenable InRelease by default - * ftparchive/writer.cc: + * ftparchive/writer.cc, + apt-pkg/deb/debindexfile.cc, + apt-pkg/deb/deblistparser.cc: - use OpenMaybeClearSignedFile to be free from detecting and - skipping clearsigning metadata in dsc files + skipping clearsigning metadata in dsc and Release files [ Michael Vogt ] * add regression test for CVE-2013-1051 diff --git a/test/integration/framework b/test/integration/framework index 2ef61ca84..86e6ed7c3 100644 --- a/test/integration/framework +++ b/test/integration/framework @@ -114,7 +114,7 @@ gdb() { } addtrap() { - CURRENTTRAP="$CURRENTTRAP $1" + CURRENTTRAP="$1 $CURRENTTRAP" trap "$CURRENTTRAP exit;" 0 HUP INT QUIT ILL ABRT FPE SEGV PIPE TERM } diff --git a/test/integration/test-apt-cdrom b/test/integration/test-apt-cdrom index f24c99b36..f1c4fd9d3 100755 --- a/test/integration/test-apt-cdrom +++ b/test/integration/test-apt-cdrom @@ -24,6 +24,8 @@ cat Translation-de | xz --format=lzma > Translation-de.lzma cat Translation-de | xz > Translation-de.xz rm Translation-en Translation-de cd - > /dev/null +addtrap "chmod -R +w $PWD/rootdir/media/cdrom/dists/;" +chmod -R -w rootdir/media/cdrom/dists aptcdrom add -m -o quiet=1 > apt-cdrom.log 2>&1 sed -i -e '/^Using CD-ROM/ d' -e '/gpgv/ d' -e '/^Identifying/ d' -e '/Reading / d' apt-cdrom.log -- cgit v1.2.3 From b408e4ad0010b273dac0af7dc87ab61062d89e49 Mon Sep 17 00:00:00 2001 From: David Kalnischkies Date: Tue, 19 Mar 2013 10:49:57 +0100 Subject: use FileFd instead of int fds to tidy up the interface a bit --- apt-pkg/contrib/gpgv.cc | 103 ++++++++++++++++++++++-------------------------- apt-pkg/contrib/gpgv.h | 12 +++--- 2 files changed, 53 insertions(+), 62 deletions(-) diff --git a/apt-pkg/contrib/gpgv.cc b/apt-pkg/contrib/gpgv.cc index 7e244c623..54cc4c6d0 100644 --- a/apt-pkg/contrib/gpgv.cc +++ b/apt-pkg/contrib/gpgv.cc @@ -41,6 +41,7 @@ static char * GenerateTemporaryFileTemplate(const char *basename) /*{{{*/ Also, as gpgv has no options to enforce a certain reduced style of clear-signed files (=the complete content of the file is signed and the content isn't encoded) we do a divide and conquer approach here + and split up the clear-signed file in message and signature for gpgv */ void ExecGPGV(std::string const &File, std::string const &FileGPG, int const &statusfd, int fd[2]) @@ -108,8 +109,6 @@ void ExecGPGV(std::string const &File, std::string const &FileGPG, } } - int sigFd = -1; - int dataFd = -1; std::vector dataHeader; char * sig = NULL; char * data = NULL; @@ -126,17 +125,29 @@ void ExecGPGV(std::string const &File, std::string const &FileGPG, data = GenerateTemporaryFileTemplate("apt.data"); if (sig == NULL || data == NULL) { + ioprintf(std::cerr, "Couldn't create tempfile names for splitting up %s", File.c_str()); + exit(EINTERNAL); + } + + int const sigFd = mkstemp(sig); + int const dataFd = mkstemp(data); + if (sigFd == -1 || dataFd == -1) + { + if (dataFd != -1) + unlink(sig); + if (sigFd != -1) + unlink(data); ioprintf(std::cerr, "Couldn't create tempfiles for splitting up %s", File.c_str()); exit(EINTERNAL); } - sigFd = mkstemp(sig); - dataFd = mkstemp(data); - int const duppedSigFd = dup(sigFd); - int const duppedDataFd = dup(dataFd); + FileFd signature; + signature.OpenDescriptor(sigFd, FileFd::WriteOnly, true); + FileFd message; + message.OpenDescriptor(dataFd, FileFd::WriteOnly, true); - if (dataFd == -1 || sigFd == -1 || duppedDataFd == -1 || duppedSigFd == -1 || - SplitClearSignedFile(File, duppedDataFd, &dataHeader, duppedSigFd) == false) + if (signature.Failed() == true || message.Failed() == true || + SplitClearSignedFile(File, &message, &dataHeader, &signature) == false) { if (dataFd != -1) unlink(sig); @@ -145,8 +156,6 @@ void ExecGPGV(std::string const &File, std::string const &FileGPG, ioprintf(std::cerr, "Splitting up %s into data and signature failed", File.c_str()); exit(EINTERNAL); } - lseek(dataFd, 0, SEEK_SET); - lseek(sigFd, 0, SEEK_SET); Args.push_back(sig); Args.push_back(data); } @@ -242,36 +251,13 @@ void ExecGPGV(std::string const &File, std::string const &FileGPG, } /*}}}*/ // SplitClearSignedFile - split message into data/signature /*{{{*/ -bool SplitClearSignedFile(std::string const &InFile, int const ContentFile, - std::vector * const ContentHeader, int const SignatureFile) +bool SplitClearSignedFile(std::string const &InFile, FileFd * const ContentFile, + std::vector * const ContentHeader, FileFd * const SignatureFile) { FILE *in = fopen(InFile.c_str(), "r"); if (in == NULL) return _error->Errno("fopen", "can not open %s", InFile.c_str()); - FILE *out_content = NULL; - FILE *out_signature = NULL; - if (ContentFile != -1) - { - out_content = fdopen(ContentFile, "w"); - if (out_content == NULL) - { - fclose(in); - return _error->Errno("fdopen", "Failed to open file to write content to from %s", InFile.c_str()); - } - } - if (SignatureFile != -1) - { - out_signature = fdopen(SignatureFile, "w"); - if (out_signature == NULL) - { - fclose(in); - if (out_content != NULL) - fclose(out_content); - return _error->Errno("fdopen", "Failed to open file to write signature to from %s", InFile.c_str()); - } - } - bool found_message_start = false; bool found_message_end = false; bool skip_until_empty_line = false; @@ -280,7 +266,8 @@ bool SplitClearSignedFile(std::string const &InFile, int const ContentFile, char *buf = NULL; size_t buf_size = 0; - while (getline(&buf, &buf_size, in) != -1) + ssize_t line_len = 0; + while ((line_len = getline(&buf, &buf_size, in)) != -1) { _strrstrip(buf); if (found_message_start == false) @@ -305,35 +292,40 @@ bool SplitClearSignedFile(std::string const &InFile, int const ContentFile, { found_signature = true; found_message_end = true; - if (out_signature != NULL) - fprintf(out_signature, "%s\n", buf); + if (SignatureFile != NULL) + { + SignatureFile->Write(buf, strlen(buf)); + SignatureFile->Write("\n", 1); + } } else if (found_message_end == false) { // we are in the message block if(first_line == true) // first line does not need a newline { - if (out_content != NULL) - fprintf(out_content, "%s", buf); + if (ContentFile != NULL) + ContentFile->Write(buf, strlen(buf)); first_line = false; } - else if (out_content != NULL) - fprintf(out_content, "\n%s", buf); + else if (ContentFile != NULL) + { + ContentFile->Write("\n", 1); + ContentFile->Write(buf, strlen(buf)); + } } } else if (found_signature == true) { - if (out_signature != NULL) - fprintf(out_signature, "%s\n", buf); + if (SignatureFile != NULL) + { + SignatureFile->Write(buf, strlen(buf)); + SignatureFile->Write("\n", 1); + } if (strcmp(buf, "-----END PGP SIGNATURE-----") == 0) found_signature = false; // look for other signatures } // all the rest is whitespace, unsigned garbage or additional message blocks we ignore } - if (out_content != NULL) - fclose(out_content); - if (out_signature != NULL) - fclose(out_signature); fclose(in); if (found_signature == true) @@ -363,17 +355,17 @@ bool OpenMaybeClearSignedFile(std::string const &ClearSignedFileName, FileFd &Me unlink(message); free(message); - int const duppedMsg = dup(messageFd); - if (duppedMsg == -1) - return _error->Errno("dup", "Couldn't duplicate FD to work with %s", ClearSignedFileName.c_str()); + MessageFile.OpenDescriptor(messageFd, FileFd::ReadWrite, true); + if (MessageFile.Failed() == true) + return _error->Error("Couldn't open temporary file to work with %s", ClearSignedFileName.c_str()); _error->PushToStack(); - bool const splitDone = SplitClearSignedFile(ClearSignedFileName.c_str(), messageFd, NULL, -1); + bool const splitDone = SplitClearSignedFile(ClearSignedFileName.c_str(), &MessageFile, NULL, NULL); bool const errorDone = _error->PendingError(); _error->MergeWithStack(); if (splitDone == false) { - close(duppedMsg); + MessageFile.Close(); if (errorDone == true) return false; @@ -383,9 +375,8 @@ bool OpenMaybeClearSignedFile(std::string const &ClearSignedFileName, FileFd &Me } else // clear-signed { - if (lseek(duppedMsg, 0, SEEK_SET) < 0) - return _error->Errno("lseek", "Unable to seek back in message fd for file %s", ClearSignedFileName.c_str()); - MessageFile.OpenDescriptor(duppedMsg, FileFd::ReadOnly, true); + if (MessageFile.Seek(0) == false) + return _error->Errno("lseek", "Unable to seek back in message for file %s", ClearSignedFileName.c_str()); } return MessageFile.Failed() == false; diff --git a/apt-pkg/contrib/gpgv.h b/apt-pkg/contrib/gpgv.h index 8cbe553bc..1f877fc2d 100644 --- a/apt-pkg/contrib/gpgv.h +++ b/apt-pkg/contrib/gpgv.h @@ -48,8 +48,8 @@ inline void ExecGPGV(std::string const &File, std::string const &FileSig, * whitespaces are discarded. The resulting files are suitable to * be checked with gpgv. * - * If one or all Fds are -1 they will not be used and the content - * which would have been written to them is discarded. + * If a FileFd pointers is NULL it will not be used and the content + * which would have been written to it is silently discarded. * * The code doesn't support dash-encoded lines as these are not * expected to be present in files we have to deal with. @@ -61,13 +61,13 @@ inline void ExecGPGV(std::string const &File, std::string const &FileSig, * not generate an error message. * * @param InFile is the clear-signed file - * @param ContentFile is the Fd the message will be written to + * @param ContentFile is the FileFd the message will be written to * @param ContentHeader is a list of all required Amored Headers for the message - * @param SignatureFile is the Fd all signatures will be written to + * @param SignatureFile is the FileFd all signatures will be written to * @return true if the splitting was successful, false otherwise */ -bool SplitClearSignedFile(std::string const &InFile, int const ContentFile, - std::vector * const ContentHeader, int const SignatureFile); +bool SplitClearSignedFile(std::string const &InFile, FileFd * const ContentFile, + std::vector * const ContentHeader, FileFd * const SignatureFile); /** \brief open a file which might be clear-signed * -- cgit v1.2.3 From cb32348956441e33733e6bd8c2c572f19600dc25 Mon Sep 17 00:00:00 2001 From: David Kalnischkies Date: Tue, 19 Mar 2013 12:37:50 +0100 Subject: support dash-escaped text in clearsigned files as implementations are free to escape all lines (we have no lines in our files which need to be escaped as these would be invalid fieldnames) and while ExecGPGV would detect dash-escaped text as invalid (as its not expected in messages with detached signatures) it would be possible to "comment" lines in (signed) dsc files which are only parsed but not verified --- apt-pkg/contrib/gpgv.cc | 23 ++++++++++++----------- apt-pkg/contrib/gpgv.h | 3 --- 2 files changed, 12 insertions(+), 14 deletions(-) diff --git a/apt-pkg/contrib/gpgv.cc b/apt-pkg/contrib/gpgv.cc index 54cc4c6d0..ba059dd87 100644 --- a/apt-pkg/contrib/gpgv.cc +++ b/apt-pkg/contrib/gpgv.cc @@ -298,20 +298,21 @@ bool SplitClearSignedFile(std::string const &InFile, FileFd * const ContentFile, SignatureFile->Write("\n", 1); } } - else if (found_message_end == false) + else if (found_message_end == false) // we are in the message block { - // we are in the message block + // we don't have any fields which need dash-escaped, + // but implementations are free to encode all lines … + char const * dashfree = buf; + if (strncmp(dashfree, "- ", 2) == 0) + dashfree += 2; if(first_line == true) // first line does not need a newline - { - if (ContentFile != NULL) - ContentFile->Write(buf, strlen(buf)); first_line = false; - } else if (ContentFile != NULL) - { ContentFile->Write("\n", 1); - ContentFile->Write(buf, strlen(buf)); - } + else + continue; + if (ContentFile != NULL) + ContentFile->Write(dashfree, strlen(dashfree)); } } else if (found_signature == true) @@ -333,10 +334,10 @@ bool SplitClearSignedFile(std::string const &InFile, FileFd * const ContentFile, // if we haven't found any of them, this an unsigned file, // so don't generate an error, but splitting was unsuccessful none-the-less - if (found_message_start == false && found_message_end == false) + if (first_line == true && found_message_start == false && found_message_end == false) return false; // otherwise one missing indicates a syntax error - else if (found_message_start == false || found_message_end == false) + else if (first_line == false || found_message_start == false || found_message_end == false) return _error->Error("Splitting of file %s failed as it doesn't contain all expected parts", InFile.c_str()); return true; diff --git a/apt-pkg/contrib/gpgv.h b/apt-pkg/contrib/gpgv.h index 1f877fc2d..08b10a97a 100644 --- a/apt-pkg/contrib/gpgv.h +++ b/apt-pkg/contrib/gpgv.h @@ -51,9 +51,6 @@ inline void ExecGPGV(std::string const &File, std::string const &FileSig, * If a FileFd pointers is NULL it will not be used and the content * which would have been written to it is silently discarded. * - * The code doesn't support dash-encoded lines as these are not - * expected to be present in files we have to deal with. - * * The content of the split files is undefined if the splitting was * unsuccessful. * -- cgit v1.2.3 From 231232ec8aa183421669ee7d984434028db7f97d Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Wed, 20 Mar 2013 12:17:05 +0100 Subject: apt-pkg/edsp.cc: do not spam stderr in WriteSolution --- apt-pkg/edsp.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apt-pkg/edsp.cc b/apt-pkg/edsp.cc index 6ce9da784..b125d4bfb 100644 --- a/apt-pkg/edsp.cc +++ b/apt-pkg/edsp.cc @@ -474,8 +474,10 @@ bool EDSP::WriteSolution(pkgDepCache &Cache, FILE* output) { fprintf(output, "Autoremove: %d\n", Pkg.CurrentVer()->ID); if (Debug == true) + { fprintf(output, "Package: %s\nVersion: %s\n", Pkg.FullName().c_str(), Pkg.CurrentVer().VerStr()); fprintf(stderr, "Autoremove: %s\nVersion: %s\n", Pkg.FullName().c_str(), Pkg.CurrentVer().VerStr()); + } } else continue; -- cgit v1.2.3 From b830da6163c6a55c8f12c219a6d00c7a479338da Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Wed, 20 Mar 2013 12:18:16 +0100 Subject: apt-pkg/edsp.cc: do not use stderr in WriteSolution at all --- apt-pkg/edsp.cc | 3 --- 1 file changed, 3 deletions(-) diff --git a/apt-pkg/edsp.cc b/apt-pkg/edsp.cc index b125d4bfb..e90598392 100644 --- a/apt-pkg/edsp.cc +++ b/apt-pkg/edsp.cc @@ -474,10 +474,7 @@ bool EDSP::WriteSolution(pkgDepCache &Cache, FILE* output) { fprintf(output, "Autoremove: %d\n", Pkg.CurrentVer()->ID); if (Debug == true) - { fprintf(output, "Package: %s\nVersion: %s\n", Pkg.FullName().c_str(), Pkg.CurrentVer().VerStr()); - fprintf(stderr, "Autoremove: %s\nVersion: %s\n", Pkg.FullName().c_str(), Pkg.CurrentVer().VerStr()); - } } else continue; -- cgit v1.2.3 From 945d2a8aeecf844137843265e72d7991f77c3353 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Thu, 21 Mar 2013 16:18:58 +0100 Subject: merge patch from Colin to fix error message from getaddrinfo() (#703603) --- debian/changelog | 5 +++++ methods/connect.cc | 3 +++ 2 files changed, 8 insertions(+) diff --git a/debian/changelog b/debian/changelog index 2a86d688a..68dd8c395 100644 --- a/debian/changelog +++ b/debian/changelog @@ -8,6 +8,11 @@ apt (0.9.7.8~exp3) UNRELEASEDexperimental; urgency=low * test/integration/framework: - continue after test failure but preserve exit status + [ Colin Watson ] + * methods/connect.cc: + - provide useful error message in case of EAI_SYSTEM + (closes: #703603) + -- Michael Vogt Sun, 17 Mar 2013 19:46:23 +0100 apt (0.9.7.8~exp2) experimental; urgency=low diff --git a/methods/connect.cc b/methods/connect.cc index 9a092a43c..3573d3cbf 100644 --- a/methods/connect.cc +++ b/methods/connect.cc @@ -197,6 +197,9 @@ bool Connect(std::string Host,int Port,const char *Service,int DefPort,int &Fd, return _error->Error(_("Temporary failure resolving '%s'"), Host.c_str()); } + if (Res == EAI_SYSTEM) + return _error->Error(_("System error resolving '%s:%s' (%s)"), + Host.c_str(),ServStr,strerror(errno)); return _error->Error(_("Something wicked happened resolving '%s:%s' (%i - %s)"), Host.c_str(),ServStr,Res,gai_strerror(Res)); } -- cgit v1.2.3 From ccd01d7e09ff595233d4ed6dff1a1c73bd2b5193 Mon Sep 17 00:00:00 2001 From: "bubulle@debian.org" <> Date: Fri, 22 Mar 2013 07:17:05 +0100 Subject: Turkish (Mert Dirik). Closes: #703526 --- debian/changelog | 3 + po/tr.po | 3494 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 3497 insertions(+) create mode 100644 po/tr.po diff --git a/debian/changelog b/debian/changelog index 68dd8c395..a4a0b4c6d 100644 --- a/debian/changelog +++ b/debian/changelog @@ -8,6 +8,9 @@ apt (0.9.7.8~exp3) UNRELEASEDexperimental; urgency=low * test/integration/framework: - continue after test failure but preserve exit status + [ Programs translation updates ] + * Turkish (Mert Dirik). Closes: #703526 + [ Colin Watson ] * methods/connect.cc: - provide useful error message in case of EAI_SYSTEM diff --git a/po/tr.po b/po/tr.po new file mode 100644 index 000000000..a502f9e54 --- /dev/null +++ b/po/tr.po @@ -0,0 +1,3494 @@ +# Turkish translation for apt +# Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 +# Copyright (c) 2013 Debian L10n Turkish 2013 +# Mert Dirik , 2013. +# This file is distributed under the same license as the apt package. +# Rosetta Contributors, 2009. +msgid "" +msgstr "" +"Project-Id-Version: apt\n" +"Report-Msgid-Bugs-To: APT Development Team \n" +"POT-Creation-Date: 2012-10-15 09:49+0200\n" +"PO-Revision-Date: 2013-02-18 03:41+0200\n" +"Last-Translator: Mert Dirik \n" +"Language-Team: Debian l10n Turkish\n" +"Language: tr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n>1);\n" +"X-Generator: Poedit 1.5.5\n" +"X-Launchpad-Export-Date: 2013-02-04 12:16+0000\n" + +#: cmdline/apt-cache.cc:158 +#, c-format +msgid "Package %s version %s has an unmet dep:\n" +msgstr "%s paketinin (sürüm %s) karşılanamayan bir bağımlılığı var:\n" + +#: cmdline/apt-cache.cc:286 +msgid "Total package names: " +msgstr "Toplam paketlerin adları: " + +#: cmdline/apt-cache.cc:288 +msgid "Total package structures: " +msgstr "Toplam paket yapıları: " + +#: cmdline/apt-cache.cc:328 +msgid " Normal packages: " +msgstr " Normal paketler: " + +#: cmdline/apt-cache.cc:329 +msgid " Pure virtual packages: " +msgstr " Saf sanal paketler: " + +#: cmdline/apt-cache.cc:330 +msgid " Single virtual packages: " +msgstr " Tekil sanal paketler: " + +#: cmdline/apt-cache.cc:331 +msgid " Mixed virtual packages: " +msgstr " Karışık sanal paketler: " + +#: cmdline/apt-cache.cc:332 +msgid " Missing: " +msgstr " Eksik: " + +#: cmdline/apt-cache.cc:334 +msgid "Total distinct versions: " +msgstr "Toplam farklı sürümler: " + +#: cmdline/apt-cache.cc:336 +msgid "Total distinct descriptions: " +msgstr "Toplam farklı açıklamalar: " + +#: cmdline/apt-cache.cc:338 +msgid "Total dependencies: " +msgstr "Toplam bağımlılıklar: " + +#: cmdline/apt-cache.cc:341 +msgid "Total ver/file relations: " +msgstr "Toplam sürüm/dosya ilişkileri: " + +#: cmdline/apt-cache.cc:343 +msgid "Total Desc/File relations: " +msgstr "Toplam Tanım/Dosya ilişkileri: " + +#: cmdline/apt-cache.cc:345 +msgid "Total Provides mappings: " +msgstr "Toplam destekleme eşleştirmeleri: " + +#: cmdline/apt-cache.cc:357 +msgid "Total globbed strings: " +msgstr "Toplam birikmiş dizgiler: " + +#: cmdline/apt-cache.cc:371 +msgid "Total dependency version space: " +msgstr "Toplam bağlımlık sürümü alanı: " + +#: cmdline/apt-cache.cc:376 +msgid "Total slack space: " +msgstr "Toplam serbest alan: " + +#: cmdline/apt-cache.cc:384 +msgid "Total space accounted for: " +msgstr "Hesaplanan toplam alan: " + +#: cmdline/apt-cache.cc:515 cmdline/apt-cache.cc:1147 +#, c-format +msgid "Package file %s is out of sync." +msgstr "%s paket dosyası eşzamansız." + +#: cmdline/apt-cache.cc:593 cmdline/apt-cache.cc:1382 +#: cmdline/apt-cache.cc:1384 cmdline/apt-cache.cc:1461 cmdline/apt-mark.cc:46 +#: cmdline/apt-mark.cc:93 cmdline/apt-mark.cc:219 +msgid "No packages found" +msgstr "Hiç paket bulunamadı" + +#: cmdline/apt-cache.cc:1226 +msgid "You must give at least one search pattern" +msgstr "En az bir arama örüntüsü vermelisiniz" + +#: cmdline/apt-cache.cc:1361 +msgid "This command is deprecated. Please use 'apt-mark showauto' instead." +msgstr "" +"Bu komutun kullanımı bırakılmıştır. Lütfen bunun yerine 'apt-mark showauto' " +"komutunu kullanın." + +#: cmdline/apt-cache.cc:1456 apt-pkg/cacheset.cc:510 +#, c-format +msgid "Unable to locate package %s" +msgstr "%s paketi bulunamadı" + +#: cmdline/apt-cache.cc:1486 +msgid "Package files:" +msgstr "Paket dosyaları:" + +#: cmdline/apt-cache.cc:1493 cmdline/apt-cache.cc:1584 +msgid "Cache is out of sync, can't x-ref a package file" +msgstr "Önbellek eşzamanlı değil, paket dosyası 'x-ref' yapılamıyor." + +#. Show any packages have explicit pins +#: cmdline/apt-cache.cc:1507 +msgid "Pinned packages:" +msgstr "Sabitlenmiş paketler:" + +#: cmdline/apt-cache.cc:1519 cmdline/apt-cache.cc:1564 +msgid "(not found)" +msgstr "(bulunamadı)" + +#: cmdline/apt-cache.cc:1527 +msgid " Installed: " +msgstr " Kurulu: " + +#: cmdline/apt-cache.cc:1528 +msgid " Candidate: " +msgstr " Aday: " + +#: cmdline/apt-cache.cc:1546 cmdline/apt-cache.cc:1554 +msgid "(none)" +msgstr "(hiçbiri)" + +#: cmdline/apt-cache.cc:1561 +msgid " Package pin: " +msgstr " Paket sabitleme: " + +#. Show the priority tables +#: cmdline/apt-cache.cc:1570 +msgid " Version table:" +msgstr " Sürüm çizelgesi:" + +#: cmdline/apt-cache.cc:1683 cmdline/apt-cdrom.cc:198 cmdline/apt-config.cc:81 +#: cmdline/apt-get.cc:3361 cmdline/apt-mark.cc:375 +#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:590 +#: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147 +#, c-format +msgid "%s %s for %s compiled on %s %s\n" +msgstr "%s %s (%s için) %s %s tarihinde derlendi\n" + +#: cmdline/apt-cache.cc:1690 +msgid "" +"Usage: apt-cache [options] command\n" +" apt-cache [options] showpkg pkg1 [pkg2 ...]\n" +" apt-cache [options] showsrc pkg1 [pkg2 ...]\n" +"\n" +"apt-cache is a low-level tool used to query information\n" +"from APT's binary cache files\n" +"\n" +"Commands:\n" +" gencaches - Build both the package and source cache\n" +" showpkg - Show some general information for a single package\n" +" showsrc - Show source records\n" +" stats - Show some basic statistics\n" +" dump - Show the entire file in a terse form\n" +" dumpavail - Print an available file to stdout\n" +" unmet - Show unmet dependencies\n" +" search - Search the package list for a regex pattern\n" +" show - Show a readable record for the package\n" +" depends - Show raw dependency information for a package\n" +" rdepends - Show reverse dependency information for a package\n" +" pkgnames - List the names of all packages in the system\n" +" dotty - Generate package graphs for GraphViz\n" +" xvcg - Generate package graphs for xvcg\n" +" policy - Show policy settings\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -p=? The package cache.\n" +" -s=? The source cache.\n" +" -q Disable progress indicator.\n" +" -i Show only important deps for the unmet command.\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" +msgstr "" +"Kullanım: apt-cache [seçenekler] komut\n" +" apt-cache [seçenekler] showpkg paket1 [paket2 ...]\n" +" apt-cache [seçenekler] showsrc paket1 [paket2 ...]\n" +"\n" +"apt-cache APT'nin ikili paket önbelleğindeki dosyaları\n" +"sorgulamakta kullanılan alt seviye bir araçtır.\n" +"\n" +"Komutlar:\n" +" gencaches - Hem paket hem de kaynak önbelleğini oluştur\n" +" showpkg - Tek bir paket hakkındaki genel bilgileri görüntüle\n" +" showsrc - Paket kayıtlarını görüntüle\n" +" stats - Bir takım basit istatistikleri görüntüle\n" +" dump - Bütün dosyayı kısa biçimde görüntüle\n" +" dumpavail - Uygun bir dosyayı standart çıktıya yazdır\n" +" unmet - Karşılanmayan bağımlılıkları görüntüle\n" +" search - Paket listesini bir düzenli ifade ile ara\n" +" show - Bir paketin okunabilir kaydını görüntüle\n" +" depends - Bir paketin bağımlılık bilgilerini ham haliyle görüntüle\n" +" rdepends - Bir paketin ters bağımlılık bilgilerini görüntüle\n" +" pkgnames - Sistemdeki tüm paketlerin adlarını listele\n" +" dotty - GraphViz için paket grafikleri üret\n" +" xvcg - xvcg için paket grafikleri üret\n" +" policy - İlke seçeneklerini görüntüle\n" +"\n" +"Options:\n" +" -h Bu yardım metni.\n" +" -p=? Paket önbelleği.\n" +" -s=? Kaynak önbelleği.\n" +" -q İlerleme göstergesini kapat.\n" +" -i unmet komutunda yalnızca önemli bağımlılıkları görüntüle.\n" +" -c=? Belirtilen yapılandırma dosyasını kullan\n" +" -o=? Herhangi bir yapılandırma seçeneğini ayarla, örneğin -o dir::cache=/" +"tmp\n" +"Ayrıntılı bilgi için apt-cache(8) ve apt.conf(5) rehber sayfalarına göz " +"atın.\n" + +#: cmdline/apt-cdrom.cc:79 +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" +msgstr "Lütfen bu CD/DVD'ye bir isim verin, örneğin 'Debian 5.0.3 Disk 1'" + +#: cmdline/apt-cdrom.cc:94 +msgid "Please insert a Disc in the drive and press enter" +msgstr "Lütfen sürücüye bir Disk yerleştirin ve giriş tuşuna (Enter) basın" + +#: cmdline/apt-cdrom.cc:129 +#, c-format +msgid "Failed to mount '%s' to '%s'" +msgstr "'%s', '%s' konumuna bağlanamadı" + +#: cmdline/apt-cdrom.cc:163 +msgid "Repeat this process for the rest of the CDs in your set." +msgstr "Kalan CD'leriniz için bu işlemi yineleyin." + +#: cmdline/apt-config.cc:46 +msgid "Arguments not in pairs" +msgstr "Değişkenler (argüman) çiftler halinde değil" + +#: cmdline/apt-config.cc:87 +msgid "" +"Usage: apt-config [options] command\n" +"\n" +"apt-config is a simple tool to read the APT config file\n" +"\n" +"Commands:\n" +" shell - Shell mode\n" +" dump - Show the configuration\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +msgstr "" +"Kullanım: apt-config [seçenekler] komut\n" +"\n" +"apt-config, APT ayar dosyasını okumaya yarayan basit bir araçtır\n" +"\n" +"Komutlar:\n" +" shell - Kabuk kipi\n" +" dump - Ayarları görüntüle\n" +"\n" +"Seçenekler:\n" +" -h Bu yardım dosyası.\n" +" -c=? Belirtilen ayar dosyasını görüntüler\n" +" -o=? İsteğe bağlı ayar seçeneği belirtmenizi sağlar, örneğin -o dir::" +"cache=/tmp\n" + +#: cmdline/apt-get.cc:135 +msgid "Y" +msgstr "E" + +#: cmdline/apt-get.cc:140 +msgid "N" +msgstr "H" + +#: cmdline/apt-get.cc:162 apt-pkg/cachefilter.cc:33 +#, c-format +msgid "Regex compilation error - %s" +msgstr "Regex derleme hatası - %s" + +#: cmdline/apt-get.cc:260 +msgid "The following packages have unmet dependencies:" +msgstr "Aşağıdaki paketler karşılanmamış bağımlılıklara sahip:" + +#: cmdline/apt-get.cc:350 +#, c-format +msgid "but %s is installed" +msgstr "ama %s kurulu" + +#: cmdline/apt-get.cc:352 +#, c-format +msgid "but %s is to be installed" +msgstr "ama %s kurulacak" + +#: cmdline/apt-get.cc:359 +msgid "but it is not installable" +msgstr "ama kurulabilir değil" + +#: cmdline/apt-get.cc:361 +msgid "but it is a virtual package" +msgstr "ama o bir sanal paket" + +#: cmdline/apt-get.cc:364 +msgid "but it is not installed" +msgstr "ama kurulu değil" + +#: cmdline/apt-get.cc:364 +msgid "but it is not going to be installed" +msgstr "ama kurulmayacak" + +#: cmdline/apt-get.cc:369 +msgid " or" +msgstr " ya da" + +#: cmdline/apt-get.cc:398 +msgid "The following NEW packages will be installed:" +msgstr "Aşağıdaki YENİ paketler kurulacak:" + +#: cmdline/apt-get.cc:424 +msgid "The following packages will be REMOVED:" +msgstr "Aşağıdaki paketler KALDIRILACAK:" + +#: cmdline/apt-get.cc:446 +msgid "The following packages have been kept back:" +msgstr "Aşağıdaki paketlerin mevcut durumları korunacak:" + +#: cmdline/apt-get.cc:467 +msgid "The following packages will be upgraded:" +msgstr "Aşağıdaki paketler yükseltilecek:" + +#: cmdline/apt-get.cc:488 +msgid "The following packages will be DOWNGRADED:" +msgstr "Aşağıdaki paketlerin SÜRÜMLERİ DÜŞÜRÜLECEK:" + +#: cmdline/apt-get.cc:508 +msgid "The following held packages will be changed:" +msgstr "Aşağıdaki eski sürümlerinde tutulan paketler değiştirilecek:" + +#: cmdline/apt-get.cc:563 +#, c-format +msgid "%s (due to %s) " +msgstr "%s (%s nedeniyle) " + +#: cmdline/apt-get.cc:571 +msgid "" +"WARNING: The following essential packages will be removed.\n" +"This should NOT be done unless you know exactly what you are doing!" +msgstr "" +"UYARI: Aşağıdaki temel paketler kaldırılacak.\n" +"Bu işlem ne yaptığınızı tam olarak bilmediğiniz takdirde YAPILMAMALIDIR!" + +#: cmdline/apt-get.cc:602 +#, c-format +msgid "%lu upgraded, %lu newly installed, " +msgstr "%lu paket yükseltilecek, %lu yeni paket kurulacak, " + +#: cmdline/apt-get.cc:606 +#, c-format +msgid "%lu reinstalled, " +msgstr "%lu paket yeniden kurulacak, " + +#: cmdline/apt-get.cc:608 +#, c-format +msgid "%lu downgraded, " +msgstr "%lu paketin sürümü düşürülecek, " + +#: cmdline/apt-get.cc:610 +#, c-format +msgid "%lu to remove and %lu not upgraded.\n" +msgstr "%lu paket kaldırılacak ve %lu paket yükseltilmeyecek.\n" + +#: cmdline/apt-get.cc:614 +#, c-format +msgid "%lu not fully installed or removed.\n" +msgstr "%lu paket tam olarak kurulmayacak ya da kaldırılmayacak.\n" + +#: cmdline/apt-get.cc:635 +#, c-format +msgid "Note, selecting '%s' for task '%s'\n" +msgstr "Bilgi, '%2$s' görevi için '%1$s' seçiliyor\n" + +#: cmdline/apt-get.cc:640 +#, c-format +msgid "Note, selecting '%s' for regex '%s'\n" +msgstr "Bilgi, '%2$s' düzenli ifadesi için '%1$s' seçiliyor\n" + +#: cmdline/apt-get.cc:657 +#, c-format +msgid "Package %s is a virtual package provided by:\n" +msgstr "%s paketi sanal bir pakettir, bu paketi sağlayan:\n" + +#: cmdline/apt-get.cc:668 +msgid " [Installed]" +msgstr " [Kuruldu]" + +#: cmdline/apt-get.cc:677 +msgid " [Not candidate version]" +msgstr " [Aday sürüm değil]" + +#: cmdline/apt-get.cc:679 +msgid "You should explicitly select one to install." +msgstr "Kurmak için adaylardan birini açıkça seçmelisiniz." + +#: cmdline/apt-get.cc:682 +#, c-format +msgid "" +"Package %s is not available, but is referred to by another package.\n" +"This may mean that the package is missing, has been obsoleted, or\n" +"is only available from another source\n" +msgstr "" +"%s paketi mevcut değil, ancak başka paket içerisinden işaret edilmiş.\n" +"Bu durum bu paketin kayıp, eskidiği için bırakılmış, ya da başka bir\n" +"yazılım kaynağında bulunduğu anlamına gelebilir.\n" + +#: cmdline/apt-get.cc:700 +msgid "However the following packages replace it:" +msgstr "Yine de aşağıdaki paketler onun yerine geçecek:" + +#: cmdline/apt-get.cc:712 +#, c-format +msgid "Package '%s' has no installation candidate" +msgstr "'%s' paketi için kurulum adayı yok" + +#: cmdline/apt-get.cc:725 +#, c-format +msgid "Virtual packages like '%s' can't be removed\n" +msgstr "'%s' gibi sanal paketler kaldırılamaz\n" + +#. TRANSLATORS: Note, this is not an interactive question +#: cmdline/apt-get.cc:737 cmdline/apt-get.cc:940 +#, c-format +msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n" +msgstr "" +"'%s' kurulu değildi, dolayısıyla kaldırılmadı. Bunu mu demek istediniz: " +"'%s'?\n" + +#: cmdline/apt-get.cc:743 cmdline/apt-get.cc:946 +#, c-format +msgid "Package '%s' is not installed, so not removed\n" +msgstr "'%s' kurulu değildi, dolayısıyla kaldırılmadı.\n" + +#: cmdline/apt-get.cc:788 +#, c-format +msgid "Note, selecting '%s' instead of '%s'\n" +msgstr "Bilgi, '%2$s' yerine '%1$s' seçiliyor\n" + +#: cmdline/apt-get.cc:818 +#, c-format +msgid "Skipping %s, it is already installed and upgrade is not set.\n" +msgstr "%s atlanıyor, bu paket zaten kurulu ve yükseltme seçilmemiş.\n" + +#: cmdline/apt-get.cc:822 +#, c-format +msgid "Skipping %s, it is not installed and only upgrades are requested.\n" +msgstr "" +"%s atlanıyor, bu paket kurulu değil ve sadece yükseltmeler isteniyor.\n" + +#: cmdline/apt-get.cc:834 +#, c-format +msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" +msgstr "" +"%s paketinin yeniden kurulumu mümkün değil, çünkü paket internetten " +"indirilemedi.\n" + +#: cmdline/apt-get.cc:839 +#, c-format +msgid "%s is already the newest version.\n" +msgstr "%s zaten en yeni sürümde.\n" + +#: cmdline/apt-get.cc:858 cmdline/apt-get.cc:2157 cmdline/apt-mark.cc:68 +#, c-format +msgid "%s set to manually installed.\n" +msgstr "%s elle kurulmuş olarak ayarlı.\n" + +#: cmdline/apt-get.cc:884 +#, c-format +msgid "Selected version '%s' (%s) for '%s'\n" +msgstr "'%3$s' paketinin '%1$s' (%2$s) sürümü seçildi\n" + +#: cmdline/apt-get.cc:889 +#, c-format +msgid "Selected version '%s' (%s) for '%s' because of '%s'\n" +msgstr "'%4$s' nedeniyle '%3$s' paketinin '%1$s' (%2$s) sürümü seçildi\n" + +#: cmdline/apt-get.cc:1025 +msgid "Correcting dependencies..." +msgstr "Bağımlılıklar düzeltiliyor..." + +#: cmdline/apt-get.cc:1028 +msgid " failed." +msgstr " başarısız oldu." + +#: cmdline/apt-get.cc:1031 +msgid "Unable to correct dependencies" +msgstr "Bağımlılıklar düzeltilemedi" + +#: cmdline/apt-get.cc:1034 +msgid "Unable to minimize the upgrade set" +msgstr "Yükseltme kümesi küçültülemiyor" + +#: cmdline/apt-get.cc:1036 +msgid " Done" +msgstr " Tamamlandı" + +#: cmdline/apt-get.cc:1040 +msgid "You might want to run 'apt-get -f install' to correct these." +msgstr "" +"Bu sorunları düzeltmek için 'apt-get -f install' komutunu çalıştırmanız " +"gerekebilir." + +#: cmdline/apt-get.cc:1043 +msgid "Unmet dependencies. Try using -f." +msgstr "Karşılanmayan bağımlılıklar. -f kullanmayı deneyin." + +#: cmdline/apt-get.cc:1068 +msgid "WARNING: The following packages cannot be authenticated!" +msgstr "UYARI: Aşağıdaki paketler doğrulanamıyor!" + +#: cmdline/apt-get.cc:1072 +msgid "Authentication warning overridden.\n" +msgstr "Kimlik denetimi uyarısı görmezden geliniyor.\n" + +#: cmdline/apt-get.cc:1079 +msgid "Install these packages without verification [y/N]? " +msgstr "Paketler doğrulanmadan kurulsun mu [e/H]? " + +#: cmdline/apt-get.cc:1081 +msgid "Some packages could not be authenticated" +msgstr "Bazı paketlerin kimlik denetimi yapılamadı" + +#: cmdline/apt-get.cc:1090 cmdline/apt-get.cc:1251 +msgid "There are problems and -y was used without --force-yes" +msgstr "Bazı sorunlar çıktı ve -y seçeneği, --force-yes olmadan kullanıldı" + +#: cmdline/apt-get.cc:1131 +msgid "Internal error, InstallPackages was called with broken packages!" +msgstr "İç hata, InstallPackages bozuk paketler ile çağrıldı!" + +#: cmdline/apt-get.cc:1140 +msgid "Packages need to be removed but remove is disabled." +msgstr "" +"Paketlerin kaldırılması gerekiyor ancak kaldırma işlemi devre dışı " +"bırakılmış." + +#: cmdline/apt-get.cc:1151 +msgid "Internal error, Ordering didn't finish" +msgstr "İç hata, Sıralama tamamlanamadı" + +#: cmdline/apt-get.cc:1189 +msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" +msgstr "" +"Ne kadar ilginç.. Boyutlar eşleşmedi, apt@packages.debian.org adresine " +"eposta atın." + +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1196 +#, c-format +msgid "Need to get %sB/%sB of archives.\n" +msgstr "%sB/%sB arşiv dosyası indirilecek.\n" + +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1201 +#, c-format +msgid "Need to get %sB of archives.\n" +msgstr "%sB arşiv dosyası indirilecek.\n" + +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1208 +#, c-format +msgid "After this operation, %sB of additional disk space will be used.\n" +msgstr "Bu işlem tamamlandıktan sonra %sB ek disk alanı kullanılacak.\n" + +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:1213 +#, c-format +msgid "After this operation, %sB disk space will be freed.\n" +msgstr "Bu işlem tamamlandıktan sonra %sB disk alanı boşalacak.\n" + +#: cmdline/apt-get.cc:1228 cmdline/apt-get.cc:1231 cmdline/apt-get.cc:2589 +#: cmdline/apt-get.cc:2592 +#, c-format +msgid "Couldn't determine free space in %s" +msgstr "%s içindeki boş alan miktarı belirlenemedi" + +#: cmdline/apt-get.cc:1241 +#, c-format +msgid "You don't have enough free space in %s." +msgstr "%s içinde yeterli boş alanınız yok." + +#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1277 +msgid "Trivial Only specified but this is not a trivial operation." +msgstr "" +"Yalnızca Önemsiz seçeneği ayarlandı, fakat bu önemsiz bir işlem bir değil." + +#: cmdline/apt-get.cc:1259 +msgid "Yes, do as I say!" +msgstr "Evet, söylediğim şekilde yap!" + +#: cmdline/apt-get.cc:1261 +#, c-format +msgid "" +"You are about to do something potentially harmful.\n" +"To continue type in the phrase '%s'\n" +" ?] " +msgstr "" +"Tehlikeli bir iş yapmak üzeresiniz.\n" +"Devam etmek için '%s' ifadesini yazınız\n" +" ?] " + +#: cmdline/apt-get.cc:1267 cmdline/apt-get.cc:1286 +msgid "Abort." +msgstr "Vazgeç." + +#: cmdline/apt-get.cc:1282 +msgid "Do you want to continue [Y/n]? " +msgstr "Devam etmek istiyor musunuz [E/h]? " + +#: cmdline/apt-get.cc:1354 cmdline/apt-get.cc:2654 apt-pkg/algorithms.cc:1548 +#, c-format +msgid "Failed to fetch %s %s\n" +msgstr "%s ağdan alınamadı. %s\n" + +#: cmdline/apt-get.cc:1372 +msgid "Some files failed to download" +msgstr "Bazı dosyalar indirilemedi" + +#: cmdline/apt-get.cc:1373 cmdline/apt-get.cc:2666 +msgid "Download complete and in download only mode" +msgstr "İndirme işlemi tamamlandı ve sadece indirme kipinde" + +#: cmdline/apt-get.cc:1379 +msgid "" +"Unable to fetch some archives, maybe run apt-get update or try with --fix-" +"missing?" +msgstr "" +"Bazı arşivler alınamıyor, apt-get update'i çalıştırmayı ya da --fix-missing " +"seçeneğini ekleyerek düzeltmeyi deneyin." + +#: cmdline/apt-get.cc:1383 +msgid "--fix-missing and media swapping is not currently supported" +msgstr "--fix-missing seçeneği ve ortam takası şu an için desteklenmiyor" + +#: cmdline/apt-get.cc:1388 +msgid "Unable to correct missing packages." +msgstr "Eksik paketler düzeltilemedi." + +#: cmdline/apt-get.cc:1389 +msgid "Aborting install." +msgstr "Kurulum iptal ediliyor." + +#: cmdline/apt-get.cc:1417 +msgid "" +"The following package disappeared from your system as\n" +"all files have been overwritten by other packages:" +msgid_plural "" +"The following packages disappeared from your system as\n" +"all files have been overwritten by other packages:" +msgstr[0] "" +"Tüm dosyalarının üzerine yazıldığı için aşağıdaki paket\n" +"sisteminizden kayboldu:" +msgstr[1] "" +"Tüm dosyalarının üzerine yazıldığı için aşağıdaki paketler\n" +"sisteminizden kayboldu:" + +#: cmdline/apt-get.cc:1421 +msgid "Note: This is done automatically and on purpose by dpkg." +msgstr "Not: Bu eylem dpkg tarafından otomatik ve kasıtlı olarak yapılmıştır." + +#: cmdline/apt-get.cc:1559 +#, c-format +msgid "Ignore unavailable target release '%s' of package '%s'" +msgstr "Mevcut olmayan hedef '%s' sürüm '%s' paketini ihmal et" + +#: cmdline/apt-get.cc:1591 +#, c-format +msgid "Picking '%s' as source package instead of '%s'\n" +msgstr "Kaynak paket olarak '%s' yerine '%s' kullanılacak\n" + +#. if (VerTag.empty() == false && Last == 0) +#: cmdline/apt-get.cc:1629 +#, c-format +msgid "Ignore unavailable version '%s' of package '%s'" +msgstr "'%2$s' paketinin mevcut olmayan '%1$s' sürümünü görmezden gel" + +#: cmdline/apt-get.cc:1645 +msgid "The update command takes no arguments" +msgstr "'update' komutu bağımsız değişken almamaktadır" + +#: cmdline/apt-get.cc:1711 +msgid "We are not supposed to delete stuff, can't start AutoRemover" +msgstr "Nesneleri silmemiz beklenemez, AutoRemover çalıştırılamıyor" + +#: cmdline/apt-get.cc:1815 +msgid "" +"Hmm, seems like the AutoRemover destroyed something which really\n" +"shouldn't happen. Please file a bug report against apt." +msgstr "" +"AutoRemover yapmaması gereken bir yıkıma\n" +"sebep oldu. Lütfen apt hakkında bir hata raporu doldurun." + +#. +#. if (Packages == 1) +#. { +#. c1out << endl; +#. c1out << +#. _("Since you only requested a single operation it is extremely likely that\n" +#. "the package is simply not installable and a bug report against\n" +#. "that package should be filed.") << endl; +#. } +#. +#: cmdline/apt-get.cc:1818 cmdline/apt-get.cc:1987 +msgid "The following information may help to resolve the situation:" +msgstr "Aşağıdaki bilgiler durumu çözmenize yardımcı olabilir:" + +#: cmdline/apt-get.cc:1822 +msgid "Internal Error, AutoRemover broke stuff" +msgstr "İç hata, AutoRemover bazı şeyleri bozdu" + +#: cmdline/apt-get.cc:1829 +msgid "" +"The following package was automatically installed and is no longer required:" +msgid_plural "" +"The following packages were automatically installed and are no longer " +"required:" +msgstr[0] "" +"Aşağıdaki paket otomatik olarak kurulmuş ve artık bu pakete gerek duyulmuyor:" +msgstr[1] "" +"Aşağıdaki paketler otomatik olarak kurulmuş ve artık bu paketlere gerek " +"duyulmuyor:" + +#: cmdline/apt-get.cc:1833 +#, c-format +msgid "%lu package was automatically installed and is no longer required.\n" +msgid_plural "" +"%lu packages were automatically installed and are no longer required.\n" +msgstr[0] "%lu paket otomatik olarak kurulmuş ve artık gerekli değil.\n" +msgstr[1] "%lu paket otomatik olarak kurulmuş ve artık gerekli değil.\n" + +#: cmdline/apt-get.cc:1835 +msgid "Use 'apt-get autoremove' to remove it." +msgid_plural "Use 'apt-get autoremove' to remove them." +msgstr[0] "Bu paketi kaldırmak için 'apt-get autoremove' komutunu kullanın." +msgstr[1] "Bu paketleri kaldırmak için 'apt-get autoremove' komutunu kullanın." + +#: cmdline/apt-get.cc:1854 +msgid "Internal error, AllUpgrade broke stuff" +msgstr "İç hata, AllUpgrade bazı şeyleri bozdu" + +#: cmdline/apt-get.cc:1953 +msgid "You might want to run 'apt-get -f install' to correct these:" +msgstr "" +"Bunları düzeltmek için 'apt-get -f install' komutunu çalıştırmanız " +"gerekebilir:" + +#: cmdline/apt-get.cc:1957 +msgid "" +"Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " +"solution)." +msgstr "" +"Karşılanmamış bağımlılıklar. 'apt-get -f install' komutunu paket seçeneği " +"vermeden deneyin (ya da bir çözüm belirtin)." + +#: cmdline/apt-get.cc:1972 +msgid "" +"Some packages could not be installed. This may mean that you have\n" +"requested an impossible situation or if you are using the unstable\n" +"distribution that some required packages have not yet been created\n" +"or been moved out of Incoming." +msgstr "" +"Bazı paketler kurulamadı. Bu durum, olanaksız bir durum istemiş\n" +"olduğunuzu ya da kararsız (unstable) dağıtımı kullandığınızı ve\n" +"bazı paketlerin henüz oluşturulamamış ya da oluşturulmakta\n" +"olduğunu gösterir." + +#: cmdline/apt-get.cc:1993 +msgid "Broken packages" +msgstr "Bozuk paketler" + +#: cmdline/apt-get.cc:2019 +msgid "The following extra packages will be installed:" +msgstr "Aşağıdaki ek paketler de kurulacak:" + +#: cmdline/apt-get.cc:2109 +msgid "Suggested packages:" +msgstr "Önerilen paketler:" + +#: cmdline/apt-get.cc:2110 +msgid "Recommended packages:" +msgstr "Tavsiye edilen paketler:" + +#: cmdline/apt-get.cc:2152 +#, c-format +msgid "Couldn't find package %s" +msgstr "%s paketi bulunamadı" + +#: cmdline/apt-get.cc:2159 cmdline/apt-mark.cc:70 +#, c-format +msgid "%s set to automatically installed.\n" +msgstr "%s otomatik olarak kurulmuş şekilde ayarlandı.\n" + +#: cmdline/apt-get.cc:2167 cmdline/apt-mark.cc:114 +msgid "" +"This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " +"instead." +msgstr "" +"Bu komut artık kullanılmamaktadır. Bunun yerine 'apt-mark auto' ve 'apt-mark " +"manual' kullanın." + +#: cmdline/apt-get.cc:2183 +msgid "Calculating upgrade... " +msgstr "Yükseltme hesaplanıyor... " + +#: cmdline/apt-get.cc:2186 methods/ftp.cc:711 methods/connect.cc:115 +msgid "Failed" +msgstr "Başarısız" + +#: cmdline/apt-get.cc:2191 +msgid "Done" +msgstr "Bitti" + +#: cmdline/apt-get.cc:2258 cmdline/apt-get.cc:2266 +msgid "Internal error, problem resolver broke stuff" +msgstr "İç hata, sorun çözücü nesneyi bozdu" + +#: cmdline/apt-get.cc:2294 cmdline/apt-get.cc:2330 +msgid "Unable to lock the download directory" +msgstr "İndirme dizini kilitlenemiyor" + +#: cmdline/apt-get.cc:2386 +#, c-format +msgid "Can't find a source to download version '%s' of '%s'" +msgstr "'%2$s' paketinin '%1$s' sürümü hiçbir kaynakta bulunamadı" + +#: cmdline/apt-get.cc:2391 +#, c-format +msgid "Downloading %s %s" +msgstr "İndiriliyor %s %s" + +#: cmdline/apt-get.cc:2451 +msgid "Must specify at least one package to fetch source for" +msgstr "Kaynağının indirileceği en az bir paket seçilmeli" + +#: cmdline/apt-get.cc:2491 cmdline/apt-get.cc:2803 +#, c-format +msgid "Unable to find a source package for %s" +msgstr "%s paketinin kaynak paketi bulunamadı" + +#: cmdline/apt-get.cc:2508 +#, c-format +msgid "" +"NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" +"%s\n" +msgstr "" +"NOT: '%s' paketlemesi '%s' sürüm kontrol sistemiyle aşağıdaki adreste " +"yapılmaktadır:\n" +"%s\n" + +#: cmdline/apt-get.cc:2513 +#, c-format +msgid "" +"Please use:\n" +"bzr branch %s\n" +"to retrieve the latest (possibly unreleased) updates to the package.\n" +msgstr "" +"Bu paketin en son (ve muhtemelen henüz yayımlanmamış olan)\n" +"sürümünü edinmek için lütfen:\n" +"bzr branch %s\n" +"komutunu kullanın.\n" + +#: cmdline/apt-get.cc:2566 +#, c-format +msgid "Skipping already downloaded file '%s'\n" +msgstr "Zaten indirilmiş olan '%s' dosyası atlanıyor\n" + +#: cmdline/apt-get.cc:2603 +#, c-format +msgid "You don't have enough free space in %s" +msgstr "%s üzerinde yeterli boş alan yok" + +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:2612 +#, c-format +msgid "Need to get %sB/%sB of source archives.\n" +msgstr "%sB/%sB kaynak arşivi indirilecek.\n" + +#. TRANSLATOR: The required space between number and unit is already included +#. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB +#: cmdline/apt-get.cc:2617 +#, c-format +msgid "Need to get %sB of source archives.\n" +msgstr "%sB kaynak arşivi indirilecek.\n" + +#: cmdline/apt-get.cc:2623 +#, c-format +msgid "Fetch source %s\n" +msgstr "%s kaynağını al\n" + +#: cmdline/apt-get.cc:2661 +msgid "Failed to fetch some archives." +msgstr "Bazı arşivler alınamadı." + +#: cmdline/apt-get.cc:2692 +#, c-format +msgid "Skipping unpack of already unpacked source in %s\n" +msgstr "%s için zaten açılmış bazı paketlerin açılması atlanıyor.\n" + +#: cmdline/apt-get.cc:2704 +#, c-format +msgid "Unpack command '%s' failed.\n" +msgstr "Paket açma komutu '%s' başarısız.\n" + +#: cmdline/apt-get.cc:2705 +#, c-format +msgid "Check if the 'dpkg-dev' package is installed.\n" +msgstr "'dpkg-dev' paketinin kurulu olduğundan emin olun.\n" + +#: cmdline/apt-get.cc:2727 +#, c-format +msgid "Build command '%s' failed.\n" +msgstr "İnşa komutu '%s' başarısız oldu.\n" + +#: cmdline/apt-get.cc:2747 +msgid "Child process failed" +msgstr "Alt süreç başarısız" + +#: cmdline/apt-get.cc:2766 +msgid "Must specify at least one package to check builddeps for" +msgstr "İnşa bağımlılıklarının denetleneceği en az bir paket belirtilmedilir" + +#: cmdline/apt-get.cc:2791 +#, c-format +msgid "" +"No architecture information available for %s. See apt.conf(5) APT::" +"Architectures for setup" +msgstr "" +"%s mimarisine uygun mimari bilgileri mevcut değil. Kurulumu için apt.conf(5) " +"rehber sayfasındaki APT::Architectures kısmına göz atın." + +#: cmdline/apt-get.cc:2815 cmdline/apt-get.cc:2818 +#, c-format +msgid "Unable to get build-dependency information for %s" +msgstr "%s paketinin inşa-bağımlılığı bilgisi alınamıyor" + +#: cmdline/apt-get.cc:2838 +#, c-format +msgid "%s has no build depends.\n" +msgstr "%s paketinin hiç inşa bağımlılığı yok.\n" + +#: cmdline/apt-get.cc:3008 +#, c-format +msgid "" +"%s dependency for %s can't be satisfied because %s is not allowed on '%s' " +"packages" +msgstr "" +"'%4$s' paketlerinde %3$s paketine izin verilmediği için %2$s kaynağının %1$s " +"bağımlılığı karşılanamıyor." + +#: cmdline/apt-get.cc:3026 +#, c-format +msgid "" +"%s dependency for %s cannot be satisfied because the package %s cannot be " +"found" +msgstr "" +"%2$s için %1$s bağımlılığı, %3$s paketi bulunamadığı için karşılanamadı." + +#: cmdline/apt-get.cc:3049 +#, c-format +msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" +msgstr "%2$s için %1$s bağımlılığı karşılanamadı: Kurulu %3$s paketi çok yeni." + +#: cmdline/apt-get.cc:3088 +#, c-format +msgid "" +"%s dependency for %s cannot be satisfied because candidate version of " +"package %s can't satisfy version requirements" +msgstr "" +"%2$s için %1$s bağımlılığı sağlanamıyor, çünkü %3$s paketinin aday sürümü " +"gerekli sürüm şartlarını karşılamıyor" + +#: cmdline/apt-get.cc:3094 +#, c-format +msgid "" +"%s dependency for %s cannot be satisfied because package %s has no candidate " +"version" +msgstr "" +"%2$s için %1$s bağımlılığı sağlanamıyor, çünkü %3$s paketinin aday sürümü yok" + +#: cmdline/apt-get.cc:3117 +#, c-format +msgid "Failed to satisfy %s dependency for %s: %s" +msgstr "%2$s için %1$s bağımlılığı karşılanamadı: %3$s" + +#: cmdline/apt-get.cc:3133 +#, c-format +msgid "Build-dependencies for %s could not be satisfied." +msgstr "%s için inşa bağımlılıkları karşılanamadı." + +#: cmdline/apt-get.cc:3138 +msgid "Failed to process build dependencies" +msgstr "İnşa bağımlılıklarını işleme başarısız oldu" + +#: cmdline/apt-get.cc:3231 cmdline/apt-get.cc:3243 +#, c-format +msgid "Changelog for %s (%s)" +msgstr "%s (%s) paketinin değişim günlüğü" + +#: cmdline/apt-get.cc:3366 +msgid "Supported modules:" +msgstr "Desteklenen birimler:" + +#: cmdline/apt-get.cc:3407 +msgid "" +"Usage: apt-get [options] command\n" +" apt-get [options] install|remove pkg1 [pkg2 ...]\n" +" apt-get [options] source pkg1 [pkg2 ...]\n" +"\n" +"apt-get is a simple command line interface for downloading and\n" +"installing packages. The most frequently used commands are update\n" +"and install.\n" +"\n" +"Commands:\n" +" update - Retrieve new lists of packages\n" +" upgrade - Perform an upgrade\n" +" install - Install new packages (pkg is libc6 not libc6.deb)\n" +" remove - Remove packages\n" +" autoremove - Remove automatically all unused packages\n" +" purge - Remove packages and config files\n" +" source - Download source archives\n" +" build-dep - Configure build-dependencies for source packages\n" +" dist-upgrade - Distribution upgrade, see apt-get(8)\n" +" dselect-upgrade - Follow dselect selections\n" +" clean - Erase downloaded archive files\n" +" autoclean - Erase old downloaded archive files\n" +" check - Verify that there are no broken dependencies\n" +" changelog - Download and display the changelog for the given package\n" +" download - Download the binary package into the current directory\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -q Loggable output - no progress indicator\n" +" -qq No output except for errors\n" +" -d Download only - do NOT install or unpack archives\n" +" -s No-act. Perform ordering simulation\n" +" -y Assume Yes to all queries and do not prompt\n" +" -f Attempt to correct a system with broken dependencies in place\n" +" -m Attempt to continue if archives are unlocatable\n" +" -u Show a list of upgraded packages as well\n" +" -b Build the source package after fetching it\n" +" -V Show verbose version numbers\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-get(8), sources.list(5) and apt.conf(5) manual\n" +"pages for more information and options.\n" +" This APT has Super Cow Powers.\n" +msgstr "" +"Kullanım: apt-get [seçenekler] komut\n" +" apt-get [seçenekler] install|remove paket1 [paket2 ...]\n" +" apt-get [seçenekler] kaynak paket1 [paket2 ...]\n" +"\n" +"apt-get, paket indirmek ve kurmakta kullanılan basit bir komut satırı\n" +"arayüzüdür. En sık kullanılan komutlar güncelleme (update) ve kurma\n" +"(install) komutlarıdır.\n" +"\n" +"Komutlar:\n" +" update - Paket listelerini yenile\n" +" upgrade - Yükseltme işlemini gerçekleştir\n" +" install - Yeni paket kur (paket adı libc6.deb değil libc6 şeklinde " +"olmalıdır)\n" +" remove - Paket(leri) kaldır\n" +" autoremove - Kullanılmayan tüm paketleri otomatik olarak kaldır\n" +" purge - Paketleri ve yapılandırma dosyalarını kaldır\n" +" source - Kaynak paket dosyalarını indir\n" +" build-dep - Kaynak paketlerin inşa bağımlılıklarını yapılandır\n" +" dist-upgrade - Dağıtım yükseltme, ayrıntılı bilgi için apt-get(8)\n" +" dselect-upgrade - dselect yapılandırmalarına uy\n" +" clean - İndirilmiş olan arşiv dosyalarını sil\n" +" autoclean - İndirilmiş olan eski arşiv dosyalarını sil\n" +" check - Eksik bağımlılık olmadığından emin ol\n" +" changelog - Belirtilen paketlerin değişim günlüklerini indir ve " +"görüntüle\n" +" download - İkili paketleri içinde bulunulan dizine indir\n" +"\n" +"Seçenekler:\n" +" -h Bu yardım metni.\n" +" -q Günlük tutmaya uygun çıktı - İlerleme göstergesi yok\n" +" -qq Hata olmadığı müddetçe çıktıya bir şey yazma\n" +" -d Yalnızca indir - Paketleri açmaz ve kurmaz\n" +" -s Bir şey yapma. Simülasyon kipinde çalış\n" +" -y Tüm sorulara Evet yanıtını ver ve soru sorma\n" +" -f Eksik bağımlılıklara sahip bir sistemi onarmaya çalış\n" +" -m Eksik paketleri görmezden gel ve işleme devam et\n" +" -u Yükseltilen paketlerin listesini de görüntüle\n" +" -b Kaynak paketi indirdikten sonra inşa et\n" +" -V Sürüm numaralarını daha ayrıntılı göster\n" +" -c=? Belirtilen yapılandırma dosyası kullan\n" +" -o=? Yapılandırma seçeneği ayarla, örneğin -o dir::cache=/tmp\n" +"Ayrıntılı bilgi için apt-get(8), sources.list(5) ve apt.conf(5) rehber\n" +"sayfalarına bakabilirsiniz.\n" +" Bu APT'nin Süper İnek Güçleri vardır.\n" + +#: cmdline/apt-get.cc:3572 +msgid "" +"NOTE: This is only a simulation!\n" +" apt-get needs root privileges for real execution.\n" +" Keep also in mind that locking is deactivated,\n" +" so don't depend on the relevance to the real current situation!" +msgstr "" +"NOT: Bu sadece simülasyondur!\n" +" apt-get sadece root hakları ile gerçekten kullanılabilir.\n" +" Unutmayın ki simülasyonda kilitleme yapılmaz,\n" +" bu nedenle bu simülasyonun tam uygunluğuna güvenmeyin." + +#: cmdline/acqprogress.cc:60 +msgid "Hit " +msgstr "Bağlandı " + +#: cmdline/acqprogress.cc:84 +msgid "Get:" +msgstr "Alınıyor: " + +#: cmdline/acqprogress.cc:115 +msgid "Ign " +msgstr "Yoksay " + +#: cmdline/acqprogress.cc:119 +msgid "Err " +msgstr "Hata " + +#: cmdline/acqprogress.cc:140 +#, c-format +msgid "Fetched %sB in %s (%sB/s)\n" +msgstr "%2$s'de %1$sB alındı (%3$sB/s)\n" + +#: cmdline/acqprogress.cc:230 +#, c-format +msgid " [Working]" +msgstr " [Çalışıyor]" + +#: cmdline/acqprogress.cc:286 +#, c-format +msgid "" +"Media change: please insert the disc labeled\n" +" '%s'\n" +"in the drive '%s' and press enter\n" +msgstr "" +"Ortam değişimi: Lütfen '%2$s' sürücüsüne\n" +" '%1$s'\n" +"olarak etiketlenmiş diski takın ve enter tuşuna basın.\n" + +#: cmdline/apt-mark.cc:55 +#, c-format +msgid "%s can not be marked as it is not installed.\n" +msgstr "%s kurulu olmadığı için işaretlenemedi.\n" + +#: cmdline/apt-mark.cc:61 +#, c-format +msgid "%s was already set to manually installed.\n" +msgstr "%s zaten elle kurulmuş olarak ayarlı.\n" + +#: cmdline/apt-mark.cc:63 +#, c-format +msgid "%s was already set to automatically installed.\n" +msgstr "%s zaten otomatik kurulmuş olarak ayarlı.\n" + +#: cmdline/apt-mark.cc:228 +#, c-format +msgid "%s was already set on hold.\n" +msgstr "%s zaten tutulacak şekilde ayarlanmış.\n" + +#: cmdline/apt-mark.cc:230 +#, c-format +msgid "%s was already not hold.\n" +msgstr "%s zaten tutulmayacak şekilde ayarlanmış.\n" + +#: cmdline/apt-mark.cc:245 cmdline/apt-mark.cc:326 +#: apt-pkg/contrib/fileutl.cc:828 apt-pkg/deb/dpkgpm.cc:1002 +#, c-format +msgid "Waited for %s but it wasn't there" +msgstr "%s için beklenildi ama o gelmedi" + +#: cmdline/apt-mark.cc:260 cmdline/apt-mark.cc:309 +#, c-format +msgid "%s set on hold.\n" +msgstr "%s paketi tutuluyor.\n" + +#: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:314 +#, c-format +msgid "Canceled hold on %s.\n" +msgstr "%s paketini tutma işlemi iptal edildi.\n" + +#: cmdline/apt-mark.cc:332 +msgid "Executing dpkg failed. Are you root?" +msgstr "'dpkg' çalıştırılamadı. root olduğunuzdan emin misiniz?" + +#: cmdline/apt-mark.cc:379 +msgid "" +"Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n" +"\n" +"apt-mark is a simple command line interface for marking packages\n" +"as manually or automatically installed. It can also list marks.\n" +"\n" +"Commands:\n" +" auto - Mark the given packages as automatically installed\n" +" manual - Mark the given packages as manually installed\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -q Loggable output - no progress indicator\n" +" -qq No output except for errors\n" +" -s No-act. Just prints what would be done.\n" +" -f read/write auto/manual marking in the given file\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +"See the apt-mark(8) and apt.conf(5) manual pages for more information." +msgstr "" +"Kullanım: apt-mark [seçenekler] {auto|manual} paket1 [paket2 ...]\n" +"\n" +"apt-mark paketleri otomatik ya da elle kurulmuş olarak işaretlemeye\n" +"yarayan basit bir komut satırı arayüzüdür.\n" +"\n" +"Komutlar:\n" +" auto - Belirtilen paketleri otomatik kurulmuş olarak işaretle\n" +" manual - Belirtilen paketleri elle kurulmuş olarak işaretle\n" +"\n" +"Seçenekler:\n" +" -h Bu yardım metni.\n" +" -q Günlük tutmaya uygun çıktı - İlerleme göstergesi yok\n" +" -qq Hata olmadığı müddetçe çıktıya bir şey yazma\n" +" -s Bir şey yapma. Yalnızca ne yapılacağını söyler.\n" +" -f read/write auto/manual marking in the given file\n" +" -c=? Belirtilen yapılandırma dosyası kullan\n" +" -o=? Yapılandırma seçeneği ayarla, örneğin -o dir::cache=/tmp\n" +"Ayrıntılı bilgi için apt-mark(8) ve apt.conf(5) rehber sayfalarına\n" +"bakabilirsiniz." + +#: methods/cdrom.cc:203 +#, c-format +msgid "Unable to read the cdrom database %s" +msgstr "'cdrom' veritabanı %s okunamıyor" + +#: methods/cdrom.cc:212 +msgid "" +"Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " +"cannot be used to add new CD-ROMs" +msgstr "" +"Lütfen bu CD-ROM'un APT tarafından tanınması için apt-cdrom aracını " +"kullanın. apt-get update yeni CD-ROM'lar eklemek için kullanılamaz." + +#: methods/cdrom.cc:222 +msgid "Wrong CD-ROM" +msgstr "Yanlış CD-ROM" + +#: methods/cdrom.cc:249 +#, c-format +msgid "Unable to unmount the CD-ROM in %s, it may still be in use." +msgstr "%s konumundaki CD-ROM çıkarılamıyor, hala kullanımda olabilir." + +#: methods/cdrom.cc:254 +msgid "Disk not found." +msgstr "Disk bulunamadı." + +#: methods/cdrom.cc:262 methods/file.cc:82 methods/rsh.cc:273 +msgid "File not found" +msgstr "Dosya bulunamadı" + +#: methods/copy.cc:46 methods/gzip.cc:105 methods/gzip.cc:114 +#: methods/rred.cc:512 methods/rred.cc:521 +msgid "Failed to stat" +msgstr "Durum bilgisi okunamadı" + +#: methods/copy.cc:83 methods/gzip.cc:111 methods/rred.cc:518 +msgid "Failed to set modification time" +msgstr "Değişiklik zamanı ayarlanamadı" + +#: methods/file.cc:47 +msgid "Invalid URI, local URIS must not start with //" +msgstr "Geçersiz URI, yerel URI'ler // ile başlamamalıdır" + +#. Login must be before getpeername otherwise dante won't work. +#: methods/ftp.cc:173 +msgid "Logging in" +msgstr "Giriş yapılıyor" + +#: methods/ftp.cc:179 +msgid "Unable to determine the peer name" +msgstr "Eş adı belirlenemiyor" + +#: methods/ftp.cc:184 +msgid "Unable to determine the local name" +msgstr "Yerel ad belirlenemiyor" + +#: methods/ftp.cc:215 methods/ftp.cc:243 +#, c-format +msgid "The server refused the connection and said: %s" +msgstr "Sunucu bağlantıyı reddetti, sunucunun iletisi: %s" + +#: methods/ftp.cc:221 +#, c-format +msgid "USER failed, server said: %s" +msgstr "USER başarısız, sunucunun iletisi: %s" + +#: methods/ftp.cc:228 +#, c-format +msgid "PASS failed, server said: %s" +msgstr "PASS başarısız, sunucunun iletisi: %s" + +#: methods/ftp.cc:248 +msgid "" +"A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " +"is empty." +msgstr "" +"Bir Vekil sunucu belirtildi ancak oturum açma betiği belirtilmedi, Acquire::" +"ftp::ProxyLogin boş." + +#: methods/ftp.cc:276 +#, c-format +msgid "Login script command '%s' failed, server said: %s" +msgstr "Oturum açma betiği komutu '%s' başarısız oldu, sunucunun iletisi: %s" + +#: methods/ftp.cc:302 +#, c-format +msgid "TYPE failed, server said: %s" +msgstr "TYPE başarısız, sunucunun iletisi: %s" + +#: methods/ftp.cc:340 methods/ftp.cc:451 methods/rsh.cc:192 methods/rsh.cc:235 +msgid "Connection timeout" +msgstr "Bağlantı zaman aşımına uğradı" + +#: methods/ftp.cc:346 +msgid "Server closed the connection" +msgstr "Sunucu bağlantıyı kesti" + +#: methods/ftp.cc:349 methods/rsh.cc:199 apt-pkg/contrib/fileutl.cc:1254 +#: apt-pkg/contrib/fileutl.cc:1263 apt-pkg/contrib/fileutl.cc:1266 +msgid "Read error" +msgstr "Okuma hatası" + +#: methods/ftp.cc:356 methods/rsh.cc:206 +msgid "A response overflowed the buffer." +msgstr "Bir yanıt arabelleği taşırdı." + +#: methods/ftp.cc:373 methods/ftp.cc:385 +msgid "Protocol corruption" +msgstr "İletişim kuralları bozulması" + +#: methods/ftp.cc:457 methods/rred.cc:238 methods/rsh.cc:241 +#: apt-pkg/contrib/fileutl.cc:1352 apt-pkg/contrib/fileutl.cc:1361 +#: apt-pkg/contrib/fileutl.cc:1364 apt-pkg/contrib/fileutl.cc:1390 +msgid "Write error" +msgstr "Yazma hatası" + +#: methods/ftp.cc:696 methods/ftp.cc:702 methods/ftp.cc:737 +msgid "Could not create a socket" +msgstr "Bir soket oluşturulamadı" + +#: methods/ftp.cc:707 +msgid "Could not connect data socket, connection timed out" +msgstr "Veri soketine bağlanılamadı, bağlantı zaman aşımına uğradı" + +#: methods/ftp.cc:713 +msgid "Could not connect passive socket." +msgstr "Edilgen sokete bağlanılamadı." + +#: methods/ftp.cc:730 +msgid "getaddrinfo was unable to get a listening socket" +msgstr "getaddrinfo bir dinleme soketi alamıyor" + +#: methods/ftp.cc:744 +msgid "Could not bind a socket" +msgstr "Bir sokete bağlanılamadı" + +#: methods/ftp.cc:748 +msgid "Could not listen on the socket" +msgstr "Soket dinlenemedi" + +#: methods/ftp.cc:755 +msgid "Could not determine the socket's name" +msgstr "Soketin adı belirlenemedi" + +#: methods/ftp.cc:787 +msgid "Unable to send PORT command" +msgstr "PORT komutu gönderilemedi" + +#: methods/ftp.cc:797 +#, c-format +msgid "Unknown address family %u (AF_*)" +msgstr "Bilinmeyen adres ailesi %u (AF_*)" + +#: methods/ftp.cc:806 +#, c-format +msgid "EPRT failed, server said: %s" +msgstr "EPRT başarısız, sunucunun iletisi: %s" + +#: methods/ftp.cc:826 +msgid "Data socket connect timed out" +msgstr "Veri soketi bağlantısı zaman aşımına uğradı" + +#: methods/ftp.cc:833 +msgid "Unable to accept connection" +msgstr "Bağlantı kabul edilemiyor" + +#: methods/ftp.cc:872 methods/http.cc:1035 methods/rsh.cc:311 +msgid "Problem hashing file" +msgstr "Dosya sağlaması yapılamadı" + +#: methods/ftp.cc:885 +#, c-format +msgid "Unable to fetch file, server said '%s'" +msgstr "Dosya alınamıyor, sunucunun iletisi: '%s'" + +#: methods/ftp.cc:900 methods/rsh.cc:330 +msgid "Data socket timed out" +msgstr "Veri soketi zaman aşımına uğradı" + +#: methods/ftp.cc:930 +#, c-format +msgid "Data transfer failed, server said '%s'" +msgstr "Veri aktarımı başarısız, sunucunun iletisi: '%s'" + +#. Get the files information +#: methods/ftp.cc:1007 +msgid "Query" +msgstr "Sorgu" + +#: methods/ftp.cc:1119 +msgid "Unable to invoke " +msgstr "Çağrılamıyor " + +#: methods/connect.cc:75 +#, c-format +msgid "Connecting to %s (%s)" +msgstr "Bağlanılıyor %s (%s)" + +#: methods/connect.cc:86 +#, c-format +msgid "[IP: %s %s]" +msgstr "[IP: %s %s]" + +#: methods/connect.cc:93 +#, c-format +msgid "Could not create a socket for %s (f=%u t=%u p=%u)" +msgstr "%s için bir soket oluşturulamadı (f=%u t=%u p=%u)" + +#: methods/connect.cc:99 +#, c-format +msgid "Cannot initiate the connection to %s:%s (%s)." +msgstr "%s:%s bağlantısı başlatılamıyor (%s)." + +#: methods/connect.cc:107 +#, c-format +msgid "Could not connect to %s:%s (%s), connection timed out" +msgstr "Adrese bağlanılamadı: %s:%s (%s), bağlantı zaman aşımına uğradı" + +#: methods/connect.cc:125 +#, c-format +msgid "Could not connect to %s:%s (%s)." +msgstr "Adrese bağlanılamadı: %s:%s (%s)." + +#. We say this mainly because the pause here is for the +#. ssh connection that is still going +#: methods/connect.cc:153 methods/rsh.cc:433 +#, c-format +msgid "Connecting to %s" +msgstr "Bağlanılıyor: %s" + +#: methods/connect.cc:172 methods/connect.cc:191 +#, c-format +msgid "Could not resolve '%s'" +msgstr "'%s' çözümlenemedi" + +#: methods/connect.cc:197 +#, c-format +msgid "Temporary failure resolving '%s'" +msgstr "'%s' çözümlenirken geçici bir sorunla karşılaşıldı" + +#: methods/connect.cc:200 +#, c-format +msgid "Something wicked happened resolving '%s:%s' (%i - %s)" +msgstr "'%s:%s' (%i - %s) adresi çözümlenirken bir şeyler kötü gitti" + +#: methods/connect.cc:247 +#, c-format +msgid "Unable to connect to %s:%s:" +msgstr "Bağlanılamıyor %s:%s:" + +#: methods/gpgv.cc:180 +msgid "" +"Internal error: Good signature, but could not determine key fingerprint?!" +msgstr "İç hata: İmza iyi, ancak anahtar parmak izi belirlenemedi?!" + +#: methods/gpgv.cc:185 +msgid "At least one invalid signature was encountered." +msgstr "En az bir geçersiz imza ile karşılaşıldı." + +#: methods/gpgv.cc:189 +msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)" +msgstr "İmza doğrulama için 'gpgv' çalıştırılamadı (gpgv kurulu mu?)" + +#: methods/gpgv.cc:194 +msgid "Unknown error executing gpgv" +msgstr "gpgv çalıştırılırken bilinmeyen hata" + +#: methods/gpgv.cc:228 methods/gpgv.cc:235 +msgid "The following signatures were invalid:\n" +msgstr "Aşağıdaki imzalar geçersiz:\n" + +#: methods/gpgv.cc:242 +msgid "" +"The following signatures couldn't be verified because the public key is not " +"available:\n" +msgstr "Aşağıdaki imzalar doğrulanamadı, çünkü genel anahtar mevcut değil:\n" + +#: methods/gzip.cc:65 +msgid "Empty files can't be valid archives" +msgstr "Boş dosyalar geçerli birer arşiv dosyası olamazlar" + +#: methods/http.cc:394 +msgid "Waiting for headers" +msgstr "Başlıklar bekleniyor" + +#: methods/http.cc:544 +msgid "Bad header line" +msgstr "Kötü başlık satırı" + +#: methods/http.cc:569 methods/http.cc:576 +msgid "The HTTP server sent an invalid reply header" +msgstr "HTTP sunucusu geçersiz bir cevap başlığı gönderdi" + +#: methods/http.cc:606 +msgid "The HTTP server sent an invalid Content-Length header" +msgstr "HTTP sunucusu geçersiz bir Content-Length başlığı gönderdi" + +#: methods/http.cc:621 +msgid "The HTTP server sent an invalid Content-Range header" +msgstr "HTTP sunucusu geçersiz bir Content-Range başlığı gönderdi" + +#: methods/http.cc:623 +msgid "This HTTP server has broken range support" +msgstr "HTTP sunucusunun aralık desteği bozuk" + +#: methods/http.cc:647 +msgid "Unknown date format" +msgstr "Bilinmeyen tarih biçimi" + +#: methods/http.cc:818 +msgid "Select failed" +msgstr "Seçme başarısız" + +#: methods/http.cc:823 +msgid "Connection timed out" +msgstr "Bağlantı zaman aşımına uğradı" + +#: methods/http.cc:846 +msgid "Error writing to output file" +msgstr "Çıktı dosyasına yazılırken hata" + +#: methods/http.cc:877 +msgid "Error writing to file" +msgstr "Dosyaya yazılamadı" + +#: methods/http.cc:905 +msgid "Error writing to the file" +msgstr "Dosyaya yazılamadı" + +#: methods/http.cc:919 +msgid "Error reading from server. Remote end closed connection" +msgstr "Sunucundan okunurken hata. Uzak sonlu kapalı bağlantı" + +#: methods/http.cc:921 +msgid "Error reading from server" +msgstr "Sunucundan okunurken hata" + +#: methods/http.cc:1194 +msgid "Bad header data" +msgstr "Kötü başlık verisi" + +#: methods/http.cc:1211 methods/http.cc:1266 +msgid "Connection failed" +msgstr "Bağlantı başarısız" + +#: methods/http.cc:1358 +msgid "Internal error" +msgstr "İç hata" + +#. Only warn if there are no sources.list.d. +#. Only warn if there is no sources.list file. +#: methods/mirror.cc:95 apt-inst/extract.cc:465 +#: apt-pkg/contrib/cdromutl.cc:183 apt-pkg/contrib/fileutl.cc:400 +#: apt-pkg/contrib/fileutl.cc:513 apt-pkg/sourcelist.cc:208 +#: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:108 +#: apt-pkg/init.cc:116 apt-pkg/clean.cc:36 apt-pkg/policy.cc:362 +#, c-format +msgid "Unable to read %s" +msgstr "%s okunamıyor" + +#: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/contrib/cdromutl.cc:179 +#: apt-pkg/contrib/cdromutl.cc:213 apt-pkg/acquire.cc:491 +#: apt-pkg/acquire.cc:516 apt-pkg/clean.cc:42 apt-pkg/clean.cc:60 +#: apt-pkg/clean.cc:123 +#, c-format +msgid "Unable to change to %s" +msgstr "%s olarak değiştirilemedi" + +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:280 +#, c-format +msgid "No mirror file '%s' found " +msgstr "'%s' yansı dosyası bulunamadı " + +#. FIXME: fallback to a default mirror here instead +#. and provide a config option to define that default +#: methods/mirror.cc:287 +#, c-format +msgid "Can not read mirror file '%s'" +msgstr "Yansı dosyası %s okunamıyor" + +#: methods/mirror.cc:442 +#, c-format +msgid "[Mirror: %s]" +msgstr "[Yansı: %s]" + +#: methods/rred.cc:491 +#, c-format +msgid "" +"Could not patch %s with mmap and with file operation usage - the patch seems " +"to be corrupt." +msgstr "" +"%s mmap ve dosya işlem kullanımı ile yamalanamadı - yama bozuk gibi duruyor." + +#: methods/rred.cc:496 +#, c-format +msgid "" +"Could not patch %s with mmap (but no mmap specific fail) - the patch seems " +"to be corrupt." +msgstr "" +"%s mmap ile yamalanamadı (mmap'e özel bir hata değil) - yama bozuk gibi " +"duruyor." + +#: methods/rsh.cc:99 ftparchive/multicompress.cc:168 +msgid "Failed to create IPC pipe to subprocess" +msgstr "Altsürece IPC borusu oluşturulamadı" + +#: methods/rsh.cc:338 +msgid "Connection closed prematurely" +msgstr "Bağlantı vaktinden önce kapandı" + +#: dselect/install:32 +msgid "Bad default setting!" +msgstr "Geçersiz öntanımlı ayar!" + +#: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:94 +#: dselect/install:105 dselect/update:45 +msgid "Press enter to continue." +msgstr "Devam etmek için giriş (enter) tuşuna basın." + +#: dselect/install:91 +msgid "Do you want to erase any previously downloaded .deb files?" +msgstr "Daha önceden indirilmiş .deb dosyalarını silmek istiyor musunuz?" + +#: dselect/install:101 +msgid "Some errors occurred while unpacking. Packages that were installed" +msgstr "" +"Paket açılırken bazı sorunlar çıktı. Kurulan paketler yapılandırılacak." + +#: dselect/install:102 +msgid "will be configured. This may result in duplicate errors" +msgstr "Bu durum, çift hata iletilerine ya da eksik bağımlılıkların neden" + +#: dselect/install:103 +msgid "or errors caused by missing dependencies. This is OK, only the errors" +msgstr "" +"olduğu hatalara yol açabilir. Bu durum bir sorun teşkil etmez, yalnızca bu " +"iletinin" + +#: dselect/install:104 +msgid "" +"above this message are important. Please fix them and run [I]nstall again" +msgstr "" +"üstündeki hatalar önemlidir. Lütfen bunları onarın ve [I]nstall komutunu " +"yeniden çalıştırın" + +#: dselect/update:30 +msgid "Merging available information" +msgstr "Kullanılabilir bilgiler birleştiriliyor" + +#: cmdline/apt-extracttemplates.cc:102 +#, c-format +msgid "%s not a valid DEB package." +msgstr "%s geçerli bir DEB paketi değil." + +#: cmdline/apt-extracttemplates.cc:236 +msgid "" +"Usage: apt-extracttemplates file1 [file2 ...]\n" +"\n" +"apt-extracttemplates is a tool to extract config and template info\n" +"from debian packages\n" +"\n" +"Options:\n" +" -h This help text\n" +" -t Set the temp dir\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +msgstr "" +"Kullanım: apt-extracttemplates dosya1 [dosya2 ...]\n" +"\n" +"apt-extracttemplates, Debian paketlerinden ayar ve şablon bilgisini\n" +"almak için kullanılan bir araçtır\n" +"\n" +"Seçenekler:\n" +" -h Bu yardım dosyası\n" +" -t Geçici dizini ayarlar\n" +" -c=? Belirtilen ayar dosyasını kullanır\n" +" -o=? Ayar seçeneği belirtmeyi sağlar, ör -o dir::cache=/tmp\n" + +#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1335 +#, c-format +msgid "Unable to write to %s" +msgstr "%s dosyasına yazılamıyor" + +#: cmdline/apt-extracttemplates.cc:313 +msgid "Cannot get debconf version. Is debconf installed?" +msgstr "debconf sürümü alınamıyor. debconf kurulu mu?" + +#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:348 +msgid "Package extension list is too long" +msgstr "Paket uzantı listesi çok uzun" + +#: ftparchive/apt-ftparchive.cc:173 ftparchive/apt-ftparchive.cc:190 +#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:263 +#: ftparchive/apt-ftparchive.cc:277 ftparchive/apt-ftparchive.cc:299 +#, c-format +msgid "Error processing directory %s" +msgstr "%s dizinini işlemede hata" + +#: ftparchive/apt-ftparchive.cc:261 +msgid "Source extension list is too long" +msgstr "Kaynak uzantı listesi çok uzun" + +#: ftparchive/apt-ftparchive.cc:378 +msgid "Error writing header to contents file" +msgstr "İçindekiler dosyasına üstbilgi yazmada hata" + +#: ftparchive/apt-ftparchive.cc:408 +#, c-format +msgid "Error processing contents %s" +msgstr "%s içeriğini işlemede hata" + +#: ftparchive/apt-ftparchive.cc:596 +msgid "" +"Usage: apt-ftparchive [options] command\n" +"Commands: packages binarypath [overridefile [pathprefix]]\n" +" sources srcpath [overridefile [pathprefix]]\n" +" contents path\n" +" release path\n" +" generate config [groups]\n" +" clean config\n" +"\n" +"apt-ftparchive generates index files for Debian archives. It supports\n" +"many styles of generation from fully automated to functional replacements\n" +"for dpkg-scanpackages and dpkg-scansources\n" +"\n" +"apt-ftparchive generates Package files from a tree of .debs. The\n" +"Package file contains the contents of all the control fields from\n" +"each package as well as the MD5 hash and filesize. An override file\n" +"is supported to force the value of Priority and Section.\n" +"\n" +"Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n" +"The --source-override option can be used to specify a src override file\n" +"\n" +"The 'packages' and 'sources' command should be run in the root of the\n" +"tree. BinaryPath should point to the base of the recursive search and \n" +"override file should contain the override flags. Pathprefix is\n" +"appended to the filename fields if present. Example usage from the \n" +"Debian archive:\n" +" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n" +" dists/potato/main/binary-i386/Packages\n" +"\n" +"Options:\n" +" -h This help text\n" +" --md5 Control MD5 generation\n" +" -s=? Source override file\n" +" -q Quiet\n" +" -d=? Select the optional caching database\n" +" --no-delink Enable delinking debug mode\n" +" --contents Control contents file generation\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option" +msgstr "" +"Kullanım: apt-ftparchive [seçenekler] komut\n" +"Komutlar: packages ikilikonumu [geçersizkılmadosyası [konumöneki]]\n" +" sources kaynakkonumu [geçersizkılmadosyası [konumöneki]]\n" +" contents konum\n" +" release konum\n" +" generate yapılandırma [gruplar]\n" +" clean yapılandırma\n" +"\n" +"apt-ftparchive Debian arşivleri için indeks dosyaları üretir. \n" +"dpkg-scanpackages ve dpkg-scansources için tamamen otomatikten\n" +"işlevsel yedeklere kadar birçok üretim çeşidini destekler.\n" +"\n" +"apt-ftparchive, .deb dizinlerinden 'Package' dosyaları üretir. 'Package'\n" +"dosyası, her paketin MD5 doğrulama ve dosya büyüklüğü gibi denetim\n" +"alanlarının bilgilerini içerir. Öncelik (Priority) ve bölüm (Section)\n" +"değerlerini istenen başka değerlerle değiştirebilmek için bir geçersiz\n" +"kılma dosyası kullanılabilir.\n" +"\n" +"Benzer şekilde, apt-ftparchive, .dscs dosyalarından 'Sources' dosyaları\n" +"üretir. '--source-override' seçeneği bir src geçersiz kılma dosyası\n" +"belirtmek için kullanıabilir.\n" +"\n" +"'packages' ve 'sources' komutları dizin ağacının kökünde çalıştırıl-\n" +"malıdır. BinaryPath özyineli aramanın temeline işaret etmeli ve\n" +"geçersiz kılma dosyası geçersiz kılma bayraklarını içermelidir.\n" +"Pathprefix mevcutsa dosya adı alanlarının sonuna eklenir. Debian\n" +"arşivinden örnek kullanım şu şekildedir:\n" +"\n" +" apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n" +" dists/potato/main/binary-i386/Packages\n" +"\n" +"Seçenekler:\n" +" -h Bu yardım metni\n" +" --md5 MD5 üretimini denetle\n" +" -s=? Kaynak geçersiz kılma dosyası\n" +" -q Sessiz\n" +" -d=? Seçimlik önbellek veritabanını seç\n" +" --no-delink Bağlantılanmamış hata ayıklama kipini etkinleştir\n" +" --contents İçerik dosyası üretimini denetle\n" +" -c=? Belirtilen yapılandırma dosyası kullan\n" +" -o=? Yapılandırma seçeneği ayarla" + +#: ftparchive/apt-ftparchive.cc:802 +msgid "No selections matched" +msgstr "Hiçbir seçim eşleşmedi" + +#: ftparchive/apt-ftparchive.cc:880 +#, c-format +msgid "Some files are missing in the package file group `%s'" +msgstr "'%s' paket dosyası grubunda bazı dosyalar eksik" + +#: ftparchive/cachedb.cc:47 +#, c-format +msgid "DB was corrupted, file renamed to %s.old" +msgstr "Veritabanı bozuk, dosya adı %s.old olarak değiştirildi" + +#: ftparchive/cachedb.cc:65 +#, c-format +msgid "DB is old, attempting to upgrade %s" +msgstr "Veritabanı eski, %s yükseltilmeye çalışılıyor" + +#: ftparchive/cachedb.cc:76 +msgid "" +"DB format is invalid. If you upgraded from an older version of apt, please " +"remove and re-create the database." +msgstr "" +"Veritabanı biçimi geçersiz. Eğer apt'ın eski bir sürümünden yükseltme " +"yaptıysanız, lütfen veritabanını silin ve yeniden oluşturun." + +#: ftparchive/cachedb.cc:81 +#, c-format +msgid "Unable to open DB file %s: %s" +msgstr "Veritabanı dosyası %s açılamadı: %s" + +#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:181 apt-inst/extract.cc:193 +#: apt-inst/extract.cc:210 +#, c-format +msgid "Failed to stat %s" +msgstr "%s durum bilgisi alınamadı" + +#: ftparchive/cachedb.cc:249 +msgid "Archive has no control record" +msgstr "Arşivin denetim kaydı yok" + +#: ftparchive/cachedb.cc:490 +msgid "Unable to get a cursor" +msgstr "İmleç alınamıyor" + +#: ftparchive/writer.cc:80 +#, c-format +msgid "W: Unable to read directory %s\n" +msgstr "W: %s dizini okunamıyor\n" + +#: ftparchive/writer.cc:85 +#, c-format +msgid "W: Unable to stat %s\n" +msgstr "W: %s durum bilgisi alınamıyor\n" + +#: ftparchive/writer.cc:141 +msgid "E: " +msgstr "E: " + +#: ftparchive/writer.cc:143 +msgid "W: " +msgstr "W: " + +#: ftparchive/writer.cc:150 +msgid "E: Errors apply to file " +msgstr "E: Hatalar şu dosya için geçerli: " + +#: ftparchive/writer.cc:168 ftparchive/writer.cc:200 +#, c-format +msgid "Failed to resolve %s" +msgstr "%s çözümlenemedi" + +#: ftparchive/writer.cc:181 +msgid "Tree walking failed" +msgstr "Ağaçta gezinme başarısız" + +#: ftparchive/writer.cc:208 +#, c-format +msgid "Failed to open %s" +msgstr "%s açılamadı" + +#: ftparchive/writer.cc:267 +#, c-format +msgid " DeLink %s [%s]\n" +msgstr " DeLink %s [%s]\n" + +#: ftparchive/writer.cc:275 +#, c-format +msgid "Failed to readlink %s" +msgstr "%s bağlantı okuması başarılamadı" + +#: ftparchive/writer.cc:279 +#, c-format +msgid "Failed to unlink %s" +msgstr "%s bağlantı koparma başarılamadı" + +#: ftparchive/writer.cc:286 +#, c-format +msgid "*** Failed to link %s to %s" +msgstr "*** %s, %s konumuna bağlanamadı" + +#: ftparchive/writer.cc:296 +#, c-format +msgid " DeLink limit of %sB hit.\n" +msgstr " %sB'lik bağlantı koparma (DeLink) sınırına ulaşıldı.\n" + +#: ftparchive/writer.cc:401 +msgid "Archive had no package field" +msgstr "Arşivde paket alanı yok" + +#: ftparchive/writer.cc:409 ftparchive/writer.cc:711 +#, c-format +msgid " %s has no override entry\n" +msgstr " %s için geçersiz kılma girdisi yok\n" + +#: ftparchive/writer.cc:477 ftparchive/writer.cc:827 +#, c-format +msgid " %s maintainer is %s not %s\n" +msgstr " %s geliştiricisi %s, %s değil\n" + +#: ftparchive/writer.cc:721 +#, c-format +msgid " %s has no source override entry\n" +msgstr " '%s' paketinin yerine geçecek bir kaynak paket yok\n" + +#: ftparchive/writer.cc:725 +#, c-format +msgid " %s has no binary override entry either\n" +msgstr " '%s' paketinin yerine geçecek bir ikili paket de yok\n" + +#: ftparchive/contents.cc:341 ftparchive/contents.cc:372 +msgid "realloc - Failed to allocate memory" +msgstr "realloc - Bellek ayırma yapılamadı" + +#: ftparchive/override.cc:35 ftparchive/override.cc:143 +#, c-format +msgid "Unable to open %s" +msgstr "%s açılamıyor" + +#: ftparchive/override.cc:61 ftparchive/override.cc:167 +#, c-format +msgid "Malformed override %s line %llu #1" +msgstr "Hatalı geçersiz kılma %s satır %llu #1" + +#: ftparchive/override.cc:75 ftparchive/override.cc:179 +#, c-format +msgid "Malformed override %s line %llu #2" +msgstr "Hatalı geçersiz kılma %s satır %llu #2" + +#: ftparchive/override.cc:89 ftparchive/override.cc:192 +#, c-format +msgid "Malformed override %s line %llu #3" +msgstr "Hatalı geçersiz kılma %s satır %llu #3" + +#: ftparchive/override.cc:128 ftparchive/override.cc:202 +#, c-format +msgid "Failed to read the override file %s" +msgstr "Geçersiz kılma dosyası %s okunamadı" + +#: ftparchive/multicompress.cc:70 +#, c-format +msgid "Unknown compression algorithm '%s'" +msgstr "Bilinmeyen sıkıştırma algoritması '%s'" + +#: ftparchive/multicompress.cc:100 +#, c-format +msgid "Compressed output %s needs a compression set" +msgstr "Sıkıştırılmış %s çıktısı bir sıkıştırma kümesine ihtiyaç duymaktadır." + +#: ftparchive/multicompress.cc:189 +msgid "Failed to create FILE*" +msgstr "DOSYA* oluşturulamadı" + +#: ftparchive/multicompress.cc:192 +msgid "Failed to fork" +msgstr "fork yapılamadı" + +#: ftparchive/multicompress.cc:206 +msgid "Compress child" +msgstr "Çocuğu sıkıştır" + +#: ftparchive/multicompress.cc:229 +#, c-format +msgid "Internal error, failed to create %s" +msgstr "İç hata, %s oluşturulamadı" + +#: ftparchive/multicompress.cc:304 +msgid "IO to subprocess/file failed" +msgstr "Altsürece/dosyaya GÇ işlemi başarısız oldu" + +#: ftparchive/multicompress.cc:342 +msgid "Failed to read while computing MD5" +msgstr "MD5 hesaplanırken okunamadı" + +#: ftparchive/multicompress.cc:358 +#, c-format +msgid "Problem unlinking %s" +msgstr "%s bağı koparılırken sorun çıktı" + +#: ftparchive/multicompress.cc:373 apt-inst/extract.cc:188 +#, c-format +msgid "Failed to rename %s to %s" +msgstr "%s, %s olarak yeniden adlandırılamadı" + +#: cmdline/apt-internal-solver.cc:37 +msgid "" +"Usage: apt-internal-solver\n" +"\n" +"apt-internal-solver is an interface to use the current internal\n" +"like an external resolver for the APT family for debugging or alike\n" +"\n" +"Options:\n" +" -h This help text.\n" +" -q Loggable output - no progress indicator\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +msgstr "" +"Kullanım: apt-internal-solver\n" +"\n" +"apt-internal-solver mevcut dahili çözücüyü (hata ayıklama\n" +"gibi sebeplerle) harici çözücü gibi kullanmaya yarayan bir\n" +"arayüzdür.\n" +"\n" +"Seçenekler:\n" +" -h Bu yardım metni.\n" +" -q Günlük tutmaya uygun çıktı - İlerleme göstergesi yok\n" +" -c=? Belirtilen yapılandırma dosyası kullan\n" +" -o=? Yapılandırma seçeneği ayarla, örneğin -o dir::cache=/tmp\n" + +#: cmdline/apt-sortpkgs.cc:89 +msgid "Unknown package record!" +msgstr "Bilinmeyen paket kaydı!" + +#: cmdline/apt-sortpkgs.cc:153 +msgid "" +"Usage: apt-sortpkgs [options] file1 [file2 ...]\n" +"\n" +"apt-sortpkgs is a simple tool to sort package files. The -s option is used\n" +"to indicate what kind of file it is.\n" +"\n" +"Options:\n" +" -h This help text\n" +" -s Use source file sorting\n" +" -c=? Read this configuration file\n" +" -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" +msgstr "" +"Kullanım: apt-sortpkgs [seçenekler] dosya1 [dosya2 ...]\n" +"\n" +"apt-sortpkgs, paket dosyalarını sıralayan basit bir araçtır.\n" +"-s seçeneği ne tür bir dosya olduğunu göstermekte kullanılır.\n" +"\n" +"Seçenekler:\n" +" -h Bu yardım metni\n" +" -s Kaynak dosyası sıralamayı kullan\n" +" -c=? Belirtilen yapılandırma dosyasını oku\n" +" -o=? Herhangi bir yapılandırma seçeneği ayarla, örneğin -o dir::cache=/" +"tmp\n" + +#: apt-inst/contrib/extracttar.cc:117 +msgid "Failed to create pipes" +msgstr "Boru oluşturulamadı" + +#: apt-inst/contrib/extracttar.cc:144 +msgid "Failed to exec gzip " +msgstr "Gzip çalıştırılamadı " + +#: apt-inst/contrib/extracttar.cc:181 apt-inst/contrib/extracttar.cc:211 +msgid "Corrupted archive" +msgstr "Bozuk arşiv" + +#: apt-inst/contrib/extracttar.cc:196 +msgid "Tar checksum failed, archive corrupted" +msgstr "Tar sağlama toplamı başarısız, arşiv bozulmuş" + +#: apt-inst/contrib/extracttar.cc:303 +#, c-format +msgid "Unknown TAR header type %u, member %s" +msgstr "Bilinmeyen TAR başlığı türü %u, üye %s" + +#: apt-inst/contrib/arfile.cc:74 +msgid "Invalid archive signature" +msgstr "Geçersiz arşiv imzası" + +#: apt-inst/contrib/arfile.cc:82 +msgid "Error reading archive member header" +msgstr "Arşiv üyesi başlığı okuma hatası" + +#: apt-inst/contrib/arfile.cc:94 +#, c-format +msgid "Invalid archive member header %s" +msgstr "Geçerşiz arşiv üyesi başlığı %s" + +#: apt-inst/contrib/arfile.cc:106 +msgid "Invalid archive member header" +msgstr "Geçersiz arşiv üyesi başlığı" + +#: apt-inst/contrib/arfile.cc:132 +msgid "Archive is too short" +msgstr "Arşiv çok kısa" + +#: apt-inst/contrib/arfile.cc:136 +msgid "Failed to read the archive headers" +msgstr "Arşiv başlıkları okunamadı" + +#: apt-inst/filelist.cc:382 +msgid "DropNode called on still linked node" +msgstr "DropNode hala bağlı olan düğüm üzerinde çağrıldı" + +#: apt-inst/filelist.cc:414 +msgid "Failed to locate the hash element!" +msgstr "Sağlama elementi bulunamadı" + +#: apt-inst/filelist.cc:461 +msgid "Failed to allocate diversion" +msgstr "Yönlendirme tahsisi başarısız oldu" + +#: apt-inst/filelist.cc:466 +msgid "Internal error in AddDiversion" +msgstr "AddDiversion'da iç hata" + +#: apt-inst/filelist.cc:479 +#, c-format +msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" +msgstr "Bir yönlendirmenin üzerine yazılmaya çalışılıyor, %s -> %s ve %s/%s" + +#: apt-inst/filelist.cc:508 +#, c-format +msgid "Double add of diversion %s -> %s" +msgstr "Aynı dosya iki kez yönlendirilemez: %s -> %s" + +#: apt-inst/filelist.cc:551 +#, c-format +msgid "Duplicate conf file %s/%s" +msgstr "%s/%s yapılandırma dosyası zaten mevcut" + +#: apt-inst/dirstream.cc:43 apt-inst/dirstream.cc:50 apt-inst/dirstream.cc:55 +#, c-format +msgid "Failed to write file %s" +msgstr "%s dosyasına yazılamadı" + +#: apt-inst/dirstream.cc:98 apt-inst/dirstream.cc:106 +#, c-format +msgid "Failed to close file %s" +msgstr "%s dosyası kapatılamadı" + +#: apt-inst/extract.cc:96 apt-inst/extract.cc:167 +#, c-format +msgid "The path %s is too long" +msgstr "%s yolu çok uzun" + +#: apt-inst/extract.cc:127 +#, c-format +msgid "Unpacking %s more than once" +msgstr "%s paketi bir çok kez açıldı" + +#: apt-inst/extract.cc:137 +#, c-format +msgid "The directory %s is diverted" +msgstr "%s dizini yönlendirilmiş" + +#: apt-inst/extract.cc:147 +#, c-format +msgid "The package is trying to write to the diversion target %s/%s" +msgstr "Bu paket yönlendirme hedefine (%s/%s) yazmayı deniyor" + +#: apt-inst/extract.cc:157 apt-inst/extract.cc:300 +msgid "The diversion path is too long" +msgstr "Yönlendirme yolu çok uzun" + +#: apt-inst/extract.cc:243 +#, c-format +msgid "The directory %s is being replaced by a non-directory" +msgstr "%s dizini dizin olmayan bir öğeyle değiştirildi" + +#: apt-inst/extract.cc:283 +msgid "Failed to locate node in its hash bucket" +msgstr "Düğüm sağlama kovasında bulunamadı" + +#: apt-inst/extract.cc:287 +msgid "The path is too long" +msgstr "Yol çok uzun" + +#: apt-inst/extract.cc:415 +#, c-format +msgid "Overwrite package match with no version for %s" +msgstr "%s paketinin sürümü yok" + +#: apt-inst/extract.cc:432 +#, c-format +msgid "File %s/%s overwrites the one in the package %s" +msgstr "%s/%s dosyası %s paketindeki aynı adlı dosyanın üzerine yazmak istiyor" + +#: apt-inst/extract.cc:492 +#, c-format +msgid "Unable to stat %s" +msgstr "%s durum bilgisi alınamadı" + +#: apt-inst/deb/debfile.cc:41 apt-inst/deb/debfile.cc:46 +#, c-format +msgid "This is not a valid DEB archive, missing '%s' member" +msgstr "Bu dosya geçerli bir DEB arşivi değil, '%s' üyesi eksik" + +#. FIXME: add data.tar.xz here - adding it now would require a Translation round for a very small gain +#: apt-inst/deb/debfile.cc:55 +#, c-format +msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member" +msgstr "Bu dosya geçerli bir DEB arşivi değil, '%s', '%s' ya da '%s' üyesi yok" + +#: apt-inst/deb/debfile.cc:120 +#, c-format +msgid "Internal error, could not locate member %s" +msgstr "İç hata, %s üyesi bulunamadı" + +#: apt-inst/deb/debfile.cc:214 +msgid "Unparsable control file" +msgstr "Ayrıştırılamayan 'control' dosyası" + +#: apt-pkg/contrib/mmap.cc:79 +msgid "Can't mmap an empty file" +msgstr "Boş dosya mmap yapılamıyor" + +#: apt-pkg/contrib/mmap.cc:111 +#, c-format +msgid "Couldn't duplicate file descriptor %i" +msgstr "Dosya tanımlayıcı %i çoğaltılamadı" + +#: apt-pkg/contrib/mmap.cc:119 +#, c-format +msgid "Couldn't make mmap of %llu bytes" +msgstr "%llu baytlık mmap yapılamaz" + +#: apt-pkg/contrib/mmap.cc:146 +msgid "Unable to close mmap" +msgstr "mmap kapatılamıyor" + +#: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202 +msgid "Unable to synchronize mmap" +msgstr "mmap eşlenemiyor" + +#: apt-pkg/contrib/mmap.cc:290 +#, c-format +msgid "Couldn't make mmap of %lu bytes" +msgstr "%lu baytlık mmap yapılamaz" + +#: apt-pkg/contrib/mmap.cc:322 +msgid "Failed to truncate file" +msgstr "Dosya kesilemedi" + +#: apt-pkg/contrib/mmap.cc:341 +#, c-format +msgid "" +"Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. " +"Current value: %lu. (man 5 apt.conf)" +msgstr "" +"Dinamik MMap yerine sığamadı. Lütfen APT::Cache-Start boyutunu artırın. " +"Kullanımdaki değer: %lu (ayrıntılı bilgi için man 5 apt.conf komutunu " +"kullanın)" + +#: apt-pkg/contrib/mmap.cc:440 +#, c-format +msgid "" +"Unable to increase the size of the MMap as the limit of %lu bytes is already " +"reached." +msgstr "%lu baytlık sınıra ulaşıldığı için MMap boyutu artırılamadı." + +#: apt-pkg/contrib/mmap.cc:443 +msgid "" +"Unable to increase size of the MMap as automatic growing is disabled by user." +msgstr "" +"Otomatik büyüme kullanıcı tarafından kapatıldığı için MMap boyutu " +"artırılamadı." + +#. d means days, h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:372 +#, c-format +msgid "%lid %lih %limin %lis" +msgstr "%li gün %li saat %li dk. %li sn." + +#. h means hours, min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:379 +#, c-format +msgid "%lih %limin %lis" +msgstr "%li saat %li dk. %li sn." + +#. min means minutes, s means seconds +#: apt-pkg/contrib/strutl.cc:386 +#, c-format +msgid "%limin %lis" +msgstr "%li dk. %li sn." + +#. s means seconds +#: apt-pkg/contrib/strutl.cc:391 +#, c-format +msgid "%lis" +msgstr "%li sn." + +#: apt-pkg/contrib/strutl.cc:1166 +#, c-format +msgid "Selection %s not found" +msgstr "%s seçimi bulunamadı" + +#: apt-pkg/contrib/configuration.cc:491 +#, c-format +msgid "Unrecognized type abbreviation: '%c'" +msgstr "Tanınamayan tür kısaltması: '%c'" + +#: apt-pkg/contrib/configuration.cc:605 +#, c-format +msgid "Opening configuration file %s" +msgstr "Yapılandırma dosyası (%s) açılıyor" + +#: apt-pkg/contrib/configuration.cc:773 +#, c-format +msgid "Syntax error %s:%u: Block starts with no name." +msgstr "Sözdizim hatası %s:%u: Blok ad olmadan başlıyor." + +#: apt-pkg/contrib/configuration.cc:792 +#, c-format +msgid "Syntax error %s:%u: Malformed tag" +msgstr "Sözdizim hatası %s:%u: Kötü biçimlendirilmiş etiket" + +#: apt-pkg/contrib/configuration.cc:809 +#, c-format +msgid "Syntax error %s:%u: Extra junk after value" +msgstr "Sözdizim hatası %s:%u: Değerden sonra ilave gereksiz" + +#: apt-pkg/contrib/configuration.cc:849 +#, c-format +msgid "Syntax error %s:%u: Directives can only be done at the top level" +msgstr "Sözdizim hatası %s:%u: Yönergeler yalnızca en üst düzeyde bitebilir" + +#: apt-pkg/contrib/configuration.cc:856 +#, c-format +msgid "Syntax error %s:%u: Too many nested includes" +msgstr "Sözdizim hatası %s:%u: Çok fazla yuvalanmış 'include'" + +#: apt-pkg/contrib/configuration.cc:860 apt-pkg/contrib/configuration.cc:865 +#, c-format +msgid "Syntax error %s:%u: Included from here" +msgstr "Sözdizim hatası %s:%u: Buradan 'include' edilmiş" + +#: apt-pkg/contrib/configuration.cc:869 +#, c-format +msgid "Syntax error %s:%u: Unsupported directive '%s'" +msgstr "Sözdizim hatası %s:%u: Desteklenmeyen yönerge '%s'" + +#: apt-pkg/contrib/configuration.cc:872 +#, c-format +msgid "Syntax error %s:%u: clear directive requires an option tree as argument" +msgstr "" +"Sözdizim hatası %s:%u: clear yönergesi argüman olarak bir seçenek ağacı " +"gerektirir." + +#: apt-pkg/contrib/configuration.cc:922 +#, c-format +msgid "Syntax error %s:%u: Extra junk at end of file" +msgstr "Sözdizim hatası %s:%u: Dosya sonunda ilave gereksiz" + +#: apt-pkg/contrib/progress.cc:146 +#, c-format +msgid "%c%s... Error!" +msgstr "%c%s... Hata!" + +#: apt-pkg/contrib/progress.cc:148 +#, c-format +msgid "%c%s... Done" +msgstr "%c%s... Bitti" + +#: apt-pkg/contrib/cmndline.cc:80 +#, c-format +msgid "Command line option '%c' [from %s] is not known." +msgstr "Komut satırı seçeneği '%c' [%s içinden] tanınmıyor." + +#: apt-pkg/contrib/cmndline.cc:105 apt-pkg/contrib/cmndline.cc:114 +#: apt-pkg/contrib/cmndline.cc:122 +#, c-format +msgid "Command line option %s is not understood" +msgstr "Komut satırı seçeneği %s anlaşılamadı" + +#: apt-pkg/contrib/cmndline.cc:127 +#, c-format +msgid "Command line option %s is not boolean" +msgstr "Komut satırı seçeneği %s mantıksal değer değil" + +#: apt-pkg/contrib/cmndline.cc:168 apt-pkg/contrib/cmndline.cc:189 +#, c-format +msgid "Option %s requires an argument." +msgstr "%s seçeneği bir bağımsız değişkene gerek duyar." + +#: apt-pkg/contrib/cmndline.cc:202 apt-pkg/contrib/cmndline.cc:208 +#, c-format +msgid "Option %s: Configuration item specification must have an =." +msgstr "" +"%s seçeneği: Yapılandırma öğesi tanımlaması = şeklinde değer " +"içermelidir." + +#: apt-pkg/contrib/cmndline.cc:237 +#, c-format +msgid "Option %s requires an integer argument, not '%s'" +msgstr "%s seçeneği bir tam sayı bağımsız değişkene gerek duyar, '%s' değil" + +#: apt-pkg/contrib/cmndline.cc:268 +#, c-format +msgid "Option '%s' is too long" +msgstr "'%s' seçeneği çok uzun" + +#: apt-pkg/contrib/cmndline.cc:300 +#, c-format +msgid "Sense %s is not understood, try true or false." +msgstr "%s algılaması anlaşılamadı, true (doğru) ya da false (yanlış) deneyin." + +#: apt-pkg/contrib/cmndline.cc:350 +#, c-format +msgid "Invalid operation %s" +msgstr "Geçersiz işlem: %s" + +#: apt-pkg/contrib/cdromutl.cc:56 +#, c-format +msgid "Unable to stat the mount point %s" +msgstr "Bağlama noktasının (%s) durum bilgisi alınamadı" + +#: apt-pkg/contrib/cdromutl.cc:224 +msgid "Failed to stat the cdrom" +msgstr "Cdrom durum bilgisi alınamadı" + +#: apt-pkg/contrib/fileutl.cc:93 +#, c-format +msgid "Problem closing the gzip file %s" +msgstr "Gzip dosyası %s kapatılamadı" + +#: apt-pkg/contrib/fileutl.cc:225 +#, c-format +msgid "Not using locking for read only lock file %s" +msgstr "Kilitleme dosyası %s salt okunur olduğu için kilitleme kullanılmıyor" + +#: apt-pkg/contrib/fileutl.cc:230 +#, c-format +msgid "Could not open lock file %s" +msgstr "Kilit dosyası %s açılamadı" + +#: apt-pkg/contrib/fileutl.cc:248 +#, c-format +msgid "Not using locking for nfs mounted lock file %s" +msgstr "nfs ile bağlanmış kilit dosyası %s için kilitleme kullanılmıyor" + +#: apt-pkg/contrib/fileutl.cc:252 +#, c-format +msgid "Could not get lock %s" +msgstr "%s kilidi alınamadı" + +#: apt-pkg/contrib/fileutl.cc:392 apt-pkg/contrib/fileutl.cc:506 +#, c-format +msgid "List of files can't be created as '%s' is not a directory" +msgstr "'%s' dizin olmadığı için dosya listeli oluşturulamıyor" + +#: apt-pkg/contrib/fileutl.cc:426 +#, c-format +msgid "Ignoring '%s' in directory '%s' as it is not a regular file" +msgstr "" +"'%2$s' dizinindeki '%1$s' normal bir dosya olmadığı için görmezden geliniyor." + +#: apt-pkg/contrib/fileutl.cc:444 +#, c-format +msgid "Ignoring file '%s' in directory '%s' as it has no filename extension" +msgstr "" +"'%2$s' dizinindeki '%1$s' dosyası uzantısı olmadığı için görmezden geliniyor." + +#: apt-pkg/contrib/fileutl.cc:453 +#, c-format +msgid "" +"Ignoring file '%s' in directory '%s' as it has an invalid filename extension" +msgstr "" +"'%2$s' dizinindeki '%1$s' dosyası geçersiz bir dosya uzantısı olduğu için " +"yok sayılıyor." + +#: apt-pkg/contrib/fileutl.cc:840 +#, c-format +msgid "Sub-process %s received a segmentation fault." +msgstr "%s altsüreci bir bölümleme hatası aldı (segmentation fault)." + +#: apt-pkg/contrib/fileutl.cc:842 +#, c-format +msgid "Sub-process %s received signal %u." +msgstr "%s altsüreci %u sinyali aldı" + +#: apt-pkg/contrib/fileutl.cc:846 +#, c-format +msgid "Sub-process %s returned an error code (%u)" +msgstr "%s altsüreci bir hata kodu gönderdi (%u)" + +#: apt-pkg/contrib/fileutl.cc:848 +#, c-format +msgid "Sub-process %s exited unexpectedly" +msgstr "%s altsüreci beklenmeyen bir şekilde sona erdi" + +#: apt-pkg/contrib/fileutl.cc:984 apt-pkg/indexcopy.cc:661 +#, c-format +msgid "Could not open file %s" +msgstr "%s dosyası açılamadı" + +#: apt-pkg/contrib/fileutl.cc:1046 +#, c-format +msgid "Could not open file descriptor %d" +msgstr "Dosya tanımlayıcı %d açılamadı" + +#: apt-pkg/contrib/fileutl.cc:1136 +msgid "Failed to create subprocess IPC" +msgstr "Altsüreç IPC'si oluşturulamadı" + +#: apt-pkg/contrib/fileutl.cc:1192 +msgid "Failed to exec compressor " +msgstr "Sıkıştırma programı çalıştırılamadı " + +#: apt-pkg/contrib/fileutl.cc:1289 +#, c-format +msgid "read, still have %llu to read but none left" +msgstr "read, %llu bayt okunması gerekli fakat hiç kalmamış" + +#: apt-pkg/contrib/fileutl.cc:1378 apt-pkg/contrib/fileutl.cc:1400 +#, c-format +msgid "write, still have %llu to write but couldn't" +msgstr "write, yazılması gereken %llu bayt yazılamıyor" + +#: apt-pkg/contrib/fileutl.cc:1716 +#, c-format +msgid "Problem closing the file %s" +msgstr "%s dosyası kapatılamadı" + +#: apt-pkg/contrib/fileutl.cc:1728 +#, c-format +msgid "Problem renaming the file %s to %s" +msgstr "%s dosyası %s olarak yeniden adlandırılamadı" + +#: apt-pkg/contrib/fileutl.cc:1739 +#, c-format +msgid "Problem unlinking the file %s" +msgstr "%s dosyasından bağ kaldırma sorunu" + +#: apt-pkg/contrib/fileutl.cc:1754 +msgid "Problem syncing the file" +msgstr "Dosya eşitlenirken sorun çıktı" + +#: apt-pkg/pkgcache.cc:148 +msgid "Empty package cache" +msgstr "Boş paket önbelleği" + +#: apt-pkg/pkgcache.cc:154 +msgid "The package cache file is corrupted" +msgstr "Paket önbelleği dosyası bozulmuş" + +#: apt-pkg/pkgcache.cc:159 +msgid "The package cache file is an incompatible version" +msgstr "Paket önbelleği dosyası uyumsuz bir sürümde" + +#: apt-pkg/pkgcache.cc:162 +msgid "The package cache file is corrupted, it is too small" +msgstr "Paket önbellek dosyası bozulmuş, çok küçük" + +#: apt-pkg/pkgcache.cc:167 +#, c-format +msgid "This APT does not support the versioning system '%s'" +msgstr "Bu APT '%s' sürümleme sistemini desteklemiyor." + +#: apt-pkg/pkgcache.cc:172 +msgid "The package cache was built for a different architecture" +msgstr "Paket önbelleği farklı bir mimarı için yapılmış" + +#: apt-pkg/pkgcache.cc:305 +msgid "Depends" +msgstr "Bağımlılıklar" + +#: apt-pkg/pkgcache.cc:305 +msgid "PreDepends" +msgstr "ÖnBağımlılıklar" + +#: apt-pkg/pkgcache.cc:305 +msgid "Suggests" +msgstr "Önerdikleri" + +#: apt-pkg/pkgcache.cc:306 +msgid "Recommends" +msgstr "Tavsiye ettikleri" + +#: apt-pkg/pkgcache.cc:306 +msgid "Conflicts" +msgstr "Çakışmalar" + +#: apt-pkg/pkgcache.cc:306 +msgid "Replaces" +msgstr "Değiştirilenler" + +#: apt-pkg/pkgcache.cc:307 +msgid "Obsoletes" +msgstr "Eskiyenler" + +#: apt-pkg/pkgcache.cc:307 +msgid "Breaks" +msgstr "Bozdukları" + +#: apt-pkg/pkgcache.cc:307 +msgid "Enhances" +msgstr "Geliştirdikleri" + +#: apt-pkg/pkgcache.cc:318 +msgid "important" +msgstr "önemli" + +#: apt-pkg/pkgcache.cc:318 +msgid "required" +msgstr "gerekli" + +#: apt-pkg/pkgcache.cc:318 +msgid "standard" +msgstr "standart" + +#: apt-pkg/pkgcache.cc:319 +msgid "optional" +msgstr "seçimlik" + +#: apt-pkg/pkgcache.cc:319 +msgid "extra" +msgstr "ilave" + +#: apt-pkg/depcache.cc:132 apt-pkg/depcache.cc:161 +msgid "Building dependency tree" +msgstr "Bağımlılık ağacı oluşturuluyor" + +#: apt-pkg/depcache.cc:133 +msgid "Candidate versions" +msgstr "Aday sürümler" + +#: apt-pkg/depcache.cc:162 +msgid "Dependency generation" +msgstr "Bağımlılık oluşturma" + +#: apt-pkg/depcache.cc:182 apt-pkg/depcache.cc:215 apt-pkg/depcache.cc:219 +msgid "Reading state information" +msgstr "Durum bilgisi okunuyor" + +#: apt-pkg/depcache.cc:244 +#, c-format +msgid "Failed to open StateFile %s" +msgstr "Durum dosyası (StateFile) %s açılamadı." + +#: apt-pkg/depcache.cc:250 +#, c-format +msgid "Failed to write temporary StateFile %s" +msgstr "Geçici durum dosyasına (%s) yazma başarısız oldu" + +#: apt-pkg/tagfile.cc:129 +#, c-format +msgid "Unable to parse package file %s (1)" +msgstr "Paket dosyası %s ayrıştırılamadı (1)" + +#: apt-pkg/tagfile.cc:216 +#, c-format +msgid "Unable to parse package file %s (2)" +msgstr "Paket dosyası %s ayrıştırılamadı (2)" + +#: apt-pkg/sourcelist.cc:96 +#, c-format +msgid "Malformed line %lu in source list %s ([option] unparseable)" +msgstr "" +"Kaynak listesinin (%2$s) %1$lu numaralı satırı hatalı ([seçenek] " +"ayrıştırılamıyor)" + +#: apt-pkg/sourcelist.cc:99 +#, c-format +msgid "Malformed line %lu in source list %s ([option] too short)" +msgstr "" +"Kaynak listesinin (%2$s) %1$lu numaralı satırı hatalı ([seçenek] çok kısa)" + +#: apt-pkg/sourcelist.cc:110 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] is not an assignment)" +msgstr "" +"Kaynak listesinin (%2$s) %1$lu numaralı satırı hatalı ([%3$s] bir atama " +"değil)" + +#: apt-pkg/sourcelist.cc:116 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] has no key)" +msgstr "" +"Kaynak listesinin (%2$s) %1$lu numaralı satırı hatalı ([%3$s] seçeneğinin " +"anahtarı yok)" + +#: apt-pkg/sourcelist.cc:119 +#, c-format +msgid "Malformed line %lu in source list %s ([%s] key %s has no value)" +msgstr "" +"Kaynak listesinin (%2$s) %1$lu numaralı satırı hatalı ([%3$s] %4$s " +"anahtarına değer atanmamış)" + +#: apt-pkg/sourcelist.cc:132 +#, c-format +msgid "Malformed line %lu in source list %s (URI)" +msgstr "Kaynak listesinin (%2$s) %1$lu numaralı satırı hatalı (URI)" + +#: apt-pkg/sourcelist.cc:134 +#, c-format +msgid "Malformed line %lu in source list %s (dist)" +msgstr "Kaynak listesinin (%2$s) %1$lu numaralı satırı hatalı (dist)" + +#: apt-pkg/sourcelist.cc:137 +#, c-format +msgid "Malformed line %lu in source list %s (URI parse)" +msgstr "" +"Kaynak listesinin (%2$s) %1$lu numaralı satırı hatalı (URI ayrıştırma)" + +#: apt-pkg/sourcelist.cc:143 +#, c-format +msgid "Malformed line %lu in source list %s (absolute dist)" +msgstr "Kaynak listesinin (%2$s) %1$lu numaralı satırı hatalı (mutlak dist)" + +#: apt-pkg/sourcelist.cc:150 +#, c-format +msgid "Malformed line %lu in source list %s (dist parse)" +msgstr "" +"Kaynak listesinin (%2$s) %1$lu numaralı satırı hatalı (dağıtım ayrıştırma)" + +#: apt-pkg/sourcelist.cc:248 +#, c-format +msgid "Opening %s" +msgstr "%s Açılıyor" + +#: apt-pkg/sourcelist.cc:265 apt-pkg/cdrom.cc:495 +#, c-format +msgid "Line %u too long in source list %s." +msgstr "Kaynak listesinin (%2$s) %1$u numaralı satırı çok uzun." + +#: apt-pkg/sourcelist.cc:285 +#, c-format +msgid "Malformed line %u in source list %s (type)" +msgstr "Kaynak listesinin (%2$s) %1$u numaralı satırı hatalı (tür)" + +#: apt-pkg/sourcelist.cc:289 +#, c-format +msgid "Type '%s' is not known on line %u in source list %s" +msgstr "'%s' türü bilinmiyor. (Satır: %u, Kaynak Listesi: %s)" + +#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:896 +#, c-format +msgid "" +"Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " +"under APT::Immediate-Configure for details. (%d)" +msgstr "" +"\"%s\" paketinin anında yapılandırması başarısız oldu. Ayrıntılar için apt." +"conf(5) rehber sayfasının APT::Immediate-Configure kısmına bakın. (%d)" + +#: apt-pkg/packagemanager.cc:473 apt-pkg/packagemanager.cc:503 +#, c-format +msgid "Could not configure '%s'. " +msgstr "'%s' paketi yapılandırılamadı. " + +#: apt-pkg/packagemanager.cc:545 +#, c-format +msgid "" +"This installation run will require temporarily removing the essential " +"package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if " +"you really want to do it, activate the APT::Force-LoopBreak option." +msgstr "" +"Bu kurulum, bir Çakışma/Ön-Bağımlılık döngüsü içerdiği için %s temel " +"paketinin geçici olarak kaldırılmasını gerektiriyor. Bu durum genellikle " +"kötü bir durumdur, ama ille de devam etmek isterseniz, APT::Force-LoopBreak " +"seçeneğini etkinleştirin." + +#: apt-pkg/pkgrecords.cc:34 +#, c-format +msgid "Index file type '%s' is not supported" +msgstr "İndeks dosyası türü '%s' desteklenmiyor" + +#: apt-pkg/algorithms.cc:266 +#, c-format +msgid "" +"The package %s needs to be reinstalled, but I can't find an archive for it." +msgstr "" +"%s paketinin tekrar kurulması gerekli, ancak gereken arşiv dosyası " +"bulunamıyor." + +#: apt-pkg/algorithms.cc:1228 +msgid "" +"Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " +"held packages." +msgstr "" +"Hata, pkgProblemResolver::Resolve bozuk paketlere yol açtı, bu sorunun " +"nedeni tutulan paketler olabilir." + +#: apt-pkg/algorithms.cc:1230 +msgid "Unable to correct problems, you have held broken packages." +msgstr "Sorunlar giderilemedi, tutulan bozuk paketleriniz var." + +#: apt-pkg/algorithms.cc:1574 apt-pkg/algorithms.cc:1576 +msgid "" +"Some index files failed to download. They have been ignored, or old ones " +"used instead." +msgstr "" +"Bazı indeks dosyaları indirilemedi. Bu dosyalar yok sayıldılar ya da önceki " +"sürümleri kullanıldı." + +#: apt-pkg/acquire.cc:81 +#, c-format +msgid "List directory %spartial is missing." +msgstr "Liste dizini %spartial bulunamadı." + +#: apt-pkg/acquire.cc:85 +#, c-format +msgid "Archives directory %spartial is missing." +msgstr "Arşiv dizini %spartial bulunamadı." + +#: apt-pkg/acquire.cc:93 +#, c-format +msgid "Unable to lock directory %s" +msgstr "%s dizini kilitlenemiyor" + +#. only show the ETA if it makes sense +#. two days +#: apt-pkg/acquire.cc:893 +#, c-format +msgid "Retrieving file %li of %li (%s remaining)" +msgstr "Alınan dosya: %li / %li (%s kaldı)" + +#: apt-pkg/acquire.cc:895 +#, c-format +msgid "Retrieving file %li of %li" +msgstr "Alınan dosya: %li / %li" + +#: apt-pkg/acquire-worker.cc:112 +#, c-format +msgid "The method driver %s could not be found." +msgstr "Yöntem sürücüsü %s bulunamadı." + +#: apt-pkg/acquire-worker.cc:161 +#, c-format +msgid "Method %s did not start correctly" +msgstr "%s yöntemi düzgün şekilde başlamadı" + +#: apt-pkg/acquire-worker.cc:440 +#, c-format +msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." +msgstr "" +"Lütfen '%s' olarak etiketlenmiş diski '%s' sürücüsüne yerleştirin ve giriş " +"(enter) tuşuna basın." + +#: apt-pkg/init.cc:151 +#, c-format +msgid "Packaging system '%s' is not supported" +msgstr "Paketleme sistemi '%s' desteklenmiyor" + +#: apt-pkg/init.cc:167 +msgid "Unable to determine a suitable packaging system type" +msgstr "Uygun bir paketleme sistemi türü bulunamıyor" + +#: apt-pkg/clean.cc:57 +#, c-format +msgid "Unable to stat %s." +msgstr "%s için dosya bilgisi alınamadı." + +#: apt-pkg/srcrecords.cc:47 +msgid "You must put some 'source' URIs in your sources.list" +msgstr "'sources.list' dosyası içine bazı 'source' adresleri koymalısınız." + +#: apt-pkg/cachefile.cc:87 +msgid "The package lists or status file could not be parsed or opened." +msgstr "Paket listeleri ya da durum dosyası ayrıştırılamadı ya da açılamadı." + +#: apt-pkg/cachefile.cc:91 +msgid "You may want to run apt-get update to correct these problems" +msgstr "" +"Bu sorunları gidermek için apt-get update komutunu çalıştırabilirsiniz." + +#: apt-pkg/cachefile.cc:109 +msgid "The list of sources could not be read." +msgstr "Kaynak listesi okunamadı." + +#: apt-pkg/policy.cc:75 +#, c-format +msgid "" +"The value '%s' is invalid for APT::Default-Release as such a release is not " +"available in the sources" +msgstr "" +"APT::Default-Release için '%s' değeri geçersizdir, çünkü kaynaklarda böyle " +"bir sürüm yok." + +#: apt-pkg/policy.cc:399 +#, c-format +msgid "Invalid record in the preferences file %s, no Package header" +msgstr "%s tercihler dosyasında geçersiz kayıt, Paket başlığı yok" + +#: apt-pkg/policy.cc:421 +#, c-format +msgid "Did not understand pin type %s" +msgstr "İğne türü %s anlaşılamadı" + +#: apt-pkg/policy.cc:429 +msgid "No priority (or zero) specified for pin" +msgstr "İğne için öncelik belirlenmedi (ya da sıfır)" + +#: apt-pkg/pkgcachegen.cc:87 +msgid "Cache has an incompatible versioning system" +msgstr "Önbelleğin uyumsuz bir sürümleme sistemi var" + +#. TRANSLATOR: The first placeholder is a package name, +#. the other two should be copied verbatim as they include debug info +#: apt-pkg/pkgcachegen.cc:218 apt-pkg/pkgcachegen.cc:228 +#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:325 +#: apt-pkg/pkgcachegen.cc:333 apt-pkg/pkgcachegen.cc:375 +#: apt-pkg/pkgcachegen.cc:379 apt-pkg/pkgcachegen.cc:396 +#: apt-pkg/pkgcachegen.cc:406 apt-pkg/pkgcachegen.cc:410 +#: apt-pkg/pkgcachegen.cc:414 apt-pkg/pkgcachegen.cc:435 +#: apt-pkg/pkgcachegen.cc:477 apt-pkg/pkgcachegen.cc:517 +#: apt-pkg/pkgcachegen.cc:525 apt-pkg/pkgcachegen.cc:556 +#: apt-pkg/pkgcachegen.cc:570 +#, c-format +msgid "Error occurred while processing %s (%s%d)" +msgstr "%s paketi işlenirken sorunlarla karşılaşıldı (%s%d)" + +#: apt-pkg/pkgcachegen.cc:251 +msgid "Wow, you exceeded the number of package names this APT is capable of." +msgstr "Vay canına, bu APT'nin alabileceği paket adları sayısını aştınız." + +#: apt-pkg/pkgcachegen.cc:254 +msgid "Wow, you exceeded the number of versions this APT is capable of." +msgstr "Vay canına, bu APT'nin alabileceği sürüm sayısını aştınız." + +#: apt-pkg/pkgcachegen.cc:257 +msgid "Wow, you exceeded the number of descriptions this APT is capable of." +msgstr "Vay canına, bu APT'nin alabileceği açıklama sayısını aştınız." + +#: apt-pkg/pkgcachegen.cc:260 +msgid "Wow, you exceeded the number of dependencies this APT is capable of." +msgstr "Vay canına, bu APT'nin alabileceği bağımlılık sayısını aştınız." + +#: apt-pkg/pkgcachegen.cc:577 +#, c-format +msgid "Package %s %s was not found while processing file dependencies" +msgstr "Dosya bağımlılıkları işlenirken %s %s paketi bulunamadı" + +#: apt-pkg/pkgcachegen.cc:1146 +#, c-format +msgid "Couldn't stat source package list %s" +msgstr "Kaynak listesinin (%s) dosya bilgisi alınamadı" + +#: apt-pkg/pkgcachegen.cc:1234 apt-pkg/pkgcachegen.cc:1338 +#: apt-pkg/pkgcachegen.cc:1344 apt-pkg/pkgcachegen.cc:1501 +msgid "Reading package lists" +msgstr "Paket listeleri okunuyor" + +#: apt-pkg/pkgcachegen.cc:1251 +msgid "Collecting File Provides" +msgstr "Dosya Sağlananları Toplanıyor" + +#: apt-pkg/pkgcachegen.cc:1443 apt-pkg/pkgcachegen.cc:1450 +msgid "IO Error saving source cache" +msgstr "Kaynak önbelleği kaydedilirken GÇ Hatası" + +#: apt-pkg/acquire-item.cc:139 +#, c-format +msgid "rename failed, %s (%s -> %s)." +msgstr "yeniden adlandırma başarısız, %s (%s -> %s)." + +#: apt-pkg/acquire-item.cc:599 +msgid "MD5Sum mismatch" +msgstr "MD5 toplamı eşleşmiyor" + +#: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1859 +#: apt-pkg/acquire-item.cc:2002 +msgid "Hash Sum mismatch" +msgstr "Sağlama toplamları eşleşmiyor" + +#: apt-pkg/acquire-item.cc:1370 +#, c-format +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ı)" + +#: apt-pkg/acquire-item.cc:1386 +#, c-format +msgid "Unable to find hash sum for '%s' in Release file" +msgstr "'Release' dosyasında '%s' için uygun bir sağlama toplamı bulunamadı" + +#: apt-pkg/acquire-item.cc:1428 +msgid "There is no public key available for the following key IDs:\n" +msgstr "" +"Aşağıdaki anahtar kimlikleri için kullanılır hiçbir genel anahtar yok:\n" + +#: apt-pkg/acquire-item.cc:1466 +#, c-format +msgid "" +"Release file for %s is expired (invalid since %s). Updates for this " +"repository will not be applied." +msgstr "" +"%s konumundaki 'Release' dosyasının vâdesi dolmuş (%s önce). Bu deponun " +"güncelleştirmeleri uygulanmayacak." + +#: apt-pkg/acquire-item.cc:1488 +#, c-format +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:1521 +#, c-format +msgid "" +"A error occurred during the signature verification. The repository is not " +"updated and the previous index files will be used. GPG error: %s: %s\n" +msgstr "" +"İmza doğrulama sırasında bir hata meydana geldi. Depo güncel değil ve önceki " +"indeks dosyaları kullanılacak. GPG hatası: %s:%s\n" + +#. Invalid signature file, reject (LP: #346386) (Closes: #627642) +#: apt-pkg/acquire-item.cc:1531 apt-pkg/acquire-item.cc:1536 +#, c-format +msgid "GPG error: %s: %s" +msgstr "GPG hatası: %s: %s" + +#: apt-pkg/acquire-item.cc:1635 +#, c-format +msgid "" +"I wasn't able to locate a file for the %s package. This might mean you need " +"to manually fix this package. (due to missing arch)" +msgstr "" +"%s paketindeki dosyalardan biri konumlandırılamadı. Bu durum, bu paketi elle " +"düzeltmeniz gerektiği anlamına gelebilir. (eksik mimariden dolayı)" + +#: apt-pkg/acquire-item.cc:1694 +#, c-format +msgid "" +"I wasn't able to locate a file for the %s package. This might mean you need " +"to manually fix this package." +msgstr "" +"%s paketindeki dosyalardan biri konumlandırılamadı. Bu durum, bu paketi elle " +"düzeltmeniz gerektiği anlamına gelebilir." + +#: apt-pkg/acquire-item.cc:1753 +#, c-format +msgid "" +"The package index files are corrupted. No Filename: field for package %s." +msgstr "Paket indeks dosyaları bozuk. %s paketinin 'Filename:' alanı yok." + +#: apt-pkg/acquire-item.cc:1851 +msgid "Size mismatch" +msgstr "Boyutlar eşleşmiyor" + +#: apt-pkg/indexrecords.cc:64 +#, c-format +msgid "Unable to parse Release file %s" +msgstr "'Release' dosyası (%s) ayrıştırılamadı" + +#: apt-pkg/indexrecords.cc:74 +#, c-format +msgid "No sections in Release file %s" +msgstr "'Release' dosyası %s içinde hiç bölüm yok" + +#: apt-pkg/indexrecords.cc:108 +#, c-format +msgid "No Hash entry in Release file %s" +msgstr "'Release' dosyasında (%s) sağlama girdisi yok" + +#: apt-pkg/indexrecords.cc:121 +#, c-format +msgid "Invalid 'Valid-Until' entry in Release file %s" +msgstr "'Release' dosyasında (%s) geçersiz 'Valid-Until' girdisi" + +#: apt-pkg/indexrecords.cc:140 +#, c-format +msgid "Invalid 'Date' entry in Release file %s" +msgstr "'Release' dosyasında (%s) geçersiz 'Date' girdisi" + +#: apt-pkg/vendorlist.cc:78 +#, c-format +msgid "Vendor block %s contains no fingerprint" +msgstr "Sağlayıcı bloğu %s parmak izi içermiyor" + +#: apt-pkg/cdrom.cc:576 +#, c-format +msgid "" +"Using CD-ROM mount point %s\n" +"Mounting CD-ROM\n" +msgstr "" +"CD-ROM bağlama noktası %s kullanılıyor\n" +"CD-ROM bağlanıyor\n" + +#: apt-pkg/cdrom.cc:585 apt-pkg/cdrom.cc:682 +msgid "Identifying.. " +msgstr "Tanımlanıyor... " + +#: apt-pkg/cdrom.cc:613 +#, c-format +msgid "Stored label: %s\n" +msgstr "Kayıtlı etiket: %s\n" + +#: apt-pkg/cdrom.cc:622 apt-pkg/cdrom.cc:907 +msgid "Unmounting CD-ROM...\n" +msgstr "CD-ROM ayrılıyor...\n" + +#: apt-pkg/cdrom.cc:642 +#, c-format +msgid "Using CD-ROM mount point %s\n" +msgstr "CD-ROM bağlama noktası %s kullanılıyor\n" + +#: apt-pkg/cdrom.cc:660 +msgid "Unmounting CD-ROM\n" +msgstr "CD-ROM ayrılıyor\n" + +#: apt-pkg/cdrom.cc:665 +msgid "Waiting for disc...\n" +msgstr "Disk bekleniliyor...\n" + +#: apt-pkg/cdrom.cc:674 +msgid "Mounting CD-ROM...\n" +msgstr "CD-ROM bağlanıyor...\n" + +#: apt-pkg/cdrom.cc:693 +msgid "Scanning disc for index files..\n" +msgstr "Disk, indeks dosyaları için taranıyor..\n" + +#: apt-pkg/cdrom.cc:744 +#, c-format +msgid "" +"Found %zu package indexes, %zu source indexes, %zu translation indexes and " +"%zu signatures\n" +msgstr "" +"%zu paket indeksi, %zu kaynak indeksi, %zu çeviri indeksi ve %zu imza " +"bulundu\n" + +#: apt-pkg/cdrom.cc:755 +msgid "" +"Unable to locate any package files, perhaps this is not a Debian Disc or the " +"wrong architecture?" +msgstr "" +"Hiç paket dosyası bulunamadı. Belirttiğiniz disk bir Debian diski değil ya " +"da yanlış mimariye sahip." + +#: apt-pkg/cdrom.cc:782 +#, c-format +msgid "Found label '%s'\n" +msgstr "'%s' etiketi bulundu\n" + +#: apt-pkg/cdrom.cc:811 +msgid "That is not a valid name, try again.\n" +msgstr "Bu, geçerli bir ad değil, yeniden deneyin.\n" + +#: apt-pkg/cdrom.cc:828 +#, c-format +msgid "" +"This disc is called: \n" +"'%s'\n" +msgstr "" +"Disk adı: \n" +"'%s'\n" + +#: apt-pkg/cdrom.cc:830 +msgid "Copying package lists..." +msgstr "Paket listeleri kopyalanıyor.." + +#: apt-pkg/cdrom.cc:857 +msgid "Writing new source list\n" +msgstr "Yeni kaynak listesi yazılıyor\n" + +#: apt-pkg/cdrom.cc:865 +msgid "Source list entries for this disc are:\n" +msgstr "Bu disk için olan kaynak listesi girdileri:\n" + +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:884 +#, c-format +msgid "Wrote %i records.\n" +msgstr "%i kayıt yazıldı.\n" + +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:886 +#, c-format +msgid "Wrote %i records with %i missing files.\n" +msgstr "%2$i eksik dosyayla %1$i kayıt yazıldı.\n" + +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:889 +#, c-format +msgid "Wrote %i records with %i mismatched files\n" +msgstr "%2$i eşleşmeyen dosyayla %1$i kayıt yazıldı\n" + +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:892 +#, c-format +msgid "Wrote %i records with %i missing files and %i mismatched files\n" +msgstr "%2$i eksik dosya ve %3$i eşleşmeyen dosyayla %1$i kayıt yazıldı\n" + +#: apt-pkg/indexcopy.cc:515 +#, c-format +msgid "Can't find authentication record for: %s" +msgstr "%s için kimlik doğrulama kaydı bulunamadı." + +#: apt-pkg/indexcopy.cc:521 +#, c-format +msgid "Hash mismatch for: %s" +msgstr "Sağlama yapılamadı: %s" + +#: apt-pkg/indexcopy.cc:665 +#, c-format +msgid "File %s doesn't start with a clearsigned message" +msgstr "%s dosyası açıkimzalı bir iletiyle başlamıyor" + +#. TRANSLATOR: %s is the trusted keyring parts directory +#: apt-pkg/indexcopy.cc:696 +#, c-format +msgid "No keyring installed in %s." +msgstr "%s dizininde kurulu bir anahtar yok." + +#: apt-pkg/cacheset.cc:403 +#, c-format +msgid "Release '%s' for '%s' was not found" +msgstr "'%2$s' paketinin '%1$s' sürümü bulunamadı" + +#: apt-pkg/cacheset.cc:406 +#, c-format +msgid "Version '%s' for '%s' was not found" +msgstr "'%2$s' paketinin '%1$s' sürümü bulunamadı" + +#: apt-pkg/cacheset.cc:517 +#, c-format +msgid "Couldn't find task '%s'" +msgstr "'%s' görevi bulunamadı" + +#: apt-pkg/cacheset.cc:523 +#, c-format +msgid "Couldn't find any package by regex '%s'" +msgstr "'%s' düzenli ifadesini içeren herhangi bir paket bulunamadı" + +#: apt-pkg/cacheset.cc:534 +#, c-format +msgid "Can't select versions from package '%s' as it is purely virtual" +msgstr "'%s' paketi tamamen sanal olduğu için sürümü seçilemiyor" + +#: apt-pkg/cacheset.cc:541 apt-pkg/cacheset.cc:548 +#, c-format +msgid "" +"Can't select installed nor candidate version from package '%s' as it has " +"neither of them" +msgstr "" +"'%s' paketi kurulu olmadığı ve aday sürüme sahip olmadığı için her ikisi de " +"seçilemiyor" + +#: apt-pkg/cacheset.cc:555 +#, c-format +msgid "Can't select newest version from package '%s' as it is purely virtual" +msgstr "'%s' paketi sanal olduğu için en yeni sürümü seçilemiyor" + +#: apt-pkg/cacheset.cc:563 +#, c-format +msgid "Can't select candidate version from package %s as it has no candidate" +msgstr "'%s' paketinin aday sürümü olmadığı için aday sürüm seçilemiyor" + +#: apt-pkg/cacheset.cc:571 +#, c-format +msgid "Can't select installed version from package %s as it is not installed" +msgstr "'%s' paketi kurulu olmadığı için kurulu sürüm seçilemiyor" + +#: apt-pkg/edsp.cc:41 apt-pkg/edsp.cc:61 +msgid "Send scenario to solver" +msgstr "Çözücüye senaryo gönder" + +#: apt-pkg/edsp.cc:209 +msgid "Send request to solver" +msgstr "Çözücüye istek gönder" + +#: apt-pkg/edsp.cc:279 +msgid "Prepare for receiving solution" +msgstr "Çözüm almak için hazırlan" + +#: apt-pkg/edsp.cc:286 +msgid "External solver failed without a proper error message" +msgstr "Harici çözücü düzgün bir hata iletisi göstermeden başarısız oldu" + +#: apt-pkg/edsp.cc:557 apt-pkg/edsp.cc:560 apt-pkg/edsp.cc:565 +msgid "Execute external solver" +msgstr "Harici çözücüyü çalıştır" + +#: apt-pkg/deb/dpkgpm.cc:73 +#, c-format +msgid "Installing %s" +msgstr "%s kuruluyor" + +#: apt-pkg/deb/dpkgpm.cc:74 apt-pkg/deb/dpkgpm.cc:952 +#, c-format +msgid "Configuring %s" +msgstr "%s yapılandırılıyor" + +#: apt-pkg/deb/dpkgpm.cc:75 apt-pkg/deb/dpkgpm.cc:959 +#, c-format +msgid "Removing %s" +msgstr "%s kaldırılıyor" + +#: apt-pkg/deb/dpkgpm.cc:76 +#, c-format +msgid "Completely removing %s" +msgstr "%s tamamen kaldırılıyor" + +#: apt-pkg/deb/dpkgpm.cc:77 +#, c-format +msgid "Noting disappearance of %s" +msgstr "%s paketinin kaybolduğu not ediliyor" + +#: apt-pkg/deb/dpkgpm.cc:78 +#, c-format +msgid "Running post-installation trigger %s" +msgstr "Kurulum sonrası tetikleyicisi %s çalıştırılıyor" + +#. FIXME: use a better string after freeze +#: apt-pkg/deb/dpkgpm.cc:705 +#, c-format +msgid "Directory '%s' missing" +msgstr "'%s' dizini bulunamadı" + +#: apt-pkg/deb/dpkgpm.cc:720 apt-pkg/deb/dpkgpm.cc:740 +#, c-format +msgid "Could not open file '%s'" +msgstr "'%s' dosyası açılamadı" + +#: apt-pkg/deb/dpkgpm.cc:945 +#, c-format +msgid "Preparing %s" +msgstr "%s hazırlanıyor" + +#: apt-pkg/deb/dpkgpm.cc:946 +#, c-format +msgid "Unpacking %s" +msgstr "%s paketi açılıyor" + +#: apt-pkg/deb/dpkgpm.cc:951 +#, c-format +msgid "Preparing to configure %s" +msgstr "%s paketini yapılandırmaya hazırlanılıyor" + +#: apt-pkg/deb/dpkgpm.cc:953 +#, c-format +msgid "Installed %s" +msgstr "%s kuruldu" + +#: apt-pkg/deb/dpkgpm.cc:958 +#, c-format +msgid "Preparing for removal of %s" +msgstr "%s paketinin kaldırılmasına hazırlanılıyor" + +#: apt-pkg/deb/dpkgpm.cc:960 +#, c-format +msgid "Removed %s" +msgstr "%s kaldırıldı" + +#: apt-pkg/deb/dpkgpm.cc:965 +#, c-format +msgid "Preparing to completely remove %s" +msgstr "%s paketinin tamamen kaldırılmasına hazırlanılıyor" + +#: apt-pkg/deb/dpkgpm.cc:966 +#, c-format +msgid "Completely removed %s" +msgstr "%s tamamen kaldırıldı" + +#: apt-pkg/deb/dpkgpm.cc:1213 +msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" +msgstr "" +"Günlük yazılamadı, openpty() başarısız oldu (/dev/pts bağlanmadı mı?)\n" + +#: apt-pkg/deb/dpkgpm.cc:1243 +msgid "Running dpkg" +msgstr "dpkg çalıştırılıyor" + +#: apt-pkg/deb/dpkgpm.cc:1415 +msgid "Operation was interrupted before it could finish" +msgstr "İşlem yarıda kesildi" + +#: apt-pkg/deb/dpkgpm.cc:1477 +msgid "No apport report written because MaxReports is reached already" +msgstr "" +"En fazla rapor miktarına (MaxReports) ulaşıldığı için apport raporu yazılmadı" + +#. check if its not a follow up error +#: apt-pkg/deb/dpkgpm.cc:1482 +msgid "dependency problems - leaving unconfigured" +msgstr "bağımlılık sorunları - yapılandırılmamış durumda bırakılıyor" + +#: apt-pkg/deb/dpkgpm.cc:1484 +msgid "" +"No apport report written because the error message indicates its a followup " +"error from a previous failure." +msgstr "" +"Apport raporu yazılmadı çünkü hata iletisi bu durumun bir önceki hatadan " +"kaynaklanan bir hata olduğunu belirtiyor." + +#: apt-pkg/deb/dpkgpm.cc:1490 +msgid "" +"No apport report written because the error message indicates a disk full " +"error" +msgstr "" +"Hata iletisi diskin dolu olduğunu belirttiği için apport raporu yazılamadı" + +#: apt-pkg/deb/dpkgpm.cc:1496 +msgid "" +"No apport report written because the error message indicates a out of memory " +"error" +msgstr "" +"Hata iletisi bir bellek yetersizliği hatasına işaret ettiği için apport " +"raporu yazılamadı" + +#: apt-pkg/deb/dpkgpm.cc:1503 +msgid "" +"No apport report written because the error message indicates a dpkg I/O error" +msgstr "" +"Hata iletisi bir dpkg G/Ç hatasına işaret ettiği için apport raporu " +"yazılamadı" + +#: apt-pkg/deb/debsystem.cc:84 +#, c-format +msgid "" +"Unable to lock the administration directory (%s), is another process using " +"it?" +msgstr "" +"Yönetim dizini (%s) kilitlenemiyor, başka bir işlem tarafından kullanılıyor " +"olmasın?" + +#: apt-pkg/deb/debsystem.cc:87 +#, c-format +msgid "Unable to lock the administration directory (%s), are you root?" +msgstr "Yönetim dizini (%s) kilitlenemiyor, root kullanıcısı mısınız?" + +#. TRANSLATORS: the %s contains the recovery command, usually +#. dpkg --configure -a +#: apt-pkg/deb/debsystem.cc:103 +#, c-format +msgid "" +"dpkg was interrupted, you must manually run '%s' to correct the problem. " +msgstr "" +"dpkg kesintiye uğradı, sorunu düzeltmek için elle '%s' komutunu çalıştırın. " + +#: apt-pkg/deb/debsystem.cc:121 +msgid "Not locked" +msgstr "Kilitlenmemiş" -- cgit v1.2.3 From 45d02095cbd425c741b69810f91bc2282bf9230b Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Fri, 22 Mar 2013 21:46:53 +0100 Subject: add new config options "Acquire::ForceIPv4" and "Acquire::ForceIPv6" to allow focing one or the other (closes: #611891) --- debian/changelog | 5 +++++ methods/connect.cc | 8 ++++++++ 2 files changed, 13 insertions(+) diff --git a/debian/changelog b/debian/changelog index a4a0b4c6d..4c830afe9 100644 --- a/debian/changelog +++ b/debian/changelog @@ -15,6 +15,11 @@ apt (0.9.7.8~exp3) UNRELEASEDexperimental; urgency=low * methods/connect.cc: - provide useful error message in case of EAI_SYSTEM (closes: #703603) + + [ Michael Vogt ] + * add new config options "Acquire::ForceIPv4" and + "Acquire::ForceIPv6" to allow focing one or the other + (closes: #611891) -- Michael Vogt Sun, 17 Mar 2013 19:46:23 +0100 diff --git a/methods/connect.cc b/methods/connect.cc index 3573d3cbf..35f4723ce 100644 --- a/methods/connect.cc +++ b/methods/connect.cc @@ -17,6 +17,7 @@ #include #include #include +#include #include #include @@ -167,6 +168,13 @@ bool Connect(std::string Host,int Port,const char *Service,int DefPort,int &Fd, Hints.ai_flags = AI_ADDRCONFIG; Hints.ai_protocol = 0; + if(_config->FindB("Acquire::ForceIPv4", false) == true) + Hints.ai_family = AF_INET; + else if(_config->FindB("Acquire::ForceIPv6", false) == true) + Hints.ai_family = AF_INET6; + else + Hints.ai_family = AF_UNSPEC; + // if we couldn't resolve the host before, we don't try now if(bad_addr.find(Host) != bad_addr.end()) return _error->Error(_("Could not resolve '%s'"),Host.c_str()); -- cgit v1.2.3 From d89af4b06f6f7690bde54998e4a0e4c57d152edb Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Fri, 22 Mar 2013 21:53:30 +0100 Subject: prepare upload --- debian/changelog | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/debian/changelog b/debian/changelog index 59f01c5d6..27b266ee2 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,18 +1,4 @@ -apt (0.9.7.8) unstable; urgency=criticial - - * SECURITY UPDATE: InRelease verification bypass - - CVE-2013-1051 - - [ David Kalnischk ] - * apt-pkg/deb/debmetaindex.cc, - test/integration/test-bug-595691-empty-and-broken-archive-files, - test/integration/test-releasefile-verification: - - disable InRelease downloading until the verification issue is - fixed, thanks to Ansgar Burchardt for finding the flaw - - -- Michael Vogt Thu, 14 Mar 2013 07:47:36 +0100 - -apt (0.9.7.8~exp3) UNRELEASEDexperimental; urgency=low +apt (0.9.7.9~exp1) experimental; urgency=low [ Niels Thykier ] * test/libapt/assert.h, test/libapt/run-tests: @@ -40,7 +26,21 @@ apt (0.9.7.8~exp3) UNRELEASEDexperimental; urgency=low - this will require rebuilds of the clients as this used to be a inline function - -- Michael Vogt Sun, 17 Mar 2013 19:46:23 +0100 + -- Michael Vogt Fri, 22 Mar 2013 21:53:15 +0100 + +apt (0.9.7.8) unstable; urgency=criticial + + * SECURITY UPDATE: InRelease verification bypass + - CVE-2013-1051 + + [ David Kalnischk ] + * apt-pkg/deb/debmetaindex.cc, + test/integration/test-bug-595691-empty-and-broken-archive-files, + test/integration/test-releasefile-verification: + - disable InRelease downloading until the verification issue is + fixed, thanks to Ansgar Burchardt for finding the flaw + + -- Michael Vogt Thu, 14 Mar 2013 07:47:36 +0100 apt (0.9.7.8~exp2) experimental; urgency=low -- cgit v1.2.3 From 46974861750d556ef62d13dad53f86411d296842 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Fri, 22 Mar 2013 22:10:02 +0100 Subject: releasing version 0.9.7.9~exp1 --- configure.in | 2 +- debian/changelog | 2 +- doc/apt-verbatim.ent | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/configure.in b/configure.in index fa10058ef..b2414e649 100644 --- a/configure.in +++ b/configure.in @@ -18,7 +18,7 @@ AC_CONFIG_AUX_DIR(buildlib) AC_CONFIG_HEADER(include/config.h:buildlib/config.h.in include/apti18n.h:buildlib/apti18n.h.in) PACKAGE="apt" -PACKAGE_VERSION="0.9.7.8~20130109" +PACKAGE_VERSION="0.9.7.9~exp1" PACKAGE_MAIL="APT Development Team " AC_DEFINE_UNQUOTED(PACKAGE,"$PACKAGE") AC_DEFINE_UNQUOTED(PACKAGE_VERSION,"$PACKAGE_VERSION") diff --git a/debian/changelog b/debian/changelog index 27b266ee2..a25507fc9 100644 --- a/debian/changelog +++ b/debian/changelog @@ -26,7 +26,7 @@ apt (0.9.7.9~exp1) experimental; urgency=low - this will require rebuilds of the clients as this used to be a inline function - -- Michael Vogt Fri, 22 Mar 2013 21:53:15 +0100 + -- Michael Vogt Fri, 22 Mar 2013 21:57:08 +0100 apt (0.9.7.8) unstable; urgency=criticial diff --git a/doc/apt-verbatim.ent b/doc/apt-verbatim.ent index f3885ef7c..7bc82695f 100644 --- a/doc/apt-verbatim.ent +++ b/doc/apt-verbatim.ent @@ -213,7 +213,7 @@ "> - + -- cgit v1.2.3 From 1f73a3d88966c833a17b06d5565f1bac4651a432 Mon Sep 17 00:00:00 2001 From: "bubulle@debian.org" <> Date: Sun, 24 Mar 2013 08:54:14 +0100 Subject: Update POT and PO files --- po/apt-all.pot | 75 +++++++++++------- po/ar.po | 73 ++++++++++------- po/ast.po | 73 ++++++++++------- po/bg.po | 73 ++++++++++------- po/bs.po | 73 ++++++++++------- po/ca.po | 245 ++++++++++++++++++++++++++++++--------------------------- po/cs.po | 245 ++++++++++++++++++++++++++++++--------------------------- po/cy.po | 73 ++++++++++------- po/da.po | 73 ++++++++++------- po/de.po | 73 ++++++++++------- po/dz.po | 73 ++++++++++------- po/el.po | 73 ++++++++++------- po/es.po | 73 ++++++++++------- po/eu.po | 73 ++++++++++------- po/fi.po | 73 ++++++++++------- po/fr.po | 75 +++++++++++------- po/gl.po | 73 ++++++++++------- po/hu.po | 73 ++++++++++------- po/it.po | 74 ++++++++++------- po/ja.po | 245 ++++++++++++++++++++++++++++++--------------------------- po/km.po | 73 ++++++++++------- po/ko.po | 73 ++++++++++------- po/ku.po | 73 ++++++++++------- po/lt.po | 73 ++++++++++------- po/mr.po | 73 ++++++++++------- po/nb.po | 73 ++++++++++------- po/ne.po | 73 ++++++++++------- po/nl.po | 73 ++++++++++------- po/nn.po | 73 ++++++++++------- po/pl.po | 73 ++++++++++------- po/pt.po | 73 ++++++++++------- po/pt_BR.po | 73 ++++++++++------- po/ro.po | 73 ++++++++++------- po/ru.po | 245 ++++++++++++++++++++++++++++++--------------------------- po/sk.po | 73 ++++++++++------- po/sl.po | 73 ++++++++++------- po/sv.po | 74 ++++++++++------- po/th.po | 73 ++++++++++------- po/tl.po | 73 ++++++++++------- po/uk.po | 73 ++++++++++------- po/vi.po | 73 ++++++++++------- po/zh_CN.po | 73 ++++++++++------- po/zh_TW.po | 73 ++++++++++------- 43 files changed, 2245 insertions(+), 1588 deletions(-) diff --git a/po/apt-all.pot b/po/apt-all.pot index 690908054..fd772e275 100644 --- a/po/apt-all.pot +++ b/po/apt-all.pot @@ -5,9 +5,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: apt 0.9.7.8\n" +"Project-Id-Version: apt 0.9.7.9~exp1\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-03-14 08:05+0100\n" +"POT-Creation-Date: 2013-03-24 08:53+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -569,7 +569,7 @@ msgstr "" msgid "Do you want to continue [Y/n]? " msgstr "" -#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1557 #, c-format msgid "Failed to fetch %s %s\n" msgstr "" @@ -743,7 +743,7 @@ msgstr "" msgid "Calculating upgrade... " msgstr "" -#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:116 msgid "Failed" msgstr "" @@ -1244,7 +1244,7 @@ msgstr "" msgid "Unable to accept connection" msgstr "" -#: methods/ftp.cc:872 methods/http.cc:1035 methods/rsh.cc:311 +#: methods/ftp.cc:872 methods/http.cc:1039 methods/rsh.cc:311 msgid "Problem hashing file" msgstr "" @@ -1271,59 +1271,64 @@ msgstr "" msgid "Unable to invoke " msgstr "" -#: methods/connect.cc:75 +#: methods/connect.cc:76 #, c-format msgid "Connecting to %s (%s)" msgstr "" -#: methods/connect.cc:86 +#: methods/connect.cc:87 #, c-format msgid "[IP: %s %s]" msgstr "" -#: methods/connect.cc:93 +#: methods/connect.cc:94 #, c-format msgid "Could not create a socket for %s (f=%u t=%u p=%u)" msgstr "" -#: methods/connect.cc:99 +#: methods/connect.cc:100 #, c-format msgid "Cannot initiate the connection to %s:%s (%s)." msgstr "" -#: methods/connect.cc:107 +#: methods/connect.cc:108 #, c-format msgid "Could not connect to %s:%s (%s), connection timed out" msgstr "" -#: methods/connect.cc:125 +#: methods/connect.cc:126 #, c-format msgid "Could not connect to %s:%s (%s)." msgstr "" #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:153 methods/rsh.cc:433 +#: methods/connect.cc:154 methods/rsh.cc:433 #, c-format msgid "Connecting to %s" msgstr "" -#: methods/connect.cc:172 methods/connect.cc:191 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format msgid "Could not resolve '%s'" msgstr "" -#: methods/connect.cc:197 +#: methods/connect.cc:205 #, c-format msgid "Temporary failure resolving '%s'" msgstr "" -#: methods/connect.cc:200 +#: methods/connect.cc:209 +#, c-format +msgid "System error resolving '%s:%s' (%s)" +msgstr "" + +#: methods/connect.cc:211 #, c-format msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "" -#: methods/connect.cc:247 +#: methods/connect.cc:258 #, c-format msgid "Unable to connect to %s:%s:" msgstr "" @@ -1387,43 +1392,43 @@ msgstr "" msgid "Unknown date format" msgstr "" -#: methods/http.cc:818 +#: methods/http.cc:822 msgid "Select failed" msgstr "" -#: methods/http.cc:823 +#: methods/http.cc:827 msgid "Connection timed out" msgstr "" -#: methods/http.cc:846 +#: methods/http.cc:850 msgid "Error writing to output file" msgstr "" -#: methods/http.cc:877 +#: methods/http.cc:881 msgid "Error writing to file" msgstr "" -#: methods/http.cc:905 +#: methods/http.cc:909 msgid "Error writing to the file" msgstr "" -#: methods/http.cc:919 +#: methods/http.cc:923 msgid "Error reading from server. Remote end closed connection" msgstr "" -#: methods/http.cc:921 +#: methods/http.cc:925 msgid "Error reading from server" msgstr "" -#: methods/http.cc:1194 +#: methods/http.cc:1198 msgid "Bad header data" msgstr "" -#: methods/http.cc:1211 methods/http.cc:1266 +#: methods/http.cc:1215 methods/http.cc:1270 msgid "Connection failed" msgstr "" -#: methods/http.cc:1358 +#: methods/http.cc:1362 msgid "Internal error" msgstr "" @@ -2153,6 +2158,16 @@ msgstr "" msgid "%c%s... Done" msgstr "" +#: apt-pkg/contrib/progress.cc:179 +msgid "..." +msgstr "" + +#. Print the spinner +#: apt-pkg/contrib/progress.cc:195 +#, c-format +msgid "%c%s... %u%%" +msgstr "" + #: apt-pkg/contrib/cmndline.cc:80 #, c-format msgid "Command line option '%c' [from %s] is not known." @@ -2539,17 +2554,17 @@ msgid "" "The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "" -#: apt-pkg/algorithms.cc:1228 +#: apt-pkg/algorithms.cc:1231 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." msgstr "" -#: apt-pkg/algorithms.cc:1230 +#: apt-pkg/algorithms.cc:1233 msgid "Unable to correct problems, you have held broken packages." msgstr "" -#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 +#: apt-pkg/algorithms.cc:1583 apt-pkg/algorithms.cc:1585 msgid "" "Some index files failed to download. They have been ignored, or old ones " "used instead." @@ -3001,7 +3016,7 @@ msgstr "" msgid "External solver failed without a proper error message" msgstr "" -#: apt-pkg/edsp.cc:557 apt-pkg/edsp.cc:560 apt-pkg/edsp.cc:565 +#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 msgid "Execute external solver" msgstr "" diff --git a/po/ar.po b/po/ar.po index 010860af2..7c9ea1d11 100644 --- a/po/ar.po +++ b/po/ar.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: apt_po\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-03-14 08:05+0100\n" +"POT-Creation-Date: 2013-03-24 08:53+0100\n" "PO-Revision-Date: 2006-10-20 21:28+0300\n" "Last-Translator: Ossama M. Khayat \n" "Language-Team: Arabic \n" @@ -582,7 +582,7 @@ msgstr "إجهاض." msgid "Do you want to continue [Y/n]? " msgstr "هل تريد الاستمرار [Y/n]؟" -#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1557 #, c-format msgid "Failed to fetch %s %s\n" msgstr "فشل إحضار %s %s\n" @@ -761,7 +761,7 @@ msgstr "" msgid "Calculating upgrade... " msgstr "حساب الترقية..." -#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:116 msgid "Failed" msgstr "فشل" @@ -1269,7 +1269,7 @@ msgstr "" msgid "Unable to accept connection" msgstr "تعذر قبول الاتصال" -#: methods/ftp.cc:872 methods/http.cc:1035 methods/rsh.cc:311 +#: methods/ftp.cc:872 methods/http.cc:1039 methods/rsh.cc:311 msgid "Problem hashing file" msgstr "" @@ -1296,59 +1296,64 @@ msgstr "استعلام" msgid "Unable to invoke " msgstr "" -#: methods/connect.cc:75 +#: methods/connect.cc:76 #, c-format msgid "Connecting to %s (%s)" msgstr "الاتصال بـ%s (%s)" -#: methods/connect.cc:86 +#: methods/connect.cc:87 #, c-format msgid "[IP: %s %s]" msgstr "[IP: %s %s]" -#: methods/connect.cc:93 +#: methods/connect.cc:94 #, c-format msgid "Could not create a socket for %s (f=%u t=%u p=%u)" msgstr "" -#: methods/connect.cc:99 +#: methods/connect.cc:100 #, c-format msgid "Cannot initiate the connection to %s:%s (%s)." msgstr "تعذر تمهيد الاتصال بـ%s:%s (%s)." -#: methods/connect.cc:107 +#: methods/connect.cc:108 #, c-format msgid "Could not connect to %s:%s (%s), connection timed out" msgstr "تعذر الاتصال بـ%s:%s (%s)، انتهى وقت الاتصال" -#: methods/connect.cc:125 +#: methods/connect.cc:126 #, c-format msgid "Could not connect to %s:%s (%s)." msgstr "تعذر الاتصال بـ%s:%s (%s)." #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:153 methods/rsh.cc:433 +#: methods/connect.cc:154 methods/rsh.cc:433 #, c-format msgid "Connecting to %s" msgstr "الاتصال بـ%s" -#: methods/connect.cc:172 methods/connect.cc:191 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format msgid "Could not resolve '%s'" msgstr "" -#: methods/connect.cc:197 +#: methods/connect.cc:205 #, c-format msgid "Temporary failure resolving '%s'" msgstr "" -#: methods/connect.cc:200 +#: methods/connect.cc:209 +#, c-format +msgid "System error resolving '%s:%s' (%s)" +msgstr "" + +#: methods/connect.cc:211 #, c-format msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "" -#: methods/connect.cc:247 +#: methods/connect.cc:258 #, fuzzy, c-format msgid "Unable to connect to %s:%s:" msgstr "تعذر الاتصال بـ%s %s:" @@ -1412,43 +1417,43 @@ msgstr "خادم http له دعم مدى معطوب" msgid "Unknown date format" msgstr "نسق تاريخ مجهول" -#: methods/http.cc:818 +#: methods/http.cc:822 msgid "Select failed" msgstr "فشل التحديد" -#: methods/http.cc:823 +#: methods/http.cc:827 msgid "Connection timed out" msgstr "انتهى وقت الاتصال" -#: methods/http.cc:846 +#: methods/http.cc:850 msgid "Error writing to output file" msgstr "خطأ في الكتابة إلى ملف المُخرجات" -#: methods/http.cc:877 +#: methods/http.cc:881 msgid "Error writing to file" msgstr "خطأ في الكتابة إلى الملف" -#: methods/http.cc:905 +#: methods/http.cc:909 msgid "Error writing to the file" msgstr "خطأ في الكتابة إلى الملف" -#: methods/http.cc:919 +#: methods/http.cc:923 msgid "Error reading from server. Remote end closed connection" msgstr "خطأ في القراءة من الخادم. أقفل الطرف الآخر الاتصال" -#: methods/http.cc:921 +#: methods/http.cc:925 msgid "Error reading from server" msgstr "خطأ في القراءة من الخادم" -#: methods/http.cc:1194 +#: methods/http.cc:1198 msgid "Bad header data" msgstr "بيانات ترويسة سيئة" -#: methods/http.cc:1211 methods/http.cc:1266 +#: methods/http.cc:1215 methods/http.cc:1270 msgid "Connection failed" msgstr "فشل الاتصال" -#: methods/http.cc:1358 +#: methods/http.cc:1362 msgid "Internal error" msgstr "خطأ داخلي" @@ -2183,6 +2188,16 @@ msgstr "%c%s... خطأ!" msgid "%c%s... Done" msgstr "%c%s... تمّ" +#: apt-pkg/contrib/progress.cc:179 +msgid "..." +msgstr "" + +#. Print the spinner +#: apt-pkg/contrib/progress.cc:195 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... تمّ" + #: apt-pkg/contrib/cmndline.cc:80 #, c-format msgid "Command line option '%c' [from %s] is not known." @@ -2570,17 +2585,17 @@ msgid "" "The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "" -#: apt-pkg/algorithms.cc:1228 +#: apt-pkg/algorithms.cc:1231 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." msgstr "" -#: apt-pkg/algorithms.cc:1230 +#: apt-pkg/algorithms.cc:1233 msgid "Unable to correct problems, you have held broken packages." msgstr "" -#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 +#: apt-pkg/algorithms.cc:1583 apt-pkg/algorithms.cc:1585 msgid "" "Some index files failed to download. They have been ignored, or old ones " "used instead." @@ -3036,7 +3051,7 @@ msgstr "" msgid "External solver failed without a proper error message" msgstr "" -#: apt-pkg/edsp.cc:557 apt-pkg/edsp.cc:560 apt-pkg/edsp.cc:565 +#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 msgid "Execute external solver" msgstr "" diff --git a/po/ast.po b/po/ast.po index df41c82cc..908155a66 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 \n" -"POT-Creation-Date: 2013-03-14 08:05+0100\n" +"POT-Creation-Date: 2013-03-24 08:53+0100\n" "PO-Revision-Date: 2010-10-02 23:35+0100\n" "Last-Translator: Iñigo Varela \n" "Language-Team: Asturian (ast)\n" @@ -628,7 +628,7 @@ msgstr "Encaboxar." msgid "Do you want to continue [Y/n]? " msgstr "¿Quies continuar [S/n]? " -#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1557 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Falló algamar %s %s\n" @@ -820,7 +820,7 @@ msgstr "" msgid "Calculating upgrade... " msgstr "Calculando l'anovamientu... " -#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:116 msgid "Failed" msgstr "Falló" @@ -1396,7 +1396,7 @@ msgstr "Gandió'l tiempu de conexón col zócalu de datos" msgid "Unable to accept connection" msgstr "Nun se pudo aceptar la conexón" -#: methods/ftp.cc:872 methods/http.cc:1035 methods/rsh.cc:311 +#: methods/ftp.cc:872 methods/http.cc:1039 methods/rsh.cc:311 msgid "Problem hashing file" msgstr "Hebo un problema al xenerar el hash del ficheru" @@ -1423,59 +1423,64 @@ msgstr "Consulta" msgid "Unable to invoke " msgstr "Nun se pudo invocar " -#: methods/connect.cc:75 +#: methods/connect.cc:76 #, c-format msgid "Connecting to %s (%s)" msgstr "Coneutando a %s (%s)" -#: methods/connect.cc:86 +#: methods/connect.cc:87 #, c-format msgid "[IP: %s %s]" msgstr "[IP: %s %s]" -#: methods/connect.cc:93 +#: methods/connect.cc:94 #, c-format msgid "Could not create a socket for %s (f=%u t=%u p=%u)" msgstr "Nun se pudo crear un socket pa %s (f=%u t=%u p=%u)" -#: methods/connect.cc:99 +#: methods/connect.cc:100 #, c-format msgid "Cannot initiate the connection to %s:%s (%s)." msgstr "Nun se pudo coneutar a %s:%s (%s)." -#: methods/connect.cc:107 +#: methods/connect.cc:108 #, c-format msgid "Could not connect to %s:%s (%s), connection timed out" msgstr "Nun se pudo coneutar a %s:%s (%s); expiró'l tiempu de conexón" -#: methods/connect.cc:125 +#: methods/connect.cc:126 #, c-format msgid "Could not connect to %s:%s (%s)." msgstr "Nun se pudo coneutar a %s:%s (%s)." #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:153 methods/rsh.cc:433 +#: methods/connect.cc:154 methods/rsh.cc:433 #, c-format msgid "Connecting to %s" msgstr "Coneutando a %s" -#: methods/connect.cc:172 methods/connect.cc:191 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format msgid "Could not resolve '%s'" msgstr "Nun se pudo resolver '%s'" -#: methods/connect.cc:197 +#: methods/connect.cc:205 #, c-format msgid "Temporary failure resolving '%s'" msgstr "Fallu temporal al resolver '%s'" -#: methods/connect.cc:200 +#: methods/connect.cc:209 +#, fuzzy, c-format +msgid "System error resolving '%s:%s' (%s)" +msgstr "Daqué raro asocedió resolviendo '%s:%s' (%i - %s)" + +#: methods/connect.cc:211 #, c-format msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "Daqué raro asocedió resolviendo '%s:%s' (%i - %s)" -#: methods/connect.cc:247 +#: methods/connect.cc:258 #, c-format msgid "Unable to connect to %s:%s:" msgstr "Nun pudo coneutase a %s:%s:" @@ -1542,43 +1547,43 @@ msgstr "Esti sirvidor HTTP tien rotu'l soporte d'alcance" msgid "Unknown date format" msgstr "Formatu de data desconocíu" -#: methods/http.cc:818 +#: methods/http.cc:822 msgid "Select failed" msgstr "Falló la escoyeta" -#: methods/http.cc:823 +#: methods/http.cc:827 msgid "Connection timed out" msgstr "Gandió'l tiempu de conexón" -#: methods/http.cc:846 +#: methods/http.cc:850 msgid "Error writing to output file" msgstr "Fallu al escribir nel ficheru de salida" -#: methods/http.cc:877 +#: methods/http.cc:881 msgid "Error writing to file" msgstr "Fallu al escribir nel ficheru" -#: methods/http.cc:905 +#: methods/http.cc:909 msgid "Error writing to the file" msgstr "Fallu al escribir nel ficheru" -#: methods/http.cc:919 +#: methods/http.cc:923 msgid "Error reading from server. Remote end closed connection" msgstr "Fallu al lleer nel sirvidor. El llau remotu zarró la conexón." -#: methods/http.cc:921 +#: methods/http.cc:925 msgid "Error reading from server" msgstr "Fallu al lleer nel sirvidor" -#: methods/http.cc:1194 +#: methods/http.cc:1198 msgid "Bad header data" msgstr "Datos de testera incorreutos" -#: methods/http.cc:1211 methods/http.cc:1266 +#: methods/http.cc:1215 methods/http.cc:1270 msgid "Connection failed" msgstr "Fallo la conexón" -#: methods/http.cc:1358 +#: methods/http.cc:1362 msgid "Internal error" msgstr "Fallu internu" @@ -2400,6 +2405,16 @@ msgstr "%c%s... ¡Fallu!" msgid "%c%s... Done" msgstr "%c%s... Fecho" +#: apt-pkg/contrib/progress.cc:179 +msgid "..." +msgstr "" + +#. Print the spinner +#: apt-pkg/contrib/progress.cc:195 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Fecho" + #: apt-pkg/contrib/cmndline.cc:80 #, c-format msgid "Command line option '%c' [from %s] is not known." @@ -2796,7 +2811,7 @@ msgid "" msgstr "" "El paquete %s necesita reinstalase, pero nun s'alcuentra un archivu pa el." -#: apt-pkg/algorithms.cc:1228 +#: apt-pkg/algorithms.cc:1231 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2804,11 +2819,11 @@ msgstr "" "Error, pkgProblemResolver::Resolve xeneró frañadures, esto puede ser pola " "mor de paquetes reteníos." -#: apt-pkg/algorithms.cc:1230 +#: apt-pkg/algorithms.cc:1233 msgid "Unable to correct problems, you have held broken packages." msgstr "Nun pueden iguase los problemes; tienes paquetes frañaos reteníos." -#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 +#: apt-pkg/algorithms.cc:1583 apt-pkg/algorithms.cc:1585 #, fuzzy msgid "" "Some index files failed to download. They have been ignored, or old ones " @@ -3292,7 +3307,7 @@ msgstr "" msgid "External solver failed without a proper error message" msgstr "" -#: apt-pkg/edsp.cc:557 apt-pkg/edsp.cc:560 apt-pkg/edsp.cc:565 +#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 msgid "Execute external solver" msgstr "" diff --git a/po/bg.po b/po/bg.po index dfcebd630..f43ae7530 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 \n" -"POT-Creation-Date: 2013-03-14 08:05+0100\n" +"POT-Creation-Date: 2013-03-24 08:53+0100\n" "PO-Revision-Date: 2012-06-25 17:23+0300\n" "Last-Translator: Damyan Ivanov \n" "Language-Team: Bulgarian \n" @@ -638,7 +638,7 @@ msgstr "Прекъсване." msgid "Do you want to continue [Y/n]? " msgstr "Искате ли да продължите [Y/n]? " -#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1557 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Неуспех при изтеглянето на %s %s\n" @@ -831,7 +831,7 @@ msgstr "" msgid "Calculating upgrade... " msgstr "Изчисляване на актуализацията..." -#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:116 msgid "Failed" msgstr "Неуспех" @@ -1430,7 +1430,7 @@ msgstr "Времето за установяване на връзка с гне msgid "Unable to accept connection" msgstr "Невъзможно е да се приеме свързването" -#: methods/ftp.cc:872 methods/http.cc:1035 methods/rsh.cc:311 +#: methods/ftp.cc:872 methods/http.cc:1039 methods/rsh.cc:311 msgid "Problem hashing file" msgstr "Проблем при хеширане на файла" @@ -1457,59 +1457,64 @@ msgstr "Запитване" msgid "Unable to invoke " msgstr "Неуспех при извикването на " -#: methods/connect.cc:75 +#: methods/connect.cc:76 #, c-format msgid "Connecting to %s (%s)" msgstr "Свързване с %s (%s)" -#: methods/connect.cc:86 +#: methods/connect.cc:87 #, c-format msgid "[IP: %s %s]" msgstr "[IP: %s %s]" -#: methods/connect.cc:93 +#: methods/connect.cc:94 #, c-format msgid "Could not create a socket for %s (f=%u t=%u p=%u)" msgstr "Неуспех при създаването на гнездо за %s (f=%u t=%u p=%u)" -#: methods/connect.cc:99 +#: methods/connect.cc:100 #, c-format msgid "Cannot initiate the connection to %s:%s (%s)." msgstr "Не може да се започне свързване с %s:%s (%s)." -#: methods/connect.cc:107 +#: methods/connect.cc:108 #, c-format msgid "Could not connect to %s:%s (%s), connection timed out" msgstr "Неуспех при свързване с %s:%s (%s), допустимото време изтече" -#: methods/connect.cc:125 +#: methods/connect.cc:126 #, c-format msgid "Could not connect to %s:%s (%s)." msgstr "Неуспех при свързване с %s:%s (%s)." #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:153 methods/rsh.cc:433 +#: methods/connect.cc:154 methods/rsh.cc:433 #, c-format msgid "Connecting to %s" msgstr "Свързване с %s" -#: methods/connect.cc:172 methods/connect.cc:191 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format msgid "Could not resolve '%s'" msgstr "Неуспех при намирането на IP адреса на „%s“" -#: methods/connect.cc:197 +#: methods/connect.cc:205 #, c-format msgid "Temporary failure resolving '%s'" msgstr "Временен неуспех при намирането на IP адреса на „%s“" -#: methods/connect.cc:200 +#: methods/connect.cc:209 +#, fuzzy, c-format +msgid "System error resolving '%s:%s' (%s)" +msgstr "Нещо лошо се случи при намирането на IP адреса на „%s:%s“ (%i - %s)" + +#: methods/connect.cc:211 #, c-format msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "Нещо лошо се случи при намирането на IP адреса на „%s:%s“ (%i - %s)" -#: methods/connect.cc:247 +#: methods/connect.cc:258 #, c-format msgid "Unable to connect to %s:%s:" msgstr "Неуспех при свързване с %s:%s:" @@ -1579,43 +1584,43 @@ msgstr "HTTP сървърът няма поддръжка за прехвърл msgid "Unknown date format" msgstr "Неизвестен формат на дата" -#: methods/http.cc:818 +#: methods/http.cc:822 msgid "Select failed" msgstr "Неуспех на избора" -#: methods/http.cc:823 +#: methods/http.cc:827 msgid "Connection timed out" msgstr "Допустимото време за свързване изтече" -#: methods/http.cc:846 +#: methods/http.cc:850 msgid "Error writing to output file" msgstr "Грешка при записа на изходен файл" -#: methods/http.cc:877 +#: methods/http.cc:881 msgid "Error writing to file" msgstr "Грешка при записа на файл" -#: methods/http.cc:905 +#: methods/http.cc:909 msgid "Error writing to the file" msgstr "Грешка при записа на файла" -#: methods/http.cc:919 +#: methods/http.cc:923 msgid "Error reading from server. Remote end closed connection" msgstr "Грешка при четене от сървъра. Отдалеченият сървър прекъсна връзката" -#: methods/http.cc:921 +#: methods/http.cc:925 msgid "Error reading from server" msgstr "Грешка при четене от сървъра" -#: methods/http.cc:1194 +#: methods/http.cc:1198 msgid "Bad header data" msgstr "Невалидни данни на заглавната част" -#: methods/http.cc:1211 methods/http.cc:1266 +#: methods/http.cc:1215 methods/http.cc:1270 msgid "Connection failed" msgstr "Неуспех при свързването" -#: methods/http.cc:1358 +#: methods/http.cc:1362 msgid "Internal error" msgstr "Вътрешна грешка" @@ -2438,6 +2443,16 @@ msgstr "%c%s... Грешка!" msgid "%c%s... Done" msgstr "%c%s... Готово" +#: apt-pkg/contrib/progress.cc:179 +msgid "..." +msgstr "" + +#. Print the spinner +#: apt-pkg/contrib/progress.cc:195 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Готово" + #: apt-pkg/contrib/cmndline.cc:80 #, c-format msgid "Command line option '%c' [from %s] is not known." @@ -2843,7 +2858,7 @@ msgstr "" "Пакетът %s трябва да бъде преинсталиран, но не може да се намери архив за " "него." -#: apt-pkg/algorithms.cc:1228 +#: apt-pkg/algorithms.cc:1231 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2851,12 +2866,12 @@ msgstr "" "Грешка, pkgProblemResolver::Resolve генерира повреди, това може да е " "причинено от задържани пакети." -#: apt-pkg/algorithms.cc:1230 +#: apt-pkg/algorithms.cc:1233 msgid "Unable to correct problems, you have held broken packages." msgstr "" "Неуспех при коригирането на проблемите, имате задържани счупени пакети." -#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 +#: apt-pkg/algorithms.cc:1583 apt-pkg/algorithms.cc:1585 msgid "" "Some index files failed to download. They have been ignored, or old ones " "used instead." @@ -3349,7 +3364,7 @@ msgstr "" "Външната програма за удовлетворяване на зависимости се провали без да изведе " "съобщение за грешка" -#: apt-pkg/edsp.cc:557 apt-pkg/edsp.cc:560 apt-pkg/edsp.cc:565 +#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 msgid "Execute external solver" msgstr "Изпълняване на външна програма за удовлетворяване на зависимости" diff --git a/po/bs.po b/po/bs.po index 92371278a..bce21d794 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 \n" -"POT-Creation-Date: 2013-03-14 08:05+0100\n" +"POT-Creation-Date: 2013-03-24 08:53+0100\n" "PO-Revision-Date: 2004-05-06 15:25+0100\n" "Last-Translator: Safir Šećerović \n" "Language-Team: Bosnian \n" @@ -587,7 +587,7 @@ msgstr "Odustani." msgid "Do you want to continue [Y/n]? " msgstr "Da li želite nastaviti? [Y/n]" -#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1557 #, c-format msgid "Failed to fetch %s %s\n" msgstr "" @@ -762,7 +762,7 @@ msgstr "" msgid "Calculating upgrade... " msgstr "Računam nadogradnju..." -#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:116 msgid "Failed" msgstr "Neuspješno" @@ -1266,7 +1266,7 @@ msgstr "" msgid "Unable to accept connection" msgstr "" -#: methods/ftp.cc:872 methods/http.cc:1035 methods/rsh.cc:311 +#: methods/ftp.cc:872 methods/http.cc:1039 methods/rsh.cc:311 msgid "Problem hashing file" msgstr "" @@ -1293,59 +1293,64 @@ msgstr "" msgid "Unable to invoke " msgstr "" -#: methods/connect.cc:75 +#: methods/connect.cc:76 #, c-format msgid "Connecting to %s (%s)" msgstr "" -#: methods/connect.cc:86 +#: methods/connect.cc:87 #, c-format msgid "[IP: %s %s]" msgstr "" -#: methods/connect.cc:93 +#: methods/connect.cc:94 #, c-format msgid "Could not create a socket for %s (f=%u t=%u p=%u)" msgstr "" -#: methods/connect.cc:99 +#: methods/connect.cc:100 #, c-format msgid "Cannot initiate the connection to %s:%s (%s)." msgstr "" -#: methods/connect.cc:107 +#: methods/connect.cc:108 #, c-format msgid "Could not connect to %s:%s (%s), connection timed out" msgstr "" -#: methods/connect.cc:125 +#: methods/connect.cc:126 #, c-format msgid "Could not connect to %s:%s (%s)." msgstr "" #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:153 methods/rsh.cc:433 +#: methods/connect.cc:154 methods/rsh.cc:433 #, c-format msgid "Connecting to %s" msgstr "Povezujem se sa %s" -#: methods/connect.cc:172 methods/connect.cc:191 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format msgid "Could not resolve '%s'" msgstr "" -#: methods/connect.cc:197 +#: methods/connect.cc:205 #, c-format msgid "Temporary failure resolving '%s'" msgstr "" -#: methods/connect.cc:200 +#: methods/connect.cc:209 +#, c-format +msgid "System error resolving '%s:%s' (%s)" +msgstr "" + +#: methods/connect.cc:211 #, c-format msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "" -#: methods/connect.cc:247 +#: methods/connect.cc:258 #, fuzzy, c-format msgid "Unable to connect to %s:%s:" msgstr "Ne mogu se povezati sa %s %s:" @@ -1410,43 +1415,43 @@ msgstr "" msgid "Unknown date format" msgstr "Nepoznat oblik datuma" -#: methods/http.cc:818 +#: methods/http.cc:822 msgid "Select failed" msgstr "" -#: methods/http.cc:823 +#: methods/http.cc:827 msgid "Connection timed out" msgstr "" -#: methods/http.cc:846 +#: methods/http.cc:850 msgid "Error writing to output file" msgstr "" -#: methods/http.cc:877 +#: methods/http.cc:881 msgid "Error writing to file" msgstr "" -#: methods/http.cc:905 +#: methods/http.cc:909 msgid "Error writing to the file" msgstr "" -#: methods/http.cc:919 +#: methods/http.cc:923 msgid "Error reading from server. Remote end closed connection" msgstr "" -#: methods/http.cc:921 +#: methods/http.cc:925 msgid "Error reading from server" msgstr "" -#: methods/http.cc:1194 +#: methods/http.cc:1198 msgid "Bad header data" msgstr "" -#: methods/http.cc:1211 methods/http.cc:1266 +#: methods/http.cc:1215 methods/http.cc:1270 msgid "Connection failed" msgstr "Povezivanje neuspješno" -#: methods/http.cc:1358 +#: methods/http.cc:1362 msgid "Internal error" msgstr "Unutrašnja greška" @@ -2180,6 +2185,16 @@ msgstr "" msgid "%c%s... Done" msgstr "" +#: apt-pkg/contrib/progress.cc:179 +msgid "..." +msgstr "" + +#. Print the spinner +#: apt-pkg/contrib/progress.cc:195 +#, c-format +msgid "%c%s... %u%%" +msgstr "" + #: apt-pkg/contrib/cmndline.cc:80 #, c-format msgid "Command line option '%c' [from %s] is not known." @@ -2568,17 +2583,17 @@ msgid "" "The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "" -#: apt-pkg/algorithms.cc:1228 +#: apt-pkg/algorithms.cc:1231 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." msgstr "" -#: apt-pkg/algorithms.cc:1230 +#: apt-pkg/algorithms.cc:1233 msgid "Unable to correct problems, you have held broken packages." msgstr "" -#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 +#: apt-pkg/algorithms.cc:1583 apt-pkg/algorithms.cc:1585 msgid "" "Some index files failed to download. They have been ignored, or old ones " "used instead." @@ -3033,7 +3048,7 @@ msgstr "" msgid "External solver failed without a proper error message" msgstr "" -#: apt-pkg/edsp.cc:557 apt-pkg/edsp.cc:560 apt-pkg/edsp.cc:565 +#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 msgid "Execute external solver" msgstr "" diff --git a/po/ca.po b/po/ca.po index e582886b0..41488ba3c 100644 --- a/po/ca.po +++ b/po/ca.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.9.7.6\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2012-10-15 09:49+0200\n" +"POT-Creation-Date: 2013-03-24 08:53+0100\n" "PO-Revision-Date: 2012-10-19 13:30+0200\n" "Last-Translator: Jordi Mallach \n" "Language-Team: Catalan \n" @@ -156,7 +156,7 @@ msgid " Version table:" msgstr " Taula de versió:" #: cmdline/apt-cache.cc:1683 cmdline/apt-cdrom.cc:198 cmdline/apt-config.cc:81 -#: cmdline/apt-get.cc:3361 cmdline/apt-mark.cc:375 +#: cmdline/apt-get.cc:3363 cmdline/apt-mark.cc:375 #: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:590 #: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147 #, c-format @@ -487,7 +487,7 @@ msgstr "No es possible la reinstaŀlació del paquet %s, no es pot baixar.\n" msgid "%s is already the newest version.\n" msgstr "%s ja es troba en la versió més recent.\n" -#: cmdline/apt-get.cc:858 cmdline/apt-get.cc:2157 cmdline/apt-mark.cc:68 +#: cmdline/apt-get.cc:858 cmdline/apt-get.cc:2159 cmdline/apt-mark.cc:68 #, c-format msgid "%s set to manually installed.\n" msgstr "S'ha marcat %s com instaŀlat manualment.\n" @@ -599,8 +599,8 @@ msgstr "" msgid "After this operation, %sB disk space will be freed.\n" msgstr "Després d'aquesta operació s'alliberaran %sB d'espai en disc.\n" -#: cmdline/apt-get.cc:1228 cmdline/apt-get.cc:1231 cmdline/apt-get.cc:2589 -#: cmdline/apt-get.cc:2592 +#: cmdline/apt-get.cc:1228 cmdline/apt-get.cc:1231 cmdline/apt-get.cc:2591 +#: cmdline/apt-get.cc:2594 #, c-format msgid "Couldn't determine free space in %s" msgstr "No s'ha pogut determinar l'espai lliure en %s" @@ -610,15 +610,17 @@ msgstr "No s'ha pogut determinar l'espai lliure en %s" msgid "You don't have enough free space in %s." msgstr "No teniu prou espai lliure en %s." -#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1277 +#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1279 msgid "Trivial Only specified but this is not a trivial operation." msgstr "S'ha especificat «Trivial Only» però aquesta operació no és trivial." -#: cmdline/apt-get.cc:1259 +#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be +#. careful with hard to type or special characters (like non-breaking spaces) +#: cmdline/apt-get.cc:1261 msgid "Yes, do as I say!" msgstr "Sí, fes el que et dic!" -#: cmdline/apt-get.cc:1261 +#: cmdline/apt-get.cc:1263 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -629,28 +631,28 @@ msgstr "" "Per continuar escriviu la frase «%s»\n" " ?] " -#: cmdline/apt-get.cc:1267 cmdline/apt-get.cc:1286 +#: cmdline/apt-get.cc:1269 cmdline/apt-get.cc:1288 msgid "Abort." msgstr "Avortat." -#: cmdline/apt-get.cc:1282 +#: cmdline/apt-get.cc:1284 msgid "Do you want to continue [Y/n]? " msgstr "Voleu continuar [S/n]? " -#: cmdline/apt-get.cc:1354 cmdline/apt-get.cc:2654 apt-pkg/algorithms.cc:1548 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1557 #, c-format msgid "Failed to fetch %s %s\n" msgstr "No s'ha pogut obtenir %s %s\n" -#: cmdline/apt-get.cc:1372 +#: cmdline/apt-get.cc:1374 msgid "Some files failed to download" msgstr "Alguns fitxers no s'han pogut baixar" -#: cmdline/apt-get.cc:1373 cmdline/apt-get.cc:2666 +#: cmdline/apt-get.cc:1375 cmdline/apt-get.cc:2668 msgid "Download complete and in download only mode" msgstr "Baixada completa i en mode de només baixada" -#: cmdline/apt-get.cc:1379 +#: cmdline/apt-get.cc:1381 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -658,19 +660,19 @@ msgstr "" "No es poden baixar alguns arxius, proveu a executar apt-get update o " "intenteu-ho amb --fix-missing." -#: cmdline/apt-get.cc:1383 +#: cmdline/apt-get.cc:1385 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix-missing i els medi intercanviables actualment no estan suportats" -#: cmdline/apt-get.cc:1388 +#: cmdline/apt-get.cc:1390 msgid "Unable to correct missing packages." msgstr "No es poden corregir els paquets que falten." -#: cmdline/apt-get.cc:1389 +#: cmdline/apt-get.cc:1391 msgid "Aborting install." msgstr "S'està avortant la instaŀlació." -#: cmdline/apt-get.cc:1417 +#: cmdline/apt-get.cc:1419 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -684,37 +686,37 @@ msgstr[1] "" "Els següents paquets han desaparegut del vostre sistema ja\n" "que tots els fitxers s'han sobreescrit per altres paquets:" -#: cmdline/apt-get.cc:1421 +#: cmdline/apt-get.cc:1423 msgid "Note: This is done automatically and on purpose by dpkg." msgstr "Nota: Això ho fa el dpkg automàticament i a propòsit." -#: cmdline/apt-get.cc:1559 +#: cmdline/apt-get.cc:1561 #, c-format msgid "Ignore unavailable target release '%s' of package '%s'" msgstr "Ignora la versió objectiu «%s» no disponible del paquet «%s»" -#: cmdline/apt-get.cc:1591 +#: cmdline/apt-get.cc:1593 #, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "S'està agafant «%s» com a paquet font en lloc de '%s'\n" #. if (VerTag.empty() == false && Last == 0) -#: cmdline/apt-get.cc:1629 +#: cmdline/apt-get.cc:1631 #, c-format msgid "Ignore unavailable version '%s' of package '%s'" msgstr "Descarta la versió «%s» no disponible del paquet «%s»" -#: cmdline/apt-get.cc:1645 +#: cmdline/apt-get.cc:1647 msgid "The update command takes no arguments" msgstr "L'ordre update no pren arguments" -#: cmdline/apt-get.cc:1711 +#: cmdline/apt-get.cc:1713 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" "Es suposa que no hauriem de suprimir coses, no es pot iniciar el supressor " "automàtic" -#: cmdline/apt-get.cc:1815 +#: cmdline/apt-get.cc:1817 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -732,15 +734,15 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1818 cmdline/apt-get.cc:1987 +#: cmdline/apt-get.cc:1820 cmdline/apt-get.cc:1989 msgid "The following information may help to resolve the situation:" msgstr "La informació següent pot ajudar-vos a resoldre la situació:" -#: cmdline/apt-get.cc:1822 +#: cmdline/apt-get.cc:1824 msgid "Internal Error, AutoRemover broke stuff" msgstr "S'ha produït un error intern, el supressor automàtic ha trencat coses" -#: cmdline/apt-get.cc:1829 +#: cmdline/apt-get.cc:1831 msgid "" "The following package was automatically installed and is no longer required:" msgid_plural "" @@ -751,7 +753,7 @@ msgstr[0] "" msgstr[1] "" "Els paquets següents s'han instaŀlat automàticament i ja no són necessaris:" -#: cmdline/apt-get.cc:1833 +#: cmdline/apt-get.cc:1835 #, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -761,21 +763,21 @@ msgstr[0] "" msgstr[1] "" "Els paquets %lu es van s'instaŀlar automàticament i ja no són necessaris:\n" -#: cmdline/apt-get.cc:1835 +#: cmdline/apt-get.cc:1837 msgid "Use 'apt-get autoremove' to remove it." msgid_plural "Use 'apt-get autoremove' to remove them." msgstr[0] "Empreu «apt-get autoremove» per a suprimir-lo." msgstr[1] "Empreu «apt-get autoremove» per a suprimir-los." -#: cmdline/apt-get.cc:1854 +#: cmdline/apt-get.cc:1856 msgid "Internal error, AllUpgrade broke stuff" msgstr "Error intern, AllUpgrade ha trencat coses" -#: cmdline/apt-get.cc:1953 +#: cmdline/apt-get.cc:1955 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "Potser voldreu executar «apt-get -f install» per corregir-ho:" -#: cmdline/apt-get.cc:1957 +#: cmdline/apt-get.cc:1959 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -783,7 +785,7 @@ msgstr "" "Dependències insatisfetes. Proveu amb «apt-get -f install» sense paquets (o " "especifiqueu una solució)." -#: cmdline/apt-get.cc:1972 +#: cmdline/apt-get.cc:1974 msgid "" "Some packages could not be installed. This may mean that you have\n" "requested an impossible situation or if you are using the unstable\n" @@ -795,33 +797,33 @@ msgstr "" "«unstable» i alguns paquets requerits encara no han estat creats o bé\n" "encara no els hi han introduït des d'«Incoming»." -#: cmdline/apt-get.cc:1993 +#: cmdline/apt-get.cc:1995 msgid "Broken packages" msgstr "Paquets trencats" -#: cmdline/apt-get.cc:2019 +#: cmdline/apt-get.cc:2021 msgid "The following extra packages will be installed:" msgstr "S'instaŀlaran els següents paquets extres:" -#: cmdline/apt-get.cc:2109 +#: cmdline/apt-get.cc:2111 msgid "Suggested packages:" msgstr "Paquets suggerits:" -#: cmdline/apt-get.cc:2110 +#: cmdline/apt-get.cc:2112 msgid "Recommended packages:" msgstr "Paquets recomanats:" -#: cmdline/apt-get.cc:2152 +#: cmdline/apt-get.cc:2154 #, c-format msgid "Couldn't find package %s" msgstr "No s'ha pogut trobar el paquet %s" -#: cmdline/apt-get.cc:2159 cmdline/apt-mark.cc:70 +#: cmdline/apt-get.cc:2161 cmdline/apt-mark.cc:70 #, c-format msgid "%s set to automatically installed.\n" msgstr "S'ha marcat %s com instaŀlat automàticament.\n" -#: cmdline/apt-get.cc:2167 cmdline/apt-mark.cc:114 +#: cmdline/apt-get.cc:2169 cmdline/apt-mark.cc:114 msgid "" "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " "instead." @@ -829,47 +831,47 @@ msgstr "" "Aquesta ordre és desaconsellada. Empreu «apt-mark auto» i «apt-mark manual» " "en el seu lloc." -#: cmdline/apt-get.cc:2183 +#: cmdline/apt-get.cc:2185 msgid "Calculating upgrade... " msgstr "S'està calculant l'actualització… " -#: cmdline/apt-get.cc:2186 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:116 msgid "Failed" msgstr "Ha fallat" -#: cmdline/apt-get.cc:2191 +#: cmdline/apt-get.cc:2193 msgid "Done" msgstr "Fet" -#: cmdline/apt-get.cc:2258 cmdline/apt-get.cc:2266 +#: cmdline/apt-get.cc:2260 cmdline/apt-get.cc:2268 msgid "Internal error, problem resolver broke stuff" msgstr "" "S'ha produït un error intern, el solucionador de problemes ha trencat coses" -#: cmdline/apt-get.cc:2294 cmdline/apt-get.cc:2330 +#: cmdline/apt-get.cc:2296 cmdline/apt-get.cc:2332 msgid "Unable to lock the download directory" msgstr "No és possible blocar el directori de descàrrega" -#: cmdline/apt-get.cc:2386 +#: cmdline/apt-get.cc:2388 #, c-format msgid "Can't find a source to download version '%s' of '%s'" msgstr "No es troba una font per baixar la versió «%s» de «%s»" -#: cmdline/apt-get.cc:2391 +#: cmdline/apt-get.cc:2393 #, c-format msgid "Downloading %s %s" msgstr "S'està baixant %s %s" -#: cmdline/apt-get.cc:2451 +#: cmdline/apt-get.cc:2453 msgid "Must specify at least one package to fetch source for" msgstr "Haureu d'especificar un paquet de codi font per a baixar" -#: cmdline/apt-get.cc:2491 cmdline/apt-get.cc:2803 +#: cmdline/apt-get.cc:2493 cmdline/apt-get.cc:2805 #, c-format msgid "Unable to find a source package for %s" msgstr "No es pot trobar un paquet de fonts per a %s" -#: cmdline/apt-get.cc:2508 +#: cmdline/apt-get.cc:2510 #, c-format msgid "" "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" @@ -879,7 +881,7 @@ msgstr "" "versions «%s» a:\n" "%s\n" -#: cmdline/apt-get.cc:2513 +#: cmdline/apt-get.cc:2515 #, c-format msgid "" "Please use:\n" @@ -891,71 +893,71 @@ msgstr "" "per obtenir les últimes actualitzacions (possiblement no publicades) del " "paquet.\n" -#: cmdline/apt-get.cc:2566 +#: cmdline/apt-get.cc:2568 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "S'està ometent el fitxer ja baixat «%s»\n" -#: cmdline/apt-get.cc:2603 +#: cmdline/apt-get.cc:2605 #, c-format msgid "You don't have enough free space in %s" msgstr "No teniu prou espai lliure en %s" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:2612 +#: cmdline/apt-get.cc:2614 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "Es necessita baixar %sB/%sB d'arxius font.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:2617 +#: cmdline/apt-get.cc:2619 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Es necessita baixar %sB d'arxius font.\n" -#: cmdline/apt-get.cc:2623 +#: cmdline/apt-get.cc:2625 #, c-format msgid "Fetch source %s\n" msgstr "Obtén el font %s\n" -#: cmdline/apt-get.cc:2661 +#: cmdline/apt-get.cc:2663 msgid "Failed to fetch some archives." msgstr "No s'ha pogut baixar alguns arxius." -#: cmdline/apt-get.cc:2692 +#: cmdline/apt-get.cc:2694 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "" "S'està ometent el desempaquetament de les fonts que ja ho estan en %s\n" -#: cmdline/apt-get.cc:2704 +#: cmdline/apt-get.cc:2706 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "L'ordre de desempaquetar «%s» ha fallat.\n" -#: cmdline/apt-get.cc:2705 +#: cmdline/apt-get.cc:2707 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "Comproveu si el paquet «dpkgdev» està instaŀlat.\n" -#: cmdline/apt-get.cc:2727 +#: cmdline/apt-get.cc:2729 #, c-format msgid "Build command '%s' failed.\n" msgstr "L'ordre de construir «%s» ha fallat.\n" -#: cmdline/apt-get.cc:2747 +#: cmdline/apt-get.cc:2749 msgid "Child process failed" msgstr "Ha fallat el procés fill" -#: cmdline/apt-get.cc:2766 +#: cmdline/apt-get.cc:2768 msgid "Must specify at least one package to check builddeps for" msgstr "" "S'ha d'especificar un paquet per a verificar les dependències de construcció " "per a" -#: cmdline/apt-get.cc:2791 +#: cmdline/apt-get.cc:2793 #, c-format msgid "" "No architecture information available for %s. See apt.conf(5) APT::" @@ -964,18 +966,18 @@ msgstr "" "No hi ha informació d'arquitectura disponible per a %s. Vegeu apt.conf(5) " "APT::Architectures per a configurar-ho" -#: cmdline/apt-get.cc:2815 cmdline/apt-get.cc:2818 +#: cmdline/apt-get.cc:2817 cmdline/apt-get.cc:2820 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "" "No es pot obtenir informació sobre les dependències de construcció per a %s" -#: cmdline/apt-get.cc:2838 +#: cmdline/apt-get.cc:2840 #, c-format msgid "%s has no build depends.\n" msgstr "%s no té dependències de construcció.\n" -#: cmdline/apt-get.cc:3008 +#: cmdline/apt-get.cc:3010 #, c-format msgid "" "%s dependency for %s can't be satisfied because %s is not allowed on '%s' " @@ -984,7 +986,7 @@ msgstr "" "La dependència %s en %s no es pot satisfer perquè %s no és permès als " "paquets «%s»" -#: cmdline/apt-get.cc:3026 +#: cmdline/apt-get.cc:3028 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -993,14 +995,14 @@ msgstr "" "La dependència %s en %s no es pot satisfer perquè no es pot trobar el paquet " "%s" -#: cmdline/apt-get.cc:3049 +#: cmdline/apt-get.cc:3051 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "No s'ha pogut satisfer la dependència %s per a %s: El paquet instaŀlat %s és " "massa nou" -#: cmdline/apt-get.cc:3088 +#: cmdline/apt-get.cc:3090 #, c-format msgid "" "%s dependency for %s cannot be satisfied because candidate version of " @@ -1009,7 +1011,7 @@ msgstr "" "La dependència %s per a %s no es pot satisfer perquè la versió candidata del " "paquet %s no pot satisfer els requeriments de versions" -#: cmdline/apt-get.cc:3094 +#: cmdline/apt-get.cc:3096 #, c-format msgid "" "%s dependency for %s cannot be satisfied because package %s has no candidate " @@ -1018,30 +1020,30 @@ msgstr "" "La dependència %s en %s no es pot satisfer perquè el paquet %s no té versió " "candidata" -#: cmdline/apt-get.cc:3117 +#: cmdline/apt-get.cc:3119 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "No s'ha pogut satisfer la dependència %s per a %s: %s" -#: cmdline/apt-get.cc:3133 +#: cmdline/apt-get.cc:3135 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "No s'han pogut satisfer les dependències de construcció per a %s" -#: cmdline/apt-get.cc:3138 +#: cmdline/apt-get.cc:3140 msgid "Failed to process build dependencies" msgstr "No es poden processar les dependències de construcció" -#: cmdline/apt-get.cc:3231 cmdline/apt-get.cc:3243 +#: cmdline/apt-get.cc:3233 cmdline/apt-get.cc:3245 #, c-format msgid "Changelog for %s (%s)" msgstr "Registre de canvis per a %s (%s)" -#: cmdline/apt-get.cc:3366 +#: cmdline/apt-get.cc:3368 msgid "Supported modules:" msgstr "Mòduls suportats:" -#: cmdline/apt-get.cc:3407 +#: cmdline/apt-get.cc:3409 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1133,7 +1135,7 @@ msgstr "" "per a obtenir més informació i opcions.\n" " Aquest APT té superpoders bovins.\n" -#: cmdline/apt-get.cc:3572 +#: cmdline/apt-get.cc:3574 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1416,7 +1418,7 @@ msgstr "S'ha esgotat el temps de connexió al sòcol de dades" msgid "Unable to accept connection" msgstr "No es pot acceptar la connexió" -#: methods/ftp.cc:872 methods/http.cc:1035 methods/rsh.cc:311 +#: methods/ftp.cc:872 methods/http.cc:1039 methods/rsh.cc:311 msgid "Problem hashing file" msgstr "Problema escollint el fitxer" @@ -1443,59 +1445,64 @@ msgstr "Consulta" msgid "Unable to invoke " msgstr "No es pot invocar" -#: methods/connect.cc:75 +#: methods/connect.cc:76 #, c-format msgid "Connecting to %s (%s)" msgstr "S'està connectant amb %s (%s)" -#: methods/connect.cc:86 +#: methods/connect.cc:87 #, c-format msgid "[IP: %s %s]" msgstr "[IP: %s %s]" -#: methods/connect.cc:93 +#: methods/connect.cc:94 #, c-format msgid "Could not create a socket for %s (f=%u t=%u p=%u)" msgstr "No s'ha pogut crear un sòcol per a %s (f=%u t=%u p=%u)" -#: methods/connect.cc:99 +#: methods/connect.cc:100 #, c-format msgid "Cannot initiate the connection to %s:%s (%s)." msgstr "No es pot iniciar la connexió amb %s:%s (%s)." -#: methods/connect.cc:107 +#: methods/connect.cc:108 #, c-format msgid "Could not connect to %s:%s (%s), connection timed out" msgstr "No s'ha pogut connectar amb %s:%s (%s), temps de connexió excedit" -#: methods/connect.cc:125 +#: methods/connect.cc:126 #, c-format msgid "Could not connect to %s:%s (%s)." msgstr "No s'ha pogut connectar amb %s:%s (%s)." #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:153 methods/rsh.cc:433 +#: methods/connect.cc:154 methods/rsh.cc:433 #, c-format msgid "Connecting to %s" msgstr "S'està connectant amb %s" -#: methods/connect.cc:172 methods/connect.cc:191 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format msgid "Could not resolve '%s'" msgstr "No s'ha pogut resoldre «%s»" -#: methods/connect.cc:197 +#: methods/connect.cc:205 #, c-format msgid "Temporary failure resolving '%s'" msgstr "S'ha produït un error temporal en resoldre «%s»" -#: methods/connect.cc:200 +#: methods/connect.cc:209 +#, fuzzy, c-format +msgid "System error resolving '%s:%s' (%s)" +msgstr "Ha passat alguna cosa estranya en resoldre «%s:%s» (%i - %s)" + +#: methods/connect.cc:211 #, c-format msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "Ha passat alguna cosa estranya en resoldre «%s:%s» (%i - %s)" -#: methods/connect.cc:247 +#: methods/connect.cc:258 #, c-format msgid "Unable to connect to %s:%s:" msgstr "No es pot connectar amb %s:%s:" @@ -1565,44 +1572,44 @@ msgstr "Aquest servidor HTTP té el suport d'abast trencat" msgid "Unknown date format" msgstr "Format de la data desconegut" -#: methods/http.cc:818 +#: methods/http.cc:822 msgid "Select failed" msgstr "Ha fallat la selecció" -#: methods/http.cc:823 +#: methods/http.cc:827 msgid "Connection timed out" msgstr "Connexió finalitzada" -#: methods/http.cc:846 +#: methods/http.cc:850 msgid "Error writing to output file" msgstr "S'ha produït un error en escriure al fitxer de sortida" -#: methods/http.cc:877 +#: methods/http.cc:881 msgid "Error writing to file" msgstr "S'ha produït un error en escriure al fitxer" -#: methods/http.cc:905 +#: methods/http.cc:909 msgid "Error writing to the file" msgstr "S'ha produït un error en escriure al fitxer" -#: methods/http.cc:919 +#: methods/http.cc:923 msgid "Error reading from server. Remote end closed connection" msgstr "" "S'ha produït un error en llegir, el servidor remot ha tancat la connexió" -#: methods/http.cc:921 +#: methods/http.cc:925 msgid "Error reading from server" msgstr "S'ha produït un error en llegir des del servidor" -#: methods/http.cc:1194 +#: methods/http.cc:1198 msgid "Bad header data" msgstr "Capçalera de dades no vàlida" -#: methods/http.cc:1211 methods/http.cc:1266 +#: methods/http.cc:1215 methods/http.cc:1270 msgid "Connection failed" msgstr "Ha fallat la connexió" -#: methods/http.cc:1358 +#: methods/http.cc:1362 msgid "Internal error" msgstr "Error intern" @@ -1738,7 +1745,7 @@ msgstr "" " -c=? Llegeix aquest fitxer de configuració\n" " -o=? Estableix una opció de conf arbitrària, p.e. -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1335 +#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1339 #, c-format msgid "Unable to write to %s" msgstr "No es pot escriure en %s" @@ -2421,6 +2428,16 @@ msgstr "%c%s… Error!" msgid "%c%s... Done" msgstr "%c%s… Fet" +#: apt-pkg/contrib/progress.cc:179 +msgid "..." +msgstr "" + +#. Print the spinner +#: apt-pkg/contrib/progress.cc:195 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s… Fet" + #: apt-pkg/contrib/cmndline.cc:80 #, c-format msgid "Command line option '%c' [from %s] is not known." @@ -2784,7 +2801,7 @@ msgstr "La línia %u és malformada en la llista de fonts %s (tipus)" msgid "Type '%s' is not known on line %u in source list %s" msgstr "El tipus «%s» no és conegut en la línia %u de la llista de fonts %s" -#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:896 +#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:898 #, c-format msgid "" "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " @@ -2793,12 +2810,12 @@ msgstr "" "No s'ha pogut realitzar la configuració immediata de «%s». Vegeu man 5 apt." "conf, sota APT::Immediate-Configure per a més detalls. (%d)" -#: apt-pkg/packagemanager.cc:473 apt-pkg/packagemanager.cc:503 +#: apt-pkg/packagemanager.cc:473 apt-pkg/packagemanager.cc:504 #, c-format msgid "Could not configure '%s'. " msgstr "No s'ha pogut configurar «%s»." -#: apt-pkg/packagemanager.cc:545 +#: apt-pkg/packagemanager.cc:546 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2822,7 +2839,7 @@ msgid "" msgstr "" "El paquet %s necessita ser reinstaŀlat, però no se li pot trobar un arxiu." -#: apt-pkg/algorithms.cc:1228 +#: apt-pkg/algorithms.cc:1231 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2830,13 +2847,13 @@ msgstr "" "Error, pkgProblemResolver::Resolve ha generat pauses, això pot haver estat " "causat per paquets retinguts." -#: apt-pkg/algorithms.cc:1230 +#: apt-pkg/algorithms.cc:1233 msgid "Unable to correct problems, you have held broken packages." msgstr "" "No es poden corregir els problemes, teniu paquets retinguts que estan " "trencats." -#: apt-pkg/algorithms.cc:1574 apt-pkg/algorithms.cc:1576 +#: apt-pkg/algorithms.cc:1583 apt-pkg/algorithms.cc:1585 msgid "" "Some index files failed to download. They have been ignored, or old ones " "used instead." @@ -2988,21 +3005,21 @@ msgid "Package %s %s was not found while processing file dependencies" msgstr "" "No s'ha trobat el paquet %s %s en processar les dependències del fitxer" -#: apt-pkg/pkgcachegen.cc:1146 +#: apt-pkg/pkgcachegen.cc:1150 #, c-format msgid "Couldn't stat source package list %s" msgstr "No s'ha pogut llegir la llista de paquets font %s" -#: apt-pkg/pkgcachegen.cc:1234 apt-pkg/pkgcachegen.cc:1338 -#: apt-pkg/pkgcachegen.cc:1344 apt-pkg/pkgcachegen.cc:1501 +#: apt-pkg/pkgcachegen.cc:1238 apt-pkg/pkgcachegen.cc:1342 +#: apt-pkg/pkgcachegen.cc:1348 apt-pkg/pkgcachegen.cc:1505 msgid "Reading package lists" msgstr "S'està llegint la llista de paquets" -#: apt-pkg/pkgcachegen.cc:1251 +#: apt-pkg/pkgcachegen.cc:1255 msgid "Collecting File Provides" msgstr "S'estan recollint els fitxers que proveeixen" -#: apt-pkg/pkgcachegen.cc:1443 apt-pkg/pkgcachegen.cc:1450 +#: apt-pkg/pkgcachegen.cc:1447 apt-pkg/pkgcachegen.cc:1454 msgid "IO Error saving source cache" msgstr "Error d'E/S en desar la memòria cau de la font" @@ -3335,7 +3352,7 @@ msgstr "Prepara per a rebre una solució" msgid "External solver failed without a proper error message" msgstr "El resoledor extern ha fallat sense un missatge d'error adient" -#: apt-pkg/edsp.cc:557 apt-pkg/edsp.cc:560 apt-pkg/edsp.cc:565 +#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 msgid "Execute external solver" msgstr "Executa un resoledor extern" diff --git a/po/cs.po b/po/cs.po index 4ccb2f70b..cb260c621 100644 --- a/po/cs.po +++ b/po/cs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2012-10-15 09:49+0200\n" +"POT-Creation-Date: 2013-03-24 08:53+0100\n" "PO-Revision-Date: 2012-07-08 13:46+0200\n" "Last-Translator: Miroslav Kure \n" "Language-Team: Czech \n" @@ -153,7 +153,7 @@ msgid " Version table:" msgstr " Tabulka verzí:" #: cmdline/apt-cache.cc:1683 cmdline/apt-cdrom.cc:198 cmdline/apt-config.cc:81 -#: cmdline/apt-get.cc:3361 cmdline/apt-mark.cc:375 +#: cmdline/apt-get.cc:3363 cmdline/apt-mark.cc:375 #: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:590 #: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147 #, c-format @@ -478,7 +478,7 @@ msgstr "Přeinstalace %s není možná, protože nelze stáhnout.\n" msgid "%s is already the newest version.\n" msgstr "%s je již nejnovější verze.\n" -#: cmdline/apt-get.cc:858 cmdline/apt-get.cc:2157 cmdline/apt-mark.cc:68 +#: cmdline/apt-get.cc:858 cmdline/apt-get.cc:2159 cmdline/apt-mark.cc:68 #, c-format msgid "%s set to manually installed.\n" msgstr "%s nastaven jako instalovaný ručně.\n" @@ -586,8 +586,8 @@ msgstr "Po této operaci bude na disku použito dalších %sB.\n" msgid "After this operation, %sB disk space will be freed.\n" msgstr "Po této operaci bude na disku uvolněno %sB.\n" -#: cmdline/apt-get.cc:1228 cmdline/apt-get.cc:1231 cmdline/apt-get.cc:2589 -#: cmdline/apt-get.cc:2592 +#: cmdline/apt-get.cc:1228 cmdline/apt-get.cc:1231 cmdline/apt-get.cc:2591 +#: cmdline/apt-get.cc:2594 #, c-format msgid "Couldn't determine free space in %s" msgstr "Nelze určit volné místo v %s" @@ -597,15 +597,17 @@ msgstr "Nelze určit volné místo v %s" msgid "You don't have enough free space in %s." msgstr "V %s nemáte dostatek volného místa." -#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1277 +#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1279 msgid "Trivial Only specified but this is not a trivial operation." msgstr "Udáno „pouze triviální“, ovšem toto není triviální operace." -#: cmdline/apt-get.cc:1259 +#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be +#. careful with hard to type or special characters (like non-breaking spaces) +#: cmdline/apt-get.cc:1261 msgid "Yes, do as I say!" msgstr "Ano, udělej to tak, jak říkám!" -#: cmdline/apt-get.cc:1261 +#: cmdline/apt-get.cc:1263 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -616,28 +618,28 @@ msgstr "" "Pro pokračování opište frázi „%s“\n" " ?] " -#: cmdline/apt-get.cc:1267 cmdline/apt-get.cc:1286 +#: cmdline/apt-get.cc:1269 cmdline/apt-get.cc:1288 msgid "Abort." msgstr "Přerušeno." -#: cmdline/apt-get.cc:1282 +#: cmdline/apt-get.cc:1284 msgid "Do you want to continue [Y/n]? " msgstr "Chcete pokračovat [Y/n]? " -#: cmdline/apt-get.cc:1354 cmdline/apt-get.cc:2654 apt-pkg/algorithms.cc:1548 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1557 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Selhalo stažení %s %s\n" -#: cmdline/apt-get.cc:1372 +#: cmdline/apt-get.cc:1374 msgid "Some files failed to download" msgstr "Některé soubory nemohly být staženy" -#: cmdline/apt-get.cc:1373 cmdline/apt-get.cc:2666 +#: cmdline/apt-get.cc:1375 cmdline/apt-get.cc:2668 msgid "Download complete and in download only mode" msgstr "Stahování dokončeno v režimu pouze stáhnout" -#: cmdline/apt-get.cc:1379 +#: cmdline/apt-get.cc:1381 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -645,19 +647,19 @@ msgstr "" "Nelze stáhnout některé archivy. Možná spusťte apt-get update nebo zkuste --" "fix-missing?" -#: cmdline/apt-get.cc:1383 +#: cmdline/apt-get.cc:1385 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix-missing a výměna média nejsou momentálně podporovány" -#: cmdline/apt-get.cc:1388 +#: cmdline/apt-get.cc:1390 msgid "Unable to correct missing packages." msgstr "Nelze opravit chybějící balíky." -#: cmdline/apt-get.cc:1389 +#: cmdline/apt-get.cc:1391 msgid "Aborting install." msgstr "Přerušuji instalaci." -#: cmdline/apt-get.cc:1417 +#: cmdline/apt-get.cc:1419 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -674,35 +676,35 @@ msgstr[2] "" "Následující balíky z tohoto systému zmizely, protože\n" "všechny jejich soubory byly přepsány jinými balíky:" -#: cmdline/apt-get.cc:1421 +#: cmdline/apt-get.cc:1423 msgid "Note: This is done automatically and on purpose by dpkg." msgstr "Poznámka: Toto má svůj důvod a děje se automaticky v dpkg." -#: cmdline/apt-get.cc:1559 +#: cmdline/apt-get.cc:1561 #, c-format msgid "Ignore unavailable target release '%s' of package '%s'" msgstr "Ignoruje se nedostupné vydání „%s“ balíku „%s“" -#: cmdline/apt-get.cc:1591 +#: cmdline/apt-get.cc:1593 #, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "Vybírám „%s“ jako zdrojový balík místo „%s“\n" #. if (VerTag.empty() == false && Last == 0) -#: cmdline/apt-get.cc:1629 +#: cmdline/apt-get.cc:1631 #, c-format msgid "Ignore unavailable version '%s' of package '%s'" msgstr "Ignoruje se nedostupná verze „%s“ balíku „%s“" -#: cmdline/apt-get.cc:1645 +#: cmdline/apt-get.cc:1647 msgid "The update command takes no arguments" msgstr "Příkaz update neakceptuje žádné argumenty" -#: cmdline/apt-get.cc:1711 +#: cmdline/apt-get.cc:1713 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "Neměli bychom mazat věci, nemůžu spustit AutoRemover" -#: cmdline/apt-get.cc:1815 +#: cmdline/apt-get.cc:1817 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -720,15 +722,15 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1818 cmdline/apt-get.cc:1987 +#: cmdline/apt-get.cc:1820 cmdline/apt-get.cc:1989 msgid "The following information may help to resolve the situation:" msgstr "Následující informace vám mohou pomoci vyřešit tuto situaci:" -#: cmdline/apt-get.cc:1822 +#: cmdline/apt-get.cc:1824 msgid "Internal Error, AutoRemover broke stuff" msgstr "Vnitřní chyba, AutoRemover pokazil věci" -#: cmdline/apt-get.cc:1829 +#: cmdline/apt-get.cc:1831 msgid "" "The following package was automatically installed and is no longer required:" msgid_plural "" @@ -740,7 +742,7 @@ msgstr[1] "" msgstr[2] "" "Následující balíky byly nainstalovány automaticky a již nejsou potřeba:" -#: cmdline/apt-get.cc:1833 +#: cmdline/apt-get.cc:1835 #, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -749,22 +751,22 @@ msgstr[0] "%lu balík byl nainstalován automaticky a již není potřeba.\n" msgstr[1] "%lu balíky byly nainstalovány automaticky a již nejsou potřeba.\n" msgstr[2] "%lu balíků bylo nainstalováno automaticky a již nejsou potřeba.\n" -#: cmdline/apt-get.cc:1835 +#: cmdline/apt-get.cc:1837 msgid "Use 'apt-get autoremove' to remove it." msgid_plural "Use 'apt-get autoremove' to remove them." msgstr[0] "Pro jeho odstranění použijte „apt-get autoremove“." msgstr[1] "Pro jejich odstranění použijte „apt-get autoremove“." msgstr[2] "Pro jejich odstranění použijte „apt-get autoremove“." -#: cmdline/apt-get.cc:1854 +#: cmdline/apt-get.cc:1856 msgid "Internal error, AllUpgrade broke stuff" msgstr "Vnitřní chyba, AllUpgrade pokazil věci" -#: cmdline/apt-get.cc:1953 +#: cmdline/apt-get.cc:1955 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "Pro opravení následujících můžete spustit „apt-get -f install“:" -#: cmdline/apt-get.cc:1957 +#: cmdline/apt-get.cc:1959 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -772,7 +774,7 @@ msgstr "" "Nesplněné závislosti. Zkuste spustit „apt-get -f install“ bez balíků (nebo " "navrhněte řešení)." -#: cmdline/apt-get.cc:1972 +#: cmdline/apt-get.cc:1974 msgid "" "Some packages could not be installed. This may mean that you have\n" "requested an impossible situation or if you are using the unstable\n" @@ -783,33 +785,33 @@ msgstr "" "nemožnou situaci, nebo, pokud používáte nestabilní distribuci, že\n" "vyžadované balíky ještě nebyly vytvořeny nebo přesunuty z Příchozí fronty." -#: cmdline/apt-get.cc:1993 +#: cmdline/apt-get.cc:1995 msgid "Broken packages" msgstr "Poškozené balíky" -#: cmdline/apt-get.cc:2019 +#: cmdline/apt-get.cc:2021 msgid "The following extra packages will be installed:" msgstr "Následující extra balíky budou instalovány:" -#: cmdline/apt-get.cc:2109 +#: cmdline/apt-get.cc:2111 msgid "Suggested packages:" msgstr "Navrhované balíky:" -#: cmdline/apt-get.cc:2110 +#: cmdline/apt-get.cc:2112 msgid "Recommended packages:" msgstr "Doporučované balíky:" -#: cmdline/apt-get.cc:2152 +#: cmdline/apt-get.cc:2154 #, c-format msgid "Couldn't find package %s" msgstr "Nelze najít balík %s" -#: cmdline/apt-get.cc:2159 cmdline/apt-mark.cc:70 +#: cmdline/apt-get.cc:2161 cmdline/apt-mark.cc:70 #, c-format msgid "%s set to automatically installed.\n" msgstr "%s nastaven jako instalovaný automaticky.\n" -#: cmdline/apt-get.cc:2167 cmdline/apt-mark.cc:114 +#: cmdline/apt-get.cc:2169 cmdline/apt-mark.cc:114 msgid "" "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " "instead." @@ -817,46 +819,46 @@ msgstr "" "Tento příkaz je zastaralý, použijte místo něj „apt-mark auto“ a „apt-mark " "manual“." -#: cmdline/apt-get.cc:2183 +#: cmdline/apt-get.cc:2185 msgid "Calculating upgrade... " msgstr "Propočítávám aktualizaci… " -#: cmdline/apt-get.cc:2186 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:116 msgid "Failed" msgstr "Selhalo" -#: cmdline/apt-get.cc:2191 +#: cmdline/apt-get.cc:2193 msgid "Done" msgstr "Hotovo" -#: cmdline/apt-get.cc:2258 cmdline/apt-get.cc:2266 +#: cmdline/apt-get.cc:2260 cmdline/apt-get.cc:2268 msgid "Internal error, problem resolver broke stuff" msgstr "Vnitřní chyba, řešitel problémů pokazil věci" -#: cmdline/apt-get.cc:2294 cmdline/apt-get.cc:2330 +#: cmdline/apt-get.cc:2296 cmdline/apt-get.cc:2332 msgid "Unable to lock the download directory" msgstr "Nelze zamknout adresář pro stahování" -#: cmdline/apt-get.cc:2386 +#: cmdline/apt-get.cc:2388 #, c-format msgid "Can't find a source to download version '%s' of '%s'" msgstr "Nelze najít zdroj pro stažení verze „%s“ balíku „%s“" -#: cmdline/apt-get.cc:2391 +#: cmdline/apt-get.cc:2393 #, c-format msgid "Downloading %s %s" msgstr "Stahuje se %s %s" -#: cmdline/apt-get.cc:2451 +#: cmdline/apt-get.cc:2453 msgid "Must specify at least one package to fetch source for" msgstr "Musíte zadat aspoň jeden balík, pro který se stáhnou zdrojové texty" -#: cmdline/apt-get.cc:2491 cmdline/apt-get.cc:2803 +#: cmdline/apt-get.cc:2493 cmdline/apt-get.cc:2805 #, c-format msgid "Unable to find a source package for %s" msgstr "Nelze najít zdrojový balík pro %s" -#: cmdline/apt-get.cc:2508 +#: cmdline/apt-get.cc:2510 #, c-format msgid "" "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" @@ -865,7 +867,7 @@ msgstr "" "INFO: Balík „%s“ je spravován v systému pro správu verzí „%s“ na:\n" "%s\n" -#: cmdline/apt-get.cc:2513 +#: cmdline/apt-get.cc:2515 #, c-format msgid "" "Please use:\n" @@ -876,70 +878,70 @@ msgstr "" "použijte:\n" "bzr branch %s\n" -#: cmdline/apt-get.cc:2566 +#: cmdline/apt-get.cc:2568 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Přeskakuji dříve stažený soubor „%s“\n" -#: cmdline/apt-get.cc:2603 +#: cmdline/apt-get.cc:2605 #, c-format msgid "You don't have enough free space in %s" msgstr "Na %s nemáte dostatek volného místa" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:2612 +#: cmdline/apt-get.cc:2614 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "Potřebuji stáhnout %sB/%sB zdrojových archivů.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:2617 +#: cmdline/apt-get.cc:2619 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Potřebuji stáhnout %sB zdrojových archivů.\n" -#: cmdline/apt-get.cc:2623 +#: cmdline/apt-get.cc:2625 #, c-format msgid "Fetch source %s\n" msgstr "Stažení zdroje %s\n" -#: cmdline/apt-get.cc:2661 +#: cmdline/apt-get.cc:2663 msgid "Failed to fetch some archives." msgstr "Stažení některých archivů selhalo." -#: cmdline/apt-get.cc:2692 +#: cmdline/apt-get.cc:2694 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "Přeskakuji rozbalení již rozbaleného zdroje v %s\n" -#: cmdline/apt-get.cc:2704 +#: cmdline/apt-get.cc:2706 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Příkaz pro rozbalení „%s“ selhal.\n" -#: cmdline/apt-get.cc:2705 +#: cmdline/apt-get.cc:2707 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "Zkontrolujte, zda je nainstalován balíček „dpkg-dev“.\n" -#: cmdline/apt-get.cc:2727 +#: cmdline/apt-get.cc:2729 #, c-format msgid "Build command '%s' failed.\n" msgstr "Příkaz pro sestavení „%s“ selhal.\n" -#: cmdline/apt-get.cc:2747 +#: cmdline/apt-get.cc:2749 msgid "Child process failed" msgstr "Synovský proces selhal" -#: cmdline/apt-get.cc:2766 +#: cmdline/apt-get.cc:2768 msgid "Must specify at least one package to check builddeps for" msgstr "" "Musíte zadat alespoň jeden balík, pro který budou kontrolovány závislosti " "pro sestavení" -#: cmdline/apt-get.cc:2791 +#: cmdline/apt-get.cc:2793 #, c-format msgid "" "No architecture information available for %s. See apt.conf(5) APT::" @@ -948,17 +950,17 @@ msgstr "" "O architektuře %s nejsou známy žádné informace. Pro nastavení si přečtěte " "část APT::Architectures v manuálové stránce apt.conf(5)" -#: cmdline/apt-get.cc:2815 cmdline/apt-get.cc:2818 +#: cmdline/apt-get.cc:2817 cmdline/apt-get.cc:2820 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "Nelze získat závislosti pro sestavení %s" -#: cmdline/apt-get.cc:2838 +#: cmdline/apt-get.cc:2840 #, c-format msgid "%s has no build depends.\n" msgstr "%s nemá žádné závislosti pro sestavení.\n" -#: cmdline/apt-get.cc:3008 +#: cmdline/apt-get.cc:3010 #, c-format msgid "" "%s dependency for %s can't be satisfied because %s is not allowed on '%s' " @@ -967,20 +969,20 @@ msgstr "" "závislost %s pro %s nemůže být splněna, protože %s není na balících „%s“ " "dovolena" -#: cmdline/apt-get.cc:3026 +#: cmdline/apt-get.cc:3028 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " "found" msgstr "závislost %s pro %s nemůže být splněna, protože balík %s nebyl nalezen" -#: cmdline/apt-get.cc:3049 +#: cmdline/apt-get.cc:3051 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "Selhalo splnění závislosti %s pro %s: Instalovaný balík %s je příliš nový" -#: cmdline/apt-get.cc:3088 +#: cmdline/apt-get.cc:3090 #, c-format msgid "" "%s dependency for %s cannot be satisfied because candidate version of " @@ -989,7 +991,7 @@ msgstr "" "závislost %s pro %s nemůže být splněna, protože kandidátská verze balíku %s " "nesplňuje požadavek na verzi" -#: cmdline/apt-get.cc:3094 +#: cmdline/apt-get.cc:3096 #, c-format msgid "" "%s dependency for %s cannot be satisfied because package %s has no candidate " @@ -998,30 +1000,30 @@ msgstr "" "závislost %s pro %s nemůže být splněna, protože balík %s nemá kandidátskou " "verzi" -#: cmdline/apt-get.cc:3117 +#: cmdline/apt-get.cc:3119 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "Selhalo splnění závislosti %s pro %s: %s" -#: cmdline/apt-get.cc:3133 +#: cmdline/apt-get.cc:3135 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "Závislosti pro sestavení %s nemohly být splněny." -#: cmdline/apt-get.cc:3138 +#: cmdline/apt-get.cc:3140 msgid "Failed to process build dependencies" msgstr "Chyba při zpracování závislostí pro sestavení" -#: cmdline/apt-get.cc:3231 cmdline/apt-get.cc:3243 +#: cmdline/apt-get.cc:3233 cmdline/apt-get.cc:3245 #, c-format msgid "Changelog for %s (%s)" msgstr "Seznam změn %s (%s)" -#: cmdline/apt-get.cc:3366 +#: cmdline/apt-get.cc:3368 msgid "Supported modules:" msgstr "Podporované moduly:" -#: cmdline/apt-get.cc:3407 +#: cmdline/apt-get.cc:3409 msgid "" "Usage: apt-get [options] command\n" " apt-get [options] install|remove pkg1 [pkg2 ...]\n" @@ -1108,7 +1110,7 @@ msgstr "" "a apt.conf(5).\n" " Tato APT má schopnosti svaté krávy.\n" -#: cmdline/apt-get.cc:3572 +#: cmdline/apt-get.cc:3574 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1408,7 +1410,7 @@ msgstr "Spojení datového socketu vypršelo" msgid "Unable to accept connection" msgstr "Nelze přijmout spojení" -#: methods/ftp.cc:872 methods/http.cc:1035 methods/rsh.cc:311 +#: methods/ftp.cc:872 methods/http.cc:1039 methods/rsh.cc:311 msgid "Problem hashing file" msgstr "Problém s kontrolním součtem souboru" @@ -1435,59 +1437,64 @@ msgstr "Dotaz" msgid "Unable to invoke " msgstr "Nelze vyvolat " -#: methods/connect.cc:75 +#: methods/connect.cc:76 #, c-format msgid "Connecting to %s (%s)" msgstr "Připojuji se k %s (%s)" -#: methods/connect.cc:86 +#: methods/connect.cc:87 #, c-format msgid "[IP: %s %s]" msgstr "[IP: %s %s]" -#: methods/connect.cc:93 +#: methods/connect.cc:94 #, c-format msgid "Could not create a socket for %s (f=%u t=%u p=%u)" msgstr "Nelze vytvořit socket pro %s (f=%u t=%u p=%u)" -#: methods/connect.cc:99 +#: methods/connect.cc:100 #, c-format msgid "Cannot initiate the connection to %s:%s (%s)." msgstr "Nelze navázat spojení na %s:%s (%s)." -#: methods/connect.cc:107 +#: methods/connect.cc:108 #, c-format msgid "Could not connect to %s:%s (%s), connection timed out" msgstr "Nelze se připojit k %s:%s (%s), čas spojení vypršel" -#: methods/connect.cc:125 +#: methods/connect.cc:126 #, c-format msgid "Could not connect to %s:%s (%s)." msgstr "Nelze se připojit k %s:%s (%s)." #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:153 methods/rsh.cc:433 +#: methods/connect.cc:154 methods/rsh.cc:433 #, c-format msgid "Connecting to %s" msgstr "Připojuji se k %s" -#: methods/connect.cc:172 methods/connect.cc:191 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format msgid "Could not resolve '%s'" msgstr "Nelze přeložit „%s“" -#: methods/connect.cc:197 +#: methods/connect.cc:205 #, c-format msgid "Temporary failure resolving '%s'" msgstr "Dočasné selhání při zjišťování „%s“" -#: methods/connect.cc:200 +#: methods/connect.cc:209 +#, fuzzy, c-format +msgid "System error resolving '%s:%s' (%s)" +msgstr "Něco hodně ošklivého se přihodilo při překladu „%s:%s“ (%i - %s)" + +#: methods/connect.cc:211 #, c-format msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "Něco hodně ošklivého se přihodilo při překladu „%s:%s“ (%i - %s)" -#: methods/connect.cc:247 +#: methods/connect.cc:258 #, c-format msgid "Unable to connect to %s:%s:" msgstr "Nelze se připojit k %s:%s:" @@ -1553,43 +1560,43 @@ msgstr "Tento HTTP server má porouchanou podporu rozsahů" msgid "Unknown date format" msgstr "Neznámý formát data" -#: methods/http.cc:818 +#: methods/http.cc:822 msgid "Select failed" msgstr "Výběr selhal" -#: methods/http.cc:823 +#: methods/http.cc:827 msgid "Connection timed out" msgstr "Čas spojení vypršel" -#: methods/http.cc:846 +#: methods/http.cc:850 msgid "Error writing to output file" msgstr "Chyba zápisu do výstupního souboru" -#: methods/http.cc:877 +#: methods/http.cc:881 msgid "Error writing to file" msgstr "Chyba zápisu do souboru" -#: methods/http.cc:905 +#: methods/http.cc:909 msgid "Error writing to the file" msgstr "Chyba zápisu do souboru" -#: methods/http.cc:919 +#: methods/http.cc:923 msgid "Error reading from server. Remote end closed connection" msgstr "Chyba čtení ze serveru. Druhá strana zavřela spojení" -#: methods/http.cc:921 +#: methods/http.cc:925 msgid "Error reading from server" msgstr "Chyba čtení ze serveru" -#: methods/http.cc:1194 +#: methods/http.cc:1198 msgid "Bad header data" msgstr "Špatné datové záhlaví" -#: methods/http.cc:1211 methods/http.cc:1266 +#: methods/http.cc:1215 methods/http.cc:1270 msgid "Connection failed" msgstr "Spojení selhalo" -#: methods/http.cc:1358 +#: methods/http.cc:1362 msgid "Internal error" msgstr "Vnitřní chyba" @@ -1719,7 +1726,7 @@ msgstr "" " -c=? Načte tento konfigurační soubor\n" " -o=? Nastaví libovolnou volbu, např. -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1335 +#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1339 #, c-format msgid "Unable to write to %s" msgstr "Nelze zapsat do %s" @@ -2399,6 +2406,16 @@ msgstr "%c%s… Chyba!" msgid "%c%s... Done" msgstr "%c%s… Hotovo" +#: apt-pkg/contrib/progress.cc:179 +msgid "..." +msgstr "" + +#. Print the spinner +#: apt-pkg/contrib/progress.cc:195 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s… Hotovo" + #: apt-pkg/contrib/cmndline.cc:80 #, c-format msgid "Command line option '%c' [from %s] is not known." @@ -2754,7 +2771,7 @@ msgstr "Zkomolený řádek %u v seznamu zdrojů %s (typ)" msgid "Type '%s' is not known on line %u in source list %s" msgstr "Typ „%s“ na řádce %u v seznamu zdrojů %s není známý" -#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:896 +#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:898 #, c-format msgid "" "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " @@ -2763,12 +2780,12 @@ msgstr "" "Nelze spustit okamžitou konfiguraci balíku „%s“. Podrobnosti naleznete v man " "5 apt.conf v části APT::Immediate-Configure. (%d)" -#: apt-pkg/packagemanager.cc:473 apt-pkg/packagemanager.cc:503 +#: apt-pkg/packagemanager.cc:473 apt-pkg/packagemanager.cc:504 #, c-format msgid "Could not configure '%s'. " msgstr "Nelze nastavit „%s“." -#: apt-pkg/packagemanager.cc:545 +#: apt-pkg/packagemanager.cc:546 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2790,7 +2807,7 @@ msgid "" "The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "Balík %s je potřeba přeinstalovat, ale nemohu pro něj nalézt archiv." -#: apt-pkg/algorithms.cc:1228 +#: apt-pkg/algorithms.cc:1231 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2798,11 +2815,11 @@ msgstr "" "Chyba, pkgProblemResolver::Resolve vytváří poruchy, to může být způsobeno " "podrženými balíky." -#: apt-pkg/algorithms.cc:1230 +#: apt-pkg/algorithms.cc:1233 msgid "Unable to correct problems, you have held broken packages." msgstr "Nelze opravit problémy, některé balíky držíte v porouchaném stavu." -#: apt-pkg/algorithms.cc:1574 apt-pkg/algorithms.cc:1576 +#: apt-pkg/algorithms.cc:1583 apt-pkg/algorithms.cc:1585 msgid "" "Some index files failed to download. They have been ignored, or old ones " "used instead." @@ -2946,21 +2963,21 @@ msgstr "Wow, překročili jste počet závislostí, které tato APT umí zpracov msgid "Package %s %s was not found while processing file dependencies" msgstr "Při zpracování závislostí nebyl nalezen balík %s %s" -#: apt-pkg/pkgcachegen.cc:1146 +#: apt-pkg/pkgcachegen.cc:1150 #, c-format msgid "Couldn't stat source package list %s" msgstr "Nešlo vyhodnotit seznam zdrojových balíků %s" -#: apt-pkg/pkgcachegen.cc:1234 apt-pkg/pkgcachegen.cc:1338 -#: apt-pkg/pkgcachegen.cc:1344 apt-pkg/pkgcachegen.cc:1501 +#: apt-pkg/pkgcachegen.cc:1238 apt-pkg/pkgcachegen.cc:1342 +#: apt-pkg/pkgcachegen.cc:1348 apt-pkg/pkgcachegen.cc:1505 msgid "Reading package lists" msgstr "Čtu seznamy balíků" -#: apt-pkg/pkgcachegen.cc:1251 +#: apt-pkg/pkgcachegen.cc:1255 msgid "Collecting File Provides" msgstr "Collecting File poskytuje" -#: apt-pkg/pkgcachegen.cc:1443 apt-pkg/pkgcachegen.cc:1450 +#: apt-pkg/pkgcachegen.cc:1447 apt-pkg/pkgcachegen.cc:1454 msgid "IO Error saving source cache" msgstr "Chyba IO při ukládání zdrojové cache" @@ -3280,7 +3297,7 @@ msgstr "Příprava na obdržení řešení" msgid "External solver failed without a proper error message" msgstr "Externí řešitel selhal, aniž by zanechal rozumnou chybovou hlášku" -#: apt-pkg/edsp.cc:557 apt-pkg/edsp.cc:560 apt-pkg/edsp.cc:565 +#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 msgid "Execute external solver" msgstr "Spuštění externího řešitele" diff --git a/po/cy.po b/po/cy.po index d519064f4..3e684a489 100644 --- a/po/cy.po +++ b/po/cy.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: APT\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-03-14 08:05+0100\n" +"POT-Creation-Date: 2013-03-24 08:53+0100\n" "PO-Revision-Date: 2005-06-06 13:46+0100\n" "Last-Translator: Dafydd Harries \n" "Language-Team: Welsh \n" @@ -663,7 +663,7 @@ msgstr "Erthylu." msgid "Do you want to continue [Y/n]? " msgstr "Ydych chi eisiau mynd ymlaen? [Y/n] " -#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1557 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Methwyd cyrchu %s %s\n" @@ -852,7 +852,7 @@ msgstr "" msgid "Calculating upgrade... " msgstr "Yn Cyfrifo'r Uwchraddiad... " -#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:116 msgid "Failed" msgstr "Methwyd" @@ -1422,7 +1422,7 @@ msgstr "Goramserodd cysylltiad y soced data" msgid "Unable to accept connection" msgstr "Methwyd derbyn cysylltiad" -#: methods/ftp.cc:872 methods/http.cc:1035 methods/rsh.cc:311 +#: methods/ftp.cc:872 methods/http.cc:1039 methods/rsh.cc:311 msgid "Problem hashing file" msgstr "Problem wrth stwnshio ffeil" @@ -1450,59 +1450,64 @@ msgstr "Ymholiad" msgid "Unable to invoke " msgstr "Methwyd gweithredu " -#: methods/connect.cc:75 +#: methods/connect.cc:76 #, c-format msgid "Connecting to %s (%s)" msgstr "Yn cysylltu i %s (%s)" -#: methods/connect.cc:86 +#: methods/connect.cc:87 #, c-format msgid "[IP: %s %s]" msgstr "[IP: %s %s]" -#: methods/connect.cc:93 +#: methods/connect.cc:94 #, c-format msgid "Could not create a socket for %s (f=%u t=%u p=%u)" msgstr "Methwyd creu soced ar gyfer %s (f=%u t=%u p=%u)" -#: methods/connect.cc:99 +#: methods/connect.cc:100 #, c-format msgid "Cannot initiate the connection to %s:%s (%s)." msgstr "Ni ellir cychwyn y cysylltiad i %s:%s (%s)." -#: methods/connect.cc:107 +#: methods/connect.cc:108 #, c-format msgid "Could not connect to %s:%s (%s), connection timed out" msgstr "Methwyd cysylltu i %s:%s (%s), goramserodd y cysylltiad" -#: methods/connect.cc:125 +#: methods/connect.cc:126 #, c-format msgid "Could not connect to %s:%s (%s)." msgstr "Methwyd cysylltu i %s:%s (%s)." #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:153 methods/rsh.cc:433 +#: methods/connect.cc:154 methods/rsh.cc:433 #, c-format msgid "Connecting to %s" msgstr "Yn cysylltu i %s" -#: methods/connect.cc:172 methods/connect.cc:191 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format msgid "Could not resolve '%s'" msgstr "Methwyd datrys '%s'" -#: methods/connect.cc:197 +#: methods/connect.cc:205 #, c-format msgid "Temporary failure resolving '%s'" msgstr "Methiant dros dro yn datrys '%s'" -#: methods/connect.cc:200 +#: methods/connect.cc:209 +#, fuzzy, c-format +msgid "System error resolving '%s:%s' (%s)" +msgstr "Digwyddodd rhywbweth hyll wrth ddatrys '%s:%s' (%i)" + +#: methods/connect.cc:211 #, fuzzy, c-format msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "Digwyddodd rhywbweth hyll wrth ddatrys '%s:%s' (%i)" -#: methods/connect.cc:247 +#: methods/connect.cc:258 #, fuzzy, c-format msgid "Unable to connect to %s:%s:" msgstr "Methwyd cysylltu i %s %s:" @@ -1571,45 +1576,45 @@ msgstr "Mae cynaliaeth amrediad y gweinydd hwn wedi torri" msgid "Unknown date format" msgstr "Fformat dyddiad anhysbys" -#: methods/http.cc:818 +#: methods/http.cc:822 msgid "Select failed" msgstr "Methwyd dewis" -#: methods/http.cc:823 +#: methods/http.cc:827 msgid "Connection timed out" msgstr "Goramserodd y cysylltiad" -#: methods/http.cc:846 +#: methods/http.cc:850 msgid "Error writing to output file" msgstr "Gwall wrth ysgrifennu i ffeil allbwn" -#: methods/http.cc:877 +#: methods/http.cc:881 msgid "Error writing to file" msgstr "Gwall wrth ysgrifennu at ffeil" -#: methods/http.cc:905 +#: methods/http.cc:909 msgid "Error writing to the file" msgstr "Gwall wrth ysgrifennu at y ffeil" -#: methods/http.cc:919 +#: methods/http.cc:923 #, fuzzy msgid "Error reading from server. Remote end closed connection" msgstr "Gwall wrth ddarllen o'r gweinydd: caeodd yr ochr pell y cysylltiad" -#: methods/http.cc:921 +#: methods/http.cc:925 msgid "Error reading from server" msgstr "Gwall wrth ddarllen o'r gweinydd" -#: methods/http.cc:1194 +#: methods/http.cc:1198 #, fuzzy msgid "Bad header data" msgstr "Data pennawd gwael" -#: methods/http.cc:1211 methods/http.cc:1266 +#: methods/http.cc:1215 methods/http.cc:1270 msgid "Connection failed" msgstr "Methodd y cysylltiad" -#: methods/http.cc:1358 +#: methods/http.cc:1362 msgid "Internal error" msgstr "Gwall mewnol" @@ -2435,6 +2440,16 @@ msgstr "%c%s... Gwall!" msgid "%c%s... Done" msgstr "%c%s... Wedi Gorffen" +#: apt-pkg/contrib/progress.cc:179 +msgid "..." +msgstr "" + +#. Print the spinner +#: apt-pkg/contrib/progress.cc:195 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Wedi Gorffen" + # FIXME #: apt-pkg/contrib/cmndline.cc:80 #, c-format @@ -2843,7 +2858,7 @@ msgstr "" "Mae angen ailsefydlu'r pecyn %s, ond dydw i ddim yn gallu canfod archif ar " "ei gyfer." -#: apt-pkg/algorithms.cc:1228 +#: apt-pkg/algorithms.cc:1231 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2851,12 +2866,12 @@ msgstr "" "Gwall: Cynhyrchodd pkgProblemResolver::Resolve doriadau. Fe all hyn fod wedi " "ei achosi gan pecynnau wedi eu dal." -#: apt-pkg/algorithms.cc:1230 +#: apt-pkg/algorithms.cc:1233 msgid "Unable to correct problems, you have held broken packages." msgstr "" "Ni ellir cywiro'r problemau gan eich bod chi wedi dal pecynnau torredig." -#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 +#: apt-pkg/algorithms.cc:1583 apt-pkg/algorithms.cc:1585 #, fuzzy msgid "" "Some index files failed to download. They have been ignored, or old ones " @@ -3336,7 +3351,7 @@ msgstr "" msgid "External solver failed without a proper error message" msgstr "" -#: apt-pkg/edsp.cc:557 apt-pkg/edsp.cc:560 apt-pkg/edsp.cc:565 +#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 msgid "Execute external solver" msgstr "" diff --git a/po/da.po b/po/da.po index fe982be16..4ca0c0711 100644 --- a/po/da.po +++ b/po/da.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-03-14 08:05+0100\n" +"POT-Creation-Date: 2013-03-24 08:53+0100\n" "PO-Revision-Date: 2012-07-03 23:51+0200\n" "Last-Translator: Joe Hansen \n" "Language-Team: Danish \n" @@ -635,7 +635,7 @@ msgstr "Afbryder." msgid "Do you want to continue [Y/n]? " msgstr "Vil du fortsætte [J/n]? " -#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1557 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Kunne ikke hente %s %s\n" @@ -829,7 +829,7 @@ msgstr "" msgid "Calculating upgrade... " msgstr "Beregner opgraderingen... " -#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:116 msgid "Failed" msgstr "Mislykkedes" @@ -1418,7 +1418,7 @@ msgstr "Tidsudløb på datasokkel-forbindelse" msgid "Unable to accept connection" msgstr "Kunne ikke acceptere forbindelse" -#: methods/ftp.cc:872 methods/http.cc:1035 methods/rsh.cc:311 +#: methods/ftp.cc:872 methods/http.cc:1039 methods/rsh.cc:311 msgid "Problem hashing file" msgstr "Problem ved \"hashing\" af fil" @@ -1445,59 +1445,64 @@ msgstr "Forespørgsel" msgid "Unable to invoke " msgstr "Kunne ikke udføre " -#: methods/connect.cc:75 +#: methods/connect.cc:76 #, c-format msgid "Connecting to %s (%s)" msgstr "Forbinder til %s (%s)" -#: methods/connect.cc:86 +#: methods/connect.cc:87 #, c-format msgid "[IP: %s %s]" msgstr "[IP: %s %s]" -#: methods/connect.cc:93 +#: methods/connect.cc:94 #, c-format msgid "Could not create a socket for %s (f=%u t=%u p=%u)" msgstr "Kunne ikke oprette sokkel til %s (f=%u t=%u p=%u)" -#: methods/connect.cc:99 +#: methods/connect.cc:100 #, c-format msgid "Cannot initiate the connection to %s:%s (%s)." msgstr "Kan ikke oprette forbindelse til %s:%s (%s)." -#: methods/connect.cc:107 +#: methods/connect.cc:108 #, c-format msgid "Could not connect to %s:%s (%s), connection timed out" msgstr "Kunne ikke forbinde til %s:%s (%s) grundet tidsudløb" -#: methods/connect.cc:125 +#: methods/connect.cc:126 #, c-format msgid "Could not connect to %s:%s (%s)." msgstr "Kunne ikke forbinde til %s:%s (%s)." #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:153 methods/rsh.cc:433 +#: methods/connect.cc:154 methods/rsh.cc:433 #, c-format msgid "Connecting to %s" msgstr "Forbinder til %s" -#: methods/connect.cc:172 methods/connect.cc:191 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format msgid "Could not resolve '%s'" msgstr "Kunne ikke omsætte navnet '%s'" -#: methods/connect.cc:197 +#: methods/connect.cc:205 #, c-format msgid "Temporary failure resolving '%s'" msgstr "Midlertidig fejl ved omsætning af navnet '%s'" -#: methods/connect.cc:200 +#: methods/connect.cc:209 +#, fuzzy, c-format +msgid "System error resolving '%s:%s' (%s)" +msgstr "Der skete noget underligt under opløsning af '%s:%s' (%i - %s)" + +#: methods/connect.cc:211 #, c-format msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "Der skete noget underligt under opløsning af '%s:%s' (%i - %s)" -#: methods/connect.cc:247 +#: methods/connect.cc:258 #, c-format msgid "Unable to connect to %s:%s:" msgstr "Kunne ikke forbinde til %s:%s:" @@ -1566,43 +1571,43 @@ msgstr "" msgid "Unknown date format" msgstr "Ukendt datoformat" -#: methods/http.cc:818 +#: methods/http.cc:822 msgid "Select failed" msgstr "Valg mislykkedes" -#: methods/http.cc:823 +#: methods/http.cc:827 msgid "Connection timed out" msgstr "Tidsudløb på forbindelsen" -#: methods/http.cc:846 +#: methods/http.cc:850 msgid "Error writing to output file" msgstr "Fejl ved skrivning af uddatafil" -#: methods/http.cc:877 +#: methods/http.cc:881 msgid "Error writing to file" msgstr "Fejl ved skrivning til fil" -#: methods/http.cc:905 +#: methods/http.cc:909 msgid "Error writing to the file" msgstr "Fejl ved skrivning til filen" -#: methods/http.cc:919 +#: methods/http.cc:923 msgid "Error reading from server. Remote end closed connection" msgstr "Fejl ved læsning fra serveren. Den fjerne ende lukkede forbindelsen" -#: methods/http.cc:921 +#: methods/http.cc:925 msgid "Error reading from server" msgstr "Fejl ved læsning fra server" -#: methods/http.cc:1194 +#: methods/http.cc:1198 msgid "Bad header data" msgstr "Ugyldige hoved-data" -#: methods/http.cc:1211 methods/http.cc:1266 +#: methods/http.cc:1215 methods/http.cc:1270 msgid "Connection failed" msgstr "Forbindelsen mislykkedes" -#: methods/http.cc:1358 +#: methods/http.cc:1362 msgid "Internal error" msgstr "Intern fejl" @@ -2421,6 +2426,16 @@ msgstr "%c%s... Fejl!" msgid "%c%s... Done" msgstr "%c%s... Færdig" +#: apt-pkg/contrib/progress.cc:179 +msgid "..." +msgstr "" + +#. Print the spinner +#: apt-pkg/contrib/progress.cc:195 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Færdig" + #: apt-pkg/contrib/cmndline.cc:80 #, c-format msgid "Command line option '%c' [from %s] is not known." @@ -2814,7 +2829,7 @@ msgid "" msgstr "" "Pakken %s skal geninstalleres, men jeg kan ikke finde noget arkiv med den." -#: apt-pkg/algorithms.cc:1228 +#: apt-pkg/algorithms.cc:1231 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2822,12 +2837,12 @@ msgstr "" "Fejl, pkgProblemResolver::Resolve satte stopklodser op, det kan skyldes " "tilbageholdte pakker." -#: apt-pkg/algorithms.cc:1230 +#: apt-pkg/algorithms.cc:1233 msgid "Unable to correct problems, you have held broken packages." msgstr "" "Kunne ikke korrigere problemerne, da du har tilbageholdt ødelagte pakker." -#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 +#: apt-pkg/algorithms.cc:1583 apt-pkg/algorithms.cc:1585 msgid "" "Some index files failed to download. They have been ignored, or old ones " "used instead." @@ -3308,7 +3323,7 @@ msgstr "Forbered for modtagelse af løsning" msgid "External solver failed without a proper error message" msgstr "Ekstern problemløser fejlede uden en korrekt fejlbesked" -#: apt-pkg/edsp.cc:557 apt-pkg/edsp.cc:560 apt-pkg/edsp.cc:565 +#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 msgid "Execute external solver" msgstr "Kør ekstern problemløser" diff --git a/po/de.po b/po/de.po index b78679a6b..604696146 100644 --- a/po/de.po +++ b/po/de.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.9.2\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-03-14 08:05+0100\n" +"POT-Creation-Date: 2013-03-24 08:53+0100\n" "PO-Revision-Date: 2012-06-27 10:55+0200\n" "Last-Translator: Holger Wansing \n" "Language-Team: Debian German \n" @@ -648,7 +648,7 @@ msgstr "Abbruch." msgid "Do you want to continue [Y/n]? " msgstr "Möchten Sie fortfahren [J/n]? " -#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1557 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Fehlschlag beim Holen von %s %s\n" @@ -847,7 +847,7 @@ msgstr "" msgid "Calculating upgrade... " msgstr "Paketaktualisierung (Upgrade) wird berechnet... " -#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:116 msgid "Failed" msgstr "Fehlgeschlagen" @@ -1462,7 +1462,7 @@ msgstr "Zeitüberschreitung bei Datenverbindungsaufbau" msgid "Unable to accept connection" msgstr "Verbindung konnte nicht angenommen werden." -#: methods/ftp.cc:872 methods/http.cc:1035 methods/rsh.cc:311 +#: methods/ftp.cc:872 methods/http.cc:1039 methods/rsh.cc:311 msgid "Problem hashing file" msgstr "Problem bei Bestimmung des Hashwertes einer Datei" @@ -1489,61 +1489,66 @@ msgstr "Abfrage" msgid "Unable to invoke " msgstr "Aufruf nicht möglich: " -#: methods/connect.cc:75 +#: methods/connect.cc:76 #, c-format msgid "Connecting to %s (%s)" msgstr "Verbindung mit %s (%s)" -#: methods/connect.cc:86 +#: methods/connect.cc:87 #, c-format msgid "[IP: %s %s]" msgstr "[IP: %s %s]" -#: methods/connect.cc:93 +#: methods/connect.cc:94 #, c-format msgid "Could not create a socket for %s (f=%u t=%u p=%u)" msgstr "Socket für %s konnte nicht erzeugt werden (f=%u t=%u p=%u)." -#: methods/connect.cc:99 +#: methods/connect.cc:100 #, c-format msgid "Cannot initiate the connection to %s:%s (%s)." msgstr "Verbindung mit %s:%s kann nicht aufgebaut werden (%s)." -#: methods/connect.cc:107 +#: methods/connect.cc:108 #, c-format msgid "Could not connect to %s:%s (%s), connection timed out" msgstr "" "Verbindung mit %s:%s konnte nicht aufgebaut werden (%s), eine " "Zeitüberschreitung trat auf." -#: methods/connect.cc:125 +#: methods/connect.cc:126 #, c-format msgid "Could not connect to %s:%s (%s)." msgstr "Verbindung mit %s:%s nicht möglich (%s)" #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:153 methods/rsh.cc:433 +#: methods/connect.cc:154 methods/rsh.cc:433 #, c-format msgid "Connecting to %s" msgstr "Verbindung mit %s" -#: methods/connect.cc:172 methods/connect.cc:191 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format msgid "Could not resolve '%s'" msgstr "»%s« konnte nicht aufgelöst werden." -#: methods/connect.cc:197 +#: methods/connect.cc:205 #, c-format msgid "Temporary failure resolving '%s'" msgstr "Temporärer Fehlschlag beim Auflösen von »%s«" -#: methods/connect.cc:200 +#: methods/connect.cc:209 +#, fuzzy, c-format +msgid "System error resolving '%s:%s' (%s)" +msgstr "Beim Auflösen von »%s:%s« ist etwas Schlimmes passiert (%i - %s)." + +#: methods/connect.cc:211 #, c-format msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "Beim Auflösen von »%s:%s« ist etwas Schlimmes passiert (%i - %s)." -#: methods/connect.cc:247 +#: methods/connect.cc:258 #, c-format msgid "Unable to connect to %s:%s:" msgstr "Verbindung mit %s:%s nicht möglich:" @@ -1617,45 +1622,45 @@ msgstr "" msgid "Unknown date format" msgstr "Unbekanntes Datumsformat" -#: methods/http.cc:818 +#: methods/http.cc:822 msgid "Select failed" msgstr "Auswahl fehlgeschlagen" -#: methods/http.cc:823 +#: methods/http.cc:827 msgid "Connection timed out" msgstr "Zeitüberschreitung bei Verbindung" -#: methods/http.cc:846 +#: methods/http.cc:850 msgid "Error writing to output file" msgstr "Fehler beim Schreiben der Ausgabedatei" -#: methods/http.cc:877 +#: methods/http.cc:881 msgid "Error writing to file" msgstr "Fehler beim Schreiben in Datei" -#: methods/http.cc:905 +#: methods/http.cc:909 msgid "Error writing to the file" msgstr "Fehler beim Schreiben der Datei" -#: methods/http.cc:919 +#: methods/http.cc:923 msgid "Error reading from server. Remote end closed connection" msgstr "" "Fehler beim Lesen vom Server: Verbindung wurde durch den Server auf der " "anderen Seite geschlossen." -#: methods/http.cc:921 +#: methods/http.cc:925 msgid "Error reading from server" msgstr "Fehler beim Lesen vom Server" -#: methods/http.cc:1194 +#: methods/http.cc:1198 msgid "Bad header data" msgstr "Fehlerhafte Kopfzeilendaten" -#: methods/http.cc:1211 methods/http.cc:1266 +#: methods/http.cc:1215 methods/http.cc:1270 msgid "Connection failed" msgstr "Verbindung fehlgeschlagen" -#: methods/http.cc:1358 +#: methods/http.cc:1362 msgid "Internal error" msgstr "Interner Fehler" @@ -2484,6 +2489,16 @@ msgstr "%c%s... Fehler!" msgid "%c%s... Done" msgstr "%c%s... Fertig" +#: apt-pkg/contrib/progress.cc:179 +msgid "..." +msgstr "" + +#. Print the spinner +#: apt-pkg/contrib/progress.cc:195 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Fertig" + #: apt-pkg/contrib/cmndline.cc:80 #, c-format msgid "Command line option '%c' [from %s] is not known." @@ -2890,7 +2905,7 @@ msgstr "" "Das Paket %s muss neu installiert werden, es kann jedoch kein Archiv dafür " "gefunden werden." -#: apt-pkg/algorithms.cc:1228 +#: apt-pkg/algorithms.cc:1231 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2898,13 +2913,13 @@ msgstr "" "Fehler: Unterbrechungen durch pkgProblemResolver::Resolve hervorgerufen; " "dies könnte durch zurückgehaltene Pakete verursacht worden sein." -#: apt-pkg/algorithms.cc:1230 +#: apt-pkg/algorithms.cc:1233 msgid "Unable to correct problems, you have held broken packages." msgstr "" "Probleme können nicht korrigiert werden, Sie haben zurückgehaltene defekte " "Pakete." -#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 +#: apt-pkg/algorithms.cc:1583 apt-pkg/algorithms.cc:1585 msgid "" "Some index files failed to download. They have been ignored, or old ones " "used instead." @@ -3411,7 +3426,7 @@ msgid "External solver failed without a proper error message" msgstr "" "Externer Problemlöser ist ohne ordnungsgemäße Fehlermeldung fehlgeschlagen." -#: apt-pkg/edsp.cc:557 apt-pkg/edsp.cc:560 apt-pkg/edsp.cc:565 +#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 msgid "Execute external solver" msgstr "Externen Problemlöser ausführen" diff --git a/po/dz.po b/po/dz.po index c6eea92bd..dd9947476 100644 --- a/po/dz.po +++ b/po/dz.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: apt_po.pot\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-03-14 08:05+0100\n" +"POT-Creation-Date: 2013-03-24 08:53+0100\n" "PO-Revision-Date: 2006-09-19 09:49+0530\n" "Last-Translator: Kinley Tshering \n" "Language-Team: Dzongkha \n" @@ -645,7 +645,7 @@ msgstr "བར་བཤོལ་འབད།" msgid "Do you want to continue [Y/n]? " msgstr "ཁྱོན་ཀྱི་འཕྲོ་མཐུད་ནི་འབད་ནི་ཨིན་ན་[Y/n]?" -#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1557 #, c-format msgid "Failed to fetch %s %s\n" msgstr "%s %s་ ལེན་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།\n" @@ -828,7 +828,7 @@ msgstr "" msgid "Calculating upgrade... " msgstr "ཡར་བསྐྱེད་རྩིས་བཏོན་དོ་... " -#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:116 msgid "Failed" msgstr "འཐུས་ཤོར་བྱུང་ཡོད།" @@ -1384,7 +1384,7 @@ msgstr "གནད་སྡུད་སོ་ཀེཊི་ མཐུད་ན msgid "Unable to accept connection" msgstr "མཐུད་ལམ་འདི་དང་ལེན་འབད་མ་ཚུགས།" -#: methods/ftp.cc:872 methods/http.cc:1035 methods/rsh.cc:311 +#: methods/ftp.cc:872 methods/http.cc:1039 methods/rsh.cc:311 msgid "Problem hashing file" msgstr "ཡིག་སྣོད་ལུ་་དྲྭ་རྟགས་བཀལ་བའི་བསྒང་དཀའ་ངལ།" @@ -1411,59 +1411,64 @@ msgstr "འདྲི་དཔྱད།" msgid "Unable to invoke " msgstr "ལས་བཀོལ་འབད་མ་ཚུགས།" -#: methods/connect.cc:75 +#: methods/connect.cc:76 #, c-format msgid "Connecting to %s (%s)" msgstr "%s (%s)་ལུ་མཐུད་དོ།" -#: methods/connect.cc:86 +#: methods/connect.cc:87 #, c-format msgid "[IP: %s %s]" msgstr "[IP: %s %s]" -#: methods/connect.cc:93 +#: methods/connect.cc:94 #, c-format msgid "Could not create a socket for %s (f=%u t=%u p=%u)" msgstr "%s (f=%u t=%u p=%u)གི་དོན་ལུ་སོ་ཀེཊི་ཅིག་གསར་བསྐྲུན་འབད་མ་ཚུགས།" -#: methods/connect.cc:99 +#: methods/connect.cc:100 #, c-format msgid "Cannot initiate the connection to %s:%s (%s)." msgstr "%s:%s (%s)ལུ་མཐུད་ལམ་དེ་འགོ་འབྱེད་འབད་མ་ཚུགས།" -#: methods/connect.cc:107 +#: methods/connect.cc:108 #, c-format msgid "Could not connect to %s:%s (%s), connection timed out" msgstr " %s:%s (%s)ལུ་མཐུད་མ་ཚུགས་ མཐུད་ལམ་ངལ་མཚམས།" -#: methods/connect.cc:125 +#: methods/connect.cc:126 #, c-format msgid "Could not connect to %s:%s (%s)." msgstr " %s:%s (%s)ལུ་མཐུད་མ་ཚུགས།" #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:153 methods/rsh.cc:433 +#: methods/connect.cc:154 methods/rsh.cc:433 #, c-format msgid "Connecting to %s" msgstr "%s་ལུ་མཐུད་དོ།" -#: methods/connect.cc:172 methods/connect.cc:191 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format msgid "Could not resolve '%s'" msgstr "'%s'མོས་མཐུན་འབད་མ་ཚུགས།" -#: methods/connect.cc:197 +#: methods/connect.cc:205 #, c-format msgid "Temporary failure resolving '%s'" msgstr "'%s'མོས་མཐུན་འབད་ནི་ལུ་གནས་སྐབས་ཀྱི་འཐུས་ཤོར།" -#: methods/connect.cc:200 +#: methods/connect.cc:209 +#, fuzzy, c-format +msgid "System error resolving '%s:%s' (%s)" +msgstr "'%s:%s' (%i)་མོས་མཐུན་འབདཝ་ད་ངན་པ་ཅིག་བྱུང་ཡི།" + +#: methods/connect.cc:211 #, fuzzy, c-format msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "'%s:%s' (%i)་མོས་མཐུན་འབདཝ་ད་ངན་པ་ཅིག་བྱུང་ཡི།" -#: methods/connect.cc:247 +#: methods/connect.cc:258 #, fuzzy, c-format msgid "Unable to connect to %s:%s:" msgstr "%s %s:ལུ་མཐུད་མ་ཚུགས།" @@ -1532,43 +1537,43 @@ msgstr "འ་ནི་ ཨེཆི་ཊི་ཊི་པི་ སར་བ msgid "Unknown date format" msgstr "མ་ཤེས་པའི་ཚེས་རྩ་སྒྲིག" -#: methods/http.cc:818 +#: methods/http.cc:822 msgid "Select failed" msgstr "སེལ་འཐུ་འཐུས་ཤོར་བྱུང་ཡོད།" -#: methods/http.cc:823 +#: methods/http.cc:827 msgid "Connection timed out" msgstr "མཐུད་ལམ་ངལ་མཚམས་འབད་ཡོད།" -#: methods/http.cc:846 +#: methods/http.cc:850 msgid "Error writing to output file" msgstr "ཨའུཊི་པུཊི་ཡིག་སྣོད་ལུ་འབྲིཝ་ད་འཛོལ་བ།" -#: methods/http.cc:877 +#: methods/http.cc:881 msgid "Error writing to file" msgstr "ཡིག་སྣོད་ལུ་འབྲིཝ་ད་འཛོལ་བ།" -#: methods/http.cc:905 +#: methods/http.cc:909 msgid "Error writing to the file" msgstr "ཡིག་སྣོད་འདི་ལུ་འབྲིཝ་ད་འཛོལ་བ།" -#: methods/http.cc:919 +#: methods/http.cc:923 msgid "Error reading from server. Remote end closed connection" msgstr "སར་བར་ནང་ལས་ལྷག་པའི་བསྒང་འཛོལ་བ། ཐག་རིང་མཇུག་གི་མཐུད་ལམ་དེ་ཁ་བསྡམས།" -#: methods/http.cc:921 +#: methods/http.cc:925 msgid "Error reading from server" msgstr "སར་བར་ནང་ལས་ལྷག་པའི་བསྒང་འཛོལ་བ།" -#: methods/http.cc:1194 +#: methods/http.cc:1198 msgid "Bad header data" msgstr "མགོ་ཡིག་གནད་སྡུད་བྱང་ཉེས།" -#: methods/http.cc:1211 methods/http.cc:1266 +#: methods/http.cc:1215 methods/http.cc:1270 msgid "Connection failed" msgstr "བཐུད་ལམ་འཐུས་ཤོར་བྱུང་ཡོད།" -#: methods/http.cc:1358 +#: methods/http.cc:1362 msgid "Internal error" msgstr "ནང་འཁོད་འཛོལ་བ།" @@ -2385,6 +2390,16 @@ msgstr "%c%s... འཛོལ་བ་!" msgid "%c%s... Done" msgstr "%c%s... འབད་ཚར་ཡོད།" +#: apt-pkg/contrib/progress.cc:179 +msgid "..." +msgstr "" + +#. Print the spinner +#: apt-pkg/contrib/progress.cc:195 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... འབད་ཚར་ཡོད།" + #: apt-pkg/contrib/cmndline.cc:80 #, c-format msgid "Command line option '%c' [from %s] is not known." @@ -2780,7 +2795,7 @@ msgstr "" "ཐུམ་སྒྲིལ་%s་འདི་ལོག་འདི་རང་གཞི་བཙུགས་འབད་དགོཔ་འདུག་ འདི་འབདཝ་ད་འདི་གི་དོན་ལུ་ཡིག་མཛོད་ཅིག་འཚོལ་" "མ་ཐོབ།" -#: apt-pkg/algorithms.cc:1228 +#: apt-pkg/algorithms.cc:1231 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2788,11 +2803,11 @@ msgstr "" "འཛོལ་བ་ pkgProblemResolver::གིས་བཟོ་བཏོན་འབད་ཡོད་པའི་མཚམས་དེ་ཚུ་མོས་མཐུན་བཟོཝ་ཨིན འ་ནི་ཐུམ་" "སྒྲིལ་ཚུ་འཛིན་པའི་རྒྱུ་རྐྱེན་ལས་བརྟེན་ཨིན་པས།" -#: apt-pkg/algorithms.cc:1230 +#: apt-pkg/algorithms.cc:1233 msgid "Unable to correct problems, you have held broken packages." msgstr "དཀའ་ངལ་འདི་ནོར་བཅོས་འབད་མ་ཚུགས་ ཁྱོད་ཀྱི་ཐུམ་སྒྲིལ་ཆད་པ་ཚུ་འཆང་འདི་འདུག" -#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 +#: apt-pkg/algorithms.cc:1583 apt-pkg/algorithms.cc:1585 #, fuzzy msgid "" "Some index files failed to download. They have been ignored, or old ones " @@ -3262,7 +3277,7 @@ msgstr "" msgid "External solver failed without a proper error message" msgstr "" -#: apt-pkg/edsp.cc:557 apt-pkg/edsp.cc:560 apt-pkg/edsp.cc:565 +#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 msgid "Execute external solver" msgstr "" diff --git a/po/el.po b/po/el.po index cadfdda02..f6252ed32 100644 --- a/po/el.po +++ b/po/el.po @@ -16,7 +16,7 @@ msgid "" msgstr "" "Project-Id-Version: apt_po_el\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-03-14 08:05+0100\n" +"POT-Creation-Date: 2013-03-24 08:53+0100\n" "PO-Revision-Date: 2008-08-26 18:25+0300\n" "Last-Translator: Θανάσης Νάτσης \n" "Language-Team: Greek \n" @@ -654,7 +654,7 @@ msgstr "Εγκατάλειψη." msgid "Do you want to continue [Y/n]? " msgstr "Θέλετε να συνεχίσετε [Ν/ο]; " -#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1557 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Αποτυχία ανάκτησης του %s %s\n" @@ -843,7 +843,7 @@ msgstr "" msgid "Calculating upgrade... " msgstr "Υπολογισμός της αναβάθμισης... " -#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:116 msgid "Failed" msgstr "Απέτυχε" @@ -1404,7 +1404,7 @@ msgstr "Λήξη χρόνου σύνδεσης στην υποδοχή δεδο msgid "Unable to accept connection" msgstr "Αδύνατη η αποδοχή συνδέσεων" -#: methods/ftp.cc:872 methods/http.cc:1035 methods/rsh.cc:311 +#: methods/ftp.cc:872 methods/http.cc:1039 methods/rsh.cc:311 msgid "Problem hashing file" msgstr "Πρόβλημα κατά το hashing του αρχείου" @@ -1431,59 +1431,64 @@ msgstr "Επερώτηση" msgid "Unable to invoke " msgstr "Αδύνατη η εκτέλεση" -#: methods/connect.cc:75 +#: methods/connect.cc:76 #, c-format msgid "Connecting to %s (%s)" msgstr "Σύνδεση στο %s (%s)" -#: methods/connect.cc:86 +#: methods/connect.cc:87 #, c-format msgid "[IP: %s %s]" msgstr "[IP: %s %s]" -#: methods/connect.cc:93 +#: methods/connect.cc:94 #, c-format msgid "Could not create a socket for %s (f=%u t=%u p=%u)" msgstr "Αδύνατη η δημιουργία υποδοχής για το %s (f=%u t=%u p=%u)" -#: methods/connect.cc:99 +#: methods/connect.cc:100 #, c-format msgid "Cannot initiate the connection to %s:%s (%s)." msgstr "Αδύνατη η αρχικοποίηση της σύνδεσης στο %s:%s (%s)." -#: methods/connect.cc:107 +#: methods/connect.cc:108 #, c-format msgid "Could not connect to %s:%s (%s), connection timed out" msgstr "Αδύνατη η σύνδεση στο %s:%s (%s), λήξη χρόνου σύνδεσης" -#: methods/connect.cc:125 +#: methods/connect.cc:126 #, c-format msgid "Could not connect to %s:%s (%s)." msgstr "Αδύνατη η σύνδεση στο %s:%s (%s)." #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:153 methods/rsh.cc:433 +#: methods/connect.cc:154 methods/rsh.cc:433 #, c-format msgid "Connecting to %s" msgstr "Σύνδεση στο %s" -#: methods/connect.cc:172 methods/connect.cc:191 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format msgid "Could not resolve '%s'" msgstr "Αδύνατη η εύρεση του '%s'" -#: methods/connect.cc:197 +#: methods/connect.cc:205 #, c-format msgid "Temporary failure resolving '%s'" msgstr "Προσωρινή αποτυχία στην εύρεση του '%s'" -#: methods/connect.cc:200 +#: methods/connect.cc:209 +#, fuzzy, c-format +msgid "System error resolving '%s:%s' (%s)" +msgstr "Κάτι παράξενο συνέβη κατά την εύρεση του '%s:%s' (%i)" + +#: methods/connect.cc:211 #, fuzzy, c-format msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "Κάτι παράξενο συνέβη κατά την εύρεση του '%s:%s' (%i)" -#: methods/connect.cc:247 +#: methods/connect.cc:258 #, fuzzy, c-format msgid "Unable to connect to %s:%s:" msgstr "Αδύνατη η σύνδεση στο %s %s:" @@ -1554,44 +1559,44 @@ msgstr "Ο διακομιστής http δεν υποστηρίζει πλήρω msgid "Unknown date format" msgstr "Άγνωστη μορφή ημερομηνίας" -#: methods/http.cc:818 +#: methods/http.cc:822 msgid "Select failed" msgstr "Η επιλογή απέτυχε" -#: methods/http.cc:823 +#: methods/http.cc:827 msgid "Connection timed out" msgstr "Λήξη χρόνου σύνδεσης" -#: methods/http.cc:846 +#: methods/http.cc:850 msgid "Error writing to output file" msgstr "Σφάλμα στην εγγραφή στο αρχείο εξόδου" -#: methods/http.cc:877 +#: methods/http.cc:881 msgid "Error writing to file" msgstr "Σφάλμα στην εγγραφή στο αρχείο" -#: methods/http.cc:905 +#: methods/http.cc:909 msgid "Error writing to the file" msgstr "Σφάλμα στην εγγραφή στο αρχείο" -#: methods/http.cc:919 +#: methods/http.cc:923 msgid "Error reading from server. Remote end closed connection" msgstr "" "Σφάλμα στην ανάγνωση από το διακομιστή, το άλλο άκρο έκλεισε τη σύνδεση" -#: methods/http.cc:921 +#: methods/http.cc:925 msgid "Error reading from server" msgstr "Σφάλμα στην ανάγνωση από το διακομιστή" -#: methods/http.cc:1194 +#: methods/http.cc:1198 msgid "Bad header data" msgstr "Ελαττωματικά δεδομένα επικεφαλίδας" -#: methods/http.cc:1211 methods/http.cc:1266 +#: methods/http.cc:1215 methods/http.cc:1270 msgid "Connection failed" msgstr "Η σύνδεση απέτυχε" -#: methods/http.cc:1358 +#: methods/http.cc:1362 msgid "Internal error" msgstr "Εσωτερικό Σφάλμα" @@ -2410,6 +2415,16 @@ msgstr "%c%s... Σφάλμα!" msgid "%c%s... Done" msgstr "%c%s... Ολοκληρώθηκε" +#: apt-pkg/contrib/progress.cc:179 +msgid "..." +msgstr "" + +#. Print the spinner +#: apt-pkg/contrib/progress.cc:195 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Ολοκληρώθηκε" + #: apt-pkg/contrib/cmndline.cc:80 #, c-format msgid "Command line option '%c' [from %s] is not known." @@ -2807,7 +2822,7 @@ msgstr "" "Το πακέτο '%s' χρειάζεται να επανεγκατασταθεί, αλλά είναι αδύνατη η εύρεση " "κάποιας κατάλληλης αρχείοθήκης." -#: apt-pkg/algorithms.cc:1228 +#: apt-pkg/algorithms.cc:1231 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2815,11 +2830,11 @@ msgstr "" "Σφάλμα, το pkgProblemResolver::Resolve παρήγαγε διακοπές, αυτό ίσως " "προκλήθηκε από κρατούμενα πακέτα." -#: apt-pkg/algorithms.cc:1230 +#: apt-pkg/algorithms.cc:1233 msgid "Unable to correct problems, you have held broken packages." msgstr "Αδύνατη η διόρθωση προβλημάτων, έχετε κρατούμενα ελαττωματικά πακέτα." -#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 +#: apt-pkg/algorithms.cc:1583 apt-pkg/algorithms.cc:1585 #, fuzzy msgid "" "Some index files failed to download. They have been ignored, or old ones " @@ -3295,7 +3310,7 @@ msgstr "" msgid "External solver failed without a proper error message" msgstr "" -#: apt-pkg/edsp.cc:557 apt-pkg/edsp.cc:560 apt-pkg/edsp.cc:565 +#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 msgid "Execute external solver" msgstr "" diff --git a/po/es.po b/po/es.po index 63e582ec6..56019b62d 100644 --- a/po/es.po +++ b/po/es.po @@ -33,7 +33,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.8.10\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-03-14 08:05+0100\n" +"POT-Creation-Date: 2013-03-24 08:53+0100\n" "PO-Revision-Date: 2011-01-24 11:47+0100\n" "Last-Translator: Javier Fernández-Sanguino Peña \n" "Language-Team: Debian Spanish \n" @@ -697,7 +697,7 @@ msgstr "Abortado." msgid "Do you want to continue [Y/n]? " msgstr "¿Desea continuar [S/n]? " -#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1557 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Imposible obtener %s %s\n" @@ -892,7 +892,7 @@ msgstr "" msgid "Calculating upgrade... " msgstr "Calculando la actualización... " -#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:116 msgid "Failed" msgstr "Falló" @@ -1469,7 +1469,7 @@ msgstr "Expiró conexión a socket de datos" msgid "Unable to accept connection" msgstr "No pude aceptar la conexión" -#: methods/ftp.cc:872 methods/http.cc:1035 methods/rsh.cc:311 +#: methods/ftp.cc:872 methods/http.cc:1039 methods/rsh.cc:311 msgid "Problem hashing file" msgstr "Se produjo un problema al hacer un hash del archivo" @@ -1496,59 +1496,64 @@ msgstr "Consulta" msgid "Unable to invoke " msgstr "No pude invocar " -#: methods/connect.cc:75 +#: methods/connect.cc:76 #, c-format msgid "Connecting to %s (%s)" msgstr "Conectando a %s (%s)" -#: methods/connect.cc:86 +#: methods/connect.cc:87 #, c-format msgid "[IP: %s %s]" msgstr "[IP: %s %s]" -#: methods/connect.cc:93 +#: methods/connect.cc:94 #, c-format msgid "Could not create a socket for %s (f=%u t=%u p=%u)" msgstr "No pude crear un socket para %s (f=%u t=%u p=%u)" -#: methods/connect.cc:99 +#: methods/connect.cc:100 #, c-format msgid "Cannot initiate the connection to %s:%s (%s)." msgstr "No puedo iniciar la conexión a %s:%s (%s)." -#: methods/connect.cc:107 +#: methods/connect.cc:108 #, c-format msgid "Could not connect to %s:%s (%s), connection timed out" msgstr "No pude conectarme a %s:%s (%s), expiró tiempo para conexión" -#: methods/connect.cc:125 +#: methods/connect.cc:126 #, c-format msgid "Could not connect to %s:%s (%s)." msgstr "No pude conectarme a %s:%s (%s)." #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:153 methods/rsh.cc:433 +#: methods/connect.cc:154 methods/rsh.cc:433 #, c-format msgid "Connecting to %s" msgstr "Conectando a %s" -#: methods/connect.cc:172 methods/connect.cc:191 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format msgid "Could not resolve '%s'" msgstr "No se pudo resolver «%s»" -#: methods/connect.cc:197 +#: methods/connect.cc:205 #, c-format msgid "Temporary failure resolving '%s'" msgstr "Fallo temporal al resolver «%s»" -#: methods/connect.cc:200 +#: methods/connect.cc:209 +#, fuzzy, c-format +msgid "System error resolving '%s:%s' (%s)" +msgstr "Algo raro pasó al resolver «%s:%s» (%i - %s)" + +#: methods/connect.cc:211 #, c-format msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "Algo raro pasó al resolver «%s:%s» (%i - %s)" -#: methods/connect.cc:247 +#: methods/connect.cc:258 #, c-format msgid "Unable to connect to %s:%s:" msgstr "No se pudo conectar a %s:%s:" @@ -1617,43 +1622,43 @@ msgstr "Éste servidor de http tiene el soporte de alcance roto" msgid "Unknown date format" msgstr "Formato de fecha desconocido" -#: methods/http.cc:818 +#: methods/http.cc:822 msgid "Select failed" msgstr "Falló la selección" -#: methods/http.cc:823 +#: methods/http.cc:827 msgid "Connection timed out" msgstr "Expiró la conexión" -#: methods/http.cc:846 +#: methods/http.cc:850 msgid "Error writing to output file" msgstr "Error escribiendo al archivo de salida" -#: methods/http.cc:877 +#: methods/http.cc:881 msgid "Error writing to file" msgstr "Error escribiendo a archivo" -#: methods/http.cc:905 +#: methods/http.cc:909 msgid "Error writing to the file" msgstr "Error escribiendo al archivo" -#: methods/http.cc:919 +#: methods/http.cc:923 msgid "Error reading from server. Remote end closed connection" msgstr "Error leyendo del servidor, el lado remoto cerró la conexión." -#: methods/http.cc:921 +#: methods/http.cc:925 msgid "Error reading from server" msgstr "Error leyendo del servidor" -#: methods/http.cc:1194 +#: methods/http.cc:1198 msgid "Bad header data" msgstr "Mala cabecera Data" -#: methods/http.cc:1211 methods/http.cc:1266 +#: methods/http.cc:1215 methods/http.cc:1270 msgid "Connection failed" msgstr "Fallo la conexión" -#: methods/http.cc:1358 +#: methods/http.cc:1362 msgid "Internal error" msgstr "Error interno" @@ -2483,6 +2488,16 @@ msgstr "%c%s... ¡Error!" msgid "%c%s... Done" msgstr "%c%s... Hecho" +#: apt-pkg/contrib/progress.cc:179 +msgid "..." +msgstr "" + +#. Print the spinner +#: apt-pkg/contrib/progress.cc:195 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Hecho" + #: apt-pkg/contrib/cmndline.cc:80 #, c-format msgid "Command line option '%c' [from %s] is not known." @@ -2887,7 +2902,7 @@ msgstr "" "El paquete %s necesita ser reinstalado, pero no se encuentra un archivo para " "éste." -#: apt-pkg/algorithms.cc:1228 +#: apt-pkg/algorithms.cc:1231 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2895,12 +2910,12 @@ msgstr "" "Error, pkgProblemResolver::Resolve generó cortes, esto puede haber sido " "causado por paquetes retenidos." -#: apt-pkg/algorithms.cc:1230 +#: apt-pkg/algorithms.cc:1233 msgid "Unable to correct problems, you have held broken packages." msgstr "" "No se pudieron corregir los problemas, usted ha retenido paquetes rotos." -#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 +#: apt-pkg/algorithms.cc:1583 apt-pkg/algorithms.cc:1585 #, fuzzy msgid "" "Some index files failed to download. They have been ignored, or old ones " @@ -3394,7 +3409,7 @@ msgstr "" msgid "External solver failed without a proper error message" msgstr "" -#: apt-pkg/edsp.cc:557 apt-pkg/edsp.cc:560 apt-pkg/edsp.cc:565 +#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 msgid "Execute external solver" msgstr "" diff --git a/po/eu.po b/po/eu.po index 1bec8b578..4809d7232 100644 --- a/po/eu.po +++ b/po/eu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: apt_po_eu\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-03-14 08:05+0100\n" +"POT-Creation-Date: 2013-03-24 08:53+0100\n" "PO-Revision-Date: 2009-05-17 00:41+0200\n" "Last-Translator: Piarres Beobide \n" "Language-Team: Euskara \n" @@ -635,7 +635,7 @@ msgstr "Abortatu." msgid "Do you want to continue [Y/n]? " msgstr "Aurrera jarraitu nahi al duzu [B/e]? " -#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1557 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Ezin da lortu %s %s\n" @@ -829,7 +829,7 @@ msgstr "" msgid "Calculating upgrade... " msgstr "Berriketak kalkulatzen... " -#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:116 msgid "Failed" msgstr "Huts egin du" @@ -1391,7 +1391,7 @@ msgstr "Datu-socket konexioak denbora muga gainditu du" msgid "Unable to accept connection" msgstr "Ezin da konexioa onartu" -#: methods/ftp.cc:872 methods/http.cc:1035 methods/rsh.cc:311 +#: methods/ftp.cc:872 methods/http.cc:1039 methods/rsh.cc:311 msgid "Problem hashing file" msgstr "Arazoa fitxategiaren hash egitean" @@ -1418,60 +1418,65 @@ msgstr "Kontsulta" msgid "Unable to invoke " msgstr "Ezin da deitu " -#: methods/connect.cc:75 +#: methods/connect.cc:76 #, c-format msgid "Connecting to %s (%s)" msgstr "Konektatzen -> %s.(%s)" -#: methods/connect.cc:86 +#: methods/connect.cc:87 #, c-format msgid "[IP: %s %s]" msgstr "[IP: %s %s]" -#: methods/connect.cc:93 +#: methods/connect.cc:94 #, c-format msgid "Could not create a socket for %s (f=%u t=%u p=%u)" msgstr "Ezin izan da socket-ik sortu honentzat: %s (f=%u t=%u p=%u)" -#: methods/connect.cc:99 +#: methods/connect.cc:100 #, c-format msgid "Cannot initiate the connection to %s:%s (%s)." msgstr "Ezin izan da konexioa hasi -> %s:%s (%s)." -#: methods/connect.cc:107 +#: methods/connect.cc:108 #, c-format msgid "Could not connect to %s:%s (%s), connection timed out" msgstr "" "Ezin izan da konektatu -> %s:%s (%s). Konexioak denbora muga gainditu du" -#: methods/connect.cc:125 +#: methods/connect.cc:126 #, c-format msgid "Could not connect to %s:%s (%s)." msgstr "Ezin izan da konektatu -> %s:%s (%s)" #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:153 methods/rsh.cc:433 +#: methods/connect.cc:154 methods/rsh.cc:433 #, c-format msgid "Connecting to %s" msgstr "Konektatzen -> %s..." -#: methods/connect.cc:172 methods/connect.cc:191 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format msgid "Could not resolve '%s'" msgstr "Ezin izan da '%s' ebatzi" -#: methods/connect.cc:197 +#: methods/connect.cc:205 #, c-format msgid "Temporary failure resolving '%s'" msgstr "Aldi baterako akatsa '%s' ebaztean" -#: methods/connect.cc:200 +#: methods/connect.cc:209 +#, fuzzy, c-format +msgid "System error resolving '%s:%s' (%s)" +msgstr "Zerbait arraroa pasatu da '%s:%s' (%i) ebaztean" + +#: methods/connect.cc:211 #, fuzzy, c-format msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "Zerbait arraroa pasatu da '%s:%s' (%i) ebaztean" -#: methods/connect.cc:247 +#: methods/connect.cc:258 #, fuzzy, c-format msgid "Unable to connect to %s:%s:" msgstr "Ezin da konektatu -> %s %s:" @@ -1538,43 +1543,43 @@ msgstr "http zerbitzariak barruti onarpena apurturik du" msgid "Unknown date format" msgstr "Datu formatu ezezaguna" -#: methods/http.cc:818 +#: methods/http.cc:822 msgid "Select failed" msgstr "Hautapenak huts egin du" -#: methods/http.cc:823 +#: methods/http.cc:827 msgid "Connection timed out" msgstr "Konexioaren denbora muga gainditu da" -#: methods/http.cc:846 +#: methods/http.cc:850 msgid "Error writing to output file" msgstr "Errorea irteerako fitxategian idaztean" -#: methods/http.cc:877 +#: methods/http.cc:881 msgid "Error writing to file" msgstr "Errorea fitxategian idaztean" -#: methods/http.cc:905 +#: methods/http.cc:909 msgid "Error writing to the file" msgstr "Errorea fitxategian idaztean" -#: methods/http.cc:919 +#: methods/http.cc:923 msgid "Error reading from server. Remote end closed connection" msgstr "Errorea zerbitzaritik irakurtzen Urrunetik amaitutako konexio itxiera" -#: methods/http.cc:921 +#: methods/http.cc:925 msgid "Error reading from server" msgstr "Errorea zerbitzaritik irakurtzean" -#: methods/http.cc:1194 +#: methods/http.cc:1198 msgid "Bad header data" msgstr "Goiburu data gaizki dago" -#: methods/http.cc:1211 methods/http.cc:1266 +#: methods/http.cc:1215 methods/http.cc:1270 msgid "Connection failed" msgstr "Konexioak huts egin du" -#: methods/http.cc:1358 +#: methods/http.cc:1362 msgid "Internal error" msgstr "Barne errorea" @@ -2384,6 +2389,16 @@ msgstr "%c%s... Errorea!" msgid "%c%s... Done" msgstr "%c%s... Eginda" +#: apt-pkg/contrib/progress.cc:179 +msgid "..." +msgstr "" + +#. Print the spinner +#: apt-pkg/contrib/progress.cc:195 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Eginda" + #: apt-pkg/contrib/cmndline.cc:80 #, c-format msgid "Command line option '%c' [from %s] is not known." @@ -2780,7 +2795,7 @@ msgid "" msgstr "" "%s paketea berriro instalatu behar da, baina ezin dut artxiborik aurkitu." -#: apt-pkg/algorithms.cc:1228 +#: apt-pkg/algorithms.cc:1231 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2788,11 +2803,11 @@ msgstr "" "Errorea: pkgProblemResolver::Resolve. Etenak sortu ditu, beharbada " "atxikitako paketeek eraginda." -#: apt-pkg/algorithms.cc:1230 +#: apt-pkg/algorithms.cc:1233 msgid "Unable to correct problems, you have held broken packages." msgstr "Ezin dira arazoak konpondu; hautsitako paketeak atxiki dituzu." -#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 +#: apt-pkg/algorithms.cc:1583 apt-pkg/algorithms.cc:1585 #, fuzzy msgid "" "Some index files failed to download. They have been ignored, or old ones " @@ -3260,7 +3275,7 @@ msgstr "" msgid "External solver failed without a proper error message" msgstr "" -#: apt-pkg/edsp.cc:557 apt-pkg/edsp.cc:560 apt-pkg/edsp.cc:565 +#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 msgid "Execute external solver" msgstr "" diff --git a/po/fi.po b/po/fi.po index 849bfc2f6..53d63dbd0 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 \n" -"POT-Creation-Date: 2013-03-14 08:05+0100\n" +"POT-Creation-Date: 2013-03-24 08:53+0100\n" "PO-Revision-Date: 2008-12-11 14:52+0200\n" "Last-Translator: Tapio Lehtonen \n" "Language-Team: Finnish \n" @@ -632,7 +632,7 @@ msgstr "Keskeytä." msgid "Do you want to continue [Y/n]? " msgstr "Haluatko jatkaa [K/e]? " -#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1557 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Tiedoston %s nouto ei onnistunut %s\n" @@ -826,7 +826,7 @@ msgstr "" msgid "Calculating upgrade... " msgstr "Käsitellään päivitystä ... " -#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:116 msgid "Failed" msgstr "Ei onnistunut" @@ -1382,7 +1382,7 @@ msgstr "Pistokkeen kytkeminen aikakatkaistiin" msgid "Unable to accept connection" msgstr "Yhteyttä ei voitu hyväksyä" -#: methods/ftp.cc:872 methods/http.cc:1035 methods/rsh.cc:311 +#: methods/ftp.cc:872 methods/http.cc:1039 methods/rsh.cc:311 msgid "Problem hashing file" msgstr "Pulmia tiedoston hajautuksessa" @@ -1409,59 +1409,64 @@ msgstr "Kysely" msgid "Unable to invoke " msgstr "Käynnistys ei onnistu" -#: methods/connect.cc:75 +#: methods/connect.cc:76 #, c-format msgid "Connecting to %s (%s)" msgstr "Avataan yhteys %s (%s)" -#: methods/connect.cc:86 +#: methods/connect.cc:87 #, c-format msgid "[IP: %s %s]" msgstr "[IP: %s %s]" -#: methods/connect.cc:93 +#: methods/connect.cc:94 #, c-format msgid "Could not create a socket for %s (f=%u t=%u p=%u)" msgstr "Pistokeen luonti ei onnistu %s (f=%u t=%u p=%u)" -#: methods/connect.cc:99 +#: methods/connect.cc:100 #, c-format msgid "Cannot initiate the connection to %s:%s (%s)." msgstr "Yhteyden %s avaus ei onnistu: %s (%s)." -#: methods/connect.cc:107 +#: methods/connect.cc:108 #, c-format msgid "Could not connect to %s:%s (%s), connection timed out" msgstr "Yhteyttä %s ei voitu muodostaa: %s (%s), yhteys aikakatkaistiin" -#: methods/connect.cc:125 +#: methods/connect.cc:126 #, c-format msgid "Could not connect to %s:%s (%s)." msgstr "Yhteyttä %s ei voitu muodostaa: %s (%s)" #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:153 methods/rsh.cc:433 +#: methods/connect.cc:154 methods/rsh.cc:433 #, c-format msgid "Connecting to %s" msgstr "Avataan yhteys %s" -#: methods/connect.cc:172 methods/connect.cc:191 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format msgid "Could not resolve '%s'" msgstr "Nimeä \"%s\" ei voitu selvittää" -#: methods/connect.cc:197 +#: methods/connect.cc:205 #, c-format msgid "Temporary failure resolving '%s'" msgstr "Tilapäinen häiriö selvitettäessä \"%s\"" -#: methods/connect.cc:200 +#: methods/connect.cc:209 +#, fuzzy, c-format +msgid "System error resolving '%s:%s' (%s)" +msgstr "Jotain kenkkua tapahtui selvitettäessä \"%s: %s\" (%i)" + +#: methods/connect.cc:211 #, fuzzy, c-format msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "Jotain kenkkua tapahtui selvitettäessä \"%s: %s\" (%i)" -#: methods/connect.cc:247 +#: methods/connect.cc:258 #, fuzzy, c-format msgid "Unable to connect to %s:%s:" msgstr "Ei ole mahdollista muodostaa yhteyttä %s %s:" @@ -1530,43 +1535,43 @@ msgstr "HTTP-palvelimen arvoaluetuki on rikki" msgid "Unknown date format" msgstr "Tuntematon päiväysmuoto" -#: methods/http.cc:818 +#: methods/http.cc:822 msgid "Select failed" msgstr "Select ei toiminut" -#: methods/http.cc:823 +#: methods/http.cc:827 msgid "Connection timed out" msgstr "Yhteys aikakatkaistiin" -#: methods/http.cc:846 +#: methods/http.cc:850 msgid "Error writing to output file" msgstr "Tapahtui virhe kirjoitettaessa tulostustiedostoon" -#: methods/http.cc:877 +#: methods/http.cc:881 msgid "Error writing to file" msgstr "Tapahtui virhe kirjoitettaessa tiedostoon" -#: methods/http.cc:905 +#: methods/http.cc:909 msgid "Error writing to the file" msgstr "Tapahtui virhe kirjoitettaessa tiedostoon" -#: methods/http.cc:919 +#: methods/http.cc:923 msgid "Error reading from server. Remote end closed connection" msgstr "Tapahtui virhe luettaessa palvelimelta. Etäpää sulki yhteyden" -#: methods/http.cc:921 +#: methods/http.cc:925 msgid "Error reading from server" msgstr "Tapahtui virhe luettaessa palvelimelta" -#: methods/http.cc:1194 +#: methods/http.cc:1198 msgid "Bad header data" msgstr "Virheellinen otsikkotieto" -#: methods/http.cc:1211 methods/http.cc:1266 +#: methods/http.cc:1215 methods/http.cc:1270 msgid "Connection failed" msgstr "Yhteys ei toiminut" -#: methods/http.cc:1358 +#: methods/http.cc:1362 msgid "Internal error" msgstr "Sisäinen virhe" @@ -2380,6 +2385,16 @@ msgstr "%c%s... Virhe!" msgid "%c%s... Done" msgstr "%c%s... Valmis" +#: apt-pkg/contrib/progress.cc:179 +msgid "..." +msgstr "" + +#. Print the spinner +#: apt-pkg/contrib/progress.cc:195 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Valmis" + #: apt-pkg/contrib/cmndline.cc:80 #, c-format msgid "Command line option '%c' [from %s] is not known." @@ -2770,7 +2785,7 @@ msgid "" "The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "Paketti %s olisi asennettava uudelleen, mutta sen arkistoa ei löydy." -#: apt-pkg/algorithms.cc:1228 +#: apt-pkg/algorithms.cc:1231 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2778,11 +2793,11 @@ msgstr "" "Virhe, pkgProblemResolver::Resolve tuotti katkoja, syynä voi olla pysytetyt " "paketit." -#: apt-pkg/algorithms.cc:1230 +#: apt-pkg/algorithms.cc:1233 msgid "Unable to correct problems, you have held broken packages." msgstr "Pulmia ei voi korjata, rikkinäisiä paketteja on pysytetty." -#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 +#: apt-pkg/algorithms.cc:1583 apt-pkg/algorithms.cc:1585 #, fuzzy msgid "" "Some index files failed to download. They have been ignored, or old ones " @@ -3253,7 +3268,7 @@ msgstr "" msgid "External solver failed without a proper error message" msgstr "" -#: apt-pkg/edsp.cc:557 apt-pkg/edsp.cc:560 apt-pkg/edsp.cc:565 +#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 msgid "Execute external solver" msgstr "" diff --git a/po/fr.po b/po/fr.po index 8407d3231..4d077d87a 100644 --- a/po/fr.po +++ b/po/fr.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: fr\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-03-14 08:05+0100\n" +"POT-Creation-Date: 2013-03-24 08:53+0100\n" "PO-Revision-Date: 2012-06-25 19:58+0200\n" "Last-Translator: Christian Perrier \n" "Language-Team: French \n" @@ -648,7 +648,7 @@ msgstr "Annulation." msgid "Do you want to continue [Y/n]? " msgstr "Souhaitez-vous continuer [O/n] ? " -#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1557 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Impossible de récupérer %s %s\n" @@ -851,7 +851,7 @@ msgstr "" msgid "Calculating upgrade... " msgstr "Calcul de la mise à jour... " -#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:116 msgid "Failed" msgstr "Échec" @@ -1464,7 +1464,7 @@ msgstr "Délai de connexion au port de données dépassé" msgid "Unable to accept connection" msgstr "Impossible d'accepter une connexion" -#: methods/ftp.cc:872 methods/http.cc:1035 methods/rsh.cc:311 +#: methods/ftp.cc:872 methods/http.cc:1039 methods/rsh.cc:311 msgid "Problem hashing file" msgstr "Problème de hachage du fichier" @@ -1491,61 +1491,68 @@ msgstr "Requête" msgid "Unable to invoke " msgstr "Impossible d'invoquer " -#: methods/connect.cc:75 +#: methods/connect.cc:76 #, c-format msgid "Connecting to %s (%s)" msgstr "Connexion à %s (%s)" -#: methods/connect.cc:86 +#: methods/connect.cc:87 #, c-format msgid "[IP: %s %s]" msgstr "[IP : %s %s]" -#: methods/connect.cc:93 +#: methods/connect.cc:94 #, c-format msgid "Could not create a socket for %s (f=%u t=%u p=%u)" msgstr "Impossible de créer de connexion pour %s (f=%u t=%u p=%u)" -#: methods/connect.cc:99 +#: methods/connect.cc:100 #, c-format msgid "Cannot initiate the connection to %s:%s (%s)." msgstr "Impossible d'initialiser la connexion à %s: %s (%s)." -#: methods/connect.cc:107 +#: methods/connect.cc:108 #, c-format msgid "Could not connect to %s:%s (%s), connection timed out" msgstr "Connexion à %s: %s (%s) impossible, délai de connexion dépassé" -#: methods/connect.cc:125 +#: methods/connect.cc:126 #, c-format msgid "Could not connect to %s:%s (%s)." msgstr "Connexion à %s: %s (%s) impossible." #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:153 methods/rsh.cc:433 +#: methods/connect.cc:154 methods/rsh.cc:433 #, c-format msgid "Connecting to %s" msgstr "Connexion à %s" -#: methods/connect.cc:172 methods/connect.cc:191 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format msgid "Could not resolve '%s'" msgstr "Ne parvient pas à résoudre « %s »" -#: methods/connect.cc:197 +#: methods/connect.cc:205 #, c-format msgid "Temporary failure resolving '%s'" msgstr "Erreur temporaire de résolution de « %s »" -#: methods/connect.cc:200 +#: methods/connect.cc:209 +#, fuzzy, c-format +msgid "System error resolving '%s:%s' (%s)" +msgstr "" +"Quelque chose d'imprévisible est survenu lors de la détermination de « %s:" +"%s » (%i - %s)" + +#: methods/connect.cc:211 #, c-format msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "" "Quelque chose d'imprévisible est survenu lors de la détermination de « %s:" "%s » (%i - %s)" -#: methods/connect.cc:247 +#: methods/connect.cc:258 #, c-format msgid "Unable to connect to %s:%s:" msgstr "Impossible de se connecter à %s:%s :" @@ -1615,43 +1622,43 @@ msgstr "Ce serveur http possède un support des limites non-valide" msgid "Unknown date format" msgstr "Format de date inconnu" -#: methods/http.cc:818 +#: methods/http.cc:822 msgid "Select failed" msgstr "Sélection défaillante" -#: methods/http.cc:823 +#: methods/http.cc:827 msgid "Connection timed out" msgstr "Délai de connexion dépassé" -#: methods/http.cc:846 +#: methods/http.cc:850 msgid "Error writing to output file" msgstr "Erreur d'écriture du fichier de sortie" -#: methods/http.cc:877 +#: methods/http.cc:881 msgid "Error writing to file" msgstr "Erreur d'écriture sur un fichier" -#: methods/http.cc:905 +#: methods/http.cc:909 msgid "Error writing to the file" msgstr "Erreur d'écriture sur le fichier" -#: methods/http.cc:919 +#: methods/http.cc:923 msgid "Error reading from server. Remote end closed connection" msgstr "Erreur de lecture depuis le serveur distant et clôture de la connexion" -#: methods/http.cc:921 +#: methods/http.cc:925 msgid "Error reading from server" msgstr "Erreur de lecture du serveur" -#: methods/http.cc:1194 +#: methods/http.cc:1198 msgid "Bad header data" msgstr "Mauvais en-tête de donnée" -#: methods/http.cc:1211 methods/http.cc:1266 +#: methods/http.cc:1215 methods/http.cc:1270 msgid "Connection failed" msgstr "Échec de la connexion" -#: methods/http.cc:1358 +#: methods/http.cc:1362 msgid "Internal error" msgstr "Erreur interne" @@ -2482,6 +2489,16 @@ msgstr "%c%s... Erreur !" msgid "%c%s... Done" msgstr "%c%s... Fait" +#: apt-pkg/contrib/progress.cc:179 +msgid "..." +msgstr "" + +#. Print the spinner +#: apt-pkg/contrib/progress.cc:195 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Fait" + #: apt-pkg/contrib/cmndline.cc:80 #, c-format msgid "Command line option '%c' [from %s] is not known." @@ -2896,7 +2913,7 @@ msgstr "" "Le paquet %s doit être réinstallé, mais il est impossible de trouver son " "archive." -#: apt-pkg/algorithms.cc:1228 +#: apt-pkg/algorithms.cc:1231 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2904,13 +2921,13 @@ msgstr "" "Erreur, pkgProblem::Resolve a généré des ruptures, ce qui a pu être causé " "par les paquets devant être gardés en l'état." -#: apt-pkg/algorithms.cc:1230 +#: apt-pkg/algorithms.cc:1233 msgid "Unable to correct problems, you have held broken packages." msgstr "" "Impossible de corriger les problèmes, des paquets défectueux sont en mode " "« garder en l'état »." -#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 +#: apt-pkg/algorithms.cc:1583 apt-pkg/algorithms.cc:1585 msgid "" "Some index files failed to download. They have been ignored, or old ones " "used instead." @@ -3420,7 +3437,7 @@ msgstr "Préparation à la réception de la solution" msgid "External solver failed without a proper error message" msgstr "Échec du solveur externe sans message d'erreur adapté" -#: apt-pkg/edsp.cc:557 apt-pkg/edsp.cc:560 apt-pkg/edsp.cc:565 +#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 msgid "Execute external solver" msgstr "Exécu tion du solveur externe" diff --git a/po/gl.po b/po/gl.po index 15d867bc7..9bf5a9db1 100644 --- a/po/gl.po +++ b/po/gl.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: apt_po_gl\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-03-14 08:05+0100\n" +"POT-Creation-Date: 2013-03-24 08:53+0100\n" "PO-Revision-Date: 2011-05-12 15:28+0100\n" "Last-Translator: Miguel Anxo Bouzada \n" "Language-Team: galician \n" @@ -639,7 +639,7 @@ msgstr "Interromper." msgid "Do you want to continue [Y/n]? " msgstr "Quere continuar [S/n]? " -#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1557 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Non foi posíbel obter %s %s\n" @@ -836,7 +836,7 @@ msgstr "" msgid "Calculating upgrade... " msgstr "Calculando a anovación... " -#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:116 msgid "Failed" msgstr "Fallou" @@ -1415,7 +1415,7 @@ msgstr "A conexión do socket de datos esgotou o tempo" msgid "Unable to accept connection" msgstr "Non é posíbel aceptar a conexión" -#: methods/ftp.cc:872 methods/http.cc:1035 methods/rsh.cc:311 +#: methods/ftp.cc:872 methods/http.cc:1039 methods/rsh.cc:311 msgid "Problem hashing file" msgstr "Xurdiu un problema ao calcular o hash do ficheiro" @@ -1442,59 +1442,64 @@ msgstr "Petición" msgid "Unable to invoke " msgstr "Non é posíbel chamar a " -#: methods/connect.cc:75 +#: methods/connect.cc:76 #, c-format msgid "Connecting to %s (%s)" msgstr "Conectando a %s (%s)" -#: methods/connect.cc:86 +#: methods/connect.cc:87 #, c-format msgid "[IP: %s %s]" msgstr "[IP: %s %s]" -#: methods/connect.cc:93 +#: methods/connect.cc:94 #, c-format msgid "Could not create a socket for %s (f=%u t=%u p=%u)" msgstr "Non foi posíbel crear un socket para %s (f=%u t=%u p=%u)" -#: methods/connect.cc:99 +#: methods/connect.cc:100 #, c-format msgid "Cannot initiate the connection to %s:%s (%s)." msgstr "Non é posíbel iniciar a conexión a %s:%s (%s)." -#: methods/connect.cc:107 +#: methods/connect.cc:108 #, c-format msgid "Could not connect to %s:%s (%s), connection timed out" msgstr "Non foi posíbel conectar a %s:%s (%s), a conexión esgotou o tempo" -#: methods/connect.cc:125 +#: methods/connect.cc:126 #, c-format msgid "Could not connect to %s:%s (%s)." msgstr "Non foi posíbel conectar a %s:%s (%s)." #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:153 methods/rsh.cc:433 +#: methods/connect.cc:154 methods/rsh.cc:433 #, c-format msgid "Connecting to %s" msgstr "Conectando a %s" -#: methods/connect.cc:172 methods/connect.cc:191 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format msgid "Could not resolve '%s'" msgstr "Non foi posíbel atopar «%s»" -#: methods/connect.cc:197 +#: methods/connect.cc:205 #, c-format msgid "Temporary failure resolving '%s'" msgstr "Produciuse un fallo temporal ao buscar «%s»" -#: methods/connect.cc:200 +#: methods/connect.cc:209 +#, fuzzy, c-format +msgid "System error resolving '%s:%s' (%s)" +msgstr "Aconteceu algo malo, buscando «%s:%s» (%i - %s)" + +#: methods/connect.cc:211 #, c-format msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "Aconteceu algo malo, buscando «%s:%s» (%i - %s)" -#: methods/connect.cc:247 +#: methods/connect.cc:258 #, c-format msgid "Unable to connect to %s:%s:" msgstr "Non é posíbel conectar %s:%s:" @@ -1565,44 +1570,44 @@ msgstr "Este servidor HTTP ten a compatibilidade de rangos estragada" msgid "Unknown date format" msgstr "Formato de datos descoñecido" -#: methods/http.cc:818 +#: methods/http.cc:822 msgid "Select failed" msgstr "Fallou a chamada a select" -#: methods/http.cc:823 +#: methods/http.cc:827 msgid "Connection timed out" msgstr "A conexión esgotou o tempo" -#: methods/http.cc:846 +#: methods/http.cc:850 msgid "Error writing to output file" msgstr "Produciuse un erro ao escribir no ficheiro de saída" -#: methods/http.cc:877 +#: methods/http.cc:881 msgid "Error writing to file" msgstr "Produciuse un erro ao escribir nun ficheiro" -#: methods/http.cc:905 +#: methods/http.cc:909 msgid "Error writing to the file" msgstr "Produciuse un erro ao escribir no ficheiro" -#: methods/http.cc:919 +#: methods/http.cc:923 msgid "Error reading from server. Remote end closed connection" msgstr "" "Produciuse un erro ao ler do servidor. O extremo remoto pechou a conexión" -#: methods/http.cc:921 +#: methods/http.cc:925 msgid "Error reading from server" msgstr "Produciuse un erro ao ler do servidor" -#: methods/http.cc:1194 +#: methods/http.cc:1198 msgid "Bad header data" msgstr "Datos da cabeceira incorrectos" -#: methods/http.cc:1211 methods/http.cc:1266 +#: methods/http.cc:1215 methods/http.cc:1270 msgid "Connection failed" msgstr "Produciuse un fallo na conexión" -#: methods/http.cc:1358 +#: methods/http.cc:1362 msgid "Internal error" msgstr "Produciuse un erro interno" @@ -2427,6 +2432,16 @@ msgstr "%c%s... Erro!" msgid "%c%s... Done" msgstr "%c%s... Feito" +#: apt-pkg/contrib/progress.cc:179 +msgid "..." +msgstr "" + +#. Print the spinner +#: apt-pkg/contrib/progress.cc:195 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Feito" + #: apt-pkg/contrib/cmndline.cc:80 #, c-format msgid "Command line option '%c' [from %s] is not known." @@ -2829,7 +2844,7 @@ msgstr "" "O paquete %s ten que ser reinstalado, mais non é posíbel atopar o seu " "arquivo." -#: apt-pkg/algorithms.cc:1228 +#: apt-pkg/algorithms.cc:1231 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2837,11 +2852,11 @@ msgstr "" "Erro, pkgProblemResolver::Resolve xerou interrupcións, isto pode estar " "causado por paquetes retidos." -#: apt-pkg/algorithms.cc:1230 +#: apt-pkg/algorithms.cc:1233 msgid "Unable to correct problems, you have held broken packages." msgstr "Non é posíbel solucionar os problemas, ten retidos paquetes rotos." -#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 +#: apt-pkg/algorithms.cc:1583 apt-pkg/algorithms.cc:1585 #, fuzzy msgid "" "Some index files failed to download. They have been ignored, or old ones " @@ -3335,7 +3350,7 @@ msgstr "" msgid "External solver failed without a proper error message" msgstr "" -#: apt-pkg/edsp.cc:557 apt-pkg/edsp.cc:560 apt-pkg/edsp.cc:565 +#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 msgid "Execute external solver" msgstr "" diff --git a/po/hu.po b/po/hu.po index d526ceb40..325d396cd 100644 --- a/po/hu.po +++ b/po/hu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: apt trunk\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-03-14 08:05+0100\n" +"POT-Creation-Date: 2013-03-24 08:53+0100\n" "PO-Revision-Date: 2012-06-25 17:09+0200\n" "Last-Translator: Gabor Kelemen \n" "Language-Team: Hungarian \n" @@ -628,7 +628,7 @@ msgstr "Megszakítva." msgid "Do you want to continue [Y/n]? " msgstr "Folytatni akarja [I/n]? " -#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1557 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Sikertelen letöltés: %s %s\n" @@ -826,7 +826,7 @@ msgstr "" msgid "Calculating upgrade... " msgstr "Frissítés kiszámítása... " -#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:116 msgid "Failed" msgstr "Sikertelen" @@ -1426,7 +1426,7 @@ msgstr "Az adatfoglalathoz kapcsolódás túllépte az időkorlátot" msgid "Unable to accept connection" msgstr "Nem lehet elfogadni a kapcsolatot" -#: methods/ftp.cc:872 methods/http.cc:1035 methods/rsh.cc:311 +#: methods/ftp.cc:872 methods/http.cc:1039 methods/rsh.cc:311 msgid "Problem hashing file" msgstr "Probléma a fájl hash értékének meghatározásakor" @@ -1453,59 +1453,64 @@ msgstr "Lekérdezés" msgid "Unable to invoke " msgstr "Nem lehet meghívni " -#: methods/connect.cc:75 +#: methods/connect.cc:76 #, c-format msgid "Connecting to %s (%s)" msgstr "Csatlakozás: %s (%s)" -#: methods/connect.cc:86 +#: methods/connect.cc:87 #, c-format msgid "[IP: %s %s]" msgstr "[IP: %s %s]" -#: methods/connect.cc:93 +#: methods/connect.cc:94 #, c-format msgid "Could not create a socket for %s (f=%u t=%u p=%u)" msgstr "Foglalat létrehozása sikertelen ehhez: %s (f=%u t=%u p=%u)" -#: methods/connect.cc:99 +#: methods/connect.cc:100 #, c-format msgid "Cannot initiate the connection to %s:%s (%s)." msgstr "Kapcsolat létrehozása sikertelen ehhez: %s: %s (%s)." -#: methods/connect.cc:107 +#: methods/connect.cc:108 #, c-format msgid "Could not connect to %s:%s (%s), connection timed out" msgstr "Időtúllépés miatt nem lehet kapcsolódni a következőhöz: %s: %s (%s)" -#: methods/connect.cc:125 +#: methods/connect.cc:126 #, c-format msgid "Could not connect to %s:%s (%s)." msgstr "Nem lehet kapcsolódni ehhez: %s: %s (%s)." #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:153 methods/rsh.cc:433 +#: methods/connect.cc:154 methods/rsh.cc:433 #, c-format msgid "Connecting to %s" msgstr "Kapcsolódás: %s" -#: methods/connect.cc:172 methods/connect.cc:191 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format msgid "Could not resolve '%s'" msgstr "Nem lehet feloldani a következőt: „%s”" -#: methods/connect.cc:197 +#: methods/connect.cc:205 #, c-format msgid "Temporary failure resolving '%s'" msgstr "Átmeneti hiba „%s” feloldása közben" -#: methods/connect.cc:200 +#: methods/connect.cc:209 +#, fuzzy, c-format +msgid "System error resolving '%s:%s' (%s)" +msgstr "Hiba történt „%s:%s” feloldásakor (%i - %s)" + +#: methods/connect.cc:211 #, c-format msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "Hiba történt „%s:%s” feloldásakor (%i - %s)" -#: methods/connect.cc:247 +#: methods/connect.cc:258 #, c-format msgid "Unable to connect to %s:%s:" msgstr "Nem lehet csatlakozni ehhez: %s:%s:" @@ -1572,43 +1577,43 @@ msgstr "A HTTP-kiszolgáló tartománytámogatása sérült" msgid "Unknown date format" msgstr "Ismeretlen dátumformátum" -#: methods/http.cc:818 +#: methods/http.cc:822 msgid "Select failed" msgstr "A kiválasztás sikertelen" -#: methods/http.cc:823 +#: methods/http.cc:827 msgid "Connection timed out" msgstr "Időtúllépés a kapcsolatban" -#: methods/http.cc:846 +#: methods/http.cc:850 msgid "Error writing to output file" msgstr "Hiba a kimeneti fájl írásakor" -#: methods/http.cc:877 +#: methods/http.cc:881 msgid "Error writing to file" msgstr "Hiba a fájl írásakor" -#: methods/http.cc:905 +#: methods/http.cc:909 msgid "Error writing to the file" msgstr "Hiba a fájl írásakor" -#: methods/http.cc:919 +#: methods/http.cc:923 msgid "Error reading from server. Remote end closed connection" msgstr "Hiba a kiszolgálóról olvasáskor, a túloldal lezárta a kapcsolatot" -#: methods/http.cc:921 +#: methods/http.cc:925 msgid "Error reading from server" msgstr "Hiba a kiszolgálóról olvasáskor" -#: methods/http.cc:1194 +#: methods/http.cc:1198 msgid "Bad header data" msgstr "Rossz fejlécadatok" -#: methods/http.cc:1211 methods/http.cc:1266 +#: methods/http.cc:1215 methods/http.cc:1270 msgid "Connection failed" msgstr "Sikertelen kapcsolódás" -#: methods/http.cc:1358 +#: methods/http.cc:1362 msgid "Internal error" msgstr "Belső hiba" @@ -2427,6 +2432,16 @@ msgstr "%c%s... Hiba!" msgid "%c%s... Done" msgstr "%c%s... Kész" +#: apt-pkg/contrib/progress.cc:179 +msgid "..." +msgstr "" + +#. Print the spinner +#: apt-pkg/contrib/progress.cc:195 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Kész" + #: apt-pkg/contrib/cmndline.cc:80 #, c-format msgid "Command line option '%c' [from %s] is not known." @@ -2835,7 +2850,7 @@ msgid "" msgstr "" "A(z) %s csomagot újra kell telepíteni, de nem található hozzá archívum." -#: apt-pkg/algorithms.cc:1228 +#: apt-pkg/algorithms.cc:1231 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2843,11 +2858,11 @@ msgstr "" "Hiba, a pkgProblemResolver::Resolve töréseket generált, ezt visszafogott " "csomagok okozhatják." -#: apt-pkg/algorithms.cc:1230 +#: apt-pkg/algorithms.cc:1233 msgid "Unable to correct problems, you have held broken packages." msgstr "A problémák nem javíthatók, sérült csomagokat fogott vissza." -#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 +#: apt-pkg/algorithms.cc:1583 apt-pkg/algorithms.cc:1585 msgid "" "Some index files failed to download. They have been ignored, or old ones " "used instead." @@ -3334,7 +3349,7 @@ msgstr "Felkészülés megoldás fogadására" msgid "External solver failed without a proper error message" msgstr "A külső solver megfelelő hibaüzenet nélkül hibázott" -#: apt-pkg/edsp.cc:557 apt-pkg/edsp.cc:560 apt-pkg/edsp.cc:565 +#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 msgid "Execute external solver" msgstr "Külső solver végrehajtása" diff --git a/po/it.po b/po/it.po index 98269398e..8258eaa4c 100644 --- a/po/it.po +++ b/po/it.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-03-14 08:05+0100\n" +"POT-Creation-Date: 2013-03-24 08:53+0100\n" "PO-Revision-Date: 2012-06-25 21:54+0200\n" "Last-Translator: Milo Casagrande \n" "Language-Team: Italian \n" @@ -643,7 +643,7 @@ msgstr "Interrotto." msgid "Do you want to continue [Y/n]? " msgstr "Continuare [S/n]? " -#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1557 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Impossibile recuperare %s %s\n" @@ -842,7 +842,7 @@ msgstr "" msgid "Calculating upgrade... " msgstr "Calcolo dell'aggiornamento... " -#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:116 msgid "Failed" msgstr "Non riuscito" @@ -1445,7 +1445,7 @@ msgstr "Connessione al socket dati terminata" msgid "Unable to accept connection" msgstr "Impossibile accettare connessioni" -#: methods/ftp.cc:872 methods/http.cc:1035 methods/rsh.cc:311 +#: methods/ftp.cc:872 methods/http.cc:1039 methods/rsh.cc:311 msgid "Problem hashing file" msgstr "Si è verificato un problema nel creare l'hash del file" @@ -1472,60 +1472,66 @@ msgstr "Interrogazione" msgid "Unable to invoke " msgstr "Impossibile invocare " -#: methods/connect.cc:75 +#: methods/connect.cc:76 #, c-format msgid "Connecting to %s (%s)" msgstr "Connessione a %s (%s)" -#: methods/connect.cc:86 +#: methods/connect.cc:87 #, c-format msgid "[IP: %s %s]" msgstr "[IP: %s %s]" -#: methods/connect.cc:93 +#: methods/connect.cc:94 #, c-format msgid "Could not create a socket for %s (f=%u t=%u p=%u)" msgstr "Impossibile creare un socket per %s (f=%u t=%u p=%u)" -#: methods/connect.cc:99 +#: methods/connect.cc:100 #, c-format msgid "Cannot initiate the connection to %s:%s (%s)." msgstr "Impossibile iniziare la connessione a %s:%s (%s)." -#: methods/connect.cc:107 +#: methods/connect.cc:108 #, c-format msgid "Could not connect to %s:%s (%s), connection timed out" msgstr "Impossibile connettersi a %s:%s (%s), connessione terminata" -#: methods/connect.cc:125 +#: methods/connect.cc:126 #, c-format msgid "Could not connect to %s:%s (%s)." msgstr "Impossibile connettersi a %s:%s (%s)." #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:153 methods/rsh.cc:433 +#: methods/connect.cc:154 methods/rsh.cc:433 #, c-format msgid "Connecting to %s" msgstr "Connessione a %s" -#: methods/connect.cc:172 methods/connect.cc:191 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format msgid "Could not resolve '%s'" msgstr "Impossibile risolvere \"%s\"" -#: methods/connect.cc:197 +#: methods/connect.cc:205 #, c-format msgid "Temporary failure resolving '%s'" msgstr "Risoluzione di \"%s\" temporaneamente non riuscita" -#: methods/connect.cc:200 +#: methods/connect.cc:209 +#, fuzzy, c-format +msgid "System error resolving '%s:%s' (%s)" +msgstr "" +"Si è verificato qualcosa di anormale nella risoluzione di \"%s:%s\" (%i - %s)" + +#: methods/connect.cc:211 #, c-format msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "" "Si è verificato qualcosa di anormale nella risoluzione di \"%s:%s\" (%i - %s)" -#: methods/connect.cc:247 +#: methods/connect.cc:258 #, c-format msgid "Unable to connect to %s:%s:" msgstr "Impossibile connettersi a %s:%s:" @@ -1595,43 +1601,43 @@ msgstr "Questo server HTTP ha un supporto del range non corretto" msgid "Unknown date format" msgstr "Formato della data sconosciuto" -#: methods/http.cc:818 +#: methods/http.cc:822 msgid "Select failed" msgstr "Select non riuscita" -#: methods/http.cc:823 +#: methods/http.cc:827 msgid "Connection timed out" msgstr "Connessione terminata" -#: methods/http.cc:846 +#: methods/http.cc:850 msgid "Error writing to output file" msgstr "Errore nello scrivere sul file di output" -#: methods/http.cc:877 +#: methods/http.cc:881 msgid "Error writing to file" msgstr "Errore nello scrivere su file" -#: methods/http.cc:905 +#: methods/http.cc:909 msgid "Error writing to the file" msgstr "Errore nello scrivere sul file" -#: methods/http.cc:919 +#: methods/http.cc:923 msgid "Error reading from server. Remote end closed connection" msgstr "Errore nel leggere dal server. Il lato remoto ha chiuso la connessione" -#: methods/http.cc:921 +#: methods/http.cc:925 msgid "Error reading from server" msgstr "Errore nel leggere dal server" -#: methods/http.cc:1194 +#: methods/http.cc:1198 msgid "Bad header data" msgstr "Header dati non corretto" -#: methods/http.cc:1211 methods/http.cc:1266 +#: methods/http.cc:1215 methods/http.cc:1270 msgid "Connection failed" msgstr "Connessione non riuscita" -#: methods/http.cc:1358 +#: methods/http.cc:1362 msgid "Internal error" msgstr "Errore interno" @@ -2460,6 +2466,16 @@ msgstr "%c%s... Errore" msgid "%c%s... Done" msgstr "%c%s... Fatto" +#: apt-pkg/contrib/progress.cc:179 +msgid "..." +msgstr "" + +#. Print the spinner +#: apt-pkg/contrib/progress.cc:195 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Fatto" + #: apt-pkg/contrib/cmndline.cc:80 #, c-format msgid "Command line option '%c' [from %s] is not known." @@ -2874,7 +2890,7 @@ msgstr "" "Il pacchetto %s deve essere reinstallato, ma non è possibile trovarne un " "archivio." -#: apt-pkg/algorithms.cc:1228 +#: apt-pkg/algorithms.cc:1231 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2882,12 +2898,12 @@ msgstr "" "Errore, pkgProblemResolver::Resolve ha generato delle interruzioni. Questo " "potrebbe essere causato da pacchetti bloccati." -#: apt-pkg/algorithms.cc:1230 +#: apt-pkg/algorithms.cc:1233 msgid "Unable to correct problems, you have held broken packages." msgstr "" "Impossibile correggere i problemi, ci sono pacchetti danneggiati bloccati." -#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 +#: apt-pkg/algorithms.cc:1583 apt-pkg/algorithms.cc:1585 msgid "" "Some index files failed to download. They have been ignored, or old ones " "used instead." @@ -3389,7 +3405,7 @@ msgstr "Preparazione alla ricezione della soluzione" msgid "External solver failed without a proper error message" msgstr "Il solver esterno è terminato senza un errore di messaggio" -#: apt-pkg/edsp.cc:557 apt-pkg/edsp.cc:560 apt-pkg/edsp.cc:565 +#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 msgid "Execute external solver" msgstr "Esecuzione solver esterno" diff --git a/po/ja.po b/po/ja.po index fb455abcc..708611629 100644 --- a/po/ja.po +++ b/po/ja.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.9.7.1\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2012-10-15 09:49+0200\n" +"POT-Creation-Date: 2013-03-24 08:53+0100\n" "PO-Revision-Date: 2012-07-01 00:14+0900\n" "Last-Translator: Kenshi Muto \n" "Language-Team: Debian Japanese List \n" @@ -155,7 +155,7 @@ msgid " Version table:" msgstr " バージョンテーブル:" #: cmdline/apt-cache.cc:1683 cmdline/apt-cdrom.cc:198 cmdline/apt-config.cc:81 -#: cmdline/apt-get.cc:3361 cmdline/apt-mark.cc:375 +#: cmdline/apt-get.cc:3363 cmdline/apt-mark.cc:375 #: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:590 #: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147 #, c-format @@ -485,7 +485,7 @@ msgstr "ダウンロードできないため、%s の再インストールは不 msgid "%s is already the newest version.\n" msgstr "%s はすでに最新バージョンです。\n" -#: cmdline/apt-get.cc:858 cmdline/apt-get.cc:2157 cmdline/apt-mark.cc:68 +#: cmdline/apt-get.cc:858 cmdline/apt-get.cc:2159 cmdline/apt-mark.cc:68 #, c-format msgid "%s set to manually installed.\n" msgstr "%s は手動でインストールしたと設定されました。\n" @@ -595,8 +595,8 @@ msgstr "この操作後に追加で %sB のディスク容量が消費されま msgid "After this operation, %sB disk space will be freed.\n" msgstr "この操作後に %sB のディスク容量が解放されます。\n" -#: cmdline/apt-get.cc:1228 cmdline/apt-get.cc:1231 cmdline/apt-get.cc:2589 -#: cmdline/apt-get.cc:2592 +#: cmdline/apt-get.cc:1228 cmdline/apt-get.cc:1231 cmdline/apt-get.cc:2591 +#: cmdline/apt-get.cc:2594 #, c-format msgid "Couldn't determine free space in %s" msgstr "%s の空き領域を測定できません" @@ -606,15 +606,17 @@ msgstr "%s の空き領域を測定できません" msgid "You don't have enough free space in %s." msgstr "%s に充分な空きスペースがありません。" -#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1277 +#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1279 msgid "Trivial Only specified but this is not a trivial operation." msgstr "Trivial Only が指定されましたが、これは簡単な操作ではありません。" -#: cmdline/apt-get.cc:1259 +#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be +#. careful with hard to type or special characters (like non-breaking spaces) +#: cmdline/apt-get.cc:1261 msgid "Yes, do as I say!" msgstr "Yes, do as I say!" -#: cmdline/apt-get.cc:1261 +#: cmdline/apt-get.cc:1263 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -625,28 +627,28 @@ msgstr "" "続行するには、'%s' というフレーズをタイプしてください。\n" " ?] " -#: cmdline/apt-get.cc:1267 cmdline/apt-get.cc:1286 +#: cmdline/apt-get.cc:1269 cmdline/apt-get.cc:1288 msgid "Abort." msgstr "中断しました。" -#: cmdline/apt-get.cc:1282 +#: cmdline/apt-get.cc:1284 msgid "Do you want to continue [Y/n]? " msgstr "続行しますか [Y/n]? " -#: cmdline/apt-get.cc:1354 cmdline/apt-get.cc:2654 apt-pkg/algorithms.cc:1548 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1557 #, c-format msgid "Failed to fetch %s %s\n" msgstr "%s の取得に失敗しました %s\n" -#: cmdline/apt-get.cc:1372 +#: cmdline/apt-get.cc:1374 msgid "Some files failed to download" msgstr "いくつかのファイルの取得に失敗しました" -#: cmdline/apt-get.cc:1373 cmdline/apt-get.cc:2666 +#: cmdline/apt-get.cc:1375 cmdline/apt-get.cc:2668 msgid "Download complete and in download only mode" msgstr "ダウンロードオンリーモードでパッケージのダウンロードが完了しました" -#: cmdline/apt-get.cc:1379 +#: cmdline/apt-get.cc:1381 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -654,19 +656,19 @@ msgstr "" "いくつかのアーカイブを取得できません。apt-get update を実行するか --fix-" "missing オプションを付けて試してみてください。" -#: cmdline/apt-get.cc:1383 +#: cmdline/apt-get.cc:1385 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix-missing とメディア交換は現在同時にはサポートされていません" -#: cmdline/apt-get.cc:1388 +#: cmdline/apt-get.cc:1390 msgid "Unable to correct missing packages." msgstr "足りないパッケージを直すことができません。" -#: cmdline/apt-get.cc:1389 +#: cmdline/apt-get.cc:1391 msgid "Aborting install." msgstr "インストールを中断します。" -#: cmdline/apt-get.cc:1417 +#: cmdline/apt-get.cc:1419 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -677,36 +679,36 @@ msgstr[0] "" "以下のパッケージは、全ファイルが別のパッケージで上書きされたため、\n" "システムから消えました:" -#: cmdline/apt-get.cc:1421 +#: cmdline/apt-get.cc:1423 msgid "Note: This is done automatically and on purpose by dpkg." msgstr "注意: これは dpkg により自動でわざと行われれます。" -#: cmdline/apt-get.cc:1559 +#: cmdline/apt-get.cc:1561 #, c-format msgid "Ignore unavailable target release '%s' of package '%s'" msgstr "パッケージ '%2$s' の利用できないターゲットリリース '%1$s' を無視" -#: cmdline/apt-get.cc:1591 +#: cmdline/apt-get.cc:1593 #, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "'%2$s' の代わりに '%1$s' をソースパッケージとして選出しています\n" #. if (VerTag.empty() == false && Last == 0) -#: cmdline/apt-get.cc:1629 +#: cmdline/apt-get.cc:1631 #, c-format msgid "Ignore unavailable version '%s' of package '%s'" msgstr "パッケージ '%2$s' の利用できないバージョン '%1$s' を無視" -#: cmdline/apt-get.cc:1645 +#: cmdline/apt-get.cc:1647 msgid "The update command takes no arguments" msgstr "update コマンドは引数をとりません" -#: cmdline/apt-get.cc:1711 +#: cmdline/apt-get.cc:1713 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" "一連のものを削除するようになっていないので、AutoRemover を開始できません" -#: cmdline/apt-get.cc:1815 +#: cmdline/apt-get.cc:1817 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -724,15 +726,15 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1818 cmdline/apt-get.cc:1987 +#: cmdline/apt-get.cc:1820 cmdline/apt-get.cc:1989 msgid "The following information may help to resolve the situation:" msgstr "以下の情報がこの問題を解決するために役立つかもしれません:" -#: cmdline/apt-get.cc:1822 +#: cmdline/apt-get.cc:1824 msgid "Internal Error, AutoRemover broke stuff" msgstr "内部エラー、AutoRemover が何かを破壊しました" -#: cmdline/apt-get.cc:1829 +#: cmdline/apt-get.cc:1831 msgid "" "The following package was automatically installed and is no longer required:" msgid_plural "" @@ -741,7 +743,7 @@ msgid_plural "" msgstr[0] "" "以下のパッケージが自動でインストールされましたが、もう必要とされていません:" -#: cmdline/apt-get.cc:1833 +#: cmdline/apt-get.cc:1835 #, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -750,22 +752,22 @@ msgstr[0] "" "%lu つのパッケージが自動でインストールされましたが、もう必要とされていませ" "ん:\n" -#: cmdline/apt-get.cc:1835 +#: cmdline/apt-get.cc:1837 msgid "Use 'apt-get autoremove' to remove it." msgid_plural "Use 'apt-get autoremove' to remove them." msgstr[0] "これを削除するには 'apt-get autoremove' を利用してください。" -#: cmdline/apt-get.cc:1854 +#: cmdline/apt-get.cc:1856 msgid "Internal error, AllUpgrade broke stuff" msgstr "内部エラー、AllUpgrade が何かを破壊しました" -#: cmdline/apt-get.cc:1953 +#: cmdline/apt-get.cc:1955 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "" "以下の問題を解決するために 'apt-get -f install' を実行する必要があるかもしれ" "ません:" -#: cmdline/apt-get.cc:1957 +#: cmdline/apt-get.cc:1959 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -773,7 +775,7 @@ msgstr "" "未解決の依存関係です。'apt-get -f install' を実行してみてください (または解法" "を明示してください)。" -#: cmdline/apt-get.cc:1972 +#: cmdline/apt-get.cc:1974 msgid "" "Some packages could not be installed. This may mean that you have\n" "requested an impossible situation or if you are using the unstable\n" @@ -785,33 +787,33 @@ msgstr "" "であれば) 必要なパッケージがまだ作成されていなかったり Incoming から移\n" "動されていないことが考えられます。" -#: cmdline/apt-get.cc:1993 +#: cmdline/apt-get.cc:1995 msgid "Broken packages" msgstr "壊れたパッケージ" -#: cmdline/apt-get.cc:2019 +#: cmdline/apt-get.cc:2021 msgid "The following extra packages will be installed:" msgstr "以下の特別パッケージがインストールされます:" -#: cmdline/apt-get.cc:2109 +#: cmdline/apt-get.cc:2111 msgid "Suggested packages:" msgstr "提案パッケージ:" -#: cmdline/apt-get.cc:2110 +#: cmdline/apt-get.cc:2112 msgid "Recommended packages:" msgstr "推奨パッケージ:" -#: cmdline/apt-get.cc:2152 +#: cmdline/apt-get.cc:2154 #, c-format msgid "Couldn't find package %s" msgstr "パッケージ %s が見つかりません" -#: cmdline/apt-get.cc:2159 cmdline/apt-mark.cc:70 +#: cmdline/apt-get.cc:2161 cmdline/apt-mark.cc:70 #, c-format msgid "%s set to automatically installed.\n" msgstr "%s は自動でインストールしたと設定されました。\n" -#: cmdline/apt-get.cc:2167 cmdline/apt-mark.cc:114 +#: cmdline/apt-get.cc:2169 cmdline/apt-mark.cc:114 msgid "" "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " "instead." @@ -819,47 +821,47 @@ msgstr "" "このコマンドは時代遅れです。'apt-mark auto' および 'apt-mark manual' を代わり" "に使用してください。" -#: cmdline/apt-get.cc:2183 +#: cmdline/apt-get.cc:2185 msgid "Calculating upgrade... " msgstr "アップグレードパッケージを検出しています ... " -#: cmdline/apt-get.cc:2186 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:116 msgid "Failed" msgstr "失敗" -#: cmdline/apt-get.cc:2191 +#: cmdline/apt-get.cc:2193 msgid "Done" msgstr "完了" -#: cmdline/apt-get.cc:2258 cmdline/apt-get.cc:2266 +#: cmdline/apt-get.cc:2260 cmdline/apt-get.cc:2268 msgid "Internal error, problem resolver broke stuff" msgstr "内部エラー、問題リゾルバが何かを破壊しました" -#: cmdline/apt-get.cc:2294 cmdline/apt-get.cc:2330 +#: cmdline/apt-get.cc:2296 cmdline/apt-get.cc:2332 msgid "Unable to lock the download directory" msgstr "ダウンロードディレクトリをロックできません" -#: cmdline/apt-get.cc:2386 +#: cmdline/apt-get.cc:2388 #, c-format msgid "Can't find a source to download version '%s' of '%s'" msgstr "'%2$s' のバージョン '%1$s' をダウンロードするソースが見つかりません" -#: cmdline/apt-get.cc:2391 +#: cmdline/apt-get.cc:2393 #, c-format msgid "Downloading %s %s" msgstr "%s %s をダウンロードしています" -#: cmdline/apt-get.cc:2451 +#: cmdline/apt-get.cc:2453 msgid "Must specify at least one package to fetch source for" msgstr "" "ソースを取得するには少なくとも 1 つのパッケージ名を指定する必要があります" -#: cmdline/apt-get.cc:2491 cmdline/apt-get.cc:2803 +#: cmdline/apt-get.cc:2493 cmdline/apt-get.cc:2805 #, c-format msgid "Unable to find a source package for %s" msgstr "%s のソースパッケージが見つかりません" -#: cmdline/apt-get.cc:2508 +#: cmdline/apt-get.cc:2510 #, c-format msgid "" "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" @@ -869,7 +871,7 @@ msgstr "" "ます:\n" "%s\n" -#: cmdline/apt-get.cc:2513 +#: cmdline/apt-get.cc:2515 #, c-format msgid "" "Please use:\n" @@ -881,70 +883,70 @@ msgstr "" "bzr branch %s\n" "を使用してください。\n" -#: cmdline/apt-get.cc:2566 +#: cmdline/apt-get.cc:2568 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "すでにダウンロードされたファイル '%s' をスキップします\n" -#: cmdline/apt-get.cc:2603 +#: cmdline/apt-get.cc:2605 #, c-format msgid "You don't have enough free space in %s" msgstr "%s に充分な空きスペースがありません" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:2612 +#: cmdline/apt-get.cc:2614 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "%2$sB 中 %1$sB のソースアーカイブを取得する必要があります。\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:2617 +#: cmdline/apt-get.cc:2619 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "%sB のソースアーカイブを取得する必要があります。\n" -#: cmdline/apt-get.cc:2623 +#: cmdline/apt-get.cc:2625 #, c-format msgid "Fetch source %s\n" msgstr "ソース %s を取得\n" -#: cmdline/apt-get.cc:2661 +#: cmdline/apt-get.cc:2663 msgid "Failed to fetch some archives." msgstr "いくつかのアーカイブの取得に失敗しました。" -#: cmdline/apt-get.cc:2692 +#: cmdline/apt-get.cc:2694 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "すでに %s に展開されたソースがあるため、展開をスキップします\n" -#: cmdline/apt-get.cc:2704 +#: cmdline/apt-get.cc:2706 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "展開コマンド '%s' が失敗しました。\n" -#: cmdline/apt-get.cc:2705 +#: cmdline/apt-get.cc:2707 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "" "'dpkg-dev' パッケージがインストールされていることを確認してください。\n" -#: cmdline/apt-get.cc:2727 +#: cmdline/apt-get.cc:2729 #, c-format msgid "Build command '%s' failed.\n" msgstr "ビルドコマンド '%s' が失敗しました。\n" -#: cmdline/apt-get.cc:2747 +#: cmdline/apt-get.cc:2749 msgid "Child process failed" msgstr "子プロセスが失敗しました" -#: cmdline/apt-get.cc:2766 +#: cmdline/apt-get.cc:2768 msgid "Must specify at least one package to check builddeps for" msgstr "" "ビルド依存関係をチェックするパッケージを少なくとも 1 つ指定する必要があります" -#: cmdline/apt-get.cc:2791 +#: cmdline/apt-get.cc:2793 #, c-format msgid "" "No architecture information available for %s. See apt.conf(5) APT::" @@ -953,17 +955,17 @@ msgstr "" "%s に利用可能なアーキテクチャ情報がありません。セットアップのために apt.conf" "(5) の APT::Architectures を参照してください。" -#: cmdline/apt-get.cc:2815 cmdline/apt-get.cc:2818 +#: cmdline/apt-get.cc:2817 cmdline/apt-get.cc:2820 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "%s のビルド依存情報を取得できません" -#: cmdline/apt-get.cc:2838 +#: cmdline/apt-get.cc:2840 #, c-format msgid "%s has no build depends.\n" msgstr "%s にはビルド依存情報が指定されていません。\n" -#: cmdline/apt-get.cc:3008 +#: cmdline/apt-get.cc:3010 #, c-format msgid "" "%s dependency for %s can't be satisfied because %s is not allowed on '%s' " @@ -972,7 +974,7 @@ msgstr "" "パッケージ %3$s が '%4$s' パッケージで許されていないため、%2$s に対する %1$s " "の依存関係を満たすことができません" -#: cmdline/apt-get.cc:3026 +#: cmdline/apt-get.cc:3028 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -981,14 +983,14 @@ msgstr "" "パッケージ %3$s が見つからないため、%2$s に対する %1$s の依存関係を満たすこと" "ができません" -#: cmdline/apt-get.cc:3049 +#: cmdline/apt-get.cc:3051 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "%2$s の依存関係 %1$s を満たすことができません: インストールされた %3$s パッ" "ケージは新しすぎます" -#: cmdline/apt-get.cc:3088 +#: cmdline/apt-get.cc:3090 #, c-format msgid "" "%s dependency for %s cannot be satisfied because candidate version of " @@ -997,7 +999,7 @@ msgstr "" "パッケージ %3$s の候補バージョンはバージョンについての要求を満たせないた" "め、%2$s に対する %1$s の依存関係を満たすことができません" -#: cmdline/apt-get.cc:3094 +#: cmdline/apt-get.cc:3096 #, c-format msgid "" "%s dependency for %s cannot be satisfied because package %s has no candidate " @@ -1006,30 +1008,30 @@ msgstr "" "パッケージ %3$s の候補バージョンが存在しないため、%2$s に対する %1$s の依存関" "係を満たすことができません" -#: cmdline/apt-get.cc:3117 +#: cmdline/apt-get.cc:3119 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "%2$s の依存関係 %1$s を満たすことができません: %3$s" -#: cmdline/apt-get.cc:3133 +#: cmdline/apt-get.cc:3135 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "%s のビルド依存関係を満たすことができませんでした。" -#: cmdline/apt-get.cc:3138 +#: cmdline/apt-get.cc:3140 msgid "Failed to process build dependencies" msgstr "ビルド依存関係の処理に失敗しました" -#: cmdline/apt-get.cc:3231 cmdline/apt-get.cc:3243 +#: cmdline/apt-get.cc:3233 cmdline/apt-get.cc:3245 #, c-format msgid "Changelog for %s (%s)" msgstr "%s (%s) の変更履歴" -#: cmdline/apt-get.cc:3366 +#: cmdline/apt-get.cc:3368 msgid "Supported modules:" msgstr "サポートされているモジュール:" -#: cmdline/apt-get.cc:3407 +#: cmdline/apt-get.cc:3409 msgid "" "Usage: apt-get [options] command\n" " apt-get [options] install|remove pkg1 [pkg2 ...]\n" @@ -1121,7 +1123,7 @@ msgstr "" "apt-get(8)、sources.list(5)、apt.conf(5) を参照してください。\n" " この APT は Super Cow Powers 化されています。\n" -#: cmdline/apt-get.cc:3572 +#: cmdline/apt-get.cc:3574 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1422,7 +1424,7 @@ msgstr "データソケット接続タイムアウト" msgid "Unable to accept connection" msgstr "接続を accept できません" -#: methods/ftp.cc:872 methods/http.cc:1035 methods/rsh.cc:311 +#: methods/ftp.cc:872 methods/http.cc:1039 methods/rsh.cc:311 msgid "Problem hashing file" msgstr "ファイルのハッシュでの問題" @@ -1449,59 +1451,64 @@ msgstr "問い合わせ" msgid "Unable to invoke " msgstr "呼び出せません" -#: methods/connect.cc:75 +#: methods/connect.cc:76 #, c-format msgid "Connecting to %s (%s)" msgstr "%s (%s) へ接続しています" -#: methods/connect.cc:86 +#: methods/connect.cc:87 #, c-format msgid "[IP: %s %s]" msgstr "[IP: %s %s]" -#: methods/connect.cc:93 +#: methods/connect.cc:94 #, c-format msgid "Could not create a socket for %s (f=%u t=%u p=%u)" msgstr "%s (f=%u t=%u p=%u) に対するソケットを作成できません" -#: methods/connect.cc:99 +#: methods/connect.cc:100 #, c-format msgid "Cannot initiate the connection to %s:%s (%s)." msgstr "%s:%s (%s) への接続を開始できません。" -#: methods/connect.cc:107 +#: methods/connect.cc:108 #, c-format msgid "Could not connect to %s:%s (%s), connection timed out" msgstr "%s:%s (%s) へ接続できませんでした。接続がタイムアウトしました" -#: methods/connect.cc:125 +#: methods/connect.cc:126 #, c-format msgid "Could not connect to %s:%s (%s)." msgstr "%s:%s (%s) へ接続できませんでした。" #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:153 methods/rsh.cc:433 +#: methods/connect.cc:154 methods/rsh.cc:433 #, c-format msgid "Connecting to %s" msgstr "%s へ接続しています" -#: methods/connect.cc:172 methods/connect.cc:191 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format msgid "Could not resolve '%s'" msgstr "'%s' を解決できませんでした" -#: methods/connect.cc:197 +#: methods/connect.cc:205 #, c-format msgid "Temporary failure resolving '%s'" msgstr "'%s' が一時的に解決できません" -#: methods/connect.cc:200 +#: methods/connect.cc:209 +#, fuzzy, c-format +msgid "System error resolving '%s:%s' (%s)" +msgstr "'%s:%s' (%i - %s) の解決中に何か問題が起こりました" + +#: methods/connect.cc:211 #, c-format msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "'%s:%s' (%i - %s) の解決中に何か問題が起こりました" -#: methods/connect.cc:247 +#: methods/connect.cc:258 #, c-format msgid "Unable to connect to %s:%s:" msgstr "%s:%s へ接続できません:" @@ -1567,43 +1574,43 @@ msgstr "HTTP サーバのレンジサポートが壊れています" msgid "Unknown date format" msgstr "不明な日付フォーマットです" -#: methods/http.cc:818 +#: methods/http.cc:822 msgid "Select failed" msgstr "select に失敗しました" -#: methods/http.cc:823 +#: methods/http.cc:827 msgid "Connection timed out" msgstr "接続タイムアウト" -#: methods/http.cc:846 +#: methods/http.cc:850 msgid "Error writing to output file" msgstr "出力ファイルへの書き込みでエラーが発生しました" -#: methods/http.cc:877 +#: methods/http.cc:881 msgid "Error writing to file" msgstr "ファイルへの書き込みでエラーが発生しました" -#: methods/http.cc:905 +#: methods/http.cc:909 msgid "Error writing to the file" msgstr "ファイルへの書き込みでエラーが発生しました" -#: methods/http.cc:919 +#: methods/http.cc:923 msgid "Error reading from server. Remote end closed connection" msgstr "リモート側で接続がクローズされてサーバからの読み込みに失敗しました" -#: methods/http.cc:921 +#: methods/http.cc:925 msgid "Error reading from server" msgstr "サーバからの読み込みに失敗しました" -#: methods/http.cc:1194 +#: methods/http.cc:1198 msgid "Bad header data" msgstr "不正なヘッダです" -#: methods/http.cc:1211 methods/http.cc:1266 +#: methods/http.cc:1215 methods/http.cc:1270 msgid "Connection failed" msgstr "接続失敗" -#: methods/http.cc:1358 +#: methods/http.cc:1362 msgid "Internal error" msgstr "内部エラー" @@ -1734,7 +1741,7 @@ msgstr "" " -c=? 指定した設定ファイルを読み込む\n" " -o=? 指定した設定オプションを適用する (例: -o dir::cache=/tmp)\n" -#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1335 +#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1339 #, c-format msgid "Unable to write to %s" msgstr "%s に書き込めません" @@ -2417,6 +2424,16 @@ msgstr "%c%s... エラー!" msgid "%c%s... Done" msgstr "%c%s... 完了" +#: apt-pkg/contrib/progress.cc:179 +msgid "..." +msgstr "" + +#. Print the spinner +#: apt-pkg/contrib/progress.cc:195 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... 完了" + #: apt-pkg/contrib/cmndline.cc:80 #, c-format msgid "Command line option '%c' [from %s] is not known." @@ -2779,7 +2796,7 @@ msgstr "ソースリスト %2$s の %1$u 行目が不正です (type)" msgid "Type '%s' is not known on line %u in source list %s" msgstr "ソースリスト %3$s の %2$u 行にあるタイプ '%1$s' は不明です" -#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:896 +#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:898 #, c-format msgid "" "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " @@ -2788,12 +2805,12 @@ msgstr "" "'%s' の即時設定は動作しません。詳細については man 5 apt.conf の APT::" "Immediate-Configure の項を参照してください。(%d)" -#: apt-pkg/packagemanager.cc:473 apt-pkg/packagemanager.cc:503 +#: apt-pkg/packagemanager.cc:473 apt-pkg/packagemanager.cc:504 #, c-format msgid "Could not configure '%s'. " msgstr "'%s' を設定できませんでした。" -#: apt-pkg/packagemanager.cc:545 +#: apt-pkg/packagemanager.cc:546 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2817,7 +2834,7 @@ msgstr "" "パッケージ %s を再インストールする必要がありますが、そのためのアーカイブを見" "つけることができませんでした。" -#: apt-pkg/algorithms.cc:1228 +#: apt-pkg/algorithms.cc:1231 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2825,11 +2842,11 @@ msgstr "" "エラー、pkgProblemResolver::Resolve は停止しました。おそらく変更禁止パッケー" "ジが原因です。" -#: apt-pkg/algorithms.cc:1230 +#: apt-pkg/algorithms.cc:1233 msgid "Unable to correct problems, you have held broken packages." msgstr "問題を解決することができません。壊れた変更禁止パッケージがあります。" -#: apt-pkg/algorithms.cc:1574 apt-pkg/algorithms.cc:1576 +#: apt-pkg/algorithms.cc:1583 apt-pkg/algorithms.cc:1585 msgid "" "Some index files failed to download. They have been ignored, or old ones " "used instead." @@ -2980,21 +2997,21 @@ msgstr "この APT が対応している以上の数の依存関係が発生し msgid "Package %s %s was not found while processing file dependencies" msgstr "パッケージ %s %s がファイル依存の処理中に見つかりませんでした" -#: apt-pkg/pkgcachegen.cc:1146 +#: apt-pkg/pkgcachegen.cc:1150 #, c-format msgid "Couldn't stat source package list %s" msgstr "ソースパッケージリスト %s の状態を取得できません" -#: apt-pkg/pkgcachegen.cc:1234 apt-pkg/pkgcachegen.cc:1338 -#: apt-pkg/pkgcachegen.cc:1344 apt-pkg/pkgcachegen.cc:1501 +#: apt-pkg/pkgcachegen.cc:1238 apt-pkg/pkgcachegen.cc:1342 +#: apt-pkg/pkgcachegen.cc:1348 apt-pkg/pkgcachegen.cc:1505 msgid "Reading package lists" msgstr "パッケージリストを読み込んでいます" -#: apt-pkg/pkgcachegen.cc:1251 +#: apt-pkg/pkgcachegen.cc:1255 msgid "Collecting File Provides" msgstr "ファイル提供情報を収集しています" -#: apt-pkg/pkgcachegen.cc:1443 apt-pkg/pkgcachegen.cc:1450 +#: apt-pkg/pkgcachegen.cc:1447 apt-pkg/pkgcachegen.cc:1454 msgid "IO Error saving source cache" msgstr "ソースキャッシュの保存中に IO エラーが発生しました" @@ -3322,7 +3339,7 @@ msgstr "解決を受け取る準備" msgid "External solver failed without a proper error message" msgstr "外部ソルバが適切なエラーメッセージなしに失敗しました" -#: apt-pkg/edsp.cc:557 apt-pkg/edsp.cc:560 apt-pkg/edsp.cc:565 +#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 msgid "Execute external solver" msgstr "外部ソルバを実行" diff --git a/po/km.po b/po/km.po index 578e246a7..aea6d34cb 100644 --- a/po/km.po +++ b/po/km.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: apt_po_km\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-03-14 08:05+0100\n" +"POT-Creation-Date: 2013-03-24 08:53+0100\n" "PO-Revision-Date: 2006-10-10 09:48+0700\n" "Last-Translator: Khoem Sokhem \n" "Language-Team: Khmer \n" @@ -635,7 +635,7 @@ msgstr "បោះបង់ ។" msgid "Do you want to continue [Y/n]? " msgstr "តើ​អ្នក​ចង់​បន្តឬ​ [បាទ ចាស/ទេ​] ? " -#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1557 #, c-format msgid "Failed to fetch %s %s\n" msgstr "បរាជ័យ​ក្នុង​ការ​ទៅ​ប្រមូល​យក​ %s %s\n" @@ -818,7 +818,7 @@ msgstr "" msgid "Calculating upgrade... " msgstr "កំពុង​គណនា​ការ​ធ្វើ​ឲ្យ​ប្រសើរ... " -#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:116 msgid "Failed" msgstr "បាន​បរាជ័យ" @@ -1366,7 +1366,7 @@ msgstr "ការតភ្ជាប់​រន្ធ​​ទិន្នន័ msgid "Unable to accept connection" msgstr "មិនអាច​ទទួលយក​ការតភ្ជាប់​បានឡើយ" -#: methods/ftp.cc:872 methods/http.cc:1035 methods/rsh.cc:311 +#: methods/ftp.cc:872 methods/http.cc:1039 methods/rsh.cc:311 msgid "Problem hashing file" msgstr "បញ្ហា​ធ្វើឲ្យខូច​ឯកសារ" @@ -1393,59 +1393,64 @@ msgstr "សំណួរ​" msgid "Unable to invoke " msgstr "មិន​អាច​ហៅ​ " -#: methods/connect.cc:75 +#: methods/connect.cc:76 #, c-format msgid "Connecting to %s (%s)" msgstr "កំពុង​តភ្ជាប់​ទៅ​កាន់​ %s (%s)" -#: methods/connect.cc:86 +#: methods/connect.cc:87 #, c-format msgid "[IP: %s %s]" msgstr "[IP ៖ %s %s]" -#: methods/connect.cc:93 +#: methods/connect.cc:94 #, c-format msgid "Could not create a socket for %s (f=%u t=%u p=%u)" msgstr "មិន​អាច​បង្កើត​រន្ធ​សម្រាប់ %s (f=%u t=%u p=%u) បានឡើយ" -#: methods/connect.cc:99 +#: methods/connect.cc:100 #, c-format msgid "Cannot initiate the connection to %s:%s (%s)." msgstr "មិនអាច​ចាប់ផ្ដើម​ការតភ្ជាប់​​ទៅ​កាន់​ %s:%s (%s) បានឡើយ ។" -#: methods/connect.cc:107 +#: methods/connect.cc:108 #, c-format msgid "Could not connect to %s:%s (%s), connection timed out" msgstr "មិន​អាច​តភ្ជាប់​ទៅ​កាន់​ %s:%s (%s) បានឡើយ ការ​តភ្ជាប់​បានអស់​ពេល​" -#: methods/connect.cc:125 +#: methods/connect.cc:126 #, c-format msgid "Could not connect to %s:%s (%s)." msgstr "មិន​អាច​តភ្ជាប់​ទៅកាន់​ %s:%s (%s) បានឡើយ ។" #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:153 methods/rsh.cc:433 +#: methods/connect.cc:154 methods/rsh.cc:433 #, c-format msgid "Connecting to %s" msgstr "កំពុង​តភ្ជាប់​ទៅកាន់ %s" -#: methods/connect.cc:172 methods/connect.cc:191 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format msgid "Could not resolve '%s'" msgstr "មិន​អាច​ដោះស្រាយ​ '%s' បានឡើយ" -#: methods/connect.cc:197 +#: methods/connect.cc:205 #, c-format msgid "Temporary failure resolving '%s'" msgstr "ការ​ដោះស្រាយ​ភាព​បរាជ័យ​​បណ្តោះអាសន្ន '%s'" -#: methods/connect.cc:200 +#: methods/connect.cc:209 +#, fuzzy, c-format +msgid "System error resolving '%s:%s' (%s)" +msgstr "ការ​ដោះស្រាយ​អ្វី​អាក្រក់ដែល​បាន​កើត​ឡើង​ '%s:%s' (%i)" + +#: methods/connect.cc:211 #, fuzzy, c-format msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "ការ​ដោះស្រាយ​អ្វី​អាក្រក់ដែល​បាន​កើត​ឡើង​ '%s:%s' (%i)" -#: methods/connect.cc:247 +#: methods/connect.cc:258 #, fuzzy, c-format msgid "Unable to connect to %s:%s:" msgstr "មិន​អាច​តភ្ជាប់​ទៅកាន់​​ %s %s ៖" @@ -1510,43 +1515,43 @@ msgstr "ម៉ាស៊ីន​បម្រើ HTTP នេះបាន​ខូ msgid "Unknown date format" msgstr "មិនស្គាល់​ទ្រង់ទ្រាយ​កាលបរិច្ឆេទ" -#: methods/http.cc:818 +#: methods/http.cc:822 msgid "Select failed" msgstr "ជ្រើស​បាន​បរាជ័យ​" -#: methods/http.cc:823 +#: methods/http.cc:827 msgid "Connection timed out" msgstr "ការតភ្ជាប់​បាន​អស់ពេល​" -#: methods/http.cc:846 +#: methods/http.cc:850 msgid "Error writing to output file" msgstr "កំហុស​ក្នុងការ​សរសេរទៅកាន់​ឯកសារលទ្ធផល" -#: methods/http.cc:877 +#: methods/http.cc:881 msgid "Error writing to file" msgstr "កំហុស​ក្នុងការ​សរសេរទៅកាន់​ឯកសារ" -#: methods/http.cc:905 +#: methods/http.cc:909 msgid "Error writing to the file" msgstr "កំហុសក្នុងការ​សរសេរ​ទៅកាន់​ឯកសារ" -#: methods/http.cc:919 +#: methods/http.cc:923 msgid "Error reading from server. Remote end closed connection" msgstr "កំហុស​ក្នុងការ​អាន​ពី​ម៉ាស៊ីនបម្រើ ។ ការបញ្ចប់​ពីចម្ងាយ​បានបិទការតភ្ជាប់" -#: methods/http.cc:921 +#: methods/http.cc:925 msgid "Error reading from server" msgstr "កំហុស​ក្នុងការអាន​ពី​ម៉ាស៊ីន​បម្រើ" -#: methods/http.cc:1194 +#: methods/http.cc:1198 msgid "Bad header data" msgstr "ទិន្នន័យ​បឋមកថា​ខូច" -#: methods/http.cc:1211 methods/http.cc:1266 +#: methods/http.cc:1215 methods/http.cc:1270 msgid "Connection failed" msgstr "ការតភ្ជាប់​បាន​បរាជ័យ​" -#: methods/http.cc:1358 +#: methods/http.cc:1362 msgid "Internal error" msgstr "កំហុស​ខាង​ក្នុង​" @@ -2354,6 +2359,16 @@ msgstr "%c%s... កំហុស ​!" msgid "%c%s... Done" msgstr "%c%s... ធ្វើរួច​" +#: apt-pkg/contrib/progress.cc:179 +msgid "..." +msgstr "" + +#. Print the spinner +#: apt-pkg/contrib/progress.cc:195 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... ធ្វើរួច​" + #: apt-pkg/contrib/cmndline.cc:80 #, c-format msgid "Command line option '%c' [from %s] is not known." @@ -2745,7 +2760,7 @@ msgid "" "The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "កញ្ចប់ %s ត្រូវការឲ្យដំឡើង ប៉ុន្តែ​ ខ្ញុំ​មិន​អាច​រក​ប័ណ្ណសារ​សម្រាប់​វា​បាន​ទេ​ ។" -#: apt-pkg/algorithms.cc:1228 +#: apt-pkg/algorithms.cc:1231 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2753,11 +2768,11 @@ msgstr "" "កំហុស pkgProblemResolver::ដោះស្រាយ​សញ្ញាបញ្ឈប់​ដែលបានបង្កើត នេះ​ប្រហែលជា បង្កដោយកញ្ចប់​" "ដែលបាន​ទុក ។" -#: apt-pkg/algorithms.cc:1230 +#: apt-pkg/algorithms.cc:1233 msgid "Unable to correct problems, you have held broken packages." msgstr "មិន​អាច​កែ​បញ្ហាបានទេេ អ្កបានទុក​កញ្ចប់​ដែល​ខូច ។។" -#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 +#: apt-pkg/algorithms.cc:1583 apt-pkg/algorithms.cc:1585 #, fuzzy msgid "" "Some index files failed to download. They have been ignored, or old ones " @@ -3221,7 +3236,7 @@ msgstr "" msgid "External solver failed without a proper error message" msgstr "" -#: apt-pkg/edsp.cc:557 apt-pkg/edsp.cc:560 apt-pkg/edsp.cc:565 +#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 msgid "Execute external solver" msgstr "" diff --git a/po/ko.po b/po/ko.po index 0c0b978d6..ba7f6bef7 100644 --- a/po/ko.po +++ b/po/ko.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-03-14 08:05+0100\n" +"POT-Creation-Date: 2013-03-24 08:53+0100\n" "PO-Revision-Date: 2010-08-30 02:31+0900\n" "Last-Translator: Changwoo Ryu \n" "Language-Team: Korean \n" @@ -632,7 +632,7 @@ msgstr "중단." msgid "Do you want to continue [Y/n]? " msgstr "계속 하시겠습니까 [Y/n]? " -#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1557 #, c-format msgid "Failed to fetch %s %s\n" msgstr "%s 파일을 받는데 실패했습니다 %s\n" @@ -815,7 +815,7 @@ msgstr "" msgid "Calculating upgrade... " msgstr "업그레이드를 계산하는 중입니다... " -#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:116 msgid "Failed" msgstr "실패" @@ -1384,7 +1384,7 @@ msgstr "데이터 소켓 연결 시간 초과" msgid "Unable to accept connection" msgstr "연결을 받을 수 없습니다" -#: methods/ftp.cc:872 methods/http.cc:1035 methods/rsh.cc:311 +#: methods/ftp.cc:872 methods/http.cc:1039 methods/rsh.cc:311 msgid "Problem hashing file" msgstr "파일 해싱에 문제가 있습니다" @@ -1411,59 +1411,64 @@ msgstr "질의" msgid "Unable to invoke " msgstr "다음을 실행할 수 없습니다: " -#: methods/connect.cc:75 +#: methods/connect.cc:76 #, c-format msgid "Connecting to %s (%s)" msgstr "%s(%s)에 연결하는 중입니다" -#: methods/connect.cc:86 +#: methods/connect.cc:87 #, c-format msgid "[IP: %s %s]" msgstr "[IP: %s %s]" -#: methods/connect.cc:93 +#: methods/connect.cc:94 #, c-format msgid "Could not create a socket for %s (f=%u t=%u p=%u)" msgstr "%s에 대한 소켓을 만들 수 없습니다 (f=%u t=%u p=%u)" -#: methods/connect.cc:99 +#: methods/connect.cc:100 #, c-format msgid "Cannot initiate the connection to %s:%s (%s)." msgstr "%s:%s에 연결을 초기화할 수 없습니다 (%s)." -#: methods/connect.cc:107 +#: methods/connect.cc:108 #, c-format msgid "Could not connect to %s:%s (%s), connection timed out" msgstr "%s:%s에 연결할 수 없습니다 (%s). 연결 제한 시간이 초과했습니다" -#: methods/connect.cc:125 +#: methods/connect.cc:126 #, c-format msgid "Could not connect to %s:%s (%s)." msgstr "%s:%s에 연결할 수 없습니다 (%s)." #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:153 methods/rsh.cc:433 +#: methods/connect.cc:154 methods/rsh.cc:433 #, c-format msgid "Connecting to %s" msgstr "%s에 연결하는 중입니다" -#: methods/connect.cc:172 methods/connect.cc:191 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format msgid "Could not resolve '%s'" msgstr "'%s'의 주소를 알아낼 수 없습니다" -#: methods/connect.cc:197 +#: methods/connect.cc:205 #, c-format msgid "Temporary failure resolving '%s'" msgstr "'%s'의 주소를 알아내는데 임시로 실패했습니다" -#: methods/connect.cc:200 +#: methods/connect.cc:209 +#, fuzzy, c-format +msgid "System error resolving '%s:%s' (%s)" +msgstr "'%s:%s'의 주소를 알아내는데 무언가 이상한 일이 발생했습니다 (%i - %s)" + +#: methods/connect.cc:211 #, c-format msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "'%s:%s'의 주소를 알아내는데 무언가 이상한 일이 발생했습니다 (%i - %s)" -#: methods/connect.cc:247 +#: methods/connect.cc:258 #, c-format msgid "Unable to connect to %s:%s:" msgstr "%s:%s에 연결할 수 없습니다:" @@ -1528,43 +1533,43 @@ msgstr "HTTP 서버에 범위 지원 기능이 잘못되어 있습니다" msgid "Unknown date format" msgstr "데이터 형식을 알 수 없습니다" -#: methods/http.cc:818 +#: methods/http.cc:822 msgid "Select failed" msgstr "select가 실패했습니다" -#: methods/http.cc:823 +#: methods/http.cc:827 msgid "Connection timed out" msgstr "연결 시간이 초과했습니다" -#: methods/http.cc:846 +#: methods/http.cc:850 msgid "Error writing to output file" msgstr "출력 파일에 쓰는데 오류가 발생했습니다" -#: methods/http.cc:877 +#: methods/http.cc:881 msgid "Error writing to file" msgstr "파일에 쓰는데 오류가 발생했습니다" -#: methods/http.cc:905 +#: methods/http.cc:909 msgid "Error writing to the file" msgstr "해당 파일에 쓰는데 오류가 발생했습니다" -#: methods/http.cc:919 +#: methods/http.cc:923 msgid "Error reading from server. Remote end closed connection" msgstr "서버에서 읽고 연결을 닫는데 오류가 발생했습니다" -#: methods/http.cc:921 +#: methods/http.cc:925 msgid "Error reading from server" msgstr "서버에서 읽는데 오류가 발생했습니다" -#: methods/http.cc:1194 +#: methods/http.cc:1198 msgid "Bad header data" msgstr "헤더 데이터가 잘못되었습니다" -#: methods/http.cc:1211 methods/http.cc:1266 +#: methods/http.cc:1215 methods/http.cc:1270 msgid "Connection failed" msgstr "연결이 실패했습니다" -#: methods/http.cc:1358 +#: methods/http.cc:1362 msgid "Internal error" msgstr "내부 오류" @@ -2377,6 +2382,16 @@ msgstr "%c%s... 오류!" msgid "%c%s... Done" msgstr "%c%s... 완료" +#: apt-pkg/contrib/progress.cc:179 +msgid "..." +msgstr "" + +#. Print the spinner +#: apt-pkg/contrib/progress.cc:195 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... 완료" + #: apt-pkg/contrib/cmndline.cc:80 #, c-format msgid "Command line option '%c' [from %s] is not known." @@ -2771,7 +2786,7 @@ msgid "" msgstr "" "%s 패키지를 다시 설치해야 하지만, 이 패키지의 아카이브를 찾을 수 없습니다." -#: apt-pkg/algorithms.cc:1228 +#: apt-pkg/algorithms.cc:1231 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2779,11 +2794,11 @@ msgstr "" "오류, pkgProblemResolver::Resolve가 망가졌습니다. 고정 패키지때문에 발생할 수" "도 있습니다." -#: apt-pkg/algorithms.cc:1230 +#: apt-pkg/algorithms.cc:1233 msgid "Unable to correct problems, you have held broken packages." msgstr "문제를 바로잡을 수 없습니다. 망가진 고정 패키지가 있습니다." -#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 +#: apt-pkg/algorithms.cc:1583 apt-pkg/algorithms.cc:1585 #, fuzzy msgid "" "Some index files failed to download. They have been ignored, or old ones " @@ -3254,7 +3269,7 @@ msgstr "" msgid "External solver failed without a proper error message" msgstr "" -#: apt-pkg/edsp.cc:557 apt-pkg/edsp.cc:560 apt-pkg/edsp.cc:565 +#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 msgid "Execute external solver" msgstr "" diff --git a/po/ku.po b/po/ku.po index befc58323..e584866a6 100644 --- a/po/ku.po +++ b/po/ku.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: apt-ku\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-03-14 08:05+0100\n" +"POT-Creation-Date: 2013-03-24 08:53+0100\n" "PO-Revision-Date: 2008-05-08 12:48+0200\n" "Last-Translator: Erdal Ronahi \n" "Language-Team: ku \n" @@ -590,7 +590,7 @@ msgstr "Betal." msgid "Do you want to continue [Y/n]? " msgstr "Dixwazî bidomînî [E/n]?" -#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1557 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Anîna %s %s biserneket\n" @@ -765,7 +765,7 @@ msgstr "" msgid "Calculating upgrade... " msgstr "Bilindkirin tê hesibandin..." -#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:116 msgid "Failed" msgstr "Serneket" @@ -1267,7 +1267,7 @@ msgstr "" msgid "Unable to accept connection" msgstr "" -#: methods/ftp.cc:872 methods/http.cc:1035 methods/rsh.cc:311 +#: methods/ftp.cc:872 methods/http.cc:1039 methods/rsh.cc:311 msgid "Problem hashing file" msgstr "" @@ -1295,59 +1295,64 @@ msgstr "Lêpirsîn" msgid "Unable to invoke " msgstr "%s venebû" -#: methods/connect.cc:75 +#: methods/connect.cc:76 #, c-format msgid "Connecting to %s (%s)" msgstr "Girêdan bi %s (%s) re pêk tê" -#: methods/connect.cc:86 +#: methods/connect.cc:87 #, c-format msgid "[IP: %s %s]" msgstr "[IP: %s %s]" -#: methods/connect.cc:93 +#: methods/connect.cc:94 #, c-format msgid "Could not create a socket for %s (f=%u t=%u p=%u)" msgstr "" -#: methods/connect.cc:99 +#: methods/connect.cc:100 #, c-format msgid "Cannot initiate the connection to %s:%s (%s)." msgstr "" -#: methods/connect.cc:107 +#: methods/connect.cc:108 #, c-format msgid "Could not connect to %s:%s (%s), connection timed out" msgstr "" -#: methods/connect.cc:125 +#: methods/connect.cc:126 #, c-format msgid "Could not connect to %s:%s (%s)." msgstr "" #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:153 methods/rsh.cc:433 +#: methods/connect.cc:154 methods/rsh.cc:433 #, c-format msgid "Connecting to %s" msgstr "Bi %s re tê girêdan" -#: methods/connect.cc:172 methods/connect.cc:191 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format msgid "Could not resolve '%s'" msgstr "Nikarî '%s' çareser bike" -#: methods/connect.cc:197 +#: methods/connect.cc:205 #, c-format msgid "Temporary failure resolving '%s'" msgstr "" -#: methods/connect.cc:200 +#: methods/connect.cc:209 +#, c-format +msgid "System error resolving '%s:%s' (%s)" +msgstr "" + +#: methods/connect.cc:211 #, c-format msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "" -#: methods/connect.cc:247 +#: methods/connect.cc:258 #, fuzzy, c-format msgid "Unable to connect to %s:%s:" msgstr "Nikare bi %s re girêdan pêk bîne %s:" @@ -1412,44 +1417,44 @@ msgstr "" msgid "Unknown date format" msgstr "" -#: methods/http.cc:818 +#: methods/http.cc:822 msgid "Select failed" msgstr "Hilbijartin neserketî" -#: methods/http.cc:823 +#: methods/http.cc:827 msgid "Connection timed out" msgstr "" -#: methods/http.cc:846 +#: methods/http.cc:850 #, fuzzy msgid "Error writing to output file" msgstr "Dema li dosyeya naverokê joreagahî dihate nivîsîn çewtî" -#: methods/http.cc:877 +#: methods/http.cc:881 msgid "Error writing to file" msgstr "Dema li pelî dihate nivîsîn çewtî" -#: methods/http.cc:905 +#: methods/http.cc:909 msgid "Error writing to the file" msgstr "Dema li pelî dihate nivîsîn çewtî" -#: methods/http.cc:919 +#: methods/http.cc:923 msgid "Error reading from server. Remote end closed connection" msgstr "" -#: methods/http.cc:921 +#: methods/http.cc:925 msgid "Error reading from server" msgstr "" -#: methods/http.cc:1194 +#: methods/http.cc:1198 msgid "Bad header data" msgstr "" -#: methods/http.cc:1211 methods/http.cc:1266 +#: methods/http.cc:1215 methods/http.cc:1270 msgid "Connection failed" msgstr "Girêdan pêk nehatiye" -#: methods/http.cc:1358 +#: methods/http.cc:1362 msgid "Internal error" msgstr "Çewtiya hundirîn" @@ -2198,6 +2203,16 @@ msgstr "%c%s... Çewtî!" msgid "%c%s... Done" msgstr "%c%s... Çêbû" +#: apt-pkg/contrib/progress.cc:179 +msgid "..." +msgstr "" + +#. Print the spinner +#: apt-pkg/contrib/progress.cc:195 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Çêbû" + #: apt-pkg/contrib/cmndline.cc:80 #, c-format msgid "Command line option '%c' [from %s] is not known." @@ -2584,17 +2599,17 @@ msgid "" "The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "" -#: apt-pkg/algorithms.cc:1228 +#: apt-pkg/algorithms.cc:1231 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." msgstr "" -#: apt-pkg/algorithms.cc:1230 +#: apt-pkg/algorithms.cc:1233 msgid "Unable to correct problems, you have held broken packages." msgstr "" -#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 +#: apt-pkg/algorithms.cc:1583 apt-pkg/algorithms.cc:1585 msgid "" "Some index files failed to download. They have been ignored, or old ones " "used instead." @@ -3048,7 +3063,7 @@ msgstr "" msgid "External solver failed without a proper error message" msgstr "" -#: apt-pkg/edsp.cc:557 apt-pkg/edsp.cc:560 apt-pkg/edsp.cc:565 +#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 msgid "Execute external solver" msgstr "" diff --git a/po/lt.po b/po/lt.po index e159afa43..a7209df6a 100644 --- a/po/lt.po +++ b/po/lt.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-03-14 08:05+0100\n" +"POT-Creation-Date: 2013-03-24 08:53+0100\n" "PO-Revision-Date: 2008-08-02 01:47-0400\n" "Last-Translator: Gintautas Miliauskas \n" "Language-Team: Lithuanian \n" @@ -598,7 +598,7 @@ msgstr "Nutraukti." msgid "Do you want to continue [Y/n]? " msgstr "Ar norite tęsti [T/n]? " -#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1557 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Nepavyko parsiųsti %s %s\n" @@ -782,7 +782,7 @@ msgstr "" msgid "Calculating upgrade... " msgstr "Skaičiuojami atnaujinimai... " -#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:116 msgid "Failed" msgstr "Nepavyko" @@ -1293,7 +1293,7 @@ msgstr "" msgid "Unable to accept connection" msgstr "" -#: methods/ftp.cc:872 methods/http.cc:1035 methods/rsh.cc:311 +#: methods/ftp.cc:872 methods/http.cc:1039 methods/rsh.cc:311 msgid "Problem hashing file" msgstr "" @@ -1320,59 +1320,64 @@ msgstr "Užklausti" msgid "Unable to invoke " msgstr "" -#: methods/connect.cc:75 +#: methods/connect.cc:76 #, c-format msgid "Connecting to %s (%s)" msgstr "Jungiamasi prie %s (%s)" -#: methods/connect.cc:86 +#: methods/connect.cc:87 #, c-format msgid "[IP: %s %s]" msgstr "[IP: %s %s]" -#: methods/connect.cc:93 +#: methods/connect.cc:94 #, c-format msgid "Could not create a socket for %s (f=%u t=%u p=%u)" msgstr "" -#: methods/connect.cc:99 +#: methods/connect.cc:100 #, c-format msgid "Cannot initiate the connection to %s:%s (%s)." msgstr "" -#: methods/connect.cc:107 +#: methods/connect.cc:108 #, c-format msgid "Could not connect to %s:%s (%s), connection timed out" msgstr "Nepavyko prisijungti prie %s:%s (%s), prisijungimas per ilgai užtruko" -#: methods/connect.cc:125 +#: methods/connect.cc:126 #, c-format msgid "Could not connect to %s:%s (%s)." msgstr "Nepavyko prisijungti prie %s:%s (%s)." #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:153 methods/rsh.cc:433 +#: methods/connect.cc:154 methods/rsh.cc:433 #, c-format msgid "Connecting to %s" msgstr "Jungiamasi prie %s" -#: methods/connect.cc:172 methods/connect.cc:191 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format msgid "Could not resolve '%s'" msgstr "Nepavyko surasti vardo „%s“" -#: methods/connect.cc:197 +#: methods/connect.cc:205 #, c-format msgid "Temporary failure resolving '%s'" msgstr "Laikinas sutrikimas ieškant vardo „%s“" -#: methods/connect.cc:200 +#: methods/connect.cc:209 +#, c-format +msgid "System error resolving '%s:%s' (%s)" +msgstr "" + +#: methods/connect.cc:211 #, c-format msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "" -#: methods/connect.cc:247 +#: methods/connect.cc:258 #, fuzzy, c-format msgid "Unable to connect to %s:%s:" msgstr "Nepavyko prisijungti prie %s %s:" @@ -1436,43 +1441,43 @@ msgstr "" msgid "Unknown date format" msgstr "" -#: methods/http.cc:818 +#: methods/http.cc:822 msgid "Select failed" msgstr "" -#: methods/http.cc:823 +#: methods/http.cc:827 msgid "Connection timed out" msgstr "Prisijungimo laiko limitas baigėsi" -#: methods/http.cc:846 +#: methods/http.cc:850 msgid "Error writing to output file" msgstr "" -#: methods/http.cc:877 +#: methods/http.cc:881 msgid "Error writing to file" msgstr "Klaida bandant rašyti į failą" -#: methods/http.cc:905 +#: methods/http.cc:909 msgid "Error writing to the file" msgstr "" -#: methods/http.cc:919 +#: methods/http.cc:923 msgid "Error reading from server. Remote end closed connection" msgstr "" -#: methods/http.cc:921 +#: methods/http.cc:925 msgid "Error reading from server" msgstr "" -#: methods/http.cc:1194 +#: methods/http.cc:1198 msgid "Bad header data" msgstr "" -#: methods/http.cc:1211 methods/http.cc:1266 +#: methods/http.cc:1215 methods/http.cc:1270 msgid "Connection failed" msgstr "Prisijungti nepavyko" -#: methods/http.cc:1358 +#: methods/http.cc:1362 msgid "Internal error" msgstr "Vidinė klaida" @@ -2292,6 +2297,16 @@ msgstr "%c%s... Klaida!" msgid "%c%s... Done" msgstr "%c%s... Baigta" +#: apt-pkg/contrib/progress.cc:179 +msgid "..." +msgstr "" + +#. Print the spinner +#: apt-pkg/contrib/progress.cc:195 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Baigta" + #: apt-pkg/contrib/cmndline.cc:80 #, c-format msgid "Command line option '%c' [from %s] is not known." @@ -2678,17 +2693,17 @@ msgid "" "The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "" -#: apt-pkg/algorithms.cc:1228 +#: apt-pkg/algorithms.cc:1231 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." msgstr "" -#: apt-pkg/algorithms.cc:1230 +#: apt-pkg/algorithms.cc:1233 msgid "Unable to correct problems, you have held broken packages." msgstr "" -#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 +#: apt-pkg/algorithms.cc:1583 apt-pkg/algorithms.cc:1585 #, fuzzy msgid "" "Some index files failed to download. They have been ignored, or old ones " @@ -3147,7 +3162,7 @@ msgstr "" msgid "External solver failed without a proper error message" msgstr "" -#: apt-pkg/edsp.cc:557 apt-pkg/edsp.cc:560 apt-pkg/edsp.cc:565 +#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 msgid "Execute external solver" msgstr "" diff --git a/po/mr.po b/po/mr.po index 1bedf2b34..3b2b8a45e 100644 --- a/po/mr.po +++ b/po/mr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-03-14 08:05+0100\n" +"POT-Creation-Date: 2013-03-24 08:53+0100\n" "PO-Revision-Date: 2008-11-20 23:27+0530\n" "Last-Translator: Sampada \n" "Language-Team: Marathi, janabhaaratii, C-DAC, Mumbai, India " @@ -629,7 +629,7 @@ msgstr "व्यत्यय/बंद करा." msgid "Do you want to continue [Y/n]? " msgstr "तुम्हाला पुढे जायचे आहे [Y/n]? " -#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1557 #, c-format msgid "Failed to fetch %s %s\n" msgstr "%s %s आणणे असफल\n" @@ -818,7 +818,7 @@ msgstr "" msgid "Calculating upgrade... " msgstr "पुढिल आवृत्तीची गणती करीत आहे..." -#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:116 msgid "Failed" msgstr "असमर्थ" @@ -1369,7 +1369,7 @@ msgstr "डेटा सॉकेट जोडणी वेळेअभावी msgid "Unable to accept connection" msgstr "जोडणी स्विकारण्यास असमर्थ" -#: methods/ftp.cc:872 methods/http.cc:1035 methods/rsh.cc:311 +#: methods/ftp.cc:872 methods/http.cc:1039 methods/rsh.cc:311 msgid "Problem hashing file" msgstr "फाईल हॅश करण्यात त्रुटी" @@ -1396,59 +1396,64 @@ msgstr "प्रश्न" msgid "Unable to invoke " msgstr "जारी करण्यास करण्यास असमर्थ" -#: methods/connect.cc:75 +#: methods/connect.cc:76 #, c-format msgid "Connecting to %s (%s)" msgstr "%s (%s) ला जोडत आहे" -#: methods/connect.cc:86 +#: methods/connect.cc:87 #, c-format msgid "[IP: %s %s]" msgstr "[आयपी:%s %s]" -#: methods/connect.cc:93 +#: methods/connect.cc:94 #, c-format msgid "Could not create a socket for %s (f=%u t=%u p=%u)" msgstr "%s (f=%u t=%u p=%u) साठी सॉकेट तयार करू शकत नाही" -#: methods/connect.cc:99 +#: methods/connect.cc:100 #, c-format msgid "Cannot initiate the connection to %s:%s (%s)." msgstr "%s:%s (%s). साठी जोडणी इनिशिएट/पुढाकारीत करू शकत नाही" -#: methods/connect.cc:107 +#: methods/connect.cc:108 #, c-format msgid "Could not connect to %s:%s (%s), connection timed out" msgstr "%s:%s (%s) ला जोडू शकत नाही,जोडणी वेळेअभावी तुटली" -#: methods/connect.cc:125 +#: methods/connect.cc:126 #, c-format msgid "Could not connect to %s:%s (%s)." msgstr "%s:%s (%s) ला जोडू शकत नाही" #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:153 methods/rsh.cc:433 +#: methods/connect.cc:154 methods/rsh.cc:433 #, c-format msgid "Connecting to %s" msgstr "%s ला जोडत आहे" -#: methods/connect.cc:172 methods/connect.cc:191 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format msgid "Could not resolve '%s'" msgstr "%s रिझॉल्व्ह होऊ शकत नाही " -#: methods/connect.cc:197 +#: methods/connect.cc:205 #, c-format msgid "Temporary failure resolving '%s'" msgstr "'%s' रिझॉल्व्ह करताना तात्पुरती त्रुटी" -#: methods/connect.cc:200 +#: methods/connect.cc:209 +#, fuzzy, c-format +msgid "System error resolving '%s:%s' (%s)" +msgstr "%s:%s' (%i) रिझॉल्व्ह होत असताना काहीतरी वाईट घडले" + +#: methods/connect.cc:211 #, fuzzy, c-format msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "%s:%s' (%i) रिझॉल्व्ह होत असताना काहीतरी वाईट घडले" -#: methods/connect.cc:247 +#: methods/connect.cc:258 #, fuzzy, c-format msgid "Unable to connect to %s:%s:" msgstr "%s %s ला जोडण्यास असमर्थ:" @@ -1514,43 +1519,43 @@ msgstr "HTTP सर्व्हरने विस्तार तांत् msgid "Unknown date format" msgstr "अपरिचित दिनांक प्रकार/स्वरूप " -#: methods/http.cc:818 +#: methods/http.cc:822 msgid "Select failed" msgstr "चुकले/असमर्थ निवड करा" -#: methods/http.cc:823 +#: methods/http.cc:827 msgid "Connection timed out" msgstr "जोडणी वेळेअभावी तुटली" -#: methods/http.cc:846 +#: methods/http.cc:850 msgid "Error writing to output file" msgstr "निर्गत फाईल मध्ये लिहिताना त्रुटी/चूक" -#: methods/http.cc:877 +#: methods/http.cc:881 msgid "Error writing to file" msgstr "फाईल मध्ये लिहिण्यात चूक/त्रुटी" -#: methods/http.cc:905 +#: methods/http.cc:909 msgid "Error writing to the file" msgstr "फाईल मध्ये लिहिण्यात चूक/त्रुटी" -#: methods/http.cc:919 +#: methods/http.cc:923 msgid "Error reading from server. Remote end closed connection" msgstr "सर्व्हर मधून वाचण्यात चूक. लांब शेवट आणि बंद झालेली जोडणी" -#: methods/http.cc:921 +#: methods/http.cc:925 msgid "Error reading from server" msgstr "सर्व्हर मधून वाचण्यात चूक" -#: methods/http.cc:1194 +#: methods/http.cc:1198 msgid "Bad header data" msgstr "चुकीचा शीर्षक डाटा" -#: methods/http.cc:1211 methods/http.cc:1266 +#: methods/http.cc:1215 methods/http.cc:1270 msgid "Connection failed" msgstr "जोडणी अयशस्वी" -#: methods/http.cc:1358 +#: methods/http.cc:1362 msgid "Internal error" msgstr "अंतर्गत त्रुटी" @@ -2359,6 +2364,16 @@ msgstr "%c%s... चूक/त्रुटी!" msgid "%c%s... Done" msgstr "%c%s... झाले" +#: apt-pkg/contrib/progress.cc:179 +msgid "..." +msgstr "" + +#. Print the spinner +#: apt-pkg/contrib/progress.cc:195 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... झाले" + #: apt-pkg/contrib/cmndline.cc:80 #, c-format msgid "Command line option '%c' [from %s] is not known." @@ -2750,7 +2765,7 @@ msgid "" msgstr "" "%s पॅकेज पुनः:अधिष्ठापित करण्याची गरज आहे, परंतु मला त्यासाठी ऑर्काइव्ह सापडू शकले नाही." -#: apt-pkg/algorithms.cc:1228 +#: apt-pkg/algorithms.cc:1231 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2758,11 +2773,11 @@ msgstr "" "दोष,पॅकेज समस्या निवारक::निवारण करतांना अडथळा निर्माण झाला, ह्याचे कारण स्थगित " "पॅकेजेस असू शकते." -#: apt-pkg/algorithms.cc:1230 +#: apt-pkg/algorithms.cc:1233 msgid "Unable to correct problems, you have held broken packages." msgstr "अडचणी दूर करण्यास असमर्थ, तुम्ही तुटलेले पॅकेज घेतलेले आहे." -#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 +#: apt-pkg/algorithms.cc:1583 apt-pkg/algorithms.cc:1585 #, fuzzy msgid "" "Some index files failed to download. They have been ignored, or old ones " @@ -3234,7 +3249,7 @@ msgstr "" msgid "External solver failed without a proper error message" msgstr "" -#: apt-pkg/edsp.cc:557 apt-pkg/edsp.cc:560 apt-pkg/edsp.cc:565 +#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 msgid "Execute external solver" msgstr "" diff --git a/po/nb.po b/po/nb.po index 397e74536..b51e2be57 100644 --- a/po/nb.po +++ b/po/nb.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-03-14 08:05+0100\n" +"POT-Creation-Date: 2013-03-24 08:53+0100\n" "PO-Revision-Date: 2010-09-01 21:10+0200\n" "Last-Translator: Hans Fredrik Nordhaug \n" "Language-Team: Norwegian Bokmål \n" @@ -640,7 +640,7 @@ msgstr "Avbryter." msgid "Do you want to continue [Y/n]? " msgstr "Vil du fortsette [Y/n]? " -#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1557 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Klarte ikke å skaffe %s %s\n" @@ -831,7 +831,7 @@ msgstr "" msgid "Calculating upgrade... " msgstr "Beregner oppgradering... " -#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:116 msgid "Failed" msgstr "Mislyktes" @@ -1397,7 +1397,7 @@ msgstr "Tidsavbrudd på tilkoblingen til datasokkelen" msgid "Unable to accept connection" msgstr "Klarte ikke å godta tilkoblingen" -#: methods/ftp.cc:872 methods/http.cc:1035 methods/rsh.cc:311 +#: methods/ftp.cc:872 methods/http.cc:1039 methods/rsh.cc:311 msgid "Problem hashing file" msgstr "Problem ved oppretting av nøkkel for fil" @@ -1424,59 +1424,64 @@ msgstr "Spørring" msgid "Unable to invoke " msgstr "Klarte ikke å starte" -#: methods/connect.cc:75 +#: methods/connect.cc:76 #, c-format msgid "Connecting to %s (%s)" msgstr "Kobler til %s (%s)" -#: methods/connect.cc:86 +#: methods/connect.cc:87 #, c-format msgid "[IP: %s %s]" msgstr "[IP: %s %s]" -#: methods/connect.cc:93 +#: methods/connect.cc:94 #, c-format msgid "Could not create a socket for %s (f=%u t=%u p=%u)" msgstr "Klarte ikke å opprette en sokkel for %s (f=%u t=%u p=%u)" -#: methods/connect.cc:99 +#: methods/connect.cc:100 #, c-format msgid "Cannot initiate the connection to %s:%s (%s)." msgstr "Klarte ikke å starte forbindelsen til %s:%s (%s)." -#: methods/connect.cc:107 +#: methods/connect.cc:108 #, c-format msgid "Could not connect to %s:%s (%s), connection timed out" msgstr "Klarte ikke å koble til %s:%s (%s), tidsavbrudd på forbindelsen" -#: methods/connect.cc:125 +#: methods/connect.cc:126 #, c-format msgid "Could not connect to %s:%s (%s)." msgstr "Klarte ikke å koble til %s:%s (%s)." #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:153 methods/rsh.cc:433 +#: methods/connect.cc:154 methods/rsh.cc:433 #, c-format msgid "Connecting to %s" msgstr "Kobler til %s" -#: methods/connect.cc:172 methods/connect.cc:191 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format msgid "Could not resolve '%s'" msgstr "Klarte ikke å slå opp «%s»" -#: methods/connect.cc:197 +#: methods/connect.cc:205 #, c-format msgid "Temporary failure resolving '%s'" msgstr "Midlertidig feil ved oppslag av «%s»" -#: methods/connect.cc:200 +#: methods/connect.cc:209 +#, fuzzy, c-format +msgid "System error resolving '%s:%s' (%s)" +msgstr "Noe galt skjedde ved oppslag av «%s:%s» (%i - %s)" + +#: methods/connect.cc:211 #, c-format msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "Noe galt skjedde ved oppslag av «%s:%s» (%i - %s)" -#: methods/connect.cc:247 +#: methods/connect.cc:258 #, c-format msgid "Unable to connect to %s:%s:" msgstr "Klarte ikke koble til %s:%s:" @@ -1543,43 +1548,43 @@ msgstr "Denne HTTP-tjeneren har ødelagt støtte for område" msgid "Unknown date format" msgstr "Ukjent datoformat" -#: methods/http.cc:818 +#: methods/http.cc:822 msgid "Select failed" msgstr "Utvalget mislykkes" -#: methods/http.cc:823 +#: methods/http.cc:827 msgid "Connection timed out" msgstr "Tidsavbrudd på forbindelsen" -#: methods/http.cc:846 +#: methods/http.cc:850 msgid "Error writing to output file" msgstr "Feil ved skriving til utfil" -#: methods/http.cc:877 +#: methods/http.cc:881 msgid "Error writing to file" msgstr "Feil ved skriving til fil" -#: methods/http.cc:905 +#: methods/http.cc:909 msgid "Error writing to the file" msgstr "Feil ved skriving til fila" -#: methods/http.cc:919 +#: methods/http.cc:923 msgid "Error reading from server. Remote end closed connection" msgstr "Feil ved lesing fra tjeneren. Forbindelsen ble lukket i andre enden" -#: methods/http.cc:921 +#: methods/http.cc:925 msgid "Error reading from server" msgstr "Feil ved lesing fra tjeneren" -#: methods/http.cc:1194 +#: methods/http.cc:1198 msgid "Bad header data" msgstr "Ødelagte hodedata" -#: methods/http.cc:1211 methods/http.cc:1266 +#: methods/http.cc:1215 methods/http.cc:1270 msgid "Connection failed" msgstr "Forbindelsen mislykkes" -#: methods/http.cc:1358 +#: methods/http.cc:1362 msgid "Internal error" msgstr "Intern feil" @@ -2399,6 +2404,16 @@ msgstr "%c%s ... Feil" msgid "%c%s... Done" msgstr "%c%s ... Ferdig" +#: apt-pkg/contrib/progress.cc:179 +msgid "..." +msgstr "" + +#. Print the spinner +#: apt-pkg/contrib/progress.cc:195 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s ... Ferdig" + #: apt-pkg/contrib/cmndline.cc:80 #, c-format msgid "Command line option '%c' [from %s] is not known." @@ -2792,7 +2807,7 @@ msgid "" msgstr "" "Pakka %s trenger å installeres på nytt, men jeg finner ikke lageret for den." -#: apt-pkg/algorithms.cc:1228 +#: apt-pkg/algorithms.cc:1231 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2800,11 +2815,11 @@ msgstr "" "Feil, pkgProblemResolver::Resolve skapte et brudd, det kan skyldes pakker " "som holdes tilbake." -#: apt-pkg/algorithms.cc:1230 +#: apt-pkg/algorithms.cc:1233 msgid "Unable to correct problems, you have held broken packages." msgstr "Klarer ikke å rette problemene, noen ødelagte pakker er holdt tilbake." -#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 +#: apt-pkg/algorithms.cc:1583 apt-pkg/algorithms.cc:1585 #, fuzzy msgid "" "Some index files failed to download. They have been ignored, or old ones " @@ -3283,7 +3298,7 @@ msgstr "" msgid "External solver failed without a proper error message" msgstr "" -#: apt-pkg/edsp.cc:557 apt-pkg/edsp.cc:560 apt-pkg/edsp.cc:565 +#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 msgid "Execute external solver" msgstr "" diff --git a/po/ne.po b/po/ne.po index 672ecbdc2..02c55d0d8 100644 --- a/po/ne.po +++ b/po/ne.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: apt_po\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-03-14 08:05+0100\n" +"POT-Creation-Date: 2013-03-24 08:53+0100\n" "PO-Revision-Date: 2006-06-12 14:35+0545\n" "Last-Translator: Shiva Pokharel \n" "Language-Team: Nepali \n" @@ -633,7 +633,7 @@ msgstr "परित्याग गर्नुहोस् ।" msgid "Do you want to continue [Y/n]? " msgstr "के तपाईँ निरन्तरता दिन चाहनुहुन्छ [Y/n]? " -#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1557 #, c-format msgid "Failed to fetch %s %s\n" msgstr "%s %s तान्न असफल भयो\n" @@ -818,7 +818,7 @@ msgstr "" msgid "Calculating upgrade... " msgstr "स्तर वृद्धि गणना गरिदैछ..." -#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:116 msgid "Failed" msgstr "असफल भयो" @@ -1367,7 +1367,7 @@ msgstr "डेटा सकेटको जडान समय सकियो" msgid "Unable to accept connection" msgstr "जडान स्वीकार गर्न असक्षम भयो" -#: methods/ftp.cc:872 methods/http.cc:1035 methods/rsh.cc:311 +#: methods/ftp.cc:872 methods/http.cc:1039 methods/rsh.cc:311 msgid "Problem hashing file" msgstr "समस्या द्रुतान्वेषण फाइल" @@ -1394,59 +1394,64 @@ msgstr "क्वेरी" msgid "Unable to invoke " msgstr "आह्वान गर्न असक्षम भयो" -#: methods/connect.cc:75 +#: methods/connect.cc:76 #, c-format msgid "Connecting to %s (%s)" msgstr "%s (%s) मा जडान गरिदैछ" -#: methods/connect.cc:86 +#: methods/connect.cc:87 #, c-format msgid "[IP: %s %s]" msgstr "[IP: %s %s]" -#: methods/connect.cc:93 +#: methods/connect.cc:94 #, c-format msgid "Could not create a socket for %s (f=%u t=%u p=%u)" msgstr "%s (f=%u t=%u p=%u) को लागि सकेट सिर्जना गर्न सकिएन" -#: methods/connect.cc:99 +#: methods/connect.cc:100 #, c-format msgid "Cannot initiate the connection to %s:%s (%s)." msgstr " %s:%s (%s) मा जडान सुरुवात गर्न सकेन" -#: methods/connect.cc:107 +#: methods/connect.cc:108 #, c-format msgid "Could not connect to %s:%s (%s), connection timed out" msgstr "%s:%s (%s) मा जडान गर्न सकिएन, जडान समय सकियो" -#: methods/connect.cc:125 +#: methods/connect.cc:126 #, c-format msgid "Could not connect to %s:%s (%s)." msgstr " %s:%s (%s) मा जडान गर्न सकिएन ।" #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:153 methods/rsh.cc:433 +#: methods/connect.cc:154 methods/rsh.cc:433 #, c-format msgid "Connecting to %s" msgstr "%s मा जडान गरिदैछ" -#: methods/connect.cc:172 methods/connect.cc:191 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format msgid "Could not resolve '%s'" msgstr "'%s' हल गर्न सकिएन" -#: methods/connect.cc:197 +#: methods/connect.cc:205 #, c-format msgid "Temporary failure resolving '%s'" msgstr "'%s' हल गर्दा अस्थायी असफल" -#: methods/connect.cc:200 +#: methods/connect.cc:209 +#, fuzzy, c-format +msgid "System error resolving '%s:%s' (%s)" +msgstr " '%s:%s' (%i) हल गर्दा केही दुष्ट घट्यो" + +#: methods/connect.cc:211 #, fuzzy, c-format msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr " '%s:%s' (%i) हल गर्दा केही दुष्ट घट्यो" -#: methods/connect.cc:247 +#: methods/connect.cc:258 #, fuzzy, c-format msgid "Unable to connect to %s:%s:" msgstr "%s %s मा जडान गर्न असफल भयो:" @@ -1511,43 +1516,43 @@ msgstr "HTTP सर्भर संग भाँचिएको दायरा msgid "Unknown date format" msgstr "अज्ञात मिति ढाँचा" -#: methods/http.cc:818 +#: methods/http.cc:822 msgid "Select failed" msgstr "असफल चयन गर्नुहोस्" -#: methods/http.cc:823 +#: methods/http.cc:827 msgid "Connection timed out" msgstr "जडान समय सकियो" -#: methods/http.cc:846 +#: methods/http.cc:850 msgid "Error writing to output file" msgstr "निर्गात फाइलमा त्रुटि लेखिदैछ" -#: methods/http.cc:877 +#: methods/http.cc:881 msgid "Error writing to file" msgstr "फाइलमा त्रुटि लेखिदैछ" -#: methods/http.cc:905 +#: methods/http.cc:909 msgid "Error writing to the file" msgstr "फाइलमा त्रुटि लेखिदैछ" -#: methods/http.cc:919 +#: methods/http.cc:923 msgid "Error reading from server. Remote end closed connection" msgstr "सर्भरबाट त्रुटि पढिदैछ । दूर गन्तब्य बन्द जडान" -#: methods/http.cc:921 +#: methods/http.cc:925 msgid "Error reading from server" msgstr "सर्भरबाट त्रुटि पढिदैछ" -#: methods/http.cc:1194 +#: methods/http.cc:1198 msgid "Bad header data" msgstr "खराब हेडर डेटा" -#: methods/http.cc:1211 methods/http.cc:1266 +#: methods/http.cc:1215 methods/http.cc:1270 msgid "Connection failed" msgstr "जडान असफल भयो" -#: methods/http.cc:1358 +#: methods/http.cc:1362 msgid "Internal error" msgstr "आन्तरिक त्रुटि" @@ -2356,6 +2361,16 @@ msgstr "%c%s... त्रुटि!" msgid "%c%s... Done" msgstr "%c%s... गरियो" +#: apt-pkg/contrib/progress.cc:179 +msgid "..." +msgstr "" + +#. Print the spinner +#: apt-pkg/contrib/progress.cc:195 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... गरियो" + #: apt-pkg/contrib/cmndline.cc:80 #, c-format msgid "Command line option '%c' [from %s] is not known." @@ -2747,7 +2762,7 @@ msgid "" "The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "प्याकेज %s पुन:स्थापना हुन चाहन्छ, तर यसको लागि मैले एउटा संग्रह फेला पार्न सकिन ।" -#: apt-pkg/algorithms.cc:1228 +#: apt-pkg/algorithms.cc:1231 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2755,11 +2770,11 @@ msgstr "" "त्रुटि, pkgProblemResolver:: समाधानले विच्छेदन सिर्जना गर्दछ, यो भइरहेको प्याकेजहरुको " "कारणले गर्दा हो ।" -#: apt-pkg/algorithms.cc:1230 +#: apt-pkg/algorithms.cc:1233 msgid "Unable to correct problems, you have held broken packages." msgstr "समस्याहरू सुधार्न असक्षम भयो, तपाईँले प्याकेजहरु भाँच्नुभयो ।" -#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 +#: apt-pkg/algorithms.cc:1583 apt-pkg/algorithms.cc:1585 #, fuzzy msgid "" "Some index files failed to download. They have been ignored, or old ones " @@ -3225,7 +3240,7 @@ msgstr "" msgid "External solver failed without a proper error message" msgstr "" -#: apt-pkg/edsp.cc:557 apt-pkg/edsp.cc:560 apt-pkg/edsp.cc:565 +#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 msgid "Execute external solver" msgstr "" diff --git a/po/nl.po b/po/nl.po index 67840c55b..fc47d1e3f 100644 --- a/po/nl.po +++ b/po/nl.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.8.15.9\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-03-14 08:05+0100\n" +"POT-Creation-Date: 2013-03-24 08:53+0100\n" "PO-Revision-Date: 2011-12-05 17:10+0100\n" "Last-Translator: Jeroen Schot \n" "Language-Team: Debian l10n Dutch \n" @@ -642,7 +642,7 @@ msgstr "Afbreken." msgid "Do you want to continue [Y/n]? " msgstr "Wilt u doorgaan [J/n]? " -#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1557 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Ophalen van %s is mislukt %s\n" @@ -836,7 +836,7 @@ msgstr "" msgid "Calculating upgrade... " msgstr "Opwaardering wordt doorgerekend... " -#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:116 msgid "Failed" msgstr "Mislukt" @@ -1413,7 +1413,7 @@ msgstr "Datasocket verbinding is verlopen" msgid "Unable to accept connection" msgstr "Kan de verbinding niet aanvaarden" -#: methods/ftp.cc:872 methods/http.cc:1035 methods/rsh.cc:311 +#: methods/ftp.cc:872 methods/http.cc:1039 methods/rsh.cc:311 msgid "Problem hashing file" msgstr "Probleem bij het hashen van het bestand" @@ -1440,59 +1440,64 @@ msgstr "Zoekopdracht" msgid "Unable to invoke " msgstr "Aanroepen mislukt van " -#: methods/connect.cc:75 +#: methods/connect.cc:76 #, c-format msgid "Connecting to %s (%s)" msgstr "Er wordt verbinding gemaakt met %s (%s)" -#: methods/connect.cc:86 +#: methods/connect.cc:87 #, c-format msgid "[IP: %s %s]" msgstr "[IP: %s %s]" -#: methods/connect.cc:93 +#: methods/connect.cc:94 #, c-format msgid "Could not create a socket for %s (f=%u t=%u p=%u)" msgstr "Kon de socket voor %s (f=%u t=%u p=%u) niet aanmaken" -#: methods/connect.cc:99 +#: methods/connect.cc:100 #, c-format msgid "Cannot initiate the connection to %s:%s (%s)." msgstr "Kan de verbinding met %s:%s (%s) niet aangaan." -#: methods/connect.cc:107 +#: methods/connect.cc:108 #, c-format msgid "Could not connect to %s:%s (%s), connection timed out" msgstr "Kon niet verbinden met %s:%s (%s), de verbinding verliep" -#: methods/connect.cc:125 +#: methods/connect.cc:126 #, c-format msgid "Could not connect to %s:%s (%s)." msgstr "Kon niet verbinden met %s:%s (%s)." #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:153 methods/rsh.cc:433 +#: methods/connect.cc:154 methods/rsh.cc:433 #, c-format msgid "Connecting to %s" msgstr "Er wordt verbinding gemaakt met %s" -#: methods/connect.cc:172 methods/connect.cc:191 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format msgid "Could not resolve '%s'" msgstr "Kon '%s' niet vinden" -#: methods/connect.cc:197 +#: methods/connect.cc:205 #, c-format msgid "Temporary failure resolving '%s'" msgstr "Tijdelijke fout bij het opzoeken van '%s'" -#: methods/connect.cc:200 +#: methods/connect.cc:209 +#, fuzzy, c-format +msgid "System error resolving '%s:%s' (%s)" +msgstr "Er gebeurde iets raars bij het oplossen van '%s:%s' (%i - %s)" + +#: methods/connect.cc:211 #, c-format msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "Er gebeurde iets raars bij het oplossen van '%s:%s' (%i - %s)" -#: methods/connect.cc:247 +#: methods/connect.cc:258 #, c-format msgid "Unable to connect to %s:%s:" msgstr "Kan geen verbinding maken met %s %s:" @@ -1564,44 +1569,44 @@ msgstr "De bereik-ondersteuning van deze HTTP-server werkt niet" msgid "Unknown date format" msgstr "Onbekend datumformaat" -#: methods/http.cc:818 +#: methods/http.cc:822 msgid "Select failed" msgstr "Selectie is mislukt" -#: methods/http.cc:823 +#: methods/http.cc:827 msgid "Connection timed out" msgstr "Verbinding verliep" -#: methods/http.cc:846 +#: methods/http.cc:850 msgid "Error writing to output file" msgstr "Fout bij het schrijven naar het uitvoerbestand" -#: methods/http.cc:877 +#: methods/http.cc:881 msgid "Error writing to file" msgstr "Fout bij het schrijven naar bestand" -#: methods/http.cc:905 +#: methods/http.cc:909 msgid "Error writing to the file" msgstr "Fout bij het schrijven naar het bestand" -#: methods/http.cc:919 +#: methods/http.cc:923 msgid "Error reading from server. Remote end closed connection" msgstr "" "Fout bij het lezen van de server, andere kant heeft de verbinding gesloten" -#: methods/http.cc:921 +#: methods/http.cc:925 msgid "Error reading from server" msgstr "Fout bij het lezen van de server" -#: methods/http.cc:1194 +#: methods/http.cc:1198 msgid "Bad header data" msgstr "Foute koptekstdata" -#: methods/http.cc:1211 methods/http.cc:1266 +#: methods/http.cc:1215 methods/http.cc:1270 msgid "Connection failed" msgstr "Verbinding mislukt" -#: methods/http.cc:1358 +#: methods/http.cc:1362 msgid "Internal error" msgstr "Interne fout" @@ -2429,6 +2434,16 @@ msgstr "%c%s... Fout!" msgid "%c%s... Done" msgstr "%c%s... Klaar" +#: apt-pkg/contrib/progress.cc:179 +msgid "..." +msgstr "" + +#. Print the spinner +#: apt-pkg/contrib/progress.cc:195 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Klaar" + #: apt-pkg/contrib/cmndline.cc:80 #, c-format msgid "Command line option '%c' [from %s] is not known." @@ -2830,7 +2845,7 @@ msgstr "" "Pakket %s moet opnieuw geïnstalleerd worden, maar er kan geen archief voor " "gevonden worden." -#: apt-pkg/algorithms.cc:1228 +#: apt-pkg/algorithms.cc:1231 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2838,11 +2853,11 @@ msgstr "" "Fout, pkgProblemResolver::Resolve maakte scheidingen aan, dit kan " "veroorzaakt worden door vastgehouden pakketten." -#: apt-pkg/algorithms.cc:1230 +#: apt-pkg/algorithms.cc:1233 msgid "Unable to correct problems, you have held broken packages." msgstr "Kan problemen niet verhelpen, u houdt defecte pakketten vast." -#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 +#: apt-pkg/algorithms.cc:1583 apt-pkg/algorithms.cc:1585 #, fuzzy msgid "" "Some index files failed to download. They have been ignored, or old ones " @@ -3338,7 +3353,7 @@ msgstr "" msgid "External solver failed without a proper error message" msgstr "" -#: apt-pkg/edsp.cc:557 apt-pkg/edsp.cc:560 apt-pkg/edsp.cc:565 +#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 msgid "Execute external solver" msgstr "" diff --git a/po/nn.po b/po/nn.po index 95b70357e..9c4e9970e 100644 --- a/po/nn.po +++ b/po/nn.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: apt_nn\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-03-14 08:05+0100\n" +"POT-Creation-Date: 2013-03-24 08:53+0100\n" "PO-Revision-Date: 2005-02-14 23:30+0100\n" "Last-Translator: Havard Korsvoll \n" "Language-Team: Norwegian nynorsk \n" @@ -645,7 +645,7 @@ msgstr "Avbryt." msgid "Do you want to continue [Y/n]? " msgstr "Vil du halda fram [J/n]? " -#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1557 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Klarte ikkje henta %s %s\n" @@ -830,7 +830,7 @@ msgstr "" msgid "Calculating upgrade... " msgstr "Reknar ut oppgradering ... " -#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:116 msgid "Failed" msgstr "Mislukkast" @@ -1384,7 +1384,7 @@ msgstr "Tidsavbrot p msgid "Unable to accept connection" msgstr "Klarte ikkje godta tilkoplinga" -#: methods/ftp.cc:872 methods/http.cc:1035 methods/rsh.cc:311 +#: methods/ftp.cc:872 methods/http.cc:1039 methods/rsh.cc:311 msgid "Problem hashing file" msgstr "Problem ved oppretting av nkkel for fil" @@ -1411,59 +1411,64 @@ msgstr "Sp msgid "Unable to invoke " msgstr "Klarte ikkje starta " -#: methods/connect.cc:75 +#: methods/connect.cc:76 #, c-format msgid "Connecting to %s (%s)" msgstr "Koplar til %s (%s)" -#: methods/connect.cc:86 +#: methods/connect.cc:87 #, c-format msgid "[IP: %s %s]" msgstr "[IP: %s %s]" -#: methods/connect.cc:93 +#: methods/connect.cc:94 #, c-format msgid "Could not create a socket for %s (f=%u t=%u p=%u)" msgstr "Klarte ikkje oppretta sokkel for %s (f=%u t=%u p=%u)" -#: methods/connect.cc:99 +#: methods/connect.cc:100 #, c-format msgid "Cannot initiate the connection to %s:%s (%s)." msgstr "Klarte ikkje initiera sambandet til %s:%s (%s)." -#: methods/connect.cc:107 +#: methods/connect.cc:108 #, c-format msgid "Could not connect to %s:%s (%s), connection timed out" msgstr "Klarte ikkje kopla til %s:%s (%s), tidsavbrot p sambandet" -#: methods/connect.cc:125 +#: methods/connect.cc:126 #, c-format msgid "Could not connect to %s:%s (%s)." msgstr "Klarte ikkje kopla til %s:%s (%s)." #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:153 methods/rsh.cc:433 +#: methods/connect.cc:154 methods/rsh.cc:433 #, c-format msgid "Connecting to %s" msgstr "Koplar til %s" -#: methods/connect.cc:172 methods/connect.cc:191 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format msgid "Could not resolve '%s'" msgstr "Klarte ikkje sl opp %s" -#: methods/connect.cc:197 +#: methods/connect.cc:205 #, c-format msgid "Temporary failure resolving '%s'" msgstr "Mellombels feil ved oppslag av %s" -#: methods/connect.cc:200 +#: methods/connect.cc:209 +#, fuzzy, c-format +msgid "System error resolving '%s:%s' (%s)" +msgstr "Det hende noko dumt ved oppslag av %s:%s (%i)" + +#: methods/connect.cc:211 #, fuzzy, c-format msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "Det hende noko dumt ved oppslag av %s:%s (%i)" -#: methods/connect.cc:247 +#: methods/connect.cc:258 #, fuzzy, c-format msgid "Unable to connect to %s:%s:" msgstr "Klarte ikkje kopla til %s %s:" @@ -1528,43 +1533,43 @@ msgstr "Denne HTTP-tenaren har msgid "Unknown date format" msgstr "Ukjend datoformat" -#: methods/http.cc:818 +#: methods/http.cc:822 msgid "Select failed" msgstr "Utvalet mislukkast" -#: methods/http.cc:823 +#: methods/http.cc:827 msgid "Connection timed out" msgstr "Tidsavbrot p sambandet" -#: methods/http.cc:846 +#: methods/http.cc:850 msgid "Error writing to output file" msgstr "Feil ved skriving til utfil" -#: methods/http.cc:877 +#: methods/http.cc:881 msgid "Error writing to file" msgstr "Feil ved skriving til fil" -#: methods/http.cc:905 +#: methods/http.cc:909 msgid "Error writing to the file" msgstr "Feil ved skriving til fila" -#: methods/http.cc:919 +#: methods/http.cc:923 msgid "Error reading from server. Remote end closed connection" msgstr "Feil ved lesing fr tenaren. Sambandet vart lukka i andre enden" -#: methods/http.cc:921 +#: methods/http.cc:925 msgid "Error reading from server" msgstr "Feil ved lesing fr tenaren" -#: methods/http.cc:1194 +#: methods/http.cc:1198 msgid "Bad header data" msgstr "ydelagde hovuddata" -#: methods/http.cc:1211 methods/http.cc:1266 +#: methods/http.cc:1215 methods/http.cc:1270 msgid "Connection failed" msgstr "Sambandet mislukkast" -#: methods/http.cc:1358 +#: methods/http.cc:1362 msgid "Internal error" msgstr "Intern feil" @@ -2369,6 +2374,16 @@ msgstr "%c%s ... Feil" msgid "%c%s... Done" msgstr "%c%s ... Ferdig" +#: apt-pkg/contrib/progress.cc:179 +msgid "..." +msgstr "" + +#. Print the spinner +#: apt-pkg/contrib/progress.cc:195 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s ... Ferdig" + #: apt-pkg/contrib/cmndline.cc:80 #, c-format msgid "Command line option '%c' [from %s] is not known." @@ -2761,7 +2776,7 @@ msgid "" "The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "Pakken %s m installerast p nytt, men arkivet finst ikkje." -#: apt-pkg/algorithms.cc:1228 +#: apt-pkg/algorithms.cc:1231 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2769,12 +2784,12 @@ msgstr "" "Feil, pkgProblemResolver::Resolve har laga brot. Dette kan skuldast pakkar " "som er haldne tilbake." -#: apt-pkg/algorithms.cc:1230 +#: apt-pkg/algorithms.cc:1233 msgid "Unable to correct problems, you have held broken packages." msgstr "" "Klarte ikkje retta opp problema. Nokre ydelagde pakkar er haldne tilbake." -#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 +#: apt-pkg/algorithms.cc:1583 apt-pkg/algorithms.cc:1585 #, fuzzy msgid "" "Some index files failed to download. They have been ignored, or old ones " @@ -3244,7 +3259,7 @@ msgstr "" msgid "External solver failed without a proper error message" msgstr "" -#: apt-pkg/edsp.cc:557 apt-pkg/edsp.cc:560 apt-pkg/edsp.cc:565 +#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 msgid "Execute external solver" msgstr "" diff --git a/po/pl.po b/po/pl.po index 04eba799f..d8e9d2490 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 \n" -"POT-Creation-Date: 2013-03-14 08:05+0100\n" +"POT-Creation-Date: 2013-03-24 08:53+0100\n" "PO-Revision-Date: 2012-07-28 21:53+0200\n" "Last-Translator: Michał Kułach \n" "Language-Team: Polish \n" @@ -640,7 +640,7 @@ msgstr "Przerwane." msgid "Do you want to continue [Y/n]? " msgstr "Kontynuować [T/n]? " -#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1557 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Nie udało się pobrać %s %s\n" @@ -849,7 +849,7 @@ msgstr "" msgid "Calculating upgrade... " msgstr "Obliczanie aktualizacji..." -#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:116 msgid "Failed" msgstr "Nie udało się" @@ -1454,7 +1454,7 @@ msgstr "Przekroczony czas połączenia gniazda danych" msgid "Unable to accept connection" msgstr "Nie udało się przyjąć połączenia" -#: methods/ftp.cc:872 methods/http.cc:1035 methods/rsh.cc:311 +#: methods/ftp.cc:872 methods/http.cc:1039 methods/rsh.cc:311 msgid "Problem hashing file" msgstr "Nie udało się obliczyć skrótu pliku" @@ -1481,59 +1481,64 @@ msgstr "Info" msgid "Unable to invoke " msgstr "Nie można wywołać " -#: methods/connect.cc:75 +#: methods/connect.cc:76 #, c-format msgid "Connecting to %s (%s)" msgstr "Łączenie z %s (%s)" -#: methods/connect.cc:86 +#: methods/connect.cc:87 #, c-format msgid "[IP: %s %s]" msgstr "[IP: %s %s]" -#: methods/connect.cc:93 +#: methods/connect.cc:94 #, c-format msgid "Could not create a socket for %s (f=%u t=%u p=%u)" msgstr "Nie udało się utworzyć gniazda dla %s (f=%u t=%u p=%u)" -#: methods/connect.cc:99 +#: methods/connect.cc:100 #, c-format msgid "Cannot initiate the connection to %s:%s (%s)." msgstr "Nie udało się zainicjalizować połączenia z %s:%s (%s)." -#: methods/connect.cc:107 +#: methods/connect.cc:108 #, c-format msgid "Could not connect to %s:%s (%s), connection timed out" msgstr "Nie udało się połączyć z %s:%s (%s), przekroczenie czasu połączenia" -#: methods/connect.cc:125 +#: methods/connect.cc:126 #, c-format msgid "Could not connect to %s:%s (%s)." msgstr "Nie udało się połączyć z %s:%s (%s)." #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:153 methods/rsh.cc:433 +#: methods/connect.cc:154 methods/rsh.cc:433 #, c-format msgid "Connecting to %s" msgstr "Łączenie z %s" -#: methods/connect.cc:172 methods/connect.cc:191 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format msgid "Could not resolve '%s'" msgstr "Nie udało się przetłumaczyć nazwy \"%s\"" -#: methods/connect.cc:197 +#: methods/connect.cc:205 #, c-format msgid "Temporary failure resolving '%s'" msgstr "Tymczasowy błąd przy tłumaczeniu \"%s\"" -#: methods/connect.cc:200 +#: methods/connect.cc:209 +#, fuzzy, c-format +msgid "System error resolving '%s:%s' (%s)" +msgstr "Coś niewłaściwego stało się przy tłumaczeniu \"%s:%s\" (%i - %s)" + +#: methods/connect.cc:211 #, c-format msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "Coś niewłaściwego stało się przy tłumaczeniu \"%s:%s\" (%i - %s)" -#: methods/connect.cc:247 +#: methods/connect.cc:258 #, c-format msgid "Unable to connect to %s:%s:" msgstr "Nie udało się połączyć z %s:%s:" @@ -1602,43 +1607,43 @@ msgstr "Ten serwer HTTP nieprawidłowo obsługuje zakresy (ranges)" msgid "Unknown date format" msgstr "Nieznany format daty" -#: methods/http.cc:818 +#: methods/http.cc:822 msgid "Select failed" msgstr "Operacja select nie powiodła się" -#: methods/http.cc:823 +#: methods/http.cc:827 msgid "Connection timed out" msgstr "Przekroczenie czasu połączenia" -#: methods/http.cc:846 +#: methods/http.cc:850 msgid "Error writing to output file" msgstr "Błąd przy pisaniu do pliku wyjściowego" -#: methods/http.cc:877 +#: methods/http.cc:881 msgid "Error writing to file" msgstr "Błąd przy pisaniu do pliku" -#: methods/http.cc:905 +#: methods/http.cc:909 msgid "Error writing to the file" msgstr "Błąd przy pisaniu do pliku" -#: methods/http.cc:919 +#: methods/http.cc:923 msgid "Error reading from server. Remote end closed connection" msgstr "Błąd czytania z serwera: Zdalna strona zamknęła połączenie" -#: methods/http.cc:921 +#: methods/http.cc:925 msgid "Error reading from server" msgstr "Błąd czytania z serwera" -#: methods/http.cc:1194 +#: methods/http.cc:1198 msgid "Bad header data" msgstr "Błędne dane nagłówka" -#: methods/http.cc:1211 methods/http.cc:1266 +#: methods/http.cc:1215 methods/http.cc:1270 msgid "Connection failed" msgstr "Połączenie nie powiodło się" -#: methods/http.cc:1358 +#: methods/http.cc:1362 msgid "Internal error" msgstr "Błąd wewnętrzny" @@ -2461,6 +2466,16 @@ msgstr "%c%s... Błąd!" msgid "%c%s... Done" msgstr "%c%s... Gotowe" +#: apt-pkg/contrib/progress.cc:179 +msgid "..." +msgstr "" + +#. Print the spinner +#: apt-pkg/contrib/progress.cc:195 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Gotowe" + #: apt-pkg/contrib/cmndline.cc:80 #, c-format msgid "Command line option '%c' [from %s] is not known." @@ -2863,7 +2878,7 @@ msgstr "" "Pakiet %s ma zostać ponownie zainstalowany, ale nie można znaleźć jego " "archiwum." -#: apt-pkg/algorithms.cc:1228 +#: apt-pkg/algorithms.cc:1231 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2871,11 +2886,11 @@ msgstr "" "Błąd, pkgProblemResolver::Resolve zwrócił błąd, może to być spowodowane " "zatrzymanymi pakietami." -#: apt-pkg/algorithms.cc:1230 +#: apt-pkg/algorithms.cc:1233 msgid "Unable to correct problems, you have held broken packages." msgstr "Nie udało się naprawić problemów, zatrzymano uszkodzone pakiety." -#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 +#: apt-pkg/algorithms.cc:1583 apt-pkg/algorithms.cc:1585 msgid "" "Some index files failed to download. They have been ignored, or old ones " "used instead." @@ -3364,7 +3379,7 @@ msgstr "" "Zewnętrzny mechanizm rozwiązywania zależności zawiódł, bez podania " "prawidłowego komunikatu o błędzie" -#: apt-pkg/edsp.cc:557 apt-pkg/edsp.cc:560 apt-pkg/edsp.cc:565 +#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 msgid "Execute external solver" msgstr "Wykonywanie zewnętrznego mechanizmu rozwiązywania zależności" diff --git a/po/pt.po b/po/pt.po index 05fcc2142..b6b5d8b0b 100644 --- a/po/pt.po +++ b/po/pt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-03-14 08:05+0100\n" +"POT-Creation-Date: 2013-03-24 08:53+0100\n" "PO-Revision-Date: 2012-06-29 15:45+0100\n" "Last-Translator: Miguel Figueiredo \n" "Language-Team: Portuguese \n" @@ -636,7 +636,7 @@ msgstr "Abortado." msgid "Do you want to continue [Y/n]? " msgstr "Deseja continuar [Y/n]? " -#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1557 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Falhou obter %s %s\n" @@ -830,7 +830,7 @@ msgstr "" msgid "Calculating upgrade... " msgstr "A calcular a actualização... " -#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:116 msgid "Failed" msgstr "Falhou" @@ -1428,7 +1428,7 @@ msgstr "Ligação de socket de dados expirou" msgid "Unable to accept connection" msgstr "Impossível aceitar ligação" -#: methods/ftp.cc:872 methods/http.cc:1035 methods/rsh.cc:311 +#: methods/ftp.cc:872 methods/http.cc:1039 methods/rsh.cc:311 msgid "Problem hashing file" msgstr "Problema ao calcular o hash do ficheiro" @@ -1455,59 +1455,64 @@ msgstr "Pesquisa" msgid "Unable to invoke " msgstr "Não foi possível invocar " -#: methods/connect.cc:75 +#: methods/connect.cc:76 #, c-format msgid "Connecting to %s (%s)" msgstr "A Ligar a %s (%s)" -#: methods/connect.cc:86 +#: methods/connect.cc:87 #, c-format msgid "[IP: %s %s]" msgstr "[IP: %s %s]" -#: methods/connect.cc:93 +#: methods/connect.cc:94 #, c-format msgid "Could not create a socket for %s (f=%u t=%u p=%u)" msgstr "Não foi possível criar um socket para %s (f=%u t=%u p=%u)" -#: methods/connect.cc:99 +#: methods/connect.cc:100 #, c-format msgid "Cannot initiate the connection to %s:%s (%s)." msgstr "Não posso iniciar a ligação para %s:%s (%s)." -#: methods/connect.cc:107 +#: methods/connect.cc:108 #, c-format msgid "Could not connect to %s:%s (%s), connection timed out" msgstr "Não foi possível ligar a %s:%s (%s), a conexão expirou" -#: methods/connect.cc:125 +#: methods/connect.cc:126 #, c-format msgid "Could not connect to %s:%s (%s)." msgstr "Não foi possível ligar em %s:%s (%s)." #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:153 methods/rsh.cc:433 +#: methods/connect.cc:154 methods/rsh.cc:433 #, c-format msgid "Connecting to %s" msgstr "A ligar a %s" -#: methods/connect.cc:172 methods/connect.cc:191 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format msgid "Could not resolve '%s'" msgstr "Não foi possível resolver '%s'" -#: methods/connect.cc:197 +#: methods/connect.cc:205 #, c-format msgid "Temporary failure resolving '%s'" msgstr "Falha temporária a resolver '%s'" -#: methods/connect.cc:200 +#: methods/connect.cc:209 +#, fuzzy, c-format +msgid "System error resolving '%s:%s' (%s)" +msgstr "Algo estranho aconteceu ao resolver '%s:%s' (%i - %s)" + +#: methods/connect.cc:211 #, c-format msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "Algo estranho aconteceu ao resolver '%s:%s' (%i - %s)" -#: methods/connect.cc:247 +#: methods/connect.cc:258 #, c-format msgid "Unable to connect to %s:%s:" msgstr "Não foi possível ligar a %s:%s:" @@ -1577,43 +1582,43 @@ msgstr "Este servidor HTTP possui suporte de range errado" msgid "Unknown date format" msgstr "Formato de data desconhecido" -#: methods/http.cc:818 +#: methods/http.cc:822 msgid "Select failed" msgstr "A selecção falhou" -#: methods/http.cc:823 +#: methods/http.cc:827 msgid "Connection timed out" msgstr "O tempo da ligação expirou" -#: methods/http.cc:846 +#: methods/http.cc:850 msgid "Error writing to output file" msgstr "Erro ao escrever para o ficheiro de saída" -#: methods/http.cc:877 +#: methods/http.cc:881 msgid "Error writing to file" msgstr "Erro ao escrever para ficheiro" -#: methods/http.cc:905 +#: methods/http.cc:909 msgid "Error writing to the file" msgstr "Erro ao escrever para o ficheiro" -#: methods/http.cc:919 +#: methods/http.cc:923 msgid "Error reading from server. Remote end closed connection" msgstr "Erro ao ler do servidor. O lado remoto fechou a ligação" -#: methods/http.cc:921 +#: methods/http.cc:925 msgid "Error reading from server" msgstr "Erro ao ler do servidor" -#: methods/http.cc:1194 +#: methods/http.cc:1198 msgid "Bad header data" msgstr "Dados de cabeçalho errados" -#: methods/http.cc:1211 methods/http.cc:1266 +#: methods/http.cc:1215 methods/http.cc:1270 msgid "Connection failed" msgstr "A ligação falhou" -#: methods/http.cc:1358 +#: methods/http.cc:1362 msgid "Internal error" msgstr "Erro interno" @@ -2435,6 +2440,16 @@ msgstr "%c%s... Erro !" msgid "%c%s... Done" msgstr "%c%s... Pronto" +#: apt-pkg/contrib/progress.cc:179 +msgid "..." +msgstr "" + +#. Print the spinner +#: apt-pkg/contrib/progress.cc:195 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Pronto" + #: apt-pkg/contrib/cmndline.cc:80 #, c-format msgid "Command line option '%c' [from %s] is not known." @@ -2840,7 +2855,7 @@ msgstr "" "O pacote %s necessita ser reinstalado, mas não foi possível encontrar um " "repositório para o mesmo." -#: apt-pkg/algorithms.cc:1228 +#: apt-pkg/algorithms.cc:1231 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2848,13 +2863,13 @@ msgstr "" "Erro, pkgProblemResolver::Resolve gerou falhas, isto pode ser causado por " "pacotes mantidos (hold)." -#: apt-pkg/algorithms.cc:1230 +#: apt-pkg/algorithms.cc:1233 msgid "Unable to correct problems, you have held broken packages." msgstr "" "Não foi possível corrigir problemas, você tem pacotes mantidos (hold) " "estragados." -#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 +#: apt-pkg/algorithms.cc:1583 apt-pkg/algorithms.cc:1585 msgid "" "Some index files failed to download. They have been ignored, or old ones " "used instead." @@ -3355,7 +3370,7 @@ msgstr "Preparar para receber solução" msgid "External solver failed without a proper error message" msgstr "O resolvedor externo falhou sem uma mensagem de erro adequada" -#: apt-pkg/edsp.cc:557 apt-pkg/edsp.cc:560 apt-pkg/edsp.cc:565 +#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 msgid "Execute external solver" msgstr "Executar resolvedor externo" diff --git a/po/pt_BR.po b/po/pt_BR.po index 593a509e3..bc73f09d6 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-03-14 08:05+0100\n" +"POT-Creation-Date: 2013-03-24 08:53+0100\n" "PO-Revision-Date: 2008-11-17 02:33-0200\n" "Last-Translator: Felipe Augusto van de Wiel (faw) \n" "Language-Team: Brazilian Portuguese \n" -"POT-Creation-Date: 2013-03-14 08:05+0100\n" +"POT-Creation-Date: 2013-03-24 08:53+0100\n" "PO-Revision-Date: 2008-11-15 02:21+0200\n" "Last-Translator: Eddy Petrișor \n" "Language-Team: Romanian \n" @@ -636,7 +636,7 @@ msgstr "Renunțare." msgid "Do you want to continue [Y/n]? " msgstr "Vreți să continuați [Y/n]? " -#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1557 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Eșec la aducerea lui %s %s\n" @@ -835,7 +835,7 @@ msgstr "" msgid "Calculating upgrade... " msgstr "Calculez înnoirea... " -#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:116 msgid "Failed" msgstr "Eșec" @@ -1401,7 +1401,7 @@ msgstr "Timpul de conectare la socket-ul de date expirat" msgid "Unable to accept connection" msgstr "Nu s-a putut accepta conexiune" -#: methods/ftp.cc:872 methods/http.cc:1035 methods/rsh.cc:311 +#: methods/ftp.cc:872 methods/http.cc:1039 methods/rsh.cc:311 msgid "Problem hashing file" msgstr "Problemă la calcularea dispersiei pentru fișierul" @@ -1428,60 +1428,65 @@ msgstr "Interogare" msgid "Unable to invoke " msgstr "Nu s-a putut invoca" -#: methods/connect.cc:75 +#: methods/connect.cc:76 #, c-format msgid "Connecting to %s (%s)" msgstr "Conectare la %s (%s)" -#: methods/connect.cc:86 +#: methods/connect.cc:87 #, c-format msgid "[IP: %s %s]" msgstr "[IP: %s %s]" -#: methods/connect.cc:93 +#: methods/connect.cc:94 #, c-format msgid "Could not create a socket for %s (f=%u t=%u p=%u)" msgstr "Nu s-a putut crea un socket pentru %s (f=%u t=%u p=%u)" -#: methods/connect.cc:99 +#: methods/connect.cc:100 #, c-format msgid "Cannot initiate the connection to %s:%s (%s)." msgstr "Nu s-a putut iniția conexiunea cu %s:%s (%s)." -#: methods/connect.cc:107 +#: methods/connect.cc:108 #, c-format msgid "Could not connect to %s:%s (%s), connection timed out" msgstr "" "Nu s-a putut realiza conexiunea cu %s:%s (%s), timpul de conectare expirat" -#: methods/connect.cc:125 +#: methods/connect.cc:126 #, c-format msgid "Could not connect to %s:%s (%s)." msgstr "Nu s-a putut realiza conexiunea cu %s:%s (%s)." #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:153 methods/rsh.cc:433 +#: methods/connect.cc:154 methods/rsh.cc:433 #, c-format msgid "Connecting to %s" msgstr "Conectare la %s" -#: methods/connect.cc:172 methods/connect.cc:191 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format msgid "Could not resolve '%s'" msgstr "Nu s-a putut rezolva „%s”" -#: methods/connect.cc:197 +#: methods/connect.cc:205 #, c-format msgid "Temporary failure resolving '%s'" msgstr "Eșec temporar la rezolvarea lui „%s”" -#: methods/connect.cc:200 +#: methods/connect.cc:209 +#, fuzzy, c-format +msgid "System error resolving '%s:%s' (%s)" +msgstr "S-a întâmplat ceva „necurat” la rezolvarea lui „%s:%s” (%i)" + +#: methods/connect.cc:211 #, fuzzy, c-format msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "S-a întâmplat ceva „necurat” la rezolvarea lui „%s:%s” (%i)" -#: methods/connect.cc:247 +#: methods/connect.cc:258 #, fuzzy, c-format msgid "Unable to connect to %s:%s:" msgstr "Nu s-a putut realiza conexiunea cu %s %s:" @@ -1551,44 +1556,44 @@ msgstr "Acest server HTTP are un suport defect de intervale" msgid "Unknown date format" msgstr "Format dată necunoscut" -#: methods/http.cc:818 +#: methods/http.cc:822 msgid "Select failed" msgstr "Selecția a eșuat" -#: methods/http.cc:823 +#: methods/http.cc:827 msgid "Connection timed out" msgstr "Timp de conectare expirat" -#: methods/http.cc:846 +#: methods/http.cc:850 msgid "Error writing to output file" msgstr "Eroare la scrierea fișierului de rezultat" -#: methods/http.cc:877 +#: methods/http.cc:881 msgid "Error writing to file" msgstr "Eroare la scrierea în fișier" -#: methods/http.cc:905 +#: methods/http.cc:909 msgid "Error writing to the file" msgstr "Eroare la scrierea în fișierul" -#: methods/http.cc:919 +#: methods/http.cc:923 msgid "Error reading from server. Remote end closed connection" msgstr "" "Eroare la citirea de la server. Conexiunea a fost închisă de la distanță" -#: methods/http.cc:921 +#: methods/http.cc:925 msgid "Error reading from server" msgstr "Eroare la citirea de la server" -#: methods/http.cc:1194 +#: methods/http.cc:1198 msgid "Bad header data" msgstr "Antet de date necorespunzător" -#: methods/http.cc:1211 methods/http.cc:1266 +#: methods/http.cc:1215 methods/http.cc:1270 msgid "Connection failed" msgstr "Conectare eșuată" -#: methods/http.cc:1358 +#: methods/http.cc:1362 msgid "Internal error" msgstr "Eroare internă" @@ -2413,6 +2418,16 @@ msgstr "%c%s... Eroare!" msgid "%c%s... Done" msgstr "%c%s... Terminat" +#: apt-pkg/contrib/progress.cc:179 +msgid "..." +msgstr "" + +#. Print the spinner +#: apt-pkg/contrib/progress.cc:195 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Terminat" + #: apt-pkg/contrib/cmndline.cc:80 #, c-format msgid "Command line option '%c' [from %s] is not known." @@ -2806,7 +2821,7 @@ msgid "" msgstr "" "Pachetul %s are nevoie să fie reinstalat, dar nu pot găsi o arhivă pentru el." -#: apt-pkg/algorithms.cc:1228 +#: apt-pkg/algorithms.cc:1231 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2814,11 +2829,11 @@ msgstr "" "Eroare, pkgProblemResolver::Resolve a generat întreruperi, aceasta poate fi " "cauzată de pachete ținute." -#: apt-pkg/algorithms.cc:1230 +#: apt-pkg/algorithms.cc:1233 msgid "Unable to correct problems, you have held broken packages." msgstr "Nu pot corecta problema, ați ținut pachete deteriorate." -#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 +#: apt-pkg/algorithms.cc:1583 apt-pkg/algorithms.cc:1585 #, fuzzy msgid "" "Some index files failed to download. They have been ignored, or old ones " @@ -3299,7 +3314,7 @@ msgstr "" msgid "External solver failed without a proper error message" msgstr "" -#: apt-pkg/edsp.cc:557 apt-pkg/edsp.cc:560 apt-pkg/edsp.cc:565 +#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 msgid "Execute external solver" msgstr "" diff --git a/po/ru.po b/po/ru.po index c60c9a384..2a72ee3c1 100644 --- a/po/ru.po +++ b/po/ru.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: apt rev2227.1.3\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2012-10-15 09:49+0200\n" +"POT-Creation-Date: 2013-03-24 08:53+0100\n" "PO-Revision-Date: 2012-06-30 08:47+0400\n" "Last-Translator: Yuri Kozlov \n" "Language-Team: Russian \n" @@ -162,7 +162,7 @@ msgid " Version table:" msgstr " Таблица версий:" #: cmdline/apt-cache.cc:1683 cmdline/apt-cdrom.cc:198 cmdline/apt-config.cc:81 -#: cmdline/apt-get.cc:3361 cmdline/apt-mark.cc:375 +#: cmdline/apt-get.cc:3363 cmdline/apt-mark.cc:375 #: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:590 #: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147 #, c-format @@ -490,7 +490,7 @@ msgstr "Переустановка %s невозможна, он не скачи msgid "%s is already the newest version.\n" msgstr "Уже установлена самая новая версия %s.\n" -#: cmdline/apt-get.cc:858 cmdline/apt-get.cc:2157 cmdline/apt-mark.cc:68 +#: cmdline/apt-get.cc:858 cmdline/apt-get.cc:2159 cmdline/apt-mark.cc:68 #, c-format msgid "%s set to manually installed.\n" msgstr "%s установлен вручную.\n" @@ -605,8 +605,8 @@ msgstr "" "После данной операции, объём занятого дискового пространства уменьшится на " "%sB.\n" -#: cmdline/apt-get.cc:1228 cmdline/apt-get.cc:1231 cmdline/apt-get.cc:2589 -#: cmdline/apt-get.cc:2592 +#: cmdline/apt-get.cc:1228 cmdline/apt-get.cc:1231 cmdline/apt-get.cc:2591 +#: cmdline/apt-get.cc:2594 #, c-format msgid "Couldn't determine free space in %s" msgstr "Не удалось определить количество свободного места в %s" @@ -616,17 +616,19 @@ msgstr "Не удалось определить количество свобо msgid "You don't have enough free space in %s." msgstr "Недостаточно свободного места в %s." -#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1277 +#: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1279 msgid "Trivial Only specified but this is not a trivial operation." msgstr "" "Запрошено выполнение только тривиальных операций, но это не тривиальная " "операция." -#: cmdline/apt-get.cc:1259 +#. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be +#. careful with hard to type or special characters (like non-breaking spaces) +#: cmdline/apt-get.cc:1261 msgid "Yes, do as I say!" msgstr "Да, делать, как я скажу!" -#: cmdline/apt-get.cc:1261 +#: cmdline/apt-get.cc:1263 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -637,28 +639,28 @@ msgstr "" "Чтобы продолжить, введите фразу: «%s»\n" " ?] " -#: cmdline/apt-get.cc:1267 cmdline/apt-get.cc:1286 +#: cmdline/apt-get.cc:1269 cmdline/apt-get.cc:1288 msgid "Abort." msgstr "Аварийное завершение." -#: cmdline/apt-get.cc:1282 +#: cmdline/apt-get.cc:1284 msgid "Do you want to continue [Y/n]? " msgstr "Хотите продолжить [Д/н]? " -#: cmdline/apt-get.cc:1354 cmdline/apt-get.cc:2654 apt-pkg/algorithms.cc:1548 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1557 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Не удалось получить %s %s\n" -#: cmdline/apt-get.cc:1372 +#: cmdline/apt-get.cc:1374 msgid "Some files failed to download" msgstr "Некоторые файлы скачать не удалось" -#: cmdline/apt-get.cc:1373 cmdline/apt-get.cc:2666 +#: cmdline/apt-get.cc:1375 cmdline/apt-get.cc:2668 msgid "Download complete and in download only mode" msgstr "Указан режим «только скачивание», и скачивание завершено" -#: cmdline/apt-get.cc:1379 +#: cmdline/apt-get.cc:1381 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -666,19 +668,19 @@ msgstr "" "Невозможно получить некоторые архивы, вероятно надо запустить apt-get update " "или попытаться повторить запуск с ключом --fix-missing" -#: cmdline/apt-get.cc:1383 +#: cmdline/apt-get.cc:1385 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix-missing и смена носителя в данный момент не поддерживаются" -#: cmdline/apt-get.cc:1388 +#: cmdline/apt-get.cc:1390 msgid "Unable to correct missing packages." msgstr "Невозможно исправить ситуацию с пропущенными пакетами." -#: cmdline/apt-get.cc:1389 +#: cmdline/apt-get.cc:1391 msgid "Aborting install." msgstr "Аварийное завершение установки." -#: cmdline/apt-get.cc:1417 +#: cmdline/apt-get.cc:1419 msgid "" "The following package disappeared from your system as\n" "all files have been overwritten by other packages:" @@ -695,35 +697,35 @@ msgstr[2] "" "Следующие пакеты исчез из системы, так как все их файлы\n" "теперь берутся из других пакетов:" -#: cmdline/apt-get.cc:1421 +#: cmdline/apt-get.cc:1423 msgid "Note: This is done automatically and on purpose by dpkg." msgstr "Замечание: это сделано автоматически и специально программой dpkg." -#: cmdline/apt-get.cc:1559 +#: cmdline/apt-get.cc:1561 #, c-format msgid "Ignore unavailable target release '%s' of package '%s'" msgstr "Игнорируется недоступный выпуск «%s» пакета «%s»" -#: cmdline/apt-get.cc:1591 +#: cmdline/apt-get.cc:1593 #, c-format msgid "Picking '%s' as source package instead of '%s'\n" msgstr "Используется «%s» в качестве исходного пакета вместо «%s»\n" #. if (VerTag.empty() == false && Last == 0) -#: cmdline/apt-get.cc:1629 +#: cmdline/apt-get.cc:1631 #, c-format msgid "Ignore unavailable version '%s' of package '%s'" msgstr "Игнорируется недоступная версия «%s» пакета «%s»" -#: cmdline/apt-get.cc:1645 +#: cmdline/apt-get.cc:1647 msgid "The update command takes no arguments" msgstr "Команде update не нужны аргументы" -#: cmdline/apt-get.cc:1711 +#: cmdline/apt-get.cc:1713 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "Не предполагалось удалять stuff, невозможно запустить AutoRemover" -#: cmdline/apt-get.cc:1815 +#: cmdline/apt-get.cc:1817 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -741,15 +743,15 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1818 cmdline/apt-get.cc:1987 +#: cmdline/apt-get.cc:1820 cmdline/apt-get.cc:1989 msgid "The following information may help to resolve the situation:" msgstr "Следующая информация, возможно, поможет вам:" -#: cmdline/apt-get.cc:1822 +#: cmdline/apt-get.cc:1824 msgid "Internal Error, AutoRemover broke stuff" msgstr "Внутренняя ошибка, AutoRemover всё поломал" -#: cmdline/apt-get.cc:1829 +#: cmdline/apt-get.cc:1831 msgid "" "The following package was automatically installed and is no longer required:" msgid_plural "" @@ -761,7 +763,7 @@ msgstr[1] "" msgstr[2] "" "Следующие пакеты устанавливались автоматически и больше не требуются:" -#: cmdline/apt-get.cc:1833 +#: cmdline/apt-get.cc:1835 #, c-format msgid "%lu package was automatically installed and is no longer required.\n" msgid_plural "" @@ -770,24 +772,24 @@ msgstr[0] "%lu пакет был установлен автоматически msgstr[1] "%lu пакета было установлено автоматически и больше не требуется.\n" msgstr[2] "%lu пакетов было установлены автоматически и больше не требуются.\n" -#: cmdline/apt-get.cc:1835 +#: cmdline/apt-get.cc:1837 msgid "Use 'apt-get autoremove' to remove it." msgid_plural "Use 'apt-get autoremove' to remove them." msgstr[0] "Для его удаления используйте «apt-get autoremove»." msgstr[1] "Для их удаления используйте «apt-get autoremove»." msgstr[2] "Для их удаления используйте «apt-get autoremove»." -#: cmdline/apt-get.cc:1854 +#: cmdline/apt-get.cc:1856 msgid "Internal error, AllUpgrade broke stuff" msgstr "Внутренняя ошибка, AllUpgrade всё поломал" -#: cmdline/apt-get.cc:1953 +#: cmdline/apt-get.cc:1955 msgid "You might want to run 'apt-get -f install' to correct these:" msgstr "" "Возможно, для исправления этих ошибок вы захотите воспользоваться «apt-get -" "f install»:" -#: cmdline/apt-get.cc:1957 +#: cmdline/apt-get.cc:1959 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -795,7 +797,7 @@ msgstr "" "Неудовлетворённые зависимости. Попытайтесь выполнить «apt-get -f install», " "не указывая имени пакета, (или найдите другое решение)." -#: cmdline/apt-get.cc:1972 +#: cmdline/apt-get.cc:1974 msgid "" "Some packages could not be installed. This may mean that you have\n" "requested an impossible situation or if you are using the unstable\n" @@ -806,33 +808,33 @@ msgstr "" "или же используете нестабильную версию дистрибутива, где запрошенные вами\n" "пакеты ещё не созданы или были удалены из Incoming." -#: cmdline/apt-get.cc:1993 +#: cmdline/apt-get.cc:1995 msgid "Broken packages" msgstr "Сломанные пакеты" -#: cmdline/apt-get.cc:2019 +#: cmdline/apt-get.cc:2021 msgid "The following extra packages will be installed:" msgstr "Будут установлены следующие дополнительные пакеты:" -#: cmdline/apt-get.cc:2109 +#: cmdline/apt-get.cc:2111 msgid "Suggested packages:" msgstr "Предлагаемые пакеты:" -#: cmdline/apt-get.cc:2110 +#: cmdline/apt-get.cc:2112 msgid "Recommended packages:" msgstr "Рекомендуемые пакеты:" -#: cmdline/apt-get.cc:2152 +#: cmdline/apt-get.cc:2154 #, c-format msgid "Couldn't find package %s" msgstr "Не удалось найти пакет %s" -#: cmdline/apt-get.cc:2159 cmdline/apt-mark.cc:70 +#: cmdline/apt-get.cc:2161 cmdline/apt-mark.cc:70 #, c-format msgid "%s set to automatically installed.\n" msgstr "%s выбран для автоматической установки.\n" -#: cmdline/apt-get.cc:2167 cmdline/apt-mark.cc:114 +#: cmdline/apt-get.cc:2169 cmdline/apt-mark.cc:114 msgid "" "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' " "instead." @@ -840,47 +842,47 @@ msgstr "" "Эта команда устарела. Используйте вместо неё «apt-mark auto» и «apt-mark " "manual»." -#: cmdline/apt-get.cc:2183 +#: cmdline/apt-get.cc:2185 msgid "Calculating upgrade... " msgstr "Расчёт обновлений…" -#: cmdline/apt-get.cc:2186 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:116 msgid "Failed" msgstr "Неудачно" -#: cmdline/apt-get.cc:2191 +#: cmdline/apt-get.cc:2193 msgid "Done" msgstr "Готово" -#: cmdline/apt-get.cc:2258 cmdline/apt-get.cc:2266 +#: cmdline/apt-get.cc:2260 cmdline/apt-get.cc:2268 msgid "Internal error, problem resolver broke stuff" msgstr "Внутренняя ошибка, решатель проблем всё поломал" -#: cmdline/apt-get.cc:2294 cmdline/apt-get.cc:2330 +#: cmdline/apt-get.cc:2296 cmdline/apt-get.cc:2332 msgid "Unable to lock the download directory" msgstr "Невозможно заблокировать каталог, куда складываются скачиваемые файлы" -#: cmdline/apt-get.cc:2386 +#: cmdline/apt-get.cc:2388 #, c-format msgid "Can't find a source to download version '%s' of '%s'" msgstr "Невозможно найти источник для загрузки «%2$s» версии «%1$s»" -#: cmdline/apt-get.cc:2391 +#: cmdline/apt-get.cc:2393 #, c-format msgid "Downloading %s %s" msgstr "Выполняется загрузка %s %s" -#: cmdline/apt-get.cc:2451 +#: cmdline/apt-get.cc:2453 msgid "Must specify at least one package to fetch source for" msgstr "" "Укажите как минимум один пакет, исходный код которого необходимо получить" -#: cmdline/apt-get.cc:2491 cmdline/apt-get.cc:2803 +#: cmdline/apt-get.cc:2493 cmdline/apt-get.cc:2805 #, c-format msgid "Unable to find a source package for %s" msgstr "Невозможно найти пакет с исходным кодом для %s" -#: cmdline/apt-get.cc:2508 +#: cmdline/apt-get.cc:2510 #, c-format msgid "" "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n" @@ -889,7 +891,7 @@ msgstr "" "ВНИМАНИЕ: упаковка «%s» поддерживается в системе контроля версий «%s»:\n" "%s\n" -#: cmdline/apt-get.cc:2513 +#: cmdline/apt-get.cc:2515 #, c-format msgid "" "Please use:\n" @@ -900,70 +902,70 @@ msgstr "" "bzr branch %s\n" "для получения последних (возможно не выпущенных) обновлений пакета.\n" -#: cmdline/apt-get.cc:2566 +#: cmdline/apt-get.cc:2568 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Пропускаем уже скачанный файл «%s»\n" -#: cmdline/apt-get.cc:2603 +#: cmdline/apt-get.cc:2605 #, c-format msgid "You don't have enough free space in %s" msgstr "Недостаточно места в %s" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:2612 +#: cmdline/apt-get.cc:2614 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "Необходимо получить %sб/%sб архивов исходного кода.\n" #. TRANSLATOR: The required space between number and unit is already included #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB -#: cmdline/apt-get.cc:2617 +#: cmdline/apt-get.cc:2619 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Необходимо получить %sб архивов исходного кода.\n" -#: cmdline/apt-get.cc:2623 +#: cmdline/apt-get.cc:2625 #, c-format msgid "Fetch source %s\n" msgstr "Получение исходного кода %s\n" -#: cmdline/apt-get.cc:2661 +#: cmdline/apt-get.cc:2663 msgid "Failed to fetch some archives." msgstr "Некоторые архивы не удалось получить." -#: cmdline/apt-get.cc:2692 +#: cmdline/apt-get.cc:2694 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "Пропускается распаковка уже распакованного исходного кода в %s\n" -#: cmdline/apt-get.cc:2704 +#: cmdline/apt-get.cc:2706 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Команда распаковки «%s» завершилась неудачно.\n" -#: cmdline/apt-get.cc:2705 +#: cmdline/apt-get.cc:2707 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "Проверьте, установлен ли пакет «dpkg-dev».\n" -#: cmdline/apt-get.cc:2727 +#: cmdline/apt-get.cc:2729 #, c-format msgid "Build command '%s' failed.\n" msgstr "Команда сборки «%s» завершилась неудачно.\n" -#: cmdline/apt-get.cc:2747 +#: cmdline/apt-get.cc:2749 msgid "Child process failed" msgstr "Порождённый процесс завершился неудачно" -#: cmdline/apt-get.cc:2766 +#: cmdline/apt-get.cc:2768 msgid "Must specify at least one package to check builddeps for" msgstr "" "Для проверки зависимостей для сборки необходимо указать как минимум один " "пакет" -#: cmdline/apt-get.cc:2791 +#: cmdline/apt-get.cc:2793 #, c-format msgid "" "No architecture information available for %s. See apt.conf(5) APT::" @@ -972,17 +974,17 @@ msgstr "" "У %s отсутствует информация об архитектуре. Для её настройки смотрите apt." "conf(5) APT::Architectures" -#: cmdline/apt-get.cc:2815 cmdline/apt-get.cc:2818 +#: cmdline/apt-get.cc:2817 cmdline/apt-get.cc:2820 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "Невозможно получить информацию о зависимостях для сборки %s" -#: cmdline/apt-get.cc:2838 +#: cmdline/apt-get.cc:2840 #, c-format msgid "%s has no build depends.\n" msgstr "%s не имеет зависимостей для сборки.\n" -#: cmdline/apt-get.cc:3008 +#: cmdline/apt-get.cc:3010 #, c-format msgid "" "%s dependency for %s can't be satisfied because %s is not allowed on '%s' " @@ -991,7 +993,7 @@ msgstr "" "Зависимость типа %s для %s не может быть удовлетворена, так как %s не " "разрешён для пакетов «%s»" -#: cmdline/apt-get.cc:3026 +#: cmdline/apt-get.cc:3028 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -1000,14 +1002,14 @@ msgstr "" "Зависимость типа %s для %s не может быть удовлетворена, так как пакет %s не " "найден" -#: cmdline/apt-get.cc:3049 +#: cmdline/apt-get.cc:3051 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "Не удалось удовлетворить зависимость типа %s для пакета %s: Установленный " "пакет %s новее, чем надо" -#: cmdline/apt-get.cc:3088 +#: cmdline/apt-get.cc:3090 #, c-format msgid "" "%s dependency for %s cannot be satisfied because candidate version of " @@ -1016,7 +1018,7 @@ msgstr "" "Зависимость типа %s для %s не может быть удовлетворена, так как версия-" "кандидат пакета %s не может удовлетворить требованиям по версии" -#: cmdline/apt-get.cc:3094 +#: cmdline/apt-get.cc:3096 #, c-format msgid "" "%s dependency for %s cannot be satisfied because package %s has no candidate " @@ -1025,30 +1027,30 @@ msgstr "" "Зависимость типа %s для %s не может быть удовлетворена, так как пакет %s не " "имеет версии-кандидата" -#: cmdline/apt-get.cc:3117 +#: cmdline/apt-get.cc:3119 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "Невозможно удовлетворить зависимость типа %s для пакета %s: %s" -#: cmdline/apt-get.cc:3133 +#: cmdline/apt-get.cc:3135 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "Зависимости для сборки %s не могут быть удовлетворены." -#: cmdline/apt-get.cc:3138 +#: cmdline/apt-get.cc:3140 msgid "Failed to process build dependencies" msgstr "Обработка зависимостей для сборки завершилась неудачно" -#: cmdline/apt-get.cc:3231 cmdline/apt-get.cc:3243 +#: cmdline/apt-get.cc:3233 cmdline/apt-get.cc:3245 #, c-format msgid "Changelog for %s (%s)" msgstr "Changelog для %s (%s)" -#: cmdline/apt-get.cc:3366 +#: cmdline/apt-get.cc:3368 msgid "Supported modules:" msgstr "Поддерживаемые модули:" -#: cmdline/apt-get.cc:3407 +#: cmdline/apt-get.cc:3409 msgid "" "Usage: apt-get [options] command\n" " apt-get [options] install|remove pkg1 [pkg2 ...]\n" @@ -1140,7 +1142,7 @@ msgstr "" "содержится подробная информация и описание параметров.\n" " В APT есть коровья СУПЕРСИЛА.\n" -#: cmdline/apt-get.cc:3572 +#: cmdline/apt-get.cc:3574 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1448,7 +1450,7 @@ msgstr "Время установления соединения для соке msgid "Unable to accept connection" msgstr "Невозможно принять соединение" -#: methods/ftp.cc:872 methods/http.cc:1035 methods/rsh.cc:311 +#: methods/ftp.cc:872 methods/http.cc:1039 methods/rsh.cc:311 msgid "Problem hashing file" msgstr "Проблема при хешировании файла" @@ -1475,59 +1477,64 @@ msgstr "Запрос" msgid "Unable to invoke " msgstr "Невозможно вызвать " -#: methods/connect.cc:75 +#: methods/connect.cc:76 #, c-format msgid "Connecting to %s (%s)" msgstr "Соединение с %s (%s)" -#: methods/connect.cc:86 +#: methods/connect.cc:87 #, c-format msgid "[IP: %s %s]" msgstr "[IP: %s %s]" -#: methods/connect.cc:93 +#: methods/connect.cc:94 #, c-format msgid "Could not create a socket for %s (f=%u t=%u p=%u)" msgstr "Не удаётся создать сокет для %s (f=%u t=%u p=%u)" -#: methods/connect.cc:99 +#: methods/connect.cc:100 #, c-format msgid "Cannot initiate the connection to %s:%s (%s)." msgstr "Невозможно инициализировать соединение с %s:%s (%s)." -#: methods/connect.cc:107 +#: methods/connect.cc:108 #, c-format msgid "Could not connect to %s:%s (%s), connection timed out" msgstr "Не удаётся соединиться с %s:%s (%s), connection timed out" -#: methods/connect.cc:125 +#: methods/connect.cc:126 #, c-format msgid "Could not connect to %s:%s (%s)." msgstr "Не удаётся соединиться с %s:%s (%s)." #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:153 methods/rsh.cc:433 +#: methods/connect.cc:154 methods/rsh.cc:433 #, c-format msgid "Connecting to %s" msgstr "Соединение с %s" -#: methods/connect.cc:172 methods/connect.cc:191 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format msgid "Could not resolve '%s'" msgstr "Не удалось найти IP-адрес для «%s»" -#: methods/connect.cc:197 +#: methods/connect.cc:205 #, c-format msgid "Temporary failure resolving '%s'" msgstr "Временная ошибка при попытке получить IP-адрес «%s»" -#: methods/connect.cc:200 +#: methods/connect.cc:209 +#, fuzzy, c-format +msgid "System error resolving '%s:%s' (%s)" +msgstr "Что-то странное произошло при определении «%s:%s» (%i - %s)" + +#: methods/connect.cc:211 #, c-format msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "Что-то странное произошло при определении «%s:%s» (%i - %s)" -#: methods/connect.cc:247 +#: methods/connect.cc:258 #, c-format msgid "Unable to connect to %s:%s:" msgstr "Невозможно соединиться с %s: %s:" @@ -1595,43 +1602,43 @@ msgstr "Этот HTTP-сервер не поддерживает скачива msgid "Unknown date format" msgstr "Неизвестный формат данных" -#: methods/http.cc:818 +#: methods/http.cc:822 msgid "Select failed" msgstr "Ошибка в select" -#: methods/http.cc:823 +#: methods/http.cc:827 msgid "Connection timed out" msgstr "Время ожидания для соединения истекло" -#: methods/http.cc:846 +#: methods/http.cc:850 msgid "Error writing to output file" msgstr "Ошибка записи в выходной файл" -#: methods/http.cc:877 +#: methods/http.cc:881 msgid "Error writing to file" msgstr "Ошибка записи в файл" -#: methods/http.cc:905 +#: methods/http.cc:909 msgid "Error writing to the file" msgstr "Ошибка записи в файл" -#: methods/http.cc:919 +#: methods/http.cc:923 msgid "Error reading from server. Remote end closed connection" msgstr "Ошибка чтения, удалённый сервер прервал соединение" -#: methods/http.cc:921 +#: methods/http.cc:925 msgid "Error reading from server" msgstr "Ошибка чтения с сервера" -#: methods/http.cc:1194 +#: methods/http.cc:1198 msgid "Bad header data" msgstr "Неверный заголовок данных" -#: methods/http.cc:1211 methods/http.cc:1266 +#: methods/http.cc:1215 methods/http.cc:1270 msgid "Connection failed" msgstr "Соединение разорвано" -#: methods/http.cc:1358 +#: methods/http.cc:1362 msgid "Internal error" msgstr "Внутренняя ошибка" @@ -1765,7 +1772,7 @@ msgstr "" " -c=? Читать указанный файл настройки\n" " -o=? Задать значение произвольной настройке, например, -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1335 +#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1339 #, c-format msgid "Unable to write to %s" msgstr "Невозможно записать в %s" @@ -2457,6 +2464,16 @@ msgstr "%c%s… Ошибка!" msgid "%c%s... Done" msgstr "%c%s… Готово" +#: apt-pkg/contrib/progress.cc:179 +msgid "..." +msgstr "" + +#. Print the spinner +#: apt-pkg/contrib/progress.cc:195 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s… Готово" + #: apt-pkg/contrib/cmndline.cc:80 #, c-format msgid "Command line option '%c' [from %s] is not known." @@ -2824,7 +2841,7 @@ msgstr "Искажённая строка %u в списке источнико msgid "Type '%s' is not known on line %u in source list %s" msgstr "Неизвестный тип «%s» в строке %u в списке источников %s" -#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:896 +#: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:898 #, c-format msgid "" "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf " @@ -2833,12 +2850,12 @@ msgstr "" "Не удалось выполнить оперативную настройку «%s». Подробней, смотрите в man 5 " "apt.conf о APT::Immediate-Configure. (%d)" -#: apt-pkg/packagemanager.cc:473 apt-pkg/packagemanager.cc:503 +#: apt-pkg/packagemanager.cc:473 apt-pkg/packagemanager.cc:504 #, c-format msgid "Could not configure '%s'. " msgstr "Не удалось настроить «%s»." -#: apt-pkg/packagemanager.cc:545 +#: apt-pkg/packagemanager.cc:546 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2863,7 +2880,7 @@ msgid "" msgstr "" "Пакет %s нуждается в переустановке, но найти архив для него не удалось." -#: apt-pkg/algorithms.cc:1228 +#: apt-pkg/algorithms.cc:1231 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2871,11 +2888,11 @@ msgstr "" "Ошибка, pkgProblemResolver::Resolve сгенерировал повреждённые пакеты. Это " "может быть вызвано отложенными (held) пакетами." -#: apt-pkg/algorithms.cc:1230 +#: apt-pkg/algorithms.cc:1233 msgid "Unable to correct problems, you have held broken packages." msgstr "Невозможно исправить ошибки, у вас отложены (held) битые пакеты." -#: apt-pkg/algorithms.cc:1574 apt-pkg/algorithms.cc:1576 +#: apt-pkg/algorithms.cc:1583 apt-pkg/algorithms.cc:1585 msgid "" "Some index files failed to download. They have been ignored, or old ones " "used instead." @@ -3024,21 +3041,21 @@ msgstr "" msgid "Package %s %s was not found while processing file dependencies" msgstr "Во время обработки файла зависимостей не найден пакет %s %s" -#: apt-pkg/pkgcachegen.cc:1146 +#: apt-pkg/pkgcachegen.cc:1150 #, c-format msgid "Couldn't stat source package list %s" msgstr "Не удалось получить атрибуты списка пакетов исходного кода %s" -#: apt-pkg/pkgcachegen.cc:1234 apt-pkg/pkgcachegen.cc:1338 -#: apt-pkg/pkgcachegen.cc:1344 apt-pkg/pkgcachegen.cc:1501 +#: apt-pkg/pkgcachegen.cc:1238 apt-pkg/pkgcachegen.cc:1342 +#: apt-pkg/pkgcachegen.cc:1348 apt-pkg/pkgcachegen.cc:1505 msgid "Reading package lists" msgstr "Чтение списков пакетов" -#: apt-pkg/pkgcachegen.cc:1251 +#: apt-pkg/pkgcachegen.cc:1255 msgid "Collecting File Provides" msgstr "Сбор информации о Provides" -#: apt-pkg/pkgcachegen.cc:1443 apt-pkg/pkgcachegen.cc:1450 +#: apt-pkg/pkgcachegen.cc:1447 apt-pkg/pkgcachegen.cc:1454 msgid "IO Error saving source cache" msgstr "Ошибка ввода/вывода при попытке сохранить кэш источников" @@ -3366,7 +3383,7 @@ msgstr "Подготовка к приёму решения" msgid "External solver failed without a proper error message" msgstr "Внешний решатель завершился с ошибкой не передав сообщения об ошибке" -#: apt-pkg/edsp.cc:557 apt-pkg/edsp.cc:560 apt-pkg/edsp.cc:565 +#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 msgid "Execute external solver" msgstr "Запустить внешний решатель" diff --git a/po/sk.po b/po/sk.po index ece547d5c..8fb8e84e4 100644 --- a/po/sk.po +++ b/po/sk.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-03-14 08:05+0100\n" +"POT-Creation-Date: 2013-03-24 08:53+0100\n" "PO-Revision-Date: 2012-06-28 20:49+0100\n" "Last-Translator: Ivan Masár \n" "Language-Team: Slovak \n" @@ -633,7 +633,7 @@ msgstr "Prerušené." msgid "Do you want to continue [Y/n]? " msgstr "Chcete pokračovať [Y/n]? " -#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1557 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Zlyhalo stiahnutie %s %s\n" @@ -835,7 +835,7 @@ msgstr "" msgid "Calculating upgrade... " msgstr "Prepočítava sa aktualizácia... " -#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:116 msgid "Failed" msgstr "Chyba" @@ -1425,7 +1425,7 @@ msgstr "Uplynulo spojenie dátového socketu" msgid "Unable to accept connection" msgstr "Spojenie sa nedá prijať" -#: methods/ftp.cc:872 methods/http.cc:1035 methods/rsh.cc:311 +#: methods/ftp.cc:872 methods/http.cc:1039 methods/rsh.cc:311 msgid "Problem hashing file" msgstr "Problém s hašovaním súboru" @@ -1452,59 +1452,64 @@ msgstr "Dotaz" msgid "Unable to invoke " msgstr "Nedá sa vyvolať " -#: methods/connect.cc:75 +#: methods/connect.cc:76 #, c-format msgid "Connecting to %s (%s)" msgstr "Pripája sa k %s (%s)" -#: methods/connect.cc:86 +#: methods/connect.cc:87 #, c-format msgid "[IP: %s %s]" msgstr "[IP: %s %s]" -#: methods/connect.cc:93 +#: methods/connect.cc:94 #, c-format msgid "Could not create a socket for %s (f=%u t=%u p=%u)" msgstr "Nedá sa vytvoriť socket pre %s (f=%u t=%u p=%u)" -#: methods/connect.cc:99 +#: methods/connect.cc:100 #, c-format msgid "Cannot initiate the connection to %s:%s (%s)." msgstr "Nedá sa nadviazať spojenie na %s:%s (%s)." -#: methods/connect.cc:107 +#: methods/connect.cc:108 #, c-format msgid "Could not connect to %s:%s (%s), connection timed out" msgstr "Nedá sa pripojiť k %s:%s (%s), uplynul čas spojenia" -#: methods/connect.cc:125 +#: methods/connect.cc:126 #, c-format msgid "Could not connect to %s:%s (%s)." msgstr "Nedá sa pripojiť k %s:%s (%s)." #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:153 methods/rsh.cc:433 +#: methods/connect.cc:154 methods/rsh.cc:433 #, c-format msgid "Connecting to %s" msgstr "Pripája sa k %s" -#: methods/connect.cc:172 methods/connect.cc:191 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format msgid "Could not resolve '%s'" msgstr "Nie je možné preložiť „%s“" -#: methods/connect.cc:197 +#: methods/connect.cc:205 #, c-format msgid "Temporary failure resolving '%s'" msgstr "Dočasné zlyhanie pri preklade „%s“" -#: methods/connect.cc:200 +#: methods/connect.cc:209 +#, fuzzy, c-format +msgid "System error resolving '%s:%s' (%s)" +msgstr "Niečo veľmi zlé sa prihodilo pri preklade „%s:%s“ (%i - %s)" + +#: methods/connect.cc:211 #, c-format msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "Niečo veľmi zlé sa prihodilo pri preklade „%s:%s“ (%i - %s)" -#: methods/connect.cc:247 +#: methods/connect.cc:258 #, c-format msgid "Unable to connect to %s:%s:" msgstr "Nedá sa pripojiť k %s:%s:" @@ -1570,43 +1575,43 @@ msgstr "Tento HTTP server má poškodenú podporu rozsahov" msgid "Unknown date format" msgstr "Neznámy formát dátumu" -#: methods/http.cc:818 +#: methods/http.cc:822 msgid "Select failed" msgstr "Výber zlyhal" -#: methods/http.cc:823 +#: methods/http.cc:827 msgid "Connection timed out" msgstr "Uplynul čas spojenia" -#: methods/http.cc:846 +#: methods/http.cc:850 msgid "Error writing to output file" msgstr "Chyba zápisu do výstupného súboru" -#: methods/http.cc:877 +#: methods/http.cc:881 msgid "Error writing to file" msgstr "Chyba zápisu do súboru" -#: methods/http.cc:905 +#: methods/http.cc:909 msgid "Error writing to the file" msgstr "Chyba zápisu do tohto súboru" -#: methods/http.cc:919 +#: methods/http.cc:923 msgid "Error reading from server. Remote end closed connection" msgstr "Chyba pri čítaní zo servera. Druhá strana ukončila spojenie" -#: methods/http.cc:921 +#: methods/http.cc:925 msgid "Error reading from server" msgstr "Chyba pri čítaní zo servera" -#: methods/http.cc:1194 +#: methods/http.cc:1198 msgid "Bad header data" msgstr "Zlé dátové záhlavie" -#: methods/http.cc:1211 methods/http.cc:1266 +#: methods/http.cc:1215 methods/http.cc:1270 msgid "Connection failed" msgstr "Spojenie zlyhalo" -#: methods/http.cc:1358 +#: methods/http.cc:1362 msgid "Internal error" msgstr "Vnútorná chyba" @@ -2419,6 +2424,16 @@ msgstr "%c%s... Chyba!" msgid "%c%s... Done" msgstr "%c%s... Hotovo" +#: apt-pkg/contrib/progress.cc:179 +msgid "..." +msgstr "" + +#. Print the spinner +#: apt-pkg/contrib/progress.cc:195 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Hotovo" + #: apt-pkg/contrib/cmndline.cc:80 #, c-format msgid "Command line option '%c' [from %s] is not known." @@ -2812,7 +2827,7 @@ msgid "" "The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "Je nutné preinštalovať balík %s, ale nedá sa nájsť jeho archív." -#: apt-pkg/algorithms.cc:1228 +#: apt-pkg/algorithms.cc:1231 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2820,11 +2835,11 @@ msgstr "" "Chyba, pkgProblemResolver::Resolve vytvára poruchy, čo môže být spôsobené " "pridržanými balíkmi." -#: apt-pkg/algorithms.cc:1230 +#: apt-pkg/algorithms.cc:1233 msgid "Unable to correct problems, you have held broken packages." msgstr "Problémy sa nedajú opraviť, niektoré balíky držíte v poškodenom stave." -#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 +#: apt-pkg/algorithms.cc:1583 apt-pkg/algorithms.cc:1585 msgid "" "Some index files failed to download. They have been ignored, or old ones " "used instead." @@ -3307,7 +3322,7 @@ msgstr "Pripraviť sa na prijatie riešenia" msgid "External solver failed without a proper error message" msgstr "Externý riešiteľ zlyhal bez uvedenia chybovej správy" -#: apt-pkg/edsp.cc:557 apt-pkg/edsp.cc:560 apt-pkg/edsp.cc:565 +#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 msgid "Execute external solver" msgstr "Spustiť externého riešiteľa" diff --git a/po/sl.po b/po/sl.po index a2ff51eb6..ead4d1090 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 \n" -"POT-Creation-Date: 2013-03-14 08:05+0100\n" +"POT-Creation-Date: 2013-03-24 08:53+0100\n" "PO-Revision-Date: 2012-06-27 21:29+0000\n" "Last-Translator: Andrej Znidarsic \n" "Language-Team: Slovenian \n" @@ -630,7 +630,7 @@ msgstr "Prekini." msgid "Do you want to continue [Y/n]? " msgstr "Ali želite nadaljevati [Y/n]? " -#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1557 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Ni mogoče dobiti %s %s\n" @@ -836,7 +836,7 @@ msgstr "" msgid "Calculating upgrade... " msgstr "Preračunavanje nadgradnje ... " -#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:116 msgid "Failed" msgstr "Spodletelo" @@ -1423,7 +1423,7 @@ msgstr "Povezava podatkovne vtičnice je zakasnela" msgid "Unable to accept connection" msgstr "Ni mogoče sprejeti povezave" -#: methods/ftp.cc:872 methods/http.cc:1035 methods/rsh.cc:311 +#: methods/ftp.cc:872 methods/http.cc:1039 methods/rsh.cc:311 msgid "Problem hashing file" msgstr "Težava med razprševanjem datoteke" @@ -1450,59 +1450,64 @@ msgstr "Poizvedba" msgid "Unable to invoke " msgstr "Ni mogoče klicati " -#: methods/connect.cc:75 +#: methods/connect.cc:76 #, c-format msgid "Connecting to %s (%s)" msgstr "Povezovanje z %s (%s)" -#: methods/connect.cc:86 +#: methods/connect.cc:87 #, c-format msgid "[IP: %s %s]" msgstr "[IP: %s %s]" -#: methods/connect.cc:93 +#: methods/connect.cc:94 #, c-format msgid "Could not create a socket for %s (f=%u t=%u p=%u)" msgstr "Ni mogoče ustvariti vtiča za %s (f=%u t=%u p=%u)" -#: methods/connect.cc:99 +#: methods/connect.cc:100 #, c-format msgid "Cannot initiate the connection to %s:%s (%s)." msgstr "Ni mogoče začeti povezave z %s:%s (%s)." -#: methods/connect.cc:107 +#: methods/connect.cc:108 #, c-format msgid "Could not connect to %s:%s (%s), connection timed out" msgstr "Ni se mogoče povezati z %s:%s (%s). Povezava je zakasnela." -#: methods/connect.cc:125 +#: methods/connect.cc:126 #, c-format msgid "Could not connect to %s:%s (%s)." msgstr "Ni se mogoče povezati z %s:%s (%s)." #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:153 methods/rsh.cc:433 +#: methods/connect.cc:154 methods/rsh.cc:433 #, c-format msgid "Connecting to %s" msgstr "Povezovanje z %s" -#: methods/connect.cc:172 methods/connect.cc:191 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format msgid "Could not resolve '%s'" msgstr "Ni mogoče razrešiti '%s'" -#: methods/connect.cc:197 +#: methods/connect.cc:205 #, c-format msgid "Temporary failure resolving '%s'" msgstr "Začasna napaka med razreševanjem '%s'" -#: methods/connect.cc:200 +#: methods/connect.cc:209 +#, fuzzy, c-format +msgid "System error resolving '%s:%s' (%s)" +msgstr "Nekaj čudnega se je zgodilo med razreševanjem '%s:%s' (%i - %s)" + +#: methods/connect.cc:211 #, c-format msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "Nekaj čudnega se je zgodilo med razreševanjem '%s:%s' (%i - %s)" -#: methods/connect.cc:247 +#: methods/connect.cc:258 #, c-format msgid "Unable to connect to %s:%s:" msgstr "Ni se mogoče povezati z %s:%s:" @@ -1568,43 +1573,43 @@ msgstr "Ta strežnik HTTP ima pokvarjen obseg podpore" msgid "Unknown date format" msgstr "Neznana oblika datuma" -#: methods/http.cc:818 +#: methods/http.cc:822 msgid "Select failed" msgstr "Izbira ni uspela" -#: methods/http.cc:823 +#: methods/http.cc:827 msgid "Connection timed out" msgstr "Povezava je zakasnela" -#: methods/http.cc:846 +#: methods/http.cc:850 msgid "Error writing to output file" msgstr "Napaka med pisanjem v izhodno datoteko" -#: methods/http.cc:877 +#: methods/http.cc:881 msgid "Error writing to file" msgstr "Napaka med pisanjem v datoteko" -#: methods/http.cc:905 +#: methods/http.cc:909 msgid "Error writing to the file" msgstr "Napaka med pisanjem v datoteko" -#: methods/http.cc:919 +#: methods/http.cc:923 msgid "Error reading from server. Remote end closed connection" msgstr "Napaka med branjem s strežnika. Oddaljeni del je zaprl povezavo" -#: methods/http.cc:921 +#: methods/http.cc:925 msgid "Error reading from server" msgstr "Napaka med branjem s strežnika" -#: methods/http.cc:1194 +#: methods/http.cc:1198 msgid "Bad header data" msgstr "Napačni podatki glave" -#: methods/http.cc:1211 methods/http.cc:1266 +#: methods/http.cc:1215 methods/http.cc:1270 msgid "Connection failed" msgstr "Povezava ni uspela" -#: methods/http.cc:1358 +#: methods/http.cc:1362 msgid "Internal error" msgstr "Notranja napaka" @@ -2419,6 +2424,16 @@ msgstr "%c%s ... Napaka!" msgid "%c%s... Done" msgstr "%c%s ... Narejeno" +#: apt-pkg/contrib/progress.cc:179 +msgid "..." +msgstr "" + +#. Print the spinner +#: apt-pkg/contrib/progress.cc:195 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s ... Narejeno" + #: apt-pkg/contrib/cmndline.cc:80 #, c-format msgid "Command line option '%c' [from %s] is not known." @@ -2817,7 +2832,7 @@ msgid "" "The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "Paket %s mora biti znova nameščen, vendar ni mogoče najti arhiva zanj." -#: apt-pkg/algorithms.cc:1228 +#: apt-pkg/algorithms.cc:1231 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2825,11 +2840,11 @@ msgstr "" "Napaka. pkgProblemResolver::Resolve pri razrešitvi, ki so jih morda " "povzročili zadržani paketi." -#: apt-pkg/algorithms.cc:1230 +#: apt-pkg/algorithms.cc:1233 msgid "Unable to correct problems, you have held broken packages." msgstr "Ni mogoče popraviti težav. Imate pokvarjene pakete." -#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 +#: apt-pkg/algorithms.cc:1583 apt-pkg/algorithms.cc:1585 msgid "" "Some index files failed to download. They have been ignored, or old ones " "used instead." @@ -3311,7 +3326,7 @@ msgstr "Priprava za rešitev prejemanja" msgid "External solver failed without a proper error message" msgstr "Zunanji reševalnik je spodletel brez pravega sporočila o napakah" -#: apt-pkg/edsp.cc:557 apt-pkg/edsp.cc:560 apt-pkg/edsp.cc:565 +#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 msgid "Execute external solver" msgstr "Izvedi zunanji reševalnik" diff --git a/po/sv.po b/po/sv.po index 02bcf0c49..7ba779a6f 100644 --- a/po/sv.po +++ b/po/sv.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-03-14 08:05+0100\n" +"POT-Creation-Date: 2013-03-24 08:53+0100\n" "PO-Revision-Date: 2010-08-24 21:18+0100\n" "Last-Translator: Daniel Nylander \n" "Language-Team: Swedish \n" @@ -637,7 +637,7 @@ msgstr "Avbryter." msgid "Do you want to continue [Y/n]? " msgstr "Vill du fortsätta [J/n]? " -#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1557 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Misslyckades med att hämta %s %s\n" @@ -831,7 +831,7 @@ msgstr "" msgid "Calculating upgrade... " msgstr "Beräknar uppgradering... " -#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:116 msgid "Failed" msgstr "Misslyckades" @@ -1407,7 +1407,7 @@ msgstr "Anslutet datauttag (socket) fick inte svar inom tidsgränsen" msgid "Unable to accept connection" msgstr "Kunde inte ta emot anslutningen" -#: methods/ftp.cc:872 methods/http.cc:1035 methods/rsh.cc:311 +#: methods/ftp.cc:872 methods/http.cc:1039 methods/rsh.cc:311 msgid "Problem hashing file" msgstr "Problem med att lägga filen till hashtabellen" @@ -1436,61 +1436,67 @@ msgid "Unable to invoke " msgstr "Kunde inte starta " # Felmeddelande för misslyckad chdir -#: methods/connect.cc:75 +#: methods/connect.cc:76 #, c-format msgid "Connecting to %s (%s)" msgstr "Ansluter till %s (%s)" -#: methods/connect.cc:86 +#: methods/connect.cc:87 #, c-format msgid "[IP: %s %s]" msgstr "[IP: %s %s]" # [f]amilj, [t]yp, [p]rotokoll -#: methods/connect.cc:93 +#: methods/connect.cc:94 #, c-format msgid "Could not create a socket for %s (f=%u t=%u p=%u)" msgstr "Kunde inte skapa ett uttag (socket) för %s (f=%u t=%u p=%u)" -#: methods/connect.cc:99 +#: methods/connect.cc:100 #, c-format msgid "Cannot initiate the connection to %s:%s (%s)." msgstr "Kunde inte initiera anslutningen till %s:%s (%s)." -#: methods/connect.cc:107 +#: methods/connect.cc:108 #, c-format msgid "Could not connect to %s:%s (%s), connection timed out" msgstr "Kunde inte ansluta till %s:%s (%s), anslutningen överskred tidsgräns" -#: methods/connect.cc:125 +#: methods/connect.cc:126 #, c-format msgid "Could not connect to %s:%s (%s)." msgstr "Kunde inte ansluta till %s:%s (%s)." #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:153 methods/rsh.cc:433 +#: methods/connect.cc:154 methods/rsh.cc:433 #, c-format msgid "Connecting to %s" msgstr "Ansluter till %s" -#: methods/connect.cc:172 methods/connect.cc:191 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format msgid "Could not resolve '%s'" msgstr "Kunde inte slå upp \"%s\"" -#: methods/connect.cc:197 +#: methods/connect.cc:205 #, c-format msgid "Temporary failure resolving '%s'" msgstr "Temporärt fel vid uppslagning av \"%s\"" # Okänd felkod; %i = koden -#: methods/connect.cc:200 +#: methods/connect.cc:209 +#, fuzzy, c-format +msgid "System error resolving '%s:%s' (%s)" +msgstr "Något konstigt hände när \"%s:%s\" slogs upp (%i - %s)" + +# Okänd felkod; %i = koden +#: methods/connect.cc:211 #, c-format msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "Något konstigt hände när \"%s:%s\" slogs upp (%i - %s)" -#: methods/connect.cc:247 +#: methods/connect.cc:258 #, c-format msgid "Unable to connect to %s:%s:" msgstr "Kunde inte ansluta till %s:%s:" @@ -1559,43 +1565,43 @@ msgstr "Den här http-serverns stöd för delvis hämtning fungerar inte" msgid "Unknown date format" msgstr "Okänt datumformat" -#: methods/http.cc:818 +#: methods/http.cc:822 msgid "Select failed" msgstr "\"Select\" misslyckades" -#: methods/http.cc:823 +#: methods/http.cc:827 msgid "Connection timed out" msgstr "Anslutningen överskred tidsgränsen" -#: methods/http.cc:846 +#: methods/http.cc:850 msgid "Error writing to output file" msgstr "Fel vid skrivning till utdatafil" -#: methods/http.cc:877 +#: methods/http.cc:881 msgid "Error writing to file" msgstr "Fel vid skrivning till fil" -#: methods/http.cc:905 +#: methods/http.cc:909 msgid "Error writing to the file" msgstr "Fel vid skrivning till filen" -#: methods/http.cc:919 +#: methods/http.cc:923 msgid "Error reading from server. Remote end closed connection" msgstr "Fel vid läsning från server: Andra änden stängde förbindelsen" -#: methods/http.cc:921 +#: methods/http.cc:925 msgid "Error reading from server" msgstr "Fel vid läsning från server" -#: methods/http.cc:1194 +#: methods/http.cc:1198 msgid "Bad header data" msgstr "Felaktiga data i huvud" -#: methods/http.cc:1211 methods/http.cc:1266 +#: methods/http.cc:1215 methods/http.cc:1270 msgid "Connection failed" msgstr "Anslutningen misslyckades" -#: methods/http.cc:1358 +#: methods/http.cc:1362 msgid "Internal error" msgstr "Internt fel" @@ -2417,6 +2423,16 @@ msgstr "%c%s... Fel!" msgid "%c%s... Done" msgstr "%c%s... Färdig" +#: apt-pkg/contrib/progress.cc:179 +msgid "..." +msgstr "" + +#. Print the spinner +#: apt-pkg/contrib/progress.cc:195 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Färdig" + #: apt-pkg/contrib/cmndline.cc:80 #, c-format msgid "Command line option '%c' [from %s] is not known." @@ -2815,7 +2831,7 @@ msgid "" msgstr "" "Paketet %s måste installeras om, men jag kan inte hitta något arkiv för det." -#: apt-pkg/algorithms.cc:1228 +#: apt-pkg/algorithms.cc:1231 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2823,11 +2839,11 @@ msgstr "" "Fel, pkgProblemResolver::Resolve genererade avbrott; detta kan bero på " "tillbakahållna paket." -#: apt-pkg/algorithms.cc:1230 +#: apt-pkg/algorithms.cc:1233 msgid "Unable to correct problems, you have held broken packages." msgstr "Kunde inte korrigera problemen, du har hållit tillbaka trasiga paket." -#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 +#: apt-pkg/algorithms.cc:1583 apt-pkg/algorithms.cc:1585 #, fuzzy msgid "" "Some index files failed to download. They have been ignored, or old ones " @@ -3311,7 +3327,7 @@ msgstr "" msgid "External solver failed without a proper error message" msgstr "" -#: apt-pkg/edsp.cc:557 apt-pkg/edsp.cc:560 apt-pkg/edsp.cc:565 +#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 msgid "Execute external solver" msgstr "" diff --git a/po/th.po b/po/th.po index 9da100061..ef2b6a45d 100644 --- a/po/th.po +++ b/po/th.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-03-14 08:05+0100\n" +"POT-Creation-Date: 2013-03-24 08:53+0100\n" "PO-Revision-Date: 2012-10-27 22:44+0700\n" "Last-Translator: Theppitak Karoonboonyanan \n" "Language-Team: Thai \n" @@ -623,7 +623,7 @@ msgstr "เลิกทำ" msgid "Do you want to continue [Y/n]? " msgstr "คุณต้องการจะดำเนินการต่อไปหรือไม่ [Y/n]?" -#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1557 #, c-format msgid "Failed to fetch %s %s\n" msgstr "ไม่สามารถดาวน์โหลด %s %s\n" @@ -804,7 +804,7 @@ msgstr "คำสั่งนี้ไม่แนะนำให้ใช้แ msgid "Calculating upgrade... " msgstr "กำลังคำนวณการปรับรุ่น... " -#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:116 msgid "Failed" msgstr "ล้มเหลว" @@ -1380,7 +1380,7 @@ msgstr "หมดเวลารอเชื่อมต่อซ็อกเก msgid "Unable to accept connection" msgstr "ไม่สามารถรับการเชื่อมต่อ" -#: methods/ftp.cc:872 methods/http.cc:1035 methods/rsh.cc:311 +#: methods/ftp.cc:872 methods/http.cc:1039 methods/rsh.cc:311 msgid "Problem hashing file" msgstr "เกิดปัญหาขณะคำนวณค่าแฮชของแฟ้ม" @@ -1407,59 +1407,64 @@ msgstr "สอบถาม" msgid "Unable to invoke " msgstr "ไม่สามารถเรียก " -#: methods/connect.cc:75 +#: methods/connect.cc:76 #, c-format msgid "Connecting to %s (%s)" msgstr "เชื่อมต่อไปยัง %s (%s)" -#: methods/connect.cc:86 +#: methods/connect.cc:87 #, c-format msgid "[IP: %s %s]" msgstr "[IP: %s %s]" -#: methods/connect.cc:93 +#: methods/connect.cc:94 #, c-format msgid "Could not create a socket for %s (f=%u t=%u p=%u)" msgstr "ไม่สามารถสร้างซ็อกเก็ตสำหรับ %s (f=%u t=%u p=%u)" -#: methods/connect.cc:99 +#: methods/connect.cc:100 #, c-format msgid "Cannot initiate the connection to %s:%s (%s)." msgstr "ไม่สามารถเริ่มการเชื่อมต่อไปยัง %s:%s (%s)" -#: methods/connect.cc:107 +#: methods/connect.cc:108 #, c-format msgid "Could not connect to %s:%s (%s), connection timed out" msgstr "ไม่สามารถเชื่อมต่อไปยัง %s:%s (%s) เนื่องจากหมดเวลาคอย" -#: methods/connect.cc:125 +#: methods/connect.cc:126 #, c-format msgid "Could not connect to %s:%s (%s)." msgstr "ไม่สามารถเชื่อมต่อไปยัง %s:%s (%s)" #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:153 methods/rsh.cc:433 +#: methods/connect.cc:154 methods/rsh.cc:433 #, c-format msgid "Connecting to %s" msgstr "เชื่อมต่อไปยัง %s" -#: methods/connect.cc:172 methods/connect.cc:191 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format msgid "Could not resolve '%s'" msgstr "ไม่สามารถเปิดหาที่อยู่ '%s'" -#: methods/connect.cc:197 +#: methods/connect.cc:205 #, c-format msgid "Temporary failure resolving '%s'" msgstr "เกิดข้อผิดพลาดชั่วคราวขณะเปิดหาที่อยู่ '%s'" -#: methods/connect.cc:200 +#: methods/connect.cc:209 +#, fuzzy, c-format +msgid "System error resolving '%s:%s' (%s)" +msgstr "เกิดปัญหาร้ายแรงบางอย่างขณะเปิดหาที่อยู่ '%s:%s' (%i - %s)" + +#: methods/connect.cc:211 #, c-format msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "เกิดปัญหาร้ายแรงบางอย่างขณะเปิดหาที่อยู่ '%s:%s' (%i - %s)" -#: methods/connect.cc:247 +#: methods/connect.cc:258 #, c-format msgid "Unable to connect to %s:%s:" msgstr "ไม่สามารถเชื่อมต่อไปยัง %s:%s:" @@ -1523,43 +1528,43 @@ msgstr "การสนับสนุน Content-Range ที่เซิร์ msgid "Unknown date format" msgstr "พบรูปแบบวันที่ที่ไม่รู้จัก" -#: methods/http.cc:818 +#: methods/http.cc:822 msgid "Select failed" msgstr "select ไม่สำเร็จ" -#: methods/http.cc:823 +#: methods/http.cc:827 msgid "Connection timed out" msgstr "หมดเวลารอเชื่อมต่อ" -#: methods/http.cc:846 +#: methods/http.cc:850 msgid "Error writing to output file" msgstr "เกิดข้อผิดพลาดขณะเขียนลงแฟ้มผลลัพธ์" -#: methods/http.cc:877 +#: methods/http.cc:881 msgid "Error writing to file" msgstr "เกิดข้อผิดพลาดขณะเขียนลงแฟ้ม" -#: methods/http.cc:905 +#: methods/http.cc:909 msgid "Error writing to the file" msgstr "เกิดข้อผิดพลาดขณะเขียนลงแฟ้ม" -#: methods/http.cc:919 +#: methods/http.cc:923 msgid "Error reading from server. Remote end closed connection" msgstr "เกิดข้อผิดพลาดขณะอ่านข้อมูลจากเซิร์ฟเวอร์ ปลายทางอีกด้านหนึ่งปิดการเชื่อมต่อ" -#: methods/http.cc:921 +#: methods/http.cc:925 msgid "Error reading from server" msgstr "เกิดข้อผิดพลาดขณะอ่านข้อมูลจากเซิร์ฟเวอร์" -#: methods/http.cc:1194 +#: methods/http.cc:1198 msgid "Bad header data" msgstr "ข้อมูลส่วนหัวผิดพลาด" -#: methods/http.cc:1211 methods/http.cc:1266 +#: methods/http.cc:1215 methods/http.cc:1270 msgid "Connection failed" msgstr "เชื่อมต่อไม่สำเร็จ" -#: methods/http.cc:1358 +#: methods/http.cc:1362 msgid "Internal error" msgstr "ข้อผิดพลาดภายใน" @@ -2358,6 +2363,16 @@ msgstr "%c%s... ผิดพลาด!" msgid "%c%s... Done" msgstr "%c%s... เสร็จแล้ว" +#: apt-pkg/contrib/progress.cc:179 +msgid "..." +msgstr "" + +#. Print the spinner +#: apt-pkg/contrib/progress.cc:195 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... เสร็จแล้ว" + #: apt-pkg/contrib/cmndline.cc:80 #, c-format msgid "Command line option '%c' [from %s] is not known." @@ -2750,7 +2765,7 @@ msgid "" "The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "จำเป็นต้องติดตั้งแพกเกจ %s ซ้ำ แต่หาตัวแพกเกจไม่พบ" -#: apt-pkg/algorithms.cc:1228 +#: apt-pkg/algorithms.cc:1231 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2758,11 +2773,11 @@ msgstr "" "ข้อผิดพลาด: pkgProblemResolver::Resolve สร้างคำตอบที่ทำให้เกิดแพกเกจเสีย " "อาจเกิดจากแพกเกจที่ถูกกำหนดให้คงรุ่นไว้" -#: apt-pkg/algorithms.cc:1230 +#: apt-pkg/algorithms.cc:1233 msgid "Unable to correct problems, you have held broken packages." msgstr "ไม่สามารถแก้ปัญหาได้ คุณได้คงรุ่นแพกเกจที่เสียอยู่ไว้" -#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 +#: apt-pkg/algorithms.cc:1583 apt-pkg/algorithms.cc:1585 msgid "" "Some index files failed to download. They have been ignored, or old ones " "used instead." @@ -3227,7 +3242,7 @@ msgstr "เตรียมรับคำตอบ" msgid "External solver failed without a proper error message" msgstr "กลไกการแก้ปัญหาภายนอกทำงานล้มเหลวโดยไม่มีข้อความข้อผิดพลาดที่เหมาะสม" -#: apt-pkg/edsp.cc:557 apt-pkg/edsp.cc:560 apt-pkg/edsp.cc:565 +#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 msgid "Execute external solver" msgstr "เรียกกลไกการแก้ปัญหาภายนอก" diff --git a/po/tl.po b/po/tl.po index a92a8114e..85f159546 100644 --- a/po/tl.po +++ b/po/tl.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-03-14 08:05+0100\n" +"POT-Creation-Date: 2013-03-24 08:53+0100\n" "PO-Revision-Date: 2007-03-29 21:36+0800\n" "Last-Translator: Eric Pareja \n" "Language-Team: Tagalog \n" @@ -647,7 +647,7 @@ msgstr "Abort." msgid "Do you want to continue [Y/n]? " msgstr "Nais niyo bang magpatuloy [O/h]? " -#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1557 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Bigo sa pagkuha ng %s %s\n" @@ -832,7 +832,7 @@ msgstr "" msgid "Calculating upgrade... " msgstr "Sinusuri ang pag-upgrade... " -#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:116 msgid "Failed" msgstr "Bigo" @@ -1389,7 +1389,7 @@ msgstr "Nag-timeout ang socket ng datos" msgid "Unable to accept connection" msgstr "Hindi makatanggap ng koneksyon" -#: methods/ftp.cc:872 methods/http.cc:1035 methods/rsh.cc:311 +#: methods/ftp.cc:872 methods/http.cc:1039 methods/rsh.cc:311 msgid "Problem hashing file" msgstr "Problema sa pag-hash ng talaksan" @@ -1416,59 +1416,64 @@ msgstr "Tanong" msgid "Unable to invoke " msgstr "Hindi ma-invoke " -#: methods/connect.cc:75 +#: methods/connect.cc:76 #, c-format msgid "Connecting to %s (%s)" msgstr "Kumokonekta sa %s (%s)" -#: methods/connect.cc:86 +#: methods/connect.cc:87 #, c-format msgid "[IP: %s %s]" msgstr "[IP: %s %s]" -#: methods/connect.cc:93 +#: methods/connect.cc:94 #, c-format msgid "Could not create a socket for %s (f=%u t=%u p=%u)" msgstr "Hindi makalikha ng socket para sa %s (f=%u t=%u p=%u)" -#: methods/connect.cc:99 +#: methods/connect.cc:100 #, c-format msgid "Cannot initiate the connection to %s:%s (%s)." msgstr "Hindi maumpisahan ang koneksyon sa %s:%s (%s)." -#: methods/connect.cc:107 +#: methods/connect.cc:108 #, c-format msgid "Could not connect to %s:%s (%s), connection timed out" msgstr "Hindi maka-konekta sa %s:%s (%s), nag-timeout ang koneksyon" -#: methods/connect.cc:125 +#: methods/connect.cc:126 #, c-format msgid "Could not connect to %s:%s (%s)." msgstr "Hindi maka-konekta sa %s:%s (%s)." #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:153 methods/rsh.cc:433 +#: methods/connect.cc:154 methods/rsh.cc:433 #, c-format msgid "Connecting to %s" msgstr "Kumokonekta sa %s" -#: methods/connect.cc:172 methods/connect.cc:191 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format msgid "Could not resolve '%s'" msgstr "Hindi maresolba ang '%s'" -#: methods/connect.cc:197 +#: methods/connect.cc:205 #, c-format msgid "Temporary failure resolving '%s'" msgstr "Pansamantalang kabiguan sa pagresolba ng '%s'" -#: methods/connect.cc:200 +#: methods/connect.cc:209 +#, fuzzy, c-format +msgid "System error resolving '%s:%s' (%s)" +msgstr "May naganap na kababalaghan sa pagresolba ng '%s:%s' (%i)" + +#: methods/connect.cc:211 #, fuzzy, c-format msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "May naganap na kababalaghan sa pagresolba ng '%s:%s' (%i)" -#: methods/connect.cc:247 +#: methods/connect.cc:258 #, fuzzy, c-format msgid "Unable to connect to %s:%s:" msgstr "Hindi maka-konekta sa %s %s:" @@ -1538,43 +1543,43 @@ msgstr "Sira ang range support ng HTTP server na ito" msgid "Unknown date format" msgstr "Di kilalang anyo ng petsa" -#: methods/http.cc:818 +#: methods/http.cc:822 msgid "Select failed" msgstr "Bigo ang pagpili" -#: methods/http.cc:823 +#: methods/http.cc:827 msgid "Connection timed out" msgstr "Nag-timeout ang koneksyon" -#: methods/http.cc:846 +#: methods/http.cc:850 msgid "Error writing to output file" msgstr "Error sa pagsulat ng talaksang output" -#: methods/http.cc:877 +#: methods/http.cc:881 msgid "Error writing to file" msgstr "Error sa pagsulat sa talaksan" -#: methods/http.cc:905 +#: methods/http.cc:909 msgid "Error writing to the file" msgstr "Error sa pagsusulat sa talaksan" -#: methods/http.cc:919 +#: methods/http.cc:923 msgid "Error reading from server. Remote end closed connection" msgstr "Error sa pagbasa mula sa server, sinarhan ng remote ang koneksyon" -#: methods/http.cc:921 +#: methods/http.cc:925 msgid "Error reading from server" msgstr "Error sa pagbasa mula sa server" -#: methods/http.cc:1194 +#: methods/http.cc:1198 msgid "Bad header data" msgstr "Maling datos sa panimula" -#: methods/http.cc:1211 methods/http.cc:1266 +#: methods/http.cc:1215 methods/http.cc:1270 msgid "Connection failed" msgstr "Bigo ang koneksyon" -#: methods/http.cc:1358 +#: methods/http.cc:1362 msgid "Internal error" msgstr "Internal na error" @@ -2393,6 +2398,16 @@ msgstr "%c%s... Error!" msgid "%c%s... Done" msgstr "%c%s... Tapos" +#: apt-pkg/contrib/progress.cc:179 +msgid "..." +msgstr "" + +#. Print the spinner +#: apt-pkg/contrib/progress.cc:195 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Tapos" + #: apt-pkg/contrib/cmndline.cc:80 #, c-format msgid "Command line option '%c' [from %s] is not known." @@ -2792,7 +2807,7 @@ msgstr "" "Kailangan ma-instol muli ang paketeng %s, ngunit hindi ko mahanap ang arkibo " "para dito." -#: apt-pkg/algorithms.cc:1228 +#: apt-pkg/algorithms.cc:1231 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2800,12 +2815,12 @@ msgstr "" "Error, pkgProblemResolver::Resolve ay naghudyat ng mga break, maaaring dulot " "ito ng mga paketeng naka-hold." -#: apt-pkg/algorithms.cc:1230 +#: apt-pkg/algorithms.cc:1233 msgid "Unable to correct problems, you have held broken packages." msgstr "" "Hindi maayos ang mga problema, mayroon kayong sirang mga pakete na naka-hold." -#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 +#: apt-pkg/algorithms.cc:1583 apt-pkg/algorithms.cc:1585 #, fuzzy msgid "" "Some index files failed to download. They have been ignored, or old ones " @@ -3283,7 +3298,7 @@ msgstr "" msgid "External solver failed without a proper error message" msgstr "" -#: apt-pkg/edsp.cc:557 apt-pkg/edsp.cc:560 apt-pkg/edsp.cc:565 +#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 msgid "Execute external solver" msgstr "" diff --git a/po/uk.po b/po/uk.po index 4a1706204..cfad1393a 100644 --- a/po/uk.po +++ b/po/uk.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: apt-all\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-03-14 08:05+0100\n" +"POT-Creation-Date: 2013-03-24 08:53+0100\n" "PO-Revision-Date: 2012-09-25 20:19+0300\n" "Last-Translator: A. Bondarenko \n" "Language-Team: Українська \n" @@ -644,7 +644,7 @@ msgstr "Перервано." msgid "Do you want to continue [Y/n]? " msgstr "Бажаєте продовжити [Y/n]? " -#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1557 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Не вдалося завантажити %s %s\n" @@ -844,7 +844,7 @@ msgstr "" msgid "Calculating upgrade... " msgstr "Обчислення оновлень... " -#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:116 msgid "Failed" msgstr "Невдача" @@ -1444,7 +1444,7 @@ msgstr "Час з'єднання з сокетом даних вичерпавс msgid "Unable to accept connection" msgstr "Неможливо прийняти з'єднання" -#: methods/ftp.cc:872 methods/http.cc:1035 methods/rsh.cc:311 +#: methods/ftp.cc:872 methods/http.cc:1039 methods/rsh.cc:311 msgid "Problem hashing file" msgstr "Проблема хешування файла" @@ -1471,59 +1471,64 @@ msgstr "Черга" msgid "Unable to invoke " msgstr "Неможливо викликати " -#: methods/connect.cc:75 +#: methods/connect.cc:76 #, c-format msgid "Connecting to %s (%s)" msgstr "З'єднання з %s (%s)" -#: methods/connect.cc:86 +#: methods/connect.cc:87 #, c-format msgid "[IP: %s %s]" msgstr "[IP: %s %s]" -#: methods/connect.cc:93 +#: methods/connect.cc:94 #, c-format msgid "Could not create a socket for %s (f=%u t=%u p=%u)" msgstr "Неможливо створити сокет для %s (f=%u t=%u p=%u)" -#: methods/connect.cc:99 +#: methods/connect.cc:100 #, c-format msgid "Cannot initiate the connection to %s:%s (%s)." msgstr "Неможливо почати з'єднання з %s:%s (%s)." -#: methods/connect.cc:107 +#: methods/connect.cc:108 #, c-format msgid "Could not connect to %s:%s (%s), connection timed out" msgstr "Неможливо з'єднатися з %s:%s (%s), час з'єднання вичерпався" -#: methods/connect.cc:125 +#: methods/connect.cc:126 #, c-format msgid "Could not connect to %s:%s (%s)." msgstr "Неможливо під'єднатися до %s:%s (%s)." #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:153 methods/rsh.cc:433 +#: methods/connect.cc:154 methods/rsh.cc:433 #, c-format msgid "Connecting to %s" msgstr "З'єднання з %s" -#: methods/connect.cc:172 methods/connect.cc:191 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format msgid "Could not resolve '%s'" msgstr "Не можу знайти IP адрес для %s" -#: methods/connect.cc:197 +#: methods/connect.cc:205 #, c-format msgid "Temporary failure resolving '%s'" msgstr "Тимчасова помилка при отриманні IP адреси '%s'" -#: methods/connect.cc:200 +#: methods/connect.cc:209 +#, fuzzy, c-format +msgid "System error resolving '%s:%s' (%s)" +msgstr "Сталося щось дивне при спробі отримати IP адрес для '%s:%s' (%i - %s)" + +#: methods/connect.cc:211 #, c-format msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "Сталося щось дивне при спробі отримати IP адрес для '%s:%s' (%i - %s)" -#: methods/connect.cc:247 +#: methods/connect.cc:258 #, c-format msgid "Unable to connect to %s:%s:" msgstr "Неможливо під'єднатися до %s:%s:" @@ -1591,43 +1596,43 @@ msgstr "Цей HTTP сервер має поламану підтримку 'ran msgid "Unknown date format" msgstr "Невідомий формат дати" -#: methods/http.cc:818 +#: methods/http.cc:822 msgid "Select failed" msgstr "Вибір провалився" -#: methods/http.cc:823 +#: methods/http.cc:827 msgid "Connection timed out" msgstr "Час очікування з'єднання вийшов" -#: methods/http.cc:846 +#: methods/http.cc:850 msgid "Error writing to output file" msgstr "Помилка запису у вихідний файл" -#: methods/http.cc:877 +#: methods/http.cc:881 msgid "Error writing to file" msgstr "Помилка запису у файл" -#: methods/http.cc:905 +#: methods/http.cc:909 msgid "Error writing to the file" msgstr "Помилка запису у файл" -#: methods/http.cc:919 +#: methods/http.cc:923 msgid "Error reading from server. Remote end closed connection" msgstr "Помилка зчитування з сервера. Віддалена сторона закрила з'єднання" -#: methods/http.cc:921 +#: methods/http.cc:925 msgid "Error reading from server" msgstr "Помилка зчитування з сервера" -#: methods/http.cc:1194 +#: methods/http.cc:1198 msgid "Bad header data" msgstr "Погана заголовкова інформація" -#: methods/http.cc:1211 methods/http.cc:1266 +#: methods/http.cc:1215 methods/http.cc:1270 msgid "Connection failed" msgstr "З'єднання не вдалося" -#: methods/http.cc:1358 +#: methods/http.cc:1362 msgid "Internal error" msgstr "Внутрішня помилка" @@ -2462,6 +2467,16 @@ msgstr "%c%s... Помилка!" msgid "%c%s... Done" msgstr "%c%s... Виконано" +#: apt-pkg/contrib/progress.cc:179 +msgid "..." +msgstr "" + +#. Print the spinner +#: apt-pkg/contrib/progress.cc:195 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Виконано" + #: apt-pkg/contrib/cmndline.cc:80 #, c-format msgid "Command line option '%c' [from %s] is not known." @@ -2863,7 +2878,7 @@ msgid "" msgstr "" "Пакунок %s повинен бути перевстановленим, але я не можу знайти його архів." -#: apt-pkg/algorithms.cc:1228 +#: apt-pkg/algorithms.cc:1231 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2871,11 +2886,11 @@ msgstr "" "Помилка, pkgProblemResolver::Resolve згенерував зупинку, це може бути " "пов'язано з зафіксованими пакунками." -#: apt-pkg/algorithms.cc:1230 +#: apt-pkg/algorithms.cc:1233 msgid "Unable to correct problems, you have held broken packages." msgstr "Неможливо усунути проблеми, ви маєте поламані зафіксовані пакунки." -#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 +#: apt-pkg/algorithms.cc:1583 apt-pkg/algorithms.cc:1585 msgid "" "Some index files failed to download. They have been ignored, or old ones " "used instead." @@ -3363,7 +3378,7 @@ msgstr "" "Зовнішній розв'язувач завершився невдало без відповідного повідомлення про " "помилку" -#: apt-pkg/edsp.cc:557 apt-pkg/edsp.cc:560 apt-pkg/edsp.cc:565 +#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 #, fuzzy msgid "Execute external solver" msgstr "Виконати зовнішній розв'язувач" diff --git a/po/vi.po b/po/vi.po index fc79aa87a..ac756e31d 100644 --- a/po/vi.po +++ b/po/vi.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.9.7.5\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-03-14 08:05+0100\n" +"POT-Creation-Date: 2013-03-24 08:53+0100\n" "PO-Revision-Date: 2012-11-20 14:12+0700\n" "Last-Translator: Trần Ngọc Quân \n" "Language-Team: Vietnamese \n" @@ -640,7 +640,7 @@ msgstr "Hủy bỏ." msgid "Do you want to continue [Y/n]? " msgstr "Bạn có muốn tiếp tục không? [C/k] " -#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1557 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Việc lấy %s bị lỗi %s\n" @@ -827,7 +827,7 @@ msgstr "" msgid "Calculating upgrade... " msgstr "Đang tính bước nâng cấp... " -#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:116 msgid "Failed" msgstr "Gặp lỗi" @@ -1421,7 +1421,7 @@ msgstr "Quá giờ kết nối ổ cắm dữ liệu" msgid "Unable to accept connection" msgstr "Không thể chấp nhận kết nối" -#: methods/ftp.cc:872 methods/http.cc:1035 methods/rsh.cc:311 +#: methods/ftp.cc:872 methods/http.cc:1039 methods/rsh.cc:311 msgid "Problem hashing file" msgstr "Gặp khó khăn khi tạo chuỗi duy nhất cho tập tin" @@ -1448,59 +1448,64 @@ msgstr "Truy vấn" msgid "Unable to invoke " msgstr "Không thể gọi " -#: methods/connect.cc:75 +#: methods/connect.cc:76 #, c-format msgid "Connecting to %s (%s)" msgstr "Đang kết nối đến %s (%s)..." -#: methods/connect.cc:86 +#: methods/connect.cc:87 #, c-format msgid "[IP: %s %s]" msgstr "[Địa chỉ IP: %s %s]" -#: methods/connect.cc:93 +#: methods/connect.cc:94 #, c-format msgid "Could not create a socket for %s (f=%u t=%u p=%u)" msgstr "Không thể tạo ổ cắm cho %s (f=%u t=%u p=%u)" -#: methods/connect.cc:99 +#: methods/connect.cc:100 #, c-format msgid "Cannot initiate the connection to %s:%s (%s)." msgstr "Không thể sở khởi kết nối đến %s:%s (%s)." -#: methods/connect.cc:107 +#: methods/connect.cc:108 #, c-format msgid "Could not connect to %s:%s (%s), connection timed out" msgstr "Không thể kết nối đến %s:%s (%s), kết nối đã quá giờ" -#: methods/connect.cc:125 +#: methods/connect.cc:126 #, c-format msgid "Could not connect to %s:%s (%s)." msgstr "Không thể kết nối đến %s:%s (%s)." #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:153 methods/rsh.cc:433 +#: methods/connect.cc:154 methods/rsh.cc:433 #, c-format msgid "Connecting to %s" msgstr "Đang kết nối đến %s..." -#: methods/connect.cc:172 methods/connect.cc:191 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format msgid "Could not resolve '%s'" msgstr "Không thể tháo gỡ “%s”" -#: methods/connect.cc:197 +#: methods/connect.cc:205 #, c-format msgid "Temporary failure resolving '%s'" msgstr "Việc tháo gỡ “%s” bị lỗi tạm thời" -#: methods/connect.cc:200 +#: methods/connect.cc:209 +#, fuzzy, c-format +msgid "System error resolving '%s:%s' (%s)" +msgstr "Gặp lỗi nghiệm trọng khi tháo gỡ “%s:%s” (%i - %s)" + +#: methods/connect.cc:211 #, c-format msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "Gặp lỗi nghiệm trọng khi tháo gỡ “%s:%s” (%i - %s)" -#: methods/connect.cc:247 +#: methods/connect.cc:258 #, c-format msgid "Unable to connect to %s:%s:" msgstr "Không thể kết nối đến %s: %s:" @@ -1571,43 +1576,43 @@ msgstr "Máy phục vụ HTTP đã ngắt cách hỗ trợ phạm vị" msgid "Unknown date format" msgstr "Không rõ dạng ngày" -#: methods/http.cc:818 +#: methods/http.cc:822 msgid "Select failed" msgstr "Việc chọn bị lỗi" -#: methods/http.cc:823 +#: methods/http.cc:827 msgid "Connection timed out" msgstr "Kết nối đã quá giờ" -#: methods/http.cc:846 +#: methods/http.cc:850 msgid "Error writing to output file" msgstr "Gặp lỗi khi ghi vào tập tin xuất" -#: methods/http.cc:877 +#: methods/http.cc:881 msgid "Error writing to file" msgstr "Gặp lỗi khi ghi vào tập tin" -#: methods/http.cc:905 +#: methods/http.cc:909 msgid "Error writing to the file" msgstr "Gặp lỗi khi ghi vào tập tin đó" -#: methods/http.cc:919 +#: methods/http.cc:923 msgid "Error reading from server. Remote end closed connection" msgstr "Gặp lỗi khi đọc từ máy phục vụ: cuối ở xa đã đóng kết nối" -#: methods/http.cc:921 +#: methods/http.cc:925 msgid "Error reading from server" msgstr "Gặp lỗi khi đọc từ máy phục vụ" -#: methods/http.cc:1194 +#: methods/http.cc:1198 msgid "Bad header data" msgstr "Dữ liệu dòng đầu sai" -#: methods/http.cc:1211 methods/http.cc:1266 +#: methods/http.cc:1215 methods/http.cc:1270 msgid "Connection failed" msgstr "Kết nối bị ngắt" -#: methods/http.cc:1358 +#: methods/http.cc:1362 msgid "Internal error" msgstr "Gặp lỗi nội bộ" @@ -2444,6 +2449,16 @@ msgstr "%c%s... Lỗi!" msgid "%c%s... Done" msgstr "%c%s... Hoàn tất" +#: apt-pkg/contrib/progress.cc:179 +msgid "..." +msgstr "" + +#. Print the spinner +#: apt-pkg/contrib/progress.cc:195 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... Hoàn tất" + #: apt-pkg/contrib/cmndline.cc:80 #, c-format msgid "Command line option '%c' [from %s] is not known." @@ -2849,7 +2864,7 @@ msgid "" "The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "Cần phải cài đặt lại gói %s, nhưng mà không thể tìm kho cho nó." -#: apt-pkg/algorithms.cc:1228 +#: apt-pkg/algorithms.cc:1231 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2857,11 +2872,11 @@ msgstr "" "Lỗi: “pkgProblemResolver::Resolve” (bộ tháo gỡ vấn đề gọi::tháo gỡ) đã tạo " "ra nhiều chỗ ngắt, có lẽ một số gói đã giữ lại đã gây ra trường hợp này." -#: apt-pkg/algorithms.cc:1230 +#: apt-pkg/algorithms.cc:1233 msgid "Unable to correct problems, you have held broken packages." msgstr "Không thể sửa vấn đề, bạn đã giữ lại một số gói bị ngắt." -#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 +#: apt-pkg/algorithms.cc:1583 apt-pkg/algorithms.cc:1585 msgid "" "Some index files failed to download. They have been ignored, or old ones " "used instead." @@ -3349,7 +3364,7 @@ msgstr "Chuẩn bị để lấy cách giải quyết" msgid "External solver failed without a proper error message" msgstr "Bộ phân giải bên ngoài gặp lỗi mà không trả về thông tin lỗi thích hợp" -#: apt-pkg/edsp.cc:557 apt-pkg/edsp.cc:560 apt-pkg/edsp.cc:565 +#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 msgid "Execute external solver" msgstr "Thi hành bộ phân giải từ bên ngoài" diff --git a/po/zh_CN.po b/po/zh_CN.po index 8c3120001..d4ec54b3d 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.8.0~pre1\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-03-14 08:05+0100\n" +"POT-Creation-Date: 2013-03-24 08:53+0100\n" "PO-Revision-Date: 2010-08-26 14:42+0800\n" "Last-Translator: Aron Xu \n" "Language-Team: Chinese (simplified) \n" @@ -629,7 +629,7 @@ msgstr "中止执行。" msgid "Do you want to continue [Y/n]? " msgstr "您希望继续执行吗?[Y/n]" -#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1554 +#: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1557 #, c-format msgid "Failed to fetch %s %s\n" msgstr "无法下载 %s %s\n" @@ -807,7 +807,7 @@ msgstr "" msgid "Calculating upgrade... " msgstr "正在对升级进行计算... " -#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:115 +#: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:116 msgid "Failed" msgstr "失败" @@ -1366,7 +1366,7 @@ msgstr "数据套接字连接超时" msgid "Unable to accept connection" msgstr "无法接受连接" -#: methods/ftp.cc:872 methods/http.cc:1035 methods/rsh.cc:311 +#: methods/ftp.cc:872 methods/http.cc:1039 methods/rsh.cc:311 msgid "Problem hashing file" msgstr "把文件加入哈希表时出错" @@ -1393,59 +1393,64 @@ msgstr "查询" msgid "Unable to invoke " msgstr "无法调用 " -#: methods/connect.cc:75 +#: methods/connect.cc:76 #, c-format msgid "Connecting to %s (%s)" msgstr "正在连接 %s (%s)" -#: methods/connect.cc:86 +#: methods/connect.cc:87 #, c-format msgid "[IP: %s %s]" msgstr "[IP: %s %s]" -#: methods/connect.cc:93 +#: methods/connect.cc:94 #, c-format msgid "Could not create a socket for %s (f=%u t=%u p=%u)" msgstr "无法为 %s 创建套接字(f=%u t=%u p=%u)" -#: methods/connect.cc:99 +#: methods/connect.cc:100 #, c-format msgid "Cannot initiate the connection to %s:%s (%s)." msgstr "无法发起与 %s:%s (%s) 的连接" -#: methods/connect.cc:107 +#: methods/connect.cc:108 #, c-format msgid "Could not connect to %s:%s (%s), connection timed out" msgstr "无法连接上 %s:%s (%s),连接超时" -#: methods/connect.cc:125 +#: methods/connect.cc:126 #, c-format msgid "Could not connect to %s:%s (%s)." msgstr "无法连接上 %s:%s (%s)。" #. We say this mainly because the pause here is for the #. ssh connection that is still going -#: methods/connect.cc:153 methods/rsh.cc:433 +#: methods/connect.cc:154 methods/rsh.cc:433 #, c-format msgid "Connecting to %s" msgstr "正在连接 %s" -#: methods/connect.cc:172 methods/connect.cc:191 +#: methods/connect.cc:180 methods/connect.cc:199 #, c-format msgid "Could not resolve '%s'" msgstr "无法解析域名“%s”" -#: methods/connect.cc:197 +#: methods/connect.cc:205 #, c-format msgid "Temporary failure resolving '%s'" msgstr "暂时不能解析域名“%s”" -#: methods/connect.cc:200 +#: methods/connect.cc:209 +#, fuzzy, c-format +msgid "System error resolving '%s:%s' (%s)" +msgstr "解析“%s:%s”时,出现了某些故障(%i - %s)" + +#: methods/connect.cc:211 #, c-format msgid "Something wicked happened resolving '%s:%s' (%i - %s)" msgstr "解析“%s:%s”时,出现了某些故障(%i - %s)" -#: methods/connect.cc:247 +#: methods/connect.cc:258 #, c-format msgid "Unable to connect to %s:%s:" msgstr "不能连接到 %s:%s:" @@ -1509,43 +1514,43 @@ msgstr "该 HTTP 服务器的 range 支持不正常" msgid "Unknown date format" msgstr "无法识别的日期格式" -#: methods/http.cc:818 +#: methods/http.cc:822 msgid "Select failed" msgstr "select 调用出错" -#: methods/http.cc:823 +#: methods/http.cc:827 msgid "Connection timed out" msgstr "连接超时" -#: methods/http.cc:846 +#: methods/http.cc:850 msgid "Error writing to output file" msgstr "写输出文件时出错" -#: methods/http.cc:877 +#: methods/http.cc:881 msgid "Error writing to file" msgstr "写入文件出错" -#: methods/http.cc:905 +#: methods/http.cc:909 msgid "Error writing to the file" msgstr "写入文件出错" -#: methods/http.cc:919 +#: methods/http.cc:923 msgid "Error reading from server. Remote end closed connection" msgstr "从服务器读取数据时出错,对方关闭了连接" -#: methods/http.cc:921 +#: methods/http.cc:925 msgid "Error reading from server" msgstr "从服务器读取数据出错" -#: methods/http.cc:1194 +#: methods/http.cc:1198 msgid "Bad header data" msgstr "错误的报头数据" -#: methods/http.cc:1211 methods/http.cc:1266 +#: methods/http.cc:1215 methods/http.cc:1270 msgid "Connection failed" msgstr "连接失败" -#: methods/http.cc:1358 +#: methods/http.cc:1362 msgid "Internal error" msgstr "内部错误" @@ -2347,6 +2352,16 @@ msgstr "%c%s... 有错误!" msgid "%c%s... Done" msgstr "%c%s... 完成" +#: apt-pkg/contrib/progress.cc:179 +msgid "..." +msgstr "" + +#. Print the spinner +#: apt-pkg/contrib/progress.cc:195 +#, fuzzy, c-format +msgid "%c%s... %u%%" +msgstr "%c%s... 完成" + #: apt-pkg/contrib/cmndline.cc:80 #, c-format msgid "Command line option '%c' [from %s] is not known." @@ -2739,7 +2754,7 @@ msgid "" "The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "软件包 %s 需要重新安装,但是我无法找到相应的安装文件。" -#: apt-pkg/algorithms.cc:1228 +#: apt-pkg/algorithms.cc:1231 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2747,13 +2762,13 @@ msgstr "" "错误,pkgProblemResolver::Resolve 发生故障,这可能是有软件包被要求保持现状的" "缘故。" -#: apt-pkg/algorithms.cc:1230 +#: apt-pkg/algorithms.cc:1233 msgid "Unable to correct problems, you have held broken packages." msgstr "" "无法修正错误,因为您要求某些软件包保持现状,就是它们破坏了软件包间的依赖关" "系。" -#: apt-pkg/algorithms.cc:1580 apt-pkg/algorithms.cc:1582 +#: apt-pkg/algorithms.cc:1583 apt-pkg/algorithms.cc:1585 #, fuzzy msgid "" "Some index files failed to download. They have been ignored, or old ones " @@ -3219,7 +3234,7 @@ msgstr "" msgid "External solver failed without a proper error message" msgstr "" -#: apt-pkg/edsp.cc:557 apt-pkg/edsp.cc:560 apt-pkg/edsp.cc:565 +#: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564 msgid "Execute external solver" msgstr "" diff --git a/po/zh_TW.po b/po/zh_TW.po index 4a8d6b9e8..47fa334ae 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: 0.5.4\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-03-14 08:05+0100\n" +"POT-Creation-Date: 2013-03-24 08:53+0100\n" "PO-Revision-Date: 2009-01-28 10:41+0800\n" "Last-Translator: Tetralet \n" "Language-Team: Debian-user in Chinese [Big5] Date: Sun, 24 Mar 2013 08:58:27 +0100 Subject: * Update all PO files and apt-all.pot * French translation completed (Christian Perrier) --- debian/changelog | 8 ++++++++ po/fr.po | 16 +++++++--------- 2 files changed, 15 insertions(+), 9 deletions(-) diff --git a/debian/changelog b/debian/changelog index a25507fc9..cf04c1dd2 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +apt (0.9.7.9~exp2) UNRELEASED; urgency=low + + [ Programs translations ] + * Update all PO files and apt-all.pot + * French translation completed (Christian Perrier) + + -- Christian Perrier Sun, 24 Mar 2013 08:57:45 +0100 + apt (0.9.7.9~exp1) experimental; urgency=low [ Niels Thykier ] diff --git a/po/fr.po b/po/fr.po index 4d077d87a..129d70ba0 100644 --- a/po/fr.po +++ b/po/fr.po @@ -3,13 +3,13 @@ # French messages # # Pierre Machard , 2002,2003,2004. -# Christian Perrier , 2004-2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012. +# Christian Perrier , 2004-2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013. msgid "" msgstr "" "Project-Id-Version: fr\n" "Report-Msgid-Bugs-To: APT Development Team \n" "POT-Creation-Date: 2013-03-24 08:53+0100\n" -"PO-Revision-Date: 2012-06-25 19:58+0200\n" +"PO-Revision-Date: 2013-03-24 08:57+0100\n" "Last-Translator: Christian Perrier \n" "Language-Team: French \n" "Language: fr\n" @@ -1539,11 +1539,9 @@ msgid "Temporary failure resolving '%s'" msgstr "Erreur temporaire de résolution de « %s »" #: methods/connect.cc:209 -#, fuzzy, c-format +#, c-format msgid "System error resolving '%s:%s' (%s)" -msgstr "" -"Quelque chose d'imprévisible est survenu lors de la détermination de « %s:" -"%s » (%i - %s)" +msgstr "Erreur système lors de la résolution de « %s:%s » (%s)" #: methods/connect.cc:211 #, c-format @@ -2491,13 +2489,13 @@ msgstr "%c%s... Fait" #: apt-pkg/contrib/progress.cc:179 msgid "..." -msgstr "" +msgstr "…" #. Print the spinner #: apt-pkg/contrib/progress.cc:195 -#, fuzzy, c-format +#, c-format msgid "%c%s... %u%%" -msgstr "%c%s... Fait" +msgstr "%c%s… %u%%" #: apt-pkg/contrib/cmndline.cc:80 #, c-format -- cgit v1.2.3 From c510253888191fe9537559ad2fdd982dc3fd89eb Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Mon, 25 Mar 2013 08:52:20 +0100 Subject: merge patch from Daniel Hartwig --- cmdline/apt-get.cc | 2 +- debian/changelog | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/cmdline/apt-get.cc b/cmdline/apt-get.cc index e3c74a099..64b062ea4 100644 --- a/cmdline/apt-get.cc +++ b/cmdline/apt-get.cc @@ -2714,7 +2714,7 @@ bool DoSource(CommandLine &CmdL) { string buildopts = _config->Find("APT::Get::Host-Architecture"); if (buildopts.empty() == false) - buildopts = "-a " + buildopts + " "; + buildopts = "-a" + buildopts + " "; buildopts.append(_config->Find("DPkg::Build-Options","-b -uc")); // Call dpkg-buildpackage diff --git a/debian/changelog b/debian/changelog index cf04c1dd2..fbc6009a1 100644 --- a/debian/changelog +++ b/debian/changelog @@ -3,6 +3,11 @@ apt (0.9.7.9~exp2) UNRELEASED; urgency=low [ Programs translations ] * Update all PO files and apt-all.pot * French translation completed (Christian Perrier) + + [ Daniel Hartwig ] + * cmdline/apt-get.cc: + - do not have space between "-a" and option when cross building + (closes: #703792) -- Christian Perrier Sun, 24 Mar 2013 08:57:45 +0100 -- cgit v1.2.3 From 2f8f21c3d494328f0b4a544998fc6118b25b56c3 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Mon, 25 Mar 2013 08:56:42 +0100 Subject: merge patches from daniel to fix merge artifact and test failure --- debian/changelog | 4 ++++ debian/control | 4 ++-- po/ca.po | 10 ++++++++++ po/cs.po | 10 ++++++++++ po/ru.po | 10 ++++++++++ test/integration/test-apt-get-download | 2 +- 6 files changed, 37 insertions(+), 3 deletions(-) diff --git a/debian/changelog b/debian/changelog index fbc6009a1..558b657ce 100644 --- a/debian/changelog +++ b/debian/changelog @@ -8,6 +8,10 @@ apt (0.9.7.9~exp2) UNRELEASED; urgency=low * cmdline/apt-get.cc: - do not have space between "-a" and option when cross building (closes: #703792) + * test/integration/test-apt-get-download: + - fix test now that #1098752 is fixed + * po/{ca,cs,ru}.po: + - fix merge artifact -- Christian Perrier Sun, 24 Mar 2013 08:57:45 +0100 diff --git a/debian/control b/debian/control index 50b3599fc..762d2818e 100644 --- a/debian/control +++ b/debian/control @@ -12,8 +12,8 @@ Build-Depends: dpkg-dev (>= 1.15.8), debhelper (>= 8.1.3~), libdb-dev, po4a (>= 0.34-2), autotools-dev, autoconf, automake Build-Depends-Indep: doxygen, debiandoc-sgml Build-Conflicts: autoconf2.13, automake1.4 -Vcs-Bzr: http://bzr.debian.org/apt/debian-wheezy/ -Vcs-Browser: http://bzr.debian.org/loggerhead/apt/debian-wheezy/ +Vcs-Bzr: http://bzr.debian.org/apt/debian-sid/ +Vcs-Browser: http://bzr.debian.org/loggerhead/apt/debian-sid/ Package: apt Architecture: any diff --git a/po/ca.po b/po/ca.po index 41488ba3c..0f3570949 100644 --- a/po/ca.po +++ b/po/ca.po @@ -2438,6 +2438,16 @@ msgstr "" msgid "%c%s... %u%%" msgstr "%c%s… Fet" +#: apt-pkg/contrib/progress.cc:179 +msgid "..." +msgstr "…" + +#. Print the spinner +#: apt-pkg/contrib/progress.cc:195 +#, c-format +msgid "%c%s... %u%%" +msgstr "%c%s… %u%%" + #: apt-pkg/contrib/cmndline.cc:80 #, c-format msgid "Command line option '%c' [from %s] is not known." diff --git a/po/cs.po b/po/cs.po index cb260c621..6e9543939 100644 --- a/po/cs.po +++ b/po/cs.po @@ -2416,6 +2416,16 @@ msgstr "" msgid "%c%s... %u%%" msgstr "%c%s… Hotovo" +#: apt-pkg/contrib/progress.cc:179 +msgid "..." +msgstr "…" + +#. Print the spinner +#: apt-pkg/contrib/progress.cc:195 +#, c-format +msgid "%c%s... %u%%" +msgstr "%c%s… %u%%" + #: apt-pkg/contrib/cmndline.cc:80 #, c-format msgid "Command line option '%c' [from %s] is not known." diff --git a/po/ru.po b/po/ru.po index 2a72ee3c1..703a83a7c 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2474,6 +2474,16 @@ msgstr "" msgid "%c%s... %u%%" msgstr "%c%s… Готово" +#: apt-pkg/contrib/progress.cc:179 +msgid "..." +msgstr "…" + +#. Print the spinner +#: apt-pkg/contrib/progress.cc:195 +#, c-format +msgid "%c%s... %u%%" +msgstr "%c%s… %u%%" + #: apt-pkg/contrib/cmndline.cc:80 #, c-format msgid "Command line option '%c' [from %s] is not known." diff --git a/test/integration/test-apt-get-download b/test/integration/test-apt-get-download index b164f7dba..420b2e380 100755 --- a/test/integration/test-apt-get-download +++ b/test/integration/test-apt-get-download @@ -26,7 +26,7 @@ testdownload apt_1.0_all.deb apt stable testdownload apt_2.0_all.deb apt DEBFILE="$(readlink -f aptarchive)/pool/apt_2.0_all.deb" -testequal "'file://${DEBFILE}' apt_2.0_all.deb $(stat -c%s $DEBFILE) sha256:$(sha256sum $DEBFILE | cut -d' ' -f 1)" aptget download apt --print-uris +testequal "'file://${DEBFILE}' apt_2.0_all.deb $(stat -c%s $DEBFILE) sha512:$(sha512sum $DEBFILE | cut -d' ' -f 1)" aptget download apt --print-uris # deb:677887 testequal "E: Can't find a source to download version '1.0' of 'vrms:i386'" aptget download vrms -- cgit v1.2.3 From 5cf466f44ef3eeefbdabc95e1b369bad8889f899 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Mon, 25 Mar 2013 09:03:48 +0100 Subject: * methods/connect.cc: - use Errno() instead of strerror(), thanks to David Kalnischk --- debian/changelog | 4 ++++ methods/connect.cc | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index 558b657ce..840fd697c 100644 --- a/debian/changelog +++ b/debian/changelog @@ -12,6 +12,10 @@ apt (0.9.7.9~exp2) UNRELEASED; urgency=low - fix test now that #1098752 is fixed * po/{ca,cs,ru}.po: - fix merge artifact + + [ Michael Vogt ] + * methods/connect.cc: + - use Errno() instead of strerror(), thanks to David Kalnischk -- Christian Perrier Sun, 24 Mar 2013 08:57:45 +0100 diff --git a/methods/connect.cc b/methods/connect.cc index 35f4723ce..fc7a72ee9 100644 --- a/methods/connect.cc +++ b/methods/connect.cc @@ -206,8 +206,8 @@ bool Connect(std::string Host,int Port,const char *Service,int DefPort,int &Fd, Host.c_str()); } if (Res == EAI_SYSTEM) - return _error->Error(_("System error resolving '%s:%s' (%s)"), - Host.c_str(),ServStr,strerror(errno)); + return _error->Errno("getaddrinfo", _("System error resolving '%s:%s'"), + Host.c_str(),ServStr); return _error->Error(_("Something wicked happened resolving '%s:%s' (%i - %s)"), Host.c_str(),ServStr,Res,gai_strerror(Res)); } -- cgit v1.2.3 From 6db4e5c69fcf4ec5f5574b8465e9e0f20fc22e12 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Mon, 25 Mar 2013 13:55:07 +0100 Subject: * doc/apt.conf.5.xml: - document Acquire::ForceIPv{4,6} --- debian/changelog | 2 ++ doc/apt.conf.5.xml | 12 ++++++++++++ 2 files changed, 14 insertions(+) diff --git a/debian/changelog b/debian/changelog index 840fd697c..21e76c818 100644 --- a/debian/changelog +++ b/debian/changelog @@ -16,6 +16,8 @@ apt (0.9.7.9~exp2) UNRELEASED; urgency=low [ Michael Vogt ] * methods/connect.cc: - use Errno() instead of strerror(), thanks to David Kalnischk + * doc/apt.conf.5.xml: + - document Acquire::ForceIPv{4,6} -- Christian Perrier Sun, 24 Mar 2013 08:57:45 +0100 diff --git a/doc/apt.conf.5.xml b/doc/apt.conf.5.xml index 6a61acd2d..be1d7ade8 100644 --- a/doc/apt.conf.5.xml +++ b/doc/apt.conf.5.xml @@ -554,6 +554,18 @@ DPkg::Pre-Install-Pkgs {"/usr/sbin/dpkg-preconfigure --apt";}; + + + When downloading, force to use only the IPv4 protocol. + + + + + + When downloading, force to use only the IPv6 protocol. + + + -- cgit v1.2.3 From 40befb065d110c7b3a7b3d37759b6888522817b2 Mon Sep 17 00:00:00 2001 From: David Kalnischkies Date: Mon, 1 Apr 2013 13:19:43 +0200 Subject: * apt-pkg/deb/debversion.cc: - add a string-equal shortcut for equal version comparisions --- apt-pkg/deb/debversion.cc | 15 ++++++++++++--- debian/changelog | 2 ++ 2 files changed, 14 insertions(+), 3 deletions(-) diff --git a/apt-pkg/deb/debversion.cc b/apt-pkg/deb/debversion.cc index a02699a44..94d357846 100644 --- a/apt-pkg/deb/debversion.cc +++ b/apt-pkg/deb/debversion.cc @@ -215,10 +215,19 @@ bool debVersioningSystem::CheckDep(const char *PkgVer, return true; if (PkgVer == 0 || PkgVer[0] == 0) return false; - + Op &= 0x0F; + + size_t const lenPkgVer = strlen(PkgVer); + size_t const lenDepVer = strlen(DepVer); + + // take a shortcut for equals which are string-equal as well + if (Op == pkgCache::Dep::Equals && lenPkgVer == lenDepVer && + memcmp(PkgVer, DepVer, lenPkgVer) == 0) + return true; + // Perform the actual comparision. - int Res = CmpVersion(PkgVer,DepVer); - switch (Op & 0x0F) + int const Res = DoCmpVersion(PkgVer, PkgVer + lenPkgVer, DepVer, DepVer + lenDepVer); + switch (Op) { case pkgCache::Dep::LessEq: if (Res <= 0) diff --git a/debian/changelog b/debian/changelog index 7796f5920..b0e669129 100644 --- a/debian/changelog +++ b/debian/changelog @@ -8,6 +8,8 @@ apt (0.9.7.8~exp2+nmu1) UNRELEASED; urgency=low - handle language tags for descriptions are unique strings to be shared - factor version string creation out of NewDepends, so we can easily reuse version strings e.g. for implicit multi-arch dependencies + * apt-pkg/deb/debversion.cc: + - add a string-equal shortcut for equal version comparisions -- David Kalnischkies Sun, 10 Mar 2013 12:23:24 +0100 -- cgit v1.2.3 From b8a884c0c7d5f670179a82984289140a9f432729 Mon Sep 17 00:00:00 2001 From: David Kalnischkies Date: Mon, 1 Apr 2013 15:41:02 +0200 Subject: equal comparisions are used mostly in same-source relations, so use this to try to reuse some version strings --- apt-pkg/pkgcachegen.cc | 20 ++++++++++++++------ debian/changelog | 2 ++ 2 files changed, 16 insertions(+), 6 deletions(-) diff --git a/apt-pkg/pkgcachegen.cc b/apt-pkg/pkgcachegen.cc index 01aaf6164..b11ddcf9e 100644 --- a/apt-pkg/pkgcachegen.cc +++ b/apt-pkg/pkgcachegen.cc @@ -864,12 +864,20 @@ bool pkgCacheGenerator::NewDepends(pkgCache::PkgIterator &Pkg, map_ptrloc index = 0; if (Version.empty() == false) { - void const * const oldMap = Map.Data(); - index = WriteStringInMap(Version); - if (unlikely(index == 0)) - return false; - if (oldMap != Map.Data()) - OldDepLast += (map_ptrloc*) Map.Data() - (map_ptrloc*) oldMap; + int const CmpOp = Op & 0x0F; + // =-deps are used (79:1) for lockstep on same-source packages (e.g. data-packages) + if (CmpOp == pkgCache::Dep::Equals && strcmp(Version.c_str(), Ver.VerStr()) == 0) + index = Ver->VerStr; + + if (index == 0) + { + void const * const oldMap = Map.Data(); + index = WriteStringInMap(Version); + if (unlikely(index == 0)) + return false; + if (oldMap != Map.Data()) + OldDepLast += (map_ptrloc*) Map.Data() - (map_ptrloc*) oldMap; + } } return NewDepends(Pkg, Ver, index, Op, Type, OldDepLast); } diff --git a/debian/changelog b/debian/changelog index b0e669129..d9183db98 100644 --- a/debian/changelog +++ b/debian/changelog @@ -8,6 +8,8 @@ apt (0.9.7.8~exp2+nmu1) UNRELEASED; urgency=low - handle language tags for descriptions are unique strings to be shared - factor version string creation out of NewDepends, so we can easily reuse version strings e.g. for implicit multi-arch dependencies + - equal comparisions are used mostly in same-source relations, + so use this to try to reuse some version strings * apt-pkg/deb/debversion.cc: - add a string-equal shortcut for equal version comparisions -- cgit v1.2.3 From d9682cf8268d6c69e41adb6be9f03d68ba066a12 Mon Sep 17 00:00:00 2001 From: David Kalnischkies Date: Mon, 1 Apr 2013 23:27:16 +0200 Subject: micro-optimize and enhance readability of ListParser::VersionHash --- apt-pkg/deb/deblistparser.cc | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/apt-pkg/deb/deblistparser.cc b/apt-pkg/deb/deblistparser.cc index 56d5297fc..67f0ac9c6 100644 --- a/apt-pkg/deb/deblistparser.cc +++ b/apt-pkg/deb/deblistparser.cc @@ -284,7 +284,7 @@ unsigned short debListParser::VersionHash() "Replaces",0}; unsigned long Result = INIT_FCS; char S[1024]; - for (const char **I = Sections; *I != 0; I++) + for (const char * const *I = Sections; *I != 0; ++I) { const char *Start; const char *End; @@ -295,13 +295,13 @@ unsigned short debListParser::VersionHash() of certain fields. dpkg also has the rather interesting notion of reformatting depends operators < -> <= */ char *J = S; - for (; Start != End; Start++) + for (; Start != End; ++Start) { - if (isspace(*Start) == 0) - *J++ = tolower_ascii(*Start); - if (*Start == '<' && Start[1] != '<' && Start[1] != '=') - *J++ = '='; - if (*Start == '>' && Start[1] != '>' && Start[1] != '=') + if (isspace(*Start) != 0) + continue; + *J++ = tolower_ascii(*Start); + + if ((*Start == '<' || *Start == '>') && Start[1] != *Start && Start[1] != '=') *J++ = '='; } -- cgit v1.2.3 From bc65130d13c2737aefb85e609f67be196ae10a7f Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Tue, 2 Apr 2013 15:08:34 +0200 Subject: po/{ca,cs,ru}.po: fix merge artifacts harder --- po/ca.po | 10 ---------- po/cs.po | 10 ---------- po/ru.po | 10 ---------- 3 files changed, 30 deletions(-) diff --git a/po/ca.po b/po/ca.po index 0f3570949..64af4e6f4 100644 --- a/po/ca.po +++ b/po/ca.po @@ -2428,16 +2428,6 @@ msgstr "%c%s… Error!" msgid "%c%s... Done" msgstr "%c%s… Fet" -#: apt-pkg/contrib/progress.cc:179 -msgid "..." -msgstr "" - -#. Print the spinner -#: apt-pkg/contrib/progress.cc:195 -#, fuzzy, c-format -msgid "%c%s... %u%%" -msgstr "%c%s… Fet" - #: apt-pkg/contrib/progress.cc:179 msgid "..." msgstr "…" diff --git a/po/cs.po b/po/cs.po index 6e9543939..df8f64b31 100644 --- a/po/cs.po +++ b/po/cs.po @@ -2406,16 +2406,6 @@ msgstr "%c%s… Chyba!" msgid "%c%s... Done" msgstr "%c%s… Hotovo" -#: apt-pkg/contrib/progress.cc:179 -msgid "..." -msgstr "" - -#. Print the spinner -#: apt-pkg/contrib/progress.cc:195 -#, fuzzy, c-format -msgid "%c%s... %u%%" -msgstr "%c%s… Hotovo" - #: apt-pkg/contrib/progress.cc:179 msgid "..." msgstr "…" diff --git a/po/ru.po b/po/ru.po index 703a83a7c..488881aa5 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2464,16 +2464,6 @@ msgstr "%c%s… Ошибка!" msgid "%c%s... Done" msgstr "%c%s… Готово" -#: apt-pkg/contrib/progress.cc:179 -msgid "..." -msgstr "" - -#. Print the spinner -#: apt-pkg/contrib/progress.cc:195 -#, fuzzy, c-format -msgid "%c%s... %u%%" -msgstr "%c%s… Готово" - #: apt-pkg/contrib/progress.cc:179 msgid "..." msgstr "…" -- cgit v1.2.3 From aa0fe657e46b87cc692895a36df12e8b74bb27bb Mon Sep 17 00:00:00 2001 From: David Kalnischkies Date: Wed, 3 Apr 2013 12:44:36 +0200 Subject: - sort group and package names in the hashtable on insert * apt-pkg/pkgcache.cc: - assume sorted hashtable entries for groups/packages --- apt-pkg/pkgcache.cc | 31 ++++++++++++++++++++----------- apt-pkg/pkgcachegen.cc | 16 +++++++++++----- debian/changelog | 3 +++ 3 files changed, 34 insertions(+), 16 deletions(-) diff --git a/apt-pkg/pkgcache.cc b/apt-pkg/pkgcache.cc index 1378876fe..879f34099 100644 --- a/apt-pkg/pkgcache.cc +++ b/apt-pkg/pkgcache.cc @@ -52,7 +52,7 @@ pkgCache::Header::Header() /* Whenever the structures change the major version should be bumped, whenever the generator changes the minor version should be bumped. */ MajorVersion = 8; - MinorVersion = 0; + MinorVersion = 1; Dirty = false; HeaderSz = sizeof(pkgCache::Header); @@ -182,18 +182,17 @@ unsigned long pkgCache::sHash(const string &Str) const { unsigned long Hash = 0; for (string::const_iterator I = Str.begin(); I != Str.end(); ++I) - Hash = 5*Hash + tolower_ascii(*I); + Hash = 41 * Hash + tolower_ascii(*I); return Hash % _count(HeaderP->PkgHashTable); } unsigned long pkgCache::sHash(const char *Str) const { - unsigned long Hash = 0; - for (const char *I = Str; *I != 0; ++I) - Hash = 5*Hash + tolower_ascii(*I); + unsigned long Hash = tolower_ascii(*Str); + for (const char *I = Str + 1; *I != 0; ++I) + Hash = 41 * Hash + tolower_ascii(*I); return Hash % _count(HeaderP->PkgHashTable); } - /*}}}*/ // Cache::SingleArchFindPkg - Locate a package by name /*{{{*/ // --------------------------------------------------------------------- @@ -206,9 +205,14 @@ pkgCache::PkgIterator pkgCache::SingleArchFindPkg(const string &Name) Package *Pkg = PkgP + HeaderP->PkgHashTable[Hash(Name)]; for (; Pkg != PkgP; Pkg = PkgP + Pkg->NextPackage) { - if (Pkg->Name != 0 && StrP[Pkg->Name] == Name[0] && - stringcasecmp(Name,StrP + Pkg->Name) == 0) - return PkgIterator(*this,Pkg); + if (unlikely(Pkg->Name == 0)) + continue; + + int const cmp = strcasecmp(Name.c_str(), StrP + Pkg->Name); + if (cmp == 0) + return PkgIterator(*this, Pkg); + else if (cmp < 0) + break; } return PkgIterator(*this,0); } @@ -265,9 +269,14 @@ pkgCache::GrpIterator pkgCache::FindGrp(const string &Name) { // Look at the hash bucket for the group Group *Grp = GrpP + HeaderP->GrpHashTable[sHash(Name)]; for (; Grp != GrpP; Grp = GrpP + Grp->Next) { - if (Grp->Name != 0 && StrP[Grp->Name] == Name[0] && - stringcasecmp(Name, StrP + Grp->Name) == 0) + if (unlikely(Grp->Name == 0)) + continue; + + int const cmp = strcasecmp(Name.c_str(), StrP + Grp->Name); + if (cmp == 0) return GrpIterator(*this, Grp); + else if (cmp < 0) + break; } return GrpIterator(*this,0); diff --git a/apt-pkg/pkgcachegen.cc b/apt-pkg/pkgcachegen.cc index b11ddcf9e..8437dc68f 100644 --- a/apt-pkg/pkgcachegen.cc +++ b/apt-pkg/pkgcachegen.cc @@ -595,8 +595,11 @@ bool pkgCacheGenerator::NewGroup(pkgCache::GrpIterator &Grp, const string &Name) // Insert it into the hash table unsigned long const Hash = Cache.Hash(Name); - Grp->Next = Cache.HeaderP->GrpHashTable[Hash]; - Cache.HeaderP->GrpHashTable[Hash] = Group; + map_ptrloc *insertAt = &Cache.HeaderP->GrpHashTable[Hash]; + while (*insertAt != 0 && strcasecmp(Name.c_str(), Cache.StrP + (Cache.GrpP + *insertAt)->Name) > 0) + insertAt = &(Cache.GrpP + *insertAt)->Next; + Grp->Next = *insertAt; + *insertAt = Group; Grp->ID = Cache.HeaderP->GroupCount++; return true; @@ -625,11 +628,14 @@ bool pkgCacheGenerator::NewPackage(pkgCache::PkgIterator &Pkg,const string &Name // Insert the package into our package list if (Grp->FirstPackage == 0) // the group is new { + Grp->FirstPackage = Package; // Insert it into the hash table unsigned long const Hash = Cache.Hash(Name); - Pkg->NextPackage = Cache.HeaderP->PkgHashTable[Hash]; - Cache.HeaderP->PkgHashTable[Hash] = Package; - Grp->FirstPackage = Package; + map_ptrloc *insertAt = &Cache.HeaderP->PkgHashTable[Hash]; + while (*insertAt != 0 && strcasecmp(Name.c_str(), Cache.StrP + (Cache.PkgP + *insertAt)->Name) > 0) + insertAt = &(Cache.PkgP + *insertAt)->NextPackage; + Pkg->NextPackage = *insertAt; + *insertAt = Package; } else // Group the Packages together { diff --git a/debian/changelog b/debian/changelog index d9183db98..d4f0e4bb3 100644 --- a/debian/changelog +++ b/debian/changelog @@ -10,6 +10,9 @@ apt (0.9.7.8~exp2+nmu1) UNRELEASED; urgency=low version strings e.g. for implicit multi-arch dependencies - equal comparisions are used mostly in same-source relations, so use this to try to reuse some version strings + - sort group and package names in the hashtable on insert + * apt-pkg/pkgcache.cc: + - assume sorted hashtable entries for groups/packages * apt-pkg/deb/debversion.cc: - add a string-equal shortcut for equal version comparisions -- cgit v1.2.3 From 463f24f99f6cca2df71e7ec0568a6bdcd78cf9ed Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Wed, 3 Apr 2013 14:19:34 +0200 Subject: apt-pkg/contrib/gpgv.cc: fix InRelease check --- apt-pkg/contrib/gpgv.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apt-pkg/contrib/gpgv.cc b/apt-pkg/contrib/gpgv.cc index ba059dd87..31db7d5fe 100644 --- a/apt-pkg/contrib/gpgv.cc +++ b/apt-pkg/contrib/gpgv.cc @@ -337,8 +337,8 @@ bool SplitClearSignedFile(std::string const &InFile, FileFd * const ContentFile, if (first_line == true && found_message_start == false && found_message_end == false) return false; // otherwise one missing indicates a syntax error - else if (first_line == false || found_message_start == false || found_message_end == false) - return _error->Error("Splitting of file %s failed as it doesn't contain all expected parts", InFile.c_str()); + else if (first_line == true || found_message_start == false || found_message_end == false) + return _error->Error("Splitting of file %s failed as it doesn't contain all expected parts %i %i %i", InFile.c_str(), first_line, found_message_start, found_message_end); return true; } -- cgit v1.2.3 From d4d508e3a3fea43d6f856770bd411ba1e927858f Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Wed, 3 Apr 2013 14:39:40 +0200 Subject: po/*: refreshed --- po/apt-all.pot | 4 ++-- po/ar.po | 2 +- po/ast.po | 2 +- po/bg.po | 2 +- po/bs.po | 2 +- po/ca.po | 2 +- po/cs.po | 2 +- po/cy.po | 2 +- po/da.po | 2 +- po/de.po | 2 +- po/dz.po | 2 +- po/el.po | 2 +- po/es.po | 2 +- po/eu.po | 2 +- po/fi.po | 2 +- po/fr.po | 2 +- po/gl.po | 2 +- po/hu.po | 2 +- po/it.po | 2 +- po/ja.po | 2 +- po/km.po | 2 +- po/ko.po | 2 +- po/ku.po | 2 +- po/lt.po | 2 +- po/mr.po | 2 +- po/nb.po | 2 +- po/ne.po | 2 +- po/nl.po | 2 +- po/nn.po | 2 +- po/pl.po | 2 +- po/pt.po | 2 +- po/pt_BR.po | 2 +- po/ro.po | 2 +- po/ru.po | 2 +- po/sk.po | 2 +- po/sl.po | 2 +- po/sv.po | 2 +- po/th.po | 2 +- po/tl.po | 2 +- po/uk.po | 2 +- po/vi.po | 2 +- po/zh_CN.po | 2 +- po/zh_TW.po | 2 +- 43 files changed, 44 insertions(+), 44 deletions(-) diff --git a/po/apt-all.pot b/po/apt-all.pot index 8ff4bb5f5..4703792d7 100644 --- a/po/apt-all.pot +++ b/po/apt-all.pot @@ -5,9 +5,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: apt 0.9.7.9~exp1\n" +"Project-Id-Version: apt 0.9.7.9~exp2\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-04-02 15:13+0200\n" +"POT-Creation-Date: 2013-04-03 14:20+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/po/ar.po b/po/ar.po index f61ab4288..1b56be6c7 100644 --- a/po/ar.po +++ b/po/ar.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: apt_po\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-04-02 15:13+0200\n" +"POT-Creation-Date: 2013-04-03 14:20+0200\n" "PO-Revision-Date: 2006-10-20 21:28+0300\n" "Last-Translator: Ossama M. Khayat \n" "Language-Team: Arabic \n" diff --git a/po/ast.po b/po/ast.po index dfdf26fdf..25388ddbb 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 \n" -"POT-Creation-Date: 2013-04-02 15:13+0200\n" +"POT-Creation-Date: 2013-04-03 14:20+0200\n" "PO-Revision-Date: 2010-10-02 23:35+0100\n" "Last-Translator: Iñigo Varela \n" "Language-Team: Asturian (ast)\n" diff --git a/po/bg.po b/po/bg.po index f302170a3..7378aae74 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 \n" -"POT-Creation-Date: 2013-04-02 15:13+0200\n" +"POT-Creation-Date: 2013-04-03 14:20+0200\n" "PO-Revision-Date: 2012-06-25 17:23+0300\n" "Last-Translator: Damyan Ivanov \n" "Language-Team: Bulgarian \n" diff --git a/po/bs.po b/po/bs.po index 2e2dd1192..4b4cb478d 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 \n" -"POT-Creation-Date: 2013-04-02 15:13+0200\n" +"POT-Creation-Date: 2013-04-03 14:20+0200\n" "PO-Revision-Date: 2004-05-06 15:25+0100\n" "Last-Translator: Safir Šećerović \n" "Language-Team: Bosnian \n" diff --git a/po/ca.po b/po/ca.po index b99734771..ddbaf731a 100644 --- a/po/ca.po +++ b/po/ca.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.9.7.6\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-04-02 15:13+0200\n" +"POT-Creation-Date: 2013-04-03 14:20+0200\n" "PO-Revision-Date: 2012-10-19 13:30+0200\n" "Last-Translator: Jordi Mallach \n" "Language-Team: Catalan \n" diff --git a/po/cs.po b/po/cs.po index 5c17539b8..ffe773302 100644 --- a/po/cs.po +++ b/po/cs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-04-02 15:13+0200\n" +"POT-Creation-Date: 2013-04-03 14:20+0200\n" "PO-Revision-Date: 2012-07-08 13:46+0200\n" "Last-Translator: Miroslav Kure \n" "Language-Team: Czech \n" diff --git a/po/cy.po b/po/cy.po index 82abc9ae7..ae7173a40 100644 --- a/po/cy.po +++ b/po/cy.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: APT\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-04-02 15:13+0200\n" +"POT-Creation-Date: 2013-04-03 14:20+0200\n" "PO-Revision-Date: 2005-06-06 13:46+0100\n" "Last-Translator: Dafydd Harries \n" "Language-Team: Welsh \n" diff --git a/po/da.po b/po/da.po index 9f98df6a7..db109ad0f 100644 --- a/po/da.po +++ b/po/da.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-04-02 15:13+0200\n" +"POT-Creation-Date: 2013-04-03 14:20+0200\n" "PO-Revision-Date: 2012-07-03 23:51+0200\n" "Last-Translator: Joe Hansen \n" "Language-Team: Danish \n" diff --git a/po/de.po b/po/de.po index ac0ca11bb..276c0def7 100644 --- a/po/de.po +++ b/po/de.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.9.2\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-04-02 15:13+0200\n" +"POT-Creation-Date: 2013-04-03 14:20+0200\n" "PO-Revision-Date: 2012-06-27 10:55+0200\n" "Last-Translator: Holger Wansing \n" "Language-Team: Debian German \n" diff --git a/po/dz.po b/po/dz.po index ac74061df..82257ac5e 100644 --- a/po/dz.po +++ b/po/dz.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: apt_po.pot\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-04-02 15:13+0200\n" +"POT-Creation-Date: 2013-04-03 14:20+0200\n" "PO-Revision-Date: 2006-09-19 09:49+0530\n" "Last-Translator: Kinley Tshering \n" "Language-Team: Dzongkha \n" diff --git a/po/el.po b/po/el.po index 8dea2d551..1fcf3303a 100644 --- a/po/el.po +++ b/po/el.po @@ -16,7 +16,7 @@ msgid "" msgstr "" "Project-Id-Version: apt_po_el\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-04-02 15:13+0200\n" +"POT-Creation-Date: 2013-04-03 14:20+0200\n" "PO-Revision-Date: 2008-08-26 18:25+0300\n" "Last-Translator: Θανάσης Νάτσης \n" "Language-Team: Greek \n" diff --git a/po/es.po b/po/es.po index 8209ac977..0307f0558 100644 --- a/po/es.po +++ b/po/es.po @@ -33,7 +33,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.8.10\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-04-02 15:13+0200\n" +"POT-Creation-Date: 2013-04-03 14:20+0200\n" "PO-Revision-Date: 2011-01-24 11:47+0100\n" "Last-Translator: Javier Fernández-Sanguino Peña \n" "Language-Team: Debian Spanish \n" diff --git a/po/eu.po b/po/eu.po index 993e427cd..083704182 100644 --- a/po/eu.po +++ b/po/eu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: apt_po_eu\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-04-02 15:13+0200\n" +"POT-Creation-Date: 2013-04-03 14:20+0200\n" "PO-Revision-Date: 2009-05-17 00:41+0200\n" "Last-Translator: Piarres Beobide \n" "Language-Team: Euskara \n" diff --git a/po/fi.po b/po/fi.po index 4c29cf2ca..0157fcf3b 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 \n" -"POT-Creation-Date: 2013-04-02 15:13+0200\n" +"POT-Creation-Date: 2013-04-03 14:20+0200\n" "PO-Revision-Date: 2008-12-11 14:52+0200\n" "Last-Translator: Tapio Lehtonen \n" "Language-Team: Finnish \n" diff --git a/po/fr.po b/po/fr.po index 97ff54fc2..7fed47867 100644 --- a/po/fr.po +++ b/po/fr.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: fr\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-04-02 15:13+0200\n" +"POT-Creation-Date: 2013-04-03 14:20+0200\n" "PO-Revision-Date: 2013-03-24 08:57+0100\n" "Last-Translator: Christian Perrier \n" "Language-Team: French \n" diff --git a/po/gl.po b/po/gl.po index 821227308..0ce8a5354 100644 --- a/po/gl.po +++ b/po/gl.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: apt_po_gl\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-04-02 15:13+0200\n" +"POT-Creation-Date: 2013-04-03 14:20+0200\n" "PO-Revision-Date: 2011-05-12 15:28+0100\n" "Last-Translator: Miguel Anxo Bouzada \n" "Language-Team: galician \n" diff --git a/po/hu.po b/po/hu.po index 34ddd7609..a5714f56d 100644 --- a/po/hu.po +++ b/po/hu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: apt trunk\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-04-02 15:13+0200\n" +"POT-Creation-Date: 2013-04-03 14:20+0200\n" "PO-Revision-Date: 2012-06-25 17:09+0200\n" "Last-Translator: Gabor Kelemen \n" "Language-Team: Hungarian \n" diff --git a/po/it.po b/po/it.po index c8a1b87c6..18613cd41 100644 --- a/po/it.po +++ b/po/it.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-04-02 15:13+0200\n" +"POT-Creation-Date: 2013-04-03 14:20+0200\n" "PO-Revision-Date: 2012-06-25 21:54+0200\n" "Last-Translator: Milo Casagrande \n" "Language-Team: Italian \n" diff --git a/po/ja.po b/po/ja.po index a88723134..7f02fa9af 100644 --- a/po/ja.po +++ b/po/ja.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.9.7.1\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-04-02 15:13+0200\n" +"POT-Creation-Date: 2013-04-03 14:20+0200\n" "PO-Revision-Date: 2012-07-01 00:14+0900\n" "Last-Translator: Kenshi Muto \n" "Language-Team: Debian Japanese List \n" diff --git a/po/km.po b/po/km.po index 6e938ff07..e6048afdc 100644 --- a/po/km.po +++ b/po/km.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: apt_po_km\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-04-02 15:13+0200\n" +"POT-Creation-Date: 2013-04-03 14:20+0200\n" "PO-Revision-Date: 2006-10-10 09:48+0700\n" "Last-Translator: Khoem Sokhem \n" "Language-Team: Khmer \n" diff --git a/po/ko.po b/po/ko.po index 9d84ac236..7cfbbc32c 100644 --- a/po/ko.po +++ b/po/ko.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-04-02 15:13+0200\n" +"POT-Creation-Date: 2013-04-03 14:20+0200\n" "PO-Revision-Date: 2010-08-30 02:31+0900\n" "Last-Translator: Changwoo Ryu \n" "Language-Team: Korean \n" diff --git a/po/ku.po b/po/ku.po index 6f1e31484..bc2725550 100644 --- a/po/ku.po +++ b/po/ku.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: apt-ku\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-04-02 15:13+0200\n" +"POT-Creation-Date: 2013-04-03 14:20+0200\n" "PO-Revision-Date: 2008-05-08 12:48+0200\n" "Last-Translator: Erdal Ronahi \n" "Language-Team: ku \n" diff --git a/po/lt.po b/po/lt.po index d8e989382..d6a7cc6e4 100644 --- a/po/lt.po +++ b/po/lt.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-04-02 15:13+0200\n" +"POT-Creation-Date: 2013-04-03 14:20+0200\n" "PO-Revision-Date: 2008-08-02 01:47-0400\n" "Last-Translator: Gintautas Miliauskas \n" "Language-Team: Lithuanian \n" diff --git a/po/mr.po b/po/mr.po index 300573bd1..9bb37debd 100644 --- a/po/mr.po +++ b/po/mr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-04-02 15:13+0200\n" +"POT-Creation-Date: 2013-04-03 14:20+0200\n" "PO-Revision-Date: 2008-11-20 23:27+0530\n" "Last-Translator: Sampada \n" "Language-Team: Marathi, janabhaaratii, C-DAC, Mumbai, India " diff --git a/po/nb.po b/po/nb.po index 99544811d..1934a25c8 100644 --- a/po/nb.po +++ b/po/nb.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-04-02 15:13+0200\n" +"POT-Creation-Date: 2013-04-03 14:20+0200\n" "PO-Revision-Date: 2010-09-01 21:10+0200\n" "Last-Translator: Hans Fredrik Nordhaug \n" "Language-Team: Norwegian Bokmål \n" diff --git a/po/ne.po b/po/ne.po index d24645449..66064f559 100644 --- a/po/ne.po +++ b/po/ne.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: apt_po\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-04-02 15:13+0200\n" +"POT-Creation-Date: 2013-04-03 14:20+0200\n" "PO-Revision-Date: 2006-06-12 14:35+0545\n" "Last-Translator: Shiva Pokharel \n" "Language-Team: Nepali \n" diff --git a/po/nl.po b/po/nl.po index 4e4384919..408ce4b8b 100644 --- a/po/nl.po +++ b/po/nl.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.8.15.9\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-04-02 15:13+0200\n" +"POT-Creation-Date: 2013-04-03 14:20+0200\n" "PO-Revision-Date: 2011-12-05 17:10+0100\n" "Last-Translator: Jeroen Schot \n" "Language-Team: Debian l10n Dutch \n" diff --git a/po/nn.po b/po/nn.po index 1b1eb7fd3..768999104 100644 --- a/po/nn.po +++ b/po/nn.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: apt_nn\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-04-02 15:13+0200\n" +"POT-Creation-Date: 2013-04-03 14:20+0200\n" "PO-Revision-Date: 2005-02-14 23:30+0100\n" "Last-Translator: Havard Korsvoll \n" "Language-Team: Norwegian nynorsk \n" diff --git a/po/pl.po b/po/pl.po index 218b37693..61c3cd2b3 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 \n" -"POT-Creation-Date: 2013-04-02 15:13+0200\n" +"POT-Creation-Date: 2013-04-03 14:20+0200\n" "PO-Revision-Date: 2012-07-28 21:53+0200\n" "Last-Translator: Michał Kułach \n" "Language-Team: Polish \n" diff --git a/po/pt.po b/po/pt.po index 073a34c0b..542e1efba 100644 --- a/po/pt.po +++ b/po/pt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-04-02 15:13+0200\n" +"POT-Creation-Date: 2013-04-03 14:20+0200\n" "PO-Revision-Date: 2012-06-29 15:45+0100\n" "Last-Translator: Miguel Figueiredo \n" "Language-Team: Portuguese \n" diff --git a/po/pt_BR.po b/po/pt_BR.po index b4ecf3ed0..86a90305b 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-04-02 15:13+0200\n" +"POT-Creation-Date: 2013-04-03 14:20+0200\n" "PO-Revision-Date: 2008-11-17 02:33-0200\n" "Last-Translator: Felipe Augusto van de Wiel (faw) \n" "Language-Team: Brazilian Portuguese \n" -"POT-Creation-Date: 2013-04-02 15:13+0200\n" +"POT-Creation-Date: 2013-04-03 14:20+0200\n" "PO-Revision-Date: 2008-11-15 02:21+0200\n" "Last-Translator: Eddy Petrișor \n" "Language-Team: Romanian \n" diff --git a/po/ru.po b/po/ru.po index 73fed5e39..c33fb9844 100644 --- a/po/ru.po +++ b/po/ru.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: apt rev2227.1.3\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-04-02 15:13+0200\n" +"POT-Creation-Date: 2013-04-03 14:20+0200\n" "PO-Revision-Date: 2012-06-30 08:47+0400\n" "Last-Translator: Yuri Kozlov \n" "Language-Team: Russian \n" diff --git a/po/sk.po b/po/sk.po index d90f50995..883ad8b2f 100644 --- a/po/sk.po +++ b/po/sk.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-04-02 15:13+0200\n" +"POT-Creation-Date: 2013-04-03 14:20+0200\n" "PO-Revision-Date: 2012-06-28 20:49+0100\n" "Last-Translator: Ivan Masár \n" "Language-Team: Slovak \n" diff --git a/po/sl.po b/po/sl.po index ff4a0f09b..1a0155f39 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 \n" -"POT-Creation-Date: 2013-04-02 15:13+0200\n" +"POT-Creation-Date: 2013-04-03 14:20+0200\n" "PO-Revision-Date: 2012-06-27 21:29+0000\n" "Last-Translator: Andrej Znidarsic \n" "Language-Team: Slovenian \n" diff --git a/po/sv.po b/po/sv.po index 04a75e602..021578ace 100644 --- a/po/sv.po +++ b/po/sv.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-04-02 15:13+0200\n" +"POT-Creation-Date: 2013-04-03 14:20+0200\n" "PO-Revision-Date: 2010-08-24 21:18+0100\n" "Last-Translator: Daniel Nylander \n" "Language-Team: Swedish \n" diff --git a/po/th.po b/po/th.po index cfa65481b..5e2f51c1e 100644 --- a/po/th.po +++ b/po/th.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-04-02 15:13+0200\n" +"POT-Creation-Date: 2013-04-03 14:20+0200\n" "PO-Revision-Date: 2012-10-27 22:44+0700\n" "Last-Translator: Theppitak Karoonboonyanan \n" "Language-Team: Thai \n" diff --git a/po/tl.po b/po/tl.po index 19ef31f20..fd21cdeeb 100644 --- a/po/tl.po +++ b/po/tl.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-04-02 15:13+0200\n" +"POT-Creation-Date: 2013-04-03 14:20+0200\n" "PO-Revision-Date: 2007-03-29 21:36+0800\n" "Last-Translator: Eric Pareja \n" "Language-Team: Tagalog \n" diff --git a/po/uk.po b/po/uk.po index 6fa9320c9..0dac6fb6d 100644 --- a/po/uk.po +++ b/po/uk.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: apt-all\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-04-02 15:13+0200\n" +"POT-Creation-Date: 2013-04-03 14:20+0200\n" "PO-Revision-Date: 2012-09-25 20:19+0300\n" "Last-Translator: A. Bondarenko \n" "Language-Team: Українська \n" diff --git a/po/vi.po b/po/vi.po index b81b8453a..ec6fdc6fc 100644 --- a/po/vi.po +++ b/po/vi.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.9.7.5\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-04-02 15:13+0200\n" +"POT-Creation-Date: 2013-04-03 14:20+0200\n" "PO-Revision-Date: 2012-11-20 14:12+0700\n" "Last-Translator: Trần Ngọc Quân \n" "Language-Team: Vietnamese \n" diff --git a/po/zh_CN.po b/po/zh_CN.po index 841087b48..b5e3a8c2a 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.8.0~pre1\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-04-02 15:13+0200\n" +"POT-Creation-Date: 2013-04-03 14:20+0200\n" "PO-Revision-Date: 2010-08-26 14:42+0800\n" "Last-Translator: Aron Xu \n" "Language-Team: Chinese (simplified) \n" diff --git a/po/zh_TW.po b/po/zh_TW.po index 28f0c6545..31d72e553 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: 0.5.4\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-04-02 15:13+0200\n" +"POT-Creation-Date: 2013-04-03 14:20+0200\n" "PO-Revision-Date: 2009-01-28 10:41+0800\n" "Last-Translator: Tetralet \n" "Language-Team: Debian-user in Chinese [Big5] Date: Wed, 3 Apr 2013 14:40:08 +0200 Subject: releasing version 0.9.7.9~exp2 --- configure.in | 2 +- debian/changelog | 4 ++-- doc/apt-verbatim.ent | 2 +- doc/po/apt-doc.pot | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/configure.in b/configure.in index f3a365ded..0e2ced4fd 100644 --- a/configure.in +++ b/configure.in @@ -18,7 +18,7 @@ AC_CONFIG_AUX_DIR(buildlib) AC_CONFIG_HEADER(include/config.h:buildlib/config.h.in include/apti18n.h:buildlib/apti18n.h.in) PACKAGE="apt" -PACKAGE_VERSION="0.9.7.9~exp2~20130402" +PACKAGE_VERSION="0.9.7.9~exp2" PACKAGE_MAIL="APT Development Team " AC_DEFINE_UNQUOTED(PACKAGE,"$PACKAGE") AC_DEFINE_UNQUOTED(PACKAGE_VERSION,"$PACKAGE_VERSION") diff --git a/debian/changelog b/debian/changelog index 239fb308c..42874ac53 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -apt (0.9.7.9~exp2) UNRELEASED; urgency=low +apt (0.9.7.9~exp2) experimental; urgency=low [ Programs translations ] * Update all PO files and apt-all.pot @@ -43,7 +43,7 @@ apt (0.9.7.9~exp2) UNRELEASED; urgency=low * doc/apt.conf.5.xml: - document Acquire::ForceIPv{4,6} - -- Michael Vogt Tue, 02 Apr 2013 15:13:50 +0200 + -- Michael Vogt Wed, 03 Apr 2013 14:19:58 +0200 apt (0.9.7.9~exp1) experimental; urgency=low diff --git a/doc/apt-verbatim.ent b/doc/apt-verbatim.ent index 240b368b0..ff8f3485d 100644 --- a/doc/apt-verbatim.ent +++ b/doc/apt-verbatim.ent @@ -213,7 +213,7 @@ "> - + diff --git a/doc/po/apt-doc.pot b/doc/po/apt-doc.pot index fae040cd5..e23f5699f 100644 --- a/doc/po/apt-doc.pot +++ b/doc/po/apt-doc.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: apt-doc 0.9.7.9~exp1\n" +"Project-Id-Version: apt-doc 0.9.7.9~exp2\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-04-02 15:13+0300\n" +"POT-Creation-Date: 2013-04-03 14:20+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" -- cgit v1.2.3 From 887c6940d2afc9e3110f226e4d95fc72640e3ad6 Mon Sep 17 00:00:00 2001 From: David Kalnischkies Date: Wed, 3 Apr 2013 19:34:47 +0200 Subject: * apt-pkg/cacheiterators.h: - provide DepIterator::IsSatisfied as a nicer shorthand for DepCheck --- apt-pkg/cacheiterators.h | 2 ++ apt-pkg/depcache.cc | 25 ++++++++++--------------- apt-pkg/pkgcache.cc | 16 ++++++++++++---- debian/changelog | 2 ++ 4 files changed, 26 insertions(+), 19 deletions(-) diff --git a/apt-pkg/cacheiterators.h b/apt-pkg/cacheiterators.h index dcd353119..179a0e963 100644 --- a/apt-pkg/cacheiterators.h +++ b/apt-pkg/cacheiterators.h @@ -286,6 +286,8 @@ class pkgCache::DepIterator : public Iterator { bool IsIgnorable(PrvIterator const &Prv) const; bool IsIgnorable(PkgIterator const &Pkg) const; bool IsMultiArchImplicit() const; + bool IsSatisfied(VerIterator const &Ver) const; + bool IsSatisfied(PrvIterator const &Prv) const; void GlobOr(DepIterator &Start,DepIterator &End); Version **AllTargets() const; bool SmartTargetPkg(PkgIterator &Result) const; diff --git a/apt-pkg/depcache.cc b/apt-pkg/depcache.cc index a48cd8b0c..6a3e9bfc4 100644 --- a/apt-pkg/depcache.cc +++ b/apt-pkg/depcache.cc @@ -351,18 +351,15 @@ bool pkgDepCache::CheckDep(DepIterator Dep,int Type,PkgIterator &Res) PkgIterator Pkg = Dep.TargetPkg(); // Check the base package if (Type == NowVersion && Pkg->CurrentVer != 0) - if (VS().CheckDep(Pkg.CurrentVer().VerStr(),Dep->CompareOp, - Dep.TargetVer()) == true) + if (Dep.IsSatisfied(Pkg.CurrentVer()) == true) return true; if (Type == InstallVersion && PkgState[Pkg->ID].InstallVer != 0) - if (VS().CheckDep(PkgState[Pkg->ID].InstVerIter(*this).VerStr(), - Dep->CompareOp,Dep.TargetVer()) == true) + if (Dep.IsSatisfied(PkgState[Pkg->ID].InstVerIter(*this)) == true) return true; if (Type == CandidateVersion && PkgState[Pkg->ID].CandidateVer != 0) - if (VS().CheckDep(PkgState[Pkg->ID].CandidateVerIter(*this).VerStr(), - Dep->CompareOp,Dep.TargetVer()) == true) + if (Dep.IsSatisfied(PkgState[Pkg->ID].CandidateVerIter(*this)) == true) return true; } @@ -398,7 +395,7 @@ bool pkgDepCache::CheckDep(DepIterator Dep,int Type,PkgIterator &Res) } // Compare the versions. - if (VS().CheckDep(P.ProvideVersion(),Dep->CompareOp,Dep.TargetVer()) == true) + if (Dep.IsSatisfied(P) == true) { Res = P.OwnerPkg(); return true; @@ -1192,14 +1189,13 @@ bool pkgDepCache::MarkInstall(PkgIterator const &Pkg,bool AutoInst, { APT::VersionList verlist; pkgCache::VerIterator Cand = PkgState[Start.TargetPkg()->ID].CandidateVerIter(*this); - if (Cand.end() == false && VS().CheckDep(Cand.VerStr(), Start->CompareOp, Start.TargetVer()) == true) + if (Cand.end() == false && Start.IsSatisfied(Cand) == true) verlist.insert(Cand); for (PrvIterator Prv = Start.TargetPkg().ProvidesList(); Prv.end() != true; ++Prv) { pkgCache::VerIterator V = Prv.OwnerVer(); pkgCache::VerIterator Cand = PkgState[Prv.OwnerPkg()->ID].CandidateVerIter(*this); - if (Cand.end() == true || V != Cand || - VS().CheckDep(Prv.ProvideVersion(), Start->CompareOp, Start.TargetVer()) == false) + if (Cand.end() == true || V != Cand || Start.IsSatisfied(Prv) == false) continue; verlist.insert(Cand); } @@ -1407,7 +1403,7 @@ bool pkgDepCache::SetCandidateRelease(pkgCache::VerIterator TargetVer, if (Cand.end() == true) continue; // check if the current candidate is enough for the versioned dependency - and installable? - if (VS().CheckDep(P.CandVersion(), Start->CompareOp, Start.TargetVer()) == true && + if (Start.IsSatisfied(Cand) == true && (VersionState(Cand.DependsList(), DepInstall, DepCandMin, DepCandPolicy) & DepCandMin) == DepCandMin) { itsFine = true; @@ -1441,7 +1437,7 @@ bool pkgDepCache::SetCandidateRelease(pkgCache::VerIterator TargetVer, V = Match.Find(D.TargetPkg()); // check if the version from this release could satisfy the dependency - if (V.end() == true || VS().CheckDep(V.VerStr(), D->CompareOp, D.TargetVer()) == false) + if (V.end() == true || D.IsSatisfied(V) == false) { if (stillOr == true) continue; @@ -1771,7 +1767,7 @@ void pkgDepCache::MarkPackage(const pkgCache::PkgIterator &pkg, for(VerIterator V = d.TargetPkg().VersionList(); !V.end(); ++V) { - if(_system->VS->CheckDep(V.VerStr(), d->CompareOp, d.TargetVer())) + if(d.IsSatisfied(V)) { if(debug_autoremove) { @@ -1793,8 +1789,7 @@ void pkgDepCache::MarkPackage(const pkgCache::PkgIterator &pkg, for(PrvIterator prv=d.TargetPkg().ProvidesList(); !prv.end(); ++prv) { - if(_system->VS->CheckDep(prv.ProvideVersion(), d->CompareOp, - d.TargetVer())) + if(d.IsSatisfied(prv)) { if(debug_autoremove) { diff --git a/apt-pkg/pkgcache.cc b/apt-pkg/pkgcache.cc index 879f34099..d7725563b 100644 --- a/apt-pkg/pkgcache.cc +++ b/apt-pkg/pkgcache.cc @@ -634,8 +634,7 @@ pkgCache::Version **pkgCache::DepIterator::AllTargets() const { if (IsIgnorable(I.ParentPkg()) == true) continue; - - if (Owner->VS->CheckDep(I.VerStr(),S->CompareOp,TargetVer()) == false) + if (IsSatisfied(I) == false) continue; Size++; @@ -648,8 +647,7 @@ pkgCache::Version **pkgCache::DepIterator::AllTargets() const { if (IsIgnorable(I) == true) continue; - - if (Owner->VS->CheckDep(I.ProvideVersion(),S->CompareOp,TargetVer()) == false) + if (IsSatisfied(I) == false) continue; Size++; @@ -757,6 +755,16 @@ bool pkgCache::DepIterator::IsMultiArchImplicit() const return false; } /*}}}*/ +// DepIterator::IsSatisfied - check if a version satisfied the dependency /*{{{*/ +bool pkgCache::DepIterator::IsSatisfied(VerIterator const &Ver) const +{ + return Owner->VS->CheckDep(Ver.VerStr(),S->CompareOp,TargetVer()); +} +bool pkgCache::DepIterator::IsSatisfied(PrvIterator const &Prv) const +{ + return Owner->VS->CheckDep(Prv.ProvideVersion(),S->CompareOp,TargetVer()); +} + /*}}}*/ // ostream operator to handle string representation of a dependecy /*{{{*/ // --------------------------------------------------------------------- /* */ diff --git a/debian/changelog b/debian/changelog index d4f0e4bb3..7070c5fc9 100644 --- a/debian/changelog +++ b/debian/changelog @@ -13,6 +13,8 @@ apt (0.9.7.8~exp2+nmu1) UNRELEASED; urgency=low - sort group and package names in the hashtable on insert * apt-pkg/pkgcache.cc: - assume sorted hashtable entries for groups/packages + * apt-pkg/cacheiterators.h: + - provide DepIterator::IsSatisfied as a nicer shorthand for DepCheck * apt-pkg/deb/debversion.cc: - add a string-equal shortcut for equal version comparisions -- cgit v1.2.3 From 885594fc8831d1be5a254557385e3dbefb564fbf Mon Sep 17 00:00:00 2001 From: David Kalnischkies Date: Wed, 3 Apr 2013 19:43:03 +0200 Subject: share version strings between same versions (of different architectures) to save some space and allow quick comparisions later on --- apt-pkg/deb/debversion.cc | 12 ++++-------- apt-pkg/pkgcachegen.cc | 37 +++++++++++++++++++++++++++++++------ apt-pkg/pkgcachegen.h | 6 +++++- debian/changelog | 2 ++ 4 files changed, 42 insertions(+), 15 deletions(-) diff --git a/apt-pkg/deb/debversion.cc b/apt-pkg/deb/debversion.cc index 94d357846..140561262 100644 --- a/apt-pkg/deb/debversion.cc +++ b/apt-pkg/deb/debversion.cc @@ -217,16 +217,12 @@ bool debVersioningSystem::CheckDep(const char *PkgVer, return false; Op &= 0x0F; - size_t const lenPkgVer = strlen(PkgVer); - size_t const lenDepVer = strlen(DepVer); - - // take a shortcut for equals which are string-equal as well - if (Op == pkgCache::Dep::Equals && lenPkgVer == lenDepVer && - memcmp(PkgVer, DepVer, lenPkgVer) == 0) - return true; + // fast track for (equal) strings [by location] which are by definition equal versions + if (PkgVer == DepVer) + return Op == pkgCache::Dep::Equals || Op == pkgCache::Dep::LessEq || Op == pkgCache::Dep::GreaterEq; // Perform the actual comparision. - int const Res = DoCmpVersion(PkgVer, PkgVer + lenPkgVer, DepVer, DepVer + lenDepVer); + int const Res = CmpVersion(PkgVer, DepVer); switch (Op) { case pkgCache::Dep::LessEq: diff --git a/apt-pkg/pkgcachegen.cc b/apt-pkg/pkgcachegen.cc index 8437dc68f..3f10b6c40 100644 --- a/apt-pkg/pkgcachegen.cc +++ b/apt-pkg/pkgcachegen.cc @@ -390,7 +390,7 @@ bool pkgCacheGenerator::MergeListVersion(ListParser &List, pkgCache::PkgIterator } // Add a new version - map_ptrloc const verindex = NewVersion(Ver,Version,*LastVer); + map_ptrloc const verindex = NewVersion(Ver, Version, Pkg.Index(), Hash, *LastVer); if (verindex == 0 && _error->PendingError()) return _error->Error(_("Error occurred while processing %s (%s%d)"), Pkg.Name(), "NewVersion", 1); @@ -398,8 +398,6 @@ bool pkgCacheGenerator::MergeListVersion(ListParser &List, pkgCache::PkgIterator if (oldMap != Map.Data()) LastVer += (map_ptrloc*) Map.Data() - (map_ptrloc*) oldMap; *LastVer = verindex; - Ver->ParentPkg = Pkg.Index(); - Ver->Hash = Hash; if (unlikely(List.NewVersion(Ver) == false)) return _error->Error(_("Error occurred while processing %s (%s%d)"), @@ -557,7 +555,7 @@ bool pkgCacheGenerator::MergeFileProvides(ListParser &List) Dynamic DynVer(Ver); for (; Ver.end() == false; ++Ver) { - if (Ver->Hash == Hash && Version.c_str() == Ver.VerStr()) + if (Ver->Hash == Hash && Version == Ver.VerStr()) { if (List.CollectFileProvides(Cache,Ver) == false) return _error->Error(_("Error occurred while processing %s (%s%d)"), @@ -768,6 +766,8 @@ bool pkgCacheGenerator::NewFileVer(pkgCache::VerIterator &Ver, /* This puts a version structure in the linked list */ unsigned long pkgCacheGenerator::NewVersion(pkgCache::VerIterator &Ver, const string &VerStr, + map_ptrloc const ParentPkg, + unsigned long const Hash, unsigned long Next) { // Get a structure @@ -779,12 +779,37 @@ unsigned long pkgCacheGenerator::NewVersion(pkgCache::VerIterator &Ver, Ver = pkgCache::VerIterator(Cache,Cache.VerP + Version); //Dynamic DynV(Ver); // caller MergeListVersion already takes care of it Ver->NextVer = Next; + Ver->ParentPkg = ParentPkg; + Ver->Hash = Hash; Ver->ID = Cache.HeaderP->VersionCount++; + + // try to find the version string in the group for reuse + pkgCache::PkgIterator Pkg = Ver.ParentPkg(); + pkgCache::GrpIterator Grp = Pkg.Group(); + if (Pkg.end() == false && Grp.end() == false) + { + for (pkgCache::PkgIterator P = Grp.PackageList(); P.end() == false; P = Grp.NextPkg(P)) + { + if (Pkg == P) + continue; + for (pkgCache::VerIterator V = P.VersionList(); V.end() == false; ++V) + { + int const cmp = strcmp(V.VerStr(), VerStr.c_str()); + if (cmp == 0) + { + Ver->VerStr = V->VerStr; + return Version; + } + else if (cmp < 0) + break; + } + } + } + // haven't found the version string, so create map_ptrloc const idxVerStr = WriteStringInMap(VerStr); if (unlikely(idxVerStr == 0)) return 0; Ver->VerStr = idxVerStr; - return Version; } /*}}}*/ @@ -881,7 +906,7 @@ bool pkgCacheGenerator::NewDepends(pkgCache::PkgIterator &Pkg, index = WriteStringInMap(Version); if (unlikely(index == 0)) return false; - if (oldMap != Map.Data()) + if (OldDepLast != 0 && oldMap != Map.Data()) OldDepLast += (map_ptrloc*) Map.Data() - (map_ptrloc*) oldMap; } } diff --git a/apt-pkg/pkgcachegen.h b/apt-pkg/pkgcachegen.h index e759cbd3e..428e8459b 100644 --- a/apt-pkg/pkgcachegen.h +++ b/apt-pkg/pkgcachegen.h @@ -80,7 +80,11 @@ class pkgCacheGenerator /*{{{*/ bool NewDepends(pkgCache::PkgIterator &Pkg, pkgCache::VerIterator &Ver, map_ptrloc const Version, unsigned int const &Op, unsigned int const &Type, map_ptrloc* &OldDepLast); - unsigned long NewVersion(pkgCache::VerIterator &Ver,const std::string &VerStr,unsigned long Next); + __deprecated unsigned long NewVersion(pkgCache::VerIterator &Ver,const std::string &VerStr,unsigned long Next) + { return NewVersion(Ver, VerStr, 0, 0, Next); } + unsigned long NewVersion(pkgCache::VerIterator &Ver,const std::string &VerStr, + map_ptrloc const ParentPkg, unsigned long const Hash, + unsigned long Next); map_ptrloc NewDescription(pkgCache::DescIterator &Desc,const std::string &Lang,const MD5SumValue &md5sum,map_ptrloc Next); public: diff --git a/debian/changelog b/debian/changelog index 7070c5fc9..9fce4b14e 100644 --- a/debian/changelog +++ b/debian/changelog @@ -11,6 +11,8 @@ apt (0.9.7.8~exp2+nmu1) UNRELEASED; urgency=low - equal comparisions are used mostly in same-source relations, so use this to try to reuse some version strings - sort group and package names in the hashtable on insert + - share version strings between same versions (of different architectures) + to save some space and allow quick comparisions later on * apt-pkg/pkgcache.cc: - assume sorted hashtable entries for groups/packages * apt-pkg/cacheiterators.h: -- cgit v1.2.3 From 125bf7824a869e91dd6a134636918a18423eb87d Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Thu, 4 Apr 2013 18:22:16 +0200 Subject: * apt-pkg/sourcelist.cc: - fix segfault when a hostname contains a [, thanks to Tzafrir Cohen (closes: #704653) --- apt-pkg/sourcelist.cc | 6 +++++- debian/changelog | 8 ++++++++ 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/apt-pkg/sourcelist.cc b/apt-pkg/sourcelist.cc index 0fddfb451..0fd237cad 100644 --- a/apt-pkg/sourcelist.cc +++ b/apt-pkg/sourcelist.cc @@ -270,7 +270,11 @@ bool pkgSourceList::ReadAppend(string File) // CNC:2003-02-20 - Do not break if '#' is inside []. for (I = Buffer; *I != 0 && *I != '#'; I++) if (*I == '[') - I = strchr(I + 1, ']'); + { + char *b_end = strchr(I + 1, ']'); + if (b_end != NULL) + I = b_end; + } *I = 0; const char *C = _strstrip(Buffer); diff --git a/debian/changelog b/debian/changelog index 42874ac53..5701cfeb0 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +apt (0.9.7.9~exp3) UNRELEASED; urgency=low + + * apt-pkg/sourcelist.cc: + - fix segfault when a hostname contains a [, thanks to + Tzafrir Cohen (closes: #704653) + + -- Michael Vogt Thu, 04 Apr 2013 18:21:06 +0200 + apt (0.9.7.9~exp2) experimental; urgency=low [ Programs translations ] -- cgit v1.2.3 From b57220d815aedbc023847d0885e08c6ed50e629a Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Mon, 8 Apr 2013 08:41:51 +0200 Subject: * debian/control: - replace manpages-it (closes: #704723) --- debian/changelog | 2 ++ debian/control | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 5701cfeb0..87fe0bb04 100644 --- a/debian/changelog +++ b/debian/changelog @@ -3,6 +3,8 @@ apt (0.9.7.9~exp3) UNRELEASED; urgency=low * apt-pkg/sourcelist.cc: - fix segfault when a hostname contains a [, thanks to Tzafrir Cohen (closes: #704653) + * debian/control: + - replace manpages-it (closes: #704723) -- Michael Vogt Thu, 04 Apr 2013 18:21:06 +0200 diff --git a/debian/control b/debian/control index 762d2818e..49647340a 100644 --- a/debian/control +++ b/debian/control @@ -18,7 +18,7 @@ Vcs-Browser: http://bzr.debian.org/loggerhead/apt/debian-sid/ Package: apt Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends}, debian-archive-keyring, gnupg -Replaces: manpages-pl (<< 20060617-3~) +Replaces: manpages-pl (<< 20060617-3~), manpages-it Conflicts: python-apt (<< 0.7.93.2~) Suggests: aptitude | synaptic | wajig, dpkg-dev, apt-doc, xz-utils, python-apt Description: commandline package manager -- cgit v1.2.3 From cd45554e5a0a643781d3deab1e3a8369dfbfd717 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Mon, 8 Apr 2013 17:29:47 +0200 Subject: po: refresh --- po/apt-all.pot | 130 ++++++++++++++++++++++++++++----------------------------- po/ar.po | 130 ++++++++++++++++++++++++++++----------------------------- po/ast.po | 130 ++++++++++++++++++++++++++++----------------------------- po/bg.po | 130 ++++++++++++++++++++++++++++----------------------------- po/bs.po | 130 ++++++++++++++++++++++++++++----------------------------- po/ca.po | 130 ++++++++++++++++++++++++++++----------------------------- po/cs.po | 130 ++++++++++++++++++++++++++++----------------------------- po/cy.po | 130 ++++++++++++++++++++++++++++----------------------------- po/da.po | 130 ++++++++++++++++++++++++++++----------------------------- po/de.po | 130 ++++++++++++++++++++++++++++----------------------------- po/dz.po | 130 ++++++++++++++++++++++++++++----------------------------- po/el.po | 130 ++++++++++++++++++++++++++++----------------------------- po/es.po | 130 ++++++++++++++++++++++++++++----------------------------- po/eu.po | 130 ++++++++++++++++++++++++++++----------------------------- po/fi.po | 130 ++++++++++++++++++++++++++++----------------------------- po/fr.po | 130 ++++++++++++++++++++++++++++----------------------------- po/gl.po | 130 ++++++++++++++++++++++++++++----------------------------- po/hu.po | 130 ++++++++++++++++++++++++++++----------------------------- po/it.po | 130 ++++++++++++++++++++++++++++----------------------------- po/ja.po | 130 ++++++++++++++++++++++++++++----------------------------- po/km.po | 130 ++++++++++++++++++++++++++++----------------------------- po/ko.po | 130 ++++++++++++++++++++++++++++----------------------------- po/ku.po | 130 ++++++++++++++++++++++++++++----------------------------- po/lt.po | 130 ++++++++++++++++++++++++++++----------------------------- po/mr.po | 130 ++++++++++++++++++++++++++++----------------------------- po/nb.po | 130 ++++++++++++++++++++++++++++----------------------------- po/ne.po | 130 ++++++++++++++++++++++++++++----------------------------- po/nl.po | 130 ++++++++++++++++++++++++++++----------------------------- po/nn.po | 130 ++++++++++++++++++++++++++++----------------------------- po/pl.po | 130 ++++++++++++++++++++++++++++----------------------------- po/pt.po | 130 ++++++++++++++++++++++++++++----------------------------- po/pt_BR.po | 130 ++++++++++++++++++++++++++++----------------------------- po/ro.po | 130 ++++++++++++++++++++++++++++----------------------------- po/ru.po | 130 ++++++++++++++++++++++++++++----------------------------- po/sk.po | 130 ++++++++++++++++++++++++++++----------------------------- po/sl.po | 130 ++++++++++++++++++++++++++++----------------------------- po/sv.po | 130 ++++++++++++++++++++++++++++----------------------------- po/th.po | 130 ++++++++++++++++++++++++++++----------------------------- po/tl.po | 130 ++++++++++++++++++++++++++++----------------------------- po/uk.po | 130 ++++++++++++++++++++++++++++----------------------------- po/vi.po | 130 ++++++++++++++++++++++++++++----------------------------- po/zh_CN.po | 130 ++++++++++++++++++++++++++++----------------------------- po/zh_TW.po | 130 ++++++++++++++++++++++++++++----------------------------- 43 files changed, 2795 insertions(+), 2795 deletions(-) diff --git a/po/apt-all.pot b/po/apt-all.pot index 4703792d7..a69dc9295 100644 --- a/po/apt-all.pot +++ b/po/apt-all.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.9.7.9~exp2\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-04-03 14:20+0200\n" +"POT-Creation-Date: 2013-04-08 15:40+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -153,7 +153,7 @@ msgstr "" #: cmdline/apt-cache.cc:1683 cmdline/apt-cdrom.cc:198 cmdline/apt-config.cc:81 #: cmdline/apt-get.cc:3363 cmdline/apt-mark.cc:375 -#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:590 +#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:591 #: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147 #, c-format msgid "%s %s for %s compiled on %s %s\n" @@ -1435,7 +1435,7 @@ msgstr "" #. Only warn if there are no sources.list.d. #. Only warn if there is no sources.list file. -#: methods/mirror.cc:95 apt-inst/extract.cc:465 +#: methods/mirror.cc:95 apt-inst/extract.cc:464 #: apt-pkg/contrib/cdromutl.cc:183 apt-pkg/contrib/fileutl.cc:400 #: apt-pkg/contrib/fileutl.cc:513 apt-pkg/sourcelist.cc:208 #: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:108 @@ -1546,7 +1546,7 @@ msgid "" " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" msgstr "" -#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1339 +#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1386 #, c-format msgid "Unable to write to %s" msgstr "" @@ -1555,31 +1555,31 @@ msgstr "" msgid "Cannot get debconf version. Is debconf installed?" msgstr "" -#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:348 +#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:349 msgid "Package extension list is too long" msgstr "" #: ftparchive/apt-ftparchive.cc:173 ftparchive/apt-ftparchive.cc:190 -#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:263 -#: ftparchive/apt-ftparchive.cc:277 ftparchive/apt-ftparchive.cc:299 +#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:264 +#: ftparchive/apt-ftparchive.cc:278 ftparchive/apt-ftparchive.cc:300 #, c-format msgid "Error processing directory %s" msgstr "" -#: ftparchive/apt-ftparchive.cc:261 +#: ftparchive/apt-ftparchive.cc:262 msgid "Source extension list is too long" msgstr "" -#: ftparchive/apt-ftparchive.cc:378 +#: ftparchive/apt-ftparchive.cc:379 msgid "Error writing header to contents file" msgstr "" -#: ftparchive/apt-ftparchive.cc:408 +#: ftparchive/apt-ftparchive.cc:409 #, c-format msgid "Error processing contents %s" msgstr "" -#: ftparchive/apt-ftparchive.cc:596 +#: ftparchive/apt-ftparchive.cc:597 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -1621,11 +1621,11 @@ msgid "" " -o=? Set an arbitrary configuration option" msgstr "" -#: ftparchive/apt-ftparchive.cc:802 +#: ftparchive/apt-ftparchive.cc:803 msgid "No selections matched" msgstr "" -#: ftparchive/apt-ftparchive.cc:880 +#: ftparchive/apt-ftparchive.cc:881 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "" @@ -1651,8 +1651,8 @@ msgstr "" msgid "Unable to open DB file %s: %s" msgstr "" -#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:181 apt-inst/extract.cc:193 -#: apt-inst/extract.cc:210 +#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:179 apt-inst/extract.cc:192 +#: apt-inst/extract.cc:209 #, c-format msgid "Failed to stat %s" msgstr "" @@ -1730,22 +1730,22 @@ msgstr "" msgid "Archive had no package field" msgstr "" -#: ftparchive/writer.cc:411 ftparchive/writer.cc:698 +#: ftparchive/writer.cc:411 ftparchive/writer.cc:701 #, c-format msgid " %s has no override entry\n" msgstr "" -#: ftparchive/writer.cc:479 ftparchive/writer.cc:814 +#: ftparchive/writer.cc:479 ftparchive/writer.cc:845 #, c-format msgid " %s maintainer is %s not %s\n" msgstr "" -#: ftparchive/writer.cc:708 +#: ftparchive/writer.cc:711 #, c-format msgid " %s has no source override entry\n" msgstr "" -#: ftparchive/writer.cc:712 +#: ftparchive/writer.cc:715 #, c-format msgid " %s has no binary override entry either\n" msgstr "" @@ -1819,7 +1819,7 @@ msgstr "" msgid "Problem unlinking %s" msgstr "" -#: ftparchive/multicompress.cc:373 apt-inst/extract.cc:188 +#: ftparchive/multicompress.cc:373 apt-inst/extract.cc:187 #, c-format msgid "Failed to rename %s to %s" msgstr "" @@ -1943,54 +1943,54 @@ msgstr "" msgid "Failed to close file %s" msgstr "" -#: apt-inst/extract.cc:96 apt-inst/extract.cc:167 +#: apt-inst/extract.cc:94 apt-inst/extract.cc:165 #, c-format msgid "The path %s is too long" msgstr "" -#: apt-inst/extract.cc:127 +#: apt-inst/extract.cc:125 #, c-format msgid "Unpacking %s more than once" msgstr "" -#: apt-inst/extract.cc:137 +#: apt-inst/extract.cc:135 #, c-format msgid "The directory %s is diverted" msgstr "" -#: apt-inst/extract.cc:147 +#: apt-inst/extract.cc:145 #, c-format msgid "The package is trying to write to the diversion target %s/%s" msgstr "" -#: apt-inst/extract.cc:157 apt-inst/extract.cc:300 +#: apt-inst/extract.cc:155 apt-inst/extract.cc:299 msgid "The diversion path is too long" msgstr "" -#: apt-inst/extract.cc:243 +#: apt-inst/extract.cc:242 #, c-format msgid "The directory %s is being replaced by a non-directory" msgstr "" -#: apt-inst/extract.cc:283 +#: apt-inst/extract.cc:282 msgid "Failed to locate node in its hash bucket" msgstr "" -#: apt-inst/extract.cc:287 +#: apt-inst/extract.cc:286 msgid "The path is too long" msgstr "" -#: apt-inst/extract.cc:415 +#: apt-inst/extract.cc:414 #, c-format msgid "Overwrite package match with no version for %s" msgstr "" -#: apt-inst/extract.cc:432 +#: apt-inst/extract.cc:431 #, c-format msgid "File %s/%s overwrites the one in the package %s" msgstr "" -#: apt-inst/extract.cc:492 +#: apt-inst/extract.cc:491 #, c-format msgid "Unable to stat %s" msgstr "" @@ -2368,59 +2368,59 @@ msgstr "" msgid "The package cache was built for a different architecture" msgstr "" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "Depends" msgstr "" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "PreDepends" msgstr "" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "Suggests" msgstr "" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Recommends" msgstr "" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Conflicts" msgstr "" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Replaces" msgstr "" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Obsoletes" msgstr "" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Breaks" msgstr "" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Enhances" msgstr "" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "important" msgstr "" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "required" msgstr "" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "standard" msgstr "" -#: apt-pkg/pkgcache.cc:319 +#: apt-pkg/pkgcache.cc:328 msgid "optional" msgstr "" -#: apt-pkg/pkgcache.cc:319 +#: apt-pkg/pkgcache.cc:328 msgid "extra" msgstr "" @@ -2520,12 +2520,12 @@ msgstr "" msgid "Line %u too long in source list %s." msgstr "" -#: apt-pkg/sourcelist.cc:285 +#: apt-pkg/sourcelist.cc:289 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "" -#: apt-pkg/sourcelist.cc:289 +#: apt-pkg/sourcelist.cc:293 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "" @@ -2677,14 +2677,14 @@ msgstr "" #. TRANSLATOR: The first placeholder is a package name, #. the other two should be copied verbatim as they include debug info #: apt-pkg/pkgcachegen.cc:218 apt-pkg/pkgcachegen.cc:228 -#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:325 -#: apt-pkg/pkgcachegen.cc:333 apt-pkg/pkgcachegen.cc:375 -#: apt-pkg/pkgcachegen.cc:379 apt-pkg/pkgcachegen.cc:396 -#: apt-pkg/pkgcachegen.cc:406 apt-pkg/pkgcachegen.cc:410 -#: apt-pkg/pkgcachegen.cc:414 apt-pkg/pkgcachegen.cc:435 -#: apt-pkg/pkgcachegen.cc:477 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:525 apt-pkg/pkgcachegen.cc:556 -#: apt-pkg/pkgcachegen.cc:570 +#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:319 +#: apt-pkg/pkgcachegen.cc:332 apt-pkg/pkgcachegen.cc:374 +#: apt-pkg/pkgcachegen.cc:378 apt-pkg/pkgcachegen.cc:395 +#: apt-pkg/pkgcachegen.cc:403 apt-pkg/pkgcachegen.cc:407 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:432 +#: apt-pkg/pkgcachegen.cc:471 apt-pkg/pkgcachegen.cc:509 +#: apt-pkg/pkgcachegen.cc:516 apt-pkg/pkgcachegen.cc:547 +#: apt-pkg/pkgcachegen.cc:561 #, c-format msgid "Error occurred while processing %s (%s%d)" msgstr "" @@ -2705,26 +2705,26 @@ msgstr "" msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "" -#: apt-pkg/pkgcachegen.cc:577 +#: apt-pkg/pkgcachegen.cc:568 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "" -#: apt-pkg/pkgcachegen.cc:1150 +#: apt-pkg/pkgcachegen.cc:1197 #, c-format msgid "Couldn't stat source package list %s" msgstr "" -#: apt-pkg/pkgcachegen.cc:1238 apt-pkg/pkgcachegen.cc:1342 -#: apt-pkg/pkgcachegen.cc:1348 apt-pkg/pkgcachegen.cc:1505 +#: apt-pkg/pkgcachegen.cc:1285 apt-pkg/pkgcachegen.cc:1389 +#: apt-pkg/pkgcachegen.cc:1395 apt-pkg/pkgcachegen.cc:1552 msgid "Reading package lists" msgstr "" -#: apt-pkg/pkgcachegen.cc:1255 +#: apt-pkg/pkgcachegen.cc:1302 msgid "Collecting File Provides" msgstr "" -#: apt-pkg/pkgcachegen.cc:1447 apt-pkg/pkgcachegen.cc:1454 +#: apt-pkg/pkgcachegen.cc:1494 apt-pkg/pkgcachegen.cc:1501 msgid "IO Error saving source cache" msgstr "" @@ -2919,22 +2919,22 @@ msgstr "" msgid "Source list entries for this disc are:\n" msgstr "" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:766 +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:764 #, c-format msgid "Wrote %i records.\n" msgstr "" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:768 +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:766 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:771 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:769 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:774 +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:772 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" diff --git a/po/ar.po b/po/ar.po index 1b56be6c7..d42708726 100644 --- a/po/ar.po +++ b/po/ar.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: apt_po\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-04-03 14:20+0200\n" +"POT-Creation-Date: 2013-04-08 15:40+0200\n" "PO-Revision-Date: 2006-10-20 21:28+0300\n" "Last-Translator: Ossama M. Khayat \n" "Language-Team: Arabic \n" @@ -160,7 +160,7 @@ msgstr " جدول النسخ:" #: cmdline/apt-cache.cc:1683 cmdline/apt-cdrom.cc:198 cmdline/apt-config.cc:81 #: cmdline/apt-get.cc:3363 cmdline/apt-mark.cc:375 -#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:590 +#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:591 #: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147 #, fuzzy, c-format msgid "%s %s for %s compiled on %s %s\n" @@ -1460,7 +1460,7 @@ msgstr "خطأ داخلي" #. Only warn if there are no sources.list.d. #. Only warn if there is no sources.list file. -#: methods/mirror.cc:95 apt-inst/extract.cc:465 +#: methods/mirror.cc:95 apt-inst/extract.cc:464 #: apt-pkg/contrib/cdromutl.cc:183 apt-pkg/contrib/fileutl.cc:400 #: apt-pkg/contrib/fileutl.cc:513 apt-pkg/sourcelist.cc:208 #: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:108 @@ -1573,7 +1573,7 @@ msgid "" " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" msgstr "" -#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1339 +#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1386 #, c-format msgid "Unable to write to %s" msgstr "تعذرت الكتابة إلى %s" @@ -1582,31 +1582,31 @@ msgstr "تعذرت الكتابة إلى %s" msgid "Cannot get debconf version. Is debconf installed?" msgstr "تعذر الحصول على نسخة debconf. هل هي مثبتة؟" -#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:348 +#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:349 msgid "Package extension list is too long" msgstr "قائمة توسيعات الحزمة طويلة جداً" #: ftparchive/apt-ftparchive.cc:173 ftparchive/apt-ftparchive.cc:190 -#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:263 -#: ftparchive/apt-ftparchive.cc:277 ftparchive/apt-ftparchive.cc:299 +#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:264 +#: ftparchive/apt-ftparchive.cc:278 ftparchive/apt-ftparchive.cc:300 #, c-format msgid "Error processing directory %s" msgstr "خطأ في معالجة الدليل %s" -#: ftparchive/apt-ftparchive.cc:261 +#: ftparchive/apt-ftparchive.cc:262 msgid "Source extension list is too long" msgstr "قائمة توسيعات المصدر طويلة جداً" -#: ftparchive/apt-ftparchive.cc:378 +#: ftparchive/apt-ftparchive.cc:379 msgid "Error writing header to contents file" msgstr "خطأ في كتابة الترويسة إلى ملف المحتويات" -#: ftparchive/apt-ftparchive.cc:408 +#: ftparchive/apt-ftparchive.cc:409 #, c-format msgid "Error processing contents %s" msgstr "خطأ في معالجة المحتويات %s" -#: ftparchive/apt-ftparchive.cc:596 +#: ftparchive/apt-ftparchive.cc:597 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -1648,11 +1648,11 @@ msgid "" " -o=? Set an arbitrary configuration option" msgstr "" -#: ftparchive/apt-ftparchive.cc:802 +#: ftparchive/apt-ftparchive.cc:803 msgid "No selections matched" msgstr "لم تُطابق أية تحديدات" -#: ftparchive/apt-ftparchive.cc:880 +#: ftparchive/apt-ftparchive.cc:881 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "بعض الملفات مفقودة في مجموعة ملف الحزمة `%s'" @@ -1678,8 +1678,8 @@ msgstr "" msgid "Unable to open DB file %s: %s" msgstr "تعذر فتح ملف قاعدة البيانات %s: %s" -#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:181 apt-inst/extract.cc:193 -#: apt-inst/extract.cc:210 +#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:179 apt-inst/extract.cc:192 +#: apt-inst/extract.cc:209 #, c-format msgid "Failed to stat %s" msgstr "" @@ -1757,22 +1757,22 @@ msgstr "" msgid "Archive had no package field" msgstr "" -#: ftparchive/writer.cc:411 ftparchive/writer.cc:698 +#: ftparchive/writer.cc:411 ftparchive/writer.cc:701 #, c-format msgid " %s has no override entry\n" msgstr "" -#: ftparchive/writer.cc:479 ftparchive/writer.cc:814 +#: ftparchive/writer.cc:479 ftparchive/writer.cc:845 #, c-format msgid " %s maintainer is %s not %s\n" msgstr "" -#: ftparchive/writer.cc:708 +#: ftparchive/writer.cc:711 #, c-format msgid " %s has no source override entry\n" msgstr "" -#: ftparchive/writer.cc:712 +#: ftparchive/writer.cc:715 #, c-format msgid " %s has no binary override entry either\n" msgstr "" @@ -1846,7 +1846,7 @@ msgstr "" msgid "Problem unlinking %s" msgstr "" -#: ftparchive/multicompress.cc:373 apt-inst/extract.cc:188 +#: ftparchive/multicompress.cc:373 apt-inst/extract.cc:187 #, c-format msgid "Failed to rename %s to %s" msgstr "فشل تغيير اسم %s إلى %s" @@ -1970,54 +1970,54 @@ msgstr "فشلت كتابة الملف %s" msgid "Failed to close file %s" msgstr "فشل إغلاق الملف %s" -#: apt-inst/extract.cc:96 apt-inst/extract.cc:167 +#: apt-inst/extract.cc:94 apt-inst/extract.cc:165 #, c-format msgid "The path %s is too long" msgstr "المسار %s طويل جداً" -#: apt-inst/extract.cc:127 +#: apt-inst/extract.cc:125 #, c-format msgid "Unpacking %s more than once" msgstr "فكّ تحزيم %s أكثر من مرّة" -#: apt-inst/extract.cc:137 +#: apt-inst/extract.cc:135 #, c-format msgid "The directory %s is diverted" msgstr "" -#: apt-inst/extract.cc:147 +#: apt-inst/extract.cc:145 #, c-format msgid "The package is trying to write to the diversion target %s/%s" msgstr "" -#: apt-inst/extract.cc:157 apt-inst/extract.cc:300 +#: apt-inst/extract.cc:155 apt-inst/extract.cc:299 msgid "The diversion path is too long" msgstr "" -#: apt-inst/extract.cc:243 +#: apt-inst/extract.cc:242 #, c-format msgid "The directory %s is being replaced by a non-directory" msgstr "" -#: apt-inst/extract.cc:283 +#: apt-inst/extract.cc:282 msgid "Failed to locate node in its hash bucket" msgstr "" -#: apt-inst/extract.cc:287 +#: apt-inst/extract.cc:286 msgid "The path is too long" msgstr "المسار طويل جداً" -#: apt-inst/extract.cc:415 +#: apt-inst/extract.cc:414 #, c-format msgid "Overwrite package match with no version for %s" msgstr "" -#: apt-inst/extract.cc:432 +#: apt-inst/extract.cc:431 #, c-format msgid "File %s/%s overwrites the one in the package %s" msgstr "" -#: apt-inst/extract.cc:492 +#: apt-inst/extract.cc:491 #, c-format msgid "Unable to stat %s" msgstr "" @@ -2398,59 +2398,59 @@ msgstr "" msgid "The package cache was built for a different architecture" msgstr "" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "Depends" msgstr "يعتمد" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "PreDepends" msgstr "يعتمد مسبقاً" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "Suggests" msgstr "يستحسن" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Recommends" msgstr "يقترح" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Conflicts" msgstr "يعارض" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Replaces" msgstr "يستبدل" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Obsoletes" msgstr "يُلغي" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Breaks" msgstr "" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Enhances" msgstr "" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "important" msgstr "مهم" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "required" msgstr "مطلوب" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "standard" msgstr "قياسي" -#: apt-pkg/pkgcache.cc:319 +#: apt-pkg/pkgcache.cc:328 msgid "optional" msgstr "اختياري" -#: apt-pkg/pkgcache.cc:319 +#: apt-pkg/pkgcache.cc:328 msgid "extra" msgstr "إضافي" @@ -2551,12 +2551,12 @@ msgstr "فتح %s" msgid "Line %u too long in source list %s." msgstr "" -#: apt-pkg/sourcelist.cc:285 +#: apt-pkg/sourcelist.cc:289 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "" -#: apt-pkg/sourcelist.cc:289 +#: apt-pkg/sourcelist.cc:293 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "" @@ -2708,14 +2708,14 @@ msgstr "" #. TRANSLATOR: The first placeholder is a package name, #. the other two should be copied verbatim as they include debug info #: apt-pkg/pkgcachegen.cc:218 apt-pkg/pkgcachegen.cc:228 -#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:325 -#: apt-pkg/pkgcachegen.cc:333 apt-pkg/pkgcachegen.cc:375 -#: apt-pkg/pkgcachegen.cc:379 apt-pkg/pkgcachegen.cc:396 -#: apt-pkg/pkgcachegen.cc:406 apt-pkg/pkgcachegen.cc:410 -#: apt-pkg/pkgcachegen.cc:414 apt-pkg/pkgcachegen.cc:435 -#: apt-pkg/pkgcachegen.cc:477 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:525 apt-pkg/pkgcachegen.cc:556 -#: apt-pkg/pkgcachegen.cc:570 +#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:319 +#: apt-pkg/pkgcachegen.cc:332 apt-pkg/pkgcachegen.cc:374 +#: apt-pkg/pkgcachegen.cc:378 apt-pkg/pkgcachegen.cc:395 +#: apt-pkg/pkgcachegen.cc:403 apt-pkg/pkgcachegen.cc:407 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:432 +#: apt-pkg/pkgcachegen.cc:471 apt-pkg/pkgcachegen.cc:509 +#: apt-pkg/pkgcachegen.cc:516 apt-pkg/pkgcachegen.cc:547 +#: apt-pkg/pkgcachegen.cc:561 #, fuzzy, c-format msgid "Error occurred while processing %s (%s%d)" msgstr "حدث خطأ أثناء معالجة %s (NewVersion1)" @@ -2736,26 +2736,26 @@ msgstr "" msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "" -#: apt-pkg/pkgcachegen.cc:577 +#: apt-pkg/pkgcachegen.cc:568 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "" -#: apt-pkg/pkgcachegen.cc:1150 +#: apt-pkg/pkgcachegen.cc:1197 #, c-format msgid "Couldn't stat source package list %s" msgstr "" -#: apt-pkg/pkgcachegen.cc:1238 apt-pkg/pkgcachegen.cc:1342 -#: apt-pkg/pkgcachegen.cc:1348 apt-pkg/pkgcachegen.cc:1505 +#: apt-pkg/pkgcachegen.cc:1285 apt-pkg/pkgcachegen.cc:1389 +#: apt-pkg/pkgcachegen.cc:1395 apt-pkg/pkgcachegen.cc:1552 msgid "Reading package lists" msgstr "قراءة قوائم الحزم" -#: apt-pkg/pkgcachegen.cc:1255 +#: apt-pkg/pkgcachegen.cc:1302 msgid "Collecting File Provides" msgstr "" -#: apt-pkg/pkgcachegen.cc:1447 apt-pkg/pkgcachegen.cc:1454 +#: apt-pkg/pkgcachegen.cc:1494 apt-pkg/pkgcachegen.cc:1501 msgid "IO Error saving source cache" msgstr "" @@ -2954,22 +2954,22 @@ msgstr "كتابة لائحة المصادر الجديدة\n" msgid "Source list entries for this disc are:\n" msgstr "" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:766 +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:764 #, c-format msgid "Wrote %i records.\n" msgstr "" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:768 +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:766 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:771 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:769 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:774 +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:772 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" diff --git a/po/ast.po b/po/ast.po index 25388ddbb..cfa13d9ca 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 \n" -"POT-Creation-Date: 2013-04-03 14:20+0200\n" +"POT-Creation-Date: 2013-04-08 15:40+0200\n" "PO-Revision-Date: 2010-10-02 23:35+0100\n" "Last-Translator: Iñigo Varela \n" "Language-Team: Asturian (ast)\n" @@ -153,7 +153,7 @@ msgstr " Tabla de versiones:" #: cmdline/apt-cache.cc:1683 cmdline/apt-cdrom.cc:198 cmdline/apt-config.cc:81 #: cmdline/apt-get.cc:3363 cmdline/apt-mark.cc:375 -#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:590 +#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:591 #: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147 #, c-format msgid "%s %s for %s compiled on %s %s\n" @@ -1590,7 +1590,7 @@ msgstr "Fallu internu" #. Only warn if there are no sources.list.d. #. Only warn if there is no sources.list file. -#: methods/mirror.cc:95 apt-inst/extract.cc:465 +#: methods/mirror.cc:95 apt-inst/extract.cc:464 #: apt-pkg/contrib/cdromutl.cc:183 apt-pkg/contrib/fileutl.cc:400 #: apt-pkg/contrib/fileutl.cc:513 apt-pkg/sourcelist.cc:208 #: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:108 @@ -1721,7 +1721,7 @@ msgstr "" "-o=? Afita una opción de configuración arbitraria, p. ej. -o dir::cache=/" "tmp\n" -#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1339 +#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1386 #, c-format msgid "Unable to write to %s" msgstr "Nun se pue escribir en %s" @@ -1730,31 +1730,31 @@ msgstr "Nun se pue escribir en %s" msgid "Cannot get debconf version. Is debconf installed?" msgstr "Nun se pue alcontrar la versión de debconf. ¿Ta instaláu debconf?" -#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:348 +#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:349 msgid "Package extension list is too long" msgstr "La llista d'estensión de paquetes ye enforma llarga" #: ftparchive/apt-ftparchive.cc:173 ftparchive/apt-ftparchive.cc:190 -#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:263 -#: ftparchive/apt-ftparchive.cc:277 ftparchive/apt-ftparchive.cc:299 +#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:264 +#: ftparchive/apt-ftparchive.cc:278 ftparchive/apt-ftparchive.cc:300 #, c-format msgid "Error processing directory %s" msgstr "Error al procesar el direutoriu %s" -#: ftparchive/apt-ftparchive.cc:261 +#: ftparchive/apt-ftparchive.cc:262 msgid "Source extension list is too long" msgstr "La llista d'estensión de fontes ye enforma llarga" -#: ftparchive/apt-ftparchive.cc:378 +#: ftparchive/apt-ftparchive.cc:379 msgid "Error writing header to contents file" msgstr "Error al escribir la cabecera al ficheru de conteníos" -#: ftparchive/apt-ftparchive.cc:408 +#: ftparchive/apt-ftparchive.cc:409 #, c-format msgid "Error processing contents %s" msgstr "Error al procesar conteníos %s" -#: ftparchive/apt-ftparchive.cc:596 +#: ftparchive/apt-ftparchive.cc:597 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -1835,11 +1835,11 @@ msgstr "" " -c=? Lleer esti ficheru de configuración\n" " -o=? Afita una escoyeta de configuración propia" -#: ftparchive/apt-ftparchive.cc:802 +#: ftparchive/apt-ftparchive.cc:803 msgid "No selections matched" msgstr "Nun concasó denguna seleición" -#: ftparchive/apt-ftparchive.cc:880 +#: ftparchive/apt-ftparchive.cc:881 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "Falten dellos ficheros nel grupu de ficheros de paquete `%s'" @@ -1867,8 +1867,8 @@ msgstr "" msgid "Unable to open DB file %s: %s" msgstr "Nun pudo abrise'l ficheru de BD %s: %s" -#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:181 apt-inst/extract.cc:193 -#: apt-inst/extract.cc:210 +#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:179 apt-inst/extract.cc:192 +#: apt-inst/extract.cc:209 #, c-format msgid "Failed to stat %s" msgstr "Nun pudo lleese %s" @@ -1946,22 +1946,22 @@ msgstr " Alcanzose'l llímite of %sB de desenllaz.\n" msgid "Archive had no package field" msgstr "L'archivu nun tien el campu paquetes" -#: ftparchive/writer.cc:411 ftparchive/writer.cc:698 +#: ftparchive/writer.cc:411 ftparchive/writer.cc:701 #, c-format msgid " %s has no override entry\n" msgstr " %s nun tien la entrada saltos\n" -#: ftparchive/writer.cc:479 ftparchive/writer.cc:814 +#: ftparchive/writer.cc:479 ftparchive/writer.cc:845 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " el curiador de %s ye %s y non %s\n" -#: ftparchive/writer.cc:708 +#: ftparchive/writer.cc:711 #, c-format msgid " %s has no source override entry\n" msgstr " %s nun tien la entrada saltos de fonte\n" -#: ftparchive/writer.cc:712 +#: ftparchive/writer.cc:715 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s tampoco nun tiene una entrada binaria de saltos\n" @@ -2035,7 +2035,7 @@ msgstr "Nun pudo lleese al computar MD5" msgid "Problem unlinking %s" msgstr "Problema al desenllazar %s" -#: ftparchive/multicompress.cc:373 apt-inst/extract.cc:188 +#: ftparchive/multicompress.cc:373 apt-inst/extract.cc:187 #, c-format msgid "Failed to rename %s to %s" msgstr "Nun pudo renomase %s como %s" @@ -2182,54 +2182,54 @@ msgstr "Falló la escritura nel ficheru %s" msgid "Failed to close file %s" msgstr "Falló al pesllar el ficheru %s" -#: apt-inst/extract.cc:96 apt-inst/extract.cc:167 +#: apt-inst/extract.cc:94 apt-inst/extract.cc:165 #, c-format msgid "The path %s is too long" msgstr "La trayeutoria %s ye enforma llarga" -#: apt-inst/extract.cc:127 +#: apt-inst/extract.cc:125 #, c-format msgid "Unpacking %s more than once" msgstr "Desempaquetando %s más d'una vegada" -#: apt-inst/extract.cc:137 +#: apt-inst/extract.cc:135 #, c-format msgid "The directory %s is diverted" msgstr "El direutorio %s ta desviáu" -#: apt-inst/extract.cc:147 +#: apt-inst/extract.cc:145 #, c-format msgid "The package is trying to write to the diversion target %s/%s" msgstr "El paquete ta tentando escribir nel oxetivu desviáu %s/%s" -#: apt-inst/extract.cc:157 apt-inst/extract.cc:300 +#: apt-inst/extract.cc:155 apt-inst/extract.cc:299 msgid "The diversion path is too long" msgstr "La trayeutoria de desviación ye enforma llarga" -#: apt-inst/extract.cc:243 +#: apt-inst/extract.cc:242 #, c-format msgid "The directory %s is being replaced by a non-directory" msgstr "El direutoriu %s ta reemplazándose por un non-direutoriu" -#: apt-inst/extract.cc:283 +#: apt-inst/extract.cc:282 msgid "Failed to locate node in its hash bucket" msgstr "Fallu al atopar el nodu nel so bote d'enllaz" -#: apt-inst/extract.cc:287 +#: apt-inst/extract.cc:286 msgid "The path is too long" msgstr "La trayeutoria ye perllarga" -#: apt-inst/extract.cc:415 +#: apt-inst/extract.cc:414 #, c-format msgid "Overwrite package match with no version for %s" msgstr "Sobreescribiendo concordancia del paquete ensin versión pa %s" -#: apt-inst/extract.cc:432 +#: apt-inst/extract.cc:431 #, c-format msgid "File %s/%s overwrites the one in the package %s" msgstr "El ficheru %s/%s sobreescribe al que ta nel paquete %s" -#: apt-inst/extract.cc:492 +#: apt-inst/extract.cc:491 #, c-format msgid "Unable to stat %s" msgstr "Nun ye a lleer %s" @@ -2616,59 +2616,59 @@ msgstr "Esti APT nun soporta'l sistema de versiones '%s'" msgid "The package cache was built for a different architecture" msgstr "La caché de paquetes creóse pa una arquitectura estremada" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "Depends" msgstr "Depende de" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "PreDepends" msgstr "Predepende de" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "Suggests" msgstr "Suxer" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Recommends" msgstr "Recomienda" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Conflicts" msgstr "En conflictu con" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Replaces" msgstr "Sustituye a" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Obsoletes" msgstr "Fai obsoletu a" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Breaks" msgstr "Ruempe" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Enhances" msgstr "Aumenta" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "important" msgstr "importante" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "required" msgstr "requeríu" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "standard" msgstr "estándar" -#: apt-pkg/pkgcache.cc:319 +#: apt-pkg/pkgcache.cc:328 msgid "optional" msgstr "opcional" -#: apt-pkg/pkgcache.cc:319 +#: apt-pkg/pkgcache.cc:328 msgid "extra" msgstr "extra" @@ -2771,12 +2771,12 @@ msgstr "Abriendo %s" msgid "Line %u too long in source list %s." msgstr "Llinia %u enforma llarga na llista d'oríxenes %s." -#: apt-pkg/sourcelist.cc:285 +#: apt-pkg/sourcelist.cc:289 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "Llinia %u mal formada na llista d'oríxenes %s (triba)" -#: apt-pkg/sourcelist.cc:289 +#: apt-pkg/sourcelist.cc:293 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "Triba '%s' desconocida na llinia %u de la llista d'oríxenes %s" @@ -2941,14 +2941,14 @@ msgstr "La caché tien un sistema de versiones incompatible" #. TRANSLATOR: The first placeholder is a package name, #. the other two should be copied verbatim as they include debug info #: apt-pkg/pkgcachegen.cc:218 apt-pkg/pkgcachegen.cc:228 -#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:325 -#: apt-pkg/pkgcachegen.cc:333 apt-pkg/pkgcachegen.cc:375 -#: apt-pkg/pkgcachegen.cc:379 apt-pkg/pkgcachegen.cc:396 -#: apt-pkg/pkgcachegen.cc:406 apt-pkg/pkgcachegen.cc:410 -#: apt-pkg/pkgcachegen.cc:414 apt-pkg/pkgcachegen.cc:435 -#: apt-pkg/pkgcachegen.cc:477 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:525 apt-pkg/pkgcachegen.cc:556 -#: apt-pkg/pkgcachegen.cc:570 +#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:319 +#: apt-pkg/pkgcachegen.cc:332 apt-pkg/pkgcachegen.cc:374 +#: apt-pkg/pkgcachegen.cc:378 apt-pkg/pkgcachegen.cc:395 +#: apt-pkg/pkgcachegen.cc:403 apt-pkg/pkgcachegen.cc:407 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:432 +#: apt-pkg/pkgcachegen.cc:471 apt-pkg/pkgcachegen.cc:509 +#: apt-pkg/pkgcachegen.cc:516 apt-pkg/pkgcachegen.cc:547 +#: apt-pkg/pkgcachegen.cc:561 #, fuzzy, c-format msgid "Error occurred while processing %s (%s%d)" msgstr "Hebo un error al procesar %s (FindPkg)" @@ -2970,26 +2970,26 @@ msgstr "Coime, perpasaste'l númberu de descripciones qu'esti APT ye a remanar." msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "Vaya, perpasaste'l númberu de dependencies coles que puede esti APT." -#: apt-pkg/pkgcachegen.cc:577 +#: apt-pkg/pkgcachegen.cc:568 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "Al procesar dependencies de ficheros nun s'alcontró el paquete %s %s" -#: apt-pkg/pkgcachegen.cc:1150 +#: apt-pkg/pkgcachegen.cc:1197 #, c-format msgid "Couldn't stat source package list %s" msgstr "Nun se puede lleer la llista de paquetes d'oríxenes %s" -#: apt-pkg/pkgcachegen.cc:1238 apt-pkg/pkgcachegen.cc:1342 -#: apt-pkg/pkgcachegen.cc:1348 apt-pkg/pkgcachegen.cc:1505 +#: apt-pkg/pkgcachegen.cc:1285 apt-pkg/pkgcachegen.cc:1389 +#: apt-pkg/pkgcachegen.cc:1395 apt-pkg/pkgcachegen.cc:1552 msgid "Reading package lists" msgstr "Lleendo llista de paquetes" -#: apt-pkg/pkgcachegen.cc:1255 +#: apt-pkg/pkgcachegen.cc:1302 msgid "Collecting File Provides" msgstr "Recoyendo ficheros qu'apurren" -#: apt-pkg/pkgcachegen.cc:1447 apt-pkg/pkgcachegen.cc:1454 +#: apt-pkg/pkgcachegen.cc:1494 apt-pkg/pkgcachegen.cc:1501 msgid "IO Error saving source cache" msgstr "Fallu de E/S al grabar caché d'oríxenes" @@ -3200,22 +3200,22 @@ 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/indexcopy.cc:236 apt-pkg/indexcopy.cc:766 +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:764 #, c-format msgid "Wrote %i records.\n" msgstr "%i rexistros escritos.\n" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:768 +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:766 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "%i rexistros escritos con %i ficheros de menos.\n" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:771 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:769 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "%i rexistros escritos con %i ficheros mal empareyaos\n" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:774 +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:772 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" diff --git a/po/bg.po b/po/bg.po index 7378aae74..dd59498e1 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 \n" -"POT-Creation-Date: 2013-04-03 14:20+0200\n" +"POT-Creation-Date: 2013-04-08 15:40+0200\n" "PO-Revision-Date: 2012-06-25 17:23+0300\n" "Last-Translator: Damyan Ivanov \n" "Language-Team: Bulgarian \n" @@ -159,7 +159,7 @@ msgstr " Таблица с версиите:" #: cmdline/apt-cache.cc:1683 cmdline/apt-cdrom.cc:198 cmdline/apt-config.cc:81 #: cmdline/apt-get.cc:3363 cmdline/apt-mark.cc:375 -#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:590 +#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:591 #: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147 #, c-format msgid "%s %s for %s compiled on %s %s\n" @@ -1627,7 +1627,7 @@ msgstr "Вътрешна грешка" #. Only warn if there are no sources.list.d. #. Only warn if there is no sources.list file. -#: methods/mirror.cc:95 apt-inst/extract.cc:465 +#: methods/mirror.cc:95 apt-inst/extract.cc:464 #: apt-pkg/contrib/cdromutl.cc:183 apt-pkg/contrib/fileutl.cc:400 #: apt-pkg/contrib/fileutl.cc:513 apt-pkg/sourcelist.cc:208 #: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:108 @@ -1756,7 +1756,7 @@ msgstr "" " -o=? Настройване на произволна конфигурационна опция, т.е. -o dir::cache=/" "tmp\n" -#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1339 +#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1386 #, c-format msgid "Unable to write to %s" msgstr "Неуспех при записа на %s" @@ -1765,31 +1765,31 @@ msgstr "Неуспех при записа на %s" msgid "Cannot get debconf version. Is debconf installed?" msgstr "Не може да се извлече версията на debconf. Debconf инсталиран ли е?" -#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:348 +#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:349 msgid "Package extension list is too long" msgstr "Списъкът с разширения на пакети и твърде дълъг" #: ftparchive/apt-ftparchive.cc:173 ftparchive/apt-ftparchive.cc:190 -#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:263 -#: ftparchive/apt-ftparchive.cc:277 ftparchive/apt-ftparchive.cc:299 +#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:264 +#: ftparchive/apt-ftparchive.cc:278 ftparchive/apt-ftparchive.cc:300 #, c-format msgid "Error processing directory %s" msgstr "Грешка при обработката на директория %s" -#: ftparchive/apt-ftparchive.cc:261 +#: ftparchive/apt-ftparchive.cc:262 msgid "Source extension list is too long" msgstr "Списъкът с разширения на източници е твърде дълъг" -#: ftparchive/apt-ftparchive.cc:378 +#: ftparchive/apt-ftparchive.cc:379 msgid "Error writing header to contents file" msgstr "Грешка при запазването на заглавната част във файла със съдържание" -#: ftparchive/apt-ftparchive.cc:408 +#: ftparchive/apt-ftparchive.cc:409 #, c-format msgid "Error processing contents %s" msgstr "Грешка при обработката на съдържание %s" -#: ftparchive/apt-ftparchive.cc:596 +#: ftparchive/apt-ftparchive.cc:597 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -1874,11 +1874,11 @@ msgstr "" " -c=? Четене на този конфигурационен файл.\n" " -o=? Настройване на произволна конфигурационна опция" -#: ftparchive/apt-ftparchive.cc:802 +#: ftparchive/apt-ftparchive.cc:803 msgid "No selections matched" msgstr "Няма съвпадения на избора" -#: ftparchive/apt-ftparchive.cc:880 +#: ftparchive/apt-ftparchive.cc:881 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "Липсват някои файлове от групата с файлови пакети „%s“" @@ -1906,8 +1906,8 @@ msgstr "" msgid "Unable to open DB file %s: %s" msgstr "Неуспех при отварянето на файл %s от БД: %s" -#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:181 apt-inst/extract.cc:193 -#: apt-inst/extract.cc:210 +#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:179 apt-inst/extract.cc:192 +#: apt-inst/extract.cc:209 #, c-format msgid "Failed to stat %s" msgstr "Грешка при получаването на атрибути за %s" @@ -1985,22 +1985,22 @@ msgstr "Превишен лимит на DeLink от %sB.\n" msgid "Archive had no package field" msgstr "Архивът няма поле „package“" -#: ftparchive/writer.cc:411 ftparchive/writer.cc:698 +#: ftparchive/writer.cc:411 ftparchive/writer.cc:701 #, c-format msgid " %s has no override entry\n" msgstr " %s няма запис „override“\n" -#: ftparchive/writer.cc:479 ftparchive/writer.cc:814 +#: ftparchive/writer.cc:479 ftparchive/writer.cc:845 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " поддържащия пакета %s е %s, а не %s\n" -#: ftparchive/writer.cc:708 +#: ftparchive/writer.cc:711 #, c-format msgid " %s has no source override entry\n" msgstr " %s няма запис „source override“\n" -#: ftparchive/writer.cc:712 +#: ftparchive/writer.cc:715 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s няма също и запис „binary override“\n" @@ -2074,7 +2074,7 @@ msgstr "Неуспех при четене докато се изчислява msgid "Problem unlinking %s" msgstr "Неуспех при премахването на връзка на %s" -#: ftparchive/multicompress.cc:373 apt-inst/extract.cc:188 +#: ftparchive/multicompress.cc:373 apt-inst/extract.cc:187 #, c-format msgid "Failed to rename %s to %s" msgstr "Неуспех при преименуването на %s на %s" @@ -2219,54 +2219,54 @@ msgstr "Неуспех при запис на файл %s" msgid "Failed to close file %s" msgstr "Неуспех при затварянето на файл %s" -#: apt-inst/extract.cc:96 apt-inst/extract.cc:167 +#: apt-inst/extract.cc:94 apt-inst/extract.cc:165 #, c-format msgid "The path %s is too long" msgstr "Пътят %s е твърде дълъг" -#: apt-inst/extract.cc:127 +#: apt-inst/extract.cc:125 #, c-format msgid "Unpacking %s more than once" msgstr "Разпакетиране на %s повече от веднъж" -#: apt-inst/extract.cc:137 +#: apt-inst/extract.cc:135 #, c-format msgid "The directory %s is diverted" msgstr "Директорията %s е отклонена" -#: apt-inst/extract.cc:147 +#: apt-inst/extract.cc:145 #, c-format msgid "The package is trying to write to the diversion target %s/%s" msgstr "Пакетът се опитва да пише в целта за отклонение %s/%s" -#: apt-inst/extract.cc:157 apt-inst/extract.cc:300 +#: apt-inst/extract.cc:155 apt-inst/extract.cc:299 msgid "The diversion path is too long" msgstr "Пътят за отклонение е твърде дълъг" -#: apt-inst/extract.cc:243 +#: apt-inst/extract.cc:242 #, c-format msgid "The directory %s is being replaced by a non-directory" msgstr "Директорията %s се заменя с не-директория" -#: apt-inst/extract.cc:283 +#: apt-inst/extract.cc:282 msgid "Failed to locate node in its hash bucket" msgstr "Неуспех при намирането на възел в неговия хеш" -#: apt-inst/extract.cc:287 +#: apt-inst/extract.cc:286 msgid "The path is too long" msgstr "Пътят е твърде дълъг" -#: apt-inst/extract.cc:415 +#: apt-inst/extract.cc:414 #, c-format msgid "Overwrite package match with no version for %s" msgstr "Файловете се заменят със съдържанието на пакета %s без версия" -#: apt-inst/extract.cc:432 +#: apt-inst/extract.cc:431 #, c-format msgid "File %s/%s overwrites the one in the package %s" msgstr "Файл %s/%s заменя този в пакет %s" -#: apt-inst/extract.cc:492 +#: apt-inst/extract.cc:491 #, c-format msgid "Unable to stat %s" msgstr "Неуспех при получаването на атрибути за %s" @@ -2657,59 +2657,59 @@ msgstr "Тази версия на APT не поддържа система за msgid "The package cache was built for a different architecture" msgstr "Кешът на пакети е бил направен за различна архитектура" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "Depends" msgstr "Зависи от" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "PreDepends" msgstr "Предварително зависи от" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "Suggests" msgstr "Предлага се" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Recommends" msgstr "Препоръчва се" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Conflicts" msgstr "В конфликт с" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Replaces" msgstr "Заменя" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Obsoletes" msgstr "Изважда от употреба" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Breaks" msgstr "Чупи" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Enhances" msgstr "Подобрява" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "important" msgstr "важен" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "required" msgstr "изискван" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "standard" msgstr "стандартен" -#: apt-pkg/pkgcache.cc:319 +#: apt-pkg/pkgcache.cc:328 msgid "optional" msgstr "незадължителен" -#: apt-pkg/pkgcache.cc:319 +#: apt-pkg/pkgcache.cc:328 msgid "extra" msgstr "допълнителен" @@ -2816,12 +2816,12 @@ msgstr "Отваряне на %s" msgid "Line %u too long in source list %s." msgstr "Ред %u в списъка с източници %s е твърде дълъг." -#: apt-pkg/sourcelist.cc:285 +#: apt-pkg/sourcelist.cc:289 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "Лошо форматиран ред %u в списъка с източници %s (тип)" -#: apt-pkg/sourcelist.cc:289 +#: apt-pkg/sourcelist.cc:293 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "Типът „%s“ на ред %u в списъка с източници %s е неизвестен." @@ -2991,14 +2991,14 @@ msgstr "Кешът има несъвместима система за верс #. TRANSLATOR: The first placeholder is a package name, #. the other two should be copied verbatim as they include debug info #: apt-pkg/pkgcachegen.cc:218 apt-pkg/pkgcachegen.cc:228 -#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:325 -#: apt-pkg/pkgcachegen.cc:333 apt-pkg/pkgcachegen.cc:375 -#: apt-pkg/pkgcachegen.cc:379 apt-pkg/pkgcachegen.cc:396 -#: apt-pkg/pkgcachegen.cc:406 apt-pkg/pkgcachegen.cc:410 -#: apt-pkg/pkgcachegen.cc:414 apt-pkg/pkgcachegen.cc:435 -#: apt-pkg/pkgcachegen.cc:477 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:525 apt-pkg/pkgcachegen.cc:556 -#: apt-pkg/pkgcachegen.cc:570 +#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:319 +#: apt-pkg/pkgcachegen.cc:332 apt-pkg/pkgcachegen.cc:374 +#: apt-pkg/pkgcachegen.cc:378 apt-pkg/pkgcachegen.cc:395 +#: apt-pkg/pkgcachegen.cc:403 apt-pkg/pkgcachegen.cc:407 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:432 +#: apt-pkg/pkgcachegen.cc:471 apt-pkg/pkgcachegen.cc:509 +#: apt-pkg/pkgcachegen.cc:516 apt-pkg/pkgcachegen.cc:547 +#: apt-pkg/pkgcachegen.cc:561 #, c-format msgid "Error occurred while processing %s (%s%d)" msgstr "Възникна грешка при обработката на %s (%s%d)" @@ -3023,27 +3023,27 @@ msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "" "Еха, надхвърлихте броя зависимости, на който е способна тази версия на APT." -#: apt-pkg/pkgcachegen.cc:577 +#: apt-pkg/pkgcachegen.cc:568 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "Пакетът %s %s не беше открит при обработката на файла със зависимости" -#: apt-pkg/pkgcachegen.cc:1150 +#: apt-pkg/pkgcachegen.cc:1197 #, c-format msgid "Couldn't stat source package list %s" msgstr "" "Неуспех при получаването на атрибути на списъка с пакети с изходен код %s" -#: apt-pkg/pkgcachegen.cc:1238 apt-pkg/pkgcachegen.cc:1342 -#: apt-pkg/pkgcachegen.cc:1348 apt-pkg/pkgcachegen.cc:1505 +#: apt-pkg/pkgcachegen.cc:1285 apt-pkg/pkgcachegen.cc:1389 +#: apt-pkg/pkgcachegen.cc:1395 apt-pkg/pkgcachegen.cc:1552 msgid "Reading package lists" msgstr "Четене на списъците с пакети" -#: apt-pkg/pkgcachegen.cc:1255 +#: apt-pkg/pkgcachegen.cc:1302 msgid "Collecting File Provides" msgstr "Събиране на информация за „Осигурява“" -#: apt-pkg/pkgcachegen.cc:1447 apt-pkg/pkgcachegen.cc:1454 +#: apt-pkg/pkgcachegen.cc:1494 apt-pkg/pkgcachegen.cc:1501 msgid "IO Error saving source cache" msgstr "Входно/изходна грешка при запазването на кеша на пакети с изходен код" @@ -3257,22 +3257,22 @@ msgstr "Запазване на новия списък с източници\n" msgid "Source list entries for this disc are:\n" msgstr "Записите в списъка с източници за този диск са:\n" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:766 +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:764 #, c-format msgid "Wrote %i records.\n" msgstr "Записани са %i записа.\n" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:768 +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:766 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "Записани са %i записа с %i липсващи файла.\n" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:771 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:769 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "Записани са %i записа с %i несъответстващи файла\n" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:774 +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:772 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "Записани са %i записа с %i липсващи и %i несъответстващи файла\n" diff --git a/po/bs.po b/po/bs.po index 4b4cb478d..126df2b43 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 \n" -"POT-Creation-Date: 2013-04-03 14:20+0200\n" +"POT-Creation-Date: 2013-04-08 15:40+0200\n" "PO-Revision-Date: 2004-05-06 15:25+0100\n" "Last-Translator: Safir Šećerović \n" "Language-Team: Bosnian \n" @@ -155,7 +155,7 @@ msgstr "" #: cmdline/apt-cache.cc:1683 cmdline/apt-cdrom.cc:198 cmdline/apt-config.cc:81 #: cmdline/apt-get.cc:3363 cmdline/apt-mark.cc:375 -#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:590 +#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:591 #: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147 #, c-format msgid "%s %s for %s compiled on %s %s\n" @@ -1458,7 +1458,7 @@ msgstr "Unutrašnja greška" #. Only warn if there are no sources.list.d. #. Only warn if there is no sources.list file. -#: methods/mirror.cc:95 apt-inst/extract.cc:465 +#: methods/mirror.cc:95 apt-inst/extract.cc:464 #: apt-pkg/contrib/cdromutl.cc:183 apt-pkg/contrib/fileutl.cc:400 #: apt-pkg/contrib/fileutl.cc:513 apt-pkg/sourcelist.cc:208 #: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:108 @@ -1569,7 +1569,7 @@ msgid "" " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" msgstr "" -#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1339 +#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1386 #, c-format msgid "Unable to write to %s" msgstr "Ne mogu zapisati na %s" @@ -1579,31 +1579,31 @@ msgid "Cannot get debconf version. Is debconf installed?" msgstr "" "Ne mogu odrediti verziju debconf programa. Da li je debconf instaliran?" -#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:348 +#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:349 msgid "Package extension list is too long" msgstr "" #: ftparchive/apt-ftparchive.cc:173 ftparchive/apt-ftparchive.cc:190 -#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:263 -#: ftparchive/apt-ftparchive.cc:277 ftparchive/apt-ftparchive.cc:299 +#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:264 +#: ftparchive/apt-ftparchive.cc:278 ftparchive/apt-ftparchive.cc:300 #, c-format msgid "Error processing directory %s" msgstr "" -#: ftparchive/apt-ftparchive.cc:261 +#: ftparchive/apt-ftparchive.cc:262 msgid "Source extension list is too long" msgstr "" -#: ftparchive/apt-ftparchive.cc:378 +#: ftparchive/apt-ftparchive.cc:379 msgid "Error writing header to contents file" msgstr "" -#: ftparchive/apt-ftparchive.cc:408 +#: ftparchive/apt-ftparchive.cc:409 #, c-format msgid "Error processing contents %s" msgstr "" -#: ftparchive/apt-ftparchive.cc:596 +#: ftparchive/apt-ftparchive.cc:597 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -1645,11 +1645,11 @@ msgid "" " -o=? Set an arbitrary configuration option" msgstr "" -#: ftparchive/apt-ftparchive.cc:802 +#: ftparchive/apt-ftparchive.cc:803 msgid "No selections matched" msgstr "" -#: ftparchive/apt-ftparchive.cc:880 +#: ftparchive/apt-ftparchive.cc:881 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "" @@ -1675,8 +1675,8 @@ msgstr "" msgid "Unable to open DB file %s: %s" msgstr "Ne mogu otvoriti DB datoteku %s" -#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:181 apt-inst/extract.cc:193 -#: apt-inst/extract.cc:210 +#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:179 apt-inst/extract.cc:192 +#: apt-inst/extract.cc:209 #, c-format msgid "Failed to stat %s" msgstr "" @@ -1754,22 +1754,22 @@ msgstr "" msgid "Archive had no package field" msgstr "" -#: ftparchive/writer.cc:411 ftparchive/writer.cc:698 +#: ftparchive/writer.cc:411 ftparchive/writer.cc:701 #, c-format msgid " %s has no override entry\n" msgstr "" -#: ftparchive/writer.cc:479 ftparchive/writer.cc:814 +#: ftparchive/writer.cc:479 ftparchive/writer.cc:845 #, c-format msgid " %s maintainer is %s not %s\n" msgstr "" -#: ftparchive/writer.cc:708 +#: ftparchive/writer.cc:711 #, c-format msgid " %s has no source override entry\n" msgstr "" -#: ftparchive/writer.cc:712 +#: ftparchive/writer.cc:715 #, c-format msgid " %s has no binary override entry either\n" msgstr "" @@ -1843,7 +1843,7 @@ msgstr "" msgid "Problem unlinking %s" msgstr "" -#: ftparchive/multicompress.cc:373 apt-inst/extract.cc:188 +#: ftparchive/multicompress.cc:373 apt-inst/extract.cc:187 #, c-format msgid "Failed to rename %s to %s" msgstr "" @@ -1967,54 +1967,54 @@ msgstr "Ne mogu ukloniti %s" msgid "Failed to close file %s" msgstr "" -#: apt-inst/extract.cc:96 apt-inst/extract.cc:167 +#: apt-inst/extract.cc:94 apt-inst/extract.cc:165 #, c-format msgid "The path %s is too long" msgstr "" -#: apt-inst/extract.cc:127 +#: apt-inst/extract.cc:125 #, c-format msgid "Unpacking %s more than once" msgstr "" -#: apt-inst/extract.cc:137 +#: apt-inst/extract.cc:135 #, c-format msgid "The directory %s is diverted" msgstr "" -#: apt-inst/extract.cc:147 +#: apt-inst/extract.cc:145 #, c-format msgid "The package is trying to write to the diversion target %s/%s" msgstr "" -#: apt-inst/extract.cc:157 apt-inst/extract.cc:300 +#: apt-inst/extract.cc:155 apt-inst/extract.cc:299 msgid "The diversion path is too long" msgstr "" -#: apt-inst/extract.cc:243 +#: apt-inst/extract.cc:242 #, c-format msgid "The directory %s is being replaced by a non-directory" msgstr "" -#: apt-inst/extract.cc:283 +#: apt-inst/extract.cc:282 msgid "Failed to locate node in its hash bucket" msgstr "" -#: apt-inst/extract.cc:287 +#: apt-inst/extract.cc:286 msgid "The path is too long" msgstr "Putanja je preduga" -#: apt-inst/extract.cc:415 +#: apt-inst/extract.cc:414 #, c-format msgid "Overwrite package match with no version for %s" msgstr "" -#: apt-inst/extract.cc:432 +#: apt-inst/extract.cc:431 #, c-format msgid "File %s/%s overwrites the one in the package %s" msgstr "" -#: apt-inst/extract.cc:492 +#: apt-inst/extract.cc:491 #, c-format msgid "Unable to stat %s" msgstr "" @@ -2395,60 +2395,60 @@ msgstr "" msgid "The package cache was built for a different architecture" msgstr "" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "Depends" msgstr "Zavisi" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "PreDepends" msgstr "Unaprijed zavisi" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "Suggests" msgstr "Predlaže" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Recommends" msgstr "Preporučuje" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 #, fuzzy msgid "Conflicts" msgstr "Sukobljava se sa" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Replaces" msgstr "Zamjenjuje" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Obsoletes" msgstr "Zastarijeva" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Breaks" msgstr "" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Enhances" msgstr "" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "important" msgstr "važno" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "required" msgstr "zahtijevano" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "standard" msgstr "standardno" -#: apt-pkg/pkgcache.cc:319 +#: apt-pkg/pkgcache.cc:328 msgid "optional" msgstr "opcionalno" -#: apt-pkg/pkgcache.cc:319 +#: apt-pkg/pkgcache.cc:328 msgid "extra" msgstr "extra" @@ -2549,12 +2549,12 @@ msgstr "Otvaram %s" msgid "Line %u too long in source list %s." msgstr "" -#: apt-pkg/sourcelist.cc:285 +#: apt-pkg/sourcelist.cc:289 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "" -#: apt-pkg/sourcelist.cc:289 +#: apt-pkg/sourcelist.cc:293 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "" @@ -2706,14 +2706,14 @@ msgstr "" #. TRANSLATOR: The first placeholder is a package name, #. the other two should be copied verbatim as they include debug info #: apt-pkg/pkgcachegen.cc:218 apt-pkg/pkgcachegen.cc:228 -#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:325 -#: apt-pkg/pkgcachegen.cc:333 apt-pkg/pkgcachegen.cc:375 -#: apt-pkg/pkgcachegen.cc:379 apt-pkg/pkgcachegen.cc:396 -#: apt-pkg/pkgcachegen.cc:406 apt-pkg/pkgcachegen.cc:410 -#: apt-pkg/pkgcachegen.cc:414 apt-pkg/pkgcachegen.cc:435 -#: apt-pkg/pkgcachegen.cc:477 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:525 apt-pkg/pkgcachegen.cc:556 -#: apt-pkg/pkgcachegen.cc:570 +#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:319 +#: apt-pkg/pkgcachegen.cc:332 apt-pkg/pkgcachegen.cc:374 +#: apt-pkg/pkgcachegen.cc:378 apt-pkg/pkgcachegen.cc:395 +#: apt-pkg/pkgcachegen.cc:403 apt-pkg/pkgcachegen.cc:407 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:432 +#: apt-pkg/pkgcachegen.cc:471 apt-pkg/pkgcachegen.cc:509 +#: apt-pkg/pkgcachegen.cc:516 apt-pkg/pkgcachegen.cc:547 +#: apt-pkg/pkgcachegen.cc:561 #, c-format msgid "Error occurred while processing %s (%s%d)" msgstr "" @@ -2734,26 +2734,26 @@ msgstr "" msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "" -#: apt-pkg/pkgcachegen.cc:577 +#: apt-pkg/pkgcachegen.cc:568 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "" -#: apt-pkg/pkgcachegen.cc:1150 +#: apt-pkg/pkgcachegen.cc:1197 #, c-format msgid "Couldn't stat source package list %s" msgstr "" -#: apt-pkg/pkgcachegen.cc:1238 apt-pkg/pkgcachegen.cc:1342 -#: apt-pkg/pkgcachegen.cc:1348 apt-pkg/pkgcachegen.cc:1505 +#: apt-pkg/pkgcachegen.cc:1285 apt-pkg/pkgcachegen.cc:1389 +#: apt-pkg/pkgcachegen.cc:1395 apt-pkg/pkgcachegen.cc:1552 msgid "Reading package lists" msgstr "Čitam spiskove paketa" -#: apt-pkg/pkgcachegen.cc:1255 +#: apt-pkg/pkgcachegen.cc:1302 msgid "Collecting File Provides" msgstr "" -#: apt-pkg/pkgcachegen.cc:1447 apt-pkg/pkgcachegen.cc:1454 +#: apt-pkg/pkgcachegen.cc:1494 apt-pkg/pkgcachegen.cc:1501 msgid "IO Error saving source cache" msgstr "" @@ -2951,22 +2951,22 @@ msgstr "" msgid "Source list entries for this disc are:\n" msgstr "" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:766 +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:764 #, c-format msgid "Wrote %i records.\n" msgstr "" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:768 +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:766 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:771 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:769 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:774 +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:772 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" diff --git a/po/ca.po b/po/ca.po index ddbaf731a..df78aa61f 100644 --- a/po/ca.po +++ b/po/ca.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.9.7.6\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-04-03 14:20+0200\n" +"POT-Creation-Date: 2013-04-08 15:40+0200\n" "PO-Revision-Date: 2012-10-19 13:30+0200\n" "Last-Translator: Jordi Mallach \n" "Language-Team: Catalan \n" @@ -157,7 +157,7 @@ msgstr " Taula de versió:" #: cmdline/apt-cache.cc:1683 cmdline/apt-cdrom.cc:198 cmdline/apt-config.cc:81 #: cmdline/apt-get.cc:3363 cmdline/apt-mark.cc:375 -#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:590 +#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:591 #: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147 #, c-format msgid "%s %s for %s compiled on %s %s\n" @@ -1616,7 +1616,7 @@ msgstr "Error intern" #. Only warn if there are no sources.list.d. #. Only warn if there is no sources.list file. -#: methods/mirror.cc:95 apt-inst/extract.cc:465 +#: methods/mirror.cc:95 apt-inst/extract.cc:464 #: apt-pkg/contrib/cdromutl.cc:183 apt-pkg/contrib/fileutl.cc:400 #: apt-pkg/contrib/fileutl.cc:513 apt-pkg/sourcelist.cc:208 #: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:108 @@ -1746,7 +1746,7 @@ msgstr "" " -c=? Llegeix aquest fitxer de configuració\n" " -o=? Estableix una opció de conf arbitrària, p.e. -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1339 +#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1386 #, c-format msgid "Unable to write to %s" msgstr "No es pot escriure en %s" @@ -1755,31 +1755,31 @@ msgstr "No es pot escriure en %s" msgid "Cannot get debconf version. Is debconf installed?" msgstr "No es pot determinar la versió de debconf. Està instaŀlat debconf?" -#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:348 +#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:349 msgid "Package extension list is too long" msgstr "La llista de les extensions dels paquets és massa llarga" #: ftparchive/apt-ftparchive.cc:173 ftparchive/apt-ftparchive.cc:190 -#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:263 -#: ftparchive/apt-ftparchive.cc:277 ftparchive/apt-ftparchive.cc:299 +#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:264 +#: ftparchive/apt-ftparchive.cc:278 ftparchive/apt-ftparchive.cc:300 #, c-format msgid "Error processing directory %s" msgstr "S'ha produït un error en processar el directori %s" -#: ftparchive/apt-ftparchive.cc:261 +#: ftparchive/apt-ftparchive.cc:262 msgid "Source extension list is too long" msgstr "La llista d'extensions de les fonts és massa llarga" -#: ftparchive/apt-ftparchive.cc:378 +#: ftparchive/apt-ftparchive.cc:379 msgid "Error writing header to contents file" msgstr "S'ha produït un error en escriure la capçalera al fitxer de continguts" -#: ftparchive/apt-ftparchive.cc:408 +#: ftparchive/apt-ftparchive.cc:409 #, c-format msgid "Error processing contents %s" msgstr "S'ha produït un error en processar el fitxer de continguts %s" -#: ftparchive/apt-ftparchive.cc:596 +#: ftparchive/apt-ftparchive.cc:597 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -1860,11 +1860,11 @@ msgstr "" " -c=? Llegeix aquest fitxer de configuració\n" " -o=? Estableix una opció de configuració arbitrària" -#: ftparchive/apt-ftparchive.cc:802 +#: ftparchive/apt-ftparchive.cc:803 msgid "No selections matched" msgstr "No s'ha trobat cap selecció" -#: ftparchive/apt-ftparchive.cc:880 +#: ftparchive/apt-ftparchive.cc:881 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "No es troben alguns fitxers dins del grup de fitxers del paquet `%s'" @@ -1892,8 +1892,8 @@ msgstr "" msgid "Unable to open DB file %s: %s" msgstr "No es pot obrir el fitxer de DB %s: %s" -#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:181 apt-inst/extract.cc:193 -#: apt-inst/extract.cc:210 +#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:179 apt-inst/extract.cc:192 +#: apt-inst/extract.cc:209 #, c-format msgid "Failed to stat %s" msgstr "No es pot determinar l'estat de %s" @@ -1971,22 +1971,22 @@ msgstr " DeLink s'ha arribat al límit de %sB.\n" msgid "Archive had no package field" msgstr "Arxiu sense el camp paquet" -#: ftparchive/writer.cc:411 ftparchive/writer.cc:698 +#: ftparchive/writer.cc:411 ftparchive/writer.cc:701 #, c-format msgid " %s has no override entry\n" msgstr " %s no té una entrada dominant\n" -#: ftparchive/writer.cc:479 ftparchive/writer.cc:814 +#: ftparchive/writer.cc:479 ftparchive/writer.cc:845 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " el mantenidor de %s és %s, no %s\n" -#: ftparchive/writer.cc:708 +#: ftparchive/writer.cc:711 #, c-format msgid " %s has no source override entry\n" msgstr " %s no té una entrada dominant de font\n" -#: ftparchive/writer.cc:712 +#: ftparchive/writer.cc:715 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s no té una entrada dominant de binari\n" @@ -2060,7 +2060,7 @@ msgstr "No s'ha pogut llegir mentre es calculava la suma MD5" msgid "Problem unlinking %s" msgstr "S'ha trobat un problema treient l'enllaç %s" -#: ftparchive/multicompress.cc:373 apt-inst/extract.cc:188 +#: ftparchive/multicompress.cc:373 apt-inst/extract.cc:187 #, c-format msgid "Failed to rename %s to %s" msgstr "No s'ha pogut canviar el nom de %s a %s" @@ -2205,54 +2205,54 @@ msgstr "No s'ha pogut escriure el fitxer %s" msgid "Failed to close file %s" msgstr "Ha fallat el tancament del fitxer %s" -#: apt-inst/extract.cc:96 apt-inst/extract.cc:167 +#: apt-inst/extract.cc:94 apt-inst/extract.cc:165 #, c-format msgid "The path %s is too long" msgstr "La ruta %s és massa llarga" -#: apt-inst/extract.cc:127 +#: apt-inst/extract.cc:125 #, c-format msgid "Unpacking %s more than once" msgstr "S'està desempaquetant %s més d'una vegada" -#: apt-inst/extract.cc:137 +#: apt-inst/extract.cc:135 #, c-format msgid "The directory %s is diverted" msgstr "El directori %s està desviat" -#: apt-inst/extract.cc:147 +#: apt-inst/extract.cc:145 #, c-format msgid "The package is trying to write to the diversion target %s/%s" msgstr "El paquet està intentant escriure en l'objectiu desviat %s/%s" -#: apt-inst/extract.cc:157 apt-inst/extract.cc:300 +#: apt-inst/extract.cc:155 apt-inst/extract.cc:299 msgid "The diversion path is too long" msgstr "La ruta de desviació és massa llarga" -#: apt-inst/extract.cc:243 +#: apt-inst/extract.cc:242 #, c-format msgid "The directory %s is being replaced by a non-directory" msgstr "El directori %s està sent reemplaçat per un no-directori" -#: apt-inst/extract.cc:283 +#: apt-inst/extract.cc:282 msgid "Failed to locate node in its hash bucket" msgstr "No s'ha trobat el node dins de la taula" -#: apt-inst/extract.cc:287 +#: apt-inst/extract.cc:286 msgid "The path is too long" msgstr "La ruta és massa llarga" -#: apt-inst/extract.cc:415 +#: apt-inst/extract.cc:414 #, c-format msgid "Overwrite package match with no version for %s" msgstr "S'està sobreescrivint el corresponent paquet sense versió per a %s" -#: apt-inst/extract.cc:432 +#: apt-inst/extract.cc:431 #, c-format msgid "File %s/%s overwrites the one in the package %s" msgstr "El fitxer %s/%s sobreescriu al que està en el paquet %s" -#: apt-inst/extract.cc:492 +#: apt-inst/extract.cc:491 #, c-format msgid "Unable to stat %s" msgstr "No es pot veure l'estat de %s" @@ -2643,59 +2643,59 @@ msgstr "Aquest APT no suporta el sistema de versions «%s»" msgid "The package cache was built for a different architecture" msgstr "La memòria cau de paquets fou creada per a una arquitectura diferent" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "Depends" msgstr "Depèn" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "PreDepends" msgstr "Predepèn" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "Suggests" msgstr "Suggereix" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Recommends" msgstr "Recomana" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Conflicts" msgstr "Entra en conflicte" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Replaces" msgstr "Reemplaça" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Obsoletes" msgstr "Fa obsolet" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Breaks" msgstr "Trenca" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Enhances" msgstr "Millora" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "important" msgstr "important" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "required" msgstr "requerit" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "standard" msgstr "estàndard" -#: apt-pkg/pkgcache.cc:319 +#: apt-pkg/pkgcache.cc:328 msgid "optional" msgstr "opcional" -#: apt-pkg/pkgcache.cc:319 +#: apt-pkg/pkgcache.cc:328 msgid "extra" msgstr "extra" @@ -2798,12 +2798,12 @@ msgstr "S'està obrint %s" msgid "Line %u too long in source list %s." msgstr "La línia %u és massa llarga en la llista de fonts %s." -#: apt-pkg/sourcelist.cc:285 +#: apt-pkg/sourcelist.cc:289 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "La línia %u és malformada en la llista de fonts %s (tipus)" -#: apt-pkg/sourcelist.cc:289 +#: apt-pkg/sourcelist.cc:293 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "El tipus «%s» no és conegut en la línia %u de la llista de fonts %s" @@ -2972,14 +2972,14 @@ msgstr "La memòria cau té un sistema de versions incompatible" #. TRANSLATOR: The first placeholder is a package name, #. the other two should be copied verbatim as they include debug info #: apt-pkg/pkgcachegen.cc:218 apt-pkg/pkgcachegen.cc:228 -#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:325 -#: apt-pkg/pkgcachegen.cc:333 apt-pkg/pkgcachegen.cc:375 -#: apt-pkg/pkgcachegen.cc:379 apt-pkg/pkgcachegen.cc:396 -#: apt-pkg/pkgcachegen.cc:406 apt-pkg/pkgcachegen.cc:410 -#: apt-pkg/pkgcachegen.cc:414 apt-pkg/pkgcachegen.cc:435 -#: apt-pkg/pkgcachegen.cc:477 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:525 apt-pkg/pkgcachegen.cc:556 -#: apt-pkg/pkgcachegen.cc:570 +#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:319 +#: apt-pkg/pkgcachegen.cc:332 apt-pkg/pkgcachegen.cc:374 +#: apt-pkg/pkgcachegen.cc:378 apt-pkg/pkgcachegen.cc:395 +#: apt-pkg/pkgcachegen.cc:403 apt-pkg/pkgcachegen.cc:407 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:432 +#: apt-pkg/pkgcachegen.cc:471 apt-pkg/pkgcachegen.cc:509 +#: apt-pkg/pkgcachegen.cc:516 apt-pkg/pkgcachegen.cc:547 +#: apt-pkg/pkgcachegen.cc:561 #, c-format msgid "Error occurred while processing %s (%s%d)" msgstr "S'ha produït un error en processar %s (%s%d)" @@ -3006,27 +3006,27 @@ msgstr "" "Uau, heu excedit el nombre de dependències que aquest APT és capaç de " "gestionar." -#: apt-pkg/pkgcachegen.cc:577 +#: apt-pkg/pkgcachegen.cc:568 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "" "No s'ha trobat el paquet %s %s en processar les dependències del fitxer" -#: apt-pkg/pkgcachegen.cc:1150 +#: apt-pkg/pkgcachegen.cc:1197 #, c-format msgid "Couldn't stat source package list %s" msgstr "No s'ha pogut llegir la llista de paquets font %s" -#: apt-pkg/pkgcachegen.cc:1238 apt-pkg/pkgcachegen.cc:1342 -#: apt-pkg/pkgcachegen.cc:1348 apt-pkg/pkgcachegen.cc:1505 +#: apt-pkg/pkgcachegen.cc:1285 apt-pkg/pkgcachegen.cc:1389 +#: apt-pkg/pkgcachegen.cc:1395 apt-pkg/pkgcachegen.cc:1552 msgid "Reading package lists" msgstr "S'està llegint la llista de paquets" -#: apt-pkg/pkgcachegen.cc:1255 +#: apt-pkg/pkgcachegen.cc:1302 msgid "Collecting File Provides" msgstr "S'estan recollint els fitxers que proveeixen" -#: apt-pkg/pkgcachegen.cc:1447 apt-pkg/pkgcachegen.cc:1454 +#: apt-pkg/pkgcachegen.cc:1494 apt-pkg/pkgcachegen.cc:1501 msgid "IO Error saving source cache" msgstr "Error d'E/S en desar la memòria cau de la font" @@ -3243,22 +3243,22 @@ 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/indexcopy.cc:236 apt-pkg/indexcopy.cc:766 +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:764 #, c-format msgid "Wrote %i records.\n" msgstr "S'han escrit %i registres.\n" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:768 +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:766 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "S'han escrit %i registres, on falten %i fitxers.\n" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:771 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:769 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "S'han escrit %i registres, on hi ha %i fitxers no coincidents\n" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:774 +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:772 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" diff --git a/po/cs.po b/po/cs.po index ffe773302..84753c438 100644 --- a/po/cs.po +++ b/po/cs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-04-03 14:20+0200\n" +"POT-Creation-Date: 2013-04-08 15:40+0200\n" "PO-Revision-Date: 2012-07-08 13:46+0200\n" "Last-Translator: Miroslav Kure \n" "Language-Team: Czech \n" @@ -154,7 +154,7 @@ msgstr " Tabulka verzí:" #: cmdline/apt-cache.cc:1683 cmdline/apt-cdrom.cc:198 cmdline/apt-config.cc:81 #: cmdline/apt-get.cc:3363 cmdline/apt-mark.cc:375 -#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:590 +#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:591 #: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147 #, c-format msgid "%s %s for %s compiled on %s %s\n" @@ -1603,7 +1603,7 @@ msgstr "Vnitřní chyba" #. Only warn if there are no sources.list.d. #. Only warn if there is no sources.list file. -#: methods/mirror.cc:95 apt-inst/extract.cc:465 +#: methods/mirror.cc:95 apt-inst/extract.cc:464 #: apt-pkg/contrib/cdromutl.cc:183 apt-pkg/contrib/fileutl.cc:400 #: apt-pkg/contrib/fileutl.cc:513 apt-pkg/sourcelist.cc:208 #: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:108 @@ -1727,7 +1727,7 @@ msgstr "" " -c=? Načte tento konfigurační soubor\n" " -o=? Nastaví libovolnou volbu, např. -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1339 +#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1386 #, c-format msgid "Unable to write to %s" msgstr "Nelze zapsat do %s" @@ -1736,31 +1736,31 @@ msgstr "Nelze zapsat do %s" msgid "Cannot get debconf version. Is debconf installed?" msgstr "Nelze určit verzi programu debconf. Je debconf nainstalován?" -#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:348 +#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:349 msgid "Package extension list is too long" msgstr "Seznam rozšíření balíku je příliš dlouhý" #: ftparchive/apt-ftparchive.cc:173 ftparchive/apt-ftparchive.cc:190 -#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:263 -#: ftparchive/apt-ftparchive.cc:277 ftparchive/apt-ftparchive.cc:299 +#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:264 +#: ftparchive/apt-ftparchive.cc:278 ftparchive/apt-ftparchive.cc:300 #, c-format msgid "Error processing directory %s" msgstr "Chyba zpracování adresáře %s" -#: ftparchive/apt-ftparchive.cc:261 +#: ftparchive/apt-ftparchive.cc:262 msgid "Source extension list is too long" msgstr "Seznam zdrojových rozšíření je příliš dlouhý" -#: ftparchive/apt-ftparchive.cc:378 +#: ftparchive/apt-ftparchive.cc:379 msgid "Error writing header to contents file" msgstr "Chyba při zapisování hlavičky do souboru" -#: ftparchive/apt-ftparchive.cc:408 +#: ftparchive/apt-ftparchive.cc:409 #, c-format msgid "Error processing contents %s" msgstr "Chyba při zpracovávání obsahu %s" -#: ftparchive/apt-ftparchive.cc:596 +#: ftparchive/apt-ftparchive.cc:597 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -1840,11 +1840,11 @@ msgstr "" " -c=? Načte tento konfigurační soubor\n" " -o=? Nastaví libovolnou volbu" -#: ftparchive/apt-ftparchive.cc:802 +#: ftparchive/apt-ftparchive.cc:803 msgid "No selections matched" msgstr "Žádný výběr nevyhověl" -#: ftparchive/apt-ftparchive.cc:880 +#: ftparchive/apt-ftparchive.cc:881 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "Některé soubory chybí v balíkovém souboru skupiny %s" @@ -1872,8 +1872,8 @@ msgstr "" msgid "Unable to open DB file %s: %s" msgstr "Nelze otevřít DB soubor %s: %s" -#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:181 apt-inst/extract.cc:193 -#: apt-inst/extract.cc:210 +#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:179 apt-inst/extract.cc:192 +#: apt-inst/extract.cc:209 #, c-format msgid "Failed to stat %s" msgstr "Nelze vyhodnotit %s" @@ -1951,22 +1951,22 @@ msgstr " Odlinkovací limit %sB dosažen.\n" msgid "Archive had no package field" msgstr "Archiv nemá pole Package" -#: ftparchive/writer.cc:411 ftparchive/writer.cc:698 +#: ftparchive/writer.cc:411 ftparchive/writer.cc:701 #, c-format msgid " %s has no override entry\n" msgstr " %s nemá žádnou položku pro override\n" -#: ftparchive/writer.cc:479 ftparchive/writer.cc:814 +#: ftparchive/writer.cc:479 ftparchive/writer.cc:845 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " správce %s je %s, ne %s\n" -#: ftparchive/writer.cc:708 +#: ftparchive/writer.cc:711 #, c-format msgid " %s has no source override entry\n" msgstr " %s nemá žádnou zdrojovou položku pro override\n" -#: ftparchive/writer.cc:712 +#: ftparchive/writer.cc:715 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s nemá ani žádnou binární položku pro override\n" @@ -2040,7 +2040,7 @@ msgstr "Chyba čtení při výpočtu MD5" msgid "Problem unlinking %s" msgstr "Problém s odlinkováním %s" -#: ftparchive/multicompress.cc:373 apt-inst/extract.cc:188 +#: ftparchive/multicompress.cc:373 apt-inst/extract.cc:187 #, c-format msgid "Failed to rename %s to %s" msgstr "Selhalo přejmenování %s na %s" @@ -2184,54 +2184,54 @@ msgstr "Selhal zápis souboru %s" msgid "Failed to close file %s" msgstr "Selhalo zavření souboru %s" -#: apt-inst/extract.cc:96 apt-inst/extract.cc:167 +#: apt-inst/extract.cc:94 apt-inst/extract.cc:165 #, c-format msgid "The path %s is too long" msgstr "Cesta %s je příliš dlouhá" -#: apt-inst/extract.cc:127 +#: apt-inst/extract.cc:125 #, c-format msgid "Unpacking %s more than once" msgstr "Rozbaluji %s vícekrát" -#: apt-inst/extract.cc:137 +#: apt-inst/extract.cc:135 #, c-format msgid "The directory %s is diverted" msgstr "Adresář %s je odkloněn" -#: apt-inst/extract.cc:147 +#: apt-inst/extract.cc:145 #, c-format msgid "The package is trying to write to the diversion target %s/%s" msgstr "Balík se pokouší zapisovat do diverzního cíle %s/%s" -#: apt-inst/extract.cc:157 apt-inst/extract.cc:300 +#: apt-inst/extract.cc:155 apt-inst/extract.cc:299 msgid "The diversion path is too long" msgstr "Diverzní cesta je příliš dlouhá" -#: apt-inst/extract.cc:243 +#: apt-inst/extract.cc:242 #, c-format msgid "The directory %s is being replaced by a non-directory" msgstr "Adresář %s bude nahrazen neadresářem" -#: apt-inst/extract.cc:283 +#: apt-inst/extract.cc:282 msgid "Failed to locate node in its hash bucket" msgstr "Nelze nalézt uzel v jeho hashovacím kbelíku" -#: apt-inst/extract.cc:287 +#: apt-inst/extract.cc:286 msgid "The path is too long" msgstr "Cesta je příliš dlouhá" -#: apt-inst/extract.cc:415 +#: apt-inst/extract.cc:414 #, c-format msgid "Overwrite package match with no version for %s" msgstr "Přepsat vyhovující balík bez udání verze pro %s" -#: apt-inst/extract.cc:432 +#: apt-inst/extract.cc:431 #, c-format msgid "File %s/%s overwrites the one in the package %s" msgstr "Soubor %s/%s přepisuje ten z balíku %s" -#: apt-inst/extract.cc:492 +#: apt-inst/extract.cc:491 #, c-format msgid "Unable to stat %s" msgstr "Nelze vyhodnotit %s" @@ -2616,59 +2616,59 @@ msgstr "Tato APT nepodporuje systém pro správu verzí „%s“" msgid "The package cache was built for a different architecture" msgstr "Cache balíků byla vytvořena pro jinou architekturu" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "Depends" msgstr "Závisí na" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "PreDepends" msgstr "Předzávisí na" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "Suggests" msgstr "Navrhuje" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Recommends" msgstr "Doporučuje" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Conflicts" msgstr "Koliduje s" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Replaces" msgstr "Nahrazuje" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Obsoletes" msgstr "Zastarává" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Breaks" msgstr "Porušuje" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Enhances" msgstr "Rozšiřuje" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "important" msgstr "důležitý" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "required" msgstr "vyžadovaný" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "standard" msgstr "standardní" -#: apt-pkg/pkgcache.cc:319 +#: apt-pkg/pkgcache.cc:328 msgid "optional" msgstr "volitelný" -#: apt-pkg/pkgcache.cc:319 +#: apt-pkg/pkgcache.cc:328 msgid "extra" msgstr "extra" @@ -2768,12 +2768,12 @@ msgstr "Otevírám %s" msgid "Line %u too long in source list %s." msgstr "Řádek %u v seznamu zdrojů %s je příliš dlouhý." -#: apt-pkg/sourcelist.cc:285 +#: apt-pkg/sourcelist.cc:289 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "Zkomolený řádek %u v seznamu zdrojů %s (typ)" -#: apt-pkg/sourcelist.cc:289 +#: apt-pkg/sourcelist.cc:293 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "Typ „%s“ na řádce %u v seznamu zdrojů %s není známý" @@ -2937,14 +2937,14 @@ msgstr "Cache má nekompatibilní systém správy verzí" #. TRANSLATOR: The first placeholder is a package name, #. the other two should be copied verbatim as they include debug info #: apt-pkg/pkgcachegen.cc:218 apt-pkg/pkgcachegen.cc:228 -#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:325 -#: apt-pkg/pkgcachegen.cc:333 apt-pkg/pkgcachegen.cc:375 -#: apt-pkg/pkgcachegen.cc:379 apt-pkg/pkgcachegen.cc:396 -#: apt-pkg/pkgcachegen.cc:406 apt-pkg/pkgcachegen.cc:410 -#: apt-pkg/pkgcachegen.cc:414 apt-pkg/pkgcachegen.cc:435 -#: apt-pkg/pkgcachegen.cc:477 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:525 apt-pkg/pkgcachegen.cc:556 -#: apt-pkg/pkgcachegen.cc:570 +#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:319 +#: apt-pkg/pkgcachegen.cc:332 apt-pkg/pkgcachegen.cc:374 +#: apt-pkg/pkgcachegen.cc:378 apt-pkg/pkgcachegen.cc:395 +#: apt-pkg/pkgcachegen.cc:403 apt-pkg/pkgcachegen.cc:407 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:432 +#: apt-pkg/pkgcachegen.cc:471 apt-pkg/pkgcachegen.cc:509 +#: apt-pkg/pkgcachegen.cc:516 apt-pkg/pkgcachegen.cc:547 +#: apt-pkg/pkgcachegen.cc:561 #, c-format msgid "Error occurred while processing %s (%s%d)" msgstr "Chyba při zpracování %s (%s%d)" @@ -2965,26 +2965,26 @@ msgstr "Wow, překročili jste počet popisů, které tato APT umí zpracovat." msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "Wow, překročili jste počet závislostí, které tato APT umí zpracovat." -#: apt-pkg/pkgcachegen.cc:577 +#: apt-pkg/pkgcachegen.cc:568 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "Při zpracování závislostí nebyl nalezen balík %s %s" -#: apt-pkg/pkgcachegen.cc:1150 +#: apt-pkg/pkgcachegen.cc:1197 #, c-format msgid "Couldn't stat source package list %s" msgstr "Nešlo vyhodnotit seznam zdrojových balíků %s" -#: apt-pkg/pkgcachegen.cc:1238 apt-pkg/pkgcachegen.cc:1342 -#: apt-pkg/pkgcachegen.cc:1348 apt-pkg/pkgcachegen.cc:1505 +#: apt-pkg/pkgcachegen.cc:1285 apt-pkg/pkgcachegen.cc:1389 +#: apt-pkg/pkgcachegen.cc:1395 apt-pkg/pkgcachegen.cc:1552 msgid "Reading package lists" msgstr "Čtu seznamy balíků" -#: apt-pkg/pkgcachegen.cc:1255 +#: apt-pkg/pkgcachegen.cc:1302 msgid "Collecting File Provides" msgstr "Collecting File poskytuje" -#: apt-pkg/pkgcachegen.cc:1447 apt-pkg/pkgcachegen.cc:1454 +#: apt-pkg/pkgcachegen.cc:1494 apt-pkg/pkgcachegen.cc:1501 msgid "IO Error saving source cache" msgstr "Chyba IO při ukládání zdrojové cache" @@ -3198,22 +3198,22 @@ msgstr "Zapisuji nový seznam balíků\n" msgid "Source list entries for this disc are:\n" msgstr "Seznamy zdrojů na tomto disku jsou:\n" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:766 +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:764 #, c-format msgid "Wrote %i records.\n" msgstr "Zapsáno %i záznamů.\n" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:768 +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:766 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "Zapsáno %i záznamů s chybějícími soubory (%i).\n" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:771 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:769 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "Zapsáno %i záznamů s nesouhlasícími soubory (%i).\n" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:774 +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:772 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "Zapsáno %i záznamů s chybějícími (%i) a nesouhlasícími (%i) soubory.\n" diff --git a/po/cy.po b/po/cy.po index ae7173a40..c689bbc91 100644 --- a/po/cy.po +++ b/po/cy.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: APT\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-04-03 14:20+0200\n" +"POT-Creation-Date: 2013-04-08 15:40+0200\n" "PO-Revision-Date: 2005-06-06 13:46+0100\n" "Last-Translator: Dafydd Harries \n" "Language-Team: Welsh \n" @@ -173,7 +173,7 @@ msgstr " Tabl Fersiynnau:" #: cmdline/apt-cache.cc:1683 cmdline/apt-cdrom.cc:198 cmdline/apt-config.cc:81 #: cmdline/apt-get.cc:3363 cmdline/apt-mark.cc:375 -#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:590 +#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:591 #: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147 #, fuzzy, c-format msgid "%s %s for %s compiled on %s %s\n" @@ -1621,7 +1621,7 @@ msgstr "Gwall mewnol" #. Only warn if there are no sources.list.d. #. Only warn if there is no sources.list file. -#: methods/mirror.cc:95 apt-inst/extract.cc:465 +#: methods/mirror.cc:95 apt-inst/extract.cc:464 #: apt-pkg/contrib/cdromutl.cc:183 apt-pkg/contrib/fileutl.cc:400 #: apt-pkg/contrib/fileutl.cc:513 apt-pkg/sourcelist.cc:208 #: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:108 @@ -1749,7 +1749,7 @@ msgstr "" " -c=? Darllen y ffeil cyfluniad hwn\n" " -o=? Gosod opsiwn cyfluniad mympwyol e.e. -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1339 +#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1386 #, c-format msgid "Unable to write to %s" msgstr "Ni ellir ysgrifennu i %s" @@ -1758,32 +1758,32 @@ msgstr "Ni ellir ysgrifennu i %s" msgid "Cannot get debconf version. Is debconf installed?" msgstr "Ni ellir cael fersiwn debconf. Ydi debconf wedi ei sefydlu?" -#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:348 +#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:349 msgid "Package extension list is too long" msgstr "Mae'r rhestr estyniad pecyn yn rhy hir." #: ftparchive/apt-ftparchive.cc:173 ftparchive/apt-ftparchive.cc:190 -#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:263 -#: ftparchive/apt-ftparchive.cc:277 ftparchive/apt-ftparchive.cc:299 +#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:264 +#: ftparchive/apt-ftparchive.cc:278 ftparchive/apt-ftparchive.cc:300 #, fuzzy, c-format msgid "Error processing directory %s" msgstr "Gwall wrth brosesu'r cyfeiriadur %s" -#: ftparchive/apt-ftparchive.cc:261 +#: ftparchive/apt-ftparchive.cc:262 msgid "Source extension list is too long" msgstr "Mae'r rhestr estyniad ffynhonell yn rhy hir" -#: ftparchive/apt-ftparchive.cc:378 +#: ftparchive/apt-ftparchive.cc:379 msgid "Error writing header to contents file" msgstr "Gwall wrth ysgrifennu pennawd i'r ffeil cynnwys" -#: ftparchive/apt-ftparchive.cc:408 +#: ftparchive/apt-ftparchive.cc:409 #, fuzzy, c-format msgid "Error processing contents %s" msgstr "Gwall wrth Brosesu Cynnwys %s" # FIXME: full stops -#: ftparchive/apt-ftparchive.cc:596 +#: ftparchive/apt-ftparchive.cc:597 #, fuzzy msgid "" "Usage: apt-ftparchive [options] command\n" @@ -1865,11 +1865,11 @@ msgstr "" " -c=? Darllen y ffeil cyfluniad hwn\n" " -o=? Gosod opsiwn cyfluniad mympwyol" -#: ftparchive/apt-ftparchive.cc:802 +#: ftparchive/apt-ftparchive.cc:803 msgid "No selections matched" msgstr "Dim dewisiadau'n cyfateb" -#: ftparchive/apt-ftparchive.cc:880 +#: ftparchive/apt-ftparchive.cc:881 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "Mae rhai ffeiliau ar goll yn y grŵp ffeiliau pecyn `%s'" @@ -1895,8 +1895,8 @@ msgstr "" msgid "Unable to open DB file %s: %s" msgstr "Ni ellir agor y ffeil DB2 %s: %s" -#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:181 apt-inst/extract.cc:193 -#: apt-inst/extract.cc:210 +#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:179 apt-inst/extract.cc:192 +#: apt-inst/extract.cc:209 #, c-format msgid "Failed to stat %s" msgstr "Methodd stat() o %s" @@ -1975,22 +1975,22 @@ msgstr " Tarwyd y terfyn cyswllt %sB.\n" msgid "Archive had no package field" msgstr "Doedd dim maes pecyn gan yr archif" -#: ftparchive/writer.cc:411 ftparchive/writer.cc:698 +#: ftparchive/writer.cc:411 ftparchive/writer.cc:701 #, c-format msgid " %s has no override entry\n" msgstr " Does dim cofnod gwrthwneud gan %s\n" -#: ftparchive/writer.cc:479 ftparchive/writer.cc:814 +#: ftparchive/writer.cc:479 ftparchive/writer.cc:845 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " Cynaliwr %s yw %s nid %s\n" -#: ftparchive/writer.cc:708 +#: ftparchive/writer.cc:711 #, fuzzy, c-format msgid " %s has no source override entry\n" msgstr " Does dim cofnod gwrthwneud gan %s\n" -#: ftparchive/writer.cc:712 +#: ftparchive/writer.cc:715 #, fuzzy, c-format msgid " %s has no binary override entry either\n" msgstr " Does dim cofnod gwrthwneud gan %s\n" @@ -2065,7 +2065,7 @@ msgstr "Methwyd darllen wrth gyfrifo MD5" msgid "Problem unlinking %s" msgstr "Gwall wrth datgysylltu %s" -#: ftparchive/multicompress.cc:373 apt-inst/extract.cc:188 +#: ftparchive/multicompress.cc:373 apt-inst/extract.cc:187 #, c-format msgid "Failed to rename %s to %s" msgstr "Methwyd ailenwi %s at %s" @@ -2215,56 +2215,56 @@ msgstr "Methwyd ysgrifennu ffeil %s" msgid "Failed to close file %s" msgstr "Methwyd cau ffeil %s" -#: apt-inst/extract.cc:96 apt-inst/extract.cc:167 +#: apt-inst/extract.cc:94 apt-inst/extract.cc:165 #, c-format msgid "The path %s is too long" msgstr "Mae'r llwybr %s yn rhy hir" -#: apt-inst/extract.cc:127 +#: apt-inst/extract.cc:125 #, c-format msgid "Unpacking %s more than once" msgstr "Yn dadbacio %s mwy nag unwaith" -#: apt-inst/extract.cc:137 +#: apt-inst/extract.cc:135 #, c-format msgid "The directory %s is diverted" msgstr "Mae'r cyfeiriadur %s wedi ei ddargyfeirio" -#: apt-inst/extract.cc:147 +#: apt-inst/extract.cc:145 #, c-format msgid "The package is trying to write to the diversion target %s/%s" msgstr "Mae'r pecyn yn ceisio ysgrifennu i'r targed dargyfeiriad %s/%s" -#: apt-inst/extract.cc:157 apt-inst/extract.cc:300 +#: apt-inst/extract.cc:155 apt-inst/extract.cc:299 msgid "The diversion path is too long" msgstr "Mae llwybr y dargyfeiriad yn rhy hir" -#: apt-inst/extract.cc:243 +#: apt-inst/extract.cc:242 #, c-format msgid "The directory %s is being replaced by a non-directory" msgstr "" "Mae'r cyfeiriadur %s yn cael ei amnewid efo rhywbeth nid cyfeiriadur ydyw" -#: apt-inst/extract.cc:283 +#: apt-inst/extract.cc:282 msgid "Failed to locate node in its hash bucket" msgstr "Methwyd lleoli nôd yn ei fwced stwnsh" -#: apt-inst/extract.cc:287 +#: apt-inst/extract.cc:286 msgid "The path is too long" msgstr "Mae'r llwybr yn rhy hir" # FIXME: wtf? -#: apt-inst/extract.cc:415 +#: apt-inst/extract.cc:414 #, c-format msgid "Overwrite package match with no version for %s" msgstr "Cyfatebiad pecyn trosysgrifo gyda dim fersiwn am %s" -#: apt-inst/extract.cc:432 +#: apt-inst/extract.cc:431 #, c-format msgid "File %s/%s overwrites the one in the package %s" msgstr "Mae'r ffeil %s/%s yn trosysgrifo'r un yn y pecyn %s" -#: apt-inst/extract.cc:492 +#: apt-inst/extract.cc:491 #, c-format msgid "Unable to stat %s" msgstr "Ni ellir gwneud stat() o %s" @@ -2656,59 +2656,59 @@ msgstr "Nid yw'r APT yma yn cefnogi'r system fersiwn '%s'" msgid "The package cache was built for a different architecture" msgstr "Adeiladwyd y storfa pecyn ar gyfer pernsaerniaeth gwahanol" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "Depends" msgstr "Dibynnu" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "PreDepends" msgstr "CynDdibynnu" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "Suggests" msgstr "Awgrymu" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Recommends" msgstr "Argymell" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Conflicts" msgstr "Gwrthdaro" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Replaces" msgstr "Amnewid" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Obsoletes" msgstr "Darfodi" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Breaks" msgstr "" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Enhances" msgstr "" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "important" msgstr "pwysig" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "required" msgstr "angenrheidiol" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "standard" msgstr "safonnol" -#: apt-pkg/pkgcache.cc:319 +#: apt-pkg/pkgcache.cc:328 msgid "optional" msgstr "opsiynnol" -#: apt-pkg/pkgcache.cc:319 +#: apt-pkg/pkgcache.cc:328 msgid "extra" msgstr "ychwanegol" @@ -2818,12 +2818,12 @@ msgstr "Yn agor %s" msgid "Line %u too long in source list %s." msgstr "Llinell %u yn rhy hir yn y rhestr ffynhonell %s." -#: apt-pkg/sourcelist.cc:285 +#: apt-pkg/sourcelist.cc:289 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "Llinell camffurfiol %u yn y rhestr ffynhonell %s (math)" -#: apt-pkg/sourcelist.cc:289 +#: apt-pkg/sourcelist.cc:293 #, fuzzy, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "Mae'r math '%s' yn anhysbys ar linell %u yn y rhestr ffynhonell %s" @@ -2994,14 +2994,14 @@ msgstr "Mae can y storfa system fersiwn anghyfaddas" #. TRANSLATOR: The first placeholder is a package name, #. the other two should be copied verbatim as they include debug info #: apt-pkg/pkgcachegen.cc:218 apt-pkg/pkgcachegen.cc:228 -#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:325 -#: apt-pkg/pkgcachegen.cc:333 apt-pkg/pkgcachegen.cc:375 -#: apt-pkg/pkgcachegen.cc:379 apt-pkg/pkgcachegen.cc:396 -#: apt-pkg/pkgcachegen.cc:406 apt-pkg/pkgcachegen.cc:410 -#: apt-pkg/pkgcachegen.cc:414 apt-pkg/pkgcachegen.cc:435 -#: apt-pkg/pkgcachegen.cc:477 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:525 apt-pkg/pkgcachegen.cc:556 -#: apt-pkg/pkgcachegen.cc:570 +#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:319 +#: apt-pkg/pkgcachegen.cc:332 apt-pkg/pkgcachegen.cc:374 +#: apt-pkg/pkgcachegen.cc:378 apt-pkg/pkgcachegen.cc:395 +#: apt-pkg/pkgcachegen.cc:403 apt-pkg/pkgcachegen.cc:407 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:432 +#: apt-pkg/pkgcachegen.cc:471 apt-pkg/pkgcachegen.cc:509 +#: apt-pkg/pkgcachegen.cc:516 apt-pkg/pkgcachegen.cc:547 +#: apt-pkg/pkgcachegen.cc:561 #, fuzzy, c-format msgid "Error occurred while processing %s (%s%d)" msgstr "Digwyddod gwall wrth brosesu %s (FindPkg)" @@ -3025,27 +3025,27 @@ msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "" "Jiw, rhagoroch chi'r nifer o ddibyniaethau mae'r APT hwn yn gallu ei drin." -#: apt-pkg/pkgcachegen.cc:577 +#: apt-pkg/pkgcachegen.cc:568 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "Ni chanfuwyd pecyn %s %s wrth brosesu dibyniaethau ffeil" -#: apt-pkg/pkgcachegen.cc:1150 +#: apt-pkg/pkgcachegen.cc:1197 #, c-format msgid "Couldn't stat source package list %s" msgstr "Methwyd stat() o'r rhestr pecyn ffynhonell %s" -#: apt-pkg/pkgcachegen.cc:1238 apt-pkg/pkgcachegen.cc:1342 -#: apt-pkg/pkgcachegen.cc:1348 apt-pkg/pkgcachegen.cc:1505 +#: apt-pkg/pkgcachegen.cc:1285 apt-pkg/pkgcachegen.cc:1389 +#: apt-pkg/pkgcachegen.cc:1395 apt-pkg/pkgcachegen.cc:1552 #, fuzzy msgid "Reading package lists" msgstr "Yn Darllen Rhestrau Pecynnau" -#: apt-pkg/pkgcachegen.cc:1255 +#: apt-pkg/pkgcachegen.cc:1302 msgid "Collecting File Provides" msgstr "Yn Casglu Darpariaethau Ffeil" -#: apt-pkg/pkgcachegen.cc:1447 apt-pkg/pkgcachegen.cc:1454 +#: apt-pkg/pkgcachegen.cc:1494 apt-pkg/pkgcachegen.cc:1501 msgid "IO Error saving source cache" msgstr "Gwall M/A wrth gadw'r storfa ffynhonell" @@ -3254,22 +3254,22 @@ msgstr "Llinell %u yn rhy hir yn y rhestr ffynhonell %s." msgid "Source list entries for this disc are:\n" msgstr "" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:766 +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:764 #, c-format msgid "Wrote %i records.\n" msgstr "" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:768 +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:766 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:771 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:769 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:774 +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:772 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" diff --git a/po/da.po b/po/da.po index db109ad0f..f40831ac1 100644 --- a/po/da.po +++ b/po/da.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-04-03 14:20+0200\n" +"POT-Creation-Date: 2013-04-08 15:40+0200\n" "PO-Revision-Date: 2012-07-03 23:51+0200\n" "Last-Translator: Joe Hansen \n" "Language-Team: Danish \n" @@ -160,7 +160,7 @@ msgstr " Versionstabel:" #: cmdline/apt-cache.cc:1683 cmdline/apt-cdrom.cc:198 cmdline/apt-config.cc:81 #: cmdline/apt-get.cc:3363 cmdline/apt-mark.cc:375 -#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:590 +#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:591 #: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147 #, c-format msgid "%s %s for %s compiled on %s %s\n" @@ -1614,7 +1614,7 @@ msgstr "Intern fejl" #. Only warn if there are no sources.list.d. #. Only warn if there is no sources.list file. -#: methods/mirror.cc:95 apt-inst/extract.cc:465 +#: methods/mirror.cc:95 apt-inst/extract.cc:464 #: apt-pkg/contrib/cdromutl.cc:183 apt-pkg/contrib/fileutl.cc:400 #: apt-pkg/contrib/fileutl.cc:513 apt-pkg/sourcelist.cc:208 #: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:108 @@ -1744,7 +1744,7 @@ msgstr "" " -c=? Læs denne opsætningsfil\n" " -o=? Angiv et opsætningstilvalg. F.eks. -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1339 +#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1386 #, c-format msgid "Unable to write to %s" msgstr "Kunne ikke skrive til %s" @@ -1753,31 +1753,31 @@ msgstr "Kunne ikke skrive til %s" msgid "Cannot get debconf version. Is debconf installed?" msgstr "Kan ikke finde debconfs version. Er debconf installeret?" -#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:348 +#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:349 msgid "Package extension list is too long" msgstr "Pakkeudvidelseslisten er for lang" #: ftparchive/apt-ftparchive.cc:173 ftparchive/apt-ftparchive.cc:190 -#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:263 -#: ftparchive/apt-ftparchive.cc:277 ftparchive/apt-ftparchive.cc:299 +#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:264 +#: ftparchive/apt-ftparchive.cc:278 ftparchive/apt-ftparchive.cc:300 #, c-format msgid "Error processing directory %s" msgstr "Fejl under behandling af mappen %s" -#: ftparchive/apt-ftparchive.cc:261 +#: ftparchive/apt-ftparchive.cc:262 msgid "Source extension list is too long" msgstr "Kildeudvidelseslisten er for lang" -#: ftparchive/apt-ftparchive.cc:378 +#: ftparchive/apt-ftparchive.cc:379 msgid "Error writing header to contents file" msgstr "Fejl under skrivning af hovedet til indholdsfil" -#: ftparchive/apt-ftparchive.cc:408 +#: ftparchive/apt-ftparchive.cc:409 #, c-format msgid "Error processing contents %s" msgstr "Fejl under behandling af indhold %s" -#: ftparchive/apt-ftparchive.cc:596 +#: ftparchive/apt-ftparchive.cc:597 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -1857,11 +1857,11 @@ msgstr "" " -c=? Læs denne opsætningsfil\n" " -o=? Sæt en opsætnings-indstilling" -#: ftparchive/apt-ftparchive.cc:802 +#: ftparchive/apt-ftparchive.cc:803 msgid "No selections matched" msgstr "Ingen valg passede" -#: ftparchive/apt-ftparchive.cc:880 +#: ftparchive/apt-ftparchive.cc:881 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "Visse filer mangler i pakkefilgruppen »%s«" @@ -1889,8 +1889,8 @@ msgstr "" msgid "Unable to open DB file %s: %s" msgstr "Kunne ikke åbne DB-filen %s: %s" -#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:181 apt-inst/extract.cc:193 -#: apt-inst/extract.cc:210 +#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:179 apt-inst/extract.cc:192 +#: apt-inst/extract.cc:209 #, c-format msgid "Failed to stat %s" msgstr "Kunne ikke finde %s" @@ -1968,22 +1968,22 @@ msgstr " Nåede DeLink-begrænsningen på %sB.\n" msgid "Archive had no package field" msgstr "Arkivet havde intet package-felt" -#: ftparchive/writer.cc:411 ftparchive/writer.cc:698 +#: ftparchive/writer.cc:411 ftparchive/writer.cc:701 #, c-format msgid " %s has no override entry\n" msgstr " %s har ingen tvangs-post\n" -#: ftparchive/writer.cc:479 ftparchive/writer.cc:814 +#: ftparchive/writer.cc:479 ftparchive/writer.cc:845 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " pakkeansvarlig for %s er %s, ikke %s\n" -#: ftparchive/writer.cc:708 +#: ftparchive/writer.cc:711 #, c-format msgid " %s has no source override entry\n" msgstr " %s har ingen linje med tilsidesættelse af standard for kildefiler\n" -#: ftparchive/writer.cc:712 +#: ftparchive/writer.cc:715 #, c-format msgid " %s has no binary override entry either\n" msgstr "" @@ -2058,7 +2058,7 @@ msgstr "Kunne ikke læse under beregning af MD5" msgid "Problem unlinking %s" msgstr "Problem under aflænkning af %s" -#: ftparchive/multicompress.cc:373 apt-inst/extract.cc:188 +#: ftparchive/multicompress.cc:373 apt-inst/extract.cc:187 #, c-format msgid "Failed to rename %s to %s" msgstr "Kunne ikke omdøbe %s til %s" @@ -2203,54 +2203,54 @@ msgstr "Kunne ikke skrive filen %s" msgid "Failed to close file %s" msgstr "Kunne ikke lukke filen %s" -#: apt-inst/extract.cc:96 apt-inst/extract.cc:167 +#: apt-inst/extract.cc:94 apt-inst/extract.cc:165 #, c-format msgid "The path %s is too long" msgstr "Stien %s er for lang" -#: apt-inst/extract.cc:127 +#: apt-inst/extract.cc:125 #, c-format msgid "Unpacking %s more than once" msgstr "Pakkede %s ud flere gange" -#: apt-inst/extract.cc:137 +#: apt-inst/extract.cc:135 #, c-format msgid "The directory %s is diverted" msgstr "Mappen %s er omrokeret" -#: apt-inst/extract.cc:147 +#: apt-inst/extract.cc:145 #, c-format msgid "The package is trying to write to the diversion target %s/%s" msgstr "Pakken forsøger at skrive til omrokeret mål %s/%s" -#: apt-inst/extract.cc:157 apt-inst/extract.cc:300 +#: apt-inst/extract.cc:155 apt-inst/extract.cc:299 msgid "The diversion path is too long" msgstr "Omrokeringsstien er for lang" -#: apt-inst/extract.cc:243 +#: apt-inst/extract.cc:242 #, c-format msgid "The directory %s is being replaced by a non-directory" msgstr "Mappen %s bliver erstattet af en ikke-mappe" -#: apt-inst/extract.cc:283 +#: apt-inst/extract.cc:282 msgid "Failed to locate node in its hash bucket" msgstr "Kunne ikke finde knuden i sin hash-bucket" -#: apt-inst/extract.cc:287 +#: apt-inst/extract.cc:286 msgid "The path is too long" msgstr "Stien er for lang" -#: apt-inst/extract.cc:415 +#: apt-inst/extract.cc:414 #, c-format msgid "Overwrite package match with no version for %s" msgstr "Overskriv pakkematch uden version for %s" -#: apt-inst/extract.cc:432 +#: apt-inst/extract.cc:431 #, c-format msgid "File %s/%s overwrites the one in the package %s" msgstr "File %s/%s overskriver filen i pakken %s" -#: apt-inst/extract.cc:492 +#: apt-inst/extract.cc:491 #, c-format msgid "Unable to stat %s" msgstr "Kunne ikke finde %s" @@ -2636,59 +2636,59 @@ msgstr "Denne APT understøtter ikke versionssystemet '%s'" msgid "The package cache was built for a different architecture" msgstr "Pakke-mellemlageret er lavet til en anden arkitektur" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "Depends" msgstr "Afhængigheder" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "PreDepends" msgstr "Præ-afhængigheder" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "Suggests" msgstr "Foreslåede" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Recommends" msgstr "Anbefalede" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Conflicts" msgstr "Konflikter" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Replaces" msgstr "Erstatter" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Obsoletes" msgstr "Overflødiggør" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Breaks" msgstr "Ødelægger" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Enhances" msgstr "Forbedringer" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "important" msgstr "vigtig" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "required" msgstr "krævet" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "standard" msgstr "standard" -#: apt-pkg/pkgcache.cc:319 +#: apt-pkg/pkgcache.cc:328 msgid "optional" msgstr "frivillig" -#: apt-pkg/pkgcache.cc:319 +#: apt-pkg/pkgcache.cc:328 msgid "extra" msgstr "ekstra" @@ -2788,12 +2788,12 @@ msgstr "Åbner %s" msgid "Line %u too long in source list %s." msgstr "Linjen %u er for lang i kildelisten %s." -#: apt-pkg/sourcelist.cc:285 +#: apt-pkg/sourcelist.cc:289 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "Ugyldig linje %u i kildelisten %s (type)" -#: apt-pkg/sourcelist.cc:289 +#: apt-pkg/sourcelist.cc:293 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "Typen '%s' er ukendt på linje %u i kildelisten %s" @@ -2959,14 +2959,14 @@ msgstr "Mellemlageret benytter en inkompatibel versionsstyring" #. TRANSLATOR: The first placeholder is a package name, #. the other two should be copied verbatim as they include debug info #: apt-pkg/pkgcachegen.cc:218 apt-pkg/pkgcachegen.cc:228 -#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:325 -#: apt-pkg/pkgcachegen.cc:333 apt-pkg/pkgcachegen.cc:375 -#: apt-pkg/pkgcachegen.cc:379 apt-pkg/pkgcachegen.cc:396 -#: apt-pkg/pkgcachegen.cc:406 apt-pkg/pkgcachegen.cc:410 -#: apt-pkg/pkgcachegen.cc:414 apt-pkg/pkgcachegen.cc:435 -#: apt-pkg/pkgcachegen.cc:477 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:525 apt-pkg/pkgcachegen.cc:556 -#: apt-pkg/pkgcachegen.cc:570 +#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:319 +#: apt-pkg/pkgcachegen.cc:332 apt-pkg/pkgcachegen.cc:374 +#: apt-pkg/pkgcachegen.cc:378 apt-pkg/pkgcachegen.cc:395 +#: apt-pkg/pkgcachegen.cc:403 apt-pkg/pkgcachegen.cc:407 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:432 +#: apt-pkg/pkgcachegen.cc:471 apt-pkg/pkgcachegen.cc:509 +#: apt-pkg/pkgcachegen.cc:516 apt-pkg/pkgcachegen.cc:547 +#: apt-pkg/pkgcachegen.cc:561 #, c-format msgid "Error occurred while processing %s (%s%d)" msgstr "Der opstod en fejl under behandlingen af %s (%s%d)" @@ -2989,26 +2989,26 @@ msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "" "Hold da op! Du nåede over det antal afhængigheder, denne APT kan håndtere." -#: apt-pkg/pkgcachegen.cc:577 +#: apt-pkg/pkgcachegen.cc:568 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "Pakken %s %s blev ikke fundet under behandlingen af filafhængigheder" -#: apt-pkg/pkgcachegen.cc:1150 +#: apt-pkg/pkgcachegen.cc:1197 #, c-format msgid "Couldn't stat source package list %s" msgstr "Kunne ikke finde kildepakkelisten %s" -#: apt-pkg/pkgcachegen.cc:1238 apt-pkg/pkgcachegen.cc:1342 -#: apt-pkg/pkgcachegen.cc:1348 apt-pkg/pkgcachegen.cc:1505 +#: apt-pkg/pkgcachegen.cc:1285 apt-pkg/pkgcachegen.cc:1389 +#: apt-pkg/pkgcachegen.cc:1395 apt-pkg/pkgcachegen.cc:1552 msgid "Reading package lists" msgstr "Indlæser pakkelisterne" -#: apt-pkg/pkgcachegen.cc:1255 +#: apt-pkg/pkgcachegen.cc:1302 msgid "Collecting File Provides" msgstr "Samler filudbud" -#: apt-pkg/pkgcachegen.cc:1447 apt-pkg/pkgcachegen.cc:1454 +#: apt-pkg/pkgcachegen.cc:1494 apt-pkg/pkgcachegen.cc:1501 msgid "IO Error saving source cache" msgstr "IO-fejl ved gemning af kilde-mellemlageret" @@ -3222,22 +3222,22 @@ 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/indexcopy.cc:236 apt-pkg/indexcopy.cc:766 +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:764 #, c-format msgid "Wrote %i records.\n" msgstr "Skrev %i poster.\n" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:768 +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:766 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "Skrev %i poster med %i manglende filer.\n" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:771 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:769 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "Skrev %i poster med %i ikke-trufne filer\n" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:774 +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:772 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "Skrev %i poster med %i manglende filer og %i ikke-trufne filer\n" diff --git a/po/de.po b/po/de.po index 276c0def7..2b5ed7599 100644 --- a/po/de.po +++ b/po/de.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.9.2\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-04-03 14:20+0200\n" +"POT-Creation-Date: 2013-04-08 15:40+0200\n" "PO-Revision-Date: 2012-06-27 10:55+0200\n" "Last-Translator: Holger Wansing \n" "Language-Team: Debian German \n" @@ -161,7 +161,7 @@ msgstr " Versionstabelle:" #: cmdline/apt-cache.cc:1683 cmdline/apt-cdrom.cc:198 cmdline/apt-config.cc:81 #: cmdline/apt-get.cc:3363 cmdline/apt-mark.cc:375 -#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:590 +#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:591 #: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147 #, c-format msgid "%s %s for %s compiled on %s %s\n" @@ -1667,7 +1667,7 @@ msgstr "Interner Fehler" #. Only warn if there are no sources.list.d. #. Only warn if there is no sources.list file. -#: methods/mirror.cc:95 apt-inst/extract.cc:465 +#: methods/mirror.cc:95 apt-inst/extract.cc:464 #: apt-pkg/contrib/cdromutl.cc:183 apt-pkg/contrib/fileutl.cc:400 #: apt-pkg/contrib/fileutl.cc:513 apt-pkg/sourcelist.cc:208 #: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:108 @@ -1797,7 +1797,7 @@ msgstr "" " -c=? Diese Konfigurationsdatei lesen\n" " -o=? Eine beliebige Konfigurationsoption setzen, z.B. -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1339 +#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1386 #, c-format msgid "Unable to write to %s" msgstr "Schreiben nach %s nicht möglich" @@ -1807,31 +1807,31 @@ msgid "Cannot get debconf version. Is debconf installed?" msgstr "" "Debconf-Version konnte nicht ermittelt werden. Ist debconf installiert?" -#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:348 +#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:349 msgid "Package extension list is too long" msgstr "Paketerweiterungsliste ist zu lang." #: ftparchive/apt-ftparchive.cc:173 ftparchive/apt-ftparchive.cc:190 -#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:263 -#: ftparchive/apt-ftparchive.cc:277 ftparchive/apt-ftparchive.cc:299 +#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:264 +#: ftparchive/apt-ftparchive.cc:278 ftparchive/apt-ftparchive.cc:300 #, c-format msgid "Error processing directory %s" msgstr "Fehler beim Verarbeiten von Verzeichnis %s" -#: ftparchive/apt-ftparchive.cc:261 +#: ftparchive/apt-ftparchive.cc:262 msgid "Source extension list is too long" msgstr "Quellerweiterungsliste ist zu lang." -#: ftparchive/apt-ftparchive.cc:378 +#: ftparchive/apt-ftparchive.cc:379 msgid "Error writing header to contents file" msgstr "Fehler beim Schreiben der Kopfzeilen in die Inhaltsdatei" -#: ftparchive/apt-ftparchive.cc:408 +#: ftparchive/apt-ftparchive.cc:409 #, c-format msgid "Error processing contents %s" msgstr "Fehler beim Verarbeiten der Inhalte %s" -#: ftparchive/apt-ftparchive.cc:596 +#: ftparchive/apt-ftparchive.cc:597 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -1918,11 +1918,11 @@ msgstr "" " -c=? diese Konfigurationsdatei lesen\n" " -o=? eine beliebige Konfigurationsoption setzen" -#: ftparchive/apt-ftparchive.cc:802 +#: ftparchive/apt-ftparchive.cc:803 msgid "No selections matched" msgstr "Keine Auswahl traf zu" -#: ftparchive/apt-ftparchive.cc:880 +#: ftparchive/apt-ftparchive.cc:881 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "Einige Dateien fehlen in der Paketdateigruppe »%s«." @@ -1951,8 +1951,8 @@ msgstr "" msgid "Unable to open DB file %s: %s" msgstr "Datenbankdatei %s kann nicht geöffnet werden: %s" -#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:181 apt-inst/extract.cc:193 -#: apt-inst/extract.cc:210 +#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:179 apt-inst/extract.cc:192 +#: apt-inst/extract.cc:209 #, c-format msgid "Failed to stat %s" msgstr "%s mit »stat« abfragen fehlgeschlagen" @@ -2030,22 +2030,22 @@ msgstr " DeLink-Limit von %sB erreicht\n" msgid "Archive had no package field" msgstr "Archiv hatte kein Feld »package«" -#: ftparchive/writer.cc:411 ftparchive/writer.cc:698 +#: ftparchive/writer.cc:411 ftparchive/writer.cc:701 #, c-format msgid " %s has no override entry\n" msgstr " %s hat keinen Eintrag in der Override-Liste.\n" -#: ftparchive/writer.cc:479 ftparchive/writer.cc:814 +#: ftparchive/writer.cc:479 ftparchive/writer.cc:845 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " %s-Betreuer ist %s und nicht %s.\n" -#: ftparchive/writer.cc:708 +#: ftparchive/writer.cc:711 #, c-format msgid " %s has no source override entry\n" msgstr " %s hat keinen Eintrag in der Source-Override-Liste.\n" -#: ftparchive/writer.cc:712 +#: ftparchive/writer.cc:715 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s hat keinen Eintrag in der Binary-Override-Liste.\n" @@ -2119,7 +2119,7 @@ msgstr "Lesevorgang während der MD5-Berechnung fehlgeschlagen" msgid "Problem unlinking %s" msgstr "Problem beim Entfernen (unlink) von %s" -#: ftparchive/multicompress.cc:373 apt-inst/extract.cc:188 +#: ftparchive/multicompress.cc:373 apt-inst/extract.cc:187 #, c-format msgid "Failed to rename %s to %s" msgstr "%s konnte nicht in %s umbenannt werden." @@ -2265,54 +2265,54 @@ msgstr "Datei %s konnte nicht geschrieben werden." msgid "Failed to close file %s" msgstr "Datei %s konnte nicht geschlossen werden." -#: apt-inst/extract.cc:96 apt-inst/extract.cc:167 +#: apt-inst/extract.cc:94 apt-inst/extract.cc:165 #, c-format msgid "The path %s is too long" msgstr "Der Pfad %s ist zu lang." -#: apt-inst/extract.cc:127 +#: apt-inst/extract.cc:125 #, c-format msgid "Unpacking %s more than once" msgstr "%s mehr als einmal entpackt" -#: apt-inst/extract.cc:137 +#: apt-inst/extract.cc:135 #, c-format msgid "The directory %s is diverted" msgstr "Das Verzeichnis %s ist umgeleitet." -#: apt-inst/extract.cc:147 +#: apt-inst/extract.cc:145 #, c-format msgid "The package is trying to write to the diversion target %s/%s" msgstr "Schreibversuch vom Paket auf das Umleitungsziel %s/%s" -#: apt-inst/extract.cc:157 apt-inst/extract.cc:300 +#: apt-inst/extract.cc:155 apt-inst/extract.cc:299 msgid "The diversion path is too long" msgstr "Der Umleitungspfad ist zu lang." -#: apt-inst/extract.cc:243 +#: apt-inst/extract.cc:242 #, c-format msgid "The directory %s is being replaced by a non-directory" msgstr "Das Verzeichnis %s wird durch ein Nicht-Verzeichnis ersetzt." -#: apt-inst/extract.cc:283 +#: apt-inst/extract.cc:282 msgid "Failed to locate node in its hash bucket" msgstr "Knoten konnte nicht in seinem Hash gefunden werden." -#: apt-inst/extract.cc:287 +#: apt-inst/extract.cc:286 msgid "The path is too long" msgstr "Der Pfad ist zu lang." -#: apt-inst/extract.cc:415 +#: apt-inst/extract.cc:414 #, c-format msgid "Overwrite package match with no version for %s" msgstr "Pakettreffer ohne Version für %s wird überschrieben." -#: apt-inst/extract.cc:432 +#: apt-inst/extract.cc:431 #, c-format msgid "File %s/%s overwrites the one in the package %s" msgstr "Durch die Datei %s/%s wird die Datei in Paket %s überschrieben." -#: apt-inst/extract.cc:492 +#: apt-inst/extract.cc:491 #, c-format msgid "Unable to stat %s" msgstr "%s mit »stat« abfragen nicht möglich" @@ -2710,59 +2710,59 @@ msgstr "Das Versionssystem »%s« wird durch dieses APT nicht unterstützt." msgid "The package cache was built for a different architecture" msgstr "Der Paketzwischenspeicher wurde für eine andere Architektur aufgebaut." -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "Depends" msgstr "Hängt ab von" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "PreDepends" msgstr "Hängt ab von (vorher)" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "Suggests" msgstr "Schlägt vor" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Recommends" msgstr "Empfiehlt" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Conflicts" msgstr "Kollidiert mit" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Replaces" msgstr "Ersetzt" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Obsoletes" msgstr "Löst ab" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Breaks" msgstr "Beschädigt" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Enhances" msgstr "Wertet auf" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "important" msgstr "wichtig" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "required" msgstr "erforderlich" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "standard" msgstr "standard" -#: apt-pkg/pkgcache.cc:319 +#: apt-pkg/pkgcache.cc:328 msgid "optional" msgstr "optional" -#: apt-pkg/pkgcache.cc:319 +#: apt-pkg/pkgcache.cc:328 msgid "extra" msgstr "extra" @@ -2863,12 +2863,12 @@ msgstr "%s wird geöffnet." msgid "Line %u too long in source list %s." msgstr "Zeile %u in Quellliste %s zu lang." -#: apt-pkg/sourcelist.cc:285 +#: apt-pkg/sourcelist.cc:289 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "Missgestaltete Zeile %u in Quellliste %s (»type«)" -#: apt-pkg/sourcelist.cc:289 +#: apt-pkg/sourcelist.cc:293 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "Typ »%s« in Zeile %u der Quellliste %s ist unbekannt." @@ -3043,14 +3043,14 @@ msgstr "Zwischenspeicher hat ein inkompatibles Versionssystem." #. TRANSLATOR: The first placeholder is a package name, #. the other two should be copied verbatim as they include debug info #: apt-pkg/pkgcachegen.cc:218 apt-pkg/pkgcachegen.cc:228 -#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:325 -#: apt-pkg/pkgcachegen.cc:333 apt-pkg/pkgcachegen.cc:375 -#: apt-pkg/pkgcachegen.cc:379 apt-pkg/pkgcachegen.cc:396 -#: apt-pkg/pkgcachegen.cc:406 apt-pkg/pkgcachegen.cc:410 -#: apt-pkg/pkgcachegen.cc:414 apt-pkg/pkgcachegen.cc:435 -#: apt-pkg/pkgcachegen.cc:477 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:525 apt-pkg/pkgcachegen.cc:556 -#: apt-pkg/pkgcachegen.cc:570 +#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:319 +#: apt-pkg/pkgcachegen.cc:332 apt-pkg/pkgcachegen.cc:374 +#: apt-pkg/pkgcachegen.cc:378 apt-pkg/pkgcachegen.cc:395 +#: apt-pkg/pkgcachegen.cc:403 apt-pkg/pkgcachegen.cc:407 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:432 +#: apt-pkg/pkgcachegen.cc:471 apt-pkg/pkgcachegen.cc:509 +#: apt-pkg/pkgcachegen.cc:516 apt-pkg/pkgcachegen.cc:547 +#: apt-pkg/pkgcachegen.cc:561 #, c-format msgid "Error occurred while processing %s (%s%d)" msgstr "Fehler aufgetreten beim Verarbeiten von %s (%s%d)" @@ -3079,27 +3079,27 @@ msgstr "" "Na so was, Sie haben die Anzahl an Abhängigkeiten überschritten, mit denen " "diese APT-Version umgehen kann." -#: apt-pkg/pkgcachegen.cc:577 +#: apt-pkg/pkgcachegen.cc:568 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "" "Paket %s %s wurde beim Verarbeiten der Dateiabhängigkeiten nicht gefunden." -#: apt-pkg/pkgcachegen.cc:1150 +#: apt-pkg/pkgcachegen.cc:1197 #, c-format msgid "Couldn't stat source package list %s" msgstr "Die Quellpaket-Liste %s konnte nicht mit »stat« abgefragt werden" -#: apt-pkg/pkgcachegen.cc:1238 apt-pkg/pkgcachegen.cc:1342 -#: apt-pkg/pkgcachegen.cc:1348 apt-pkg/pkgcachegen.cc:1505 +#: apt-pkg/pkgcachegen.cc:1285 apt-pkg/pkgcachegen.cc:1389 +#: apt-pkg/pkgcachegen.cc:1395 apt-pkg/pkgcachegen.cc:1552 msgid "Reading package lists" msgstr "Paketlisten werden gelesen" -#: apt-pkg/pkgcachegen.cc:1255 +#: apt-pkg/pkgcachegen.cc:1302 msgid "Collecting File Provides" msgstr "Sammeln der angebotenen Funktionalitäten (Provides) aus den Dateien" -#: apt-pkg/pkgcachegen.cc:1447 apt-pkg/pkgcachegen.cc:1454 +#: apt-pkg/pkgcachegen.cc:1494 apt-pkg/pkgcachegen.cc:1501 msgid "IO Error saving source cache" msgstr "E/A-Fehler beim Speichern des Quell-Zwischenspeichers" @@ -3316,22 +3316,22 @@ 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/indexcopy.cc:236 apt-pkg/indexcopy.cc:766 +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:764 #, c-format msgid "Wrote %i records.\n" msgstr "Es wurden %i Datensätze geschrieben.\n" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:768 +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:766 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "Es wurden %i Datensätze mit %i fehlenden Dateien geschrieben.\n" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:771 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:769 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "Es wurden %i Datensätze mit %i nicht passenden Dateien geschrieben.\n" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:774 +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:772 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" diff --git a/po/dz.po b/po/dz.po index 82257ac5e..be5733cd0 100644 --- a/po/dz.po +++ b/po/dz.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: apt_po.pot\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-04-03 14:20+0200\n" +"POT-Creation-Date: 2013-04-08 15:40+0200\n" "PO-Revision-Date: 2006-09-19 09:49+0530\n" "Last-Translator: Kinley Tshering \n" "Language-Team: Dzongkha \n" @@ -161,7 +161,7 @@ msgstr "ཐོན་རིམ་ཐིག་ཁྲམ།:" #: cmdline/apt-cache.cc:1683 cmdline/apt-cdrom.cc:198 cmdline/apt-config.cc:81 #: cmdline/apt-get.cc:3363 cmdline/apt-mark.cc:375 -#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:590 +#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:591 #: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147 #, fuzzy, c-format msgid "%s %s for %s compiled on %s %s\n" @@ -1580,7 +1580,7 @@ msgstr "ནང་འཁོད་འཛོལ་བ།" #. Only warn if there are no sources.list.d. #. Only warn if there is no sources.list file. -#: methods/mirror.cc:95 apt-inst/extract.cc:465 +#: methods/mirror.cc:95 apt-inst/extract.cc:464 #: apt-pkg/contrib/cdromutl.cc:183 apt-pkg/contrib/fileutl.cc:400 #: apt-pkg/contrib/fileutl.cc:513 apt-pkg/sourcelist.cc:208 #: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:108 @@ -1707,7 +1707,7 @@ msgstr "" " -o=? འདི་གིས་མཐུན་སྒྲིག་རིམ་སྒྲིག་གདམ་ཁ་ཅིག་གཞི་སྒྲིག་འབདཝ་ཨིན་ དཔེར་ན་-o dir::cache=/tmp་" "བཟུམ།\n" -#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1339 +#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1386 #, c-format msgid "Unable to write to %s" msgstr " %sལུ་འབྲི་མ་ཚུགས།" @@ -1716,31 +1716,31 @@ msgstr " %sལུ་འབྲི་མ་ཚུགས།" msgid "Cannot get debconf version. Is debconf installed?" msgstr "debconf ་་འཐོན་རིམ་འདི་ལེན་མ་ཚུགས། debconf འདི་གཞི་བཙུགས་འབད་ཡི་ག་?" -#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:348 +#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:349 msgid "Package extension list is too long" msgstr "ཐུམ་སྒྲིལ་རྒྱ་བསྐྱེད་ཐོག་ཡིག་འདི་གནམ་མེད་ས་མེད་རིངམ་འདུག" #: ftparchive/apt-ftparchive.cc:173 ftparchive/apt-ftparchive.cc:190 -#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:263 -#: ftparchive/apt-ftparchive.cc:277 ftparchive/apt-ftparchive.cc:299 +#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:264 +#: ftparchive/apt-ftparchive.cc:278 ftparchive/apt-ftparchive.cc:300 #, c-format msgid "Error processing directory %s" msgstr "སྣོད་ཐོ་%s་ལས་སྦྱོར་འབདཝ་ད་འཛོལ་བ་འཐོན་ཡི།" -#: ftparchive/apt-ftparchive.cc:261 +#: ftparchive/apt-ftparchive.cc:262 msgid "Source extension list is too long" msgstr "འབྱུང་ཁུངས་རྒྱ་བསྐྱེད་ཀྱི་ཐོག་ཡིག་འདི་གནམ་མེད་ས་མེད་རིང་པས།" -#: ftparchive/apt-ftparchive.cc:378 +#: ftparchive/apt-ftparchive.cc:379 msgid "Error writing header to contents file" msgstr "ནང་དོན་ཡིག་སྣོད་ལུ་མགོ་ཡིག་འཛོལ་བ་འབྲི་ནིའི་མགོ་ཡིག" -#: ftparchive/apt-ftparchive.cc:408 +#: ftparchive/apt-ftparchive.cc:409 #, c-format msgid "Error processing contents %s" msgstr "%sའཛོལ་བ་ལས་སྦྱོར་འབད་ནིའི་ནང་དོན།" -#: ftparchive/apt-ftparchive.cc:596 +#: ftparchive/apt-ftparchive.cc:597 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -1824,11 +1824,11 @@ msgstr "" " -c=? འ་ནི་རིམ་སྒྲིག་ཡིག་སྣོད་འདི་ལྷག\n" " -o=? མཐུན་སྒྲིག་རིམ་སྒྲིག་གི་གདམ་ཁ་ཅིག་གཞི་སྒྲིག་འབད།" -#: ftparchive/apt-ftparchive.cc:802 +#: ftparchive/apt-ftparchive.cc:803 msgid "No selections matched" msgstr "སེལ་འཐུ་ཚུ་མཐུན་སྒྲིག་མིན་འདུག" -#: ftparchive/apt-ftparchive.cc:880 +#: ftparchive/apt-ftparchive.cc:881 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "ཡིག་སྣོད་ལ་ལུ་ཅིག་ཐུམ་སྒྲིལ་ཡིག་སྣོད་སྡེ་ཚན་`%s'ནང་བརླག་སྟོར་ཞུགས་ནུག" @@ -1857,8 +1857,8 @@ msgstr "" msgid "Unable to open DB file %s: %s" msgstr "%s: %s་ཌི་བི་ཡིག་སྣོད་འདི་ཁ་ཕྱེ་མ་ཚུགས།" -#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:181 apt-inst/extract.cc:193 -#: apt-inst/extract.cc:210 +#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:179 apt-inst/extract.cc:192 +#: apt-inst/extract.cc:209 #, c-format msgid "Failed to stat %s" msgstr "%s་སིཊེཊི་འབད་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོདཔ།" @@ -1936,22 +1936,22 @@ msgstr "%sB་ཧེང་བཀལ་བཀྲམ་ནིའི་འབྲེ msgid "Archive had no package field" msgstr "ཡིག་མཛོད་ལུ་ཐུམ་སྒྲིལ་ཅི་ཡང་འཐུས་ཤོར་མ་བྱུང་།" -#: ftparchive/writer.cc:411 ftparchive/writer.cc:698 +#: ftparchive/writer.cc:411 ftparchive/writer.cc:701 #, c-format msgid " %s has no override entry\n" msgstr " %sལུ་ཟུར་བཞག་ཐོ་བཀོད་མེད།\n" -#: ftparchive/writer.cc:479 ftparchive/writer.cc:814 +#: ftparchive/writer.cc:479 ftparchive/writer.cc:845 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " %s ་རྒྱུན་སྐྱོང་པ་འདི་ %s ཨིན་ %s མེན།\n" -#: ftparchive/writer.cc:708 +#: ftparchive/writer.cc:711 #, c-format msgid " %s has no source override entry\n" msgstr " %s ལུ་འབྱུང་ཁུངས་མེདཔ་གཏང་ནིའི་ཐོ་བཀོད་འདི་མེད།\n" -#: ftparchive/writer.cc:712 +#: ftparchive/writer.cc:715 #, c-format msgid " %s has no binary override entry either\n" msgstr " %sལུ་ཟུང་ལྡན་མེདཔ་གཏང་ནིའི་་ཐོ་བཀོད་གང་རུང་ཡང་མིན་འདུག།\n" @@ -2025,7 +2025,7 @@ msgstr "ཨེམ་ཌི་༥་གློག་རིག་རྐྱབ་པ msgid "Problem unlinking %s" msgstr "%s་འབྲེལ་འཐུད་མེདཔ་བཟོ་ནི་ལུ་དཀའ་ངལ།" -#: ftparchive/multicompress.cc:373 apt-inst/extract.cc:188 +#: ftparchive/multicompress.cc:373 apt-inst/extract.cc:187 #, c-format msgid "Failed to rename %s to %s" msgstr "%s་ལུ་%s་བསྐྱར་མིང་བཏགས་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" @@ -2172,54 +2172,54 @@ msgstr "%s་ཡིག་སྣོད་འདི་འབྲི་ནི་ལ msgid "Failed to close file %s" msgstr "%s་ཡིག་སྣོད་འདི་ཁ་བསྡམས་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" -#: apt-inst/extract.cc:96 apt-inst/extract.cc:167 +#: apt-inst/extract.cc:94 apt-inst/extract.cc:165 #, c-format msgid "The path %s is too long" msgstr "%s་འགྲུལ་ལམ་དེ་གནམ་མེད་ས་མེད་རིངམ་འདུག" -#: apt-inst/extract.cc:127 +#: apt-inst/extract.cc:125 #, c-format msgid "Unpacking %s more than once" msgstr "སྦུང་ཚན་བཟོ་བཤོལ་%s་གཅིག་ལས་ལྷག་སྟེ་འདུག" -#: apt-inst/extract.cc:137 +#: apt-inst/extract.cc:135 #, c-format msgid "The directory %s is diverted" msgstr "སྣོད་ཐོ་%s་འདི་ཁ་ཕྱོགས་སྒྱུར་དེ་ཡོད།" -#: apt-inst/extract.cc:147 +#: apt-inst/extract.cc:145 #, c-format msgid "The package is trying to write to the diversion target %s/%s" msgstr "ཐུམ་སྒྲིལ་འདི་གིས་ག་སྒྱུར་དམིགས་གཏད་%s/%s་ལུ་འབྲི་ནིའི་འབད་རྩོལ་བསྐྱེདཔ་དེ་ཡོད།" -#: apt-inst/extract.cc:157 apt-inst/extract.cc:300 +#: apt-inst/extract.cc:155 apt-inst/extract.cc:299 msgid "The diversion path is too long" msgstr "ཁ་སྒྱུར་འགྲུལ་ལམ་འདི་གནམ་མེད་ས་མེད་རིངམ་ཨིན་པས།" -#: apt-inst/extract.cc:243 +#: apt-inst/extract.cc:242 #, c-format msgid "The directory %s is being replaced by a non-directory" msgstr "སྣོད་ཡིག་%s་འདི་སྣོད་ཡིག་མེན་མི་ཅིག་གིས་ཚབ་བཙུག་དེ་ཡོདཔ་ཨིན།" -#: apt-inst/extract.cc:283 +#: apt-inst/extract.cc:282 msgid "Failed to locate node in its hash bucket" msgstr "ཁོང་རའི་དྲྭ་རྟགས། (#)རྡོབ་ནང་ལུ་མཐུད་མཚམས་ག་ཡོད་འཚོལ་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" -#: apt-inst/extract.cc:287 +#: apt-inst/extract.cc:286 msgid "The path is too long" msgstr "འགྲུལ་ལམ་དེ་གནམ་མེད་ས་མེད་རིངམ་ཅིག་ཨིན་པས།" -#: apt-inst/extract.cc:415 +#: apt-inst/extract.cc:414 #, c-format msgid "Overwrite package match with no version for %s" msgstr "%s་གི་དོན་ལུ་ཚབ་སྲུང་འབད་བའི་ཐུམ་སྒྲིལ་དེ་གིས་འཐོན་རིམ་གཅིག་ད་ཡང་མཐུན་སྒྲིག་མི་འབད་བས།" -#: apt-inst/extract.cc:432 +#: apt-inst/extract.cc:431 #, c-format msgid "File %s/%s overwrites the one in the package %s" msgstr "ཐུམ་སྒྲིལ་%s་ནང་ལུ་་ཡིག་སྣོད་%s/%sགིས་གཅིག་ཚབ་སྲུང་འབདཝ་ཨིན།" -#: apt-inst/extract.cc:492 +#: apt-inst/extract.cc:491 #, c-format msgid "Unable to stat %s" msgstr "%s་འདི་ལུ་ངོ་བཤུས་འབད་མ་ཚུགས།" @@ -2602,59 +2602,59 @@ msgstr "འ་ནི་ཨེ་པི་ཊི་ འདི་གིས་ '%s' msgid "The package cache was built for a different architecture" msgstr "ཐུམ་སྒྲིལ་འདྲ་མཛོད་འདི་བཟོ་བཀོད་སོ་སོ་ཅིག་གི་དོན་ལུ་བཟོ་བརྩིགས་འབད་འབདཝ་ཨིནཔས།" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "Depends" msgstr "རྟེནམ་ཨིན།" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "PreDepends" msgstr "སྔོན་གོང་མ་རྟེནམ་ཨིན།" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "Suggests" msgstr "བསམ་འཆར་བཀོདཔ་ཨིན།" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Recommends" msgstr "འོས་སྦྱོར་འབདཝ་ཨིན།" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Conflicts" msgstr "མི་མཐུནམ་ཨིན།" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Replaces" msgstr "ཚབ་བཙུགསཔ་ཨིན།" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Obsoletes" msgstr "ཕན་མེདཔ་བཟོཝ་ཨིན།" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Breaks" msgstr "" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Enhances" msgstr "" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "important" msgstr "གལ་ཅན།" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "required" msgstr "དགོས་མཁོ་ཡོདཔ།" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "standard" msgstr "ཚད་ལྡན།" -#: apt-pkg/pkgcache.cc:319 +#: apt-pkg/pkgcache.cc:328 msgid "optional" msgstr "གདམ་ཁ་ཅན།" -#: apt-pkg/pkgcache.cc:319 +#: apt-pkg/pkgcache.cc:328 msgid "extra" msgstr "ཐེབས།" @@ -2755,12 +2755,12 @@ msgstr "%s་ཁ་ཕྱེ་དོ།" msgid "Line %u too long in source list %s." msgstr "གྲལ་ཐིག་%u་འདི་འབྱུང་ཁུངས་ཐོ་ཡིག་%s་ནང་ལུ་གནམ་མེད་ས་མེད་རིངམོ་འདུག" -#: apt-pkg/sourcelist.cc:285 +#: apt-pkg/sourcelist.cc:289 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "བཟོ་ཉེས་འགྱུར་བའི་གྲལ་ཐིག་%u་ འབྱུང་ཁུངས་ཐོ་ཡིག་%s (དབྱེ་བ)་ནང་ན།" -#: apt-pkg/sourcelist.cc:289 +#: apt-pkg/sourcelist.cc:293 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "དབྱེ་བ་'%s'་འདི་གྲལ་ཐིག་%u་གུར་ལུ་ཡོདཔ་འབྱུང་ཁུངས་ཐོ་ཡིག་%s་གི་ནང་ན་མ་ཤེས་པས།" @@ -2924,14 +2924,14 @@ msgstr "འདྲ་མཛོད་ལུ་མཐུན་འགྱུར་མ #. TRANSLATOR: The first placeholder is a package name, #. the other two should be copied verbatim as they include debug info #: apt-pkg/pkgcachegen.cc:218 apt-pkg/pkgcachegen.cc:228 -#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:325 -#: apt-pkg/pkgcachegen.cc:333 apt-pkg/pkgcachegen.cc:375 -#: apt-pkg/pkgcachegen.cc:379 apt-pkg/pkgcachegen.cc:396 -#: apt-pkg/pkgcachegen.cc:406 apt-pkg/pkgcachegen.cc:410 -#: apt-pkg/pkgcachegen.cc:414 apt-pkg/pkgcachegen.cc:435 -#: apt-pkg/pkgcachegen.cc:477 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:525 apt-pkg/pkgcachegen.cc:556 -#: apt-pkg/pkgcachegen.cc:570 +#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:319 +#: apt-pkg/pkgcachegen.cc:332 apt-pkg/pkgcachegen.cc:374 +#: apt-pkg/pkgcachegen.cc:378 apt-pkg/pkgcachegen.cc:395 +#: apt-pkg/pkgcachegen.cc:403 apt-pkg/pkgcachegen.cc:407 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:432 +#: apt-pkg/pkgcachegen.cc:471 apt-pkg/pkgcachegen.cc:509 +#: apt-pkg/pkgcachegen.cc:516 apt-pkg/pkgcachegen.cc:547 +#: apt-pkg/pkgcachegen.cc:561 #, fuzzy, c-format msgid "Error occurred while processing %s (%s%d)" msgstr "%s (པི་ཀེ་ཇི་འཚོལ་ནི)དེ་བཟོ་སྦྱོར་འབད་བའི་བསྒང་འཛོལ་བ་ཅིག་བྱུང་ནུག" @@ -2953,26 +2953,26 @@ msgstr "པའོ་་་ཁྱོད་ཀྱིས་ ཨེ་པི་ཊ msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "པའོ་་་ཁྱོད་ཀྱིས་ ཨེ་པི་ཊི་འདི་གིས་བཟོད་ཐུབ་པའི་བརྟེན་པའི་ཨང་གྲངས་ལས་ལྷག་ནུག" -#: apt-pkg/pkgcachegen.cc:577 +#: apt-pkg/pkgcachegen.cc:568 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "ཡིག་སྣོད་རྟེན་འབྲེལ་འདི་ཚུ་བཟོ་སྦྱོར་འབད་བའི་བསྒང་ཐུམ་སྒྲིལ་ %s %s ་འདི་མ་ཐོབ་པས།" -#: apt-pkg/pkgcachegen.cc:1150 +#: apt-pkg/pkgcachegen.cc:1197 #, c-format msgid "Couldn't stat source package list %s" msgstr "འབྱུང་ཁུངས་ཐུམ་སྒྲིལ་གྱི་ཐོ་ཡིག་%s་དེ་ངོ་བཤུས་འབད་མ་ཚུགས།" -#: apt-pkg/pkgcachegen.cc:1238 apt-pkg/pkgcachegen.cc:1342 -#: apt-pkg/pkgcachegen.cc:1348 apt-pkg/pkgcachegen.cc:1505 +#: apt-pkg/pkgcachegen.cc:1285 apt-pkg/pkgcachegen.cc:1389 +#: apt-pkg/pkgcachegen.cc:1395 apt-pkg/pkgcachegen.cc:1552 msgid "Reading package lists" msgstr "ཐུམ་སྒྲིལ་ཐོ་ཡིག་ཚུ་ལྷག་དོ།" -#: apt-pkg/pkgcachegen.cc:1255 +#: apt-pkg/pkgcachegen.cc:1302 msgid "Collecting File Provides" msgstr "ཡིག་སྣོད་བྱིན་མི་ཚུ་བསྡུ་ལེན་འབད་དོ།" -#: apt-pkg/pkgcachegen.cc:1447 apt-pkg/pkgcachegen.cc:1454 +#: apt-pkg/pkgcachegen.cc:1494 apt-pkg/pkgcachegen.cc:1501 msgid "IO Error saving source cache" msgstr "IO འཛོལ་བ་འབྱུང་ཁུངས་འདྲ་མཛོད་སྲུང་བཞག་འབད་དོ།" @@ -3178,22 +3178,22 @@ msgstr "འབྱུང་ཁུངས་ཀྱི་ཐོ་ཡིག་གས msgid "Source list entries for this disc are:\n" msgstr "འ་ནི་ ཌིསིཀ་གི་དོན་ལུ་ འབྱུང་ཁུངས་ཧྲིལ་བུ་ཚུ་:\n" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:766 +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:764 #, c-format msgid "Wrote %i records.\n" msgstr "%i་དྲན་མཐོ་དེ་ཚུ་བྲིས་ཡོད།\n" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:768 +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:766 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "%i བྱིག་འགྱོ་ཡོད་པའི་ཡིག་སྣོད་ཚུ་དང་གཅིག་ཁར་ %i དྲན་ཐོ་འདི་ཚུ་བྲིས་ཡོད།\n" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:771 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:769 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "%i་མཐུན་སྒྲིག་མེདཔ་པའི་ཡིག་སྣོད་ཚུ་དང་གཅིག་ཁར་ %i་དྲན་ཐོ་ཚུ་བྲིས་བཞག་ཡོདཔ་ཨིན།\n" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:774 +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:772 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" diff --git a/po/el.po b/po/el.po index 1fcf3303a..1ebee0ecb 100644 --- a/po/el.po +++ b/po/el.po @@ -16,7 +16,7 @@ msgid "" msgstr "" "Project-Id-Version: apt_po_el\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-04-03 14:20+0200\n" +"POT-Creation-Date: 2013-04-08 15:40+0200\n" "PO-Revision-Date: 2008-08-26 18:25+0300\n" "Last-Translator: Θανάσης Νάτσης \n" "Language-Team: Greek \n" @@ -166,7 +166,7 @@ msgstr " Πίνακας Έκδοσης:" #: cmdline/apt-cache.cc:1683 cmdline/apt-cdrom.cc:198 cmdline/apt-config.cc:81 #: cmdline/apt-get.cc:3363 cmdline/apt-mark.cc:375 -#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:590 +#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:591 #: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147 #, c-format msgid "%s %s for %s compiled on %s %s\n" @@ -1603,7 +1603,7 @@ msgstr "Εσωτερικό Σφάλμα" #. Only warn if there are no sources.list.d. #. Only warn if there is no sources.list file. -#: methods/mirror.cc:95 apt-inst/extract.cc:465 +#: methods/mirror.cc:95 apt-inst/extract.cc:464 #: apt-pkg/contrib/cdromutl.cc:183 apt-pkg/contrib/fileutl.cc:400 #: apt-pkg/contrib/fileutl.cc:513 apt-pkg/sourcelist.cc:208 #: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:108 @@ -1730,7 +1730,7 @@ msgstr "" " -c=? Ανάγνωση αυτού του αρχείου ρυθμίσεων\n" " -o=? Καθορισμός αυθαίρετης επιλογής παραμέτρου, πχ -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1339 +#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1386 #, c-format msgid "Unable to write to %s" msgstr "Αδύνατη η εγγραφή στο %s" @@ -1739,31 +1739,31 @@ msgstr "Αδύνατη η εγγραφή στο %s" msgid "Cannot get debconf version. Is debconf installed?" msgstr "Δεν βρέθηκε η έκδοση του debconf. Είναι το debconf εγκατεστημένο;" -#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:348 +#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:349 msgid "Package extension list is too long" msgstr "Ο κατάλογος επεκτάσεων του πακέτου είναι υπερβολικά μακρύς" #: ftparchive/apt-ftparchive.cc:173 ftparchive/apt-ftparchive.cc:190 -#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:263 -#: ftparchive/apt-ftparchive.cc:277 ftparchive/apt-ftparchive.cc:299 +#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:264 +#: ftparchive/apt-ftparchive.cc:278 ftparchive/apt-ftparchive.cc:300 #, c-format msgid "Error processing directory %s" msgstr "Σφάλμα επεξεργασίας του καταλόγου %s" -#: ftparchive/apt-ftparchive.cc:261 +#: ftparchive/apt-ftparchive.cc:262 msgid "Source extension list is too long" msgstr "Ο κατάλογος επεκτάσεων των πηγών είναι υπερβολικά μακρύς" -#: ftparchive/apt-ftparchive.cc:378 +#: ftparchive/apt-ftparchive.cc:379 msgid "Error writing header to contents file" msgstr "Σφάλμα εγγραφής κεφαλίδων στο αρχείο περιεχομένων" -#: ftparchive/apt-ftparchive.cc:408 +#: ftparchive/apt-ftparchive.cc:409 #, c-format msgid "Error processing contents %s" msgstr "Σφάλμα επεξεργασίας περιεχομένων του %s" -#: ftparchive/apt-ftparchive.cc:596 +#: ftparchive/apt-ftparchive.cc:597 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -1847,11 +1847,11 @@ msgstr "" " -c=? Χρήση αυτού του αρχείου ρυθμίσεων\n" " -o=? Ορισμός αυθαίρετης επιλογής ρύθμισης" -#: ftparchive/apt-ftparchive.cc:802 +#: ftparchive/apt-ftparchive.cc:803 msgid "No selections matched" msgstr "Δεν ταιριαξε καμία επιλογή" -#: ftparchive/apt-ftparchive.cc:880 +#: ftparchive/apt-ftparchive.cc:881 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "Λείπουν μερικά αρχεία από την ομάδα πακέτων '%s'" @@ -1880,8 +1880,8 @@ msgstr "" msgid "Unable to open DB file %s: %s" msgstr "Το άνοιγμά του αρχείου της βάσης %s: %s απέτυχε" -#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:181 apt-inst/extract.cc:193 -#: apt-inst/extract.cc:210 +#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:179 apt-inst/extract.cc:192 +#: apt-inst/extract.cc:209 #, c-format msgid "Failed to stat %s" msgstr "Αποτυχία εύρεσης της κατάστασης του %s." @@ -1959,22 +1959,22 @@ msgstr " Αποσύνδεση ορίου του %sB hit.\n" msgid "Archive had no package field" msgstr "Η αρχειοθήκη δεν περιέχει πεδίο πακέτων" -#: ftparchive/writer.cc:411 ftparchive/writer.cc:698 +#: ftparchive/writer.cc:411 ftparchive/writer.cc:701 #, c-format msgid " %s has no override entry\n" msgstr " %s δεν περιέχει εγγραφή παράκαμψης\n" -#: ftparchive/writer.cc:479 ftparchive/writer.cc:814 +#: ftparchive/writer.cc:479 ftparchive/writer.cc:845 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " %s συντηρητής είναι ο %s όχι ο %s\n" -#: ftparchive/writer.cc:708 +#: ftparchive/writer.cc:711 #, c-format msgid " %s has no source override entry\n" msgstr " %s δεν έχει εγγραφή πηγαίας παράκαμψης\n" -#: ftparchive/writer.cc:712 +#: ftparchive/writer.cc:715 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s δεν έχει ούτε εγγραφή δυαδικής παράκαμψης\n" @@ -2048,7 +2048,7 @@ msgstr "Αποτυχία ανάγνωσης κατά τον υπολογισμό msgid "Problem unlinking %s" msgstr "Πρόβλημα κατά την αποσύνδεση του %s" -#: ftparchive/multicompress.cc:373 apt-inst/extract.cc:188 +#: ftparchive/multicompress.cc:373 apt-inst/extract.cc:187 #, c-format msgid "Failed to rename %s to %s" msgstr "Αποτυχία μετονομασίας του %s σε %s" @@ -2194,54 +2194,54 @@ msgstr "Αποτυχία εγγραφής του αρχείου %s" msgid "Failed to close file %s" msgstr "Αποτυχία στο κλείσιμο του αρχείου %s" -#: apt-inst/extract.cc:96 apt-inst/extract.cc:167 +#: apt-inst/extract.cc:94 apt-inst/extract.cc:165 #, c-format msgid "The path %s is too long" msgstr "Η διαδρομή %s έχει υπερβολικό μήκος" -#: apt-inst/extract.cc:127 +#: apt-inst/extract.cc:125 #, c-format msgid "Unpacking %s more than once" msgstr "Αποσυμπίεση του %s πάνω από μια φορά" -#: apt-inst/extract.cc:137 +#: apt-inst/extract.cc:135 #, c-format msgid "The directory %s is diverted" msgstr "Ο φάκελος %s έχει εκτραπεί" -#: apt-inst/extract.cc:147 +#: apt-inst/extract.cc:145 #, c-format msgid "The package is trying to write to the diversion target %s/%s" msgstr "Το πακέτο προσπαθεί να γράψει στον προορισμό εκτροπής %s/%s" -#: apt-inst/extract.cc:157 apt-inst/extract.cc:300 +#: apt-inst/extract.cc:155 apt-inst/extract.cc:299 msgid "The diversion path is too long" msgstr "Η διαδρομή εκτροπής έχει υπερβολικό μήκος" -#: apt-inst/extract.cc:243 +#: apt-inst/extract.cc:242 #, c-format msgid "The directory %s is being replaced by a non-directory" msgstr "Ο φάκελος %s αντικαθίσταται από ένα μη-φάκελο" -#: apt-inst/extract.cc:283 +#: apt-inst/extract.cc:282 msgid "Failed to locate node in its hash bucket" msgstr "Αποτυχία εντοπισμού του κόμβου στην ομάδα hash του" -#: apt-inst/extract.cc:287 +#: apt-inst/extract.cc:286 msgid "The path is too long" msgstr "Η διαδρομή έχει υπερβολικό μήκος" -#: apt-inst/extract.cc:415 +#: apt-inst/extract.cc:414 #, c-format msgid "Overwrite package match with no version for %s" msgstr "Αντικατάσταση πακέτου χωρίς καμία έκδοση %s" -#: apt-inst/extract.cc:432 +#: apt-inst/extract.cc:431 #, c-format msgid "File %s/%s overwrites the one in the package %s" msgstr "Το αρχείο %s/%s αντικαθιστά αυτό στο πακέτο %s" -#: apt-inst/extract.cc:492 +#: apt-inst/extract.cc:491 #, c-format msgid "Unable to stat %s" msgstr "Αδύνατη η εύρεση της κατάστασης του %s" @@ -2630,59 +2630,59 @@ msgstr "Αυτό το APT δεν υποστηρίζει το Σύστημα Απ msgid "The package cache was built for a different architecture" msgstr "Η cache πακέτων κατασκευάστηκε για μια διαφορετική αρχιτεκτονική" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "Depends" msgstr "Εξαρτάται από" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "PreDepends" msgstr "ΠροΕξαρτάται από" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "Suggests" msgstr "Προτείνει" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Recommends" msgstr "Συστήνει" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Conflicts" msgstr "Ασύμβατο με" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Replaces" msgstr "Αντικαθιστά" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Obsoletes" msgstr "Απαρχαιώνει" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Breaks" msgstr "Χαλάει" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Enhances" msgstr "" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "important" msgstr "σημαντικό" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "required" msgstr "απαιτούμενο" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "standard" msgstr "καθιερωμένο" -#: apt-pkg/pkgcache.cc:319 +#: apt-pkg/pkgcache.cc:328 msgid "optional" msgstr "προαιρετικό" -#: apt-pkg/pkgcache.cc:319 +#: apt-pkg/pkgcache.cc:328 msgid "extra" msgstr "επιπλέον" @@ -2782,12 +2782,12 @@ msgstr "Άνοιγμα του %s" msgid "Line %u too long in source list %s." msgstr "Η γραμμή %u έχει υπερβολικό μήκος στη λίστα πηγών %s." -#: apt-pkg/sourcelist.cc:285 +#: apt-pkg/sourcelist.cc:289 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "Λάθος μορφή της γραμμής %u στη λίστα πηγών %s (τύπος)" -#: apt-pkg/sourcelist.cc:289 +#: apt-pkg/sourcelist.cc:293 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "Ο τύπος '%s' στη γραμμή %u στη λίστα πηγών %s είναι άγνωστος " @@ -2955,14 +2955,14 @@ msgstr "Η cache έχει ασύμβατο σύστημα απόδοσης έκ #. TRANSLATOR: The first placeholder is a package name, #. the other two should be copied verbatim as they include debug info #: apt-pkg/pkgcachegen.cc:218 apt-pkg/pkgcachegen.cc:228 -#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:325 -#: apt-pkg/pkgcachegen.cc:333 apt-pkg/pkgcachegen.cc:375 -#: apt-pkg/pkgcachegen.cc:379 apt-pkg/pkgcachegen.cc:396 -#: apt-pkg/pkgcachegen.cc:406 apt-pkg/pkgcachegen.cc:410 -#: apt-pkg/pkgcachegen.cc:414 apt-pkg/pkgcachegen.cc:435 -#: apt-pkg/pkgcachegen.cc:477 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:525 apt-pkg/pkgcachegen.cc:556 -#: apt-pkg/pkgcachegen.cc:570 +#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:319 +#: apt-pkg/pkgcachegen.cc:332 apt-pkg/pkgcachegen.cc:374 +#: apt-pkg/pkgcachegen.cc:378 apt-pkg/pkgcachegen.cc:395 +#: apt-pkg/pkgcachegen.cc:403 apt-pkg/pkgcachegen.cc:407 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:432 +#: apt-pkg/pkgcachegen.cc:471 apt-pkg/pkgcachegen.cc:509 +#: apt-pkg/pkgcachegen.cc:516 apt-pkg/pkgcachegen.cc:547 +#: apt-pkg/pkgcachegen.cc:561 #, fuzzy, c-format msgid "Error occurred while processing %s (%s%d)" msgstr "Προέκυψε σφάλμα κατά την επεξεργασία του %s (FindPkg)" @@ -2987,26 +2987,26 @@ msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "" "Εκπληκτικό, υπερβήκατε τον αριθμό των εξαρτήσεων που υποστηρίζει το APT." -#: apt-pkg/pkgcachegen.cc:577 +#: apt-pkg/pkgcachegen.cc:568 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "Το πακέτο %s %s δε βρέθηκε κατά την επεξεργασία εξαρτήσεων του αρχείου" -#: apt-pkg/pkgcachegen.cc:1150 +#: apt-pkg/pkgcachegen.cc:1197 #, c-format msgid "Couldn't stat source package list %s" msgstr "Αδύνατη η εύρεση της κατάστασης της λίστας πηγαίων πακέτων %s" -#: apt-pkg/pkgcachegen.cc:1238 apt-pkg/pkgcachegen.cc:1342 -#: apt-pkg/pkgcachegen.cc:1348 apt-pkg/pkgcachegen.cc:1505 +#: apt-pkg/pkgcachegen.cc:1285 apt-pkg/pkgcachegen.cc:1389 +#: apt-pkg/pkgcachegen.cc:1395 apt-pkg/pkgcachegen.cc:1552 msgid "Reading package lists" msgstr "Ανάγνωση Λιστών Πακέτων" -#: apt-pkg/pkgcachegen.cc:1255 +#: apt-pkg/pkgcachegen.cc:1302 msgid "Collecting File Provides" msgstr "Συλλογή Παροχών Αρχείου" -#: apt-pkg/pkgcachegen.cc:1447 apt-pkg/pkgcachegen.cc:1454 +#: apt-pkg/pkgcachegen.cc:1494 apt-pkg/pkgcachegen.cc:1501 msgid "IO Error saving source cache" msgstr "Σφάλμα IO κατά την αποθήκευση της cache πηγών" @@ -3213,22 +3213,22 @@ msgstr "Eγγραφή νέας λίστας πηγών\n" msgid "Source list entries for this disc are:\n" msgstr "Οι κατάλογοι με τις πηγές αυτού του δίσκου είναι: \n" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:766 +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:764 #, c-format msgid "Wrote %i records.\n" msgstr "Εγιναν %i εγγραφές.\n" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:768 +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:766 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "Εγιναν %i εγγραφές με %i απώντα αρχεία.\n" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:771 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:769 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "Εγιναν %i εγγραφές με %i ασύμβατα αρχεία.\n" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:774 +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:772 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "Εγιναν %i εγγραφές με %i απώντα αρχεία και %i ασύμβατα αρχεία\n" diff --git a/po/es.po b/po/es.po index 0307f0558..7b4bbb931 100644 --- a/po/es.po +++ b/po/es.po @@ -33,7 +33,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.8.10\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-04-03 14:20+0200\n" +"POT-Creation-Date: 2013-04-08 15:40+0200\n" "PO-Revision-Date: 2011-01-24 11:47+0100\n" "Last-Translator: Javier Fernández-Sanguino Peña \n" "Language-Team: Debian Spanish \n" @@ -211,7 +211,7 @@ msgstr " Tabla de versión:" #: cmdline/apt-cache.cc:1683 cmdline/apt-cdrom.cc:198 cmdline/apt-config.cc:81 #: cmdline/apt-get.cc:3363 cmdline/apt-mark.cc:375 -#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:590 +#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:591 #: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147 #, c-format msgid "%s %s for %s compiled on %s %s\n" @@ -1665,7 +1665,7 @@ msgstr "Error interno" #. Only warn if there are no sources.list.d. #. Only warn if there is no sources.list file. -#: methods/mirror.cc:95 apt-inst/extract.cc:465 +#: methods/mirror.cc:95 apt-inst/extract.cc:464 #: apt-pkg/contrib/cdromutl.cc:183 apt-pkg/contrib/fileutl.cc:400 #: apt-pkg/contrib/fileutl.cc:513 apt-pkg/sourcelist.cc:208 #: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:108 @@ -1797,7 +1797,7 @@ msgstr "" " -o=? Establece una opción de configuración arbitraria, p. ej. -o dir::" "cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1339 +#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1386 #, c-format msgid "Unable to write to %s" msgstr "No se puede escribir en %s" @@ -1806,31 +1806,31 @@ msgstr "No se puede escribir en %s" msgid "Cannot get debconf version. Is debconf installed?" msgstr "No se puede encontrar la versión de debconf. ¿Está debconf instalado?" -#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:348 +#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:349 msgid "Package extension list is too long" msgstr "La lista de extensión de paquetes es demasiado larga" #: ftparchive/apt-ftparchive.cc:173 ftparchive/apt-ftparchive.cc:190 -#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:263 -#: ftparchive/apt-ftparchive.cc:277 ftparchive/apt-ftparchive.cc:299 +#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:264 +#: ftparchive/apt-ftparchive.cc:278 ftparchive/apt-ftparchive.cc:300 #, c-format msgid "Error processing directory %s" msgstr "Error procesando el directorio %s" -#: ftparchive/apt-ftparchive.cc:261 +#: ftparchive/apt-ftparchive.cc:262 msgid "Source extension list is too long" msgstr "La lista de extensión de fuentes es demasiado larga" -#: ftparchive/apt-ftparchive.cc:378 +#: ftparchive/apt-ftparchive.cc:379 msgid "Error writing header to contents file" msgstr "Error escribiendo cabeceras de archivos de contenido" -#: ftparchive/apt-ftparchive.cc:408 +#: ftparchive/apt-ftparchive.cc:409 #, c-format msgid "Error processing contents %s" msgstr "Error procesando contenidos %s" -#: ftparchive/apt-ftparchive.cc:596 +#: ftparchive/apt-ftparchive.cc:597 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -1915,11 +1915,11 @@ msgstr "" " -c=? Lee este archivo de configuración\n" " -o=? Establece una opción de configuración arbitraria" -#: ftparchive/apt-ftparchive.cc:802 +#: ftparchive/apt-ftparchive.cc:803 msgid "No selections matched" msgstr "Ninguna selección coincide" -#: ftparchive/apt-ftparchive.cc:880 +#: ftparchive/apt-ftparchive.cc:881 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "Faltan algunos archivos en el grupo de archivo de paquetes «%s»" @@ -1947,8 +1947,8 @@ msgstr "" msgid "Unable to open DB file %s: %s" msgstr "No se pudo abrir el archivo DB %s: %s" -#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:181 apt-inst/extract.cc:193 -#: apt-inst/extract.cc:210 +#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:179 apt-inst/extract.cc:192 +#: apt-inst/extract.cc:209 #, c-format msgid "Failed to stat %s" msgstr "No pude leer %s" @@ -2026,22 +2026,22 @@ msgstr " DeLink se ha llegado al límite de %sB.\n" msgid "Archive had no package field" msgstr "Archivo no tiene campo de paquetes" -#: ftparchive/writer.cc:411 ftparchive/writer.cc:698 +#: ftparchive/writer.cc:411 ftparchive/writer.cc:701 #, c-format msgid " %s has no override entry\n" msgstr " %s no tiene entrada de predominio\n" -#: ftparchive/writer.cc:479 ftparchive/writer.cc:814 +#: ftparchive/writer.cc:479 ftparchive/writer.cc:845 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " el encargado de %s es %s y no %s\n" -#: ftparchive/writer.cc:708 +#: ftparchive/writer.cc:711 #, c-format msgid " %s has no source override entry\n" msgstr " %s no tiene una entrada fuente predominante\n" -#: ftparchive/writer.cc:712 +#: ftparchive/writer.cc:715 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s tampoco tiene una entrada binaria predominante\n" @@ -2115,7 +2115,7 @@ msgstr "No se pudo leer mientras se computaba MD5" msgid "Problem unlinking %s" msgstr "Se produjo un problema al desligar %s" -#: ftparchive/multicompress.cc:373 apt-inst/extract.cc:188 +#: ftparchive/multicompress.cc:373 apt-inst/extract.cc:187 #, c-format msgid "Failed to rename %s to %s" msgstr "Falló el renombre de %s a %s" @@ -2263,54 +2263,54 @@ msgstr "Falló la escritura del archivo %s" msgid "Failed to close file %s" msgstr "No pude cerrar el archivo %s" -#: apt-inst/extract.cc:96 apt-inst/extract.cc:167 +#: apt-inst/extract.cc:94 apt-inst/extract.cc:165 #, c-format msgid "The path %s is too long" msgstr "La trayectoria %s es demasiado larga" -#: apt-inst/extract.cc:127 +#: apt-inst/extract.cc:125 #, c-format msgid "Unpacking %s more than once" msgstr "Desempaquetando %s más de una vez" -#: apt-inst/extract.cc:137 +#: apt-inst/extract.cc:135 #, c-format msgid "The directory %s is diverted" msgstr "El directorio %s está desviado" -#: apt-inst/extract.cc:147 +#: apt-inst/extract.cc:145 #, c-format msgid "The package is trying to write to the diversion target %s/%s" msgstr "El paquete está tratando de escribir al blanco desviado %s/%s" -#: apt-inst/extract.cc:157 apt-inst/extract.cc:300 +#: apt-inst/extract.cc:155 apt-inst/extract.cc:299 msgid "The diversion path is too long" msgstr "La trayectoria de desviación es demasiado larga" -#: apt-inst/extract.cc:243 +#: apt-inst/extract.cc:242 #, c-format msgid "The directory %s is being replaced by a non-directory" msgstr "El directorio %s está siendo reemplazado por un no-directorio" -#: apt-inst/extract.cc:283 +#: apt-inst/extract.cc:282 msgid "Failed to locate node in its hash bucket" msgstr "No pude localizar el nodo en su bote de enlace" -#: apt-inst/extract.cc:287 +#: apt-inst/extract.cc:286 msgid "The path is too long" msgstr "La trayectoria es muy larga" -#: apt-inst/extract.cc:415 +#: apt-inst/extract.cc:414 #, c-format msgid "Overwrite package match with no version for %s" msgstr "Sobreescribiendo concordancia del paquete sin versión para %s" -#: apt-inst/extract.cc:432 +#: apt-inst/extract.cc:431 #, c-format msgid "File %s/%s overwrites the one in the package %s" msgstr "El archivo %s/%s sobreescribe al que está en el paquete %s" -#: apt-inst/extract.cc:492 +#: apt-inst/extract.cc:491 #, c-format msgid "Unable to stat %s" msgstr "No pude leer %s" @@ -2701,59 +2701,59 @@ msgstr "Esta versión de APT no soporta el sistema de versiones «%s»" msgid "The package cache was built for a different architecture" msgstr "La caché de paquetes se había creado para una arquitectura diferente" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "Depends" msgstr "Depende" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "PreDepends" msgstr "PreDepende" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "Suggests" msgstr "Sugiere" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Recommends" msgstr "Recomienda" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Conflicts" msgstr "Entra en conflicto" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Replaces" msgstr "Reemplaza" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Obsoletes" msgstr "Hace obsoleto" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Breaks" msgstr "Rompe" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Enhances" msgstr "Mejora" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "important" msgstr "importante" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "required" msgstr "requiere" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "standard" msgstr "estándar" -#: apt-pkg/pkgcache.cc:319 +#: apt-pkg/pkgcache.cc:328 msgid "optional" msgstr "opcional" -#: apt-pkg/pkgcache.cc:319 +#: apt-pkg/pkgcache.cc:328 msgid "extra" msgstr "extra" @@ -2859,12 +2859,12 @@ msgstr "Abriendo %s" msgid "Line %u too long in source list %s." msgstr "Línea %u demasiado larga en la lista de fuentes %s." -#: apt-pkg/sourcelist.cc:285 +#: apt-pkg/sourcelist.cc:289 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "Línea %u mal formada en la lista de fuentes %s (tipo)" -#: apt-pkg/sourcelist.cc:289 +#: apt-pkg/sourcelist.cc:293 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "Tipo «%s» desconocido en la línea %u de lista de fuentes %s" @@ -3034,14 +3034,14 @@ msgstr "La caché tiene una versión incompatible de sistema de versiones" #. TRANSLATOR: The first placeholder is a package name, #. the other two should be copied verbatim as they include debug info #: apt-pkg/pkgcachegen.cc:218 apt-pkg/pkgcachegen.cc:228 -#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:325 -#: apt-pkg/pkgcachegen.cc:333 apt-pkg/pkgcachegen.cc:375 -#: apt-pkg/pkgcachegen.cc:379 apt-pkg/pkgcachegen.cc:396 -#: apt-pkg/pkgcachegen.cc:406 apt-pkg/pkgcachegen.cc:410 -#: apt-pkg/pkgcachegen.cc:414 apt-pkg/pkgcachegen.cc:435 -#: apt-pkg/pkgcachegen.cc:477 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:525 apt-pkg/pkgcachegen.cc:556 -#: apt-pkg/pkgcachegen.cc:570 +#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:319 +#: apt-pkg/pkgcachegen.cc:332 apt-pkg/pkgcachegen.cc:374 +#: apt-pkg/pkgcachegen.cc:378 apt-pkg/pkgcachegen.cc:395 +#: apt-pkg/pkgcachegen.cc:403 apt-pkg/pkgcachegen.cc:407 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:432 +#: apt-pkg/pkgcachegen.cc:471 apt-pkg/pkgcachegen.cc:509 +#: apt-pkg/pkgcachegen.cc:516 apt-pkg/pkgcachegen.cc:547 +#: apt-pkg/pkgcachegen.cc:561 #, fuzzy, c-format msgid "Error occurred while processing %s (%s%d)" msgstr "Se produjo un error mientras se procesaba %s (FindPkg)" @@ -3066,27 +3066,27 @@ msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "" "Vaya, excedió el número de dependencias que este APT es capaz de manejar." -#: apt-pkg/pkgcachegen.cc:577 +#: apt-pkg/pkgcachegen.cc:568 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "" "Al procesar las dependencias de archivos no se encontró el paquete %s %s" -#: apt-pkg/pkgcachegen.cc:1150 +#: apt-pkg/pkgcachegen.cc:1197 #, c-format msgid "Couldn't stat source package list %s" msgstr "No se puede leer la lista de paquetes fuente %s" -#: apt-pkg/pkgcachegen.cc:1238 apt-pkg/pkgcachegen.cc:1342 -#: apt-pkg/pkgcachegen.cc:1348 apt-pkg/pkgcachegen.cc:1505 +#: apt-pkg/pkgcachegen.cc:1285 apt-pkg/pkgcachegen.cc:1389 +#: apt-pkg/pkgcachegen.cc:1395 apt-pkg/pkgcachegen.cc:1552 msgid "Reading package lists" msgstr "Leyendo lista de paquetes" -#: apt-pkg/pkgcachegen.cc:1255 +#: apt-pkg/pkgcachegen.cc:1302 msgid "Collecting File Provides" msgstr "Recogiendo archivos que proveen" -#: apt-pkg/pkgcachegen.cc:1447 apt-pkg/pkgcachegen.cc:1454 +#: apt-pkg/pkgcachegen.cc:1494 apt-pkg/pkgcachegen.cc:1501 msgid "IO Error saving source cache" msgstr "Error de E/S guardando caché fuente" @@ -3301,22 +3301,22 @@ msgstr "Escribiendo nueva lista de fuente\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/indexcopy.cc:236 apt-pkg/indexcopy.cc:766 +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:764 #, c-format msgid "Wrote %i records.\n" msgstr "%i registros escritos.\n" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:768 +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:766 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "%i registros escritos con %i fichero de menos.\n" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:771 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:769 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "%i registros escritos con %i fichero mal emparejado\n" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:774 +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:772 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" diff --git a/po/eu.po b/po/eu.po index 083704182..c11691f86 100644 --- a/po/eu.po +++ b/po/eu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: apt_po_eu\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-04-03 14:20+0200\n" +"POT-Creation-Date: 2013-04-08 15:40+0200\n" "PO-Revision-Date: 2009-05-17 00:41+0200\n" "Last-Translator: Piarres Beobide \n" "Language-Team: Euskara \n" @@ -159,7 +159,7 @@ msgstr " Bertsio taula:" #: cmdline/apt-cache.cc:1683 cmdline/apt-cdrom.cc:198 cmdline/apt-config.cc:81 #: cmdline/apt-get.cc:3363 cmdline/apt-mark.cc:375 -#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:590 +#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:591 #: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147 #, c-format msgid "%s %s for %s compiled on %s %s\n" @@ -1586,7 +1586,7 @@ msgstr "Barne errorea" #. Only warn if there are no sources.list.d. #. Only warn if there is no sources.list file. -#: methods/mirror.cc:95 apt-inst/extract.cc:465 +#: methods/mirror.cc:95 apt-inst/extract.cc:464 #: apt-pkg/contrib/cdromutl.cc:183 apt-pkg/contrib/fileutl.cc:400 #: apt-pkg/contrib/fileutl.cc:513 apt-pkg/sourcelist.cc:208 #: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:108 @@ -1711,7 +1711,7 @@ msgstr "" " -c=? Irakurri konfigurazio fitxategi hau\n" " -o=? Ezarri konfigurazio aukera arbitrario bat. Adib.: -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1339 +#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1386 #, c-format msgid "Unable to write to %s" msgstr "%s : ezin da idatzi" @@ -1720,31 +1720,31 @@ msgstr "%s : ezin da idatzi" msgid "Cannot get debconf version. Is debconf installed?" msgstr "Ezin da debconf bertsioa eskuratu. Debconf instalatuta dago?" -#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:348 +#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:349 msgid "Package extension list is too long" msgstr "Pakete luzapenen zerrenda luzeegia da" #: ftparchive/apt-ftparchive.cc:173 ftparchive/apt-ftparchive.cc:190 -#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:263 -#: ftparchive/apt-ftparchive.cc:277 ftparchive/apt-ftparchive.cc:299 +#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:264 +#: ftparchive/apt-ftparchive.cc:278 ftparchive/apt-ftparchive.cc:300 #, c-format msgid "Error processing directory %s" msgstr "Errorea direktorioa prozesatzean %s" -#: ftparchive/apt-ftparchive.cc:261 +#: ftparchive/apt-ftparchive.cc:262 msgid "Source extension list is too long" msgstr "Iturburu luzapenen zerrenda luzeegia da" -#: ftparchive/apt-ftparchive.cc:378 +#: ftparchive/apt-ftparchive.cc:379 msgid "Error writing header to contents file" msgstr "Errorea eduki fitxategiaren goiburua idaztean" -#: ftparchive/apt-ftparchive.cc:408 +#: ftparchive/apt-ftparchive.cc:409 #, c-format msgid "Error processing contents %s" msgstr "Errorea edukiak prozesatzean %s" -#: ftparchive/apt-ftparchive.cc:596 +#: ftparchive/apt-ftparchive.cc:597 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -1823,11 +1823,11 @@ msgstr "" " -c=? Irakurri konfigurazio fitxategi hau\n" " -o=? Ezarri konfigurazio aukera arbitrario bat" -#: ftparchive/apt-ftparchive.cc:802 +#: ftparchive/apt-ftparchive.cc:803 msgid "No selections matched" msgstr "Ez dago bat datorren hautapenik" -#: ftparchive/apt-ftparchive.cc:880 +#: ftparchive/apt-ftparchive.cc:881 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "Fitxategi batzuk falta dira `%s' pakete fitxategien taldean" @@ -1856,8 +1856,8 @@ msgstr "" msgid "Unable to open DB file %s: %s" msgstr "Ezin da ireki %s datu-base fitxategia: %s" -#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:181 apt-inst/extract.cc:193 -#: apt-inst/extract.cc:210 +#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:179 apt-inst/extract.cc:192 +#: apt-inst/extract.cc:209 #, c-format msgid "Failed to stat %s" msgstr "Huts egin du %s(e)tik datuak lortzean" @@ -1935,22 +1935,22 @@ msgstr " DeLink-en mugara (%sB) heldu da.\n" msgid "Archive had no package field" msgstr "Artxiboak ez du pakete eremurik" -#: ftparchive/writer.cc:411 ftparchive/writer.cc:698 +#: ftparchive/writer.cc:411 ftparchive/writer.cc:701 #, c-format msgid " %s has no override entry\n" msgstr " %s: ez du override sarrerarik\n" -#: ftparchive/writer.cc:479 ftparchive/writer.cc:814 +#: ftparchive/writer.cc:479 ftparchive/writer.cc:845 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " %s mantentzailea %s da, eta ez %s\n" -#: ftparchive/writer.cc:708 +#: ftparchive/writer.cc:711 #, c-format msgid " %s has no source override entry\n" msgstr " %s: ez du jatorri gainidazketa sarrerarik\n" -#: ftparchive/writer.cc:712 +#: ftparchive/writer.cc:715 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s: ez du bitar gainidazketa sarrerarik\n" @@ -2024,7 +2024,7 @@ msgstr "Huts egin du MD5 konputatzean" msgid "Problem unlinking %s" msgstr "Arazoa %s desestekatzean" -#: ftparchive/multicompress.cc:373 apt-inst/extract.cc:188 +#: ftparchive/multicompress.cc:373 apt-inst/extract.cc:187 #, c-format msgid "Failed to rename %s to %s" msgstr "Huts egin du %s izenaren ordez %s ipintzean" @@ -2169,54 +2169,54 @@ msgstr "Ezin izan da %s fitxategian idatzi" msgid "Failed to close file %s" msgstr "Ezin izan da %s fitxategia itxi" -#: apt-inst/extract.cc:96 apt-inst/extract.cc:167 +#: apt-inst/extract.cc:94 apt-inst/extract.cc:165 #, c-format msgid "The path %s is too long" msgstr "%s bidea luzeegia da" -#: apt-inst/extract.cc:127 +#: apt-inst/extract.cc:125 #, c-format msgid "Unpacking %s more than once" msgstr "%s behin baino gehiagotan deskonprimitzen" -#: apt-inst/extract.cc:137 +#: apt-inst/extract.cc:135 #, c-format msgid "The directory %s is diverted" msgstr "%s direktorioa desbideratuta dago" -#: apt-inst/extract.cc:147 +#: apt-inst/extract.cc:145 #, c-format msgid "The package is trying to write to the diversion target %s/%s" msgstr "Paketea desbideratze helburuan %s/%s idazten saiatzen ari da" -#: apt-inst/extract.cc:157 apt-inst/extract.cc:300 +#: apt-inst/extract.cc:155 apt-inst/extract.cc:299 msgid "The diversion path is too long" msgstr "Desbideratzearen bidea luzeegia da" -#: apt-inst/extract.cc:243 +#: apt-inst/extract.cc:242 #, c-format msgid "The directory %s is being replaced by a non-directory" msgstr "%s direktorioa ez-direktorio batekin ordezten ari da" -#: apt-inst/extract.cc:283 +#: apt-inst/extract.cc:282 msgid "Failed to locate node in its hash bucket" msgstr "Huts egin du nodoa bere hash-ontzian lokalizatzean" -#: apt-inst/extract.cc:287 +#: apt-inst/extract.cc:286 msgid "The path is too long" msgstr "Bidea luzeegia da" -#: apt-inst/extract.cc:415 +#: apt-inst/extract.cc:414 #, c-format msgid "Overwrite package match with no version for %s" msgstr "Gainidatzi pakete-konkordantzia %s(r)en bertsiorik gabe" -#: apt-inst/extract.cc:432 +#: apt-inst/extract.cc:431 #, c-format msgid "File %s/%s overwrites the one in the package %s" msgstr "%s/%s fitxategiak %s paketekoa gainidazten du" -#: apt-inst/extract.cc:492 +#: apt-inst/extract.cc:491 #, c-format msgid "Unable to stat %s" msgstr "Ezin da daturik lortu %s(e)tik" @@ -2604,59 +2604,59 @@ msgstr "APT honek ez du '%s' bertsio sistema onartzen" msgid "The package cache was built for a different architecture" msgstr "Paketeen katxea beste arkitektura batentzat sortuta dago" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "Depends" msgstr "Mendekotasuna:" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "PreDepends" msgstr "Aurremendekotasuna:" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "Suggests" msgstr "Iradokizuna:" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Recommends" msgstr "Gomendioa:" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Conflicts" msgstr "Gatazka:" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Replaces" msgstr "Ordeztea:" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Obsoletes" msgstr "Zaharkitzea:" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Breaks" msgstr "Apurturik" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Enhances" msgstr "" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "important" msgstr "garrantzitsua" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "required" msgstr "beharrezkoa" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "standard" msgstr "estandarra" -#: apt-pkg/pkgcache.cc:319 +#: apt-pkg/pkgcache.cc:328 msgid "optional" msgstr "aukerakoa" -#: apt-pkg/pkgcache.cc:319 +#: apt-pkg/pkgcache.cc:328 msgid "extra" msgstr "estra" @@ -2756,12 +2756,12 @@ msgstr "%s irekitzen" msgid "Line %u too long in source list %s." msgstr "%2$s iturburu zerrendako %1$u lerroa luzeegia da." -#: apt-pkg/sourcelist.cc:285 +#: apt-pkg/sourcelist.cc:289 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "Gaizki osatutako %u lerroa %s Iturburu zerrendan (type)" -#: apt-pkg/sourcelist.cc:289 +#: apt-pkg/sourcelist.cc:293 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "'%s' mota ez da ezagutzen %u lerroan %s Iturburu zerrendan" @@ -2923,14 +2923,14 @@ msgstr "Katxearen bertsio sistema ez da bateragarria" #. TRANSLATOR: The first placeholder is a package name, #. the other two should be copied verbatim as they include debug info #: apt-pkg/pkgcachegen.cc:218 apt-pkg/pkgcachegen.cc:228 -#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:325 -#: apt-pkg/pkgcachegen.cc:333 apt-pkg/pkgcachegen.cc:375 -#: apt-pkg/pkgcachegen.cc:379 apt-pkg/pkgcachegen.cc:396 -#: apt-pkg/pkgcachegen.cc:406 apt-pkg/pkgcachegen.cc:410 -#: apt-pkg/pkgcachegen.cc:414 apt-pkg/pkgcachegen.cc:435 -#: apt-pkg/pkgcachegen.cc:477 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:525 apt-pkg/pkgcachegen.cc:556 -#: apt-pkg/pkgcachegen.cc:570 +#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:319 +#: apt-pkg/pkgcachegen.cc:332 apt-pkg/pkgcachegen.cc:374 +#: apt-pkg/pkgcachegen.cc:378 apt-pkg/pkgcachegen.cc:395 +#: apt-pkg/pkgcachegen.cc:403 apt-pkg/pkgcachegen.cc:407 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:432 +#: apt-pkg/pkgcachegen.cc:471 apt-pkg/pkgcachegen.cc:509 +#: apt-pkg/pkgcachegen.cc:516 apt-pkg/pkgcachegen.cc:547 +#: apt-pkg/pkgcachegen.cc:561 #, fuzzy, c-format msgid "Error occurred while processing %s (%s%d)" msgstr "Errorea gertatu da %s prozesatzean (FindPkg)" @@ -2951,26 +2951,26 @@ msgstr "APT honek maneia dezakeen azalpen kopurua gainditu duzu." msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "APT honek maneia dezakeen mendekotasun muga gainditu duzu." -#: apt-pkg/pkgcachegen.cc:577 +#: apt-pkg/pkgcachegen.cc:568 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "%s %s paketea ez da aurkitu fitxategi mendekotasunak prozesatzean" -#: apt-pkg/pkgcachegen.cc:1150 +#: apt-pkg/pkgcachegen.cc:1197 #, c-format msgid "Couldn't stat source package list %s" msgstr "Ezin da atzitu %s iturburu paketeen zerrenda" -#: apt-pkg/pkgcachegen.cc:1238 apt-pkg/pkgcachegen.cc:1342 -#: apt-pkg/pkgcachegen.cc:1348 apt-pkg/pkgcachegen.cc:1505 +#: apt-pkg/pkgcachegen.cc:1285 apt-pkg/pkgcachegen.cc:1389 +#: apt-pkg/pkgcachegen.cc:1395 apt-pkg/pkgcachegen.cc:1552 msgid "Reading package lists" msgstr "Pakete Zerrenda irakurtzen" -#: apt-pkg/pkgcachegen.cc:1255 +#: apt-pkg/pkgcachegen.cc:1302 msgid "Collecting File Provides" msgstr "Fitxategiaren erreferentziak biltzen" -#: apt-pkg/pkgcachegen.cc:1447 apt-pkg/pkgcachegen.cc:1454 +#: apt-pkg/pkgcachegen.cc:1494 apt-pkg/pkgcachegen.cc:1501 msgid "IO Error saving source cache" msgstr "S/I errorea iturburu katxea gordetzean" @@ -3177,22 +3177,22 @@ msgstr "Jatorri zerrenda berria idazten\n" msgid "Source list entries for this disc are:\n" msgstr "Diskoarentzako jatorri sarrerak:\n" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:766 +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:764 #, c-format msgid "Wrote %i records.\n" msgstr "%i erregistro grabaturik.\n" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:768 +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:766 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "%i erregistro eta %i galdutako fitxategi grabaturik.\n" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:771 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:769 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "%i erregistro eta %i okerreko fitxategi grabaturik\n" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:774 +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:772 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" diff --git a/po/fi.po b/po/fi.po index 0157fcf3b..183d7c395 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 \n" -"POT-Creation-Date: 2013-04-03 14:20+0200\n" +"POT-Creation-Date: 2013-04-08 15:40+0200\n" "PO-Revision-Date: 2008-12-11 14:52+0200\n" "Last-Translator: Tapio Lehtonen \n" "Language-Team: Finnish \n" @@ -157,7 +157,7 @@ msgstr " Versiotaulukko:" #: cmdline/apt-cache.cc:1683 cmdline/apt-cdrom.cc:198 cmdline/apt-config.cc:81 #: cmdline/apt-get.cc:3363 cmdline/apt-mark.cc:375 -#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:590 +#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:591 #: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147 #, c-format msgid "%s %s for %s compiled on %s %s\n" @@ -1578,7 +1578,7 @@ msgstr "Sisäinen virhe" #. Only warn if there are no sources.list.d. #. Only warn if there is no sources.list file. -#: methods/mirror.cc:95 apt-inst/extract.cc:465 +#: methods/mirror.cc:95 apt-inst/extract.cc:464 #: apt-pkg/contrib/cdromutl.cc:183 apt-pkg/contrib/fileutl.cc:400 #: apt-pkg/contrib/fileutl.cc:513 apt-pkg/sourcelist.cc:208 #: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:108 @@ -1704,7 +1704,7 @@ msgstr "" " -c=? Lue tämä asetustiedosto\n" " -o=? Aseta mikä asetusvalitsin tahansa, esim. -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1339 +#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1386 #, c-format msgid "Unable to write to %s" msgstr "Tiedostoon %s kirjoittaminen ei onnistu" @@ -1713,32 +1713,32 @@ msgstr "Tiedostoon %s kirjoittaminen ei onnistu" msgid "Cannot get debconf version. Is debconf installed?" msgstr "Ohjelman debconf versiota ei saa selvitettyä. Onko debconf asennettu?" -#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:348 +#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:349 msgid "Package extension list is too long" msgstr "Paketin laajennuslista on liian pitkä" #: ftparchive/apt-ftparchive.cc:173 ftparchive/apt-ftparchive.cc:190 -#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:263 -#: ftparchive/apt-ftparchive.cc:277 ftparchive/apt-ftparchive.cc:299 +#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:264 +#: ftparchive/apt-ftparchive.cc:278 ftparchive/apt-ftparchive.cc:300 #, c-format msgid "Error processing directory %s" msgstr "Tapahtui virhe käsiteltäessa kansiota %s" -#: ftparchive/apt-ftparchive.cc:261 +#: ftparchive/apt-ftparchive.cc:262 msgid "Source extension list is too long" msgstr "Lähteiden laajennuslista on liian pitkä" -#: ftparchive/apt-ftparchive.cc:378 +#: ftparchive/apt-ftparchive.cc:379 msgid "Error writing header to contents file" msgstr "" "Tapahtui virhe kirjoitettaessa otsikkotietoa sisällysluettelotiedostoon" -#: ftparchive/apt-ftparchive.cc:408 +#: ftparchive/apt-ftparchive.cc:409 #, c-format msgid "Error processing contents %s" msgstr "Tapahtui virhe käsiteltäessä sisällysluetteloa %s" -#: ftparchive/apt-ftparchive.cc:596 +#: ftparchive/apt-ftparchive.cc:597 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -1820,11 +1820,11 @@ msgstr "" " -c=? Lue tämä asetustiedosto\n" " -o=? Aseta mikä asetusvalitsin tahansa" -#: ftparchive/apt-ftparchive.cc:802 +#: ftparchive/apt-ftparchive.cc:803 msgid "No selections matched" msgstr "Mitkään valinnat eivät täsmänneet" -#: ftparchive/apt-ftparchive.cc:880 +#: ftparchive/apt-ftparchive.cc:881 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "Pakettitiedostojen ryhmästä \"%s\" puuttuu joitain tiedostoja" @@ -1853,8 +1853,8 @@ msgstr "" msgid "Unable to open DB file %s: %s" msgstr "Tietokantatiedostoa %s ei saatu avattua: %s" -#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:181 apt-inst/extract.cc:193 -#: apt-inst/extract.cc:210 +#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:179 apt-inst/extract.cc:192 +#: apt-inst/extract.cc:209 #, c-format msgid "Failed to stat %s" msgstr "Tiedostolle %s ei toimi stat" @@ -1932,22 +1932,22 @@ msgstr " DeLinkin yläraja %st saavutettu.\n" msgid "Archive had no package field" msgstr "Arkistossa ei ollut pakettikenttää" -#: ftparchive/writer.cc:411 ftparchive/writer.cc:698 +#: ftparchive/writer.cc:411 ftparchive/writer.cc:701 #, c-format msgid " %s has no override entry\n" msgstr " %s:llä ei ole poikkeustietuetta\n" -#: ftparchive/writer.cc:479 ftparchive/writer.cc:814 +#: ftparchive/writer.cc:479 ftparchive/writer.cc:845 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " %s ylläpitäjä on %s eikä %s\n" -#: ftparchive/writer.cc:708 +#: ftparchive/writer.cc:711 #, c-format msgid " %s has no source override entry\n" msgstr " %s:llä ei ole poikkeustietuetta\n" -#: ftparchive/writer.cc:712 +#: ftparchive/writer.cc:715 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s:llä ei ole binääristäkään poikkeustietuetta\n" @@ -2021,7 +2021,7 @@ msgstr "Lukeminen ei onnistunut laskettaessa MD5:ttä" msgid "Problem unlinking %s" msgstr "Ilmeni pulmia poistettaessa tiedosto %s" -#: ftparchive/multicompress.cc:373 apt-inst/extract.cc:188 +#: ftparchive/multicompress.cc:373 apt-inst/extract.cc:187 #, c-format msgid "Failed to rename %s to %s" msgstr "Nimen muuttaminen %s -> %s ei onnistunut" @@ -2166,54 +2166,54 @@ msgstr "Tiedoston %s kirjoittaminen ei onnistunut" msgid "Failed to close file %s" msgstr "Tiedoston %s sulkeminen ei onnistunut" -#: apt-inst/extract.cc:96 apt-inst/extract.cc:167 +#: apt-inst/extract.cc:94 apt-inst/extract.cc:165 #, c-format msgid "The path %s is too long" msgstr "Polku %s on liian pitkä" -#: apt-inst/extract.cc:127 +#: apt-inst/extract.cc:125 #, c-format msgid "Unpacking %s more than once" msgstr "Purettiin %s useammin kuin kerran" -#: apt-inst/extract.cc:137 +#: apt-inst/extract.cc:135 #, c-format msgid "The directory %s is diverted" msgstr "Kansio %s on korvautunut" -#: apt-inst/extract.cc:147 +#: apt-inst/extract.cc:145 #, c-format msgid "The package is trying to write to the diversion target %s/%s" msgstr "Paketti yrittää kirjoittaa korvautuksen kohteeseen %s/%s" -#: apt-inst/extract.cc:157 apt-inst/extract.cc:300 +#: apt-inst/extract.cc:155 apt-inst/extract.cc:299 msgid "The diversion path is too long" msgstr "Korvautuspolku on liian pitkä" -#: apt-inst/extract.cc:243 +#: apt-inst/extract.cc:242 #, c-format msgid "The directory %s is being replaced by a non-directory" msgstr "Kansiota %s ollaan korvaamassa muulla kuin kansiolla" -#: apt-inst/extract.cc:283 +#: apt-inst/extract.cc:282 msgid "Failed to locate node in its hash bucket" msgstr "Solmua ei löytynyt sen hajautuslokerosta" -#: apt-inst/extract.cc:287 +#: apt-inst/extract.cc:286 msgid "The path is too long" msgstr "Polku on liian pitkä" -#: apt-inst/extract.cc:415 +#: apt-inst/extract.cc:414 #, c-format msgid "Overwrite package match with no version for %s" msgstr "Päälle kirjoitettava paketti täsmää mutta paketille %s ei ole versiota" -#: apt-inst/extract.cc:432 +#: apt-inst/extract.cc:431 #, c-format msgid "File %s/%s overwrites the one in the package %s" msgstr "Tiedosto %s/%s kirjoitetaan paketista %s tulleen päälle" -#: apt-inst/extract.cc:492 +#: apt-inst/extract.cc:491 #, c-format msgid "Unable to stat %s" msgstr "Tiedostolle %s ei toimi stat" @@ -2596,59 +2596,59 @@ msgstr "Tämä APT ei tue versionhallintajärjestelmää \"%s\"" msgid "The package cache was built for a different architecture" msgstr "Pakettivarasto on tehty muulle arkkitehtuurille" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "Depends" msgstr "Riippuvuudet" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "PreDepends" msgstr "Esiriippuvuudet" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "Suggests" msgstr "Ehdotukset" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Recommends" msgstr "Suosittelut" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Conflicts" msgstr "Ristiriidat" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Replaces" msgstr "Korvaavuudet" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Obsoletes" msgstr "Täydet korvaavuudet" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Breaks" msgstr "Rikkoo" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Enhances" msgstr "" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "important" msgstr "tärkeä" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "required" msgstr "välttämätön" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "standard" msgstr "perus" -#: apt-pkg/pkgcache.cc:319 +#: apt-pkg/pkgcache.cc:328 msgid "optional" msgstr "valinnainen" -#: apt-pkg/pkgcache.cc:319 +#: apt-pkg/pkgcache.cc:328 msgid "extra" msgstr "ylimääräinen" @@ -2748,12 +2748,12 @@ msgstr "Avataan %s" msgid "Line %u too long in source list %s." msgstr "Rivi %u on liian pitkä lähdeluettelossa %s." -#: apt-pkg/sourcelist.cc:285 +#: apt-pkg/sourcelist.cc:289 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "Rivi %u on väärän muotoinen lähdeluettelossa %s (tyyppi)" -#: apt-pkg/sourcelist.cc:289 +#: apt-pkg/sourcelist.cc:293 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "Tyyppi \"%s\" on tuntematon rivillä %u lähdeluettelossa %s" @@ -2914,14 +2914,14 @@ msgstr "Pakettivaraston versionhallintajärjestelmä ei ole yhteensopiva" #. TRANSLATOR: The first placeholder is a package name, #. the other two should be copied verbatim as they include debug info #: apt-pkg/pkgcachegen.cc:218 apt-pkg/pkgcachegen.cc:228 -#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:325 -#: apt-pkg/pkgcachegen.cc:333 apt-pkg/pkgcachegen.cc:375 -#: apt-pkg/pkgcachegen.cc:379 apt-pkg/pkgcachegen.cc:396 -#: apt-pkg/pkgcachegen.cc:406 apt-pkg/pkgcachegen.cc:410 -#: apt-pkg/pkgcachegen.cc:414 apt-pkg/pkgcachegen.cc:435 -#: apt-pkg/pkgcachegen.cc:477 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:525 apt-pkg/pkgcachegen.cc:556 -#: apt-pkg/pkgcachegen.cc:570 +#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:319 +#: apt-pkg/pkgcachegen.cc:332 apt-pkg/pkgcachegen.cc:374 +#: apt-pkg/pkgcachegen.cc:378 apt-pkg/pkgcachegen.cc:395 +#: apt-pkg/pkgcachegen.cc:403 apt-pkg/pkgcachegen.cc:407 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:432 +#: apt-pkg/pkgcachegen.cc:471 apt-pkg/pkgcachegen.cc:509 +#: apt-pkg/pkgcachegen.cc:516 apt-pkg/pkgcachegen.cc:547 +#: apt-pkg/pkgcachegen.cc:561 #, fuzzy, c-format msgid "Error occurred while processing %s (%s%d)" msgstr "Tapahtui virhe käsiteltäessä %s (FindPkg)" @@ -2943,26 +2943,26 @@ msgstr "Jummijammi, tämä APT ei osaa käsitellä noin montaa kuvausta." msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "Jummijammi, annoit enemmän riippuvuuksia kuin tämä APT osaa käsitellä." -#: apt-pkg/pkgcachegen.cc:577 +#: apt-pkg/pkgcachegen.cc:568 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "Pakettia %s %s ei löytynyt käsiteltäessä tiedostojen riippuvuuksia." -#: apt-pkg/pkgcachegen.cc:1150 +#: apt-pkg/pkgcachegen.cc:1197 #, c-format msgid "Couldn't stat source package list %s" msgstr "stat ei toiminut lähdepakettiluettelolle %s" -#: apt-pkg/pkgcachegen.cc:1238 apt-pkg/pkgcachegen.cc:1342 -#: apt-pkg/pkgcachegen.cc:1348 apt-pkg/pkgcachegen.cc:1505 +#: apt-pkg/pkgcachegen.cc:1285 apt-pkg/pkgcachegen.cc:1389 +#: apt-pkg/pkgcachegen.cc:1395 apt-pkg/pkgcachegen.cc:1552 msgid "Reading package lists" msgstr "Luetaan pakettiluetteloita" -#: apt-pkg/pkgcachegen.cc:1255 +#: apt-pkg/pkgcachegen.cc:1302 msgid "Collecting File Provides" msgstr "Kootaan tiedostojen tarjoamistietoja" -#: apt-pkg/pkgcachegen.cc:1447 apt-pkg/pkgcachegen.cc:1454 +#: apt-pkg/pkgcachegen.cc:1494 apt-pkg/pkgcachegen.cc:1501 msgid "IO Error saving source cache" msgstr "Syöttö/Tulostus -virhe tallennettaessa pakettivarastoa" @@ -3169,22 +3169,22 @@ 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/indexcopy.cc:236 apt-pkg/indexcopy.cc:766 +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:764 #, c-format msgid "Wrote %i records.\n" msgstr "Kirjoitettiin %i tietuetta.\n" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:768 +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:766 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "Kirjoitettiin %i tietuetta joissa oli %i puuttuvaa tiedostoa.\n" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:771 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:769 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "Kirjoitettiin %i tietuetta joissa oli %i paritonta tiedostoa\n" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:774 +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:772 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" diff --git a/po/fr.po b/po/fr.po index 7fed47867..e7de53c30 100644 --- a/po/fr.po +++ b/po/fr.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: fr\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-04-03 14:20+0200\n" +"POT-Creation-Date: 2013-04-08 15:40+0200\n" "PO-Revision-Date: 2013-03-24 08:57+0100\n" "Last-Translator: Christian Perrier \n" "Language-Team: French \n" @@ -156,7 +156,7 @@ msgstr " Table de version :" #: cmdline/apt-cache.cc:1683 cmdline/apt-cdrom.cc:198 cmdline/apt-config.cc:81 #: cmdline/apt-get.cc:3363 cmdline/apt-mark.cc:375 -#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:590 +#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:591 #: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147 #, c-format msgid "%s %s for %s compiled on %s %s\n" @@ -1663,7 +1663,7 @@ msgstr "Erreur interne" #. Only warn if there are no sources.list.d. #. Only warn if there is no sources.list file. -#: methods/mirror.cc:95 apt-inst/extract.cc:465 +#: methods/mirror.cc:95 apt-inst/extract.cc:464 #: apt-pkg/contrib/cdromutl.cc:183 apt-pkg/contrib/fileutl.cc:400 #: apt-pkg/contrib/fileutl.cc:513 apt-pkg/sourcelist.cc:208 #: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:108 @@ -1793,7 +1793,7 @@ msgstr "" " -c=? Lit ce fichier de configuration\n" " -o=? Spécifie une option de configuration, p. ex. -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1339 +#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1386 #, c-format msgid "Unable to write to %s" msgstr "Impossible d'écrire sur %s" @@ -1803,31 +1803,31 @@ msgid "Cannot get debconf version. Is debconf installed?" msgstr "" "Impossible d'obtenir la version de debconf. Est-ce que debconf est installé ?" -#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:348 +#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:349 msgid "Package extension list is too long" msgstr "La liste d'extension du paquet est trop longue" #: ftparchive/apt-ftparchive.cc:173 ftparchive/apt-ftparchive.cc:190 -#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:263 -#: ftparchive/apt-ftparchive.cc:277 ftparchive/apt-ftparchive.cc:299 +#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:264 +#: ftparchive/apt-ftparchive.cc:278 ftparchive/apt-ftparchive.cc:300 #, c-format msgid "Error processing directory %s" msgstr "Erreur lors du traitement du répertoire %s" -#: ftparchive/apt-ftparchive.cc:261 +#: ftparchive/apt-ftparchive.cc:262 msgid "Source extension list is too long" msgstr "La liste d'extension des sources est trop grande" -#: ftparchive/apt-ftparchive.cc:378 +#: ftparchive/apt-ftparchive.cc:379 msgid "Error writing header to contents file" msgstr "Erreur lors de l'écriture de l'en-tête du fichier contenu" -#: ftparchive/apt-ftparchive.cc:408 +#: ftparchive/apt-ftparchive.cc:409 #, c-format msgid "Error processing contents %s" msgstr "Erreur du traitement du contenu %s" -#: ftparchive/apt-ftparchive.cc:596 +#: ftparchive/apt-ftparchive.cc:597 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -1910,11 +1910,11 @@ msgstr "" " -c=? Lit ce fichier de configuration\n" " -o=? Place une option de configuration arbitraire" -#: ftparchive/apt-ftparchive.cc:802 +#: ftparchive/apt-ftparchive.cc:803 msgid "No selections matched" msgstr "Aucune sélection ne correspond" -#: ftparchive/apt-ftparchive.cc:880 +#: ftparchive/apt-ftparchive.cc:881 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "" @@ -1943,8 +1943,8 @@ msgstr "" msgid "Unable to open DB file %s: %s" msgstr "Impossible d'ouvrir le fichier de base de données %s : %s" -#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:181 apt-inst/extract.cc:193 -#: apt-inst/extract.cc:210 +#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:179 apt-inst/extract.cc:192 +#: apt-inst/extract.cc:209 #, c-format msgid "Failed to stat %s" msgstr "Impossible de statuer %s" @@ -2022,22 +2022,22 @@ msgstr " Seuil de delink de %so atteint.\n" msgid "Archive had no package field" msgstr "L'archive ne possède pas de champ de paquet" -#: ftparchive/writer.cc:411 ftparchive/writer.cc:698 +#: ftparchive/writer.cc:411 ftparchive/writer.cc:701 #, c-format msgid " %s has no override entry\n" msgstr "%s ne possède pas d'entrée « override »\n" -#: ftparchive/writer.cc:479 ftparchive/writer.cc:814 +#: ftparchive/writer.cc:479 ftparchive/writer.cc:845 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " le responsable de %s est %s et non %s\n" -#: ftparchive/writer.cc:708 +#: ftparchive/writer.cc:711 #, c-format msgid " %s has no source override entry\n" msgstr " %s ne possède pas d'entrée « source override »\n" -#: ftparchive/writer.cc:712 +#: ftparchive/writer.cc:715 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s ne possède pas également pas d'entrée « binary override »\n" @@ -2111,7 +2111,7 @@ msgstr "Impossible de lire lors du calcul de la somme MD5" msgid "Problem unlinking %s" msgstr "Problème en déliant %s" -#: ftparchive/multicompress.cc:373 apt-inst/extract.cc:188 +#: ftparchive/multicompress.cc:373 apt-inst/extract.cc:187 #, c-format msgid "Failed to rename %s to %s" msgstr "Impossible de changer le nom %s en %s" @@ -2259,54 +2259,54 @@ msgstr "Erreur d'écriture du fichier %s" msgid "Failed to close file %s" msgstr "Échec de clôture du fichier %s" -#: apt-inst/extract.cc:96 apt-inst/extract.cc:167 +#: apt-inst/extract.cc:94 apt-inst/extract.cc:165 #, c-format msgid "The path %s is too long" msgstr "Le chemin %s est trop long" -#: apt-inst/extract.cc:127 +#: apt-inst/extract.cc:125 #, c-format msgid "Unpacking %s more than once" msgstr "Veuillez décompresser %s plus d'une fois" -#: apt-inst/extract.cc:137 +#: apt-inst/extract.cc:135 #, c-format msgid "The directory %s is diverted" msgstr "Le répertoire %s est détourné" -#: apt-inst/extract.cc:147 +#: apt-inst/extract.cc:145 #, c-format msgid "The package is trying to write to the diversion target %s/%s" msgstr "Le paquet est en train d'essayer d'écrire sur la cible détournée %s/%s" -#: apt-inst/extract.cc:157 apt-inst/extract.cc:300 +#: apt-inst/extract.cc:155 apt-inst/extract.cc:299 msgid "The diversion path is too long" msgstr "Le chemin de déviation est trop long" -#: apt-inst/extract.cc:243 +#: apt-inst/extract.cc:242 #, c-format msgid "The directory %s is being replaced by a non-directory" msgstr "Le répertoire %s va être remplacé par un non-répertoire" -#: apt-inst/extract.cc:283 +#: apt-inst/extract.cc:282 msgid "Failed to locate node in its hash bucket" msgstr "Échec pour localiser le nœud dans la table de hachage" -#: apt-inst/extract.cc:287 +#: apt-inst/extract.cc:286 msgid "The path is too long" msgstr "Le chemin est trop long" -#: apt-inst/extract.cc:415 +#: apt-inst/extract.cc:414 #, c-format msgid "Overwrite package match with no version for %s" msgstr "Écrase la correspondance de paquet sans version pour %s " -#: apt-inst/extract.cc:432 +#: apt-inst/extract.cc:431 #, c-format msgid "File %s/%s overwrites the one in the package %s" msgstr "Le fichier %s/%s écrase celui inclus dans le paquet %s" -#: apt-inst/extract.cc:492 +#: apt-inst/extract.cc:491 #, c-format msgid "Unable to stat %s" msgstr "Impossible de statuer pour %s." @@ -2705,59 +2705,59 @@ msgstr "Cet APT ne supporte pas le système de version « %s »" msgid "The package cache was built for a different architecture" msgstr "Le cache des paquets a été construit pour une architecture différente" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "Depends" msgstr "Dépend" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "PreDepends" msgstr "Pré-Dépend" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "Suggests" msgstr "Suggère" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Recommends" msgstr "Recommande" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Conflicts" msgstr "Est en conflit avec" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Replaces" msgstr "Remplace" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Obsoletes" msgstr "Rend obsolète" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Breaks" msgstr "Casse" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Enhances" msgstr "Améliore" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "important" msgstr "important" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "required" msgstr "nécessaire" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "standard" msgstr "standard" -#: apt-pkg/pkgcache.cc:319 +#: apt-pkg/pkgcache.cc:328 msgid "optional" msgstr "optionnel" -#: apt-pkg/pkgcache.cc:319 +#: apt-pkg/pkgcache.cc:328 msgid "extra" msgstr "supplémentaire" @@ -2867,12 +2867,12 @@ msgstr "Ouverture de %s" msgid "Line %u too long in source list %s." msgstr "La ligne %u du fichier des listes de sources %s est trop longue." -#: apt-pkg/sourcelist.cc:285 +#: apt-pkg/sourcelist.cc:289 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "Ligne %u mal formée dans la liste des sources %s (type)" -#: apt-pkg/sourcelist.cc:289 +#: apt-pkg/sourcelist.cc:293 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "" @@ -3049,14 +3049,14 @@ msgstr "Le cache possède un système de version incompatible" #. TRANSLATOR: The first placeholder is a package name, #. the other two should be copied verbatim as they include debug info #: apt-pkg/pkgcachegen.cc:218 apt-pkg/pkgcachegen.cc:228 -#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:325 -#: apt-pkg/pkgcachegen.cc:333 apt-pkg/pkgcachegen.cc:375 -#: apt-pkg/pkgcachegen.cc:379 apt-pkg/pkgcachegen.cc:396 -#: apt-pkg/pkgcachegen.cc:406 apt-pkg/pkgcachegen.cc:410 -#: apt-pkg/pkgcachegen.cc:414 apt-pkg/pkgcachegen.cc:435 -#: apt-pkg/pkgcachegen.cc:477 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:525 apt-pkg/pkgcachegen.cc:556 -#: apt-pkg/pkgcachegen.cc:570 +#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:319 +#: apt-pkg/pkgcachegen.cc:332 apt-pkg/pkgcachegen.cc:374 +#: apt-pkg/pkgcachegen.cc:378 apt-pkg/pkgcachegen.cc:395 +#: apt-pkg/pkgcachegen.cc:403 apt-pkg/pkgcachegen.cc:407 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:432 +#: apt-pkg/pkgcachegen.cc:471 apt-pkg/pkgcachegen.cc:509 +#: apt-pkg/pkgcachegen.cc:516 apt-pkg/pkgcachegen.cc:547 +#: apt-pkg/pkgcachegen.cc:561 #, c-format msgid "Error occurred while processing %s (%s%d)" msgstr "Erreur apparue lors du traitement de %s (%s%d)" @@ -3085,28 +3085,28 @@ msgstr "" "Vous avez dépassé le nombre de dépendances que cette version d'APT est " "capable de traiter." -#: apt-pkg/pkgcachegen.cc:577 +#: apt-pkg/pkgcachegen.cc:568 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "" "Le paquet %s %s n'a pu être trouvé lors du traitement des dépendances des " "fichiers" -#: apt-pkg/pkgcachegen.cc:1150 +#: apt-pkg/pkgcachegen.cc:1197 #, c-format msgid "Couldn't stat source package list %s" msgstr "Impossible de localiser la liste des paquets sources %s" -#: apt-pkg/pkgcachegen.cc:1238 apt-pkg/pkgcachegen.cc:1342 -#: apt-pkg/pkgcachegen.cc:1348 apt-pkg/pkgcachegen.cc:1505 +#: apt-pkg/pkgcachegen.cc:1285 apt-pkg/pkgcachegen.cc:1389 +#: apt-pkg/pkgcachegen.cc:1395 apt-pkg/pkgcachegen.cc:1552 msgid "Reading package lists" msgstr "Lecture des listes de paquets" -#: apt-pkg/pkgcachegen.cc:1255 +#: apt-pkg/pkgcachegen.cc:1302 msgid "Collecting File Provides" msgstr "Assemblage des fichiers listés dans les champs Provides" -#: apt-pkg/pkgcachegen.cc:1447 apt-pkg/pkgcachegen.cc:1454 +#: apt-pkg/pkgcachegen.cc:1494 apt-pkg/pkgcachegen.cc:1501 msgid "IO Error saving source cache" msgstr "" "Erreur d'entrée/sortie lors de la sauvegarde du fichier de cache des sources" @@ -3325,22 +3325,22 @@ 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/indexcopy.cc:236 apt-pkg/indexcopy.cc:766 +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:764 #, c-format msgid "Wrote %i records.\n" msgstr "%i enregistrements écrits.\n" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:768 +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:766 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "%i enregistrements écrits avec %i fichiers manquants.\n" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:771 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:769 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "%i enregistrements écrits avec %i fichiers qui ne correspondent pas\n" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:774 +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:772 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" diff --git a/po/gl.po b/po/gl.po index 0ce8a5354..4cc56f784 100644 --- a/po/gl.po +++ b/po/gl.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: apt_po_gl\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-04-03 14:20+0200\n" +"POT-Creation-Date: 2013-04-08 15:40+0200\n" "PO-Revision-Date: 2011-05-12 15:28+0100\n" "Last-Translator: Miguel Anxo Bouzada \n" "Language-Team: galician \n" @@ -161,7 +161,7 @@ msgstr " Táboa de versións:" #: cmdline/apt-cache.cc:1683 cmdline/apt-cdrom.cc:198 cmdline/apt-config.cc:81 #: cmdline/apt-get.cc:3363 cmdline/apt-mark.cc:375 -#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:590 +#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:591 #: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147 #, c-format msgid "%s %s for %s compiled on %s %s\n" @@ -1614,7 +1614,7 @@ msgstr "Produciuse un erro interno" #. Only warn if there are no sources.list.d. #. Only warn if there is no sources.list file. -#: methods/mirror.cc:95 apt-inst/extract.cc:465 +#: methods/mirror.cc:95 apt-inst/extract.cc:464 #: apt-pkg/contrib/cdromutl.cc:183 apt-pkg/contrib/fileutl.cc:400 #: apt-pkg/contrib/fileutl.cc:513 apt-pkg/sourcelist.cc:208 #: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:108 @@ -1743,7 +1743,7 @@ msgstr "" " -o=? Estabelece unha opción de configuración, por exemplo: -o dir::cache=/" "tmp\n" -#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1339 +#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1386 #, c-format msgid "Unable to write to %s" msgstr "Non é posíbel escribir en %s" @@ -1752,31 +1752,31 @@ msgstr "Non é posíbel escribir en %s" msgid "Cannot get debconf version. Is debconf installed?" msgstr "Non é posíbel obter a versión de debconf. Debconf está instalado?" -#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:348 +#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:349 msgid "Package extension list is too long" msgstr "A lista de extensións de paquetes é longa de máis" #: ftparchive/apt-ftparchive.cc:173 ftparchive/apt-ftparchive.cc:190 -#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:263 -#: ftparchive/apt-ftparchive.cc:277 ftparchive/apt-ftparchive.cc:299 +#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:264 +#: ftparchive/apt-ftparchive.cc:278 ftparchive/apt-ftparchive.cc:300 #, c-format msgid "Error processing directory %s" msgstr "Produciuse un erro ao procesar o directorio %s" -#: ftparchive/apt-ftparchive.cc:261 +#: ftparchive/apt-ftparchive.cc:262 msgid "Source extension list is too long" msgstr "A lista de extensións de fontes é longa de máis" -#: ftparchive/apt-ftparchive.cc:378 +#: ftparchive/apt-ftparchive.cc:379 msgid "Error writing header to contents file" msgstr "Produciuse un erro ao gravar a cabeceira no ficheiro de contido" -#: ftparchive/apt-ftparchive.cc:408 +#: ftparchive/apt-ftparchive.cc:409 #, c-format msgid "Error processing contents %s" msgstr "Produciuse un erro ao procesar o contido %s" -#: ftparchive/apt-ftparchive.cc:596 +#: ftparchive/apt-ftparchive.cc:597 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -1859,11 +1859,11 @@ msgstr "" " -c=? Le este ficheiro de configuración\n" " -o=? Estabelece unha opción de configuración" -#: ftparchive/apt-ftparchive.cc:802 +#: ftparchive/apt-ftparchive.cc:803 msgid "No selections matched" msgstr "Non coincide ningunha selección" -#: ftparchive/apt-ftparchive.cc:880 +#: ftparchive/apt-ftparchive.cc:881 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "Faltan ficheiros no grupo de ficheiros de paquetes «%s»" @@ -1891,8 +1891,8 @@ msgstr "" msgid "Unable to open DB file %s: %s" msgstr "Non é posíbel abrir o ficheiro de base de datos %s: %s" -#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:181 apt-inst/extract.cc:193 -#: apt-inst/extract.cc:210 +#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:179 apt-inst/extract.cc:192 +#: apt-inst/extract.cc:209 #, c-format msgid "Failed to stat %s" msgstr "Non foi posíbel determinar o estado %s" @@ -1970,22 +1970,22 @@ msgstr " Acadouse o límite de desligado de %sB.\n" msgid "Archive had no package field" msgstr "O arquivo non tiña un campo Package" -#: ftparchive/writer.cc:411 ftparchive/writer.cc:698 +#: ftparchive/writer.cc:411 ftparchive/writer.cc:701 #, c-format msgid " %s has no override entry\n" msgstr " %s non ten unha entrada de «override»\n" -#: ftparchive/writer.cc:479 ftparchive/writer.cc:814 +#: ftparchive/writer.cc:479 ftparchive/writer.cc:845 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " O mantedor de %s é %s, non %s\n" -#: ftparchive/writer.cc:708 +#: ftparchive/writer.cc:711 #, c-format msgid " %s has no source override entry\n" msgstr " %s non ten unha entrada de «override» de código fonte\n" -#: ftparchive/writer.cc:712 +#: ftparchive/writer.cc:715 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s tampouco ten unha entrada de «override» de binarios\n" @@ -2059,7 +2059,7 @@ msgstr "Non foi posíbel ler ao calcular o MD5" msgid "Problem unlinking %s" msgstr "Xurdiu un problema ao desligar %s" -#: ftparchive/multicompress.cc:373 apt-inst/extract.cc:188 +#: ftparchive/multicompress.cc:373 apt-inst/extract.cc:187 #, c-format msgid "Failed to rename %s to %s" msgstr "Non foi posíbel cambiar o nome de %s a %s" @@ -2206,54 +2206,54 @@ msgstr "Non foi posíbel escribir no ficheiro «%s»" msgid "Failed to close file %s" msgstr "Non foi posíbel pechar o ficheiro %s" -#: apt-inst/extract.cc:96 apt-inst/extract.cc:167 +#: apt-inst/extract.cc:94 apt-inst/extract.cc:165 #, c-format msgid "The path %s is too long" msgstr "A ruta %s é longa de máis" -#: apt-inst/extract.cc:127 +#: apt-inst/extract.cc:125 #, c-format msgid "Unpacking %s more than once" msgstr "Desempaquetando %s máis dunha vez" -#: apt-inst/extract.cc:137 +#: apt-inst/extract.cc:135 #, c-format msgid "The directory %s is diverted" msgstr "O directorio %s está desviado" -#: apt-inst/extract.cc:147 +#: apt-inst/extract.cc:145 #, c-format msgid "The package is trying to write to the diversion target %s/%s" msgstr "O paquete tenta escribir no destino do desvío %s/%s" -#: apt-inst/extract.cc:157 apt-inst/extract.cc:300 +#: apt-inst/extract.cc:155 apt-inst/extract.cc:299 msgid "The diversion path is too long" msgstr "A ruta do desvío é longa de máis" -#: apt-inst/extract.cc:243 +#: apt-inst/extract.cc:242 #, c-format msgid "The directory %s is being replaced by a non-directory" msgstr "O directorio %s estase a substituír por algo que non é un directorio" -#: apt-inst/extract.cc:283 +#: apt-inst/extract.cc:282 msgid "Failed to locate node in its hash bucket" msgstr "Non foi posíbel atopar o nodo no seu contedor hash" -#: apt-inst/extract.cc:287 +#: apt-inst/extract.cc:286 msgid "The path is too long" msgstr "A ruta é longa de máis" -#: apt-inst/extract.cc:415 +#: apt-inst/extract.cc:414 #, c-format msgid "Overwrite package match with no version for %s" msgstr "Coincidencia na sobrescritura sen versión para %s" -#: apt-inst/extract.cc:432 +#: apt-inst/extract.cc:431 #, c-format msgid "File %s/%s overwrites the one in the package %s" msgstr "O ficheiro %s/%s sobrescribe o do paquete %s" -#: apt-inst/extract.cc:492 +#: apt-inst/extract.cc:491 #, c-format msgid "Unable to stat %s" msgstr "Non é posíbel determinar o estado %s" @@ -2647,59 +2647,59 @@ msgstr "Este APT non admite o sistema de versionado «%s»" msgid "The package cache was built for a different architecture" msgstr "A caché de paquetes construíuse para unha arquitectura diferente" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "Depends" msgstr "Depende" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "PreDepends" msgstr "PreDepende" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "Suggests" msgstr "Suxire" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Recommends" msgstr "Recomenda" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Conflicts" msgstr "Conflitos" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Replaces" msgstr "Substitúe a" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Obsoletes" msgstr "Fai obsoleto a" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Breaks" msgstr "Estraga" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Enhances" msgstr "Mellora" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "important" msgstr "importante" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "required" msgstr "requirido" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "standard" msgstr "estándar" -#: apt-pkg/pkgcache.cc:319 +#: apt-pkg/pkgcache.cc:328 msgid "optional" msgstr "opcional" -#: apt-pkg/pkgcache.cc:319 +#: apt-pkg/pkgcache.cc:328 msgid "extra" msgstr "extra" @@ -2803,12 +2803,12 @@ msgstr "Abrindo %s" msgid "Line %u too long in source list %s." msgstr "Liña %u longa de máis na lista de orixes %s." -#: apt-pkg/sourcelist.cc:285 +#: apt-pkg/sourcelist.cc:289 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "Liña %u mal construída na lista de orixes %s (tipo)" -#: apt-pkg/sourcelist.cc:289 +#: apt-pkg/sourcelist.cc:293 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "O tipo «%s» non se coñece na liña %u da lista de orixes %s" @@ -2976,14 +2976,14 @@ msgstr "A caché ten un sistema de versionado incompatíbel" #. TRANSLATOR: The first placeholder is a package name, #. the other two should be copied verbatim as they include debug info #: apt-pkg/pkgcachegen.cc:218 apt-pkg/pkgcachegen.cc:228 -#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:325 -#: apt-pkg/pkgcachegen.cc:333 apt-pkg/pkgcachegen.cc:375 -#: apt-pkg/pkgcachegen.cc:379 apt-pkg/pkgcachegen.cc:396 -#: apt-pkg/pkgcachegen.cc:406 apt-pkg/pkgcachegen.cc:410 -#: apt-pkg/pkgcachegen.cc:414 apt-pkg/pkgcachegen.cc:435 -#: apt-pkg/pkgcachegen.cc:477 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:525 apt-pkg/pkgcachegen.cc:556 -#: apt-pkg/pkgcachegen.cc:570 +#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:319 +#: apt-pkg/pkgcachegen.cc:332 apt-pkg/pkgcachegen.cc:374 +#: apt-pkg/pkgcachegen.cc:378 apt-pkg/pkgcachegen.cc:395 +#: apt-pkg/pkgcachegen.cc:403 apt-pkg/pkgcachegen.cc:407 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:432 +#: apt-pkg/pkgcachegen.cc:471 apt-pkg/pkgcachegen.cc:509 +#: apt-pkg/pkgcachegen.cc:516 apt-pkg/pkgcachegen.cc:547 +#: apt-pkg/pkgcachegen.cc:561 #, fuzzy, c-format msgid "Error occurred while processing %s (%s%d)" msgstr "Produciuse un erro ao procesar %s (FindPkg)" @@ -3005,28 +3005,28 @@ msgstr "Vaites!, superou o número de descricións que este APT pode manexar." msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "Vaites!, superou o número de dependencias que este APT pode manexar." -#: apt-pkg/pkgcachegen.cc:577 +#: apt-pkg/pkgcachegen.cc:568 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "" "Non foi posíbel atopar o paquete %s %s ao procesar as dependencias de " "ficheiros" -#: apt-pkg/pkgcachegen.cc:1150 +#: apt-pkg/pkgcachegen.cc:1197 #, c-format msgid "Couldn't stat source package list %s" msgstr "Non foi posíbel atopar a lista de paquetes fonte %s" -#: apt-pkg/pkgcachegen.cc:1238 apt-pkg/pkgcachegen.cc:1342 -#: apt-pkg/pkgcachegen.cc:1348 apt-pkg/pkgcachegen.cc:1505 +#: apt-pkg/pkgcachegen.cc:1285 apt-pkg/pkgcachegen.cc:1389 +#: apt-pkg/pkgcachegen.cc:1395 apt-pkg/pkgcachegen.cc:1552 msgid "Reading package lists" msgstr "Lendo as listas de paquetes" -#: apt-pkg/pkgcachegen.cc:1255 +#: apt-pkg/pkgcachegen.cc:1302 msgid "Collecting File Provides" msgstr "Recollendo as provisións de ficheiros" -#: apt-pkg/pkgcachegen.cc:1447 apt-pkg/pkgcachegen.cc:1454 +#: apt-pkg/pkgcachegen.cc:1494 apt-pkg/pkgcachegen.cc:1501 msgid "IO Error saving source cache" msgstr "Produciuse un erro de E/S ao gravar a caché de fontes" @@ -3241,22 +3241,22 @@ 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/indexcopy.cc:236 apt-pkg/indexcopy.cc:766 +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:764 #, c-format msgid "Wrote %i records.\n" msgstr "Escribíronse %i rexistros.\n" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:768 +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:766 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "Escribíronse %i rexistros con %i ficheiros que faltan.\n" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:771 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:769 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "Escribíronse %i rexistros con %i ficheiros que non coinciden\n" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:774 +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:772 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" diff --git a/po/hu.po b/po/hu.po index a5714f56d..5fb2a35b0 100644 --- a/po/hu.po +++ b/po/hu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: apt trunk\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-04-03 14:20+0200\n" +"POT-Creation-Date: 2013-04-08 15:40+0200\n" "PO-Revision-Date: 2012-06-25 17:09+0200\n" "Last-Translator: Gabor Kelemen \n" "Language-Team: Hungarian \n" @@ -159,7 +159,7 @@ msgstr " Verziótáblázat:" #: cmdline/apt-cache.cc:1683 cmdline/apt-cdrom.cc:198 cmdline/apt-config.cc:81 #: cmdline/apt-get.cc:3363 cmdline/apt-mark.cc:375 -#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:590 +#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:591 #: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147 #, c-format msgid "%s %s for %s compiled on %s %s\n" @@ -1620,7 +1620,7 @@ msgstr "Belső hiba" #. Only warn if there are no sources.list.d. #. Only warn if there is no sources.list file. -#: methods/mirror.cc:95 apt-inst/extract.cc:465 +#: methods/mirror.cc:95 apt-inst/extract.cc:464 #: apt-pkg/contrib/cdromutl.cc:183 apt-pkg/contrib/fileutl.cc:400 #: apt-pkg/contrib/fileutl.cc:513 apt-pkg/sourcelist.cc:208 #: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:108 @@ -1748,7 +1748,7 @@ msgstr "" " -c=? Ezt a konfigurációs fájlt olvassa be\n" " -o=? Beállít egy tetszőleges konfigurációs opciót, pl -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1339 +#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1386 #, c-format msgid "Unable to write to %s" msgstr "Nem lehet írni ebbe: %s" @@ -1757,31 +1757,31 @@ msgstr "Nem lehet írni ebbe: %s" msgid "Cannot get debconf version. Is debconf installed?" msgstr "Nem lehet megállapítani a debconf verziót. A debconf telepítve van?" -#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:348 +#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:349 msgid "Package extension list is too long" msgstr "A csomagkiterjesztések listája túl hosszú" #: ftparchive/apt-ftparchive.cc:173 ftparchive/apt-ftparchive.cc:190 -#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:263 -#: ftparchive/apt-ftparchive.cc:277 ftparchive/apt-ftparchive.cc:299 +#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:264 +#: ftparchive/apt-ftparchive.cc:278 ftparchive/apt-ftparchive.cc:300 #, c-format msgid "Error processing directory %s" msgstr "Hiba a(z) %s könyvtár feldolgozásakor" -#: ftparchive/apt-ftparchive.cc:261 +#: ftparchive/apt-ftparchive.cc:262 msgid "Source extension list is too long" msgstr "A forráskiterjesztések listája túl hosszú" -#: ftparchive/apt-ftparchive.cc:378 +#: ftparchive/apt-ftparchive.cc:379 msgid "Error writing header to contents file" msgstr "Hiba a tartalomfájl fejlécének írásakor" -#: ftparchive/apt-ftparchive.cc:408 +#: ftparchive/apt-ftparchive.cc:409 #, c-format msgid "Error processing contents %s" msgstr "Hiba %s tartalmának feldolgozásakor" -#: ftparchive/apt-ftparchive.cc:596 +#: ftparchive/apt-ftparchive.cc:597 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -1863,11 +1863,11 @@ msgstr "" " -c=? Ezt a konfigurációs fájlt olvassa be\n" " -o=? Beállít egy tetszőleges konfigurációs opciót" -#: ftparchive/apt-ftparchive.cc:802 +#: ftparchive/apt-ftparchive.cc:803 msgid "No selections matched" msgstr "Nincs illeszkedő kiválasztás" -#: ftparchive/apt-ftparchive.cc:880 +#: ftparchive/apt-ftparchive.cc:881 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "Néhány fájl hiányzik a(z) „%s” csomagfájlcsoportból" @@ -1895,8 +1895,8 @@ msgstr "" msgid "Unable to open DB file %s: %s" msgstr "A(z) %s DB fájlt nem lehet megnyitni: %s" -#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:181 apt-inst/extract.cc:193 -#: apt-inst/extract.cc:210 +#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:179 apt-inst/extract.cc:192 +#: apt-inst/extract.cc:209 #, c-format msgid "Failed to stat %s" msgstr "%s elérése sikertelen" @@ -1974,22 +1974,22 @@ msgstr " a DeLink korlátja (%sB) elérve.\n" msgid "Archive had no package field" msgstr "Az archívumnak nem volt csomag mezője" -#: ftparchive/writer.cc:411 ftparchive/writer.cc:698 +#: ftparchive/writer.cc:411 ftparchive/writer.cc:701 #, c-format msgid " %s has no override entry\n" msgstr " %s nem rendelkezik felülbíráló bejegyzéssel\n" -#: ftparchive/writer.cc:479 ftparchive/writer.cc:814 +#: ftparchive/writer.cc:479 ftparchive/writer.cc:845 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " %s karbantartója %s, nem %s\n" -#: ftparchive/writer.cc:708 +#: ftparchive/writer.cc:711 #, c-format msgid " %s has no source override entry\n" msgstr " %s nem rendelkezik forrás-felülbíráló bejegyzéssel\n" -#: ftparchive/writer.cc:712 +#: ftparchive/writer.cc:715 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s nem rendelkezik bináris-felülbíráló bejegyzéssel sem\n" @@ -2063,7 +2063,7 @@ msgstr "Olvasási hiba az MD5 kiszámításakor" msgid "Problem unlinking %s" msgstr "Hiba %s törlésekor" -#: ftparchive/multicompress.cc:373 apt-inst/extract.cc:188 +#: ftparchive/multicompress.cc:373 apt-inst/extract.cc:187 #, c-format msgid "Failed to rename %s to %s" msgstr "„%s” átnevezése sikertelen erre: %s" @@ -2209,54 +2209,54 @@ msgstr "A(z) %s fájl írása sikertelen" msgid "Failed to close file %s" msgstr "A(z) %s fájl bezárása sikertelen" -#: apt-inst/extract.cc:96 apt-inst/extract.cc:167 +#: apt-inst/extract.cc:94 apt-inst/extract.cc:165 #, c-format msgid "The path %s is too long" msgstr "A(z) %s útvonal túl hosszú" -#: apt-inst/extract.cc:127 +#: apt-inst/extract.cc:125 #, c-format msgid "Unpacking %s more than once" msgstr "A(z) %s többszöri kicsomagolása" -#: apt-inst/extract.cc:137 +#: apt-inst/extract.cc:135 #, c-format msgid "The directory %s is diverted" msgstr "A(z) %s könyvtár eltérítve" -#: apt-inst/extract.cc:147 +#: apt-inst/extract.cc:145 #, c-format msgid "The package is trying to write to the diversion target %s/%s" msgstr "A csomag megpróbál írni a(z) %s/%s eltérített célpontba" -#: apt-inst/extract.cc:157 apt-inst/extract.cc:300 +#: apt-inst/extract.cc:155 apt-inst/extract.cc:299 msgid "The diversion path is too long" msgstr "Az eltérített útvonal túl hosszú" -#: apt-inst/extract.cc:243 +#: apt-inst/extract.cc:242 #, c-format msgid "The directory %s is being replaced by a non-directory" msgstr "A(z) %s könyvtár nem egy könyvtárral lesz helyettesítve" -#: apt-inst/extract.cc:283 +#: apt-inst/extract.cc:282 msgid "Failed to locate node in its hash bucket" msgstr "Nem sikerült a node helyét megtalálni a hashtárolóban" -#: apt-inst/extract.cc:287 +#: apt-inst/extract.cc:286 msgid "The path is too long" msgstr "Az útvonal túl hosszú" -#: apt-inst/extract.cc:415 +#: apt-inst/extract.cc:414 #, c-format msgid "Overwrite package match with no version for %s" msgstr "Csomagtalálat felülírása %s verziója nélkül" -#: apt-inst/extract.cc:432 +#: apt-inst/extract.cc:431 #, c-format msgid "File %s/%s overwrites the one in the package %s" msgstr "A(z) %s/%s fájl felülírja a(z) %s csomagban levőt" -#: apt-inst/extract.cc:492 +#: apt-inst/extract.cc:491 #, c-format msgid "Unable to stat %s" msgstr "%s nem érhető el" @@ -2648,59 +2648,59 @@ msgstr "Ez az APT nem támogatja a(z) „%s” verziórendszert" msgid "The package cache was built for a different architecture" msgstr "A csomaggyorsítótár egy másik architektúrához készült" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "Depends" msgstr "Függ ettől" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "PreDepends" msgstr "Függ ettől (előfüggés)" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "Suggests" msgstr "Javasolja" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Recommends" msgstr "Ajánlja" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Conflicts" msgstr "Ütközik" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Replaces" msgstr "Kicseréli" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Obsoletes" msgstr "Elavulttá teszi" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Breaks" msgstr "Töri" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Enhances" msgstr "Bővíti" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "important" msgstr "fontos" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "required" msgstr "szükséges" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "standard" msgstr "szabványos" -#: apt-pkg/pkgcache.cc:319 +#: apt-pkg/pkgcache.cc:328 msgid "optional" msgstr "opcionális" -#: apt-pkg/pkgcache.cc:319 +#: apt-pkg/pkgcache.cc:328 msgid "extra" msgstr "extra" @@ -2810,12 +2810,12 @@ msgstr "%s megnyitása" msgid "Line %u too long in source list %s." msgstr "A(z) %u. sor túl hosszú a(z) %s forráslistában." -#: apt-pkg/sourcelist.cc:285 +#: apt-pkg/sourcelist.cc:289 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "A(z) %u. sor hibás a(z) %s forráslistában (típus)" -#: apt-pkg/sourcelist.cc:289 +#: apt-pkg/sourcelist.cc:293 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "„%1$s” típus nem ismert a(z) %3$s forráslista %2$u. sorában" @@ -2983,14 +2983,14 @@ msgstr "A gyorsítótárnak inkompatibilis verziórendszere van" #. TRANSLATOR: The first placeholder is a package name, #. the other two should be copied verbatim as they include debug info #: apt-pkg/pkgcachegen.cc:218 apt-pkg/pkgcachegen.cc:228 -#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:325 -#: apt-pkg/pkgcachegen.cc:333 apt-pkg/pkgcachegen.cc:375 -#: apt-pkg/pkgcachegen.cc:379 apt-pkg/pkgcachegen.cc:396 -#: apt-pkg/pkgcachegen.cc:406 apt-pkg/pkgcachegen.cc:410 -#: apt-pkg/pkgcachegen.cc:414 apt-pkg/pkgcachegen.cc:435 -#: apt-pkg/pkgcachegen.cc:477 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:525 apt-pkg/pkgcachegen.cc:556 -#: apt-pkg/pkgcachegen.cc:570 +#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:319 +#: apt-pkg/pkgcachegen.cc:332 apt-pkg/pkgcachegen.cc:374 +#: apt-pkg/pkgcachegen.cc:378 apt-pkg/pkgcachegen.cc:395 +#: apt-pkg/pkgcachegen.cc:403 apt-pkg/pkgcachegen.cc:407 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:432 +#: apt-pkg/pkgcachegen.cc:471 apt-pkg/pkgcachegen.cc:509 +#: apt-pkg/pkgcachegen.cc:516 apt-pkg/pkgcachegen.cc:547 +#: apt-pkg/pkgcachegen.cc:561 #, c-format msgid "Error occurred while processing %s (%s%d)" msgstr "Hiba történt a(z) %s feldolgozása során (%s%d)" @@ -3011,29 +3011,29 @@ msgstr "Az APT által kezelhető csomagleírások száma túllépve." msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "Az APT által kezelhető függőségek száma túllépve." -#: apt-pkg/pkgcachegen.cc:577 +#: apt-pkg/pkgcachegen.cc:568 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "" "A(z) %s %s csomag nem volt megtalálható a fájl függőségeinek feldolgozása " "közben" -#: apt-pkg/pkgcachegen.cc:1150 +#: apt-pkg/pkgcachegen.cc:1197 #, c-format msgid "Couldn't stat source package list %s" msgstr "Nem lehet a(z) %s forrás csomaglistáját elérni" -#: apt-pkg/pkgcachegen.cc:1238 apt-pkg/pkgcachegen.cc:1342 -#: apt-pkg/pkgcachegen.cc:1348 apt-pkg/pkgcachegen.cc:1505 +#: apt-pkg/pkgcachegen.cc:1285 apt-pkg/pkgcachegen.cc:1389 +#: apt-pkg/pkgcachegen.cc:1395 apt-pkg/pkgcachegen.cc:1552 msgid "Reading package lists" msgstr "Csomaglisták olvasása" # FIXME -#: apt-pkg/pkgcachegen.cc:1255 +#: apt-pkg/pkgcachegen.cc:1302 msgid "Collecting File Provides" msgstr "„Biztosítja” kapcsolatok összegyűjtése" -#: apt-pkg/pkgcachegen.cc:1447 apt-pkg/pkgcachegen.cc:1454 +#: apt-pkg/pkgcachegen.cc:1494 apt-pkg/pkgcachegen.cc:1501 msgid "IO Error saving source cache" msgstr "IO hiba a forrás-gyorsítótár mentésekor" @@ -3247,22 +3247,22 @@ msgstr "Új forráslista írása\n" msgid "Source list entries for this disc are:\n" msgstr "A lemezhez tartozó forráslistabejegyzések a következők:\n" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:766 +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:764 #, c-format msgid "Wrote %i records.\n" msgstr "%i rekord kiírva.\n" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:768 +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:766 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "%i rekord kiírva, %i hiányzó fájllal.\n" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:771 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:769 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "%i rekord kiírva %i eltérő fájllal\n" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:774 +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:772 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "%i rekord kiírva %i hiányzó és %i eltérő fájllal\n" diff --git a/po/it.po b/po/it.po index 18613cd41..e67e03e0c 100644 --- a/po/it.po +++ b/po/it.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-04-03 14:20+0200\n" +"POT-Creation-Date: 2013-04-08 15:40+0200\n" "PO-Revision-Date: 2012-06-25 21:54+0200\n" "Last-Translator: Milo Casagrande \n" "Language-Team: Italian \n" @@ -159,7 +159,7 @@ msgstr " Tabella versione:" #: cmdline/apt-cache.cc:1683 cmdline/apt-cdrom.cc:198 cmdline/apt-config.cc:81 #: cmdline/apt-get.cc:3363 cmdline/apt-mark.cc:375 -#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:590 +#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:591 #: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147 #, c-format msgid "%s %s for %s compiled on %s %s\n" @@ -1644,7 +1644,7 @@ msgstr "Errore interno" #. Only warn if there are no sources.list.d. #. Only warn if there is no sources.list file. -#: methods/mirror.cc:95 apt-inst/extract.cc:465 +#: methods/mirror.cc:95 apt-inst/extract.cc:464 #: apt-pkg/contrib/cdromutl.cc:183 apt-pkg/contrib/fileutl.cc:400 #: apt-pkg/contrib/fileutl.cc:513 apt-pkg/sourcelist.cc:208 #: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:108 @@ -1776,7 +1776,7 @@ msgstr "" " -c=? Legge come configurazione il file specificato\n" " -o=? Imposta un'opzione di configurazione, come -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1339 +#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1386 #, c-format msgid "Unable to write to %s" msgstr "Impossibile scrivere in %s" @@ -1785,31 +1785,31 @@ msgstr "Impossibile scrivere in %s" msgid "Cannot get debconf version. Is debconf installed?" msgstr "Impossibile trovare la versione di debconf. È installato?" -#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:348 +#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:349 msgid "Package extension list is too long" msgstr "L'elenco dell'estensione del pacchetto è troppo lungo" #: ftparchive/apt-ftparchive.cc:173 ftparchive/apt-ftparchive.cc:190 -#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:263 -#: ftparchive/apt-ftparchive.cc:277 ftparchive/apt-ftparchive.cc:299 +#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:264 +#: ftparchive/apt-ftparchive.cc:278 ftparchive/apt-ftparchive.cc:300 #, c-format msgid "Error processing directory %s" msgstr "Errore nell'elaborare la directory %s" -#: ftparchive/apt-ftparchive.cc:261 +#: ftparchive/apt-ftparchive.cc:262 msgid "Source extension list is too long" msgstr "L'elenco dell'estensione del sorgente è troppo lungo" -#: ftparchive/apt-ftparchive.cc:378 +#: ftparchive/apt-ftparchive.cc:379 msgid "Error writing header to contents file" msgstr "Errore nella scrittura dell'intestazione nel file \"contents\"" -#: ftparchive/apt-ftparchive.cc:408 +#: ftparchive/apt-ftparchive.cc:409 #, c-format msgid "Error processing contents %s" msgstr "Errore nell'elaborare i contenuti %s" -#: ftparchive/apt-ftparchive.cc:596 +#: ftparchive/apt-ftparchive.cc:597 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -1890,11 +1890,11 @@ msgstr "" " -c=? Legge come configurazione il file specificato\n" " -o=? Imposta un'opzione arbitraria di configurazione" -#: ftparchive/apt-ftparchive.cc:802 +#: ftparchive/apt-ftparchive.cc:803 msgid "No selections matched" msgstr "Nessuna selezione corrisponde" -#: ftparchive/apt-ftparchive.cc:880 +#: ftparchive/apt-ftparchive.cc:881 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "Mancano alcuni file nel file group di pacchetti \"%s\"" @@ -1922,8 +1922,8 @@ msgstr "" msgid "Unable to open DB file %s: %s" msgstr "Impossibile aprire il file del database %s: %s" -#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:181 apt-inst/extract.cc:193 -#: apt-inst/extract.cc:210 +#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:179 apt-inst/extract.cc:192 +#: apt-inst/extract.cc:209 #, c-format msgid "Failed to stat %s" msgstr "Impossibile eseguire stat su %s" @@ -2004,22 +2004,22 @@ msgstr " Raggiunto il limite di DeLink di %sB.\n" msgid "Archive had no package field" msgstr "L'archivio non ha un campo \"package\"" -#: ftparchive/writer.cc:411 ftparchive/writer.cc:698 +#: ftparchive/writer.cc:411 ftparchive/writer.cc:701 #, c-format msgid " %s has no override entry\n" msgstr " %s non ha un campo override\n" -#: ftparchive/writer.cc:479 ftparchive/writer.cc:814 +#: ftparchive/writer.cc:479 ftparchive/writer.cc:845 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " il responsabile di %s è %s non %s\n" -#: ftparchive/writer.cc:708 +#: ftparchive/writer.cc:711 #, c-format msgid " %s has no source override entry\n" msgstr " %s non ha un campo source override\n" -#: ftparchive/writer.cc:712 +#: ftparchive/writer.cc:715 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s non ha neppure un campo binario override\n" @@ -2093,7 +2093,7 @@ msgstr "Lettura durante l'elaborazione MD5 non riuscita" msgid "Problem unlinking %s" msgstr "Problema nell'unlink di %s" -#: ftparchive/multicompress.cc:373 apt-inst/extract.cc:188 +#: ftparchive/multicompress.cc:373 apt-inst/extract.cc:187 #, c-format msgid "Failed to rename %s to %s" msgstr "Rinomina di %s in %s non riuscita" @@ -2237,55 +2237,55 @@ msgstr "Scrittura del file %s non riuscita" msgid "Failed to close file %s" msgstr "Chiusura del file %s non riuscita" -#: apt-inst/extract.cc:96 apt-inst/extract.cc:167 +#: apt-inst/extract.cc:94 apt-inst/extract.cc:165 #, c-format msgid "The path %s is too long" msgstr "Il percorso %s è troppo lungo" -#: apt-inst/extract.cc:127 +#: apt-inst/extract.cc:125 #, c-format msgid "Unpacking %s more than once" msgstr "Estrazione di %s eseguita più di una volta" -#: apt-inst/extract.cc:137 +#: apt-inst/extract.cc:135 #, c-format msgid "The directory %s is diverted" msgstr "La directory %s è deviata" -#: apt-inst/extract.cc:147 +#: apt-inst/extract.cc:145 #, c-format msgid "The package is trying to write to the diversion target %s/%s" msgstr "" "Il pacchetto sta cercando di scrivere nell'obiettivo di deviazione %s/%s" -#: apt-inst/extract.cc:157 apt-inst/extract.cc:300 +#: apt-inst/extract.cc:155 apt-inst/extract.cc:299 msgid "The diversion path is too long" msgstr "Il percorso della deviazione è troppo lungo" -#: apt-inst/extract.cc:243 +#: apt-inst/extract.cc:242 #, c-format msgid "The directory %s is being replaced by a non-directory" msgstr "La directory %s sta per essere sostituita da una non-directory" -#: apt-inst/extract.cc:283 +#: apt-inst/extract.cc:282 msgid "Failed to locate node in its hash bucket" msgstr "Localizzazione del nodo nel suo hash bucket non riuscita" -#: apt-inst/extract.cc:287 +#: apt-inst/extract.cc:286 msgid "The path is too long" msgstr "Il percorso è troppo lungo" -#: apt-inst/extract.cc:415 +#: apt-inst/extract.cc:414 #, c-format msgid "Overwrite package match with no version for %s" msgstr "Il pacchetto sovrascritto corrisponde senza versione per %s" -#: apt-inst/extract.cc:432 +#: apt-inst/extract.cc:431 #, c-format msgid "File %s/%s overwrites the one in the package %s" msgstr "Il file %s/%s sovrascrive quello nel pacchetto %s" -#: apt-inst/extract.cc:492 +#: apt-inst/extract.cc:491 #, c-format msgid "Unable to stat %s" msgstr "Impossibile eseguire stat su %s" @@ -2685,59 +2685,59 @@ msgid "The package cache was built for a different architecture" msgstr "" "Il file della cache dei pacchetti è stato generato per un'altra architettura" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "Depends" msgstr "Dipende" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "PreDepends" msgstr "Pre-dipende" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "Suggests" msgstr "Consiglia" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Recommends" msgstr "Raccomanda" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Conflicts" msgstr "Va in conflitto" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Replaces" msgstr "Sostituisce" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Obsoletes" msgstr "Rende obsoleto" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Breaks" msgstr "Rompe" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Enhances" msgstr "Migliora" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "important" msgstr "importante" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "required" msgstr "richiesto" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "standard" msgstr "standard" -#: apt-pkg/pkgcache.cc:319 +#: apt-pkg/pkgcache.cc:328 msgid "optional" msgstr "opzionale" -#: apt-pkg/pkgcache.cc:319 +#: apt-pkg/pkgcache.cc:328 msgid "extra" msgstr "extra" @@ -2847,12 +2847,12 @@ msgstr "Apertura di %s" msgid "Line %u too long in source list %s." msgstr "Riga %u troppo lunga nel file %s." -#: apt-pkg/sourcelist.cc:285 +#: apt-pkg/sourcelist.cc:289 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "La riga %u nel file %s non è corretta (type)" -#: apt-pkg/sourcelist.cc:289 +#: apt-pkg/sourcelist.cc:293 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "Tipo \"%s\" non riconosciuto alla riga %u nel file %s" @@ -3026,14 +3026,14 @@ msgstr "La cache ha un sistema di gestione delle versioni incompatibile" #. TRANSLATOR: The first placeholder is a package name, #. the other two should be copied verbatim as they include debug info #: apt-pkg/pkgcachegen.cc:218 apt-pkg/pkgcachegen.cc:228 -#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:325 -#: apt-pkg/pkgcachegen.cc:333 apt-pkg/pkgcachegen.cc:375 -#: apt-pkg/pkgcachegen.cc:379 apt-pkg/pkgcachegen.cc:396 -#: apt-pkg/pkgcachegen.cc:406 apt-pkg/pkgcachegen.cc:410 -#: apt-pkg/pkgcachegen.cc:414 apt-pkg/pkgcachegen.cc:435 -#: apt-pkg/pkgcachegen.cc:477 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:525 apt-pkg/pkgcachegen.cc:556 -#: apt-pkg/pkgcachegen.cc:570 +#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:319 +#: apt-pkg/pkgcachegen.cc:332 apt-pkg/pkgcachegen.cc:374 +#: apt-pkg/pkgcachegen.cc:378 apt-pkg/pkgcachegen.cc:395 +#: apt-pkg/pkgcachegen.cc:403 apt-pkg/pkgcachegen.cc:407 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:432 +#: apt-pkg/pkgcachegen.cc:471 apt-pkg/pkgcachegen.cc:509 +#: apt-pkg/pkgcachegen.cc:516 apt-pkg/pkgcachegen.cc:547 +#: apt-pkg/pkgcachegen.cc:561 #, c-format msgid "Error occurred while processing %s (%s%d)" msgstr "Si è verificato un errore nell'elaborare %s (%s%d)" @@ -3056,29 +3056,29 @@ msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "È stato superato il numero di dipendenze che questo APT può gestire." # (ndt) il primo è il nome del pacchetto, il secondo la versione -#: apt-pkg/pkgcachegen.cc:577 +#: apt-pkg/pkgcachegen.cc:568 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "" "Il pacchetto %s v.%s non è stato trovato durante l'elaborazione delle " "dipendenze" -#: apt-pkg/pkgcachegen.cc:1150 +#: apt-pkg/pkgcachegen.cc:1197 #, c-format msgid "Couldn't stat source package list %s" msgstr "Impossibile eseguire stat sull'elenco dei pacchetti sorgente %s" -#: apt-pkg/pkgcachegen.cc:1238 apt-pkg/pkgcachegen.cc:1342 -#: apt-pkg/pkgcachegen.cc:1348 apt-pkg/pkgcachegen.cc:1505 +#: apt-pkg/pkgcachegen.cc:1285 apt-pkg/pkgcachegen.cc:1389 +#: apt-pkg/pkgcachegen.cc:1395 apt-pkg/pkgcachegen.cc:1552 msgid "Reading package lists" msgstr "Lettura elenco dei pacchetti" # (ndt) non mi convince per niente, ma vediamo cosa salta fuori -#: apt-pkg/pkgcachegen.cc:1255 +#: apt-pkg/pkgcachegen.cc:1302 msgid "Collecting File Provides" msgstr "Il file fornisce" -#: apt-pkg/pkgcachegen.cc:1447 apt-pkg/pkgcachegen.cc:1454 +#: apt-pkg/pkgcachegen.cc:1494 apt-pkg/pkgcachegen.cc:1501 msgid "IO Error saving source cache" msgstr "Errore di I/O nel salvare la cache sorgente" @@ -3295,22 +3295,22 @@ 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/indexcopy.cc:236 apt-pkg/indexcopy.cc:766 +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:764 #, c-format msgid "Wrote %i records.\n" msgstr "Scritti %i record.\n" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:768 +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:766 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "Scritti %i record con %i file mancanti.\n" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:771 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:769 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "Scritti %i record con %i file senza corrispondenze\n" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:774 +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:772 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" diff --git a/po/ja.po b/po/ja.po index 7f02fa9af..44b51b4d9 100644 --- a/po/ja.po +++ b/po/ja.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.9.7.1\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-04-03 14:20+0200\n" +"POT-Creation-Date: 2013-04-08 15:40+0200\n" "PO-Revision-Date: 2012-07-01 00:14+0900\n" "Last-Translator: Kenshi Muto \n" "Language-Team: Debian Japanese List \n" @@ -156,7 +156,7 @@ msgstr " バージョンテーブル:" #: cmdline/apt-cache.cc:1683 cmdline/apt-cdrom.cc:198 cmdline/apt-config.cc:81 #: cmdline/apt-get.cc:3363 cmdline/apt-mark.cc:375 -#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:590 +#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:591 #: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147 #, c-format msgid "%s %s for %s compiled on %s %s\n" @@ -1617,7 +1617,7 @@ msgstr "内部エラー" #. Only warn if there are no sources.list.d. #. Only warn if there is no sources.list file. -#: methods/mirror.cc:95 apt-inst/extract.cc:465 +#: methods/mirror.cc:95 apt-inst/extract.cc:464 #: apt-pkg/contrib/cdromutl.cc:183 apt-pkg/contrib/fileutl.cc:400 #: apt-pkg/contrib/fileutl.cc:513 apt-pkg/sourcelist.cc:208 #: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:108 @@ -1742,7 +1742,7 @@ msgstr "" " -c=? 指定した設定ファイルを読み込む\n" " -o=? 指定した設定オプションを適用する (例: -o dir::cache=/tmp)\n" -#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1339 +#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1386 #, c-format msgid "Unable to write to %s" msgstr "%s に書き込めません" @@ -1752,31 +1752,31 @@ msgid "Cannot get debconf version. Is debconf installed?" msgstr "" "debconf のバージョンを取得できません。debconf はインストールされていますか?" -#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:348 +#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:349 msgid "Package extension list is too long" msgstr "パッケージ拡張子リストが長すぎます" #: ftparchive/apt-ftparchive.cc:173 ftparchive/apt-ftparchive.cc:190 -#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:263 -#: ftparchive/apt-ftparchive.cc:277 ftparchive/apt-ftparchive.cc:299 +#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:264 +#: ftparchive/apt-ftparchive.cc:278 ftparchive/apt-ftparchive.cc:300 #, c-format msgid "Error processing directory %s" msgstr "ディレクトリ %s の処理中にエラーが発生しました" -#: ftparchive/apt-ftparchive.cc:261 +#: ftparchive/apt-ftparchive.cc:262 msgid "Source extension list is too long" msgstr "ソース拡張子リストが長すぎます" -#: ftparchive/apt-ftparchive.cc:378 +#: ftparchive/apt-ftparchive.cc:379 msgid "Error writing header to contents file" msgstr "Contents ファイルへのヘッダの書き込み中にエラーが発生しました" -#: ftparchive/apt-ftparchive.cc:408 +#: ftparchive/apt-ftparchive.cc:409 #, c-format msgid "Error processing contents %s" msgstr "Contents %s の処理中にエラーが発生しました" -#: ftparchive/apt-ftparchive.cc:596 +#: ftparchive/apt-ftparchive.cc:597 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -1857,11 +1857,11 @@ msgstr "" " -c=? 指定の設定ファイルを読む\n" " -o=? 任意の設定オプションを設定する" -#: ftparchive/apt-ftparchive.cc:802 +#: ftparchive/apt-ftparchive.cc:803 msgid "No selections matched" msgstr "選択にマッチするものがありません" -#: ftparchive/apt-ftparchive.cc:880 +#: ftparchive/apt-ftparchive.cc:881 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "パッケージファイルグループ `%s' に見当たらないファイルがあります" @@ -1889,8 +1889,8 @@ msgstr "" msgid "Unable to open DB file %s: %s" msgstr "DB ファイル %s を開くことができません: %s" -#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:181 apt-inst/extract.cc:193 -#: apt-inst/extract.cc:210 +#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:179 apt-inst/extract.cc:192 +#: apt-inst/extract.cc:209 #, c-format msgid "Failed to stat %s" msgstr "%s の状態を取得するのに失敗しました" @@ -1968,22 +1968,22 @@ msgstr " リンクを外す制限の %sB に到達しました。\n" msgid "Archive had no package field" msgstr "アーカイブにパッケージフィールドがありませんでした" -#: ftparchive/writer.cc:411 ftparchive/writer.cc:698 +#: ftparchive/writer.cc:411 ftparchive/writer.cc:701 #, c-format msgid " %s has no override entry\n" msgstr " %s に override エントリがありません\n" -#: ftparchive/writer.cc:479 ftparchive/writer.cc:814 +#: ftparchive/writer.cc:479 ftparchive/writer.cc:845 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " %1$s メンテナは %3$s ではなく %2$s です\n" -#: ftparchive/writer.cc:708 +#: ftparchive/writer.cc:711 #, c-format msgid " %s has no source override entry\n" msgstr " %s にソース override エントリがありません\n" -#: ftparchive/writer.cc:712 +#: ftparchive/writer.cc:715 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s にバイナリ override エントリがありません\n" @@ -2057,7 +2057,7 @@ msgstr "MD5 の計算中に読み込みに失敗しました" msgid "Problem unlinking %s" msgstr "%s のリンク解除で問題が発生しました" -#: ftparchive/multicompress.cc:373 apt-inst/extract.cc:188 +#: ftparchive/multicompress.cc:373 apt-inst/extract.cc:187 #, c-format msgid "Failed to rename %s to %s" msgstr "%s を %s に名前変更できませんでした" @@ -2201,55 +2201,55 @@ msgstr "ファイル %s の書き込みに失敗しました" msgid "Failed to close file %s" msgstr "%s のクローズに失敗しました" -#: apt-inst/extract.cc:96 apt-inst/extract.cc:167 +#: apt-inst/extract.cc:94 apt-inst/extract.cc:165 #, c-format msgid "The path %s is too long" msgstr "パス %s は長すぎます" -#: apt-inst/extract.cc:127 +#: apt-inst/extract.cc:125 #, c-format msgid "Unpacking %s more than once" msgstr "%s を複数回展開しています" -#: apt-inst/extract.cc:137 +#: apt-inst/extract.cc:135 #, c-format msgid "The directory %s is diverted" msgstr "ディレクトリ %s は divert されています" -#: apt-inst/extract.cc:147 +#: apt-inst/extract.cc:145 #, c-format msgid "The package is trying to write to the diversion target %s/%s" msgstr "" "このパッケージは diversion のターゲットの %s/%s に書き込もうとしています" -#: apt-inst/extract.cc:157 apt-inst/extract.cc:300 +#: apt-inst/extract.cc:155 apt-inst/extract.cc:299 msgid "The diversion path is too long" msgstr "diversion パスが長すぎます" -#: apt-inst/extract.cc:243 +#: apt-inst/extract.cc:242 #, c-format msgid "The directory %s is being replaced by a non-directory" msgstr "ディレクトリ %s が非ディレクトリに置換されようとしています" -#: apt-inst/extract.cc:283 +#: apt-inst/extract.cc:282 msgid "Failed to locate node in its hash bucket" msgstr "ハッシュバケツ内でノードを特定するのに失敗しました" -#: apt-inst/extract.cc:287 +#: apt-inst/extract.cc:286 msgid "The path is too long" msgstr "パスが長すぎます" -#: apt-inst/extract.cc:415 +#: apt-inst/extract.cc:414 #, c-format msgid "Overwrite package match with no version for %s" msgstr "%s に対するバージョンのないパッケージマッチを上書きします" -#: apt-inst/extract.cc:432 +#: apt-inst/extract.cc:431 #, c-format msgid "File %s/%s overwrites the one in the package %s" msgstr "ファイル %s/%s がパッケージ %s のものを上書きします" -#: apt-inst/extract.cc:492 +#: apt-inst/extract.cc:491 #, c-format msgid "Unable to stat %s" msgstr "%s の状態を取得できません" @@ -2637,59 +2637,59 @@ msgstr "この APT はバージョニングシステム '%s' をサポートし msgid "The package cache was built for a different architecture" msgstr "パッケージキャッシュが異なるアーキテクチャ用に構築されています" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "Depends" msgstr "依存" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "PreDepends" msgstr "先行依存" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "Suggests" msgstr "提案" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Recommends" msgstr "推奨" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Conflicts" msgstr "競合" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Replaces" msgstr "置換" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Obsoletes" msgstr "廃止" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Breaks" msgstr "破壊" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Enhances" msgstr "拡張" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "important" msgstr "重要" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "required" msgstr "要求" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "standard" msgstr "標準" -#: apt-pkg/pkgcache.cc:319 +#: apt-pkg/pkgcache.cc:328 msgid "optional" msgstr "任意" -#: apt-pkg/pkgcache.cc:319 +#: apt-pkg/pkgcache.cc:328 msgid "extra" msgstr "特別" @@ -2793,12 +2793,12 @@ msgstr "%s をオープンしています" msgid "Line %u too long in source list %s." msgstr "ソースリスト %2$s の %1$u 行目が長すぎます。" -#: apt-pkg/sourcelist.cc:285 +#: apt-pkg/sourcelist.cc:289 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "ソースリスト %2$s の %1$u 行目が不正です (type)" -#: apt-pkg/sourcelist.cc:289 +#: apt-pkg/sourcelist.cc:293 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "ソースリスト %3$s の %2$u 行にあるタイプ '%1$s' は不明です" @@ -2971,14 +2971,14 @@ msgstr "キャッシュに非互換なバージョニングシステムがあり #. TRANSLATOR: The first placeholder is a package name, #. the other two should be copied verbatim as they include debug info #: apt-pkg/pkgcachegen.cc:218 apt-pkg/pkgcachegen.cc:228 -#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:325 -#: apt-pkg/pkgcachegen.cc:333 apt-pkg/pkgcachegen.cc:375 -#: apt-pkg/pkgcachegen.cc:379 apt-pkg/pkgcachegen.cc:396 -#: apt-pkg/pkgcachegen.cc:406 apt-pkg/pkgcachegen.cc:410 -#: apt-pkg/pkgcachegen.cc:414 apt-pkg/pkgcachegen.cc:435 -#: apt-pkg/pkgcachegen.cc:477 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:525 apt-pkg/pkgcachegen.cc:556 -#: apt-pkg/pkgcachegen.cc:570 +#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:319 +#: apt-pkg/pkgcachegen.cc:332 apt-pkg/pkgcachegen.cc:374 +#: apt-pkg/pkgcachegen.cc:378 apt-pkg/pkgcachegen.cc:395 +#: apt-pkg/pkgcachegen.cc:403 apt-pkg/pkgcachegen.cc:407 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:432 +#: apt-pkg/pkgcachegen.cc:471 apt-pkg/pkgcachegen.cc:509 +#: apt-pkg/pkgcachegen.cc:516 apt-pkg/pkgcachegen.cc:547 +#: apt-pkg/pkgcachegen.cc:561 #, c-format msgid "Error occurred while processing %s (%s%d)" msgstr "%s を処理中にエラーが発生しました (%s%d)" @@ -2999,26 +2999,26 @@ msgstr "この APT が対応している以上の数の説明が要求されま msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "この APT が対応している以上の数の依存関係が発生しました。" -#: apt-pkg/pkgcachegen.cc:577 +#: apt-pkg/pkgcachegen.cc:568 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "パッケージ %s %s がファイル依存の処理中に見つかりませんでした" -#: apt-pkg/pkgcachegen.cc:1150 +#: apt-pkg/pkgcachegen.cc:1197 #, c-format msgid "Couldn't stat source package list %s" msgstr "ソースパッケージリスト %s の状態を取得できません" -#: apt-pkg/pkgcachegen.cc:1238 apt-pkg/pkgcachegen.cc:1342 -#: apt-pkg/pkgcachegen.cc:1348 apt-pkg/pkgcachegen.cc:1505 +#: apt-pkg/pkgcachegen.cc:1285 apt-pkg/pkgcachegen.cc:1389 +#: apt-pkg/pkgcachegen.cc:1395 apt-pkg/pkgcachegen.cc:1552 msgid "Reading package lists" msgstr "パッケージリストを読み込んでいます" -#: apt-pkg/pkgcachegen.cc:1255 +#: apt-pkg/pkgcachegen.cc:1302 msgid "Collecting File Provides" msgstr "ファイル提供情報を収集しています" -#: apt-pkg/pkgcachegen.cc:1447 apt-pkg/pkgcachegen.cc:1454 +#: apt-pkg/pkgcachegen.cc:1494 apt-pkg/pkgcachegen.cc:1501 msgid "IO Error saving source cache" msgstr "ソースキャッシュの保存中に IO エラーが発生しました" @@ -3235,22 +3235,22 @@ msgstr "新しいソースリストを書き込んでいます\n" msgid "Source list entries for this disc are:\n" msgstr "このディスクのソースリストのエントリ:\n" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:766 +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:764 #, c-format msgid "Wrote %i records.\n" msgstr "%i レコードを書き込みました。\n" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:768 +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:766 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "%i レコードを書き込みました。%i 個のファイルが存在しません。\n" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:771 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:769 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "%i レコードを書き込みました。%i 個の適合しないファイルがあります。\n" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:774 +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:772 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" diff --git a/po/km.po b/po/km.po index e6048afdc..17d6bf77b 100644 --- a/po/km.po +++ b/po/km.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: apt_po_km\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-04-03 14:20+0200\n" +"POT-Creation-Date: 2013-04-08 15:40+0200\n" "PO-Revision-Date: 2006-10-10 09:48+0700\n" "Last-Translator: Khoem Sokhem \n" "Language-Team: Khmer \n" @@ -161,7 +161,7 @@ msgstr " តារាង​កំណែ ៖" #: cmdline/apt-cache.cc:1683 cmdline/apt-cdrom.cc:198 cmdline/apt-config.cc:81 #: cmdline/apt-get.cc:3363 cmdline/apt-mark.cc:375 -#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:590 +#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:591 #: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147 #, fuzzy, c-format msgid "%s %s for %s compiled on %s %s\n" @@ -1558,7 +1558,7 @@ msgstr "កំហុស​ខាង​ក្នុង​" #. Only warn if there are no sources.list.d. #. Only warn if there is no sources.list file. -#: methods/mirror.cc:95 apt-inst/extract.cc:465 +#: methods/mirror.cc:95 apt-inst/extract.cc:464 #: apt-pkg/contrib/cdromutl.cc:183 apt-pkg/contrib/fileutl.cc:400 #: apt-pkg/contrib/fileutl.cc:513 apt-pkg/sourcelist.cc:208 #: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:108 @@ -1681,7 +1681,7 @@ msgstr "" " -c=? អាន​ឯកសារ​ការ​កំណត់​រចនាស្ព័ន្ធ​នេះ\n" " -o=? កំណត់​ជម្រើស​ការ​កំណត់​រចនា​សម្ព័ន្ធ​តាម​ចិត្ត ឧ. eg -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1339 +#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1386 #, c-format msgid "Unable to write to %s" msgstr "មិន​អាច​សរសេរ​ទៅ %s" @@ -1690,31 +1690,31 @@ msgstr "មិន​អាច​សរសេរ​ទៅ %s" msgid "Cannot get debconf version. Is debconf installed?" msgstr "មិន​អាច​ទទួល​យក​កំណែ​ debconf  ។ តើ​ debconf បានដំឡើង​ឬ ?" -#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:348 +#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:349 msgid "Package extension list is too long" msgstr "បញ្ជី​ផ្នែក​បន្ថែម​កញ្ចប់​វែង​ពេក" #: ftparchive/apt-ftparchive.cc:173 ftparchive/apt-ftparchive.cc:190 -#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:263 -#: ftparchive/apt-ftparchive.cc:277 ftparchive/apt-ftparchive.cc:299 +#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:264 +#: ftparchive/apt-ftparchive.cc:278 ftparchive/apt-ftparchive.cc:300 #, c-format msgid "Error processing directory %s" msgstr "​កំហុស​ដំណើរការ​ថត​ %s" -#: ftparchive/apt-ftparchive.cc:261 +#: ftparchive/apt-ftparchive.cc:262 msgid "Source extension list is too long" msgstr "បញ្ជី​ផ្នែក​បន្ថែម​ប្រភព​វែង​ពេក" -#: ftparchive/apt-ftparchive.cc:378 +#: ftparchive/apt-ftparchive.cc:379 msgid "Error writing header to contents file" msgstr "កំហុស​សរសេរ​បឋម​កថា​ទៅ​ឯកសារ​មាតិកា" -#: ftparchive/apt-ftparchive.cc:408 +#: ftparchive/apt-ftparchive.cc:409 #, c-format msgid "Error processing contents %s" msgstr "កំហុស​ដំណើរការ​មាតិកា​ %s" -#: ftparchive/apt-ftparchive.cc:596 +#: ftparchive/apt-ftparchive.cc:597 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -1795,11 +1795,11 @@ msgstr "" " -c=? អាន​ឯកសារ​ការកំណត់​រចនាសម្ព័ន្ធ​នេះ​\n" " -o=? កំណត់​ជម្រើស​ការ​កំណត់​រចនា​សម្ព័ន្ធ​តាម​ចិត្ត" -#: ftparchive/apt-ftparchive.cc:802 +#: ftparchive/apt-ftparchive.cc:803 msgid "No selections matched" msgstr "គ្មាន​ការ​ជ្រើស​​ដែល​ផ្គួផ្គង​" -#: ftparchive/apt-ftparchive.cc:880 +#: ftparchive/apt-ftparchive.cc:881 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "ឯកសារ​មួយ​ចំនួន​បាត់បងពី​ក្រុម​ឯកសារ​កញ្ចប់​ `%s'" @@ -1828,8 +1828,8 @@ msgstr "" msgid "Unable to open DB file %s: %s" msgstr "មិន​អាច​បើក​ឯកសារ​ DB បានទេ %s: %s" -#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:181 apt-inst/extract.cc:193 -#: apt-inst/extract.cc:210 +#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:179 apt-inst/extract.cc:192 +#: apt-inst/extract.cc:209 #, c-format msgid "Failed to stat %s" msgstr "បាន​បរាជ័យ​ក្នុង​ការថ្លែង %s" @@ -1907,22 +1907,22 @@ msgstr " DeLink កំណត់​នៃ​ការ​វាយ %sB ។\n" msgid "Archive had no package field" msgstr "ប័ណ្ណសារ​គ្មាន​វាល​កញ្ចប់​" -#: ftparchive/writer.cc:411 ftparchive/writer.cc:698 +#: ftparchive/writer.cc:411 ftparchive/writer.cc:701 #, c-format msgid " %s has no override entry\n" msgstr " %s គ្មាន​ធាតុធាតុបញ្ចូល​​បដិសេធឡើយ\n" -#: ftparchive/writer.cc:479 ftparchive/writer.cc:814 +#: ftparchive/writer.cc:479 ftparchive/writer.cc:845 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " អ្នក​ថែទាំ %s គឺ %s មិនមែន​ %s\n" -#: ftparchive/writer.cc:708 +#: ftparchive/writer.cc:711 #, c-format msgid " %s has no source override entry\n" msgstr " %s គ្មាន​ធាតុ​បដិសេធ​ប្រភព\n" -#: ftparchive/writer.cc:712 +#: ftparchive/writer.cc:715 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s គ្មាន​ធាតុប​ដិសេធគោល​ពីរ​ដែរ\n" @@ -1996,7 +1996,7 @@ msgstr "បាន​បរាជ័យ​ក្នុង​ការអាន​ msgid "Problem unlinking %s" msgstr "មានបញ្ហា​ក្នុងការ​ផ្ដាច់តំណ %s" -#: ftparchive/multicompress.cc:373 apt-inst/extract.cc:188 +#: ftparchive/multicompress.cc:373 apt-inst/extract.cc:187 #, c-format msgid "Failed to rename %s to %s" msgstr "បរាជ័យ​ក្នុង​ការ​ប្តូរ​ឈ្មោះ %s ទៅ %s" @@ -2141,54 +2141,54 @@ msgstr "បរាជ័យ​ក្នុងការ​សរសេរ​ឯក msgid "Failed to close file %s" msgstr "បរាជ័យ​ក្នុងការ​បិទឯកសារ %s" -#: apt-inst/extract.cc:96 apt-inst/extract.cc:167 +#: apt-inst/extract.cc:94 apt-inst/extract.cc:165 #, c-format msgid "The path %s is too long" msgstr "ផ្លូវ​ %s វែង​ពេក" -#: apt-inst/extract.cc:127 +#: apt-inst/extract.cc:125 #, c-format msgid "Unpacking %s more than once" msgstr "កំពុង​ពន្លា​ %s ច្រើន​ជាង​ម្តង​" -#: apt-inst/extract.cc:137 +#: apt-inst/extract.cc:135 #, c-format msgid "The directory %s is diverted" msgstr "ថត​ %s ត្រូវបាន​បង្វែរ" -#: apt-inst/extract.cc:147 +#: apt-inst/extract.cc:145 #, c-format msgid "The package is trying to write to the diversion target %s/%s" msgstr "កញ្ចប់ ​កំពុង​ព្យាយាម​សរសេរ​ទៅកាន់​គោលដៅ​បង្វែរ​ %s/%s" -#: apt-inst/extract.cc:157 apt-inst/extract.cc:300 +#: apt-inst/extract.cc:155 apt-inst/extract.cc:299 msgid "The diversion path is too long" msgstr "ផ្លូវ​បង្វែរ វែងពេក" -#: apt-inst/extract.cc:243 +#: apt-inst/extract.cc:242 #, c-format msgid "The directory %s is being replaced by a non-directory" msgstr "ថត​ %s ត្រូវ​បាន​ជំនួស​ដោយ​មិនមែន​ជា​ថត​" -#: apt-inst/extract.cc:283 +#: apt-inst/extract.cc:282 msgid "Failed to locate node in its hash bucket" msgstr "បរាជ័យ​ក្នុងការ​ដាក់ថ្នាំង​នៅក្នុង​ធុង​រាយប៉ាយ​របស់វា" -#: apt-inst/extract.cc:287 +#: apt-inst/extract.cc:286 msgid "The path is too long" msgstr "ផ្លូវ​វែង​ពេក" -#: apt-inst/extract.cc:415 +#: apt-inst/extract.cc:414 #, c-format msgid "Overwrite package match with no version for %s" msgstr "សរសេរ​ជាន់​លើកញ្ចប់ផ្គួផ្គង​ដោយ​គ្មាន​កំណែ​សម្រាប់ %s" -#: apt-inst/extract.cc:432 +#: apt-inst/extract.cc:431 #, c-format msgid "File %s/%s overwrites the one in the package %s" msgstr "ឯកសារ​ %s/%s សរសេរជាន់​ពីលើ​មួយ​ក្នុង​កញ្ចប់ %s" -#: apt-inst/extract.cc:492 +#: apt-inst/extract.cc:491 #, c-format msgid "Unable to stat %s" msgstr "មិន​អាច​ថ្លែង %s បានឡើយ" @@ -2570,59 +2570,59 @@ msgstr "APT នេះ មិនគាំទ្រ​ប្រព័ន្ធ​ msgid "The package cache was built for a different architecture" msgstr "ឃ្លាំង​សម្ងាត់​កញ្ចប់ត្រូវ​បានស្ថាបនា់​សម្រាប់ស្ថាបត្យករ​ខុស​ៗគ្នា​​" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "Depends" msgstr "អាស្រ័យ​" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "PreDepends" msgstr "អាស្រ័យជា​មុន" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "Suggests" msgstr "ផ្ដល់យោបល់​" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Recommends" msgstr "ផ្តល់​អនុសាសន៍​" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Conflicts" msgstr "ប៉ះទង្គិច" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Replaces" msgstr "ជំនួស​" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Obsoletes" msgstr "លែង​ប្រើ" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Breaks" msgstr "" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Enhances" msgstr "" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "important" msgstr "សំខាន់​" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "required" msgstr "បាន​ទាមទារ" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "standard" msgstr "គំរូ" -#: apt-pkg/pkgcache.cc:319 +#: apt-pkg/pkgcache.cc:328 msgid "optional" msgstr "ស្រេចចិត្ត" -#: apt-pkg/pkgcache.cc:319 +#: apt-pkg/pkgcache.cc:328 msgid "extra" msgstr "បន្ថែម" @@ -2723,12 +2723,12 @@ msgstr "កំពុង​បើក​ %s" msgid "Line %u too long in source list %s." msgstr "បន្ទាត់​ %u មាន​ប្រវែង​វែងពេកនៅ​ក្នុង​បញ្ជី​ប្រភព​ %s ។" -#: apt-pkg/sourcelist.cc:285 +#: apt-pkg/sourcelist.cc:289 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "បន្ទាត់​ Malformed %u ក្នុង​បញ្ជី​ប្រភព​ %s (ប្រភេទ​)" -#: apt-pkg/sourcelist.cc:289 +#: apt-pkg/sourcelist.cc:293 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "ប្រភេទ​ '%s' មិន​ស្គាល់នៅលើបន្ទាត់​ %u ក្នុង​បញ្ជី​ប្រភព​ %s ឡើយ" @@ -2887,14 +2887,14 @@ msgstr "ឃ្លាំងសម្ងាត់​មិន​ត្រូវ​ #. TRANSLATOR: The first placeholder is a package name, #. the other two should be copied verbatim as they include debug info #: apt-pkg/pkgcachegen.cc:218 apt-pkg/pkgcachegen.cc:228 -#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:325 -#: apt-pkg/pkgcachegen.cc:333 apt-pkg/pkgcachegen.cc:375 -#: apt-pkg/pkgcachegen.cc:379 apt-pkg/pkgcachegen.cc:396 -#: apt-pkg/pkgcachegen.cc:406 apt-pkg/pkgcachegen.cc:410 -#: apt-pkg/pkgcachegen.cc:414 apt-pkg/pkgcachegen.cc:435 -#: apt-pkg/pkgcachegen.cc:477 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:525 apt-pkg/pkgcachegen.cc:556 -#: apt-pkg/pkgcachegen.cc:570 +#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:319 +#: apt-pkg/pkgcachegen.cc:332 apt-pkg/pkgcachegen.cc:374 +#: apt-pkg/pkgcachegen.cc:378 apt-pkg/pkgcachegen.cc:395 +#: apt-pkg/pkgcachegen.cc:403 apt-pkg/pkgcachegen.cc:407 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:432 +#: apt-pkg/pkgcachegen.cc:471 apt-pkg/pkgcachegen.cc:509 +#: apt-pkg/pkgcachegen.cc:516 apt-pkg/pkgcachegen.cc:547 +#: apt-pkg/pkgcachegen.cc:561 #, fuzzy, c-format msgid "Error occurred while processing %s (%s%d)" msgstr "កំហុស​បានកើតឡើង​ខណៈពេល​កំពុង​ដំណើរការ​ %s (FindPkg)" @@ -2916,26 +2916,26 @@ msgstr "អស្ចារ្យ អ្នក​មាន​កំណែ​ល msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "អស្ចារ្យ​, អ្នក​មាន​ភាពអាស្រ័យ​លើស​ចំនួន​ APT នេះ​ឆបគ្នា​ ។" -#: apt-pkg/pkgcachegen.cc:577 +#: apt-pkg/pkgcachegen.cc:568 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "កញ្ចប់​ %s %s រក​មិន​ឃើញ​ខណៈ​ពេល​កំពុង​ដំណើរការ​ភាពអាស្រ័យ​​ឯកសារ" -#: apt-pkg/pkgcachegen.cc:1150 +#: apt-pkg/pkgcachegen.cc:1197 #, c-format msgid "Couldn't stat source package list %s" msgstr "មិនអាចថ្លែង បញ្ជី​កញ្ចប់​ប្រភពចប់​ បានឡើយ %s" -#: apt-pkg/pkgcachegen.cc:1238 apt-pkg/pkgcachegen.cc:1342 -#: apt-pkg/pkgcachegen.cc:1348 apt-pkg/pkgcachegen.cc:1505 +#: apt-pkg/pkgcachegen.cc:1285 apt-pkg/pkgcachegen.cc:1389 +#: apt-pkg/pkgcachegen.cc:1395 apt-pkg/pkgcachegen.cc:1552 msgid "Reading package lists" msgstr "កំពុង​អាន​បញ្ជី​កញ្ចប់" -#: apt-pkg/pkgcachegen.cc:1255 +#: apt-pkg/pkgcachegen.cc:1302 msgid "Collecting File Provides" msgstr "ការផ្ដល់​ឯកសារ​ប្រមូលផ្ដុំ" -#: apt-pkg/pkgcachegen.cc:1447 apt-pkg/pkgcachegen.cc:1454 +#: apt-pkg/pkgcachegen.cc:1494 apt-pkg/pkgcachegen.cc:1501 msgid "IO Error saving source cache" msgstr "IO កំហុសក្នុងការររក្សាទុក​ឃ្លាំង​សម្ងាត់​ប្រភព​" @@ -3139,22 +3139,22 @@ msgstr "កំពុងសរសេរ​បញ្ជី​ប្រភព​ថ msgid "Source list entries for this disc are:\n" msgstr "ធាតុបញ្ចូល​បញ្ជីប្រភព​សម្រាប់​ឌីស​នេះគឺ ៖\n" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:766 +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:764 #, c-format msgid "Wrote %i records.\n" msgstr "បានសរសេរ %i កំណត់ត្រា ។\n" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:768 +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:766 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "បានសរសេរ %i កំណត់ត្រា​ជាមួយ​ %i ឯកសារ​ដែល​បាត់បង់ ។\n" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:771 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:769 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "បានសរសេរ​ %i កំណត់ត្រា​ជាមួយួយ​ %i ឯកសារ​ដែល​មិន​បាន​ផ្គួផ្គង​\n" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:774 +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:772 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "បានសរសេរ %i កំណត់ត្រា​ជាមួយ​ %i ឯកសារ​ដែល​បាត់បង់​ និង​ %i ឯកសារ​ដែល​មិន​បាន​ផ្គួផ្គង​ ​\n" diff --git a/po/ko.po b/po/ko.po index 7cfbbc32c..08a7dc594 100644 --- a/po/ko.po +++ b/po/ko.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-04-03 14:20+0200\n" +"POT-Creation-Date: 2013-04-08 15:40+0200\n" "PO-Revision-Date: 2010-08-30 02:31+0900\n" "Last-Translator: Changwoo Ryu \n" "Language-Team: Korean \n" @@ -152,7 +152,7 @@ msgstr " 버전 테이블:" #: cmdline/apt-cache.cc:1683 cmdline/apt-cdrom.cc:198 cmdline/apt-config.cc:81 #: cmdline/apt-get.cc:3363 cmdline/apt-mark.cc:375 -#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:590 +#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:591 #: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147 #, c-format msgid "%s %s for %s compiled on %s %s\n" @@ -1576,7 +1576,7 @@ msgstr "내부 오류" #. Only warn if there are no sources.list.d. #. Only warn if there is no sources.list file. -#: methods/mirror.cc:95 apt-inst/extract.cc:465 +#: methods/mirror.cc:95 apt-inst/extract.cc:464 #: apt-pkg/contrib/cdromutl.cc:183 apt-pkg/contrib/fileutl.cc:400 #: apt-pkg/contrib/fileutl.cc:513 apt-pkg/sourcelist.cc:208 #: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:108 @@ -1702,7 +1702,7 @@ msgstr "" " -c=? 설정 파일을 읽습니다\n" " -o=? 임의의 옵션을 설정합니다. 예를 들어 -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1339 +#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1386 #, c-format msgid "Unable to write to %s" msgstr "%s에 쓸 수 없습니다" @@ -1711,31 +1711,31 @@ msgstr "%s에 쓸 수 없습니다" msgid "Cannot get debconf version. Is debconf installed?" msgstr "debconf 버전을 알 수 없습니다. debconf가 설치되었습니까?" -#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:348 +#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:349 msgid "Package extension list is too long" msgstr "패키지 확장 목록이 너무 깁니다" #: ftparchive/apt-ftparchive.cc:173 ftparchive/apt-ftparchive.cc:190 -#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:263 -#: ftparchive/apt-ftparchive.cc:277 ftparchive/apt-ftparchive.cc:299 +#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:264 +#: ftparchive/apt-ftparchive.cc:278 ftparchive/apt-ftparchive.cc:300 #, c-format msgid "Error processing directory %s" msgstr "%s 디렉터리를 처리하는데 오류가 발생했습니다" -#: ftparchive/apt-ftparchive.cc:261 +#: ftparchive/apt-ftparchive.cc:262 msgid "Source extension list is too long" msgstr "소스 확장 목록이 너무 깁니다" -#: ftparchive/apt-ftparchive.cc:378 +#: ftparchive/apt-ftparchive.cc:379 msgid "Error writing header to contents file" msgstr "컨텐츠 파일에 헤더를 쓰는데 오류가 발생했습니다" -#: ftparchive/apt-ftparchive.cc:408 +#: ftparchive/apt-ftparchive.cc:409 #, c-format msgid "Error processing contents %s" msgstr "%s 컨텐츠를 처리하는데 오류가 발생했습니다" -#: ftparchive/apt-ftparchive.cc:596 +#: ftparchive/apt-ftparchive.cc:597 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -1816,11 +1816,11 @@ msgstr "" " -c=? 이 설정 파일을 읽습니다\n" " -o=? 임의의 옵션을 설정합니다" -#: ftparchive/apt-ftparchive.cc:802 +#: ftparchive/apt-ftparchive.cc:803 msgid "No selections matched" msgstr "맞는 패키지가 없습니다" -#: ftparchive/apt-ftparchive.cc:880 +#: ftparchive/apt-ftparchive.cc:881 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "`%s' 패키지 파일 그룹에 몇몇 파일이 빠졌습니다" @@ -1848,8 +1848,8 @@ msgstr "" msgid "Unable to open DB file %s: %s" msgstr "DB 파일, %s 파일을 열 수 없습니다: %s" -#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:181 apt-inst/extract.cc:193 -#: apt-inst/extract.cc:210 +#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:179 apt-inst/extract.cc:192 +#: apt-inst/extract.cc:209 #, c-format msgid "Failed to stat %s" msgstr "%s의 정보를 읽는데 실패했습니다" @@ -1929,22 +1929,22 @@ msgstr " DeLink 한계값 %s바이트에 도달했습니다.\n" msgid "Archive had no package field" msgstr "아카이브에 패키지 필드가 없습니다" -#: ftparchive/writer.cc:411 ftparchive/writer.cc:698 +#: ftparchive/writer.cc:411 ftparchive/writer.cc:701 #, c-format msgid " %s has no override entry\n" msgstr " %s에는 override 항목이 없습니다\n" -#: ftparchive/writer.cc:479 ftparchive/writer.cc:814 +#: ftparchive/writer.cc:479 ftparchive/writer.cc:845 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " %s 관리자가 %s입니다 (%s 아님)\n" -#: ftparchive/writer.cc:708 +#: ftparchive/writer.cc:711 #, c-format msgid " %s has no source override entry\n" msgstr " %s에는 source override 항목이 없습니다\n" -#: ftparchive/writer.cc:712 +#: ftparchive/writer.cc:715 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s에는 binary override 항목이 없습니다\n" @@ -2018,7 +2018,7 @@ msgstr "MD5를 계산하는 동안 읽는데 실패했습니다" msgid "Problem unlinking %s" msgstr "%s의 링크를 해제하는데 문제가 있습니다" -#: ftparchive/multicompress.cc:373 apt-inst/extract.cc:188 +#: ftparchive/multicompress.cc:373 apt-inst/extract.cc:187 #, c-format msgid "Failed to rename %s to %s" msgstr "%s 파일의 이름을 %s(으)로 바꾸는데 실패했습니다" @@ -2164,54 +2164,54 @@ msgstr "%s 파일을 쓰는데 실패했습니다" msgid "Failed to close file %s" msgstr "%s 파일을 닫는데 실패했습니다" -#: apt-inst/extract.cc:96 apt-inst/extract.cc:167 +#: apt-inst/extract.cc:94 apt-inst/extract.cc:165 #, c-format msgid "The path %s is too long" msgstr "경로 %s이(가) 너무 깁니다" -#: apt-inst/extract.cc:127 +#: apt-inst/extract.cc:125 #, c-format msgid "Unpacking %s more than once" msgstr "%s을(를) 두 번 이상 풀었습니다" -#: apt-inst/extract.cc:137 +#: apt-inst/extract.cc:135 #, c-format msgid "The directory %s is diverted" msgstr "%s 디렉터리가 전환되었습니다" -#: apt-inst/extract.cc:147 +#: apt-inst/extract.cc:145 #, c-format msgid "The package is trying to write to the diversion target %s/%s" msgstr "이 패키지에서 전환된 대상에 쓰려고 합니다 (%s/%s)" -#: apt-inst/extract.cc:157 apt-inst/extract.cc:300 +#: apt-inst/extract.cc:155 apt-inst/extract.cc:299 msgid "The diversion path is too long" msgstr "전환하는 경로가 너무 깁니다" -#: apt-inst/extract.cc:243 +#: apt-inst/extract.cc:242 #, c-format msgid "The directory %s is being replaced by a non-directory" msgstr "%s 디렉터리를 디렉터리가 아닌 파일로 덮어쓰려고 합니다" -#: apt-inst/extract.cc:283 +#: apt-inst/extract.cc:282 msgid "Failed to locate node in its hash bucket" msgstr "해시 버킷에서 노드를 찾는데 실패했습니다" -#: apt-inst/extract.cc:287 +#: apt-inst/extract.cc:286 msgid "The path is too long" msgstr "경로가 너무 깁니다" -#: apt-inst/extract.cc:415 +#: apt-inst/extract.cc:414 #, c-format msgid "Overwrite package match with no version for %s" msgstr "덮어 쓰는 패키지가 %s 패키지의 어떤 버전과도 맞지 않습니다" -#: apt-inst/extract.cc:432 +#: apt-inst/extract.cc:431 #, c-format msgid "File %s/%s overwrites the one in the package %s" msgstr "%s/%s 파일은 %s 패키지에 있는 파일을 덮어 씁니다" -#: apt-inst/extract.cc:492 +#: apt-inst/extract.cc:491 #, c-format msgid "Unable to stat %s" msgstr "%s의 정보를 읽을 수 없습니다" @@ -2593,59 +2593,59 @@ msgstr "이 APT는 '%s' 버전 시스템을 지원하지 않습니다" msgid "The package cache was built for a different architecture" msgstr "패키지 캐시가 다른 아키텍쳐용입니다." -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "Depends" msgstr "의존" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "PreDepends" msgstr "미리의존" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "Suggests" msgstr "제안" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Recommends" msgstr "추천" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Conflicts" msgstr "충돌" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Replaces" msgstr "대체" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Obsoletes" msgstr "없앰" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Breaks" msgstr "망가뜨림" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Enhances" msgstr "향상" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "important" msgstr "중요" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "required" msgstr "필수" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "standard" msgstr "표준" -#: apt-pkg/pkgcache.cc:319 +#: apt-pkg/pkgcache.cc:328 msgid "optional" msgstr "옵션" -#: apt-pkg/pkgcache.cc:319 +#: apt-pkg/pkgcache.cc:328 msgid "extra" msgstr "별도" @@ -2746,12 +2746,12 @@ msgstr "%s 파일을 여는 중입니다" msgid "Line %u too long in source list %s." msgstr "소스 리스트 %2$s의 %1$u번 줄이 너무 깁니다." -#: apt-pkg/sourcelist.cc:285 +#: apt-pkg/sourcelist.cc:289 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "소스 리스트 %2$s의 %1$u번 줄이 잘못되었습니다 (타입)" -#: apt-pkg/sourcelist.cc:289 +#: apt-pkg/sourcelist.cc:293 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "소스 목록 %3$s의 %2$u번 줄의 '%1$s' 타입을 알 수 없습니다" @@ -2915,14 +2915,14 @@ msgstr "캐시의 버전 시스템이 호환되지 않습니다" #. TRANSLATOR: The first placeholder is a package name, #. the other two should be copied verbatim as they include debug info #: apt-pkg/pkgcachegen.cc:218 apt-pkg/pkgcachegen.cc:228 -#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:325 -#: apt-pkg/pkgcachegen.cc:333 apt-pkg/pkgcachegen.cc:375 -#: apt-pkg/pkgcachegen.cc:379 apt-pkg/pkgcachegen.cc:396 -#: apt-pkg/pkgcachegen.cc:406 apt-pkg/pkgcachegen.cc:410 -#: apt-pkg/pkgcachegen.cc:414 apt-pkg/pkgcachegen.cc:435 -#: apt-pkg/pkgcachegen.cc:477 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:525 apt-pkg/pkgcachegen.cc:556 -#: apt-pkg/pkgcachegen.cc:570 +#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:319 +#: apt-pkg/pkgcachegen.cc:332 apt-pkg/pkgcachegen.cc:374 +#: apt-pkg/pkgcachegen.cc:378 apt-pkg/pkgcachegen.cc:395 +#: apt-pkg/pkgcachegen.cc:403 apt-pkg/pkgcachegen.cc:407 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:432 +#: apt-pkg/pkgcachegen.cc:471 apt-pkg/pkgcachegen.cc:509 +#: apt-pkg/pkgcachegen.cc:516 apt-pkg/pkgcachegen.cc:547 +#: apt-pkg/pkgcachegen.cc:561 #, fuzzy, c-format msgid "Error occurred while processing %s (%s%d)" msgstr "%s 처리 중에 오류가 발생했습니다 (FindPkg)" @@ -2943,26 +2943,26 @@ msgstr "우와, 이 APT가 처리할 수 있는 설명 개수를 넘어갔습니 msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "우와, 이 APT가 처리할 수 있는 의존성 개수를 넘어갔습니다." -#: apt-pkg/pkgcachegen.cc:577 +#: apt-pkg/pkgcachegen.cc:568 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "파일 의존성을 처리하는 데, %s %s 패키지가 없습니다" -#: apt-pkg/pkgcachegen.cc:1150 +#: apt-pkg/pkgcachegen.cc:1197 #, c-format msgid "Couldn't stat source package list %s" msgstr "소스 패키지 목록 %s의 정보를 읽을 수 없습니다" -#: apt-pkg/pkgcachegen.cc:1238 apt-pkg/pkgcachegen.cc:1342 -#: apt-pkg/pkgcachegen.cc:1348 apt-pkg/pkgcachegen.cc:1505 +#: apt-pkg/pkgcachegen.cc:1285 apt-pkg/pkgcachegen.cc:1389 +#: apt-pkg/pkgcachegen.cc:1395 apt-pkg/pkgcachegen.cc:1552 msgid "Reading package lists" msgstr "패키지 목록을 읽는 중입니다" -#: apt-pkg/pkgcachegen.cc:1255 +#: apt-pkg/pkgcachegen.cc:1302 msgid "Collecting File Provides" msgstr "파일에서 제공하는 것을 모으는 중입니다" -#: apt-pkg/pkgcachegen.cc:1447 apt-pkg/pkgcachegen.cc:1454 +#: apt-pkg/pkgcachegen.cc:1494 apt-pkg/pkgcachegen.cc:1501 msgid "IO Error saving source cache" msgstr "소스 캐시를 저장하는데 입출력 오류가 발생했습니다" @@ -3170,22 +3170,22 @@ msgstr "새 소스 리스트를 쓰는 중입니다\n" msgid "Source list entries for this disc are:\n" msgstr "이 디스크의 소스 리스트 항목은 다음과 같습니다:\n" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:766 +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:764 #, c-format msgid "Wrote %i records.\n" msgstr "레코드 %i개를 썼습니다.\n" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:768 +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:766 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "레코드 %i개를 파일 %i개가 빠진 상태로 썼습니다.\n" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:771 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:769 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "레코드 %i개를 파일 %i개가 맞지 않은 상태로 썼습니다\n" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:774 +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:772 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "레코드 %i개를 파일 %i개가 빠지고 %i개가 맞지 않은 상태로 썼습니다\n" diff --git a/po/ku.po b/po/ku.po index bc2725550..d94563913 100644 --- a/po/ku.po +++ b/po/ku.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: apt-ku\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-04-03 14:20+0200\n" +"POT-Creation-Date: 2013-04-08 15:40+0200\n" "PO-Revision-Date: 2008-05-08 12:48+0200\n" "Last-Translator: Erdal Ronahi \n" "Language-Team: ku \n" @@ -160,7 +160,7 @@ msgstr " Tabloya guhertoyan:" #: cmdline/apt-cache.cc:1683 cmdline/apt-cdrom.cc:198 cmdline/apt-config.cc:81 #: cmdline/apt-get.cc:3363 cmdline/apt-mark.cc:375 -#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:590 +#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:591 #: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147 #, fuzzy, c-format msgid "%s %s for %s compiled on %s %s\n" @@ -1461,7 +1461,7 @@ msgstr "Çewtiya hundirîn" #. Only warn if there are no sources.list.d. #. Only warn if there is no sources.list file. -#: methods/mirror.cc:95 apt-inst/extract.cc:465 +#: methods/mirror.cc:95 apt-inst/extract.cc:464 #: apt-pkg/contrib/cdromutl.cc:183 apt-pkg/contrib/fileutl.cc:400 #: apt-pkg/contrib/fileutl.cc:513 apt-pkg/sourcelist.cc:208 #: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:108 @@ -1572,7 +1572,7 @@ msgid "" " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" msgstr "" -#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1339 +#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1386 #, c-format msgid "Unable to write to %s" msgstr "Nivîsandin ji bo %s ne pêkane" @@ -1581,31 +1581,31 @@ msgstr "Nivîsandin ji bo %s ne pêkane" msgid "Cannot get debconf version. Is debconf installed?" msgstr "Guhertoya debconf nehate stendin. debconf sazkirî ye?" -#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:348 +#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:349 msgid "Package extension list is too long" msgstr "Lîsteya dirêjahiya pakêtê zêde dirêj e" #: ftparchive/apt-ftparchive.cc:173 ftparchive/apt-ftparchive.cc:190 -#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:263 -#: ftparchive/apt-ftparchive.cc:277 ftparchive/apt-ftparchive.cc:299 +#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:264 +#: ftparchive/apt-ftparchive.cc:278 ftparchive/apt-ftparchive.cc:300 #, c-format msgid "Error processing directory %s" msgstr "Di şixulandina pêrista %s de çewtî" -#: ftparchive/apt-ftparchive.cc:261 +#: ftparchive/apt-ftparchive.cc:262 msgid "Source extension list is too long" msgstr "Lîsteya dirêjahiya çavkaniyê zêde dirêj e" -#: ftparchive/apt-ftparchive.cc:378 +#: ftparchive/apt-ftparchive.cc:379 msgid "Error writing header to contents file" msgstr "Dema li dosyeya naverokê joreagahî dihate nivîsîn çewtî" -#: ftparchive/apt-ftparchive.cc:408 +#: ftparchive/apt-ftparchive.cc:409 #, c-format msgid "Error processing contents %s" msgstr "Dema şixulandina naveroka %s çewtî" -#: ftparchive/apt-ftparchive.cc:596 +#: ftparchive/apt-ftparchive.cc:597 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -1647,11 +1647,11 @@ msgid "" " -o=? Set an arbitrary configuration option" msgstr "" -#: ftparchive/apt-ftparchive.cc:802 +#: ftparchive/apt-ftparchive.cc:803 msgid "No selections matched" msgstr "" -#: ftparchive/apt-ftparchive.cc:880 +#: ftparchive/apt-ftparchive.cc:881 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "Di koma pelgehên pakêta '%s' de hin pelgeh kêm in" @@ -1677,8 +1677,8 @@ msgstr "" msgid "Unable to open DB file %s: %s" msgstr "Danegira %s nehate vekirin: %s" -#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:181 apt-inst/extract.cc:193 -#: apt-inst/extract.cc:210 +#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:179 apt-inst/extract.cc:192 +#: apt-inst/extract.cc:209 #, c-format msgid "Failed to stat %s" msgstr "" @@ -1756,22 +1756,22 @@ msgstr "" msgid "Archive had no package field" msgstr "Di arşîvê de qada pakêtê tuneye" -#: ftparchive/writer.cc:411 ftparchive/writer.cc:698 +#: ftparchive/writer.cc:411 ftparchive/writer.cc:701 #, c-format msgid " %s has no override entry\n" msgstr "" -#: ftparchive/writer.cc:479 ftparchive/writer.cc:814 +#: ftparchive/writer.cc:479 ftparchive/writer.cc:845 #, c-format msgid " %s maintainer is %s not %s\n" msgstr "" -#: ftparchive/writer.cc:708 +#: ftparchive/writer.cc:711 #, c-format msgid " %s has no source override entry\n" msgstr "" -#: ftparchive/writer.cc:712 +#: ftparchive/writer.cc:715 #, c-format msgid " %s has no binary override entry either\n" msgstr "" @@ -1845,7 +1845,7 @@ msgstr "" msgid "Problem unlinking %s" msgstr "" -#: ftparchive/multicompress.cc:373 apt-inst/extract.cc:188 +#: ftparchive/multicompress.cc:373 apt-inst/extract.cc:187 #, c-format msgid "Failed to rename %s to %s" msgstr "" @@ -1984,55 +1984,55 @@ msgstr "Nivîsîna pelê %s biserneket" msgid "Failed to close file %s" msgstr "Girtina pelê %s biserneket" -#: apt-inst/extract.cc:96 apt-inst/extract.cc:167 +#: apt-inst/extract.cc:94 apt-inst/extract.cc:165 #, c-format msgid "The path %s is too long" msgstr "Rêça %s zêde dirêj e" -#: apt-inst/extract.cc:127 +#: apt-inst/extract.cc:125 #, c-format msgid "Unpacking %s more than once" msgstr "" -#: apt-inst/extract.cc:137 +#: apt-inst/extract.cc:135 #, c-format msgid "The directory %s is diverted" msgstr "" -#: apt-inst/extract.cc:147 +#: apt-inst/extract.cc:145 #, c-format msgid "The package is trying to write to the diversion target %s/%s" msgstr "" -#: apt-inst/extract.cc:157 apt-inst/extract.cc:300 +#: apt-inst/extract.cc:155 apt-inst/extract.cc:299 #, fuzzy msgid "The diversion path is too long" msgstr "Lîsteya dirêjahiya çavkaniyê zêde dirêj e" -#: apt-inst/extract.cc:243 +#: apt-inst/extract.cc:242 #, c-format msgid "The directory %s is being replaced by a non-directory" msgstr "" -#: apt-inst/extract.cc:283 +#: apt-inst/extract.cc:282 msgid "Failed to locate node in its hash bucket" msgstr "" -#: apt-inst/extract.cc:287 +#: apt-inst/extract.cc:286 msgid "The path is too long" msgstr "Rêç zêde dirêj e" -#: apt-inst/extract.cc:415 +#: apt-inst/extract.cc:414 #, c-format msgid "Overwrite package match with no version for %s" msgstr "" -#: apt-inst/extract.cc:432 +#: apt-inst/extract.cc:431 #, c-format msgid "File %s/%s overwrites the one in the package %s" msgstr "" -#: apt-inst/extract.cc:492 +#: apt-inst/extract.cc:491 #, fuzzy, c-format msgid "Unable to stat %s" msgstr "Nivîsandin ji bo %s ne pêkane" @@ -2413,59 +2413,59 @@ msgstr "" msgid "The package cache was built for a different architecture" msgstr "" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "Depends" msgstr "Bindest" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "PreDepends" msgstr "PêşBindest" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "Suggests" msgstr "Pêşniyaz dike" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Recommends" msgstr "Tawsiye dike" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Conflicts" msgstr "Nakokî" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Replaces" msgstr "Dikeve şunve" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Obsoletes" msgstr "Kevin dike" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Breaks" msgstr "Dişkîne" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Enhances" msgstr "" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "important" msgstr "girîng" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "required" msgstr "pêwist" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "standard" msgstr "standard" -#: apt-pkg/pkgcache.cc:319 +#: apt-pkg/pkgcache.cc:328 msgid "optional" msgstr "opsiyonel" -#: apt-pkg/pkgcache.cc:319 +#: apt-pkg/pkgcache.cc:328 msgid "extra" msgstr "ekstra" @@ -2565,12 +2565,12 @@ msgstr "%s tê vekirin" msgid "Line %u too long in source list %s." msgstr "" -#: apt-pkg/sourcelist.cc:285 +#: apt-pkg/sourcelist.cc:289 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "" -#: apt-pkg/sourcelist.cc:289 +#: apt-pkg/sourcelist.cc:293 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "" @@ -2722,14 +2722,14 @@ msgstr "" #. TRANSLATOR: The first placeholder is a package name, #. the other two should be copied verbatim as they include debug info #: apt-pkg/pkgcachegen.cc:218 apt-pkg/pkgcachegen.cc:228 -#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:325 -#: apt-pkg/pkgcachegen.cc:333 apt-pkg/pkgcachegen.cc:375 -#: apt-pkg/pkgcachegen.cc:379 apt-pkg/pkgcachegen.cc:396 -#: apt-pkg/pkgcachegen.cc:406 apt-pkg/pkgcachegen.cc:410 -#: apt-pkg/pkgcachegen.cc:414 apt-pkg/pkgcachegen.cc:435 -#: apt-pkg/pkgcachegen.cc:477 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:525 apt-pkg/pkgcachegen.cc:556 -#: apt-pkg/pkgcachegen.cc:570 +#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:319 +#: apt-pkg/pkgcachegen.cc:332 apt-pkg/pkgcachegen.cc:374 +#: apt-pkg/pkgcachegen.cc:378 apt-pkg/pkgcachegen.cc:395 +#: apt-pkg/pkgcachegen.cc:403 apt-pkg/pkgcachegen.cc:407 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:432 +#: apt-pkg/pkgcachegen.cc:471 apt-pkg/pkgcachegen.cc:509 +#: apt-pkg/pkgcachegen.cc:516 apt-pkg/pkgcachegen.cc:547 +#: apt-pkg/pkgcachegen.cc:561 #, fuzzy, c-format msgid "Error occurred while processing %s (%s%d)" msgstr "Dema şixulandina naveroka %s çewtî" @@ -2750,26 +2750,26 @@ msgstr "" msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "" -#: apt-pkg/pkgcachegen.cc:577 +#: apt-pkg/pkgcachegen.cc:568 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "" -#: apt-pkg/pkgcachegen.cc:1150 +#: apt-pkg/pkgcachegen.cc:1197 #, c-format msgid "Couldn't stat source package list %s" msgstr "" -#: apt-pkg/pkgcachegen.cc:1238 apt-pkg/pkgcachegen.cc:1342 -#: apt-pkg/pkgcachegen.cc:1348 apt-pkg/pkgcachegen.cc:1505 +#: apt-pkg/pkgcachegen.cc:1285 apt-pkg/pkgcachegen.cc:1389 +#: apt-pkg/pkgcachegen.cc:1395 apt-pkg/pkgcachegen.cc:1552 msgid "Reading package lists" msgstr "Lîsteya pakêtan tê xwendin" -#: apt-pkg/pkgcachegen.cc:1255 +#: apt-pkg/pkgcachegen.cc:1302 msgid "Collecting File Provides" msgstr "" -#: apt-pkg/pkgcachegen.cc:1447 apt-pkg/pkgcachegen.cc:1454 +#: apt-pkg/pkgcachegen.cc:1494 apt-pkg/pkgcachegen.cc:1501 msgid "IO Error saving source cache" msgstr "" @@ -2966,22 +2966,22 @@ msgstr "" msgid "Source list entries for this disc are:\n" msgstr "" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:766 +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:764 #, c-format msgid "Wrote %i records.\n" msgstr "%i tomar hatin nivîsîn.\n" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:768 +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:766 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:771 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:769 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:774 +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:772 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" diff --git a/po/lt.po b/po/lt.po index d6a7cc6e4..f23aee529 100644 --- a/po/lt.po +++ b/po/lt.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-04-03 14:20+0200\n" +"POT-Creation-Date: 2013-04-08 15:40+0200\n" "PO-Revision-Date: 2008-08-02 01:47-0400\n" "Last-Translator: Gintautas Miliauskas \n" "Language-Team: Lithuanian \n" @@ -158,7 +158,7 @@ msgstr " Versijų lentelė:" #: cmdline/apt-cache.cc:1683 cmdline/apt-cdrom.cc:198 cmdline/apt-config.cc:81 #: cmdline/apt-get.cc:3363 cmdline/apt-mark.cc:375 -#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:590 +#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:591 #: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147 #, c-format msgid "%s %s for %s compiled on %s %s\n" @@ -1484,7 +1484,7 @@ msgstr "Vidinė klaida" #. Only warn if there are no sources.list.d. #. Only warn if there is no sources.list file. -#: methods/mirror.cc:95 apt-inst/extract.cc:465 +#: methods/mirror.cc:95 apt-inst/extract.cc:464 #: apt-pkg/contrib/cdromutl.cc:183 apt-pkg/contrib/fileutl.cc:400 #: apt-pkg/contrib/fileutl.cc:513 apt-pkg/sourcelist.cc:208 #: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:108 @@ -1612,7 +1612,7 @@ msgstr "" " -c=? Nuskaityti šį konfigūracijų failą\n" " -o=? Nustatyti savarankiškas nuostatas, pvz.: -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1339 +#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1386 #, c-format msgid "Unable to write to %s" msgstr "Nepavyko įrašyti į %s" @@ -1621,31 +1621,31 @@ msgstr "Nepavyko įrašyti į %s" msgid "Cannot get debconf version. Is debconf installed?" msgstr "Nepavyko sužinoti debconf versijos. Ar įdiegtas debconf?" -#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:348 +#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:349 msgid "Package extension list is too long" msgstr "Paketo plėtinių sąrašas yra per ilgas" #: ftparchive/apt-ftparchive.cc:173 ftparchive/apt-ftparchive.cc:190 -#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:263 -#: ftparchive/apt-ftparchive.cc:277 ftparchive/apt-ftparchive.cc:299 +#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:264 +#: ftparchive/apt-ftparchive.cc:278 ftparchive/apt-ftparchive.cc:300 #, c-format msgid "Error processing directory %s" msgstr "Klaida apdorojant aplanką %s" -#: ftparchive/apt-ftparchive.cc:261 +#: ftparchive/apt-ftparchive.cc:262 msgid "Source extension list is too long" msgstr "Šaltinio plėtinys yra per ilgas" -#: ftparchive/apt-ftparchive.cc:378 +#: ftparchive/apt-ftparchive.cc:379 msgid "Error writing header to contents file" msgstr "Klaida įrašant antraštę į turinio failą" -#: ftparchive/apt-ftparchive.cc:408 +#: ftparchive/apt-ftparchive.cc:409 #, c-format msgid "Error processing contents %s" msgstr "Klaida apdorojant turinį %s" -#: ftparchive/apt-ftparchive.cc:596 +#: ftparchive/apt-ftparchive.cc:597 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -1731,11 +1731,11 @@ msgstr "" " -c=? Perskaityti šį nuostatų failą\n" " -o=? Nustatyti savarankišką konfigūracijos nuostatą" -#: ftparchive/apt-ftparchive.cc:802 +#: ftparchive/apt-ftparchive.cc:803 msgid "No selections matched" msgstr "Nėra atitikmenų" -#: ftparchive/apt-ftparchive.cc:880 +#: ftparchive/apt-ftparchive.cc:881 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "Kai kurių failų nėra paketų grupėje „%s“" @@ -1764,8 +1764,8 @@ msgstr "" msgid "Unable to open DB file %s: %s" msgstr "Nepavyko atverti DB failo %s: %s" -#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:181 apt-inst/extract.cc:193 -#: apt-inst/extract.cc:210 +#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:179 apt-inst/extract.cc:192 +#: apt-inst/extract.cc:209 #, c-format msgid "Failed to stat %s" msgstr "Nepavyko patikrinti %s" @@ -1843,22 +1843,22 @@ msgstr "" msgid "Archive had no package field" msgstr "Archyvas neturėjo paketo lauko" -#: ftparchive/writer.cc:411 ftparchive/writer.cc:698 +#: ftparchive/writer.cc:411 ftparchive/writer.cc:701 #, c-format msgid " %s has no override entry\n" msgstr " %s neturi perrašymo įrašo\n" -#: ftparchive/writer.cc:479 ftparchive/writer.cc:814 +#: ftparchive/writer.cc:479 ftparchive/writer.cc:845 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " %s prižiūrėtojas yra %s, o ne %s\n" -#: ftparchive/writer.cc:708 +#: ftparchive/writer.cc:711 #, c-format msgid " %s has no source override entry\n" msgstr "" -#: ftparchive/writer.cc:712 +#: ftparchive/writer.cc:715 #, c-format msgid " %s has no binary override entry either\n" msgstr "" @@ -1932,7 +1932,7 @@ msgstr "Skaitymo klaida skaičiuojant MD5" msgid "Problem unlinking %s" msgstr "" -#: ftparchive/multicompress.cc:373 apt-inst/extract.cc:188 +#: ftparchive/multicompress.cc:373 apt-inst/extract.cc:187 #, c-format msgid "Failed to rename %s to %s" msgstr "Nepavyko pervadinti %s į %s" @@ -2079,54 +2079,54 @@ msgstr "" msgid "Failed to close file %s" msgstr "" -#: apt-inst/extract.cc:96 apt-inst/extract.cc:167 +#: apt-inst/extract.cc:94 apt-inst/extract.cc:165 #, c-format msgid "The path %s is too long" msgstr "Kelias %s per ilgas" -#: apt-inst/extract.cc:127 +#: apt-inst/extract.cc:125 #, c-format msgid "Unpacking %s more than once" msgstr "" -#: apt-inst/extract.cc:137 +#: apt-inst/extract.cc:135 #, c-format msgid "The directory %s is diverted" msgstr "" -#: apt-inst/extract.cc:147 +#: apt-inst/extract.cc:145 #, c-format msgid "The package is trying to write to the diversion target %s/%s" msgstr "" -#: apt-inst/extract.cc:157 apt-inst/extract.cc:300 +#: apt-inst/extract.cc:155 apt-inst/extract.cc:299 msgid "The diversion path is too long" msgstr "" -#: apt-inst/extract.cc:243 +#: apt-inst/extract.cc:242 #, c-format msgid "The directory %s is being replaced by a non-directory" msgstr "" -#: apt-inst/extract.cc:283 +#: apt-inst/extract.cc:282 msgid "Failed to locate node in its hash bucket" msgstr "" -#: apt-inst/extract.cc:287 +#: apt-inst/extract.cc:286 msgid "The path is too long" msgstr "Kelias per ilgas" -#: apt-inst/extract.cc:415 +#: apt-inst/extract.cc:414 #, c-format msgid "Overwrite package match with no version for %s" msgstr "" -#: apt-inst/extract.cc:432 +#: apt-inst/extract.cc:431 #, c-format msgid "File %s/%s overwrites the one in the package %s" msgstr "" -#: apt-inst/extract.cc:492 +#: apt-inst/extract.cc:491 #, c-format msgid "Unable to stat %s" msgstr "" @@ -2507,59 +2507,59 @@ msgstr "" msgid "The package cache was built for a different architecture" msgstr "" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "Depends" msgstr "Priklauso" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "PreDepends" msgstr "Priešpriklauso" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "Suggests" msgstr "Siūlo" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Recommends" msgstr "Rekomenduoja" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Conflicts" msgstr "Konfliktuoja" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Replaces" msgstr "Pakeičia" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Obsoletes" msgstr "Pakeičia" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Breaks" msgstr "Sugadina" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Enhances" msgstr "" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "important" msgstr "Svarbu" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "required" msgstr "privaloma" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "standard" msgstr "standartinis" -#: apt-pkg/pkgcache.cc:319 +#: apt-pkg/pkgcache.cc:328 msgid "optional" msgstr "nebūtinas" -#: apt-pkg/pkgcache.cc:319 +#: apt-pkg/pkgcache.cc:328 msgid "extra" msgstr "papildomas" @@ -2659,12 +2659,12 @@ msgstr "Atveriama %s" msgid "Line %u too long in source list %s." msgstr "" -#: apt-pkg/sourcelist.cc:285 +#: apt-pkg/sourcelist.cc:289 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "" -#: apt-pkg/sourcelist.cc:289 +#: apt-pkg/sourcelist.cc:293 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "" @@ -2821,14 +2821,14 @@ msgstr "" #. TRANSLATOR: The first placeholder is a package name, #. the other two should be copied verbatim as they include debug info #: apt-pkg/pkgcachegen.cc:218 apt-pkg/pkgcachegen.cc:228 -#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:325 -#: apt-pkg/pkgcachegen.cc:333 apt-pkg/pkgcachegen.cc:375 -#: apt-pkg/pkgcachegen.cc:379 apt-pkg/pkgcachegen.cc:396 -#: apt-pkg/pkgcachegen.cc:406 apt-pkg/pkgcachegen.cc:410 -#: apt-pkg/pkgcachegen.cc:414 apt-pkg/pkgcachegen.cc:435 -#: apt-pkg/pkgcachegen.cc:477 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:525 apt-pkg/pkgcachegen.cc:556 -#: apt-pkg/pkgcachegen.cc:570 +#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:319 +#: apt-pkg/pkgcachegen.cc:332 apt-pkg/pkgcachegen.cc:374 +#: apt-pkg/pkgcachegen.cc:378 apt-pkg/pkgcachegen.cc:395 +#: apt-pkg/pkgcachegen.cc:403 apt-pkg/pkgcachegen.cc:407 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:432 +#: apt-pkg/pkgcachegen.cc:471 apt-pkg/pkgcachegen.cc:509 +#: apt-pkg/pkgcachegen.cc:516 apt-pkg/pkgcachegen.cc:547 +#: apt-pkg/pkgcachegen.cc:561 #, fuzzy, c-format msgid "Error occurred while processing %s (%s%d)" msgstr "Klaida apdorojant turinį %s" @@ -2849,26 +2849,26 @@ msgstr "" msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "" -#: apt-pkg/pkgcachegen.cc:577 +#: apt-pkg/pkgcachegen.cc:568 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "" -#: apt-pkg/pkgcachegen.cc:1150 +#: apt-pkg/pkgcachegen.cc:1197 #, c-format msgid "Couldn't stat source package list %s" msgstr "" -#: apt-pkg/pkgcachegen.cc:1238 apt-pkg/pkgcachegen.cc:1342 -#: apt-pkg/pkgcachegen.cc:1348 apt-pkg/pkgcachegen.cc:1505 +#: apt-pkg/pkgcachegen.cc:1285 apt-pkg/pkgcachegen.cc:1389 +#: apt-pkg/pkgcachegen.cc:1395 apt-pkg/pkgcachegen.cc:1552 msgid "Reading package lists" msgstr "Skaitomi paketų sąrašai" -#: apt-pkg/pkgcachegen.cc:1255 +#: apt-pkg/pkgcachegen.cc:1302 msgid "Collecting File Provides" msgstr "" -#: apt-pkg/pkgcachegen.cc:1447 apt-pkg/pkgcachegen.cc:1454 +#: apt-pkg/pkgcachegen.cc:1494 apt-pkg/pkgcachegen.cc:1501 msgid "IO Error saving source cache" msgstr "" @@ -3065,22 +3065,22 @@ msgstr "Rašomas naujas šaltinių sąrašas\n" msgid "Source list entries for this disc are:\n" msgstr "" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:766 +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:764 #, c-format msgid "Wrote %i records.\n" msgstr "" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:768 +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:766 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:771 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:769 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:774 +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:772 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" diff --git a/po/mr.po b/po/mr.po index 9bb37debd..ceeeaf33e 100644 --- a/po/mr.po +++ b/po/mr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-04-03 14:20+0200\n" +"POT-Creation-Date: 2013-04-08 15:40+0200\n" "PO-Revision-Date: 2008-11-20 23:27+0530\n" "Last-Translator: Sampada \n" "Language-Team: Marathi, janabhaaratii, C-DAC, Mumbai, India " @@ -155,7 +155,7 @@ msgstr "आवृत्ती कोष्टक:" #: cmdline/apt-cache.cc:1683 cmdline/apt-cdrom.cc:198 cmdline/apt-config.cc:81 #: cmdline/apt-get.cc:3363 cmdline/apt-mark.cc:375 -#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:590 +#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:591 #: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147 #, c-format msgid "%s %s for %s compiled on %s %s\n" @@ -1562,7 +1562,7 @@ msgstr "अंतर्गत त्रुटी" #. Only warn if there are no sources.list.d. #. Only warn if there is no sources.list file. -#: methods/mirror.cc:95 apt-inst/extract.cc:465 +#: methods/mirror.cc:95 apt-inst/extract.cc:464 #: apt-pkg/contrib/cdromutl.cc:183 apt-pkg/contrib/fileutl.cc:400 #: apt-pkg/contrib/fileutl.cc:513 apt-pkg/sourcelist.cc:208 #: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:108 @@ -1686,7 +1686,7 @@ msgstr "" " -c=? ही संरचना संचिका वाचा \n" " -o=? एखादा अहेतुक संरचना पर्याय निर्धारित करा जसे- -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1339 +#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1386 #, c-format msgid "Unable to write to %s" msgstr "%s मध्ये लिहिण्यास असमर्थ " @@ -1695,31 +1695,31 @@ msgstr "%s मध्ये लिहिण्यास असमर्थ " msgid "Cannot get debconf version. Is debconf installed?" msgstr "debconf आवृत्ती मिळू शकत नाही,debconf अधिष्ठापित झाली काय?" -#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:348 +#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:349 msgid "Package extension list is too long" msgstr "पॅकेजेसची विस्तारित यादी खूप मोठी आहे" #: ftparchive/apt-ftparchive.cc:173 ftparchive/apt-ftparchive.cc:190 -#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:263 -#: ftparchive/apt-ftparchive.cc:277 ftparchive/apt-ftparchive.cc:299 +#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:264 +#: ftparchive/apt-ftparchive.cc:278 ftparchive/apt-ftparchive.cc:300 #, c-format msgid "Error processing directory %s" msgstr "त्रुटी प्रक्रिया मार्गदर्शिका%s " -#: ftparchive/apt-ftparchive.cc:261 +#: ftparchive/apt-ftparchive.cc:262 msgid "Source extension list is too long" msgstr "उगमस्थानाची विस्तारित यादी खूप मोठी आहे" -#: ftparchive/apt-ftparchive.cc:378 +#: ftparchive/apt-ftparchive.cc:379 msgid "Error writing header to contents file" msgstr "शीर्षक संचिकेमधून मजकूर संचिकेत लिहिण्यात त्रुटी" -#: ftparchive/apt-ftparchive.cc:408 +#: ftparchive/apt-ftparchive.cc:409 #, c-format msgid "Error processing contents %s" msgstr "त्रुटी प्रक्रिया मजकूर %s" -#: ftparchive/apt-ftparchive.cc:596 +#: ftparchive/apt-ftparchive.cc:597 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -1800,11 +1800,11 @@ msgstr "" " -c=? ही संरचना संचिका वाचा \n" " -o=? एखादा अहेतुक संरचना पर्याय निर्धारित करा" -#: ftparchive/apt-ftparchive.cc:802 +#: ftparchive/apt-ftparchive.cc:803 msgid "No selections matched" msgstr "निवडक भाग जुळत नाही" -#: ftparchive/apt-ftparchive.cc:880 +#: ftparchive/apt-ftparchive.cc:881 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "`%s' पॅकेज संचिका समुहातील काही संचिका गहाळ आहेत" @@ -1833,8 +1833,8 @@ msgstr "" msgid "Unable to open DB file %s: %s" msgstr "%s: %s DB संचिका उघडण्यास असमर्थ" -#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:181 apt-inst/extract.cc:193 -#: apt-inst/extract.cc:210 +#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:179 apt-inst/extract.cc:192 +#: apt-inst/extract.cc:209 #, c-format msgid "Failed to stat %s" msgstr "%s स्टेट करण्यास असमर्थ" @@ -1912,22 +1912,22 @@ msgstr "%sB हीट ची डिलींक मर्यादा\n" msgid "Archive had no package field" msgstr "अर्काईव्ह ला पॅकेज जागा नाही" -#: ftparchive/writer.cc:411 ftparchive/writer.cc:698 +#: ftparchive/writer.cc:411 ftparchive/writer.cc:701 #, c-format msgid " %s has no override entry\n" msgstr "%s ला ओव्हरराईड/दुर्लक्षित जागा नाही\n" -#: ftparchive/writer.cc:479 ftparchive/writer.cc:814 +#: ftparchive/writer.cc:479 ftparchive/writer.cc:845 #, c-format msgid " %s maintainer is %s not %s\n" msgstr "%s देखभालकर्ता हा %s आणि %s नाही \n" -#: ftparchive/writer.cc:708 +#: ftparchive/writer.cc:711 #, c-format msgid " %s has no source override entry\n" msgstr "%s ला उगम ओव्हरराईड/दुर्लक्षित जागा नाही\n" -#: ftparchive/writer.cc:712 +#: ftparchive/writer.cc:715 #, c-format msgid " %s has no binary override entry either\n" msgstr "%s ला द्वयंक ओव्हरराईड जागा नाही\n" @@ -2001,7 +2001,7 @@ msgstr "MD5 कामप्युटींग करतांना वाचण msgid "Problem unlinking %s" msgstr "%s दुवा मोकळा/सुटा करण्यास अडचण" -#: ftparchive/multicompress.cc:373 apt-inst/extract.cc:188 +#: ftparchive/multicompress.cc:373 apt-inst/extract.cc:187 #, c-format msgid "Failed to rename %s to %s" msgstr "%s ला पुनर्नामांकन %s करण्यास असमर्थ " @@ -2147,54 +2147,54 @@ msgstr "%s फाईल मध्ये लिहिण्यास असमर msgid "Failed to close file %s" msgstr "%s फाईल बंद करण्यास असमर्थ" -#: apt-inst/extract.cc:96 apt-inst/extract.cc:167 +#: apt-inst/extract.cc:94 apt-inst/extract.cc:165 #, c-format msgid "The path %s is too long" msgstr "मार्ग %s हा खूप लांब आहे" -#: apt-inst/extract.cc:127 +#: apt-inst/extract.cc:125 #, c-format msgid "Unpacking %s more than once" msgstr "%s एकापेक्षा जास्त वेळा उघडत आहे" -#: apt-inst/extract.cc:137 +#: apt-inst/extract.cc:135 #, c-format msgid "The directory %s is diverted" msgstr "%s संचिका डायव्हर्ट केली आहे/वळवली आहे" -#: apt-inst/extract.cc:147 +#: apt-inst/extract.cc:145 #, c-format msgid "The package is trying to write to the diversion target %s/%s" msgstr "डायव्हर्जन इच्छित %s/%s मध्ये लिहिण्याचा पॅकेज प्रयत्न करत आहे" -#: apt-inst/extract.cc:157 apt-inst/extract.cc:300 +#: apt-inst/extract.cc:155 apt-inst/extract.cc:299 msgid "The diversion path is too long" msgstr "डायव्हर्जन मार्ग हा खूप लांब आहे" -#: apt-inst/extract.cc:243 +#: apt-inst/extract.cc:242 #, c-format msgid "The directory %s is being replaced by a non-directory" msgstr "%s संचिका ही संचिका नसलेल्या संचिकेबरोबर बदललेली आहे" -#: apt-inst/extract.cc:283 +#: apt-inst/extract.cc:282 msgid "Failed to locate node in its hash bucket" msgstr "नोडचे त्याच्या हॅश बकेटमध्ये/बादलीत स्थान निश्चित करण्यास असमर्थ" -#: apt-inst/extract.cc:287 +#: apt-inst/extract.cc:286 msgid "The path is too long" msgstr "मार्ग खूप लांब आहे" -#: apt-inst/extract.cc:415 +#: apt-inst/extract.cc:414 #, c-format msgid "Overwrite package match with no version for %s" msgstr "%s च्या आवृत्तीशी पुनः लिहिलेल्या पॅकेज जुळत नाही" -#: apt-inst/extract.cc:432 +#: apt-inst/extract.cc:431 #, c-format msgid "File %s/%s overwrites the one in the package %s" msgstr "File %s/%s, %s पॅकेज मधल्या एका वर पुनर्लिखित होते" -#: apt-inst/extract.cc:492 +#: apt-inst/extract.cc:491 #, c-format msgid "Unable to stat %s" msgstr "%s स्टॅट करण्यास असमर्थ" @@ -2575,59 +2575,59 @@ msgstr "'%s' आवृत्तीकरण प्रणालीला हे A msgid "The package cache was built for a different architecture" msgstr "पॅकेज अस्थाई स्मृतीकोष वेगळ्या वास्तुविद्ये साठी बनवला गेला" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "Depends" msgstr "अवलंबित" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "PreDepends" msgstr "पूर्व अवलंबित" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "Suggests" msgstr "सुचवणे" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Recommends" msgstr "शिफारस" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Conflicts" msgstr "परस्परविरोध" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Replaces" msgstr "परत त्याठिकाणी आणा" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Obsoletes" msgstr "अप्रचलित" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Breaks" msgstr "तोडले" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Enhances" msgstr "" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "important" msgstr "अत्यावश्यक" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "required" msgstr "आवश्यक" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "standard" msgstr "मानक" -#: apt-pkg/pkgcache.cc:319 +#: apt-pkg/pkgcache.cc:328 msgid "optional" msgstr "एच्छिक" -#: apt-pkg/pkgcache.cc:319 +#: apt-pkg/pkgcache.cc:328 msgid "extra" msgstr "अधिक" @@ -2727,12 +2727,12 @@ msgstr "%s उघडत आहे" msgid "Line %u too long in source list %s." msgstr "%s स्त्रोत सुचीमध्ये ओळ %u खूप लांब आहे." -#: apt-pkg/sourcelist.cc:285 +#: apt-pkg/sourcelist.cc:289 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "स्त्रोत सुची %s (प्रकार) मध्ये %u वाईट/व्यंग रेषा" -#: apt-pkg/sourcelist.cc:289 +#: apt-pkg/sourcelist.cc:293 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "%s स्त्रोत सुचीमध्ये %u रेषेवर '%s' प्रकार माहित नाही " @@ -2893,14 +2893,14 @@ msgstr "अस्थायी स्मृतिकोष मध्ये वि #. TRANSLATOR: The first placeholder is a package name, #. the other two should be copied verbatim as they include debug info #: apt-pkg/pkgcachegen.cc:218 apt-pkg/pkgcachegen.cc:228 -#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:325 -#: apt-pkg/pkgcachegen.cc:333 apt-pkg/pkgcachegen.cc:375 -#: apt-pkg/pkgcachegen.cc:379 apt-pkg/pkgcachegen.cc:396 -#: apt-pkg/pkgcachegen.cc:406 apt-pkg/pkgcachegen.cc:410 -#: apt-pkg/pkgcachegen.cc:414 apt-pkg/pkgcachegen.cc:435 -#: apt-pkg/pkgcachegen.cc:477 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:525 apt-pkg/pkgcachegen.cc:556 -#: apt-pkg/pkgcachegen.cc:570 +#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:319 +#: apt-pkg/pkgcachegen.cc:332 apt-pkg/pkgcachegen.cc:374 +#: apt-pkg/pkgcachegen.cc:378 apt-pkg/pkgcachegen.cc:395 +#: apt-pkg/pkgcachegen.cc:403 apt-pkg/pkgcachegen.cc:407 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:432 +#: apt-pkg/pkgcachegen.cc:471 apt-pkg/pkgcachegen.cc:509 +#: apt-pkg/pkgcachegen.cc:516 apt-pkg/pkgcachegen.cc:547 +#: apt-pkg/pkgcachegen.cc:561 #, fuzzy, c-format msgid "Error occurred while processing %s (%s%d)" msgstr "%s (पॅकेज शोधतांना) प्रक्रिया करीत असतांना दोष आढळून आला" @@ -2926,26 +2926,26 @@ msgstr "" "अरेवा!, तुम्ही तर ह्या एपिटीच्या कार्यक्षमतेपेक्षाही अवलंबित/विसंबून असलेल्या संख्येची मर्यादा " "ओलांडली आहे." -#: apt-pkg/pkgcachegen.cc:577 +#: apt-pkg/pkgcachegen.cc:568 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "अवलंबित/विसंबून असणाऱ्या संचिकांची प्रक्रिया करीत असतांना पॅकेज %s %s सापडले नाही " -#: apt-pkg/pkgcachegen.cc:1150 +#: apt-pkg/pkgcachegen.cc:1197 #, c-format msgid "Couldn't stat source package list %s" msgstr "%s उगम पॅकेज यादी सुरू करता येत नाही" -#: apt-pkg/pkgcachegen.cc:1238 apt-pkg/pkgcachegen.cc:1342 -#: apt-pkg/pkgcachegen.cc:1348 apt-pkg/pkgcachegen.cc:1505 +#: apt-pkg/pkgcachegen.cc:1285 apt-pkg/pkgcachegen.cc:1389 +#: apt-pkg/pkgcachegen.cc:1395 apt-pkg/pkgcachegen.cc:1552 msgid "Reading package lists" msgstr "पॅकेज याद्या वाचत आहोत" -#: apt-pkg/pkgcachegen.cc:1255 +#: apt-pkg/pkgcachegen.cc:1302 msgid "Collecting File Provides" msgstr "तरतूद/पुरवलेल्या संचिका संग्रहित करीत आहे" -#: apt-pkg/pkgcachegen.cc:1447 apt-pkg/pkgcachegen.cc:1454 +#: apt-pkg/pkgcachegen.cc:1494 apt-pkg/pkgcachegen.cc:1501 msgid "IO Error saving source cache" msgstr "IO त्रुटी उगम निवडक संचयस्थानात संग्रहित होत आहे" @@ -3152,22 +3152,22 @@ msgstr "नविन स्त्रोत सूची लिहित आह msgid "Source list entries for this disc are:\n" msgstr "ह्या डिस्क/चकती करिता स्त्रोत सूचीच्या प्रवेशिका आहेत: \n" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:766 +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:764 #, c-format msgid "Wrote %i records.\n" msgstr "%i माहितीसंच लिहिले.\n" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:768 +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:766 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "%i गहाळ संचिकाबरोबर %i माहिती संच लिहिले.\n" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:771 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:769 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "%i विजोड संचिकांबरोबर %i माहिती संच लिहिले\n" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:774 +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:772 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "%i गहाळ संचिकाबरोबर आणि %i विजोड संचिकाबरोबर %i माहिती संच लिहिले\n" diff --git a/po/nb.po b/po/nb.po index 1934a25c8..1cab4eab2 100644 --- a/po/nb.po +++ b/po/nb.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-04-03 14:20+0200\n" +"POT-Creation-Date: 2013-04-08 15:40+0200\n" "PO-Revision-Date: 2010-09-01 21:10+0200\n" "Last-Translator: Hans Fredrik Nordhaug \n" "Language-Team: Norwegian Bokmål \n" @@ -160,7 +160,7 @@ msgstr " Versjonstabell:" #: cmdline/apt-cache.cc:1683 cmdline/apt-cdrom.cc:198 cmdline/apt-config.cc:81 #: cmdline/apt-get.cc:3363 cmdline/apt-mark.cc:375 -#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:590 +#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:591 #: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147 #, c-format msgid "%s %s for %s compiled on %s %s\n" @@ -1591,7 +1591,7 @@ msgstr "Intern feil" #. Only warn if there are no sources.list.d. #. Only warn if there is no sources.list file. -#: methods/mirror.cc:95 apt-inst/extract.cc:465 +#: methods/mirror.cc:95 apt-inst/extract.cc:464 #: apt-pkg/contrib/cdromutl.cc:183 apt-pkg/contrib/fileutl.cc:400 #: apt-pkg/contrib/fileutl.cc:513 apt-pkg/sourcelist.cc:208 #: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:108 @@ -1720,7 +1720,7 @@ msgstr "" " -c=? Les denne innstillingsfila.\n" " -o=? Sett en vilkårlig innstilling, f.eks. -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1339 +#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1386 #, c-format msgid "Unable to write to %s" msgstr "Kan ikke skrive til %s" @@ -1729,31 +1729,31 @@ msgstr "Kan ikke skrive til %s" msgid "Cannot get debconf version. Is debconf installed?" msgstr "Kan ikke fastslå debconf-versjonen. Er debconf installert?" -#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:348 +#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:349 msgid "Package extension list is too long" msgstr "Lista over pakkeutvidelser er for lang" #: ftparchive/apt-ftparchive.cc:173 ftparchive/apt-ftparchive.cc:190 -#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:263 -#: ftparchive/apt-ftparchive.cc:277 ftparchive/apt-ftparchive.cc:299 +#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:264 +#: ftparchive/apt-ftparchive.cc:278 ftparchive/apt-ftparchive.cc:300 #, c-format msgid "Error processing directory %s" msgstr "Feil ved lesing av katalogen %s" -#: ftparchive/apt-ftparchive.cc:261 +#: ftparchive/apt-ftparchive.cc:262 msgid "Source extension list is too long" msgstr "Lista over kildeutvidelser er for lang" -#: ftparchive/apt-ftparchive.cc:378 +#: ftparchive/apt-ftparchive.cc:379 msgid "Error writing header to contents file" msgstr "Feil ved skriving av topptekst til innholdsfila" -#: ftparchive/apt-ftparchive.cc:408 +#: ftparchive/apt-ftparchive.cc:409 #, c-format msgid "Error processing contents %s" msgstr "Det oppsto en feil ved lesing av %s" -#: ftparchive/apt-ftparchive.cc:596 +#: ftparchive/apt-ftparchive.cc:597 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -1835,11 +1835,11 @@ msgstr "" " -c=? Les denne oppsettsfila.\n" " -o=? Setter en vilkårlig innstilling" -#: ftparchive/apt-ftparchive.cc:802 +#: ftparchive/apt-ftparchive.cc:803 msgid "No selections matched" msgstr "Ingen utvalg passet" -#: ftparchive/apt-ftparchive.cc:880 +#: ftparchive/apt-ftparchive.cc:881 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "Enkelte filer mangler i pakkegruppa «%s»" @@ -1867,8 +1867,8 @@ msgstr "" msgid "Unable to open DB file %s: %s" msgstr "Klarte ikke å åpne Databasefila %s: %s" -#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:181 apt-inst/extract.cc:193 -#: apt-inst/extract.cc:210 +#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:179 apt-inst/extract.cc:192 +#: apt-inst/extract.cc:209 #, c-format msgid "Failed to stat %s" msgstr "Klarte ikke å få statusen på %s" @@ -1946,22 +1946,22 @@ msgstr " DeLink-grensa på %s B er nådd.\n" msgid "Archive had no package field" msgstr "Arkivet har ikke noe pakkefelt" -#: ftparchive/writer.cc:411 ftparchive/writer.cc:698 +#: ftparchive/writer.cc:411 ftparchive/writer.cc:701 #, c-format msgid " %s has no override entry\n" msgstr " %s har ingen overstyringsoppføring\n" -#: ftparchive/writer.cc:479 ftparchive/writer.cc:814 +#: ftparchive/writer.cc:479 ftparchive/writer.cc:845 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " %s-vedlikeholderen er %s, ikke %s\n" -#: ftparchive/writer.cc:708 +#: ftparchive/writer.cc:711 #, c-format msgid " %s has no source override entry\n" msgstr " %s har ingen kildeoverstyringsoppføring\n" -#: ftparchive/writer.cc:712 +#: ftparchive/writer.cc:715 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s har ingen binæroverstyringsoppføring heller\n" @@ -2035,7 +2035,7 @@ msgstr "Klarte ikke å lese under utregning av MD5" msgid "Problem unlinking %s" msgstr "Problem ved oppheving av lenken til %s" -#: ftparchive/multicompress.cc:373 apt-inst/extract.cc:188 +#: ftparchive/multicompress.cc:373 apt-inst/extract.cc:187 #, c-format msgid "Failed to rename %s to %s" msgstr "Klarte ikke å endre navnet på %s til %s" @@ -2181,54 +2181,54 @@ msgstr "Klarte ikke å skrive fila %s" msgid "Failed to close file %s" msgstr "Klarte ikke å lukke fila %s" -#: apt-inst/extract.cc:96 apt-inst/extract.cc:167 +#: apt-inst/extract.cc:94 apt-inst/extract.cc:165 #, c-format msgid "The path %s is too long" msgstr "Stien %s er for lang" -#: apt-inst/extract.cc:127 +#: apt-inst/extract.cc:125 #, c-format msgid "Unpacking %s more than once" msgstr "Pakker ut %s mer enn en gang" -#: apt-inst/extract.cc:137 +#: apt-inst/extract.cc:135 #, c-format msgid "The directory %s is diverted" msgstr "Katalogen %s er avledet" -#: apt-inst/extract.cc:147 +#: apt-inst/extract.cc:145 #, c-format msgid "The package is trying to write to the diversion target %s/%s" msgstr "Pakken prøver å skrive til avledningsmålet %s/%s" -#: apt-inst/extract.cc:157 apt-inst/extract.cc:300 +#: apt-inst/extract.cc:155 apt-inst/extract.cc:299 msgid "The diversion path is too long" msgstr "Avledningsstien er for lang" -#: apt-inst/extract.cc:243 +#: apt-inst/extract.cc:242 #, c-format msgid "The directory %s is being replaced by a non-directory" msgstr "Mappa %s blir byttet ut med noe som ikke er en mappe" -#: apt-inst/extract.cc:283 +#: apt-inst/extract.cc:282 msgid "Failed to locate node in its hash bucket" msgstr "Fant ikke knutepunktet i dens hash-spann" -#: apt-inst/extract.cc:287 +#: apt-inst/extract.cc:286 msgid "The path is too long" msgstr "Stien er for lang" -#: apt-inst/extract.cc:415 +#: apt-inst/extract.cc:414 #, c-format msgid "Overwrite package match with no version for %s" msgstr "Skriver over pakketreff uten versjon for %s" -#: apt-inst/extract.cc:432 +#: apt-inst/extract.cc:431 #, c-format msgid "File %s/%s overwrites the one in the package %s" msgstr "Fila %s/%s skriver over den tilsvarende fila i pakken %s" -#: apt-inst/extract.cc:492 +#: apt-inst/extract.cc:491 #, c-format msgid "Unable to stat %s" msgstr "Klarte ikke å få statusen på %s" @@ -2615,59 +2615,59 @@ msgstr "Denne APT støtter ikke versjonssystemet «%s»" msgid "The package cache was built for a different architecture" msgstr "Pakkelageret ble bygd for en annen arkitektur" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "Depends" msgstr "Avhenger av" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "PreDepends" msgstr "Forutsetter" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "Suggests" msgstr "Foreslår" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Recommends" msgstr "Anbefaler" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Conflicts" msgstr "Er i konflikt med" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Replaces" msgstr "Erstatter" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Obsoletes" msgstr "Nuller" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Breaks" msgstr "Ødelegger" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Enhances" msgstr "Forbedrer" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "important" msgstr "viktig" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "required" msgstr "påkrevet" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "standard" msgstr "vanlig" -#: apt-pkg/pkgcache.cc:319 +#: apt-pkg/pkgcache.cc:328 msgid "optional" msgstr "valgfri" -#: apt-pkg/pkgcache.cc:319 +#: apt-pkg/pkgcache.cc:328 msgid "extra" msgstr "tillegg" @@ -2767,12 +2767,12 @@ msgstr "Åpner %s" msgid "Line %u too long in source list %s." msgstr "Linje %u i kildelista %s er for lang" -#: apt-pkg/sourcelist.cc:285 +#: apt-pkg/sourcelist.cc:289 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "Feil på %u i kildelista %s (type)" -#: apt-pkg/sourcelist.cc:289 +#: apt-pkg/sourcelist.cc:293 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "Typen «%s» er ukjent i linje %u i kildelista %s" @@ -2937,14 +2937,14 @@ msgstr "Lageret har et uoverensstemmende versjonssystem" #. TRANSLATOR: The first placeholder is a package name, #. the other two should be copied verbatim as they include debug info #: apt-pkg/pkgcachegen.cc:218 apt-pkg/pkgcachegen.cc:228 -#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:325 -#: apt-pkg/pkgcachegen.cc:333 apt-pkg/pkgcachegen.cc:375 -#: apt-pkg/pkgcachegen.cc:379 apt-pkg/pkgcachegen.cc:396 -#: apt-pkg/pkgcachegen.cc:406 apt-pkg/pkgcachegen.cc:410 -#: apt-pkg/pkgcachegen.cc:414 apt-pkg/pkgcachegen.cc:435 -#: apt-pkg/pkgcachegen.cc:477 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:525 apt-pkg/pkgcachegen.cc:556 -#: apt-pkg/pkgcachegen.cc:570 +#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:319 +#: apt-pkg/pkgcachegen.cc:332 apt-pkg/pkgcachegen.cc:374 +#: apt-pkg/pkgcachegen.cc:378 apt-pkg/pkgcachegen.cc:395 +#: apt-pkg/pkgcachegen.cc:403 apt-pkg/pkgcachegen.cc:407 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:432 +#: apt-pkg/pkgcachegen.cc:471 apt-pkg/pkgcachegen.cc:509 +#: apt-pkg/pkgcachegen.cc:516 apt-pkg/pkgcachegen.cc:547 +#: apt-pkg/pkgcachegen.cc:561 #, fuzzy, c-format msgid "Error occurred while processing %s (%s%d)" msgstr "Feil oppsto under behandling av %s (FindPkg)" @@ -2965,26 +2965,26 @@ msgstr "Jøss, du har overgått antallet beskrivelser denne APT klarer." msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "Jøss, du har overgått antallet avhengighetsforhold denne APT klarer." -#: apt-pkg/pkgcachegen.cc:577 +#: apt-pkg/pkgcachegen.cc:568 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "Fant ikke pakken %s %s ved behandling av filkrav" -#: apt-pkg/pkgcachegen.cc:1150 +#: apt-pkg/pkgcachegen.cc:1197 #, c-format msgid "Couldn't stat source package list %s" msgstr "Klarte ikke finne informasjon om %s - lista over kildekodepakker" -#: apt-pkg/pkgcachegen.cc:1238 apt-pkg/pkgcachegen.cc:1342 -#: apt-pkg/pkgcachegen.cc:1348 apt-pkg/pkgcachegen.cc:1505 +#: apt-pkg/pkgcachegen.cc:1285 apt-pkg/pkgcachegen.cc:1389 +#: apt-pkg/pkgcachegen.cc:1395 apt-pkg/pkgcachegen.cc:1552 msgid "Reading package lists" msgstr "Leser pakkelister" -#: apt-pkg/pkgcachegen.cc:1255 +#: apt-pkg/pkgcachegen.cc:1302 msgid "Collecting File Provides" msgstr "Samler inn filtilbud" -#: apt-pkg/pkgcachegen.cc:1447 apt-pkg/pkgcachegen.cc:1454 +#: apt-pkg/pkgcachegen.cc:1494 apt-pkg/pkgcachegen.cc:1501 msgid "IO Error saving source cache" msgstr "IO-feil ved lagring av kildekode-lager" @@ -3194,22 +3194,22 @@ 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/indexcopy.cc:236 apt-pkg/indexcopy.cc:766 +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:764 #, c-format msgid "Wrote %i records.\n" msgstr "Skrev %i poster.\n" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:768 +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:766 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "Skrev %i poster med %i manglende filer.\n" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:771 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:769 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "Skrev %i poster med %i feile filer.\n" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:774 +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:772 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "Skrev %i poster med %i manglende filer og %i feile filer.\n" diff --git a/po/ne.po b/po/ne.po index 66064f559..48623413d 100644 --- a/po/ne.po +++ b/po/ne.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: apt_po\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-04-03 14:20+0200\n" +"POT-Creation-Date: 2013-04-08 15:40+0200\n" "PO-Revision-Date: 2006-06-12 14:35+0545\n" "Last-Translator: Shiva Pokharel \n" "Language-Team: Nepali \n" @@ -158,7 +158,7 @@ msgstr " संस्करण तालिका:" #: cmdline/apt-cache.cc:1683 cmdline/apt-cdrom.cc:198 cmdline/apt-config.cc:81 #: cmdline/apt-get.cc:3363 cmdline/apt-mark.cc:375 -#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:590 +#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:591 #: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147 #, fuzzy, c-format msgid "%s %s for %s compiled on %s %s\n" @@ -1559,7 +1559,7 @@ msgstr "आन्तरिक त्रुटि" #. Only warn if there are no sources.list.d. #. Only warn if there is no sources.list file. -#: methods/mirror.cc:95 apt-inst/extract.cc:465 +#: methods/mirror.cc:95 apt-inst/extract.cc:464 #: apt-pkg/contrib/cdromutl.cc:183 apt-pkg/contrib/fileutl.cc:400 #: apt-pkg/contrib/fileutl.cc:513 apt-pkg/sourcelist.cc:208 #: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:108 @@ -1684,7 +1684,7 @@ msgstr "" " -c=? यो कनफिगरेसन फाइल पढ्नुहोस्\n" " -o=? एउटा स्वेच्छाचारी कनफिगरेसन विकल्प सेट गर्नुहोस्, जस्तै -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1339 +#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1386 #, c-format msgid "Unable to write to %s" msgstr " %s मा लेख्न असक्षम" @@ -1693,31 +1693,31 @@ msgstr " %s मा लेख्न असक्षम" msgid "Cannot get debconf version. Is debconf installed?" msgstr " debconf संस्करण प्राप्त गर्न सकिएन । के debconf स्थापना भयो ? " -#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:348 +#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:349 msgid "Package extension list is too long" msgstr "प्याकेज विस्तार सूचि अति लामो छ" #: ftparchive/apt-ftparchive.cc:173 ftparchive/apt-ftparchive.cc:190 -#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:263 -#: ftparchive/apt-ftparchive.cc:277 ftparchive/apt-ftparchive.cc:299 +#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:264 +#: ftparchive/apt-ftparchive.cc:278 ftparchive/apt-ftparchive.cc:300 #, c-format msgid "Error processing directory %s" msgstr "डाइरेक्ट्री %s प्रक्रिया गर्दा त्रुटि" -#: ftparchive/apt-ftparchive.cc:261 +#: ftparchive/apt-ftparchive.cc:262 msgid "Source extension list is too long" msgstr "स्रोत विस्तार सूचि अति लामो छ" -#: ftparchive/apt-ftparchive.cc:378 +#: ftparchive/apt-ftparchive.cc:379 msgid "Error writing header to contents file" msgstr "सामाग्री फाइलहरुमा हेडर लेख्दा त्रुटि" -#: ftparchive/apt-ftparchive.cc:408 +#: ftparchive/apt-ftparchive.cc:409 #, c-format msgid "Error processing contents %s" msgstr "सामग्री %sप्रक्रिया गर्दा त्रुटि" -#: ftparchive/apt-ftparchive.cc:596 +#: ftparchive/apt-ftparchive.cc:597 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -1800,11 +1800,11 @@ msgstr "" " -c=? यो कनफिगरेसन फाइल पढ्नुहोस्\n" " -o=? एउटा स्वेच्छाचारी कनफिगरेसन विकल्प सेट गर्नुहोस्" -#: ftparchive/apt-ftparchive.cc:802 +#: ftparchive/apt-ftparchive.cc:803 msgid "No selections matched" msgstr "कुनै चयनहरू मेल खाएन" -#: ftparchive/apt-ftparchive.cc:880 +#: ftparchive/apt-ftparchive.cc:881 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "केही फाइलहरू प्याकेज फाइल समूह `%s' मा हराइरहेको छ" @@ -1830,8 +1830,8 @@ msgstr "" msgid "Unable to open DB file %s: %s" msgstr "DB फाइल %s असक्षम भयो: %s" -#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:181 apt-inst/extract.cc:193 -#: apt-inst/extract.cc:210 +#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:179 apt-inst/extract.cc:192 +#: apt-inst/extract.cc:209 #, c-format msgid "Failed to stat %s" msgstr " %s स्थिर गर्न असफल" @@ -1909,22 +1909,22 @@ msgstr "यस %sB हिटको डि लिङ्क सिमा।\n" msgid "Archive had no package field" msgstr "संग्रह संग कुनै प्याकेज फाँट छैन" -#: ftparchive/writer.cc:411 ftparchive/writer.cc:698 +#: ftparchive/writer.cc:411 ftparchive/writer.cc:701 #, c-format msgid " %s has no override entry\n" msgstr " %s संग कुनै अधिलेखन प्रविष्टि छैन\n" -#: ftparchive/writer.cc:479 ftparchive/writer.cc:814 +#: ftparchive/writer.cc:479 ftparchive/writer.cc:845 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " %s संभारकर्ता %s हो %s होइन\n" -#: ftparchive/writer.cc:708 +#: ftparchive/writer.cc:711 #, fuzzy, c-format msgid " %s has no source override entry\n" msgstr " %s संग कुनै अधिलेखन प्रविष्टि छैन\n" -#: ftparchive/writer.cc:712 +#: ftparchive/writer.cc:715 #, fuzzy, c-format msgid " %s has no binary override entry either\n" msgstr " %s संग कुनै अधिलेखन प्रविष्टि छैन\n" @@ -1998,7 +1998,7 @@ msgstr "MD5 गणना गर्दा पढ्न असफल भयो" msgid "Problem unlinking %s" msgstr "समस्या अनलिङ्क भइरहेछ %s" -#: ftparchive/multicompress.cc:373 apt-inst/extract.cc:188 +#: ftparchive/multicompress.cc:373 apt-inst/extract.cc:187 #, c-format msgid "Failed to rename %s to %s" msgstr " %s मा %s पुन:नामकरण असफल भयो" @@ -2143,54 +2143,54 @@ msgstr "फाइल %s लेख्न असफल भयो" msgid "Failed to close file %s" msgstr "%s फाइल बन्द गर्न असफल भयो" -#: apt-inst/extract.cc:96 apt-inst/extract.cc:167 +#: apt-inst/extract.cc:94 apt-inst/extract.cc:165 #, c-format msgid "The path %s is too long" msgstr "बाटो %s अति लामो छ " -#: apt-inst/extract.cc:127 +#: apt-inst/extract.cc:125 #, c-format msgid "Unpacking %s more than once" msgstr "एक भन्दा बढी %s अनप्याक गरिदैछ" -#: apt-inst/extract.cc:137 +#: apt-inst/extract.cc:135 #, c-format msgid "The directory %s is diverted" msgstr "डाइरेक्ट्री %s फेरियो " -#: apt-inst/extract.cc:147 +#: apt-inst/extract.cc:145 #, c-format msgid "The package is trying to write to the diversion target %s/%s" msgstr "प्याकेज लक्षित मोडमा लेख्ने प्यास गर्दैछ %s/%s" -#: apt-inst/extract.cc:157 apt-inst/extract.cc:300 +#: apt-inst/extract.cc:155 apt-inst/extract.cc:299 msgid "The diversion path is too long" msgstr "घुम्ती बाटो अति लामो छ" -#: apt-inst/extract.cc:243 +#: apt-inst/extract.cc:242 #, c-format msgid "The directory %s is being replaced by a non-directory" msgstr "डाइरेक्ट्री %s डाइरेक्ट्री विहिन द्वारा बदलिदैछ" -#: apt-inst/extract.cc:283 +#: apt-inst/extract.cc:282 msgid "Failed to locate node in its hash bucket" msgstr "यसको ह्यास बाल्टीमा नोड स्थित गर्न असफल भयो" -#: apt-inst/extract.cc:287 +#: apt-inst/extract.cc:286 msgid "The path is too long" msgstr "बाटो अति लामो छ" -#: apt-inst/extract.cc:415 +#: apt-inst/extract.cc:414 #, c-format msgid "Overwrite package match with no version for %s" msgstr " %s को लागि संस्करन बिना अधिलेखन प्याकेज मेल खायो" -#: apt-inst/extract.cc:432 +#: apt-inst/extract.cc:431 #, c-format msgid "File %s/%s overwrites the one in the package %s" msgstr "फाइल %s/%s ले प्याकेज %s मा एउटा अधिलेखन गर्दछ" -#: apt-inst/extract.cc:492 +#: apt-inst/extract.cc:491 #, c-format msgid "Unable to stat %s" msgstr "%s स्थिर गर्न असक्षम भयो" @@ -2572,59 +2572,59 @@ msgstr "यो APT ले संस्करण प्रणालीलाई msgid "The package cache was built for a different architecture" msgstr "प्याकेज क्यास विभिन्न वास्तुकलाको लागि निर्माण भएको हो" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "Depends" msgstr "आधारित" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "PreDepends" msgstr "पुन:आधारित" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "Suggests" msgstr "सुझाव दिन्छ" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Recommends" msgstr "सिफारिस गर्दछ" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Conflicts" msgstr "द्वन्दहरू" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Replaces" msgstr "बदल्छ" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Obsoletes" msgstr "वेकायमहरू" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Breaks" msgstr "" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Enhances" msgstr "" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "important" msgstr "महत्वपूर्ण" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "required" msgstr "आवश्यक" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "standard" msgstr "मानक" -#: apt-pkg/pkgcache.cc:319 +#: apt-pkg/pkgcache.cc:328 msgid "optional" msgstr "वैकल्पिक" -#: apt-pkg/pkgcache.cc:319 +#: apt-pkg/pkgcache.cc:328 msgid "extra" msgstr "अतिरिक्त" @@ -2725,12 +2725,12 @@ msgstr "%s खोलिदैछ" msgid "Line %u too long in source list %s." msgstr "लाइन %u स्रोत सूचि %s मा अति लामो छ ।" -#: apt-pkg/sourcelist.cc:285 +#: apt-pkg/sourcelist.cc:289 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "वैरुप्य लाइन %u स्रोत सूचिमा %s (प्रकार)" -#: apt-pkg/sourcelist.cc:289 +#: apt-pkg/sourcelist.cc:293 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "स्रोत सूची %s भित्र %u लाइनमा टाइप '%s' ज्ञात छैन" @@ -2890,14 +2890,14 @@ msgstr "क्यास संग एउटा नमिल्दो संस #. TRANSLATOR: The first placeholder is a package name, #. the other two should be copied verbatim as they include debug info #: apt-pkg/pkgcachegen.cc:218 apt-pkg/pkgcachegen.cc:228 -#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:325 -#: apt-pkg/pkgcachegen.cc:333 apt-pkg/pkgcachegen.cc:375 -#: apt-pkg/pkgcachegen.cc:379 apt-pkg/pkgcachegen.cc:396 -#: apt-pkg/pkgcachegen.cc:406 apt-pkg/pkgcachegen.cc:410 -#: apt-pkg/pkgcachegen.cc:414 apt-pkg/pkgcachegen.cc:435 -#: apt-pkg/pkgcachegen.cc:477 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:525 apt-pkg/pkgcachegen.cc:556 -#: apt-pkg/pkgcachegen.cc:570 +#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:319 +#: apt-pkg/pkgcachegen.cc:332 apt-pkg/pkgcachegen.cc:374 +#: apt-pkg/pkgcachegen.cc:378 apt-pkg/pkgcachegen.cc:395 +#: apt-pkg/pkgcachegen.cc:403 apt-pkg/pkgcachegen.cc:407 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:432 +#: apt-pkg/pkgcachegen.cc:471 apt-pkg/pkgcachegen.cc:509 +#: apt-pkg/pkgcachegen.cc:516 apt-pkg/pkgcachegen.cc:547 +#: apt-pkg/pkgcachegen.cc:561 #, fuzzy, c-format msgid "Error occurred while processing %s (%s%d)" msgstr " %s प्रक्रिया गर्दा त्रुटि देखा पर्यो (pkg फेला पार्नुहोस् )" @@ -2919,26 +2919,26 @@ msgstr "वाऊ, APT ले सक्षम गरेको संस्कर msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "वाऊ, APT ले सक्षम गरेको निर्भरताहरुको नम्बरलाई तपाईँले उछिन्नुभयो । " -#: apt-pkg/pkgcachegen.cc:577 +#: apt-pkg/pkgcachegen.cc:568 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "फाइल निर्भरताहरू प्रक्रिया गर्दा प्याकेज %s %s फेला परेन" -#: apt-pkg/pkgcachegen.cc:1150 +#: apt-pkg/pkgcachegen.cc:1197 #, c-format msgid "Couldn't stat source package list %s" msgstr "स्रोत प्याकेज सूची %s स्थिर गर्न सकिएन " -#: apt-pkg/pkgcachegen.cc:1238 apt-pkg/pkgcachegen.cc:1342 -#: apt-pkg/pkgcachegen.cc:1348 apt-pkg/pkgcachegen.cc:1505 +#: apt-pkg/pkgcachegen.cc:1285 apt-pkg/pkgcachegen.cc:1389 +#: apt-pkg/pkgcachegen.cc:1395 apt-pkg/pkgcachegen.cc:1552 msgid "Reading package lists" msgstr "प्याकेज सूचिहरू पढिदैछ" -#: apt-pkg/pkgcachegen.cc:1255 +#: apt-pkg/pkgcachegen.cc:1302 msgid "Collecting File Provides" msgstr "फाइल उपलब्धताहरू संकलन गरिदैछ" -#: apt-pkg/pkgcachegen.cc:1447 apt-pkg/pkgcachegen.cc:1454 +#: apt-pkg/pkgcachegen.cc:1494 apt-pkg/pkgcachegen.cc:1501 msgid "IO Error saving source cache" msgstr "स्रोत क्यास बचत गर्दा IO त्रुटि" @@ -3143,22 +3143,22 @@ msgstr "नयाँ स्रोत सूचि लेखिदैछ\n" msgid "Source list entries for this disc are:\n" msgstr "यो डिस्कको लागि स्रोत सूचि प्रविष्टिहरू:\n" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:766 +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:764 #, c-format msgid "Wrote %i records.\n" msgstr "%i रेकर्डहरू लेखियो ।\n" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:768 +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:766 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "हराइरहेको फाइल %i हरू संगै %i रेकर्डहरू लेख्नुहोस् ।\n" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:771 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:769 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "मेल नखाएका फाइल %i हरू संगै %i रेकर्डहरू लेख्नुहोस् ।\n" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:774 +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:772 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "हराइरहेको फाइल %i हरू र मेल नखाएका फाइल %i हरू संगै %i रेकर्डहरू लेख्नुहोस् ।\n" diff --git a/po/nl.po b/po/nl.po index 408ce4b8b..4d770805b 100644 --- a/po/nl.po +++ b/po/nl.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.8.15.9\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-04-03 14:20+0200\n" +"POT-Creation-Date: 2013-04-08 15:40+0200\n" "PO-Revision-Date: 2011-12-05 17:10+0100\n" "Last-Translator: Jeroen Schot \n" "Language-Team: Debian l10n Dutch \n" @@ -158,7 +158,7 @@ msgstr " Versietabel:" #: cmdline/apt-cache.cc:1683 cmdline/apt-cdrom.cc:198 cmdline/apt-config.cc:81 #: cmdline/apt-get.cc:3363 cmdline/apt-mark.cc:375 -#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:590 +#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:591 #: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147 #, c-format msgid "%s %s for %s compiled on %s %s\n" @@ -1613,7 +1613,7 @@ msgstr "Interne fout" #. Only warn if there are no sources.list.d. #. Only warn if there is no sources.list file. -#: methods/mirror.cc:95 apt-inst/extract.cc:465 +#: methods/mirror.cc:95 apt-inst/extract.cc:464 #: apt-pkg/contrib/cdromutl.cc:183 apt-pkg/contrib/fileutl.cc:400 #: apt-pkg/contrib/fileutl.cc:513 apt-pkg/sourcelist.cc:208 #: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:108 @@ -1746,7 +1746,7 @@ msgstr "" " -c=? Lees dit configuratiebestand.\n" " -o=? Stel een willekeurige optie in, b.v. -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1339 +#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1386 #, c-format msgid "Unable to write to %s" msgstr "Kan niet naar %s schrijven" @@ -1755,31 +1755,31 @@ msgstr "Kan niet naar %s schrijven" msgid "Cannot get debconf version. Is debconf installed?" msgstr "Kan versie van debconf niet bepalen. Is debconf geïnstalleerd?" -#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:348 +#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:349 msgid "Package extension list is too long" msgstr "Pakket-extensielijst is te lang" #: ftparchive/apt-ftparchive.cc:173 ftparchive/apt-ftparchive.cc:190 -#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:263 -#: ftparchive/apt-ftparchive.cc:277 ftparchive/apt-ftparchive.cc:299 +#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:264 +#: ftparchive/apt-ftparchive.cc:278 ftparchive/apt-ftparchive.cc:300 #, c-format msgid "Error processing directory %s" msgstr "Fout bij het verwerken van map %s" -#: ftparchive/apt-ftparchive.cc:261 +#: ftparchive/apt-ftparchive.cc:262 msgid "Source extension list is too long" msgstr "Bron-extensielijst is te lang" -#: ftparchive/apt-ftparchive.cc:378 +#: ftparchive/apt-ftparchive.cc:379 msgid "Error writing header to contents file" msgstr "Fout bij wegschrijven van de koptekst naar het 'contents'-bestand" -#: ftparchive/apt-ftparchive.cc:408 +#: ftparchive/apt-ftparchive.cc:409 #, c-format msgid "Error processing contents %s" msgstr "Fout bij het verwerken van de inhoud van %s" -#: ftparchive/apt-ftparchive.cc:596 +#: ftparchive/apt-ftparchive.cc:597 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -1863,11 +1863,11 @@ msgstr "" " -c=? Lees dit configuratiebestand in\n" " -o=? Stel een willekeurige configuratie optie in" -#: ftparchive/apt-ftparchive.cc:802 +#: ftparchive/apt-ftparchive.cc:803 msgid "No selections matched" msgstr "Geen van de selecties kwam overeen" -#: ftparchive/apt-ftparchive.cc:880 +#: ftparchive/apt-ftparchive.cc:881 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "Sommige bestanden zijn niet aanwezig in de pakketbestandsgroep '%s'" @@ -1895,8 +1895,8 @@ msgstr "" msgid "Unable to open DB file %s: %s" msgstr "Kan het DB-bestand %s niet openen: %s" -#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:181 apt-inst/extract.cc:193 -#: apt-inst/extract.cc:210 +#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:179 apt-inst/extract.cc:192 +#: apt-inst/extract.cc:209 #, c-format msgid "Failed to stat %s" msgstr "stat op %s is mislukt" @@ -1974,22 +1974,22 @@ msgstr " Ontlinklimiet van %sB bereikt.\n" msgid "Archive had no package field" msgstr "Archief heeft geen 'package'-veld" -#: ftparchive/writer.cc:411 ftparchive/writer.cc:698 +#: ftparchive/writer.cc:411 ftparchive/writer.cc:701 #, c-format msgid " %s has no override entry\n" msgstr " %s heeft geen voorrangsingang\n" -#: ftparchive/writer.cc:479 ftparchive/writer.cc:814 +#: ftparchive/writer.cc:479 ftparchive/writer.cc:845 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " %s beheerder is %s, niet %s\n" -#: ftparchive/writer.cc:708 +#: ftparchive/writer.cc:711 #, c-format msgid " %s has no source override entry\n" msgstr " %s heeft geen voorrangsingang voor bronpakketten\n" -#: ftparchive/writer.cc:712 +#: ftparchive/writer.cc:715 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s heeft ook geen voorrangsingang voor binaire pakketten\n" @@ -2063,7 +2063,7 @@ msgstr "Lezen tijdens het berekenen van de MD5 is mislukt" msgid "Problem unlinking %s" msgstr "Probleem bij het ontlinken van %s" -#: ftparchive/multicompress.cc:373 apt-inst/extract.cc:188 +#: ftparchive/multicompress.cc:373 apt-inst/extract.cc:187 #, c-format msgid "Failed to rename %s to %s" msgstr "Hernoemen van %s naar %s is mislukt" @@ -2209,54 +2209,54 @@ msgstr "Wegschrijven van bestand %s is mislukt" msgid "Failed to close file %s" msgstr "Sluiten van bestand %s is mislukt" -#: apt-inst/extract.cc:96 apt-inst/extract.cc:167 +#: apt-inst/extract.cc:94 apt-inst/extract.cc:165 #, c-format msgid "The path %s is too long" msgstr "Het pad %s is te lang" -#: apt-inst/extract.cc:127 +#: apt-inst/extract.cc:125 #, c-format msgid "Unpacking %s more than once" msgstr "%s wordt meer dan eens uitgepakt" -#: apt-inst/extract.cc:137 +#: apt-inst/extract.cc:135 #, c-format msgid "The directory %s is diverted" msgstr "De map %s is al omgeleid" -#: apt-inst/extract.cc:147 +#: apt-inst/extract.cc:145 #, c-format msgid "The package is trying to write to the diversion target %s/%s" msgstr "Het pakket probeert om het omleidingsdoel %s/%s weg te schrijven" -#: apt-inst/extract.cc:157 apt-inst/extract.cc:300 +#: apt-inst/extract.cc:155 apt-inst/extract.cc:299 msgid "The diversion path is too long" msgstr "Het omleidingspad is te lang" -#: apt-inst/extract.cc:243 +#: apt-inst/extract.cc:242 #, c-format msgid "The directory %s is being replaced by a non-directory" msgstr "De map %s wordt vervangen door een niet-map" -#: apt-inst/extract.cc:283 +#: apt-inst/extract.cc:282 msgid "Failed to locate node in its hash bucket" msgstr "Vinden van de knoop in de hash-emmer is mislukt" -#: apt-inst/extract.cc:287 +#: apt-inst/extract.cc:286 msgid "The path is too long" msgstr "Het pad is te lang" -#: apt-inst/extract.cc:415 +#: apt-inst/extract.cc:414 #, c-format msgid "Overwrite package match with no version for %s" msgstr "Pakket-overeenkomst wordt overschreven met 'no version' voor %s" -#: apt-inst/extract.cc:432 +#: apt-inst/extract.cc:431 #, c-format msgid "File %s/%s overwrites the one in the package %s" msgstr "Het bestand %s/%s overschrijft het bestand van pakket %s" -#: apt-inst/extract.cc:492 +#: apt-inst/extract.cc:491 #, c-format msgid "Unable to stat %s" msgstr "Kan de status van %s niet opvragen" @@ -2650,59 +2650,59 @@ msgstr "Deze APT ondersteunt het versienummeringssysteem '%s' niet" msgid "The package cache was built for a different architecture" msgstr "De pakketcache was aangemaakt voor een andere architectuur" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "Depends" msgstr "Vereisten" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "PreDepends" msgstr "Voor-Vereisten" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "Suggests" msgstr "Suggesties" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Recommends" msgstr "Aanbevelingen" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Conflicts" msgstr "Conflicteert met" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Replaces" msgstr "Vervangt" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Obsoletes" msgstr "Verouderd" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Breaks" msgstr "Breekt" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Enhances" msgstr "Vult aan" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "important" msgstr "belangrijk" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "required" msgstr "noodzakelijk" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "standard" msgstr "standaard" -#: apt-pkg/pkgcache.cc:319 +#: apt-pkg/pkgcache.cc:328 msgid "optional" msgstr "optioneel" -#: apt-pkg/pkgcache.cc:319 +#: apt-pkg/pkgcache.cc:328 msgid "extra" msgstr "extra" @@ -2803,12 +2803,12 @@ msgstr "%s wordt geopend" msgid "Line %u too long in source list %s." msgstr "Regel %u van de bronlijst %s is te lang." -#: apt-pkg/sourcelist.cc:285 +#: apt-pkg/sourcelist.cc:289 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "Misvormde regel %u in bronlijst %s (type)" -#: apt-pkg/sourcelist.cc:289 +#: apt-pkg/sourcelist.cc:293 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "Type '%s' op regel %u in bronlijst %s is onbekend" @@ -2981,14 +2981,14 @@ msgstr "Cache heeft een niet-compatibel versienummeringssysteem" #. TRANSLATOR: The first placeholder is a package name, #. the other two should be copied verbatim as they include debug info #: apt-pkg/pkgcachegen.cc:218 apt-pkg/pkgcachegen.cc:228 -#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:325 -#: apt-pkg/pkgcachegen.cc:333 apt-pkg/pkgcachegen.cc:375 -#: apt-pkg/pkgcachegen.cc:379 apt-pkg/pkgcachegen.cc:396 -#: apt-pkg/pkgcachegen.cc:406 apt-pkg/pkgcachegen.cc:410 -#: apt-pkg/pkgcachegen.cc:414 apt-pkg/pkgcachegen.cc:435 -#: apt-pkg/pkgcachegen.cc:477 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:525 apt-pkg/pkgcachegen.cc:556 -#: apt-pkg/pkgcachegen.cc:570 +#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:319 +#: apt-pkg/pkgcachegen.cc:332 apt-pkg/pkgcachegen.cc:374 +#: apt-pkg/pkgcachegen.cc:378 apt-pkg/pkgcachegen.cc:395 +#: apt-pkg/pkgcachegen.cc:403 apt-pkg/pkgcachegen.cc:407 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:432 +#: apt-pkg/pkgcachegen.cc:471 apt-pkg/pkgcachegen.cc:509 +#: apt-pkg/pkgcachegen.cc:516 apt-pkg/pkgcachegen.cc:547 +#: apt-pkg/pkgcachegen.cc:561 #, fuzzy, c-format msgid "Error occurred while processing %s (%s%d)" msgstr "Fout tijdens verwerken van %s (FindPkg)" @@ -3011,28 +3011,28 @@ msgstr "" msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "Wauw, u heeft meer afhankelijkheden dan deze APT aan kan." -#: apt-pkg/pkgcachegen.cc:577 +#: apt-pkg/pkgcachegen.cc:568 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "" "Pakket %s %s werd niet gevonden bij het verwerken van de " "bestandsafhankelijkheden" -#: apt-pkg/pkgcachegen.cc:1150 +#: apt-pkg/pkgcachegen.cc:1197 #, c-format msgid "Couldn't stat source package list %s" msgstr "Kon de status van de bronpakketlijst %s niet opvragen" -#: apt-pkg/pkgcachegen.cc:1238 apt-pkg/pkgcachegen.cc:1342 -#: apt-pkg/pkgcachegen.cc:1348 apt-pkg/pkgcachegen.cc:1505 +#: apt-pkg/pkgcachegen.cc:1285 apt-pkg/pkgcachegen.cc:1389 +#: apt-pkg/pkgcachegen.cc:1395 apt-pkg/pkgcachegen.cc:1552 msgid "Reading package lists" msgstr "Pakketlijsten worden ingelezen" -#: apt-pkg/pkgcachegen.cc:1255 +#: apt-pkg/pkgcachegen.cc:1302 msgid "Collecting File Provides" msgstr "Voorziene bestanden worden verzameld" -#: apt-pkg/pkgcachegen.cc:1447 apt-pkg/pkgcachegen.cc:1454 +#: apt-pkg/pkgcachegen.cc:1494 apt-pkg/pkgcachegen.cc:1501 msgid "IO Error saving source cache" msgstr "Invoer/Uitvoer-fout tijdens wegschrijven bronpakket-cache" @@ -3245,22 +3245,22 @@ msgstr "Nieuwe bronlijst wordt weggeschreven\n" msgid "Source list entries for this disc are:\n" msgstr "Bronlijst-ingangen voor de schijf zijn:\n" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:766 +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:764 #, c-format msgid "Wrote %i records.\n" msgstr "%i records weggeschreven.\n" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:768 +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:766 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "%i records weggeschreven met %i missende bestanden.\n" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:771 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:769 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "%i records weggeschreven met %i niet overeenkomende bestanden\n" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:774 +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:772 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" diff --git a/po/nn.po b/po/nn.po index 768999104..61a662795 100644 --- a/po/nn.po +++ b/po/nn.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: apt_nn\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-04-03 14:20+0200\n" +"POT-Creation-Date: 2013-04-08 15:40+0200\n" "PO-Revision-Date: 2005-02-14 23:30+0100\n" "Last-Translator: Havard Korsvoll \n" "Language-Team: Norwegian nynorsk \n" @@ -160,7 +160,7 @@ msgstr " Versjonstabell:" #: cmdline/apt-cache.cc:1683 cmdline/apt-cdrom.cc:198 cmdline/apt-config.cc:81 #: cmdline/apt-get.cc:3363 cmdline/apt-mark.cc:375 -#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:590 +#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:591 #: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147 #, fuzzy, c-format msgid "%s %s for %s compiled on %s %s\n" @@ -1576,7 +1576,7 @@ msgstr "Intern feil" #. Only warn if there are no sources.list.d. #. Only warn if there is no sources.list file. -#: methods/mirror.cc:95 apt-inst/extract.cc:465 +#: methods/mirror.cc:95 apt-inst/extract.cc:464 #: apt-pkg/contrib/cdromutl.cc:183 apt-pkg/contrib/fileutl.cc:400 #: apt-pkg/contrib/fileutl.cc:513 apt-pkg/sourcelist.cc:208 #: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:108 @@ -1699,7 +1699,7 @@ msgstr "" " -c=? Les denne innstillingsfila.\n" " -o=? Set ei vilkrleg innstilling, t.d. -o dir::cache=/tmp.\n" -#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1339 +#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1386 #, c-format msgid "Unable to write to %s" msgstr "Klarte ikkje skriva til %s" @@ -1708,31 +1708,31 @@ msgstr "Klarte ikkje skriva til %s" msgid "Cannot get debconf version. Is debconf installed?" msgstr "Finn ikkje debconf-versjonen. Er debconf installert?" -#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:348 +#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:349 msgid "Package extension list is too long" msgstr "Lista over pakkeutvidingar er for lang" #: ftparchive/apt-ftparchive.cc:173 ftparchive/apt-ftparchive.cc:190 -#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:263 -#: ftparchive/apt-ftparchive.cc:277 ftparchive/apt-ftparchive.cc:299 +#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:264 +#: ftparchive/apt-ftparchive.cc:278 ftparchive/apt-ftparchive.cc:300 #, c-format msgid "Error processing directory %s" msgstr "Feil ved lesing av katalogen %s" -#: ftparchive/apt-ftparchive.cc:261 +#: ftparchive/apt-ftparchive.cc:262 msgid "Source extension list is too long" msgstr "Lista over kjeldeutvidingar er for lang" -#: ftparchive/apt-ftparchive.cc:378 +#: ftparchive/apt-ftparchive.cc:379 msgid "Error writing header to contents file" msgstr "Feil ved skriving av topptekst til innhaldsfila" -#: ftparchive/apt-ftparchive.cc:408 +#: ftparchive/apt-ftparchive.cc:409 #, c-format msgid "Error processing contents %s" msgstr "Feil ved lesing av %s" -#: ftparchive/apt-ftparchive.cc:596 +#: ftparchive/apt-ftparchive.cc:597 #, fuzzy msgid "" "Usage: apt-ftparchive [options] command\n" @@ -1812,11 +1812,11 @@ msgstr "" " -c=? Les denne oppsettsfila.\n" " -o=? Set ei vilkrleg innstilling." -#: ftparchive/apt-ftparchive.cc:802 +#: ftparchive/apt-ftparchive.cc:803 msgid "No selections matched" msgstr "Ingen utval passa" -#: ftparchive/apt-ftparchive.cc:880 +#: ftparchive/apt-ftparchive.cc:881 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "Enkelte filer manglar i pakkefilgruppa %s" @@ -1842,8 +1842,8 @@ msgstr "" msgid "Unable to open DB file %s: %s" msgstr "Klarte ikkje opna DB-fila %s: %s" -#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:181 apt-inst/extract.cc:193 -#: apt-inst/extract.cc:210 +#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:179 apt-inst/extract.cc:192 +#: apt-inst/extract.cc:209 #, c-format msgid "Failed to stat %s" msgstr "Klarte ikkje f status til %s" @@ -1921,22 +1921,22 @@ msgstr " DeLink-grensa p msgid "Archive had no package field" msgstr "Arkivet har ikkje noko pakkefelt" -#: ftparchive/writer.cc:411 ftparchive/writer.cc:698 +#: ftparchive/writer.cc:411 ftparchive/writer.cc:701 #, c-format msgid " %s has no override entry\n" msgstr " %s har inga overstyringsoppfring\n" -#: ftparchive/writer.cc:479 ftparchive/writer.cc:814 +#: ftparchive/writer.cc:479 ftparchive/writer.cc:845 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " %s-vedlikehaldaren er %s, ikkje %s\n" -#: ftparchive/writer.cc:708 +#: ftparchive/writer.cc:711 #, fuzzy, c-format msgid " %s has no source override entry\n" msgstr " %s har inga overstyringsoppfring\n" -#: ftparchive/writer.cc:712 +#: ftparchive/writer.cc:715 #, fuzzy, c-format msgid " %s has no binary override entry either\n" msgstr " %s har inga overstyringsoppfring\n" @@ -2010,7 +2010,7 @@ msgstr "Klarte ikkje lesa under utrekning av MD5" msgid "Problem unlinking %s" msgstr "Problem ved oppheving av lenkje til %s" -#: ftparchive/multicompress.cc:373 apt-inst/extract.cc:188 +#: ftparchive/multicompress.cc:373 apt-inst/extract.cc:187 #, c-format msgid "Failed to rename %s to %s" msgstr "Klarte ikkje endra namnet p %s til %s" @@ -2155,54 +2155,54 @@ msgstr "Klarte ikkje skriva fila %s" msgid "Failed to close file %s" msgstr "Klarte ikkje lukka fila %s" -#: apt-inst/extract.cc:96 apt-inst/extract.cc:167 +#: apt-inst/extract.cc:94 apt-inst/extract.cc:165 #, c-format msgid "The path %s is too long" msgstr "Stigen %s er for lang" -#: apt-inst/extract.cc:127 +#: apt-inst/extract.cc:125 #, c-format msgid "Unpacking %s more than once" msgstr "Pakkar ut %s meir enn in gong" -#: apt-inst/extract.cc:137 +#: apt-inst/extract.cc:135 #, c-format msgid "The directory %s is diverted" msgstr "Katalogen %s er avleidd" -#: apt-inst/extract.cc:147 +#: apt-inst/extract.cc:145 #, c-format msgid "The package is trying to write to the diversion target %s/%s" msgstr "Pakken prver skriva til avleiingsmlet %s/%s" -#: apt-inst/extract.cc:157 apt-inst/extract.cc:300 +#: apt-inst/extract.cc:155 apt-inst/extract.cc:299 msgid "The diversion path is too long" msgstr "Avleiingsstigen er for lang" -#: apt-inst/extract.cc:243 +#: apt-inst/extract.cc:242 #, c-format msgid "The directory %s is being replaced by a non-directory" msgstr "Katalogen %s vert bytt ut med ein ikkje-katalog" -#: apt-inst/extract.cc:283 +#: apt-inst/extract.cc:282 msgid "Failed to locate node in its hash bucket" msgstr "Fann ikkje noden i nkkelbtta" -#: apt-inst/extract.cc:287 +#: apt-inst/extract.cc:286 msgid "The path is too long" msgstr "Stigen er for lang" -#: apt-inst/extract.cc:415 +#: apt-inst/extract.cc:414 #, c-format msgid "Overwrite package match with no version for %s" msgstr "Skriv over pakketreff utan versjon for %s" -#: apt-inst/extract.cc:432 +#: apt-inst/extract.cc:431 #, c-format msgid "File %s/%s overwrites the one in the package %s" msgstr "Fila %s/%s skriv over den tilsvarande fila i pakken %s" -#: apt-inst/extract.cc:492 +#: apt-inst/extract.cc:491 #, c-format msgid "Unable to stat %s" msgstr "Klarte ikkje f status til %s" @@ -2585,59 +2585,59 @@ msgstr "APT st msgid "The package cache was built for a different architecture" msgstr "Pakkelageret er bygd for ein annan arkitektur" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "Depends" msgstr "Krav" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "PreDepends" msgstr "Forkrav" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "Suggests" msgstr "Forslag" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Recommends" msgstr "Tilrdingar" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Conflicts" msgstr "Konflikt" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Replaces" msgstr "Byter ut" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Obsoletes" msgstr "Foreldar" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Breaks" msgstr "" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Enhances" msgstr "" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "important" msgstr "viktig" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "required" msgstr "pkravd" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "standard" msgstr "vanleg" -#: apt-pkg/pkgcache.cc:319 +#: apt-pkg/pkgcache.cc:328 msgid "optional" msgstr "valfri" -#: apt-pkg/pkgcache.cc:319 +#: apt-pkg/pkgcache.cc:328 msgid "extra" msgstr "tillegg" @@ -2738,12 +2738,12 @@ msgstr "Opnar %s" msgid "Line %u too long in source list %s." msgstr "Linja %u i kjeldelista %s er for lang." -#: apt-pkg/sourcelist.cc:285 +#: apt-pkg/sourcelist.cc:289 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "Misforma linje %u i kjeldelista %s (type)" -#: apt-pkg/sourcelist.cc:289 +#: apt-pkg/sourcelist.cc:293 #, fuzzy, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "Typen %s er ukjend i linja %u i kjeldelista %s" @@ -2909,14 +2909,14 @@ msgstr "Mellomlageret brukar eit inkompatibelt versjonssystem" #. TRANSLATOR: The first placeholder is a package name, #. the other two should be copied verbatim as they include debug info #: apt-pkg/pkgcachegen.cc:218 apt-pkg/pkgcachegen.cc:228 -#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:325 -#: apt-pkg/pkgcachegen.cc:333 apt-pkg/pkgcachegen.cc:375 -#: apt-pkg/pkgcachegen.cc:379 apt-pkg/pkgcachegen.cc:396 -#: apt-pkg/pkgcachegen.cc:406 apt-pkg/pkgcachegen.cc:410 -#: apt-pkg/pkgcachegen.cc:414 apt-pkg/pkgcachegen.cc:435 -#: apt-pkg/pkgcachegen.cc:477 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:525 apt-pkg/pkgcachegen.cc:556 -#: apt-pkg/pkgcachegen.cc:570 +#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:319 +#: apt-pkg/pkgcachegen.cc:332 apt-pkg/pkgcachegen.cc:374 +#: apt-pkg/pkgcachegen.cc:378 apt-pkg/pkgcachegen.cc:395 +#: apt-pkg/pkgcachegen.cc:403 apt-pkg/pkgcachegen.cc:407 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:432 +#: apt-pkg/pkgcachegen.cc:471 apt-pkg/pkgcachegen.cc:509 +#: apt-pkg/pkgcachegen.cc:516 apt-pkg/pkgcachegen.cc:547 +#: apt-pkg/pkgcachegen.cc:561 #, fuzzy, c-format msgid "Error occurred while processing %s (%s%d)" msgstr "Feil ved behandling av %s (FindPkg)" @@ -2938,26 +2938,26 @@ msgstr "J msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "Jss, du har overgtt talet p krav som APT kan handtera." -#: apt-pkg/pkgcachegen.cc:577 +#: apt-pkg/pkgcachegen.cc:568 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "Fann ikkje pakken %s %s ved behandling av filkrav" -#: apt-pkg/pkgcachegen.cc:1150 +#: apt-pkg/pkgcachegen.cc:1197 #, c-format msgid "Couldn't stat source package list %s" msgstr "Klarte ikkje f status p kjeldepakkelista %s" -#: apt-pkg/pkgcachegen.cc:1238 apt-pkg/pkgcachegen.cc:1342 -#: apt-pkg/pkgcachegen.cc:1348 apt-pkg/pkgcachegen.cc:1505 +#: apt-pkg/pkgcachegen.cc:1285 apt-pkg/pkgcachegen.cc:1389 +#: apt-pkg/pkgcachegen.cc:1395 apt-pkg/pkgcachegen.cc:1552 msgid "Reading package lists" msgstr "Les pakkelister" -#: apt-pkg/pkgcachegen.cc:1255 +#: apt-pkg/pkgcachegen.cc:1302 msgid "Collecting File Provides" msgstr "Samlar inn filtilbod" -#: apt-pkg/pkgcachegen.cc:1447 apt-pkg/pkgcachegen.cc:1454 +#: apt-pkg/pkgcachegen.cc:1494 apt-pkg/pkgcachegen.cc:1501 msgid "IO Error saving source cache" msgstr "IU-feil ved lagring av kjeldelager" @@ -3162,22 +3162,22 @@ msgstr "Skriv ny kjeldeliste\n" msgid "Source list entries for this disc are:\n" msgstr "Kjeldelisteoppfringar for denne disken er:\n" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:766 +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:764 #, c-format msgid "Wrote %i records.\n" msgstr "Skreiv %i postar.\n" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:768 +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:766 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "Skreiv %i postar med %i manglande filer.\n" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:771 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:769 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "Skreiv %i postar med %i filer som ikkje passa\n" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:774 +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:772 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "Skreiv %i postar med %i manglande filer og %i filer som ikkje passa\n" diff --git a/po/pl.po b/po/pl.po index 61c3cd2b3..3d7636dab 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 \n" -"POT-Creation-Date: 2013-04-03 14:20+0200\n" +"POT-Creation-Date: 2013-04-08 15:40+0200\n" "PO-Revision-Date: 2012-07-28 21:53+0200\n" "Last-Translator: Michał Kułach \n" "Language-Team: Polish \n" @@ -162,7 +162,7 @@ msgstr " Tabela wersji:" #: cmdline/apt-cache.cc:1683 cmdline/apt-cdrom.cc:198 cmdline/apt-config.cc:81 #: cmdline/apt-get.cc:3363 cmdline/apt-mark.cc:375 -#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:590 +#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:591 #: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147 #, c-format msgid "%s %s for %s compiled on %s %s\n" @@ -1650,7 +1650,7 @@ msgstr "Błąd wewnętrzny" #. Only warn if there are no sources.list.d. #. Only warn if there is no sources.list file. -#: methods/mirror.cc:95 apt-inst/extract.cc:465 +#: methods/mirror.cc:95 apt-inst/extract.cc:464 #: apt-pkg/contrib/cdromutl.cc:183 apt-pkg/contrib/fileutl.cc:400 #: apt-pkg/contrib/fileutl.cc:513 apt-pkg/sourcelist.cc:208 #: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:108 @@ -1780,7 +1780,7 @@ msgstr "" " -c=? Czyta wskazany plik konfiguracyjny.\n" " -o=? Ustawia dowolną opcję konfiguracji, np. -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1339 +#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1386 #, c-format msgid "Unable to write to %s" msgstr "Nie udało się pisać do %s" @@ -1789,31 +1789,31 @@ msgstr "Nie udało się pisać do %s" msgid "Cannot get debconf version. Is debconf installed?" msgstr "Nie udało się pobrać wersji debconf. Czy debconf jest zainstalowany?" -#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:348 +#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:349 msgid "Package extension list is too long" msgstr "Lista rozszerzeń pakietów jest zbyt długa" #: ftparchive/apt-ftparchive.cc:173 ftparchive/apt-ftparchive.cc:190 -#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:263 -#: ftparchive/apt-ftparchive.cc:277 ftparchive/apt-ftparchive.cc:299 +#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:264 +#: ftparchive/apt-ftparchive.cc:278 ftparchive/apt-ftparchive.cc:300 #, c-format msgid "Error processing directory %s" msgstr "Błąd przetwarzania katalogu %s" -#: ftparchive/apt-ftparchive.cc:261 +#: ftparchive/apt-ftparchive.cc:262 msgid "Source extension list is too long" msgstr "Lista rozszerzeń źródeł jest zbyt długa" -#: ftparchive/apt-ftparchive.cc:378 +#: ftparchive/apt-ftparchive.cc:379 msgid "Error writing header to contents file" msgstr "Błąd przy zapisywaniu nagłówka do pliku zawartości" -#: ftparchive/apt-ftparchive.cc:408 +#: ftparchive/apt-ftparchive.cc:409 #, c-format msgid "Error processing contents %s" msgstr "Błąd podczas przetwarzania zawartości %s" -#: ftparchive/apt-ftparchive.cc:596 +#: ftparchive/apt-ftparchive.cc:597 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -1896,11 +1896,11 @@ msgstr "" " -c=? Czyta wskazany plik konfiguracyjny\n" " -o=? Ustawia dowolną opcję konfiguracji" -#: ftparchive/apt-ftparchive.cc:802 +#: ftparchive/apt-ftparchive.cc:803 msgid "No selections matched" msgstr "Nie dopasowano żadnej nazwy" -#: ftparchive/apt-ftparchive.cc:880 +#: ftparchive/apt-ftparchive.cc:881 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "Brakuje pewnych plików w grupie plików pakietów \"%s\"" @@ -1928,8 +1928,8 @@ msgstr "" msgid "Unable to open DB file %s: %s" msgstr "Nie udało się otworzyć pliku bazy %s: %s" -#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:181 apt-inst/extract.cc:193 -#: apt-inst/extract.cc:210 +#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:179 apt-inst/extract.cc:192 +#: apt-inst/extract.cc:209 #, c-format msgid "Failed to stat %s" msgstr "Nie udało się wykonać operacji stat na %s" @@ -2007,22 +2007,22 @@ msgstr " Osiągnięto ograniczenie odłączania %sB.\n" msgid "Archive had no package field" msgstr "Archiwum nie posiadało pola pakietu" -#: ftparchive/writer.cc:411 ftparchive/writer.cc:698 +#: ftparchive/writer.cc:411 ftparchive/writer.cc:701 #, c-format msgid " %s has no override entry\n" msgstr " %s nie posiada wpisu w pliku override\n" -#: ftparchive/writer.cc:479 ftparchive/writer.cc:814 +#: ftparchive/writer.cc:479 ftparchive/writer.cc:845 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " opiekunem %s jest %s, a nie %s\n" -#: ftparchive/writer.cc:708 +#: ftparchive/writer.cc:711 #, c-format msgid " %s has no source override entry\n" msgstr " %s nie posiada wpisu w pliku override źródeł\n" -#: ftparchive/writer.cc:712 +#: ftparchive/writer.cc:715 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s nie posiada również wpisu w pliku override binariów\n" @@ -2096,7 +2096,7 @@ msgstr "Nie udało się czytanie w czasie liczenia skrótu MD5" msgid "Problem unlinking %s" msgstr "Problem przy usuwaniu %s" -#: ftparchive/multicompress.cc:373 apt-inst/extract.cc:188 +#: ftparchive/multicompress.cc:373 apt-inst/extract.cc:187 #, c-format msgid "Failed to rename %s to %s" msgstr "Nie udało się zmienić nazwy %s na %s" @@ -2241,54 +2241,54 @@ msgstr "Nie udało się zapisać pliku %s" msgid "Failed to close file %s" msgstr "Nie udało się zamknąć pliku %s" -#: apt-inst/extract.cc:96 apt-inst/extract.cc:167 +#: apt-inst/extract.cc:94 apt-inst/extract.cc:165 #, c-format msgid "The path %s is too long" msgstr "Ścieżka %s jest zbyt długa" -#: apt-inst/extract.cc:127 +#: apt-inst/extract.cc:125 #, c-format msgid "Unpacking %s more than once" msgstr "Wypakowanie %s więcej niż raz" -#: apt-inst/extract.cc:137 +#: apt-inst/extract.cc:135 #, c-format msgid "The directory %s is diverted" msgstr "Ominięcie katalogu %s" -#: apt-inst/extract.cc:147 +#: apt-inst/extract.cc:145 #, c-format msgid "The package is trying to write to the diversion target %s/%s" msgstr "Pakiet próbuje pisać do celu ominięcia %s/%s" -#: apt-inst/extract.cc:157 apt-inst/extract.cc:300 +#: apt-inst/extract.cc:155 apt-inst/extract.cc:299 msgid "The diversion path is too long" msgstr "Zbyt długa ścieżka ominięcia" -#: apt-inst/extract.cc:243 +#: apt-inst/extract.cc:242 #, c-format msgid "The directory %s is being replaced by a non-directory" msgstr "Katalog %s został zastąpiony obiektem nie będącym katalogiem" -#: apt-inst/extract.cc:283 +#: apt-inst/extract.cc:282 msgid "Failed to locate node in its hash bucket" msgstr "Nie udało się znaleźć węzła w jego kubełku haszującym" -#: apt-inst/extract.cc:287 +#: apt-inst/extract.cc:286 msgid "The path is too long" msgstr "Ścieżka jest zbyt długa" -#: apt-inst/extract.cc:415 +#: apt-inst/extract.cc:414 #, c-format msgid "Overwrite package match with no version for %s" msgstr "Nadpisujący pakiet nie pasuje z wersją %s" -#: apt-inst/extract.cc:432 +#: apt-inst/extract.cc:431 #, c-format msgid "File %s/%s overwrites the one in the package %s" msgstr "Plik %s/%s nadpisuje plik w pakiecie %s" -#: apt-inst/extract.cc:492 +#: apt-inst/extract.cc:491 #, c-format msgid "Unable to stat %s" msgstr "Nie można wykonać operacji stat na %s" @@ -2681,59 +2681,59 @@ msgstr "Ta wersja APT nie obsługuje systemu wersji \"%s\"" msgid "The package cache was built for a different architecture" msgstr "Ten magazyn podręczny pakietów został zbudowany dla innej architektury" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "Depends" msgstr "Wymaga" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "PreDepends" msgstr "Wymaga wstępnie" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "Suggests" msgstr "Sugeruje" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Recommends" msgstr "Poleca" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Conflicts" msgstr "W konflikcie z" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Replaces" msgstr "Zastępuje" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Obsoletes" msgstr "Dezaktualizuje" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Breaks" msgstr "Narusza zależności" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Enhances" msgstr "Rozszerza" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "important" msgstr "ważny" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "required" msgstr "wymagany" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "standard" msgstr "standardowy" -#: apt-pkg/pkgcache.cc:319 +#: apt-pkg/pkgcache.cc:328 msgid "optional" msgstr "opcjonalny" -#: apt-pkg/pkgcache.cc:319 +#: apt-pkg/pkgcache.cc:328 msgid "extra" msgstr "dodatkowy" @@ -2835,12 +2835,12 @@ msgstr "Otwieranie %s" msgid "Line %u too long in source list %s." msgstr "Linia %u w liście źródeł %s jest zbyt długa." -#: apt-pkg/sourcelist.cc:285 +#: apt-pkg/sourcelist.cc:289 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "Nieprawidłowa linia %u w liście źródeł %s (typ)" -#: apt-pkg/sourcelist.cc:289 +#: apt-pkg/sourcelist.cc:293 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "Typ \"%s\" jest nieznany w linii %u listy źródeł %s" @@ -3007,14 +3007,14 @@ msgstr "Magazyn podręczny ma niezgodny system wersji" #. TRANSLATOR: The first placeholder is a package name, #. the other two should be copied verbatim as they include debug info #: apt-pkg/pkgcachegen.cc:218 apt-pkg/pkgcachegen.cc:228 -#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:325 -#: apt-pkg/pkgcachegen.cc:333 apt-pkg/pkgcachegen.cc:375 -#: apt-pkg/pkgcachegen.cc:379 apt-pkg/pkgcachegen.cc:396 -#: apt-pkg/pkgcachegen.cc:406 apt-pkg/pkgcachegen.cc:410 -#: apt-pkg/pkgcachegen.cc:414 apt-pkg/pkgcachegen.cc:435 -#: apt-pkg/pkgcachegen.cc:477 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:525 apt-pkg/pkgcachegen.cc:556 -#: apt-pkg/pkgcachegen.cc:570 +#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:319 +#: apt-pkg/pkgcachegen.cc:332 apt-pkg/pkgcachegen.cc:374 +#: apt-pkg/pkgcachegen.cc:378 apt-pkg/pkgcachegen.cc:395 +#: apt-pkg/pkgcachegen.cc:403 apt-pkg/pkgcachegen.cc:407 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:432 +#: apt-pkg/pkgcachegen.cc:471 apt-pkg/pkgcachegen.cc:509 +#: apt-pkg/pkgcachegen.cc:516 apt-pkg/pkgcachegen.cc:547 +#: apt-pkg/pkgcachegen.cc:561 #, c-format msgid "Error occurred while processing %s (%s%d)" msgstr "Wystąpił błąd podczas przetwarzania %s (%s%d)" @@ -3035,27 +3035,27 @@ msgstr "Przekroczono liczbę opisów, którą ten APT jest w stanie obsłużyć. msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "Przekroczono liczbę zależności, którą ten APT jest w stanie obsłużyć." -#: apt-pkg/pkgcachegen.cc:577 +#: apt-pkg/pkgcachegen.cc:568 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "" "Pakiet %s %s nie został odnaleziony podczas przetwarzania zależności plików" -#: apt-pkg/pkgcachegen.cc:1150 +#: apt-pkg/pkgcachegen.cc:1197 #, c-format msgid "Couldn't stat source package list %s" msgstr "Nie udało się wykonać operacji stat na liście pakietów źródłowych %s" -#: apt-pkg/pkgcachegen.cc:1238 apt-pkg/pkgcachegen.cc:1342 -#: apt-pkg/pkgcachegen.cc:1348 apt-pkg/pkgcachegen.cc:1505 +#: apt-pkg/pkgcachegen.cc:1285 apt-pkg/pkgcachegen.cc:1389 +#: apt-pkg/pkgcachegen.cc:1395 apt-pkg/pkgcachegen.cc:1552 msgid "Reading package lists" msgstr "Czytanie list pakietów" -#: apt-pkg/pkgcachegen.cc:1255 +#: apt-pkg/pkgcachegen.cc:1302 msgid "Collecting File Provides" msgstr "Zbieranie zapewnień plików" -#: apt-pkg/pkgcachegen.cc:1447 apt-pkg/pkgcachegen.cc:1454 +#: apt-pkg/pkgcachegen.cc:1494 apt-pkg/pkgcachegen.cc:1501 msgid "IO Error saving source cache" msgstr "Błąd wejścia/wyjścia przy zapisywaniu podręcznego magazynu źródeł" @@ -3269,22 +3269,22 @@ 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/indexcopy.cc:236 apt-pkg/indexcopy.cc:766 +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:764 #, c-format msgid "Wrote %i records.\n" msgstr "Zapisano %i rekordów.\n" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:768 +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:766 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "Zapisano %i rekordów z %i brakującymi plikami.\n" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:771 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:769 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "Zapisano %i rekordów z %i niepasującymi plikami\n" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:774 +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:772 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "Zapisano %i rekordów z %i brakującymi plikami i %i niepasującymi\n" diff --git a/po/pt.po b/po/pt.po index 542e1efba..e958ead56 100644 --- a/po/pt.po +++ b/po/pt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-04-03 14:20+0200\n" +"POT-Creation-Date: 2013-04-08 15:40+0200\n" "PO-Revision-Date: 2012-06-29 15:45+0100\n" "Last-Translator: Miguel Figueiredo \n" "Language-Team: Portuguese \n" @@ -158,7 +158,7 @@ msgstr " Tabela de Versão:" #: cmdline/apt-cache.cc:1683 cmdline/apt-cdrom.cc:198 cmdline/apt-config.cc:81 #: cmdline/apt-get.cc:3363 cmdline/apt-mark.cc:375 -#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:590 +#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:591 #: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147 #, c-format msgid "%s %s for %s compiled on %s %s\n" @@ -1625,7 +1625,7 @@ msgstr "Erro interno" #. Only warn if there are no sources.list.d. #. Only warn if there is no sources.list file. -#: methods/mirror.cc:95 apt-inst/extract.cc:465 +#: methods/mirror.cc:95 apt-inst/extract.cc:464 #: apt-pkg/contrib/cdromutl.cc:183 apt-pkg/contrib/fileutl.cc:400 #: apt-pkg/contrib/fileutl.cc:513 apt-pkg/sourcelist.cc:208 #: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:108 @@ -1757,7 +1757,7 @@ msgstr "" " -o=? Definir uma opção arbitrária de configuração, p.e.: -o dir::cache=/" "tmp\n" -#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1339 +#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1386 #, c-format msgid "Unable to write to %s" msgstr "Não conseguiu escrever para %s" @@ -1766,31 +1766,31 @@ msgstr "Não conseguiu escrever para %s" msgid "Cannot get debconf version. Is debconf installed?" msgstr "Não pode obter a versão do debconf. O debconf está instalado?" -#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:348 +#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:349 msgid "Package extension list is too long" msgstr "A lista de extensão de pacotes é demasiado longa" #: ftparchive/apt-ftparchive.cc:173 ftparchive/apt-ftparchive.cc:190 -#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:263 -#: ftparchive/apt-ftparchive.cc:277 ftparchive/apt-ftparchive.cc:299 +#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:264 +#: ftparchive/apt-ftparchive.cc:278 ftparchive/apt-ftparchive.cc:300 #, c-format msgid "Error processing directory %s" msgstr "Erro ao processar o directório %s" -#: ftparchive/apt-ftparchive.cc:261 +#: ftparchive/apt-ftparchive.cc:262 msgid "Source extension list is too long" msgstr "Lista de extensão de códigos-fonte é demasiado longa" -#: ftparchive/apt-ftparchive.cc:378 +#: ftparchive/apt-ftparchive.cc:379 msgid "Error writing header to contents file" msgstr "Erro ao escrever o cabeçalho no ficheiro de conteúdo" -#: ftparchive/apt-ftparchive.cc:408 +#: ftparchive/apt-ftparchive.cc:409 #, c-format msgid "Error processing contents %s" msgstr "Erro ao processar o conteúdo %s" -#: ftparchive/apt-ftparchive.cc:596 +#: ftparchive/apt-ftparchive.cc:597 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -1871,11 +1871,11 @@ msgstr "" " -c=? Ler este ficheiro de configuração\n" " -o=? Definir uma opção de configuração arbitrária" -#: ftparchive/apt-ftparchive.cc:802 +#: ftparchive/apt-ftparchive.cc:803 msgid "No selections matched" msgstr "Nenhuma selecção coincidiu" -#: ftparchive/apt-ftparchive.cc:880 +#: ftparchive/apt-ftparchive.cc:881 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "Faltam alguns ficheiros no grupo `%s' do ficheiro do pacote" @@ -1903,8 +1903,8 @@ msgstr "" msgid "Unable to open DB file %s: %s" msgstr "Não foi possível abrir o ficheiro %s da base de dados: %s" -#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:181 apt-inst/extract.cc:193 -#: apt-inst/extract.cc:210 +#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:179 apt-inst/extract.cc:192 +#: apt-inst/extract.cc:209 #, c-format msgid "Failed to stat %s" msgstr "Falha stat %s" @@ -1982,22 +1982,22 @@ msgstr " Limite DeLink de %sB atingido.\n" msgid "Archive had no package field" msgstr "Arquivo não possuía campo package" -#: ftparchive/writer.cc:411 ftparchive/writer.cc:698 +#: ftparchive/writer.cc:411 ftparchive/writer.cc:701 #, c-format msgid " %s has no override entry\n" msgstr " %s não possui entrada override\n" -#: ftparchive/writer.cc:479 ftparchive/writer.cc:814 +#: ftparchive/writer.cc:479 ftparchive/writer.cc:845 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " o maintainer de %s é %s, não %s\n" -#: ftparchive/writer.cc:708 +#: ftparchive/writer.cc:711 #, c-format msgid " %s has no source override entry\n" msgstr " %s não possui fonte de entrada de 'override'\n" -#: ftparchive/writer.cc:712 +#: ftparchive/writer.cc:715 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s também não possui entrada binária de 'override'\n" @@ -2071,7 +2071,7 @@ msgstr "Falhou ler durante o cálculo de MD5" msgid "Problem unlinking %s" msgstr "Problema ao executar unlinking %s" -#: ftparchive/multicompress.cc:373 apt-inst/extract.cc:188 +#: ftparchive/multicompress.cc:373 apt-inst/extract.cc:187 #, c-format msgid "Failed to rename %s to %s" msgstr "Falhou renomear %s para %s" @@ -2216,54 +2216,54 @@ msgstr "Falhou escrever o ficheiro %s" msgid "Failed to close file %s" msgstr "Falhou fechar o ficheiro %s" -#: apt-inst/extract.cc:96 apt-inst/extract.cc:167 +#: apt-inst/extract.cc:94 apt-inst/extract.cc:165 #, c-format msgid "The path %s is too long" msgstr "O caminho %s é demasiado longo" -#: apt-inst/extract.cc:127 +#: apt-inst/extract.cc:125 #, c-format msgid "Unpacking %s more than once" msgstr "A descompactar %s mais de uma vez" -#: apt-inst/extract.cc:137 +#: apt-inst/extract.cc:135 #, c-format msgid "The directory %s is diverted" msgstr "O directório %s é desviado" -#: apt-inst/extract.cc:147 +#: apt-inst/extract.cc:145 #, c-format msgid "The package is trying to write to the diversion target %s/%s" msgstr "O pacote está a tentar escrever no alvo de desvio %s/%s" -#: apt-inst/extract.cc:157 apt-inst/extract.cc:300 +#: apt-inst/extract.cc:155 apt-inst/extract.cc:299 msgid "The diversion path is too long" msgstr "O caminho de desvio é muito longo" -#: apt-inst/extract.cc:243 +#: apt-inst/extract.cc:242 #, c-format msgid "The directory %s is being replaced by a non-directory" msgstr "O directório %s está a ser substituído por um não-directório" -#: apt-inst/extract.cc:283 +#: apt-inst/extract.cc:282 msgid "Failed to locate node in its hash bucket" msgstr "Falhou localizar o nó no seu hash bucket" -#: apt-inst/extract.cc:287 +#: apt-inst/extract.cc:286 msgid "The path is too long" msgstr "O caminho é demasiado longo" -#: apt-inst/extract.cc:415 +#: apt-inst/extract.cc:414 #, c-format msgid "Overwrite package match with no version for %s" msgstr "Substituir o pacote correspondente sem versão para %s" -#: apt-inst/extract.cc:432 +#: apt-inst/extract.cc:431 #, c-format msgid "File %s/%s overwrites the one in the package %s" msgstr "O ficheiro %s/%s substitui o que está no pacote %s" -#: apt-inst/extract.cc:492 +#: apt-inst/extract.cc:491 #, c-format msgid "Unable to stat %s" msgstr "Não foi possível fazer stat %s" @@ -2658,59 +2658,59 @@ msgstr "Este APT não suporta o sistema de versões '%s'" msgid "The package cache was built for a different architecture" msgstr "A cache de pacotes foi gerada para uma arquitectura diferente" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "Depends" msgstr "Depende" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "PreDepends" msgstr "Pré-Depende" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "Suggests" msgstr "Sugere" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Recommends" msgstr "Recomenda" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Conflicts" msgstr "Em Conflito" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Replaces" msgstr "Substitui" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Obsoletes" msgstr "Obsoleta" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Breaks" msgstr "Estraga" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Enhances" msgstr "Aumenta" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "important" msgstr "importante" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "required" msgstr "necessário" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "standard" msgstr "padrão" -#: apt-pkg/pkgcache.cc:319 +#: apt-pkg/pkgcache.cc:328 msgid "optional" msgstr "opcional" -#: apt-pkg/pkgcache.cc:319 +#: apt-pkg/pkgcache.cc:328 msgid "extra" msgstr "extra" @@ -2813,12 +2813,12 @@ msgstr "A abrir %s" msgid "Line %u too long in source list %s." msgstr "Linha %u é demasiado longa na lista de fontes %s." -#: apt-pkg/sourcelist.cc:285 +#: apt-pkg/sourcelist.cc:289 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "Linha mal formada %u na lista de fontes %s (tipo)" -#: apt-pkg/sourcelist.cc:289 +#: apt-pkg/sourcelist.cc:293 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "O tipo '%s' não é conhecido na linha %u na lista de fontes %s" @@ -2990,14 +2990,14 @@ msgstr "A cache possui um sistema de versões incompatível" #. TRANSLATOR: The first placeholder is a package name, #. the other two should be copied verbatim as they include debug info #: apt-pkg/pkgcachegen.cc:218 apt-pkg/pkgcachegen.cc:228 -#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:325 -#: apt-pkg/pkgcachegen.cc:333 apt-pkg/pkgcachegen.cc:375 -#: apt-pkg/pkgcachegen.cc:379 apt-pkg/pkgcachegen.cc:396 -#: apt-pkg/pkgcachegen.cc:406 apt-pkg/pkgcachegen.cc:410 -#: apt-pkg/pkgcachegen.cc:414 apt-pkg/pkgcachegen.cc:435 -#: apt-pkg/pkgcachegen.cc:477 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:525 apt-pkg/pkgcachegen.cc:556 -#: apt-pkg/pkgcachegen.cc:570 +#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:319 +#: apt-pkg/pkgcachegen.cc:332 apt-pkg/pkgcachegen.cc:374 +#: apt-pkg/pkgcachegen.cc:378 apt-pkg/pkgcachegen.cc:395 +#: apt-pkg/pkgcachegen.cc:403 apt-pkg/pkgcachegen.cc:407 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:432 +#: apt-pkg/pkgcachegen.cc:471 apt-pkg/pkgcachegen.cc:509 +#: apt-pkg/pkgcachegen.cc:516 apt-pkg/pkgcachegen.cc:547 +#: apt-pkg/pkgcachegen.cc:561 #, c-format msgid "Error occurred while processing %s (%s%d)" msgstr "Ocorreu um erro ao processar %s (%s%d)" @@ -3023,27 +3023,27 @@ msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "" "Uau, você excedeu o número de dependências que este APT é capaz de suportar." -#: apt-pkg/pkgcachegen.cc:577 +#: apt-pkg/pkgcachegen.cc:568 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "" "O pacote %s %s não foi encontrado ao processar as dependências de ficheiros" -#: apt-pkg/pkgcachegen.cc:1150 +#: apt-pkg/pkgcachegen.cc:1197 #, c-format msgid "Couldn't stat source package list %s" msgstr "Não foi possível executar stat à lista de pacotes de código fonte %s" -#: apt-pkg/pkgcachegen.cc:1238 apt-pkg/pkgcachegen.cc:1342 -#: apt-pkg/pkgcachegen.cc:1348 apt-pkg/pkgcachegen.cc:1505 +#: apt-pkg/pkgcachegen.cc:1285 apt-pkg/pkgcachegen.cc:1389 +#: apt-pkg/pkgcachegen.cc:1395 apt-pkg/pkgcachegen.cc:1552 msgid "Reading package lists" msgstr "A ler as listas de pacotes" -#: apt-pkg/pkgcachegen.cc:1255 +#: apt-pkg/pkgcachegen.cc:1302 msgid "Collecting File Provides" msgstr "A obter File Provides" -#: apt-pkg/pkgcachegen.cc:1447 apt-pkg/pkgcachegen.cc:1454 +#: apt-pkg/pkgcachegen.cc:1494 apt-pkg/pkgcachegen.cc:1501 msgid "IO Error saving source cache" msgstr "Erro de I/O ao gravar a cache de código fonte" @@ -3262,22 +3262,22 @@ 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/indexcopy.cc:236 apt-pkg/indexcopy.cc:766 +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:764 #, c-format msgid "Wrote %i records.\n" msgstr "Escreveu %i registos.\n" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:768 +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:766 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "Escreveu %i registos com %i ficheiros em falta.\n" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:771 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:769 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "Escreveu %i registos com %i ficheiros não coincidentes\n" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:774 +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:772 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" diff --git a/po/pt_BR.po b/po/pt_BR.po index 86a90305b..922279f9e 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-04-03 14:20+0200\n" +"POT-Creation-Date: 2013-04-08 15:40+0200\n" "PO-Revision-Date: 2008-11-17 02:33-0200\n" "Last-Translator: Felipe Augusto van de Wiel (faw) \n" "Language-Team: Brazilian Portuguese \n" -"POT-Creation-Date: 2013-04-03 14:20+0200\n" +"POT-Creation-Date: 2013-04-08 15:40+0200\n" "PO-Revision-Date: 2008-11-15 02:21+0200\n" "Last-Translator: Eddy Petrișor \n" "Language-Team: Romanian \n" @@ -159,7 +159,7 @@ msgstr " Tabela de versiuni:" #: cmdline/apt-cache.cc:1683 cmdline/apt-cdrom.cc:198 cmdline/apt-config.cc:81 #: cmdline/apt-get.cc:3363 cmdline/apt-mark.cc:375 -#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:590 +#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:591 #: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147 #, c-format msgid "%s %s for %s compiled on %s %s\n" @@ -1600,7 +1600,7 @@ msgstr "Eroare internă" #. Only warn if there are no sources.list.d. #. Only warn if there is no sources.list file. -#: methods/mirror.cc:95 apt-inst/extract.cc:465 +#: methods/mirror.cc:95 apt-inst/extract.cc:464 #: apt-pkg/contrib/cdromutl.cc:183 apt-pkg/contrib/fileutl.cc:400 #: apt-pkg/contrib/fileutl.cc:513 apt-pkg/sourcelist.cc:208 #: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:108 @@ -1726,7 +1726,7 @@ msgstr "" " -c=? Citește acest fișier de configurare\n" " -o=? Ajustează o opțiune de configurare arbitrară, ex. -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1339 +#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1386 #, c-format msgid "Unable to write to %s" msgstr "Nu s-a putut scrie în %s" @@ -1735,31 +1735,31 @@ msgstr "Nu s-a putut scrie în %s" msgid "Cannot get debconf version. Is debconf installed?" msgstr "Nu s-a putut citi versiunea debconf. Este instalat debconf?" -#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:348 +#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:349 msgid "Package extension list is too long" msgstr "Lista de extensii pentru pachet este prea lungă" #: ftparchive/apt-ftparchive.cc:173 ftparchive/apt-ftparchive.cc:190 -#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:263 -#: ftparchive/apt-ftparchive.cc:277 ftparchive/apt-ftparchive.cc:299 +#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:264 +#: ftparchive/apt-ftparchive.cc:278 ftparchive/apt-ftparchive.cc:300 #, c-format msgid "Error processing directory %s" msgstr "Eroare la prelucrarea directorului %s" -#: ftparchive/apt-ftparchive.cc:261 +#: ftparchive/apt-ftparchive.cc:262 msgid "Source extension list is too long" msgstr "Lista de extensii pentru sursă este prea lungă" -#: ftparchive/apt-ftparchive.cc:378 +#: ftparchive/apt-ftparchive.cc:379 msgid "Error writing header to contents file" msgstr "Eroare la scrierea antetului în fișierul index" -#: ftparchive/apt-ftparchive.cc:408 +#: ftparchive/apt-ftparchive.cc:409 #, c-format msgid "Error processing contents %s" msgstr "Eroare la prelucrarea conținutului %s" -#: ftparchive/apt-ftparchive.cc:596 +#: ftparchive/apt-ftparchive.cc:597 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -1847,11 +1847,11 @@ msgstr "" " -c=? Citește acest fișier de configurare\n" " -o=? Ajustează o opțiune de configurare arbitrară" -#: ftparchive/apt-ftparchive.cc:802 +#: ftparchive/apt-ftparchive.cc:803 msgid "No selections matched" msgstr "Nu s-a potrivit nici o selecție" -#: ftparchive/apt-ftparchive.cc:880 +#: ftparchive/apt-ftparchive.cc:881 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "Unele fișiere lipsesc din grupul fișierului pachet '%s'" @@ -1880,8 +1880,8 @@ msgstr "" msgid "Unable to open DB file %s: %s" msgstr "Nu s-a putut deschide fișierul DB %s: %s" -#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:181 apt-inst/extract.cc:193 -#: apt-inst/extract.cc:210 +#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:179 apt-inst/extract.cc:192 +#: apt-inst/extract.cc:209 #, c-format msgid "Failed to stat %s" msgstr "Eșec la „stat” pentru %s" @@ -1959,22 +1959,22 @@ msgstr " Limita de %sB a dezlegării a fost atinsă.\n" msgid "Archive had no package field" msgstr "Arhiva nu are câmp de pachet" -#: ftparchive/writer.cc:411 ftparchive/writer.cc:698 +#: ftparchive/writer.cc:411 ftparchive/writer.cc:701 #, c-format msgid " %s has no override entry\n" msgstr " %s nu are intrare de înlocuire\n" -#: ftparchive/writer.cc:479 ftparchive/writer.cc:814 +#: ftparchive/writer.cc:479 ftparchive/writer.cc:845 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " %s responsabil este %s nu %s\n" -#: ftparchive/writer.cc:708 +#: ftparchive/writer.cc:711 #, c-format msgid " %s has no source override entry\n" msgstr " %s nu are nici o intrare sursă de înlocuire\n" -#: ftparchive/writer.cc:712 +#: ftparchive/writer.cc:715 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s nu are nici intrare binară de înlocuire\n" @@ -2048,7 +2048,7 @@ msgstr "Eșec la citire în timpul calculului sumei MD5" msgid "Problem unlinking %s" msgstr "Problemă la desfacerea %s" -#: ftparchive/multicompress.cc:373 apt-inst/extract.cc:188 +#: ftparchive/multicompress.cc:373 apt-inst/extract.cc:187 #, c-format msgid "Failed to rename %s to %s" msgstr "Eșec la redenumirea lui %s în %s" @@ -2196,55 +2196,55 @@ msgstr "Eșec la scrierea fișierului %s" msgid "Failed to close file %s" msgstr "Eșec la închiderea fișierului %s" -#: apt-inst/extract.cc:96 apt-inst/extract.cc:167 +#: apt-inst/extract.cc:94 apt-inst/extract.cc:165 #, c-format msgid "The path %s is too long" msgstr "Calea %s este prea lungă" -#: apt-inst/extract.cc:127 +#: apt-inst/extract.cc:125 #, c-format msgid "Unpacking %s more than once" msgstr "Se despachetează %s de mai multe ori" -#: apt-inst/extract.cc:137 +#: apt-inst/extract.cc:135 #, c-format msgid "The directory %s is diverted" msgstr "Directorul %s este redirectat" -#: apt-inst/extract.cc:147 +#: apt-inst/extract.cc:145 #, c-format msgid "The package is trying to write to the diversion target %s/%s" msgstr "Pachetul încearcă să scrie în ținta redirectării %s/%s" -#: apt-inst/extract.cc:157 apt-inst/extract.cc:300 +#: apt-inst/extract.cc:155 apt-inst/extract.cc:299 msgid "The diversion path is too long" msgstr "Calea de redirectare este prea lungă" -#: apt-inst/extract.cc:243 +#: apt-inst/extract.cc:242 #, c-format msgid "The directory %s is being replaced by a non-directory" msgstr "Directorul %s este înlocuit de un non-director" # XXX: nu-mi place, hash bucket ar trebui tradus mai elegant -#: apt-inst/extract.cc:283 +#: apt-inst/extract.cc:282 msgid "Failed to locate node in its hash bucket" msgstr "Eșec la localizarea nodului în clasa lui din tabela de dispersie" -#: apt-inst/extract.cc:287 +#: apt-inst/extract.cc:286 msgid "The path is too long" msgstr "Calea este prea lungă" -#: apt-inst/extract.cc:415 +#: apt-inst/extract.cc:414 #, c-format msgid "Overwrite package match with no version for %s" msgstr "Pachet suprascris fără nici o versiune pentru %s" -#: apt-inst/extract.cc:432 +#: apt-inst/extract.cc:431 #, c-format msgid "File %s/%s overwrites the one in the package %s" msgstr "Fișierul %s/%s îl suprascrie pe cel din pachetul %s" -#: apt-inst/extract.cc:492 +#: apt-inst/extract.cc:491 #, c-format msgid "Unable to stat %s" msgstr "Nu se poate executa „stat” pe %s" @@ -2630,59 +2630,59 @@ msgstr "Acest APT nu suportă versioning system '%s'" msgid "The package cache was built for a different architecture" msgstr "Cache-ul pachetului a fost construit pentru o arhitectură diferită" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "Depends" msgstr "Depinde" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "PreDepends" msgstr "Pre-depinde" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "Suggests" msgstr "Sugerează" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Recommends" msgstr "Recomandă" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Conflicts" msgstr "Este în conflict" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Replaces" msgstr "Înlocuiește" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Obsoletes" msgstr "Învechit" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Breaks" msgstr "Corupe" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Enhances" msgstr "" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "important" msgstr "important" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "required" msgstr "cerut" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "standard" msgstr "standard" -#: apt-pkg/pkgcache.cc:319 +#: apt-pkg/pkgcache.cc:328 msgid "optional" msgstr "opțional" -#: apt-pkg/pkgcache.cc:319 +#: apt-pkg/pkgcache.cc:328 msgid "extra" msgstr "extra" @@ -2782,12 +2782,12 @@ msgstr "Deschidere %s" msgid "Line %u too long in source list %s." msgstr "Linia %u prea lungă în lista sursă %s." -#: apt-pkg/sourcelist.cc:285 +#: apt-pkg/sourcelist.cc:289 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "Linie greșită %u în lista sursă %s (tip)" -#: apt-pkg/sourcelist.cc:289 +#: apt-pkg/sourcelist.cc:293 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "Tipul '%s' nu este cunoscut în linia %u din lista sursă %s" @@ -2953,14 +2953,14 @@ msgstr "Cache are un versioning system incompatibil" #. TRANSLATOR: The first placeholder is a package name, #. the other two should be copied verbatim as they include debug info #: apt-pkg/pkgcachegen.cc:218 apt-pkg/pkgcachegen.cc:228 -#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:325 -#: apt-pkg/pkgcachegen.cc:333 apt-pkg/pkgcachegen.cc:375 -#: apt-pkg/pkgcachegen.cc:379 apt-pkg/pkgcachegen.cc:396 -#: apt-pkg/pkgcachegen.cc:406 apt-pkg/pkgcachegen.cc:410 -#: apt-pkg/pkgcachegen.cc:414 apt-pkg/pkgcachegen.cc:435 -#: apt-pkg/pkgcachegen.cc:477 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:525 apt-pkg/pkgcachegen.cc:556 -#: apt-pkg/pkgcachegen.cc:570 +#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:319 +#: apt-pkg/pkgcachegen.cc:332 apt-pkg/pkgcachegen.cc:374 +#: apt-pkg/pkgcachegen.cc:378 apt-pkg/pkgcachegen.cc:395 +#: apt-pkg/pkgcachegen.cc:403 apt-pkg/pkgcachegen.cc:407 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:432 +#: apt-pkg/pkgcachegen.cc:471 apt-pkg/pkgcachegen.cc:509 +#: apt-pkg/pkgcachegen.cc:516 apt-pkg/pkgcachegen.cc:547 +#: apt-pkg/pkgcachegen.cc:561 #, fuzzy, c-format msgid "Error occurred while processing %s (%s%d)" msgstr "Eroare apărută în timpul procesării %s (FindPkg)" @@ -2986,27 +2986,27 @@ msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "" "Mamăăă, ați depășit numărul de dependențe de care este capabil acest APT." -#: apt-pkg/pkgcachegen.cc:577 +#: apt-pkg/pkgcachegen.cc:568 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "" "Nu s-a găsit pachetul %s %s în timpul procesării dependențelor de fișiere" -#: apt-pkg/pkgcachegen.cc:1150 +#: apt-pkg/pkgcachegen.cc:1197 #, c-format msgid "Couldn't stat source package list %s" msgstr "Nu pot determina starea listei surse de pachete %s" -#: apt-pkg/pkgcachegen.cc:1238 apt-pkg/pkgcachegen.cc:1342 -#: apt-pkg/pkgcachegen.cc:1348 apt-pkg/pkgcachegen.cc:1505 +#: apt-pkg/pkgcachegen.cc:1285 apt-pkg/pkgcachegen.cc:1389 +#: apt-pkg/pkgcachegen.cc:1395 apt-pkg/pkgcachegen.cc:1552 msgid "Reading package lists" msgstr "Citire liste de pachete" -#: apt-pkg/pkgcachegen.cc:1255 +#: apt-pkg/pkgcachegen.cc:1302 msgid "Collecting File Provides" msgstr "Colectare furnizori fișier" -#: apt-pkg/pkgcachegen.cc:1447 apt-pkg/pkgcachegen.cc:1454 +#: apt-pkg/pkgcachegen.cc:1494 apt-pkg/pkgcachegen.cc:1501 msgid "IO Error saving source cache" msgstr "Eroare IO în timpul salvării sursei cache" @@ -3216,22 +3216,22 @@ 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/indexcopy.cc:236 apt-pkg/indexcopy.cc:766 +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:764 #, c-format msgid "Wrote %i records.\n" msgstr "S-au scris %i înregistrări.\n" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:768 +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:766 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "S-au scris %i înregistrări cu %i fișiere lipsă.\n" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:771 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:769 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "S-au scris %i înregistrări cu %i fișiere nepotrivite\n" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:774 +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:772 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" diff --git a/po/ru.po b/po/ru.po index c33fb9844..01dd870f7 100644 --- a/po/ru.po +++ b/po/ru.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: apt rev2227.1.3\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-04-03 14:20+0200\n" +"POT-Creation-Date: 2013-04-08 15:40+0200\n" "PO-Revision-Date: 2012-06-30 08:47+0400\n" "Last-Translator: Yuri Kozlov \n" "Language-Team: Russian \n" @@ -163,7 +163,7 @@ msgstr " Таблица версий:" #: cmdline/apt-cache.cc:1683 cmdline/apt-cdrom.cc:198 cmdline/apt-config.cc:81 #: cmdline/apt-get.cc:3363 cmdline/apt-mark.cc:375 -#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:590 +#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:591 #: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147 #, c-format msgid "%s %s for %s compiled on %s %s\n" @@ -1645,7 +1645,7 @@ msgstr "Внутренняя ошибка" #. Only warn if there are no sources.list.d. #. Only warn if there is no sources.list file. -#: methods/mirror.cc:95 apt-inst/extract.cc:465 +#: methods/mirror.cc:95 apt-inst/extract.cc:464 #: apt-pkg/contrib/cdromutl.cc:183 apt-pkg/contrib/fileutl.cc:400 #: apt-pkg/contrib/fileutl.cc:513 apt-pkg/sourcelist.cc:208 #: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:108 @@ -1773,7 +1773,7 @@ msgstr "" " -c=? Читать указанный файл настройки\n" " -o=? Задать значение произвольной настройке, например, -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1339 +#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1386 #, c-format msgid "Unable to write to %s" msgstr "Невозможно записать в %s" @@ -1782,32 +1782,32 @@ msgstr "Невозможно записать в %s" msgid "Cannot get debconf version. Is debconf installed?" msgstr "Невозможно определить версию debconf. Он установлен?" -#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:348 +#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:349 msgid "Package extension list is too long" msgstr "Список расширений, допустимых для пакетов, слишком длинен" #: ftparchive/apt-ftparchive.cc:173 ftparchive/apt-ftparchive.cc:190 -#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:263 -#: ftparchive/apt-ftparchive.cc:277 ftparchive/apt-ftparchive.cc:299 +#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:264 +#: ftparchive/apt-ftparchive.cc:278 ftparchive/apt-ftparchive.cc:300 #, c-format msgid "Error processing directory %s" msgstr "Ошибка обработки каталога %s" -#: ftparchive/apt-ftparchive.cc:261 +#: ftparchive/apt-ftparchive.cc:262 msgid "Source extension list is too long" msgstr "Список расширений источников слишком длинен" -#: ftparchive/apt-ftparchive.cc:378 +#: ftparchive/apt-ftparchive.cc:379 msgid "Error writing header to contents file" msgstr "" "Ошибка записи заголовка в полный перечень содержимого пакетов (Contents)" -#: ftparchive/apt-ftparchive.cc:408 +#: ftparchive/apt-ftparchive.cc:409 #, c-format msgid "Error processing contents %s" msgstr "ошибка обработки полного перечня содержимого пакетов (Contents) %s" -#: ftparchive/apt-ftparchive.cc:596 +#: ftparchive/apt-ftparchive.cc:597 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -1893,11 +1893,11 @@ msgstr "" " -c=? Использовать указанный файл настройки\n" " -o=? Задать значение произвольному параметру настройки" -#: ftparchive/apt-ftparchive.cc:802 +#: ftparchive/apt-ftparchive.cc:803 msgid "No selections matched" msgstr "Совпадений не обнаружено" -#: ftparchive/apt-ftparchive.cc:880 +#: ftparchive/apt-ftparchive.cc:881 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "В группе пакетов «%s» отсутствуют некоторые файлы" @@ -1925,8 +1925,8 @@ msgstr "" msgid "Unable to open DB file %s: %s" msgstr "Не удалось открыть DB файл %s: %s" -#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:181 apt-inst/extract.cc:193 -#: apt-inst/extract.cc:210 +#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:179 apt-inst/extract.cc:192 +#: apt-inst/extract.cc:209 #, c-format msgid "Failed to stat %s" msgstr "Не удалось получить атрибуты %s" @@ -2004,22 +2004,22 @@ msgstr " Превышен лимит в %sB в DeLink.\n" msgid "Archive had no package field" msgstr "В архиве нет поля package" -#: ftparchive/writer.cc:411 ftparchive/writer.cc:698 +#: ftparchive/writer.cc:411 ftparchive/writer.cc:701 #, c-format msgid " %s has no override entry\n" msgstr " Нет записи о переназначении (override) для %s\n" -#: ftparchive/writer.cc:479 ftparchive/writer.cc:814 +#: ftparchive/writer.cc:479 ftparchive/writer.cc:845 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " пакет %s сопровождает %s, а не %s\n" -#: ftparchive/writer.cc:708 +#: ftparchive/writer.cc:711 #, c-format msgid " %s has no source override entry\n" msgstr " Нет записи source override для %s\n" -#: ftparchive/writer.cc:712 +#: ftparchive/writer.cc:715 #, c-format msgid " %s has no binary override entry either\n" msgstr " Нет записи binary override для %s\n" @@ -2094,7 +2094,7 @@ msgstr "Ошибка чтения во время вычисления MD5" msgid "Problem unlinking %s" msgstr "Не удалось удалить %s" -#: ftparchive/multicompress.cc:373 apt-inst/extract.cc:188 +#: ftparchive/multicompress.cc:373 apt-inst/extract.cc:187 #, c-format msgid "Failed to rename %s to %s" msgstr "Не удалось переименовать %s в %s" @@ -2239,54 +2239,54 @@ msgstr "Не удалось записать в файл %s" msgid "Failed to close file %s" msgstr "Не удалось закрыть файл %s" -#: apt-inst/extract.cc:96 apt-inst/extract.cc:167 +#: apt-inst/extract.cc:94 apt-inst/extract.cc:165 #, c-format msgid "The path %s is too long" msgstr "Слишком длинный путь %s" -#: apt-inst/extract.cc:127 +#: apt-inst/extract.cc:125 #, c-format msgid "Unpacking %s more than once" msgstr "Повторная распаковка %s" -#: apt-inst/extract.cc:137 +#: apt-inst/extract.cc:135 #, c-format msgid "The directory %s is diverted" msgstr "Каталог %s входит в список diverted" -#: apt-inst/extract.cc:147 +#: apt-inst/extract.cc:145 #, c-format msgid "The package is trying to write to the diversion target %s/%s" msgstr "Пакет пытается писать в diversion %s/%s" -#: apt-inst/extract.cc:157 apt-inst/extract.cc:300 +#: apt-inst/extract.cc:155 apt-inst/extract.cc:299 msgid "The diversion path is too long" msgstr "Путь diversion слишком длинен" -#: apt-inst/extract.cc:243 +#: apt-inst/extract.cc:242 #, c-format msgid "The directory %s is being replaced by a non-directory" msgstr "Каталог %s был заменён не-каталогом" -#: apt-inst/extract.cc:283 +#: apt-inst/extract.cc:282 msgid "Failed to locate node in its hash bucket" msgstr "Не удалось разместить узел в хеше" -#: apt-inst/extract.cc:287 +#: apt-inst/extract.cc:286 msgid "The path is too long" msgstr "Путь слишком длинен" -#: apt-inst/extract.cc:415 +#: apt-inst/extract.cc:414 #, c-format msgid "Overwrite package match with no version for %s" msgstr "Файлы заменяются содержимым пакета %s без версии" -#: apt-inst/extract.cc:432 +#: apt-inst/extract.cc:431 #, c-format msgid "File %s/%s overwrites the one in the package %s" msgstr "Файл %s/%s переписывает файл в пакете %s" -#: apt-inst/extract.cc:492 +#: apt-inst/extract.cc:491 #, c-format msgid "Unable to stat %s" msgstr "Невозможно получить атрибуты %s" @@ -2682,59 +2682,59 @@ msgstr "Эта версия APT не поддерживает систему в msgid "The package cache was built for a different architecture" msgstr "Кэш пакетов был собран для другой архитектуры" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "Depends" msgstr "Зависит" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "PreDepends" msgstr "ПредЗависит" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "Suggests" msgstr "Предлагает" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Recommends" msgstr "Рекомендует" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Conflicts" msgstr "Конфликтует" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Replaces" msgstr "Заменяет" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Obsoletes" msgstr "Замещает" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Breaks" msgstr "Ломает" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Enhances" msgstr "Улучшает" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "important" msgstr "важный" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "required" msgstr "необходимый" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "standard" msgstr "стандартный" -#: apt-pkg/pkgcache.cc:319 +#: apt-pkg/pkgcache.cc:328 msgid "optional" msgstr "необязательный" -#: apt-pkg/pkgcache.cc:319 +#: apt-pkg/pkgcache.cc:328 msgid "extra" msgstr "дополнительный" @@ -2838,12 +2838,12 @@ msgstr "Открытие %s" msgid "Line %u too long in source list %s." msgstr "Строка %u в списке источников %s слишком длинна." -#: apt-pkg/sourcelist.cc:285 +#: apt-pkg/sourcelist.cc:289 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "Искажённая строка %u в списке источников %s (тип)" -#: apt-pkg/sourcelist.cc:289 +#: apt-pkg/sourcelist.cc:293 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "Неизвестный тип «%s» в строке %u в списке источников %s" @@ -3009,14 +3009,14 @@ msgstr "Кэш имеет несовместимую систему версий #. TRANSLATOR: The first placeholder is a package name, #. the other two should be copied verbatim as they include debug info #: apt-pkg/pkgcachegen.cc:218 apt-pkg/pkgcachegen.cc:228 -#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:325 -#: apt-pkg/pkgcachegen.cc:333 apt-pkg/pkgcachegen.cc:375 -#: apt-pkg/pkgcachegen.cc:379 apt-pkg/pkgcachegen.cc:396 -#: apt-pkg/pkgcachegen.cc:406 apt-pkg/pkgcachegen.cc:410 -#: apt-pkg/pkgcachegen.cc:414 apt-pkg/pkgcachegen.cc:435 -#: apt-pkg/pkgcachegen.cc:477 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:525 apt-pkg/pkgcachegen.cc:556 -#: apt-pkg/pkgcachegen.cc:570 +#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:319 +#: apt-pkg/pkgcachegen.cc:332 apt-pkg/pkgcachegen.cc:374 +#: apt-pkg/pkgcachegen.cc:378 apt-pkg/pkgcachegen.cc:395 +#: apt-pkg/pkgcachegen.cc:403 apt-pkg/pkgcachegen.cc:407 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:432 +#: apt-pkg/pkgcachegen.cc:471 apt-pkg/pkgcachegen.cc:509 +#: apt-pkg/pkgcachegen.cc:516 apt-pkg/pkgcachegen.cc:547 +#: apt-pkg/pkgcachegen.cc:561 #, c-format msgid "Error occurred while processing %s (%s%d)" msgstr "Произошла ошибка во время обработки %s (%s%d)" @@ -3043,26 +3043,26 @@ msgstr "" "Превышено допустимое количество зависимостей, которое способен обработать " "APT." -#: apt-pkg/pkgcachegen.cc:577 +#: apt-pkg/pkgcachegen.cc:568 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "Во время обработки файла зависимостей не найден пакет %s %s" -#: apt-pkg/pkgcachegen.cc:1150 +#: apt-pkg/pkgcachegen.cc:1197 #, c-format msgid "Couldn't stat source package list %s" msgstr "Не удалось получить атрибуты списка пакетов исходного кода %s" -#: apt-pkg/pkgcachegen.cc:1238 apt-pkg/pkgcachegen.cc:1342 -#: apt-pkg/pkgcachegen.cc:1348 apt-pkg/pkgcachegen.cc:1505 +#: apt-pkg/pkgcachegen.cc:1285 apt-pkg/pkgcachegen.cc:1389 +#: apt-pkg/pkgcachegen.cc:1395 apt-pkg/pkgcachegen.cc:1552 msgid "Reading package lists" msgstr "Чтение списков пакетов" -#: apt-pkg/pkgcachegen.cc:1255 +#: apt-pkg/pkgcachegen.cc:1302 msgid "Collecting File Provides" msgstr "Сбор информации о Provides" -#: apt-pkg/pkgcachegen.cc:1447 apt-pkg/pkgcachegen.cc:1454 +#: apt-pkg/pkgcachegen.cc:1494 apt-pkg/pkgcachegen.cc:1501 msgid "IO Error saving source cache" msgstr "Ошибка ввода/вывода при попытке сохранить кэш источников" @@ -3275,22 +3275,22 @@ msgstr "Запись нового списка источников\n" msgid "Source list entries for this disc are:\n" msgstr "Записи в списке источников для этого диска:\n" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:766 +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:764 #, c-format msgid "Wrote %i records.\n" msgstr "Сохранено %i записей.\n" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:768 +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:766 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "Сохранено %i записей с %i отсутствующими файлами.\n" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:771 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:769 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "Сохранено %i записей с %i несовпадающими файлами\n" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:774 +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:772 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" diff --git a/po/sk.po b/po/sk.po index 883ad8b2f..033dd8f40 100644 --- a/po/sk.po +++ b/po/sk.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-04-03 14:20+0200\n" +"POT-Creation-Date: 2013-04-08 15:40+0200\n" "PO-Revision-Date: 2012-06-28 20:49+0100\n" "Last-Translator: Ivan Masár \n" "Language-Team: Slovak \n" @@ -159,7 +159,7 @@ msgstr " Tabuľka verzií:" #: cmdline/apt-cache.cc:1683 cmdline/apt-cdrom.cc:198 cmdline/apt-config.cc:81 #: cmdline/apt-get.cc:3363 cmdline/apt-mark.cc:375 -#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:590 +#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:591 #: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147 #, c-format msgid "%s %s for %s compiled on %s %s\n" @@ -1618,7 +1618,7 @@ msgstr "Vnútorná chyba" #. Only warn if there are no sources.list.d. #. Only warn if there is no sources.list file. -#: methods/mirror.cc:95 apt-inst/extract.cc:465 +#: methods/mirror.cc:95 apt-inst/extract.cc:464 #: apt-pkg/contrib/cdromutl.cc:183 apt-pkg/contrib/fileutl.cc:400 #: apt-pkg/contrib/fileutl.cc:513 apt-pkg/sourcelist.cc:208 #: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:108 @@ -1745,7 +1745,7 @@ msgstr "" " -c=? Načíta tento konfiguračný súbor\n" " -o=? Nastaví ľubovoľnú voľbu, napr. -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1339 +#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1386 #, c-format msgid "Unable to write to %s" msgstr "Do %s sa nedá zapisovať" @@ -1754,31 +1754,31 @@ msgstr "Do %s sa nedá zapisovať" msgid "Cannot get debconf version. Is debconf installed?" msgstr "Nedá sa určiť verzia programu debconf. Je debconf nainštalovaný?" -#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:348 +#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:349 msgid "Package extension list is too long" msgstr "Zoznam rozšírení balíka je príliš dlhý" #: ftparchive/apt-ftparchive.cc:173 ftparchive/apt-ftparchive.cc:190 -#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:263 -#: ftparchive/apt-ftparchive.cc:277 ftparchive/apt-ftparchive.cc:299 +#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:264 +#: ftparchive/apt-ftparchive.cc:278 ftparchive/apt-ftparchive.cc:300 #, c-format msgid "Error processing directory %s" msgstr "Chyba pri spracovávaní adresára %s" -#: ftparchive/apt-ftparchive.cc:261 +#: ftparchive/apt-ftparchive.cc:262 msgid "Source extension list is too long" msgstr "Zoznam zdrojových rozšírení je príliš dlhý" -#: ftparchive/apt-ftparchive.cc:378 +#: ftparchive/apt-ftparchive.cc:379 msgid "Error writing header to contents file" msgstr "Chyba pri zapisovaní hlavičky do súboru" -#: ftparchive/apt-ftparchive.cc:408 +#: ftparchive/apt-ftparchive.cc:409 #, c-format msgid "Error processing contents %s" msgstr "Chyba pri spracovávaní obsahu %s" -#: ftparchive/apt-ftparchive.cc:596 +#: ftparchive/apt-ftparchive.cc:597 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -1858,11 +1858,11 @@ msgstr "" " -c=? Načíta tento konfiguračný súbor\n" " -o=? Nastaví ľubovoľnú voľbu" -#: ftparchive/apt-ftparchive.cc:802 +#: ftparchive/apt-ftparchive.cc:803 msgid "No selections matched" msgstr "Nevyhovel žiaden výber" -#: ftparchive/apt-ftparchive.cc:880 +#: ftparchive/apt-ftparchive.cc:881 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "V súbore balíka skupiny „%s“ chýbajú niektoré súbory" @@ -1890,8 +1890,8 @@ msgstr "" msgid "Unable to open DB file %s: %s" msgstr "Nedá sa otvoriť DB súbor %s: %s" -#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:181 apt-inst/extract.cc:193 -#: apt-inst/extract.cc:210 +#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:179 apt-inst/extract.cc:192 +#: apt-inst/extract.cc:209 #, c-format msgid "Failed to stat %s" msgstr "%s sa nedá vyhodnotiť" @@ -1969,22 +1969,22 @@ msgstr " Bol dosiahnutý odlinkovací limit %sB.\n" msgid "Archive had no package field" msgstr "Archív neobsahuje pole „package“" -#: ftparchive/writer.cc:411 ftparchive/writer.cc:698 +#: ftparchive/writer.cc:411 ftparchive/writer.cc:701 #, c-format msgid " %s has no override entry\n" msgstr " %s nemá žiadnu položku override\n" -#: ftparchive/writer.cc:479 ftparchive/writer.cc:814 +#: ftparchive/writer.cc:479 ftparchive/writer.cc:845 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " správcom %s je %s, nie %s\n" -#: ftparchive/writer.cc:708 +#: ftparchive/writer.cc:711 #, c-format msgid " %s has no source override entry\n" msgstr " %s nemá žiadnu položku „source override“\n" -#: ftparchive/writer.cc:712 +#: ftparchive/writer.cc:715 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s nemá žiadnu položku „binary override“\n" @@ -2058,7 +2058,7 @@ msgstr "Chyba čítania pri výpočte MD5" msgid "Problem unlinking %s" msgstr "Problém s odlinkovaním %s" -#: ftparchive/multicompress.cc:373 apt-inst/extract.cc:188 +#: ftparchive/multicompress.cc:373 apt-inst/extract.cc:187 #, c-format msgid "Failed to rename %s to %s" msgstr "Premenovanie %s na %s zlyhalo" @@ -2202,54 +2202,54 @@ msgstr "Zápis súboru %s zlyhal" msgid "Failed to close file %s" msgstr "Zatvorenie súboru %s zlyhalo" -#: apt-inst/extract.cc:96 apt-inst/extract.cc:167 +#: apt-inst/extract.cc:94 apt-inst/extract.cc:165 #, c-format msgid "The path %s is too long" msgstr "Cesta %s je príliš dlhá" -#: apt-inst/extract.cc:127 +#: apt-inst/extract.cc:125 #, c-format msgid "Unpacking %s more than once" msgstr "%s sa rozbaľuje viackrát" -#: apt-inst/extract.cc:137 +#: apt-inst/extract.cc:135 #, c-format msgid "The directory %s is diverted" msgstr "Adresár %s je divertovaný" -#: apt-inst/extract.cc:147 +#: apt-inst/extract.cc:145 #, c-format msgid "The package is trying to write to the diversion target %s/%s" msgstr "Balík sa pokúša zapisovať do diverzného cieľa %s/%s" -#: apt-inst/extract.cc:157 apt-inst/extract.cc:300 +#: apt-inst/extract.cc:155 apt-inst/extract.cc:299 msgid "The diversion path is too long" msgstr "Diverzná cesta je príliš dlhá" -#: apt-inst/extract.cc:243 +#: apt-inst/extract.cc:242 #, c-format msgid "The directory %s is being replaced by a non-directory" msgstr "Adresár %s sa nahradí neadresárom" -#: apt-inst/extract.cc:283 +#: apt-inst/extract.cc:282 msgid "Failed to locate node in its hash bucket" msgstr "Nedá sa nájsť uzol na adrese jeho hašu" -#: apt-inst/extract.cc:287 +#: apt-inst/extract.cc:286 msgid "The path is too long" msgstr "Cesta je príliš dlhá" -#: apt-inst/extract.cc:415 +#: apt-inst/extract.cc:414 #, c-format msgid "Overwrite package match with no version for %s" msgstr "Prepísať zodpovedajúci balík bez udania verzie pre %s" -#: apt-inst/extract.cc:432 +#: apt-inst/extract.cc:431 #, c-format msgid "File %s/%s overwrites the one in the package %s" msgstr "Súbor %s/%s prepisuje ten z balíka %s" -#: apt-inst/extract.cc:492 +#: apt-inst/extract.cc:491 #, c-format msgid "Unable to stat %s" msgstr "Nedá sa vyhodnotiť %s" @@ -2635,59 +2635,59 @@ msgstr "Tento APT nepodporuje systém na správu verzií „%s“" msgid "The package cache was built for a different architecture" msgstr "Súbor vyrovnávacej pamäti balíkov bol vytvorený pre inú architektúru" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "Depends" msgstr "Závisí na" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "PreDepends" msgstr "Predzávisí na" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "Suggests" msgstr "Navrhuje" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Recommends" msgstr "Odporúča" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Conflicts" msgstr "Koliduje s" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Replaces" msgstr "Nahrádza" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Obsoletes" msgstr "Zneplatňuje" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Breaks" msgstr "Kazí" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Enhances" msgstr "Rozširuje" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "important" msgstr "dôležitý" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "required" msgstr "požadovaný" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "standard" msgstr "štandardný" -#: apt-pkg/pkgcache.cc:319 +#: apt-pkg/pkgcache.cc:328 msgid "optional" msgstr "voliteľný" -#: apt-pkg/pkgcache.cc:319 +#: apt-pkg/pkgcache.cc:328 msgid "extra" msgstr "extra" @@ -2788,12 +2788,12 @@ msgstr "Otvára sa %s" msgid "Line %u too long in source list %s." msgstr "Riadok %u v zozname zdrojov %s je príliš dlhý." -#: apt-pkg/sourcelist.cc:285 +#: apt-pkg/sourcelist.cc:289 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "Skomolený riadok %u v zozname zdrojov %s (typ)" -#: apt-pkg/sourcelist.cc:289 +#: apt-pkg/sourcelist.cc:293 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "Typ „%s“ je neznámy na riadku %u v zozname zdrojov %s" @@ -2956,14 +2956,14 @@ msgstr "Vyrovnávacia pamäť má nezlučiteľný systém na správu verzií" #. TRANSLATOR: The first placeholder is a package name, #. the other two should be copied verbatim as they include debug info #: apt-pkg/pkgcachegen.cc:218 apt-pkg/pkgcachegen.cc:228 -#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:325 -#: apt-pkg/pkgcachegen.cc:333 apt-pkg/pkgcachegen.cc:375 -#: apt-pkg/pkgcachegen.cc:379 apt-pkg/pkgcachegen.cc:396 -#: apt-pkg/pkgcachegen.cc:406 apt-pkg/pkgcachegen.cc:410 -#: apt-pkg/pkgcachegen.cc:414 apt-pkg/pkgcachegen.cc:435 -#: apt-pkg/pkgcachegen.cc:477 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:525 apt-pkg/pkgcachegen.cc:556 -#: apt-pkg/pkgcachegen.cc:570 +#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:319 +#: apt-pkg/pkgcachegen.cc:332 apt-pkg/pkgcachegen.cc:374 +#: apt-pkg/pkgcachegen.cc:378 apt-pkg/pkgcachegen.cc:395 +#: apt-pkg/pkgcachegen.cc:403 apt-pkg/pkgcachegen.cc:407 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:432 +#: apt-pkg/pkgcachegen.cc:471 apt-pkg/pkgcachegen.cc:509 +#: apt-pkg/pkgcachegen.cc:516 apt-pkg/pkgcachegen.cc:547 +#: apt-pkg/pkgcachegen.cc:561 #, c-format msgid "Error occurred while processing %s (%s%d)" msgstr "Vyskytla sa chyba pri spracovávaní %s (%s%d)" @@ -2986,26 +2986,26 @@ msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "" "Fíha, prekročili ste počet závislostí, ktoré toto APT zvládne spracovať." -#: apt-pkg/pkgcachegen.cc:577 +#: apt-pkg/pkgcachegen.cc:568 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "Pri spracovaní závislostí nebol nájdený balík %s %s" -#: apt-pkg/pkgcachegen.cc:1150 +#: apt-pkg/pkgcachegen.cc:1197 #, c-format msgid "Couldn't stat source package list %s" msgstr "Nedá sa vyhodnotiť zoznam zdrojových balíkov %s" -#: apt-pkg/pkgcachegen.cc:1238 apt-pkg/pkgcachegen.cc:1342 -#: apt-pkg/pkgcachegen.cc:1348 apt-pkg/pkgcachegen.cc:1505 +#: apt-pkg/pkgcachegen.cc:1285 apt-pkg/pkgcachegen.cc:1389 +#: apt-pkg/pkgcachegen.cc:1395 apt-pkg/pkgcachegen.cc:1552 msgid "Reading package lists" msgstr "Načítavajú sa zoznamy balíkov" -#: apt-pkg/pkgcachegen.cc:1255 +#: apt-pkg/pkgcachegen.cc:1302 msgid "Collecting File Provides" msgstr "Collecting File poskytuje" -#: apt-pkg/pkgcachegen.cc:1447 apt-pkg/pkgcachegen.cc:1454 +#: apt-pkg/pkgcachegen.cc:1494 apt-pkg/pkgcachegen.cc:1501 msgid "IO Error saving source cache" msgstr "V/V chyba pri ukladaní zdrojovej vyrovnávacej pamäti" @@ -3218,22 +3218,22 @@ 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/indexcopy.cc:236 apt-pkg/indexcopy.cc:766 +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:764 #, c-format msgid "Wrote %i records.\n" msgstr "Zapísaných %i záznamov.\n" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:768 +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:766 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "Zapísaných %i záznamov s %i chýbajúcimi súbormi.\n" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:771 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:769 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "Zapísaných %i záznamov s %i chybnými súbormi\n" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:774 +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:772 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "Zapísaných %i záznamov s %i chýbajúcimi a %i chybnými súbormi\n" diff --git a/po/sl.po b/po/sl.po index 1a0155f39..ce627366c 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 \n" -"POT-Creation-Date: 2013-04-03 14:20+0200\n" +"POT-Creation-Date: 2013-04-08 15:40+0200\n" "PO-Revision-Date: 2012-06-27 21:29+0000\n" "Last-Translator: Andrej Znidarsic \n" "Language-Team: Slovenian \n" @@ -157,7 +157,7 @@ msgstr " Preglednica različic:" #: cmdline/apt-cache.cc:1683 cmdline/apt-cdrom.cc:198 cmdline/apt-config.cc:81 #: cmdline/apt-get.cc:3363 cmdline/apt-mark.cc:375 -#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:590 +#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:591 #: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147 #, c-format msgid "%s %s for %s compiled on %s %s\n" @@ -1616,7 +1616,7 @@ msgstr "Notranja napaka" #. Only warn if there are no sources.list.d. #. Only warn if there is no sources.list file. -#: methods/mirror.cc:95 apt-inst/extract.cc:465 +#: methods/mirror.cc:95 apt-inst/extract.cc:464 #: apt-pkg/contrib/cdromutl.cc:183 apt-pkg/contrib/fileutl.cc:400 #: apt-pkg/contrib/fileutl.cc:513 apt-pkg/sourcelist.cc:208 #: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:108 @@ -1744,7 +1744,7 @@ msgstr "" " -c=? Prebere podano datoteko z nastavitvami\n" " -o=? Nastavi poljubno nastavitveno možnost, na primer. -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1339 +#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1386 #, c-format msgid "Unable to write to %s" msgstr "Ni mogoče pisati na %s" @@ -1753,31 +1753,31 @@ msgstr "Ni mogoče pisati na %s" msgid "Cannot get debconf version. Is debconf installed?" msgstr "Ni mogoče ugotoviti različice debconfa. Je sploh nameščen?" -#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:348 +#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:349 msgid "Package extension list is too long" msgstr "Seznam razširitev paketov je predolg" #: ftparchive/apt-ftparchive.cc:173 ftparchive/apt-ftparchive.cc:190 -#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:263 -#: ftparchive/apt-ftparchive.cc:277 ftparchive/apt-ftparchive.cc:299 +#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:264 +#: ftparchive/apt-ftparchive.cc:278 ftparchive/apt-ftparchive.cc:300 #, c-format msgid "Error processing directory %s" msgstr "Napaka med obdelavo mape %s" -#: ftparchive/apt-ftparchive.cc:261 +#: ftparchive/apt-ftparchive.cc:262 msgid "Source extension list is too long" msgstr "Seznam razširitev virov je predolg" -#: ftparchive/apt-ftparchive.cc:378 +#: ftparchive/apt-ftparchive.cc:379 msgid "Error writing header to contents file" msgstr "Napaka med pisanjem glave v datoteko vsebine" -#: ftparchive/apt-ftparchive.cc:408 +#: ftparchive/apt-ftparchive.cc:409 #, c-format msgid "Error processing contents %s" msgstr "Napaka med obdelavo vsebine %s" -#: ftparchive/apt-ftparchive.cc:596 +#: ftparchive/apt-ftparchive.cc:597 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -1857,11 +1857,11 @@ msgstr "" " -c=? prebere to nastavitveno datoteko\n" " -o=? nastavi poljubno možnost nastavitve" -#: ftparchive/apt-ftparchive.cc:802 +#: ftparchive/apt-ftparchive.cc:803 msgid "No selections matched" msgstr "Nobena izbira se ne ujema" -#: ftparchive/apt-ftparchive.cc:880 +#: ftparchive/apt-ftparchive.cc:881 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "Nekatere datoteke manjkajo v skupini datotek paketov `%s'" @@ -1889,8 +1889,8 @@ msgstr "" msgid "Unable to open DB file %s: %s" msgstr "Ni mogoče odprti datoteke PZ %s: %s" -#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:181 apt-inst/extract.cc:193 -#: apt-inst/extract.cc:210 +#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:179 apt-inst/extract.cc:192 +#: apt-inst/extract.cc:209 #, c-format msgid "Failed to stat %s" msgstr "Napaka med določitvijo %s" @@ -1968,22 +1968,22 @@ msgstr " Dosežena meja RazVezovanja %sB.\n" msgid "Archive had no package field" msgstr "Arhiv ni imel polja s paketom" -#: ftparchive/writer.cc:411 ftparchive/writer.cc:698 +#: ftparchive/writer.cc:411 ftparchive/writer.cc:701 #, c-format msgid " %s has no override entry\n" msgstr " %s nima prepisanega vnosa\n" -#: ftparchive/writer.cc:479 ftparchive/writer.cc:814 +#: ftparchive/writer.cc:479 ftparchive/writer.cc:845 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " Vzdrževalec %s je %s in ne %s\n" -#: ftparchive/writer.cc:708 +#: ftparchive/writer.cc:711 #, c-format msgid " %s has no source override entry\n" msgstr " %s nima izvornega vnosa prepisa\n" -#: ftparchive/writer.cc:712 +#: ftparchive/writer.cc:715 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s nima tudi binarnega vnosa prepisa\n" @@ -2057,7 +2057,7 @@ msgstr "Med računanjem MD5 ni mogoče brati" msgid "Problem unlinking %s" msgstr "Napaka med odvezovanjem %s" -#: ftparchive/multicompress.cc:373 apt-inst/extract.cc:188 +#: ftparchive/multicompress.cc:373 apt-inst/extract.cc:187 #, c-format msgid "Failed to rename %s to %s" msgstr "Ni mogoče preimenovati %s v %s" @@ -2203,54 +2203,54 @@ msgstr "Zapisovanje datoteke %s je spodletelo" msgid "Failed to close file %s" msgstr "Napaka med zapiranjem datoteke %s" -#: apt-inst/extract.cc:96 apt-inst/extract.cc:167 +#: apt-inst/extract.cc:94 apt-inst/extract.cc:165 #, c-format msgid "The path %s is too long" msgstr "Pot %s je predolga" -#: apt-inst/extract.cc:127 +#: apt-inst/extract.cc:125 #, c-format msgid "Unpacking %s more than once" msgstr "Odpakiranje %s več kot enkrat" -#: apt-inst/extract.cc:137 +#: apt-inst/extract.cc:135 #, c-format msgid "The directory %s is diverted" msgstr "Mapa %s je odklonjena" -#: apt-inst/extract.cc:147 +#: apt-inst/extract.cc:145 #, c-format msgid "The package is trying to write to the diversion target %s/%s" msgstr "Paket poskuša pisati v tarčo odklona %s/%s" -#: apt-inst/extract.cc:157 apt-inst/extract.cc:300 +#: apt-inst/extract.cc:155 apt-inst/extract.cc:299 msgid "The diversion path is too long" msgstr "Pot odklona je predloga" -#: apt-inst/extract.cc:243 +#: apt-inst/extract.cc:242 #, c-format msgid "The directory %s is being replaced by a non-directory" msgstr "Mapa %s je bil zamenjana z ne-mapo" -#: apt-inst/extract.cc:283 +#: apt-inst/extract.cc:282 msgid "Failed to locate node in its hash bucket" msgstr "Iskanje vozlišča v njegovem razpršenem vedru ni uspelo" -#: apt-inst/extract.cc:287 +#: apt-inst/extract.cc:286 msgid "The path is too long" msgstr "Pot je predolga" -#: apt-inst/extract.cc:415 +#: apt-inst/extract.cc:414 #, c-format msgid "Overwrite package match with no version for %s" msgstr "Prepiši zadetek paketa brez vnosa različice za %s" -#: apt-inst/extract.cc:432 +#: apt-inst/extract.cc:431 #, c-format msgid "File %s/%s overwrites the one in the package %s" msgstr "Datoteka %s/%s prepisuje datoteko v paketu %s" -#: apt-inst/extract.cc:492 +#: apt-inst/extract.cc:491 #, c-format msgid "Unable to stat %s" msgstr "Ni mogoče določiti %s" @@ -2635,59 +2635,59 @@ msgstr "Ta APT ne podpira sistema različic '%s'" msgid "The package cache was built for a different architecture" msgstr "Predpomnilnik paketov je bil izgrajen za drugačno arhitekturo" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "Depends" msgstr "Odvisen od" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "PreDepends" msgstr "Predodvisen od" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "Suggests" msgstr "Priporoča" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Recommends" msgstr "Priporoča" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Conflicts" msgstr "V sporu z" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Replaces" msgstr "Zamenja" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Obsoletes" msgstr "Zastara" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Breaks" msgstr "Pokvari" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Enhances" msgstr "Izboljša" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "important" msgstr "pomembno" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "required" msgstr "obvezno" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "standard" msgstr "običajni" -#: apt-pkg/pkgcache.cc:319 +#: apt-pkg/pkgcache.cc:328 msgid "optional" msgstr "izbirno" -#: apt-pkg/pkgcache.cc:319 +#: apt-pkg/pkgcache.cc:328 msgid "extra" msgstr "dodatno" @@ -2793,12 +2793,12 @@ msgstr "Odpiranje %s" msgid "Line %u too long in source list %s." msgstr "Vrstica %u v seznamu virov %s je predolga." -#: apt-pkg/sourcelist.cc:285 +#: apt-pkg/sourcelist.cc:289 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "Slabo oblikovana vrstica %u v seznamu virov %s (vrsta)" -#: apt-pkg/sourcelist.cc:289 +#: apt-pkg/sourcelist.cc:293 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "Vrsta '%s' v vrstici %u na seznamu virov %s ni znana" @@ -2961,14 +2961,14 @@ msgstr "Predpomnilnik ima neustrezen sistem različic" #. TRANSLATOR: The first placeholder is a package name, #. the other two should be copied verbatim as they include debug info #: apt-pkg/pkgcachegen.cc:218 apt-pkg/pkgcachegen.cc:228 -#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:325 -#: apt-pkg/pkgcachegen.cc:333 apt-pkg/pkgcachegen.cc:375 -#: apt-pkg/pkgcachegen.cc:379 apt-pkg/pkgcachegen.cc:396 -#: apt-pkg/pkgcachegen.cc:406 apt-pkg/pkgcachegen.cc:410 -#: apt-pkg/pkgcachegen.cc:414 apt-pkg/pkgcachegen.cc:435 -#: apt-pkg/pkgcachegen.cc:477 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:525 apt-pkg/pkgcachegen.cc:556 -#: apt-pkg/pkgcachegen.cc:570 +#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:319 +#: apt-pkg/pkgcachegen.cc:332 apt-pkg/pkgcachegen.cc:374 +#: apt-pkg/pkgcachegen.cc:378 apt-pkg/pkgcachegen.cc:395 +#: apt-pkg/pkgcachegen.cc:403 apt-pkg/pkgcachegen.cc:407 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:432 +#: apt-pkg/pkgcachegen.cc:471 apt-pkg/pkgcachegen.cc:509 +#: apt-pkg/pkgcachegen.cc:516 apt-pkg/pkgcachegen.cc:547 +#: apt-pkg/pkgcachegen.cc:561 #, c-format msgid "Error occurred while processing %s (%s%d)" msgstr "Med obdelovanjem %s je prišlo do napake (%s%d)" @@ -2989,26 +2989,26 @@ msgstr "Čestitamo, presegli ste število opisov, ki jih je zmožen APT." msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "Čestitamo, presegli ste število odvisnosti, ki jih zmore APT." -#: apt-pkg/pkgcachegen.cc:577 +#: apt-pkg/pkgcachegen.cc:568 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "Paketa %s %s ni bilo mogoče najti med obdelavo odvisnosti datotek" -#: apt-pkg/pkgcachegen.cc:1150 +#: apt-pkg/pkgcachegen.cc:1197 #, c-format msgid "Couldn't stat source package list %s" msgstr "Ni mogoče določiti seznama izvornih paketov %s" -#: apt-pkg/pkgcachegen.cc:1238 apt-pkg/pkgcachegen.cc:1342 -#: apt-pkg/pkgcachegen.cc:1348 apt-pkg/pkgcachegen.cc:1505 +#: apt-pkg/pkgcachegen.cc:1285 apt-pkg/pkgcachegen.cc:1389 +#: apt-pkg/pkgcachegen.cc:1395 apt-pkg/pkgcachegen.cc:1552 msgid "Reading package lists" msgstr "Branje seznama paketov" -#: apt-pkg/pkgcachegen.cc:1255 +#: apt-pkg/pkgcachegen.cc:1302 msgid "Collecting File Provides" msgstr "Zbiranje dobaviteljev datotek" -#: apt-pkg/pkgcachegen.cc:1447 apt-pkg/pkgcachegen.cc:1454 +#: apt-pkg/pkgcachegen.cc:1494 apt-pkg/pkgcachegen.cc:1501 msgid "IO Error saving source cache" msgstr "Napaka VI med shranjevanjem predpomnilnika virov" @@ -3223,22 +3223,22 @@ 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/indexcopy.cc:236 apt-pkg/indexcopy.cc:766 +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:764 #, c-format msgid "Wrote %i records.\n" msgstr "Zapisanih je bilo %i zapisov.\n" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:768 +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:766 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "Zapisanih je bilo %i zapisov z %i manjkajočimi datotekami.\n" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:771 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:769 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "Zapisanih je bilo %i zapisov z %i neujemajočimi datotekami.\n" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:774 +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:772 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" diff --git a/po/sv.po b/po/sv.po index 021578ace..ad79067a1 100644 --- a/po/sv.po +++ b/po/sv.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-04-03 14:20+0200\n" +"POT-Creation-Date: 2013-04-08 15:40+0200\n" "PO-Revision-Date: 2010-08-24 21:18+0100\n" "Last-Translator: Daniel Nylander \n" "Language-Team: Swedish \n" @@ -157,7 +157,7 @@ msgstr " Versionstabell:" #: cmdline/apt-cache.cc:1683 cmdline/apt-cdrom.cc:198 cmdline/apt-config.cc:81 #: cmdline/apt-get.cc:3363 cmdline/apt-mark.cc:375 -#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:590 +#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:591 #: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147 #, c-format msgid "%s %s for %s compiled on %s %s\n" @@ -1608,7 +1608,7 @@ msgstr "Internt fel" #. Only warn if there are no sources.list.d. #. Only warn if there is no sources.list file. -#: methods/mirror.cc:95 apt-inst/extract.cc:465 +#: methods/mirror.cc:95 apt-inst/extract.cc:464 #: apt-pkg/contrib/cdromutl.cc:183 apt-pkg/contrib/fileutl.cc:400 #: apt-pkg/contrib/fileutl.cc:513 apt-pkg/sourcelist.cc:208 #: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:108 @@ -1738,7 +1738,7 @@ msgstr "" " -c=? Läs denna konfigurationsfil.\n" " -o=? Ställ in en godtycklig konfigurationsflagga, t.ex -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1339 +#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1386 #, c-format msgid "Unable to write to %s" msgstr "Kunde inte skriva till %s" @@ -1747,31 +1747,31 @@ msgstr "Kunde inte skriva till %s" msgid "Cannot get debconf version. Is debconf installed?" msgstr "Kan inte ta reda på debconf-version. Är debconf installerat?" -#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:348 +#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:349 msgid "Package extension list is too long" msgstr "Listan över filtillägg för Packages är för lång" #: ftparchive/apt-ftparchive.cc:173 ftparchive/apt-ftparchive.cc:190 -#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:263 -#: ftparchive/apt-ftparchive.cc:277 ftparchive/apt-ftparchive.cc:299 +#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:264 +#: ftparchive/apt-ftparchive.cc:278 ftparchive/apt-ftparchive.cc:300 #, c-format msgid "Error processing directory %s" msgstr "Fel vid behandling av katalogen %s" -#: ftparchive/apt-ftparchive.cc:261 +#: ftparchive/apt-ftparchive.cc:262 msgid "Source extension list is too long" msgstr "Listan över filtillägg för Sources är för lång" -#: ftparchive/apt-ftparchive.cc:378 +#: ftparchive/apt-ftparchive.cc:379 msgid "Error writing header to contents file" msgstr "Fel vid skrivning av rubrik till innehållsfil" -#: ftparchive/apt-ftparchive.cc:408 +#: ftparchive/apt-ftparchive.cc:409 #, c-format msgid "Error processing contents %s" msgstr "Fel vid behandling av innehållet %s" -#: ftparchive/apt-ftparchive.cc:596 +#: ftparchive/apt-ftparchive.cc:597 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -1852,11 +1852,11 @@ msgstr "" " -c=? Läs denna konfigurationsfil\n" " -o=? Ställ in en godtycklig konfigurationsflagga" -#: ftparchive/apt-ftparchive.cc:802 +#: ftparchive/apt-ftparchive.cc:803 msgid "No selections matched" msgstr "Inga val träffades" -#: ftparchive/apt-ftparchive.cc:880 +#: ftparchive/apt-ftparchive.cc:881 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "Några filer saknas i paketfilsgruppen \"%s\"" @@ -1884,8 +1884,8 @@ msgstr "" msgid "Unable to open DB file %s: %s" msgstr "Kunde inte öppna DB-filen %s: %s" -#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:181 apt-inst/extract.cc:193 -#: apt-inst/extract.cc:210 +#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:179 apt-inst/extract.cc:192 +#: apt-inst/extract.cc:209 #, c-format msgid "Failed to stat %s" msgstr "Misslyckades med att ta status på %s" @@ -1965,23 +1965,23 @@ msgstr " Avlänkningsgränsen på %sB nåddes.\n" msgid "Archive had no package field" msgstr "Arkivet har inget package-fält" -#: ftparchive/writer.cc:411 ftparchive/writer.cc:698 +#: ftparchive/writer.cc:411 ftparchive/writer.cc:701 #, c-format msgid " %s has no override entry\n" msgstr " %s har ingen post i override-filen\n" # parametrar: paket, ny, gammal -#: ftparchive/writer.cc:479 ftparchive/writer.cc:814 +#: ftparchive/writer.cc:479 ftparchive/writer.cc:845 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " ansvarig för paketet %s är %s ej %s\n" -#: ftparchive/writer.cc:708 +#: ftparchive/writer.cc:711 #, c-format msgid " %s has no source override entry\n" msgstr " %s har ingen källåsidosättningspost\n" -#: ftparchive/writer.cc:712 +#: ftparchive/writer.cc:715 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s har heller ingen binär åsidosättningspost\n" @@ -2057,7 +2057,7 @@ msgstr "Misslyckades med att läsa vid beräkning av MD5" msgid "Problem unlinking %s" msgstr "Problem med att länka ut %s" -#: ftparchive/multicompress.cc:373 apt-inst/extract.cc:188 +#: ftparchive/multicompress.cc:373 apt-inst/extract.cc:187 #, c-format msgid "Failed to rename %s to %s" msgstr "Misslyckades med att byta namn på %s till %s" @@ -2202,54 +2202,54 @@ msgstr "Misslyckades med att skriva filen %s" msgid "Failed to close file %s" msgstr "Misslyckades med att stänga filen %s" -#: apt-inst/extract.cc:96 apt-inst/extract.cc:167 +#: apt-inst/extract.cc:94 apt-inst/extract.cc:165 #, c-format msgid "The path %s is too long" msgstr "Sökvägen %s är för lång" -#: apt-inst/extract.cc:127 +#: apt-inst/extract.cc:125 #, c-format msgid "Unpacking %s more than once" msgstr "Packar upp %s flera gånger" -#: apt-inst/extract.cc:137 +#: apt-inst/extract.cc:135 #, c-format msgid "The directory %s is diverted" msgstr "Katalogen %s är omdirigerad" -#: apt-inst/extract.cc:147 +#: apt-inst/extract.cc:145 #, c-format msgid "The package is trying to write to the diversion target %s/%s" msgstr "Paketet försöker att skriva till omdirigeringsmålet %s/%s" -#: apt-inst/extract.cc:157 apt-inst/extract.cc:300 +#: apt-inst/extract.cc:155 apt-inst/extract.cc:299 msgid "The diversion path is too long" msgstr "Omdirigeringssökvägen är för lång" -#: apt-inst/extract.cc:243 +#: apt-inst/extract.cc:242 #, c-format msgid "The directory %s is being replaced by a non-directory" msgstr "Katalogen %s ersätts av en icke-katalog" -#: apt-inst/extract.cc:283 +#: apt-inst/extract.cc:282 msgid "Failed to locate node in its hash bucket" msgstr "Misslyckades med att hitta noden i sin hashkorg" -#: apt-inst/extract.cc:287 +#: apt-inst/extract.cc:286 msgid "The path is too long" msgstr "Sökvägen är för lång" -#: apt-inst/extract.cc:415 +#: apt-inst/extract.cc:414 #, c-format msgid "Overwrite package match with no version for %s" msgstr "Skriv över paketträff utan version för %s" -#: apt-inst/extract.cc:432 +#: apt-inst/extract.cc:431 #, c-format msgid "File %s/%s overwrites the one in the package %s" msgstr "Filen %s/%s skriver över den i paketet %s" -#: apt-inst/extract.cc:492 +#: apt-inst/extract.cc:491 #, c-format msgid "Unable to stat %s" msgstr "Kunde inte ta status på %s" @@ -2636,61 +2636,61 @@ msgstr "Denna APT saknar stöd för versionssystemet \"%s\"" msgid "The package cache was built for a different architecture" msgstr "Paketcachen byggdes för en annan arkitektur" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "Depends" msgstr "Beroende av" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "PreDepends" msgstr "Förberoende av" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "Suggests" msgstr "Föreslår" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Recommends" msgstr "Rekommenderar" # "Konfliktar"? -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Conflicts" msgstr "Står i konflikt med" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Replaces" msgstr "Ersätter" # "Föråldrar"? -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Obsoletes" msgstr "Föråldrar" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Breaks" msgstr "Gör sönder" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Enhances" msgstr "Utökar" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "important" msgstr "viktigt" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "required" msgstr "nödvändigt" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "standard" msgstr "standard" -#: apt-pkg/pkgcache.cc:319 +#: apt-pkg/pkgcache.cc:328 msgid "optional" msgstr "valfri" -#: apt-pkg/pkgcache.cc:319 +#: apt-pkg/pkgcache.cc:328 msgid "extra" msgstr "extra" @@ -2790,12 +2790,12 @@ msgstr "Öppnar %s" msgid "Line %u too long in source list %s." msgstr "Rad %u är för lång i källistan %s." -#: apt-pkg/sourcelist.cc:285 +#: apt-pkg/sourcelist.cc:289 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "Rad %u i källistan %s har fel format (typ)" -#: apt-pkg/sourcelist.cc:289 +#: apt-pkg/sourcelist.cc:293 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "Typ \"%s\" är inte känd på rad %u i listan över källor %s" @@ -2963,14 +2963,14 @@ msgstr "Cachen har ett inkompatibelt versionssystem" #. TRANSLATOR: The first placeholder is a package name, #. the other two should be copied verbatim as they include debug info #: apt-pkg/pkgcachegen.cc:218 apt-pkg/pkgcachegen.cc:228 -#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:325 -#: apt-pkg/pkgcachegen.cc:333 apt-pkg/pkgcachegen.cc:375 -#: apt-pkg/pkgcachegen.cc:379 apt-pkg/pkgcachegen.cc:396 -#: apt-pkg/pkgcachegen.cc:406 apt-pkg/pkgcachegen.cc:410 -#: apt-pkg/pkgcachegen.cc:414 apt-pkg/pkgcachegen.cc:435 -#: apt-pkg/pkgcachegen.cc:477 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:525 apt-pkg/pkgcachegen.cc:556 -#: apt-pkg/pkgcachegen.cc:570 +#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:319 +#: apt-pkg/pkgcachegen.cc:332 apt-pkg/pkgcachegen.cc:374 +#: apt-pkg/pkgcachegen.cc:378 apt-pkg/pkgcachegen.cc:395 +#: apt-pkg/pkgcachegen.cc:403 apt-pkg/pkgcachegen.cc:407 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:432 +#: apt-pkg/pkgcachegen.cc:471 apt-pkg/pkgcachegen.cc:509 +#: apt-pkg/pkgcachegen.cc:516 apt-pkg/pkgcachegen.cc:547 +#: apt-pkg/pkgcachegen.cc:561 #, fuzzy, c-format msgid "Error occurred while processing %s (%s%d)" msgstr "Fel uppstod vid hantering av %s (FindPkg)" @@ -2991,27 +2991,27 @@ msgstr "Grattis, du överskred antalet beskrivningar som denna APT kan hantera." msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "Grattis, du överskred antalet beroenden som denna APT kan hantera." -#: apt-pkg/pkgcachegen.cc:577 +#: apt-pkg/pkgcachegen.cc:568 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "Paketet %s %s hittades inte när filberoenden hanterades" -#: apt-pkg/pkgcachegen.cc:1150 +#: apt-pkg/pkgcachegen.cc:1197 #, c-format msgid "Couldn't stat source package list %s" msgstr "Kunde inte ta status på källkodspaketlistan %s" -#: apt-pkg/pkgcachegen.cc:1238 apt-pkg/pkgcachegen.cc:1342 -#: apt-pkg/pkgcachegen.cc:1348 apt-pkg/pkgcachegen.cc:1505 +#: apt-pkg/pkgcachegen.cc:1285 apt-pkg/pkgcachegen.cc:1389 +#: apt-pkg/pkgcachegen.cc:1395 apt-pkg/pkgcachegen.cc:1552 msgid "Reading package lists" msgstr "Läser paketlistor" # Bättre ord? -#: apt-pkg/pkgcachegen.cc:1255 +#: apt-pkg/pkgcachegen.cc:1302 msgid "Collecting File Provides" msgstr "Samlar filtillhandahållningar" -#: apt-pkg/pkgcachegen.cc:1447 apt-pkg/pkgcachegen.cc:1454 +#: apt-pkg/pkgcachegen.cc:1494 apt-pkg/pkgcachegen.cc:1501 msgid "IO Error saving source cache" msgstr "In-/utfel vid lagring av källcache" @@ -3221,22 +3221,22 @@ 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" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:766 +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:764 #, c-format msgid "Wrote %i records.\n" msgstr "Skrev %i poster.\n" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:768 +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:766 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "Skrev %i poster med %i saknade filer.\n" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:771 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:769 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "Skrev %i poster med %i filer som inte stämmer\n" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:774 +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:772 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "Skrev %i poster med %i saknade filer och %i filer som inte stämmer\n" diff --git a/po/th.po b/po/th.po index 5e2f51c1e..4d8229465 100644 --- a/po/th.po +++ b/po/th.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-04-03 14:20+0200\n" +"POT-Creation-Date: 2013-04-08 15:40+0200\n" "PO-Revision-Date: 2012-10-27 22:44+0700\n" "Last-Translator: Theppitak Karoonboonyanan \n" "Language-Team: Thai \n" @@ -155,7 +155,7 @@ msgstr " ตารางรุ่น:" #: cmdline/apt-cache.cc:1683 cmdline/apt-cdrom.cc:198 cmdline/apt-config.cc:81 #: cmdline/apt-get.cc:3363 cmdline/apt-mark.cc:375 -#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:590 +#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:591 #: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147 #, c-format msgid "%s %s for %s compiled on %s %s\n" @@ -1571,7 +1571,7 @@ msgstr "ข้อผิดพลาดภายใน" #. Only warn if there are no sources.list.d. #. Only warn if there is no sources.list file. -#: methods/mirror.cc:95 apt-inst/extract.cc:465 +#: methods/mirror.cc:95 apt-inst/extract.cc:464 #: apt-pkg/contrib/cdromutl.cc:183 apt-pkg/contrib/fileutl.cc:400 #: apt-pkg/contrib/fileutl.cc:513 apt-pkg/sourcelist.cc:208 #: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:108 @@ -1693,7 +1693,7 @@ msgstr "" " -c=? อ่านแฟ้มค่าตั้งนี้\n" " -o=? กำหนดตัวเลือกค่าตั้งเป็นรายตัว เช่น -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1339 +#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1386 #, c-format msgid "Unable to write to %s" msgstr "ไม่สามารถเขียนลงแฟ้ม %s" @@ -1702,31 +1702,31 @@ msgstr "ไม่สามารถเขียนลงแฟ้ม %s" msgid "Cannot get debconf version. Is debconf installed?" msgstr "ไม่สามารถอ่านรุ่นของ debconf ได้ ได้ติดตั้ง debconf ไว้หรือไม่?" -#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:348 +#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:349 msgid "Package extension list is too long" msgstr "รายชื่อนามสกุลแพกเกจยาวเกินไป" #: ftparchive/apt-ftparchive.cc:173 ftparchive/apt-ftparchive.cc:190 -#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:263 -#: ftparchive/apt-ftparchive.cc:277 ftparchive/apt-ftparchive.cc:299 +#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:264 +#: ftparchive/apt-ftparchive.cc:278 ftparchive/apt-ftparchive.cc:300 #, c-format msgid "Error processing directory %s" msgstr "เกิดข้อผิดพลาดขณะประมวลผลไดเรกทอรี %s" -#: ftparchive/apt-ftparchive.cc:261 +#: ftparchive/apt-ftparchive.cc:262 msgid "Source extension list is too long" msgstr "รายชื่อนามสกุลซอร์สยาวเกินไป" -#: ftparchive/apt-ftparchive.cc:378 +#: ftparchive/apt-ftparchive.cc:379 msgid "Error writing header to contents file" msgstr "เกิดข้อผิดพลาดขณะเขียนข้อมูลส่วนหัวลงในแฟ้มสารบัญ" -#: ftparchive/apt-ftparchive.cc:408 +#: ftparchive/apt-ftparchive.cc:409 #, c-format msgid "Error processing contents %s" msgstr "เกิดข้อผิดพลาดขณะประมวลผลสารบัญ %s" -#: ftparchive/apt-ftparchive.cc:596 +#: ftparchive/apt-ftparchive.cc:597 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -1803,11 +1803,11 @@ msgstr "" " -c=? อ่านแฟ้มค่าตั้งนี้\n" " -o=? กำหนดตัวเลือกค่าตั้งเป็นรายตัว" -#: ftparchive/apt-ftparchive.cc:802 +#: ftparchive/apt-ftparchive.cc:803 msgid "No selections matched" msgstr "ไม่มีรายการเลือกที่ตรง" -#: ftparchive/apt-ftparchive.cc:880 +#: ftparchive/apt-ftparchive.cc:881 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "บางแฟ้มขาดหายไปในกลุ่มแฟ้มแพกเกจ `%s'" @@ -1833,8 +1833,8 @@ msgstr "ฟอร์แมตของ DB ผิด ถ้าคุณเพิ msgid "Unable to open DB file %s: %s" msgstr "ไม่สามารถเปิดแฟ้ม DB %s: %s" -#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:181 apt-inst/extract.cc:193 -#: apt-inst/extract.cc:210 +#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:179 apt-inst/extract.cc:192 +#: apt-inst/extract.cc:209 #, c-format msgid "Failed to stat %s" msgstr "stat %s ไม่สำเร็จ" @@ -1912,22 +1912,22 @@ msgstr " มาถึงขีดจำกัดการ DeLink ที่ %sB msgid "Archive had no package field" msgstr "แพกเกจไม่มีช่องข้อมูล 'Package'" -#: ftparchive/writer.cc:411 ftparchive/writer.cc:698 +#: ftparchive/writer.cc:411 ftparchive/writer.cc:701 #, c-format msgid " %s has no override entry\n" msgstr " %s ไม่มีข้อมูล override\n" -#: ftparchive/writer.cc:479 ftparchive/writer.cc:814 +#: ftparchive/writer.cc:479 ftparchive/writer.cc:845 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " ผู้ดูแล %s คือ %s ไม่ใช่ %s\n" -#: ftparchive/writer.cc:708 +#: ftparchive/writer.cc:711 #, c-format msgid " %s has no source override entry\n" msgstr " %s ไม่มีข้อมูล override สำหรับซอร์ส\n" -#: ftparchive/writer.cc:712 +#: ftparchive/writer.cc:715 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s ไม่มีข้อมูล override สำหรับไบนารีเช่นกัน\n" @@ -2001,7 +2001,7 @@ msgstr "อ่านแฟ้มไม่สำเร็จขณะคำนว msgid "Problem unlinking %s" msgstr "มีปัญหาขณะลบแฟ้ม %s" -#: ftparchive/multicompress.cc:373 apt-inst/extract.cc:188 +#: ftparchive/multicompress.cc:373 apt-inst/extract.cc:187 #, c-format msgid "Failed to rename %s to %s" msgstr "ไม่สามารถเปลี่ยนชื่อ %s ไปเป็น %s" @@ -2146,54 +2146,54 @@ msgstr "ไม่สามารถเขียนแฟ้ม %s" msgid "Failed to close file %s" msgstr "ไม่สามารถปิดแฟ้ม %s" -#: apt-inst/extract.cc:96 apt-inst/extract.cc:167 +#: apt-inst/extract.cc:94 apt-inst/extract.cc:165 #, c-format msgid "The path %s is too long" msgstr "พาธ %s ยาวเกินไป" -#: apt-inst/extract.cc:127 +#: apt-inst/extract.cc:125 #, c-format msgid "Unpacking %s more than once" msgstr "พยายามแตกแพกเกจ %s มากกว่าหนึ่งครั้ง" -#: apt-inst/extract.cc:137 +#: apt-inst/extract.cc:135 #, c-format msgid "The directory %s is diverted" msgstr "ไดเรกทอรี %s ถูก divert" -#: apt-inst/extract.cc:147 +#: apt-inst/extract.cc:145 #, c-format msgid "The package is trying to write to the diversion target %s/%s" msgstr "แพกเกจนี้พยายามเขียนลงปลายทางของ diversion %s/%s" -#: apt-inst/extract.cc:157 apt-inst/extract.cc:300 +#: apt-inst/extract.cc:155 apt-inst/extract.cc:299 msgid "The diversion path is too long" msgstr "พาธของ diversion ยาวเกินไป" -#: apt-inst/extract.cc:243 +#: apt-inst/extract.cc:242 #, c-format msgid "The directory %s is being replaced by a non-directory" msgstr "ไดเรกทอรี %s กำลังจะถูกแทนที่ด้วยสิ่งที่ไม่ใช่ไดเรกทอรี" -#: apt-inst/extract.cc:283 +#: apt-inst/extract.cc:282 msgid "Failed to locate node in its hash bucket" msgstr "หาโหนดใน bucket ของแฮชไม่พบ" -#: apt-inst/extract.cc:287 +#: apt-inst/extract.cc:286 msgid "The path is too long" msgstr "พาธยาวเกินไป" -#: apt-inst/extract.cc:415 +#: apt-inst/extract.cc:414 #, c-format msgid "Overwrite package match with no version for %s" msgstr "พบแพกเกจที่เขียนทับโดยไม่มีข้อมูลรุ่นสำหรับ %s" -#: apt-inst/extract.cc:432 +#: apt-inst/extract.cc:431 #, c-format msgid "File %s/%s overwrites the one in the package %s" msgstr "แฟ้ม %s/%s เขียนทับแฟ้มในแพกเกจ %s" -#: apt-inst/extract.cc:492 +#: apt-inst/extract.cc:491 #, c-format msgid "Unable to stat %s" msgstr "ไม่สามารถ stat %s" @@ -2573,59 +2573,59 @@ msgstr "APT รุ่นนี้ไม่รองรับระบบนั msgid "The package cache was built for a different architecture" msgstr "แคชของแพกเกจถูกสร้างมาสำหรับสถาปัตยกรรมอื่น" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "Depends" msgstr "ต้องใช้" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "PreDepends" msgstr "ต้องใช้ขณะติดตั้ง" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "Suggests" msgstr "แนะนำ" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Recommends" msgstr "ควรใช้ร่วมกับ" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Conflicts" msgstr "ขัดแย้งกับ" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Replaces" msgstr "แทนที่" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Obsoletes" msgstr "ใช้แทน" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Breaks" msgstr "ทำให้พัง" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Enhances" msgstr "เพิ่มความสามารถ" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "important" msgstr "สำคัญ" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "required" msgstr "จำเป็น" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "standard" msgstr "มาตรฐาน" -#: apt-pkg/pkgcache.cc:319 +#: apt-pkg/pkgcache.cc:328 msgid "optional" msgstr "ตัวเลือก" -#: apt-pkg/pkgcache.cc:319 +#: apt-pkg/pkgcache.cc:328 msgid "extra" msgstr "ส่วนเสริม" @@ -2725,12 +2725,12 @@ msgstr "กำลังเปิด %s" msgid "Line %u too long in source list %s." msgstr "บรรทัด %u ในแฟ้มรายชื่อแหล่งแพกเกจ %s ยาวเกินไป" -#: apt-pkg/sourcelist.cc:285 +#: apt-pkg/sourcelist.cc:289 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "บรรทัด %u ในแฟ้มรายชื่อแหล่งแพกเกจ %s ผิดรูปแบบ (ชนิด)" -#: apt-pkg/sourcelist.cc:289 +#: apt-pkg/sourcelist.cc:293 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "ไม่รู้จักชนิด '%s' ที่บรรทัด %u ในแฟ้มรายชื่อแหล่งแพกเกจ %s" @@ -2890,14 +2890,14 @@ msgstr "แคชมีระบบนับรุ่นที่ไม่ตร #. TRANSLATOR: The first placeholder is a package name, #. the other two should be copied verbatim as they include debug info #: apt-pkg/pkgcachegen.cc:218 apt-pkg/pkgcachegen.cc:228 -#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:325 -#: apt-pkg/pkgcachegen.cc:333 apt-pkg/pkgcachegen.cc:375 -#: apt-pkg/pkgcachegen.cc:379 apt-pkg/pkgcachegen.cc:396 -#: apt-pkg/pkgcachegen.cc:406 apt-pkg/pkgcachegen.cc:410 -#: apt-pkg/pkgcachegen.cc:414 apt-pkg/pkgcachegen.cc:435 -#: apt-pkg/pkgcachegen.cc:477 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:525 apt-pkg/pkgcachegen.cc:556 -#: apt-pkg/pkgcachegen.cc:570 +#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:319 +#: apt-pkg/pkgcachegen.cc:332 apt-pkg/pkgcachegen.cc:374 +#: apt-pkg/pkgcachegen.cc:378 apt-pkg/pkgcachegen.cc:395 +#: apt-pkg/pkgcachegen.cc:403 apt-pkg/pkgcachegen.cc:407 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:432 +#: apt-pkg/pkgcachegen.cc:471 apt-pkg/pkgcachegen.cc:509 +#: apt-pkg/pkgcachegen.cc:516 apt-pkg/pkgcachegen.cc:547 +#: apt-pkg/pkgcachegen.cc:561 #, c-format msgid "Error occurred while processing %s (%s%d)" msgstr "เกิดข้อผิดพลาดขณะประมวลผล %s (%s%d)" @@ -2918,26 +2918,26 @@ msgstr "โอ้ คุณมาถึงขีดจำกัดจำนว msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "โอ้ คุณมาถึงขีดจำกัดจำนวนความสัมพันธ์ระหว่างแพกเกจที่ APT สามารถรองรับได้แล้ว" -#: apt-pkg/pkgcachegen.cc:577 +#: apt-pkg/pkgcachegen.cc:568 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "ไม่พบแพกเกจ %s %s ขณะประมวลผลความขึ้นต่อแฟ้ม" -#: apt-pkg/pkgcachegen.cc:1150 +#: apt-pkg/pkgcachegen.cc:1197 #, c-format msgid "Couldn't stat source package list %s" msgstr "ไม่สามารถ stat รายการแพกเกจซอร์ส %s" -#: apt-pkg/pkgcachegen.cc:1238 apt-pkg/pkgcachegen.cc:1342 -#: apt-pkg/pkgcachegen.cc:1348 apt-pkg/pkgcachegen.cc:1505 +#: apt-pkg/pkgcachegen.cc:1285 apt-pkg/pkgcachegen.cc:1389 +#: apt-pkg/pkgcachegen.cc:1395 apt-pkg/pkgcachegen.cc:1552 msgid "Reading package lists" msgstr "กำลังอ่านรายชื่อแพกเกจ" -#: apt-pkg/pkgcachegen.cc:1255 +#: apt-pkg/pkgcachegen.cc:1302 msgid "Collecting File Provides" msgstr "กำลังเก็บข้อมูลแฟ้มที่ตระเตรียมให้" -#: apt-pkg/pkgcachegen.cc:1447 apt-pkg/pkgcachegen.cc:1454 +#: apt-pkg/pkgcachegen.cc:1494 apt-pkg/pkgcachegen.cc:1501 msgid "IO Error saving source cache" msgstr "เกิดข้อผิดพลาด IO ขณะบันทึกแคชของซอร์ส" @@ -3144,22 +3144,22 @@ msgstr "กำลังเขียนรายชื่อแหล่งแพ msgid "Source list entries for this disc are:\n" msgstr "บรรทัดรายชื่อแหล่งแพกเกจสำหรับแผ่นนี้คือ:\n" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:766 +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:764 #, c-format msgid "Wrote %i records.\n" msgstr "เขียนแล้ว %i ระเบียน\n" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:768 +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:766 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "เขียนแล้ว %i ระเบียน โดยมีแฟ้มขาดหาย %i แฟ้ม\n" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:771 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:769 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "เขียนแล้ว %i ระเบียน โดยมีแฟ้มผิดขนาด %i แฟ้ม\n" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:774 +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:772 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "เขียนแล้ว %i ระเบียน โดยมีแฟ้มขาดหาย %i แฟ้ม และแฟ้มผิดขนาด %i แฟ้ม\n" diff --git a/po/tl.po b/po/tl.po index fd21cdeeb..6672d42c3 100644 --- a/po/tl.po +++ b/po/tl.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-04-03 14:20+0200\n" +"POT-Creation-Date: 2013-04-08 15:40+0200\n" "PO-Revision-Date: 2007-03-29 21:36+0800\n" "Last-Translator: Eric Pareja \n" "Language-Team: Tagalog \n" @@ -161,7 +161,7 @@ msgstr " Talaang Bersyon:" #: cmdline/apt-cache.cc:1683 cmdline/apt-cdrom.cc:198 cmdline/apt-config.cc:81 #: cmdline/apt-get.cc:3363 cmdline/apt-mark.cc:375 -#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:590 +#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:591 #: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147 #, fuzzy, c-format msgid "%s %s for %s compiled on %s %s\n" @@ -1586,7 +1586,7 @@ msgstr "Internal na error" #. Only warn if there are no sources.list.d. #. Only warn if there is no sources.list file. -#: methods/mirror.cc:95 apt-inst/extract.cc:465 +#: methods/mirror.cc:95 apt-inst/extract.cc:464 #: apt-pkg/contrib/cdromutl.cc:183 apt-pkg/contrib/fileutl.cc:400 #: apt-pkg/contrib/fileutl.cc:513 apt-pkg/sourcelist.cc:208 #: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:108 @@ -1712,7 +1712,7 @@ msgstr "" " -c=? Basahin ang talaksang pagkaayos na ito\n" " -o=? Itakda ang isang optiong pagkaayos, hal. -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1339 +#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1386 #, c-format msgid "Unable to write to %s" msgstr "Hindi makapagsulat sa %s" @@ -1721,31 +1721,31 @@ msgstr "Hindi makapagsulat sa %s" msgid "Cannot get debconf version. Is debconf installed?" msgstr "Hindi makuha ang bersyon ng debconf. Nakaluklok ba ang debconf?" -#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:348 +#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:349 msgid "Package extension list is too long" msgstr "Mahaba masyado ang talaan ng extensyon ng mga pakete" #: ftparchive/apt-ftparchive.cc:173 ftparchive/apt-ftparchive.cc:190 -#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:263 -#: ftparchive/apt-ftparchive.cc:277 ftparchive/apt-ftparchive.cc:299 +#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:264 +#: ftparchive/apt-ftparchive.cc:278 ftparchive/apt-ftparchive.cc:300 #, c-format msgid "Error processing directory %s" msgstr "Error sa pagproseso ng directory %s" -#: ftparchive/apt-ftparchive.cc:261 +#: ftparchive/apt-ftparchive.cc:262 msgid "Source extension list is too long" msgstr "Mahaba masyado ang talaan ng extensyon ng pagkukunan (source)" -#: ftparchive/apt-ftparchive.cc:378 +#: ftparchive/apt-ftparchive.cc:379 msgid "Error writing header to contents file" msgstr "Error sa pagsulat ng panimula sa talaksang nilalaman (contents)" -#: ftparchive/apt-ftparchive.cc:408 +#: ftparchive/apt-ftparchive.cc:409 #, c-format msgid "Error processing contents %s" msgstr "Error sa pagproseso ng Contents %s" -#: ftparchive/apt-ftparchive.cc:596 +#: ftparchive/apt-ftparchive.cc:597 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -1830,11 +1830,11 @@ msgstr "" " -c=? Basahin itong talaksang pagkaayos\n" " -o=? Itakda ang isang option na pagkaayos" -#: ftparchive/apt-ftparchive.cc:802 +#: ftparchive/apt-ftparchive.cc:803 msgid "No selections matched" msgstr "Walang mga pinili na tugma" -#: ftparchive/apt-ftparchive.cc:880 +#: ftparchive/apt-ftparchive.cc:881 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "May mga talaksang kulang sa grupo ng talaksang pakete `%s'" @@ -1863,8 +1863,8 @@ msgstr "" msgid "Unable to open DB file %s: %s" msgstr "Hindi mabuksan ang talaksang DB %s: %s" -#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:181 apt-inst/extract.cc:193 -#: apt-inst/extract.cc:210 +#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:179 apt-inst/extract.cc:192 +#: apt-inst/extract.cc:209 #, c-format msgid "Failed to stat %s" msgstr "Bigo ang pag-stat ng %s" @@ -1942,22 +1942,22 @@ msgstr " DeLink limit na %sB tinamaan.\n" msgid "Archive had no package field" msgstr "Walang field ng pakete ang arkibo" -#: ftparchive/writer.cc:411 ftparchive/writer.cc:698 +#: ftparchive/writer.cc:411 ftparchive/writer.cc:701 #, c-format msgid " %s has no override entry\n" msgstr " %s ay walang override entry\n" -#: ftparchive/writer.cc:479 ftparchive/writer.cc:814 +#: ftparchive/writer.cc:479 ftparchive/writer.cc:845 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " Tagapangalaga ng %s ay %s hindi %s\n" -#: ftparchive/writer.cc:708 +#: ftparchive/writer.cc:711 #, c-format msgid " %s has no source override entry\n" msgstr " %s ay walang override entry para sa pinagmulan\n" -#: ftparchive/writer.cc:712 +#: ftparchive/writer.cc:715 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s ay wala ring override entry na binary\n" @@ -2031,7 +2031,7 @@ msgstr "Bigo ang pagbasa habang tinutuos ang MD5" msgid "Problem unlinking %s" msgstr "Problema sa pag-unlink ng %s" -#: ftparchive/multicompress.cc:373 apt-inst/extract.cc:188 +#: ftparchive/multicompress.cc:373 apt-inst/extract.cc:187 #, c-format msgid "Failed to rename %s to %s" msgstr "Bigo ang pagpangalan muli ng %s tungong %s" @@ -2177,54 +2177,54 @@ msgstr "Bigo sa pagsulat ng talaksang %s" msgid "Failed to close file %s" msgstr "Bigo sa pagsara ng talaksang %s" -#: apt-inst/extract.cc:96 apt-inst/extract.cc:167 +#: apt-inst/extract.cc:94 apt-inst/extract.cc:165 #, c-format msgid "The path %s is too long" msgstr "Sobrang haba ang path na %s" -#: apt-inst/extract.cc:127 +#: apt-inst/extract.cc:125 #, c-format msgid "Unpacking %s more than once" msgstr "Binubuklat ang %s ng labis sa isang beses" -#: apt-inst/extract.cc:137 +#: apt-inst/extract.cc:135 #, c-format msgid "The directory %s is diverted" msgstr "Ang directory %s ay divertado" -#: apt-inst/extract.cc:147 +#: apt-inst/extract.cc:145 #, c-format msgid "The package is trying to write to the diversion target %s/%s" msgstr "Ang pakete ay sumusubok na magsulat sa target na diversion %s/%s" -#: apt-inst/extract.cc:157 apt-inst/extract.cc:300 +#: apt-inst/extract.cc:155 apt-inst/extract.cc:299 msgid "The diversion path is too long" msgstr "Sobrang haba ng path na diversion" -#: apt-inst/extract.cc:243 +#: apt-inst/extract.cc:242 #, c-format msgid "The directory %s is being replaced by a non-directory" msgstr "Ang directory %s ay papalitan ng hindi-directory" -#: apt-inst/extract.cc:283 +#: apt-inst/extract.cc:282 msgid "Failed to locate node in its hash bucket" msgstr "Bigo ang paghanap ng node sa kanyang hash bucket" -#: apt-inst/extract.cc:287 +#: apt-inst/extract.cc:286 msgid "The path is too long" msgstr "Sobrang haba ng path" -#: apt-inst/extract.cc:415 +#: apt-inst/extract.cc:414 #, c-format msgid "Overwrite package match with no version for %s" msgstr "Patungan ng paketeng nag-match na walang bersion para sa %s" -#: apt-inst/extract.cc:432 +#: apt-inst/extract.cc:431 #, c-format msgid "File %s/%s overwrites the one in the package %s" msgstr "Ang talaksang %s/%s ay pumapatong sa isang talaksan sa paketeng %s" -#: apt-inst/extract.cc:492 +#: apt-inst/extract.cc:491 #, c-format msgid "Unable to stat %s" msgstr "Hindi ma-stat ang %s" @@ -2614,59 +2614,59 @@ msgstr "Ang APT na ito ay hindi nagsusuporta ng versioning system '%s'" msgid "The package cache was built for a different architecture" msgstr "Ang cache ng pakete ay binuo para sa ibang arkitektura" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "Depends" msgstr "Dependensiya" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "PreDepends" msgstr "PreDepends" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "Suggests" msgstr "Mungkahi" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Recommends" msgstr "Rekomendado" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Conflicts" msgstr "Tunggali" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Replaces" msgstr "Pumapalit" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Obsoletes" msgstr "Linalaos" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Breaks" msgstr "" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Enhances" msgstr "" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "important" msgstr "importante" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "required" msgstr "kailangan" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "standard" msgstr "standard" -#: apt-pkg/pkgcache.cc:319 +#: apt-pkg/pkgcache.cc:328 msgid "optional" msgstr "optional" -#: apt-pkg/pkgcache.cc:319 +#: apt-pkg/pkgcache.cc:328 msgid "extra" msgstr "extra" @@ -2767,12 +2767,12 @@ msgstr "Binubuksan %s" msgid "Line %u too long in source list %s." msgstr "Labis ang haba ng linyang %u sa talaksang pagkukunan %s." -#: apt-pkg/sourcelist.cc:285 +#: apt-pkg/sourcelist.cc:289 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "Maling anyo ng linyang %u sa talaksang pagkukunan %s (uri)" -#: apt-pkg/sourcelist.cc:289 +#: apt-pkg/sourcelist.cc:293 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "Hindi kilalang uri '%s' sa linyang %u sa talaksan ng pagkukunan %s" @@ -2940,14 +2940,14 @@ msgstr "Hindi akma ang versioning system ng cache" #. TRANSLATOR: The first placeholder is a package name, #. the other two should be copied verbatim as they include debug info #: apt-pkg/pkgcachegen.cc:218 apt-pkg/pkgcachegen.cc:228 -#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:325 -#: apt-pkg/pkgcachegen.cc:333 apt-pkg/pkgcachegen.cc:375 -#: apt-pkg/pkgcachegen.cc:379 apt-pkg/pkgcachegen.cc:396 -#: apt-pkg/pkgcachegen.cc:406 apt-pkg/pkgcachegen.cc:410 -#: apt-pkg/pkgcachegen.cc:414 apt-pkg/pkgcachegen.cc:435 -#: apt-pkg/pkgcachegen.cc:477 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:525 apt-pkg/pkgcachegen.cc:556 -#: apt-pkg/pkgcachegen.cc:570 +#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:319 +#: apt-pkg/pkgcachegen.cc:332 apt-pkg/pkgcachegen.cc:374 +#: apt-pkg/pkgcachegen.cc:378 apt-pkg/pkgcachegen.cc:395 +#: apt-pkg/pkgcachegen.cc:403 apt-pkg/pkgcachegen.cc:407 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:432 +#: apt-pkg/pkgcachegen.cc:471 apt-pkg/pkgcachegen.cc:509 +#: apt-pkg/pkgcachegen.cc:516 apt-pkg/pkgcachegen.cc:547 +#: apt-pkg/pkgcachegen.cc:561 #, fuzzy, c-format msgid "Error occurred while processing %s (%s%d)" msgstr "May naganap na error habang prinoseso ang %s (FindPkg)" @@ -2970,27 +2970,27 @@ msgstr "Wow, nalagpasan niyo ang bilang ng bersyon na kaya ng APT na ito." msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "Wow, nalagpasan niyo ang bilang ng dependensiya na kaya ng APT na ito." -#: apt-pkg/pkgcachegen.cc:577 +#: apt-pkg/pkgcachegen.cc:568 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "" "Hindi nahanap ang paketeng %s %s habang prinoseso ang mga dependensiya." -#: apt-pkg/pkgcachegen.cc:1150 +#: apt-pkg/pkgcachegen.cc:1197 #, c-format msgid "Couldn't stat source package list %s" msgstr "Hindi ma-stat ang talaan ng pagkukunan ng pakete %s" -#: apt-pkg/pkgcachegen.cc:1238 apt-pkg/pkgcachegen.cc:1342 -#: apt-pkg/pkgcachegen.cc:1348 apt-pkg/pkgcachegen.cc:1505 +#: apt-pkg/pkgcachegen.cc:1285 apt-pkg/pkgcachegen.cc:1389 +#: apt-pkg/pkgcachegen.cc:1395 apt-pkg/pkgcachegen.cc:1552 msgid "Reading package lists" msgstr "Binabasa ang Listahan ng mga Pakete" -#: apt-pkg/pkgcachegen.cc:1255 +#: apt-pkg/pkgcachegen.cc:1302 msgid "Collecting File Provides" msgstr "Kinukuha ang Talaksang Provides" -#: apt-pkg/pkgcachegen.cc:1447 apt-pkg/pkgcachegen.cc:1454 +#: apt-pkg/pkgcachegen.cc:1494 apt-pkg/pkgcachegen.cc:1501 msgid "IO Error saving source cache" msgstr "IO Error sa pag-imbak ng source cache" @@ -3199,22 +3199,22 @@ 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/indexcopy.cc:236 apt-pkg/indexcopy.cc:766 +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:764 #, c-format msgid "Wrote %i records.\n" msgstr "Nagsulat ng %i na record.\n" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:768 +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:766 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "Nagsulat ng %i na record na may %i na talaksang kulang.\n" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:771 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:769 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "Nagsulat ng %i na record na may %i na talaksang mismatch\n" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:774 +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:772 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" diff --git a/po/uk.po b/po/uk.po index 0dac6fb6d..2af2bd7ee 100644 --- a/po/uk.po +++ b/po/uk.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: apt-all\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-04-03 14:20+0200\n" +"POT-Creation-Date: 2013-04-08 15:40+0200\n" "PO-Revision-Date: 2012-09-25 20:19+0300\n" "Last-Translator: A. Bondarenko \n" "Language-Team: Українська \n" @@ -164,7 +164,7 @@ msgstr " Таблиця версій:" #: cmdline/apt-cache.cc:1683 cmdline/apt-cdrom.cc:198 cmdline/apt-config.cc:81 #: cmdline/apt-get.cc:3363 cmdline/apt-mark.cc:375 -#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:590 +#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:591 #: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147 #, c-format msgid "%s %s for %s compiled on %s %s\n" @@ -1639,7 +1639,7 @@ msgstr "Внутрішня помилка" #. Only warn if there are no sources.list.d. #. Only warn if there is no sources.list file. -#: methods/mirror.cc:95 apt-inst/extract.cc:465 +#: methods/mirror.cc:95 apt-inst/extract.cc:464 #: apt-pkg/contrib/cdromutl.cc:183 apt-pkg/contrib/fileutl.cc:400 #: apt-pkg/contrib/fileutl.cc:513 apt-pkg/sourcelist.cc:208 #: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:108 @@ -1769,7 +1769,7 @@ msgstr "" " -c=? Читати зазначений конфігураційний файл\n" " -o=? Вказати довільну опцію, наприклад, -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1339 +#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1386 #, c-format msgid "Unable to write to %s" msgstr "Неможливо записати в %s" @@ -1778,33 +1778,33 @@ msgstr "Неможливо записати в %s" msgid "Cannot get debconf version. Is debconf installed?" msgstr "Неможливо визначити версію debconf. Він встановлений?" -#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:348 +#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:349 msgid "Package extension list is too long" msgstr "Список розширень, припустимих для пакунків, занадто довгий" #: ftparchive/apt-ftparchive.cc:173 ftparchive/apt-ftparchive.cc:190 -#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:263 -#: ftparchive/apt-ftparchive.cc:277 ftparchive/apt-ftparchive.cc:299 +#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:264 +#: ftparchive/apt-ftparchive.cc:278 ftparchive/apt-ftparchive.cc:300 #, c-format msgid "Error processing directory %s" msgstr "Помилка обробки директорії %s" -#: ftparchive/apt-ftparchive.cc:261 +#: ftparchive/apt-ftparchive.cc:262 msgid "Source extension list is too long" msgstr "" "Список розширень, припустимих для пакунків з вихідними текстами, занадто " "довгий" -#: ftparchive/apt-ftparchive.cc:378 +#: ftparchive/apt-ftparchive.cc:379 msgid "Error writing header to contents file" msgstr "Помилка запису заголовка в повний перелік вмісту пакунків (Contents)" -#: ftparchive/apt-ftparchive.cc:408 +#: ftparchive/apt-ftparchive.cc:409 #, c-format msgid "Error processing contents %s" msgstr "Помилка обробки повного переліку вмісту пакунків (Contents) %s" -#: ftparchive/apt-ftparchive.cc:596 +#: ftparchive/apt-ftparchive.cc:597 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -1892,11 +1892,11 @@ msgstr "" " -c=? Використати зазначений конфігураційний файл\n" " -o=? Вказати довільний параметр конфігурації" -#: ftparchive/apt-ftparchive.cc:802 +#: ftparchive/apt-ftparchive.cc:803 msgid "No selections matched" msgstr "Збігів не виявлено" -#: ftparchive/apt-ftparchive.cc:880 +#: ftparchive/apt-ftparchive.cc:881 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "У групі пакунків '%s' відсутні деякі файли" @@ -1924,8 +1924,8 @@ msgstr "" msgid "Unable to open DB file %s: %s" msgstr "Не вдалося відкрити файл БД %s: %s" -#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:181 apt-inst/extract.cc:193 -#: apt-inst/extract.cc:210 +#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:179 apt-inst/extract.cc:192 +#: apt-inst/extract.cc:209 #, c-format msgid "Failed to stat %s" msgstr "Не вдалося одержати атрибути %s" @@ -2003,22 +2003,22 @@ msgstr " Перевищено ліміт в %sB в DeLink.\n" msgid "Archive had no package field" msgstr "Архів не мав поля 'package'" -#: ftparchive/writer.cc:411 ftparchive/writer.cc:698 +#: ftparchive/writer.cc:411 ftparchive/writer.cc:701 #, fuzzy, c-format msgid " %s has no override entry\n" msgstr " Відсутній запис про перепризначення (override) для %s\n" -#: ftparchive/writer.cc:479 ftparchive/writer.cc:814 +#: ftparchive/writer.cc:479 ftparchive/writer.cc:845 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " пакунок %s супроводжується %s, а не %s\n" -#: ftparchive/writer.cc:708 +#: ftparchive/writer.cc:711 #, fuzzy, c-format msgid " %s has no source override entry\n" msgstr " Відсутній запис про перепризначення вихідних текстів для %s\n" -#: ftparchive/writer.cc:712 +#: ftparchive/writer.cc:715 #, fuzzy, c-format msgid " %s has no binary override entry either\n" msgstr " Крім того, відсутній запис про бінарне перепризначення для %s\n" @@ -2092,7 +2092,7 @@ msgstr "Помилка зчитування під час обчислення M msgid "Problem unlinking %s" msgstr "Не вдалося видалити %s" -#: ftparchive/multicompress.cc:373 apt-inst/extract.cc:188 +#: ftparchive/multicompress.cc:373 apt-inst/extract.cc:187 #, c-format msgid "Failed to rename %s to %s" msgstr "Не вдалося перейменувати %s на %s" @@ -2241,56 +2241,56 @@ msgstr "Не вдалося записати файл %s" msgid "Failed to close file %s" msgstr "Не вдалося закрити файл %s" -#: apt-inst/extract.cc:96 apt-inst/extract.cc:167 +#: apt-inst/extract.cc:94 apt-inst/extract.cc:165 #, c-format msgid "The path %s is too long" msgstr "Шлях %s занадто довгий" -#: apt-inst/extract.cc:127 +#: apt-inst/extract.cc:125 #, c-format msgid "Unpacking %s more than once" msgstr "Розпакування %s більш ніж один раз" -#: apt-inst/extract.cc:137 +#: apt-inst/extract.cc:135 #, fuzzy, c-format msgid "The directory %s is diverted" msgstr "Директорія %s є відхиленою (diverted)" -#: apt-inst/extract.cc:147 +#: apt-inst/extract.cc:145 #, c-format msgid "The package is trying to write to the diversion target %s/%s" msgstr "Пакунок пробує записати у ціль з diversion %s/%s" -#: apt-inst/extract.cc:157 apt-inst/extract.cc:300 +#: apt-inst/extract.cc:155 apt-inst/extract.cc:299 #, fuzzy msgid "The diversion path is too long" msgstr "Шлях 'diversion' є занадто довгим" -#: apt-inst/extract.cc:243 +#: apt-inst/extract.cc:242 #, c-format msgid "The directory %s is being replaced by a non-directory" msgstr "Директорія %s замінюється не директорією" -#: apt-inst/extract.cc:283 +#: apt-inst/extract.cc:282 #, fuzzy msgid "Failed to locate node in its hash bucket" msgstr "Не вдалося знайти вузол у його наборі хешів" -#: apt-inst/extract.cc:287 +#: apt-inst/extract.cc:286 msgid "The path is too long" msgstr "Шлях занадто довгий" -#: apt-inst/extract.cc:415 +#: apt-inst/extract.cc:414 #, c-format msgid "Overwrite package match with no version for %s" msgstr "Перезаписати відповідність пакунка без версії для %s" -#: apt-inst/extract.cc:432 +#: apt-inst/extract.cc:431 #, c-format msgid "File %s/%s overwrites the one in the package %s" msgstr "Файл %s/%s перезаписує інший файл в пакунку %s" -#: apt-inst/extract.cc:492 +#: apt-inst/extract.cc:491 #, c-format msgid "Unable to stat %s" msgstr "Неможливо прочитати атрибути %s" @@ -2683,59 +2683,59 @@ msgstr "Цей APT не підтримує систему призначення msgid "The package cache was built for a different architecture" msgstr "Кеш пакунків був побудований для іншої архітектури" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "Depends" msgstr "Залежності (Depends)" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "PreDepends" msgstr "Пре-Залежності (PreDepends)" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "Suggests" msgstr "Пропонує (Suggests)" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Recommends" msgstr "Рекомендує (Recommends)" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Conflicts" msgstr "Конфлікти (Conflicts)" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Replaces" msgstr "Заміняє (Replaces)" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Obsoletes" msgstr "Застарілі (Obsoletes)" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Breaks" msgstr "Ламає (Breaks)" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Enhances" msgstr "Покращує (Enhances)" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "important" msgstr "важливі (important)" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "required" msgstr "необхідні (required)" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "standard" msgstr "стандартні (standard)" -#: apt-pkg/pkgcache.cc:319 +#: apt-pkg/pkgcache.cc:328 msgid "optional" msgstr "необов'язкові (optional)" -#: apt-pkg/pkgcache.cc:319 +#: apt-pkg/pkgcache.cc:328 msgid "extra" msgstr "додаткові (extra)" @@ -2837,12 +2837,12 @@ msgstr "Відкриття %s" msgid "Line %u too long in source list %s." msgstr "Рядок %u є занадто довгим у переліку джерел %s." -#: apt-pkg/sourcelist.cc:285 +#: apt-pkg/sourcelist.cc:289 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "Спотворений рядок %u у переліку джерел %s (тип)" -#: apt-pkg/sourcelist.cc:289 +#: apt-pkg/sourcelist.cc:293 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "Невідомий тип '%s' на рядку %u в переліку джерел %s" @@ -3008,14 +3008,14 @@ msgstr "Кеш має несумісну систему призначення #. TRANSLATOR: The first placeholder is a package name, #. the other two should be copied verbatim as they include debug info #: apt-pkg/pkgcachegen.cc:218 apt-pkg/pkgcachegen.cc:228 -#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:325 -#: apt-pkg/pkgcachegen.cc:333 apt-pkg/pkgcachegen.cc:375 -#: apt-pkg/pkgcachegen.cc:379 apt-pkg/pkgcachegen.cc:396 -#: apt-pkg/pkgcachegen.cc:406 apt-pkg/pkgcachegen.cc:410 -#: apt-pkg/pkgcachegen.cc:414 apt-pkg/pkgcachegen.cc:435 -#: apt-pkg/pkgcachegen.cc:477 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:525 apt-pkg/pkgcachegen.cc:556 -#: apt-pkg/pkgcachegen.cc:570 +#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:319 +#: apt-pkg/pkgcachegen.cc:332 apt-pkg/pkgcachegen.cc:374 +#: apt-pkg/pkgcachegen.cc:378 apt-pkg/pkgcachegen.cc:395 +#: apt-pkg/pkgcachegen.cc:403 apt-pkg/pkgcachegen.cc:407 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:432 +#: apt-pkg/pkgcachegen.cc:471 apt-pkg/pkgcachegen.cc:509 +#: apt-pkg/pkgcachegen.cc:516 apt-pkg/pkgcachegen.cc:547 +#: apt-pkg/pkgcachegen.cc:561 #, c-format msgid "Error occurred while processing %s (%s%d)" msgstr "Виникла помилка під час обробки %s (%s%d)" @@ -3036,27 +3036,27 @@ msgstr "Ого! Ви перевищили кількість описів, як msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "Ого! Ви перевищили кількість залежностей, які APT може обробити." -#: apt-pkg/pkgcachegen.cc:577 +#: apt-pkg/pkgcachegen.cc:568 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "Пакунок %s %s не був знайдений під час обробки залежностей" -#: apt-pkg/pkgcachegen.cc:1150 +#: apt-pkg/pkgcachegen.cc:1197 #, c-format msgid "Couldn't stat source package list %s" msgstr "Не вдалося прочитати атрибути переліку вихідних текстів %s" -#: apt-pkg/pkgcachegen.cc:1238 apt-pkg/pkgcachegen.cc:1342 -#: apt-pkg/pkgcachegen.cc:1348 apt-pkg/pkgcachegen.cc:1505 +#: apt-pkg/pkgcachegen.cc:1285 apt-pkg/pkgcachegen.cc:1389 +#: apt-pkg/pkgcachegen.cc:1395 apt-pkg/pkgcachegen.cc:1552 msgid "Reading package lists" msgstr "Зчитування переліків пакунків" -#: apt-pkg/pkgcachegen.cc:1255 +#: apt-pkg/pkgcachegen.cc:1302 #, fuzzy msgid "Collecting File Provides" msgstr "Збирання інформації про 'File Provides'" -#: apt-pkg/pkgcachegen.cc:1447 apt-pkg/pkgcachegen.cc:1454 +#: apt-pkg/pkgcachegen.cc:1494 apt-pkg/pkgcachegen.cc:1501 msgid "IO Error saving source cache" msgstr "Помилка IO під час збереження кешу вихідних текстів" @@ -3270,22 +3270,22 @@ msgstr "Записується новий перелік вихідних тек msgid "Source list entries for this disc are:\n" msgstr "Перелік вихідних текстів для цього диска:\n" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:766 +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:764 #, c-format msgid "Wrote %i records.\n" msgstr "Записано %i записів.\n" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:768 +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:766 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "Записано %i записів з %i відсутніми файлами.\n" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:771 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:769 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "Записано %i записів з %i невідповідними файлам\n" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:774 +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:772 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "Записано %i записів з %i відсутніми і %i невідповідними файлами\n" diff --git a/po/vi.po b/po/vi.po index ec6fdc6fc..9e8c1a78a 100644 --- a/po/vi.po +++ b/po/vi.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.9.7.5\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-04-03 14:20+0200\n" +"POT-Creation-Date: 2013-04-08 15:40+0200\n" "PO-Revision-Date: 2012-11-20 14:12+0700\n" "Last-Translator: Trần Ngọc Quân \n" "Language-Team: Vietnamese \n" @@ -160,7 +160,7 @@ msgstr " Bảng phiên bản:" #: cmdline/apt-cache.cc:1683 cmdline/apt-cdrom.cc:198 cmdline/apt-config.cc:81 #: cmdline/apt-get.cc:3363 cmdline/apt-mark.cc:375 -#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:590 +#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:591 #: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147 #, c-format msgid "%s %s for %s compiled on %s %s\n" @@ -1619,7 +1619,7 @@ msgstr "Gặp lỗi nội bộ" #. Only warn if there are no sources.list.d. #. Only warn if there is no sources.list file. -#: methods/mirror.cc:95 apt-inst/extract.cc:465 +#: methods/mirror.cc:95 apt-inst/extract.cc:464 #: apt-pkg/contrib/cdromutl.cc:183 apt-pkg/contrib/fileutl.cc:400 #: apt-pkg/contrib/fileutl.cc:513 apt-pkg/sourcelist.cc:208 #: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:108 @@ -1750,7 +1750,7 @@ msgstr "" " -c=? Đọc tập tin cấu hình này\n" " -o=? Đặt một tùy chọn cấu hình nhiệm ý, v.d. “-o dir::cache=/tmp”\n" -#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1339 +#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1386 #, c-format msgid "Unable to write to %s" msgstr "Không thể ghi vào %s" @@ -1759,31 +1759,31 @@ msgstr "Không thể ghi vào %s" msgid "Cannot get debconf version. Is debconf installed?" msgstr "Không thể lấy phiên bản debconf. Debconf có được cài đặt chưa?" -#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:348 +#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:349 msgid "Package extension list is too long" msgstr "Danh sách mở rộng gói quá dài" #: ftparchive/apt-ftparchive.cc:173 ftparchive/apt-ftparchive.cc:190 -#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:263 -#: ftparchive/apt-ftparchive.cc:277 ftparchive/apt-ftparchive.cc:299 +#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:264 +#: ftparchive/apt-ftparchive.cc:278 ftparchive/apt-ftparchive.cc:300 #, c-format msgid "Error processing directory %s" msgstr "Gặp lỗi khi xử lý thư mục %s" -#: ftparchive/apt-ftparchive.cc:261 +#: ftparchive/apt-ftparchive.cc:262 msgid "Source extension list is too long" msgstr "Danh sách mở rộng nguồn quá dài" -#: ftparchive/apt-ftparchive.cc:378 +#: ftparchive/apt-ftparchive.cc:379 msgid "Error writing header to contents file" msgstr "Gặp lỗi khi ghi phần đầu vào tập tin nộị dung" -#: ftparchive/apt-ftparchive.cc:408 +#: ftparchive/apt-ftparchive.cc:409 #, c-format msgid "Error processing contents %s" msgstr "Gặp lỗi khi xử lý nội dung %s" -#: ftparchive/apt-ftparchive.cc:596 +#: ftparchive/apt-ftparchive.cc:597 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -1879,11 +1879,11 @@ msgstr "" " -c=? \t\tĐọc tập tin cấu hình này\n" " -o=? \t\tLập một tùy chọn cấu hình nhiệm ý, v.d. “-o dir::cache=/tmp”" -#: ftparchive/apt-ftparchive.cc:802 +#: ftparchive/apt-ftparchive.cc:803 msgid "No selections matched" msgstr "Không có điều đã chọn khớp được" -#: ftparchive/apt-ftparchive.cc:880 +#: ftparchive/apt-ftparchive.cc:881 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "Thiếu một số tập tin trong nhóm tập tin gói “%s”." @@ -1911,8 +1911,8 @@ msgstr "" msgid "Unable to open DB file %s: %s" msgstr "Không thể mở tập tin cơ sở dữ liệu %s: %s." -#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:181 apt-inst/extract.cc:193 -#: apt-inst/extract.cc:210 +#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:179 apt-inst/extract.cc:192 +#: apt-inst/extract.cc:209 #, c-format msgid "Failed to stat %s" msgstr "Việc lấy thông tin toàn bộ cho %s bị lỗi" @@ -1990,22 +1990,22 @@ msgstr " Hết hạn bỏ liên kết của %sB.\n" msgid "Archive had no package field" msgstr "Kho không có trường gói" -#: ftparchive/writer.cc:411 ftparchive/writer.cc:698 +#: ftparchive/writer.cc:411 ftparchive/writer.cc:701 #, c-format msgid " %s has no override entry\n" msgstr " %s không có mục ghi đè\n" -#: ftparchive/writer.cc:479 ftparchive/writer.cc:814 +#: ftparchive/writer.cc:479 ftparchive/writer.cc:845 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " người bảo trì %s là %s không phải %s\n" -#: ftparchive/writer.cc:708 +#: ftparchive/writer.cc:711 #, c-format msgid " %s has no source override entry\n" msgstr " %s không có mục ghi đè nguồn\n" -#: ftparchive/writer.cc:712 +#: ftparchive/writer.cc:715 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s cũng không có mục ghi đè nhị phân\n" @@ -2079,7 +2079,7 @@ msgstr "Việc đọc khi tính MD5 bị lỗi" msgid "Problem unlinking %s" msgstr "Gặp lỗi khi bỏ liên kết %s" -#: ftparchive/multicompress.cc:373 apt-inst/extract.cc:188 +#: ftparchive/multicompress.cc:373 apt-inst/extract.cc:187 #, c-format msgid "Failed to rename %s to %s" msgstr "Việc đổi tên %s thành %s bị lỗi" @@ -2226,54 +2226,54 @@ msgstr "Việc ghi tập tin %s gặp lỗi" msgid "Failed to close file %s" msgstr "Việc đóng tập tin %s gặp lỗi" -#: apt-inst/extract.cc:96 apt-inst/extract.cc:167 +#: apt-inst/extract.cc:94 apt-inst/extract.cc:165 #, c-format msgid "The path %s is too long" msgstr "Đường dẫn %s quá dài" -#: apt-inst/extract.cc:127 +#: apt-inst/extract.cc:125 #, c-format msgid "Unpacking %s more than once" msgstr "Đang giải nén %s nhiều lần" -#: apt-inst/extract.cc:137 +#: apt-inst/extract.cc:135 #, c-format msgid "The directory %s is diverted" msgstr "Thư mục %s bị trệch hướng" -#: apt-inst/extract.cc:147 +#: apt-inst/extract.cc:145 #, c-format msgid "The package is trying to write to the diversion target %s/%s" msgstr "Gói này đang cố ghi vào đích trệch đi %s/%s" -#: apt-inst/extract.cc:157 apt-inst/extract.cc:300 +#: apt-inst/extract.cc:155 apt-inst/extract.cc:299 msgid "The diversion path is too long" msgstr "Đường dẫn trệch đi quá dài." -#: apt-inst/extract.cc:243 +#: apt-inst/extract.cc:242 #, c-format msgid "The directory %s is being replaced by a non-directory" msgstr "Thư mục %s đang được thay thế do điều không phải là thư mục" -#: apt-inst/extract.cc:283 +#: apt-inst/extract.cc:282 msgid "Failed to locate node in its hash bucket" msgstr "Việc định vị điểm nút trong hộp băm nó bị lỗi" -#: apt-inst/extract.cc:287 +#: apt-inst/extract.cc:286 msgid "The path is too long" msgstr "Đường dẫn quá dài" -#: apt-inst/extract.cc:415 +#: apt-inst/extract.cc:414 #, c-format msgid "Overwrite package match with no version for %s" msgstr "Ghi đè lên gói đã khớp mà không có phiên bản cho %s" -#: apt-inst/extract.cc:432 +#: apt-inst/extract.cc:431 #, c-format msgid "File %s/%s overwrites the one in the package %s" msgstr "Tập tin %s/%s ghi đè lên điều trong gói %s" -#: apt-inst/extract.cc:492 +#: apt-inst/extract.cc:491 #, c-format msgid "Unable to stat %s" msgstr "Không thể lấy các thông tin về %s" @@ -2663,59 +2663,59 @@ msgstr "Trình APT này không hỗ trợ hệ thống điều khiển phiên b msgid "The package cache was built for a different architecture" msgstr "Bộ nhớ tạm gói được xây dựng cho một kiến trức khác" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "Depends" msgstr "Phụ thuộc" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "PreDepends" msgstr "Phụ thuộc sẵn" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "Suggests" msgstr "Đề nghị" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Recommends" msgstr "Khuyến khích" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Conflicts" msgstr "Xung đột" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Replaces" msgstr "Thay thế" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Obsoletes" msgstr "Làm cũ" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Breaks" msgstr "Làm hư" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Enhances" msgstr "Tăng cường" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "important" msgstr "quan trọng" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "required" msgstr "yêu cầu" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "standard" msgstr "chuẩn" -#: apt-pkg/pkgcache.cc:319 +#: apt-pkg/pkgcache.cc:328 msgid "optional" msgstr "tùy chọn" -#: apt-pkg/pkgcache.cc:319 +#: apt-pkg/pkgcache.cc:328 msgid "extra" msgstr "bổ sung" @@ -2824,12 +2824,12 @@ msgstr "Đang mở %s" msgid "Line %u too long in source list %s." msgstr "Dòng %u quá dài trong danh sách nguồn %s." -#: apt-pkg/sourcelist.cc:285 +#: apt-pkg/sourcelist.cc:289 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "Gặp dòng dạng sai %u trong danh sách nguồn %s (kiểu)." -#: apt-pkg/sourcelist.cc:289 +#: apt-pkg/sourcelist.cc:293 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "Không biết kiểu “%s” trên dòng %u trong danh sách nguồn %s." @@ -2996,14 +2996,14 @@ msgstr "Bộ nhớ tạm có hệ thống điêu khiển phiên bản không tư #. TRANSLATOR: The first placeholder is a package name, #. the other two should be copied verbatim as they include debug info #: apt-pkg/pkgcachegen.cc:218 apt-pkg/pkgcachegen.cc:228 -#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:325 -#: apt-pkg/pkgcachegen.cc:333 apt-pkg/pkgcachegen.cc:375 -#: apt-pkg/pkgcachegen.cc:379 apt-pkg/pkgcachegen.cc:396 -#: apt-pkg/pkgcachegen.cc:406 apt-pkg/pkgcachegen.cc:410 -#: apt-pkg/pkgcachegen.cc:414 apt-pkg/pkgcachegen.cc:435 -#: apt-pkg/pkgcachegen.cc:477 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:525 apt-pkg/pkgcachegen.cc:556 -#: apt-pkg/pkgcachegen.cc:570 +#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:319 +#: apt-pkg/pkgcachegen.cc:332 apt-pkg/pkgcachegen.cc:374 +#: apt-pkg/pkgcachegen.cc:378 apt-pkg/pkgcachegen.cc:395 +#: apt-pkg/pkgcachegen.cc:403 apt-pkg/pkgcachegen.cc:407 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:432 +#: apt-pkg/pkgcachegen.cc:471 apt-pkg/pkgcachegen.cc:509 +#: apt-pkg/pkgcachegen.cc:516 apt-pkg/pkgcachegen.cc:547 +#: apt-pkg/pkgcachegen.cc:561 #, c-format msgid "Error occurred while processing %s (%s%d)" msgstr "Gặp lỗi khi xử lý %s (%s%d)" @@ -3024,26 +3024,26 @@ msgstr "Ồ, bạn đã vượt quá số mô tả mà trình APT này có thể msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "Ồ, bạn đã vượt quá số cách phụ thuộc mà trình APT này có thể quản lý." -#: apt-pkg/pkgcachegen.cc:577 +#: apt-pkg/pkgcachegen.cc:568 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "Không tìm thấy gói %s %s khi xử lý quan hệ phụ thuộc của tập tin" -#: apt-pkg/pkgcachegen.cc:1150 +#: apt-pkg/pkgcachegen.cc:1197 #, c-format msgid "Couldn't stat source package list %s" msgstr "Không thể lấy các thông tin về danh sách gói nguồn %s" -#: apt-pkg/pkgcachegen.cc:1238 apt-pkg/pkgcachegen.cc:1342 -#: apt-pkg/pkgcachegen.cc:1348 apt-pkg/pkgcachegen.cc:1505 +#: apt-pkg/pkgcachegen.cc:1285 apt-pkg/pkgcachegen.cc:1389 +#: apt-pkg/pkgcachegen.cc:1395 apt-pkg/pkgcachegen.cc:1552 msgid "Reading package lists" msgstr "Đang đọc các danh sách gói" -#: apt-pkg/pkgcachegen.cc:1255 +#: apt-pkg/pkgcachegen.cc:1302 msgid "Collecting File Provides" msgstr "Đang tập hợp các Nhà cung cấp Tập tin" -#: apt-pkg/pkgcachegen.cc:1447 apt-pkg/pkgcachegen.cc:1454 +#: apt-pkg/pkgcachegen.cc:1494 apt-pkg/pkgcachegen.cc:1501 msgid "IO Error saving source cache" msgstr "Lỗi nhập/xuất khi lưu bộ nhớ tạm nguồn" @@ -3261,22 +3261,22 @@ 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 nhập danh sách nguồn cho đĩa này:\n" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:766 +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:764 #, c-format msgid "Wrote %i records.\n" msgstr "Mới ghi %i mục ghi.\n" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:768 +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:766 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "Mới ghi %i mục ghi với %i tập tin còn thiếu.\n" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:771 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:769 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "Mới ghi %i mục ghi với %i tập tin không khớp với nhau\n" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:774 +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:772 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" diff --git a/po/zh_CN.po b/po/zh_CN.po index b5e3a8c2a..6ac4536b9 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.8.0~pre1\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-04-03 14:20+0200\n" +"POT-Creation-Date: 2013-04-08 15:40+0200\n" "PO-Revision-Date: 2010-08-26 14:42+0800\n" "Last-Translator: Aron Xu \n" "Language-Team: Chinese (simplified) \n" @@ -156,7 +156,7 @@ msgstr " 版本列表:" #: cmdline/apt-cache.cc:1683 cmdline/apt-cdrom.cc:198 cmdline/apt-config.cc:81 #: cmdline/apt-get.cc:3363 cmdline/apt-mark.cc:375 -#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:590 +#: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:591 #: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147 #, c-format msgid "%s %s for %s compiled on %s %s\n" @@ -1557,7 +1557,7 @@ msgstr "内部错误" #. Only warn if there are no sources.list.d. #. Only warn if there is no sources.list file. -#: methods/mirror.cc:95 apt-inst/extract.cc:465 +#: methods/mirror.cc:95 apt-inst/extract.cc:464 #: apt-pkg/contrib/cdromutl.cc:183 apt-pkg/contrib/fileutl.cc:400 #: apt-pkg/contrib/fileutl.cc:513 apt-pkg/sourcelist.cc:208 #: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:108 @@ -1678,7 +1678,7 @@ msgstr "" " -c=? 读指定的配置文件\n" " -o=? 设置任意指定的配置选项,例如 -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1339 +#: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1386 #, c-format msgid "Unable to write to %s" msgstr "无法写入 %s" @@ -1687,31 +1687,31 @@ msgstr "无法写入 %s" msgid "Cannot get debconf version. Is debconf installed?" msgstr "无法获得 debconf 的版本。您安装了 debconf 吗?" -#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:348 +#: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:349 msgid "Package extension list is too long" msgstr "软件包的扩展列表太长" #: ftparchive/apt-ftparchive.cc:173 ftparchive/apt-ftparchive.cc:190 -#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:263 -#: ftparchive/apt-ftparchive.cc:277 ftparchive/apt-ftparchive.cc:299 +#: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:264 +#: ftparchive/apt-ftparchive.cc:278 ftparchive/apt-ftparchive.cc:300 #, c-format msgid "Error processing directory %s" msgstr "处理目录 %s 时出错" -#: ftparchive/apt-ftparchive.cc:261 +#: ftparchive/apt-ftparchive.cc:262 msgid "Source extension list is too long" msgstr "源扩展列表太长" -#: ftparchive/apt-ftparchive.cc:378 +#: ftparchive/apt-ftparchive.cc:379 msgid "Error writing header to contents file" msgstr "将头写入到目录文件时出错" -#: ftparchive/apt-ftparchive.cc:408 +#: ftparchive/apt-ftparchive.cc:409 #, c-format msgid "Error processing contents %s" msgstr "处理目录 %s 时出错" -#: ftparchive/apt-ftparchive.cc:596 +#: ftparchive/apt-ftparchive.cc:597 msgid "" "Usage: apt-ftparchive [options] command\n" "Commands: packages binarypath [overridefile [pathprefix]]\n" @@ -1791,11 +1791,11 @@ msgstr "" " -c=? 读取指定配置文件\n" " -o=? 设置任意指定的配置选项" -#: ftparchive/apt-ftparchive.cc:802 +#: ftparchive/apt-ftparchive.cc:803 msgid "No selections matched" msgstr "没有任何选定项是匹配的" -#: ftparchive/apt-ftparchive.cc:880 +#: ftparchive/apt-ftparchive.cc:881 #, c-format msgid "Some files are missing in the package file group `%s'" msgstr "软件包文件组“%s”中缺少一些文件" @@ -1822,8 +1822,8 @@ msgstr "" msgid "Unable to open DB file %s: %s" msgstr "无法打开数据库文件 %s:%s" -#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:181 apt-inst/extract.cc:193 -#: apt-inst/extract.cc:210 +#: ftparchive/cachedb.cc:127 apt-inst/extract.cc:179 apt-inst/extract.cc:192 +#: apt-inst/extract.cc:209 #, c-format msgid "Failed to stat %s" msgstr "无法获得 %s 的状态" @@ -1901,22 +1901,22 @@ msgstr " 达到了 DeLink 的上限 %sB。\n" msgid "Archive had no package field" msgstr "归档文件没有包含 package 字段" -#: ftparchive/writer.cc:411 ftparchive/writer.cc:698 +#: ftparchive/writer.cc:411 ftparchive/writer.cc:701 #, c-format msgid " %s has no override entry\n" msgstr " %s 中没有 override 项\n" -#: ftparchive/writer.cc:479 ftparchive/writer.cc:814 +#: ftparchive/writer.cc:479 ftparchive/writer.cc:845 #, c-format msgid " %s maintainer is %s not %s\n" msgstr " %s 的维护者 %s 并非 %s\n" -#: ftparchive/writer.cc:708 +#: ftparchive/writer.cc:711 #, c-format msgid " %s has no source override entry\n" msgstr " %s 没有源代码的 override 项\n" -#: ftparchive/writer.cc:712 +#: ftparchive/writer.cc:715 #, c-format msgid " %s has no binary override entry either\n" msgstr " %s 中没有二进制文件的 override 项\n" @@ -1990,7 +1990,7 @@ msgstr "在计算 MD5 校验和时无法读取数据" msgid "Problem unlinking %s" msgstr "在使用 unlink 删除 %s 时出错" -#: ftparchive/multicompress.cc:373 apt-inst/extract.cc:188 +#: ftparchive/multicompress.cc:373 apt-inst/extract.cc:187 #, c-format msgid "Failed to rename %s to %s" msgstr "无法将 %s 重命名为 %s" @@ -2135,54 +2135,54 @@ msgstr "无法写入文件 %s" msgid "Failed to close file %s" msgstr "无法关闭文件 %s" -#: apt-inst/extract.cc:96 apt-inst/extract.cc:167 +#: apt-inst/extract.cc:94 apt-inst/extract.cc:165 #, c-format msgid "The path %s is too long" msgstr "路径名 %s 太长" -#: apt-inst/extract.cc:127 +#: apt-inst/extract.cc:125 #, c-format msgid "Unpacking %s more than once" msgstr "%s 被解包了不只一次" -#: apt-inst/extract.cc:137 +#: apt-inst/extract.cc:135 #, c-format msgid "The directory %s is diverted" msgstr "目录 %s 已被转移" -#: apt-inst/extract.cc:147 +#: apt-inst/extract.cc:145 #, c-format msgid "The package is trying to write to the diversion target %s/%s" msgstr "该软件包正尝试写入转移对象 %s/%s" -#: apt-inst/extract.cc:157 apt-inst/extract.cc:300 +#: apt-inst/extract.cc:155 apt-inst/extract.cc:299 msgid "The diversion path is too long" msgstr "该转移路径太长" -#: apt-inst/extract.cc:243 +#: apt-inst/extract.cc:242 #, c-format msgid "The directory %s is being replaced by a non-directory" msgstr "目录 %s 要被一个非目录的文件替换" -#: apt-inst/extract.cc:283 +#: apt-inst/extract.cc:282 msgid "Failed to locate node in its hash bucket" msgstr "无法在其散列桶中分配节点" -#: apt-inst/extract.cc:287 +#: apt-inst/extract.cc:286 msgid "The path is too long" msgstr "路径名太长" -#: apt-inst/extract.cc:415 +#: apt-inst/extract.cc:414 #, c-format msgid "Overwrite package match with no version for %s" msgstr "用来覆盖的软件包不属于 %s 的任何版本" -#: apt-inst/extract.cc:432 +#: apt-inst/extract.cc:431 #, c-format msgid "File %s/%s overwrites the one in the package %s" msgstr "文件 %s/%s 会覆盖属于软件包 %s 中的同名文件" -#: apt-inst/extract.cc:492 +#: apt-inst/extract.cc:491 #, c-format msgid "Unable to stat %s" msgstr "无法读取 %s 的状态" @@ -2563,59 +2563,59 @@ msgstr "本程序目前不支持“%s”版本系统" msgid "The package cache was built for a different architecture" msgstr "软件包缓存区是为其它架构的硬件构建的" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "Depends" msgstr "依赖" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "PreDepends" msgstr "预依赖" -#: apt-pkg/pkgcache.cc:305 +#: apt-pkg/pkgcache.cc:314 msgid "Suggests" msgstr "建议" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Recommends" msgstr "推荐" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Conflicts" msgstr "冲突" -#: apt-pkg/pkgcache.cc:306 +#: apt-pkg/pkgcache.cc:315 msgid "Replaces" msgstr "替换" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Obsoletes" msgstr "废弃" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Breaks" msgstr "破坏" -#: apt-pkg/pkgcache.cc:307 +#: apt-pkg/pkgcache.cc:316 msgid "Enhances" msgstr "增强" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "important" msgstr "重要" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "required" msgstr "必需" -#: apt-pkg/pkgcache.cc:318 +#: apt-pkg/pkgcache.cc:327 msgid "standard" msgstr "标准" -#: apt-pkg/pkgcache.cc:319 +#: apt-pkg/pkgcache.cc:328 msgid "optional" msgstr "可选" -#: apt-pkg/pkgcache.cc:319 +#: apt-pkg/pkgcache.cc:328 msgid "extra" msgstr "额外" @@ -2715,12 +2715,12 @@ msgstr "正在打开 %s" msgid "Line %u too long in source list %s." msgstr "源列表 %2$s 的第 %1$u 行太长了。" -#: apt-pkg/sourcelist.cc:285 +#: apt-pkg/sourcelist.cc:289 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "在源列表 %2$s 中第 %1$u 行的格式有误(类型)" -#: apt-pkg/sourcelist.cc:289 +#: apt-pkg/sourcelist.cc:293 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "无法识别在源列表 %3$s 里,第 %2$u 行中的软件包类别“%1$s”" @@ -2883,14 +2883,14 @@ msgstr "软件包暂存区使用的是不兼容的版本控制系统" #. TRANSLATOR: The first placeholder is a package name, #. the other two should be copied verbatim as they include debug info #: apt-pkg/pkgcachegen.cc:218 apt-pkg/pkgcachegen.cc:228 -#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:325 -#: apt-pkg/pkgcachegen.cc:333 apt-pkg/pkgcachegen.cc:375 -#: apt-pkg/pkgcachegen.cc:379 apt-pkg/pkgcachegen.cc:396 -#: apt-pkg/pkgcachegen.cc:406 apt-pkg/pkgcachegen.cc:410 -#: apt-pkg/pkgcachegen.cc:414 apt-pkg/pkgcachegen.cc:435 -#: apt-pkg/pkgcachegen.cc:477 apt-pkg/pkgcachegen.cc:517 -#: apt-pkg/pkgcachegen.cc:525 apt-pkg/pkgcachegen.cc:556 -#: apt-pkg/pkgcachegen.cc:570 +#: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:319 +#: apt-pkg/pkgcachegen.cc:332 apt-pkg/pkgcachegen.cc:374 +#: apt-pkg/pkgcachegen.cc:378 apt-pkg/pkgcachegen.cc:395 +#: apt-pkg/pkgcachegen.cc:403 apt-pkg/pkgcachegen.cc:407 +#: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:432 +#: apt-pkg/pkgcachegen.cc:471 apt-pkg/pkgcachegen.cc:509 +#: apt-pkg/pkgcachegen.cc:516 apt-pkg/pkgcachegen.cc:547 +#: apt-pkg/pkgcachegen.cc:561 #, fuzzy, c-format msgid "Error occurred while processing %s (%s%d)" msgstr "处理 %s (FindPkg)时出错" @@ -2911,26 +2911,26 @@ msgstr "哇,软件包说明数量超出了本 APT 的处理能力。" msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "哇,依赖关系数量超出了本 APT 的处理能力。" -#: apt-pkg/pkgcachegen.cc:577 +#: apt-pkg/pkgcachegen.cc:568 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "当处理文件依赖关系时,无法找到软件包 %s %s" -#: apt-pkg/pkgcachegen.cc:1150 +#: apt-pkg/pkgcachegen.cc:1197 #, c-format msgid "Couldn't stat source package list %s" msgstr "无法获取源软件包列表 %s 的状态" -#: apt-pkg/pkgcachegen.cc:1238 apt-pkg/pkgcachegen.cc:1342 -#: apt-pkg/pkgcachegen.cc:1348 apt-pkg/pkgcachegen.cc:1505 +#: apt-pkg/pkgcachegen.cc:1285 apt-pkg/pkgcachegen.cc:1389 +#: apt-pkg/pkgcachegen.cc:1395 apt-pkg/pkgcachegen.cc:1552 msgid "Reading package lists" msgstr "正在读取软件包列表" -#: apt-pkg/pkgcachegen.cc:1255 +#: apt-pkg/pkgcachegen.cc:1302 msgid "Collecting File Provides" msgstr "正在收集文件所提供的软件包" -#: apt-pkg/pkgcachegen.cc:1447 apt-pkg/pkgcachegen.cc:1454 +#: apt-pkg/pkgcachegen.cc:1494 apt-pkg/pkgcachegen.cc:1501 msgid "IO Error saving source cache" msgstr "无法读取或写入软件源缓存" @@ -3137,22 +3137,22 @@ msgstr "正在写入新的源列表\n" msgid "Source list entries for this disc are:\n" msgstr "对应于该盘片的软件源设置项是:\n" -#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:766 +#: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:764 #, c-format msgid "Wrote %i records.\n" msgstr "已写入 %i 条记录。\n" -#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:768 +#: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:766 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "已写入 %i 条记录,并有 %i 个文件缺失。\n" -#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:771 +#: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:769 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "已写入 %i 条记录,并有 %i 个文件不匹配\n" -#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:774 +#: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:772 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "已写入 %i 条记录,并有 %i 个缺失,以及 %i 个文件不匹配\n" diff --git a/po/zh_TW.po b/po/zh_TW.po index 31d72e553..11d299a3b 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: 0.5.4\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-04-03 14:20+0200\n" +"POT-Creation-Date: 2013-04-08 15:40+0200\n" "PO-Revision-Date: 2009-01-28 10:41+0800\n" "Last-Translator: Tetralet \n" "Language-Team: Debian-user in Chinese [Big5] Date: Mon, 8 Apr 2013 17:30:18 +0200 Subject: releasing version 0.9.7.9~exp3 --- configure.in | 2 +- debian/changelog | 4 ++-- doc/apt-verbatim.ent | 2 +- doc/po/apt-doc.pot | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/configure.in b/configure.in index 0e2ced4fd..91a157c33 100644 --- a/configure.in +++ b/configure.in @@ -18,7 +18,7 @@ AC_CONFIG_AUX_DIR(buildlib) AC_CONFIG_HEADER(include/config.h:buildlib/config.h.in include/apti18n.h:buildlib/apti18n.h.in) PACKAGE="apt" -PACKAGE_VERSION="0.9.7.9~exp2" +PACKAGE_VERSION="0.9.7.9~exp3" PACKAGE_MAIL="APT Development Team " AC_DEFINE_UNQUOTED(PACKAGE,"$PACKAGE") AC_DEFINE_UNQUOTED(PACKAGE_VERSION,"$PACKAGE_VERSION") diff --git a/debian/changelog b/debian/changelog index 2910501b8..242cd9303 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -apt (0.9.7.9~exp3) UNRELEASED; urgency=low +apt (0.9.7.9~exp3) experimental; urgency=low [ Michael Vogt ] * apt-pkg/sourcelist.cc: @@ -30,7 +30,7 @@ apt (0.9.7.9~exp3) UNRELEASED; urgency=low [ Marc Deslauriers ] * make apt-ftparchive generate missing deb-src hashes (LP: #1078697) - -- Michael Vogt Mon, 08 Apr 2013 08:43:21 +0200 + -- Michael Vogt Mon, 08 Apr 2013 17:09:00 +0200 apt (0.9.7.9~exp2) experimental; urgency=low diff --git a/doc/apt-verbatim.ent b/doc/apt-verbatim.ent index ff8f3485d..2d6e96091 100644 --- a/doc/apt-verbatim.ent +++ b/doc/apt-verbatim.ent @@ -213,7 +213,7 @@ "> - + diff --git a/doc/po/apt-doc.pot b/doc/po/apt-doc.pot index e23f5699f..9ecd1ac03 100644 --- a/doc/po/apt-doc.pot +++ b/doc/po/apt-doc.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: apt-doc 0.9.7.9~exp2\n" "Report-Msgid-Bugs-To: APT Development Team \n" -"POT-Creation-Date: 2013-04-03 14:20+0300\n" +"POT-Creation-Date: 2013-04-08 15:40+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" -- cgit v1.2.3 From 8cfdf5a04e05b9cada084f04259a2590be9c7cca Mon Sep 17 00:00:00 2001 From: "bubulle@debian.org" <> Date: Tue, 9 Apr 2013 07:54:11 +0200 Subject: Fix typo --- doc/po/fr.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/po/fr.po b/doc/po/fr.po index 11e30906c..437a75d71 100644 --- a/doc/po/fr.po +++ b/doc/po/fr.po @@ -4224,7 +4224,7 @@ msgid "" "locale (where the order would be \"fr, de, en\"). " msgstr "" -"La liste par défaut contient « environment » and « en ». La valeur " +"La liste par défaut contient « environment » et « en ». La valeur " "« environment » a une signification spéciale : elle sera remplacée, à " "l'exécution, par les codes de langues utilisés dans la variable " "d'environnement LC_MESSAGES. Les codes utilisés en double " -- cgit v1.2.3 From c90c334748c4eabbe3fc190ad320b193bf9cfb71 Mon Sep 17 00:00:00 2001 From: "bubulle@debian.org" <> Date: Tue, 9 Apr 2013 07:54:52 +0200 Subject: Reformat PO file --- doc/po/fr.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/po/fr.po b/doc/po/fr.po index 437a75d71..b785968bc 100644 --- a/doc/po/fr.po +++ b/doc/po/fr.po @@ -4251,7 +4251,7 @@ msgid "" "files which are found in /var/lib/apt/lists/ will be " "added to the end of the list (after an implicit \"none\")." msgstr "" -"Note : afin d'éviter des problèmes lorsqu'APT est exécuté dans différents " +"Note : afin d'éviter des problèmes lorsqu'APT est exécuté dans différents " "environnements (p. ex. par différents utilisateurs ou différents " "programmes), tous les fichiers « Translation »qui sont trouvés dans " "/var/lib/apt/lists/ seront ajoutés à la fin de la liste " -- cgit v1.2.3 From 8c1b831e8a93c5baa0c8423e7885d44d25beb13d Mon Sep 17 00:00:00 2001 From: "bubulle@debian.org" <> Date: Tue, 9 Apr 2013 07:56:45 +0200 Subject: Complete translation --- doc/po/fr.po | 293 +++++++++++++++++++++++++++++++++++++++-------------------- 1 file changed, 196 insertions(+), 97 deletions(-) diff --git a/doc/po/fr.po b/doc/po/fr.po index b785968bc..8663c0758 100644 --- a/doc/po/fr.po +++ b/doc/po/fr.po @@ -5,13 +5,13 @@ # Translators: # Jérôme Marant, 2000. # Philippe Batailler, 2005. -# Christian Perrier , 2009, 2010, 2011, 2012. +# Christian Perrier , 2009, 2010, 2011, 2012, 2013. msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: APT Development Team \n" "POT-Creation-Date: 2013-04-02 15:13+0300\n" -"PO-Revision-Date: 2012-07-04 21:08-0600\n" +"PO-Revision-Date: 2013-04-09 07:56+0200\n" "Last-Translator: Christian Perrier \n" "Language-Team: French \n" "Language: fr\n" @@ -51,7 +51,8 @@ msgid "" msgstr "" "\n" -"\t\tPage qualité\n" +"\t\tPage qualité" +"\n" "\t\n" "\">\n" @@ -73,7 +74,8 @@ msgstr "" "\n" "Bogues\n" -" Page des bogues d'APT. \n" +" Page des bogues d'APT<" +"/ulink>. \n" " Si vous souhaitez signaler un bogue à propos d'APT, veuillez lire\n" " /usr/share/doc/debian/bug-reporting.txt ou utiliser\n" " la commande &reportbug;.\n" @@ -88,7 +90,8 @@ msgid "" "\n" "Author\n" -" APT was written by the APT team apt@packages.debian.org.\n" +" APT was written by the APT team apt@packages.debian.org<" +"/email>.\n" " \n" " \n" "\">\n" @@ -96,7 +99,8 @@ msgstr "" "\n" "Author\n" -" APT a été écrit par l'équipe de développement APT apt@packages.debian.org.\n" +" APT a été écrit par l'équipe de développement APT " +"apt@packages.debian.org.\n" " \n" " \n" "\">\n" @@ -152,10 +156,12 @@ msgid "" " \n" " \n" " \n" -" Configuration File; Specify a configuration file to use. \n" +" Configuration File; Specify a configuration file to use. " +"\n" " The program will read the default configuration file and then this \n" " configuration file. If configuration settings need to be set before the\n" -" default configuration files are parsed specify a file with the APT_CONFIG\n" +" default configuration files are parsed specify a file with the " +"APT_CONFIG\n" " environment variable. See &apt-conf; for syntax information.\n" " \n" " \n" @@ -164,10 +170,15 @@ msgstr "" " \n" " \n" " \n" -" Fichier de configuration ; indique le fichier de configuration à utiliser. \n" -" Le programme lira le fichier de configuration par défaut puis le fichier indiqué ici. \n" -" Si les réglages de configuration doivent être établis avant l'analyse des fichiers\n" -" de configuration par défaut, un fichier peut être indiqué avec la variable d'environnement APT_CONFIG. Veuillez consulter &apt-conf; pour des informations sur la syntaxe d'utilisation. \n" +" Fichier de configuration ; indique le fichier de " +"configuration à utiliser. \n" +" Le programme lira le fichier de configuration par défaut puis le fichier " +"indiqué ici. \n" +" Si les réglages de configuration doivent être établis avant l'analyse " +"des fichiers\n" +" de configuration par défaut, un fichier peut être indiqué avec la " +"variable d'environnement APT_CONFIG. Veuillez consulter " +"&apt-conf; pour des informations sur la syntaxe d'utilisation. \n" " \n" " \n" " \n" @@ -192,8 +203,10 @@ msgstr "" " \n" " \n" " Définir une option de configuration ; permet de régler\n" -" une option de configuration donnée. La syntaxe est .\n" -" et peuvent être utilisées plusieurs fois\n" +" une option de configuration donnée. La syntaxe est .\n" +" et peuvent être utilisées " +"plusieurs fois\n" " pour définir des options différentes.\n" " \n" " \n" @@ -207,7 +220,8 @@ msgid "" "\n" "All command line options may be set using the configuration file, the\n" +" All command line options may be set using the configuration file, " +"the\n" " descriptions indicate the configuration option to set. For boolean\n" " options you can override the config file by using something like \n" " ,, \n" @@ -218,9 +232,12 @@ msgstr "" "\n" "Toutes les options de la ligne de commande peuvent être définies dans le fichier de configuration, \n" -" les descriptions indiquant l'option de configuration concernée. Pour les options\n" -" booléennes, vous pouvez inverser les réglages du fichiers de configuration avec \n" +" Toutes les options de la ligne de commande peuvent être définies " +"dans le fichier de configuration, \n" +" les descriptions indiquant l'option de configuration concernée. Pour les " +"options\n" +" booléennes, vous pouvez inverser les réglages du fichiers de configuration " +"avec \n" " ,, \n" " et d'autres variantes analogues.\n" " \n" @@ -233,13 +250,15 @@ msgid "" "/etc/apt/apt.conf\n" " APT configuration file.\n" -" Configuration Item: Dir::Etc::Main.\n" +" Configuration Item: Dir::Etc::Main." +"\n" " \n" msgstr "" "/etc/apt/apt.conf\n" " Fichier de configuration d'APT.\n" -" Élément de configuration : Dir::Etc::Main.\n" +" Élément de configuration : Dir::Etc::Main.<" +"/listitem>\n" " \n" #. type: Plain text @@ -248,13 +267,15 @@ msgstr "" msgid "" " /etc/apt/apt.conf.d/\n" " APT configuration file fragments.\n" -" Configuration Item: Dir::Etc::Parts.\n" +" Configuration Item: Dir::Etc::Parts." +"\n" " \n" "\">\n" msgstr "" " /etc/apt/apt.conf.d/\n" " Fragments du fichier de configuration d'APT.\n" -" Élément de configuration : Dir::Etc::Parts.\n" +" Élément de configuration : Dir::Etc::Parts.<" +"/listitem>\n" " \n" "\">\n" @@ -265,28 +286,34 @@ msgid "" "&cachedir;/archives/\n" " Storage area for retrieved package files.\n" -" Configuration Item: Dir::Cache::Archives.\n" +" Configuration Item: Dir::Cache::Archives.<" +"/listitem>\n" " \n" msgstr "" "&cachedir;/archives/\n" " Zone de stockage des fichiers récupérés.\n" -" Élément de configuration : Dir::Cache::Archives.\n" +" Élément de configuration : Dir::Cache::Archives.<" +"/para>\n" " \n" #. type: Plain text #: apt.ent:109 #, no-wrap msgid "" -" &cachedir;/archives/partial/\n" +" &cachedir;/archives/partial/<" +"/term>\n" " Storage area for package files in transit.\n" -" Configuration Item: Dir::Cache::Archives (partial will be implicitly appended)\n" +" Configuration Item: Dir::Cache::Archives (" +"partial will be implicitly appended)\n" " \n" "\">\n" msgstr "" -" &cachedir;/archives/partial/\n" +" &cachedir;/archives/partial/<" +"/term>\n" " Zone de stockage pour les paquets en transit.\n" -" Élément de configuration : Dir::Cache::Archives (partial sera implicitement ajouté). \n" +" Élément de configuration : Dir::Cache::Archives (<" +"filename>partial sera implicitement ajouté). \n" " \n" "\">\n" @@ -301,14 +328,18 @@ msgid "" " i.e. a preference to get certain packages\n" " from a separate source\n" " or from a different version of a distribution.\n" -" Configuration Item: Dir::Etc::Preferences.\n" +" Configuration Item: Dir::Etc::Preferences.<" +"/listitem>\n" " \n" msgstr "" "/etc/apt/preferences\n" " Fichier des préférences.\n" -" C'est dans ce fichier qu'on peut faire de l'épinglage (pinning) c'est-à-dire, choisir d'obtenir des paquets d'une source distincte ou d'une distribution différente.\n" -" Élément de configuration : Dir::Etc::Preferences.\n" +" C'est dans ce fichier qu'on peut faire de l'épinglage (pinning) " +"c'est-à-dire, choisir d'obtenir des paquets d'une source distincte ou d'une " +"distribution différente.\n" +" Élément de configuration : Dir::Etc::Preferences.<" +"/para>\n" " \n" #. type: Plain text @@ -317,13 +348,15 @@ msgstr "" msgid "" " /etc/apt/preferences.d/\n" " File fragments for the version preferences.\n" -" Configuration Item: Dir::Etc::PreferencesParts.\n" +" Configuration Item: Dir::Etc::PreferencesParts." +"\n" " \n" "\">\n" msgstr "" " /etc/apt/preferences.d/\n" " Fragments de fichiers pour la préférence des versions.\n" -" Élément de configuration : Dir::Etc::PreferencesParts.\n" +" Élément de configuration : Dir::Etc::PreferencesParts" +".\n" " \n" "\">\n" @@ -334,28 +367,35 @@ msgid "" "/etc/apt/sources.list\n" " Locations to fetch packages from.\n" -" Configuration Item: Dir::Etc::SourceList.\n" +" Configuration Item: Dir::Etc::SourceList.<" +"/listitem>\n" " \n" msgstr "" "/etc/apt/sources.list\n" " Emplacement pour la récupération des paquets.\n" -" Élément de configuration : Dir::Etc::SourceList.\n" +" Élément de configuration : Dir::Etc::SourceList.<" +"/para>\n" " \n" #. type: Plain text #: apt.ent:137 #, no-wrap msgid "" -" /etc/apt/sources.list.d/\n" +" /etc/apt/sources.list.d/" +"\n" " File fragments for locations to fetch packages from.\n" -" Configuration Item: Dir::Etc::SourceParts.\n" +" Configuration Item: Dir::Etc::SourceParts.<" +"/listitem>\n" " \n" "\">\n" msgstr "" -" /etc/apt/sources.list.d/\n" -" Fragments de fichiers définissant les emplacements de récupération de paquets.\n" -" Élément de configuration : Dir::Etc::SourceParts.\n" +" /etc/apt/sources.list.d/" +"\n" +" Fragments de fichiers définissant les emplacements de " +"récupération de paquets.\n" +" Élément de configuration : Dir::Etc::SourceParts.<" +"/para>\n" " \n" "\">\n" @@ -365,30 +405,38 @@ msgstr "" msgid "" "&statedir;/lists/\n" -" Storage area for state information for each package resource specified in\n" +" Storage area for state information for each package " +"resource specified in\n" " &sources-list;\n" -" Configuration Item: Dir::State::Lists.\n" +" Configuration Item: Dir::State::Lists.<" +"/listitem>\n" " \n" msgstr "" "&statedir;/lists/\n" -" Zone de stockage pour les informations qui concernent chaque ressource de paquet spécifiée dans &sources-list;\n" -" Élément de configuration : Dir::State::Lists.\n" +" Zone de stockage pour les informations qui concernent " +"chaque ressource de paquet spécifiée dans &sources-list;\n" +" Élément de configuration : Dir::State::Lists.<" +"/listitem>\n" " \n" #. type: Plain text #: apt.ent:150 #, no-wrap msgid "" -" &statedir;/lists/partial/\n" +" &statedir;/lists/partial/" +"\n" " Storage area for state information in transit.\n" -" Configuration Item: Dir::State::Lists (partial will be implicitly appended)\n" +" Configuration Item: Dir::State::Lists (" +"partial will be implicitly appended)\n" " \n" "\">\n" msgstr "" -" &statedir;/lists/partial/\n" +" &statedir;/lists/partial/" +"\n" " Zone de stockage pour les informations en transit.\n" -" Élément de configuration : Dir::State::Lists (partial sera implicitement ajouté).\n" +" Élément de configuration : Dir::State::Lists (<" +"filename>partial sera implicitement ajouté).\n" " \n" "\">\n" @@ -398,14 +446,18 @@ msgstr "" msgid "" "/etc/apt/trusted.gpg\n" -" Keyring of local trusted keys, new keys will be added here.\n" -" Configuration Item: Dir::Etc::Trusted.\n" +" Keyring of local trusted keys, new keys will be added " +"here.\n" +" Configuration Item: Dir::Etc::Trusted.<" +"/listitem>\n" " \n" msgstr "" "/etc/apt/trusted.gpg\n" -" Porte-clés des clés de confiance locales. Les nouvelles clés y seront ajoutées.\n" -" Élément de configuration: Dir::Etc::Trusted.\n" +" Porte-clés des clés de confiance locales. Les nouvelles " +"clés y seront ajoutées.\n" +" Élément de configuration: Dir::Etc::Trusted.<" +"/listitem>\n" " \n" #. type: Plain text @@ -413,16 +465,21 @@ msgstr "" #, no-wrap msgid "" " /etc/apt/trusted.gpg.d/\n" -" File fragments for the trusted keys, additional keyrings can\n" +" File fragments for the trusted keys, additional keyrings " +"can\n" " be stored here (by other packages or the administrator).\n" -" Configuration Item Dir::Etc::TrustedParts.\n" +" Configuration Item Dir::Etc::TrustedParts.<" +"/listitem>\n" " \n" "\">\n" msgstr "" " /etc/apt/trusted.gpg.d/\n" -" Fragments de fichiers pour les clés de signatures sûres. Des fichiers\n" -" supplémentaires peuvent être placés à cet endroit (par des paquets ou par l'administrateur).\n" -" Élément de configuration : Dir::Etc::TrustedParts.\n" +" Fragments de fichiers pour les clés de signatures sûres. " +"Des fichiers\n" +" supplémentaires peuvent être placés à cet endroit (par des paquets ou " +"par l'administrateur).\n" +" Élément de configuration : Dir::Etc::TrustedParts.<" +"/para>\n" " \n" "\">\n" @@ -431,7 +488,8 @@ msgstr "" #, no-wrap msgid "" "/var/lib/apt/extended_states\n" +" /var/lib/apt/extended_states<" +"/term>\n" " Status list of auto-installed packages.\n" " Configuration Item: Dir::State::extended_states.\n" " \n" @@ -439,9 +497,11 @@ msgid "" "\">\n" msgstr "" "/var/lib/apt/extended_states\n" +" /var/lib/apt/extended_states<" +"/term>\n" " Liste d'état des paquets installés automatiquement.\n" -" Élément de configuration : Dir::State::extended_states.\n" +" Élément de configuration : Dir::State::extended_states" +".\n" " \n" "\">\n" @@ -449,8 +509,10 @@ msgstr "" #: apt.ent:175 #, no-wrap msgid "" -"\n" +"\n" "\n" msgstr "\n" @@ -458,28 +520,39 @@ msgstr "\n" #: apt.ent:184 #, no-wrap msgid "" -"\n" "john@doe.org in 2009,\n" -" 2010 and Daniela Acme daniela@acme.us in 2010 together with the\n" -" Debian Dummy l10n Team debian-l10n-dummy@lists.debian.org.\n" +" The english translation was done by John Doe john@doe.org " +"in 2009,\n" +" 2010 and Daniela Acme daniela@acme.us in 2010 together " +"with the\n" +" Debian Dummy l10n Team debian-l10n-dummy@lists.debian.org" +".\n" "\">\n" msgstr "" "bubulle@debian.org (2000, 2005, 2009, 2010),\n" -" Équipe de traduction francophone de Debian debian-l10n-french@lists.debian.org\n" +" Jérôme Marant, Philippe Batailler, Christian Perrier " +"bubulle@debian.org (2000, 2005, 2009, 2010),\n" +" Équipe de traduction francophone de Debian " +"debian-l10n-french@lists.debian.org\n" "\">\n" #. type: Plain text #: apt.ent:195 #, no-wrap msgid "" -"\n" "\n" msgstr "" "\n" @@ -4050,8 +4124,12 @@ msgstr "" #. type: Content of: #: apt.conf.5.xml:497 #, no-wrap -msgid "Acquire::CompressionTypes::FileExtension \"Methodname\";" -msgstr "Acquire::CompressionTypes::ExtensionFichier \"NomMethode\";" +msgid "" +"Acquire::CompressionTypes::FileExtension \"<" +"replaceable>Methodname\";" +msgstr "" +"Acquire::CompressionTypes::ExtensionFichier \"<" +"replaceable>NomMethode\";" #. type: Content of: #: apt.conf.5.xml:492 @@ -4200,8 +4278,10 @@ msgstr "" #. type: Content of: #: apt.conf.5.xml:549 #, no-wrap -msgid "Acquire::Languages { \"environment\"; \"de\"; \"en\"; \"none\"; \"fr\"; };" -msgstr "Acquire::Languages { \"environment\"; \"fr\"; \"en\"; \"none\"; \"de\"; };" +msgid "" +"Acquire::Languages { \"environment\"; \"de\"; \"en\"; \"none\"; \"fr\"; };" +msgstr "" +"Acquire::Languages { \"environment\"; \"fr\"; \"en\"; \"none\"; \"de\"; };" #. type: Content of: #: apt.conf.5.xml:537 @@ -4260,12 +4340,12 @@ msgstr "" #. type: Content of: #: apt.conf.5.xml:559 msgid "When downloading, force to use only the IPv4 protocol." -msgstr "" +msgstr "Utilisation imposée du protocole IPv4 lors des téléchargements." #. type: Content of: #: apt.conf.5.xml:565 msgid "When downloading, force to use only the IPv6 protocol." -msgstr "" +msgstr "Utilisation imposée du protocole IPv6 lors des téléchargements." #. type: Content of: #: apt.conf.5.xml:572 @@ -4835,7 +4915,7 @@ msgstr "" #. TODO: provide a #. motivating example, except I haven't a clue why you'd want -#. to do this. +#. to do this. #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> #: apt.conf.5.xml:836 msgid "" @@ -5118,7 +5198,7 @@ msgstr "" "Le fichier &configureindex; contient un modèle de fichier montrant des " "exemples pour toutes les options existantes." -#. ? reading apt.conf +#. ? reading apt.conf #. type: Content of: <refentry><refsect1><para> #: apt.conf.5.xml:1175 msgid "&apt-cache;, &apt-config;, &apt-preferences;." @@ -5231,8 +5311,12 @@ msgstr "Priorités affectées par défaut" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> #: apt_preferences.5.xml:94 #, no-wrap -msgid "<command>apt-get install -t testing <replaceable>some-package</replaceable></command>\n" -msgstr "<command>apt-get install -t testing <replaceable>paquet</replaceable></command>\n" +msgid "" +"<command>apt-get install -t testing <replaceable>some-package</replaceable><" +"/command>\n" +msgstr "" +"<command>apt-get install -t testing <replaceable>paquet</replaceable><" +"/command>\n" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> #: apt_preferences.5.xml:97 @@ -6379,8 +6463,10 @@ msgstr "Suivre l'évolution d'une version par son nom de code" #: apt_preferences.5.xml:654 #, no-wrap msgid "" -"Explanation: Uninstall or do not install any Debian-originated package versions\n" -"Explanation: other than those in the distribution codenamed with &testing-codename; or sid\n" +"Explanation: Uninstall or do not install any Debian-originated package " +"versions\n" +"Explanation: other than those in the distribution codenamed with " +"&testing-codename; or sid\n" "Package: *\n" "Pin: release n=&testing-codename;\n" "Pin-Priority: 900\n" @@ -6728,11 +6814,13 @@ msgstr "Exemples :" #, no-wrap msgid "" "deb http://ftp.debian.org/debian &stable-codename; main contrib non-free\n" -"deb http://security.debian.org/ &stable-codename;/updates main contrib non-free\n" +"deb http://security.debian.org/ &stable-codename;/updates main contrib " +"non-free\n" " " msgstr "" "deb http://ftp.debian.org/debian &stable-codename; main contrib non-free\n" -"deb http://security.debian.org/ &stable-codename;/updates main contrib non-free\n" +"deb http://security.debian.org/ &stable-codename;/updates main contrib " +"non-free\n" " " #. type: Content of: <refentry><refsect1><title> @@ -8052,8 +8140,12 @@ msgstr "" #. type: Content of: <refentry><refsect1><para><programlisting> #: apt-ftparchive.1.xml:602 #, no-wrap -msgid "<command>apt-ftparchive</command> packages <replaceable>directory</replaceable> | <command>gzip</command> > <filename>Packages.gz</filename>\n" -msgstr "<command>apt-ftparchive</command> packages <replaceable>répertoire</replaceable> | <command>gzip</command> > <filename>Packages.gz</filename>\n" +msgid "" +"<command>apt-ftparchive</command> packages <replaceable>directory<" +"/replaceable> | <command>gzip</command> > <filename>Packages.gz</filename>\n" +msgstr "" +"<command>apt-ftparchive</command> packages <replaceable>répertoire<" +"/replaceable> | <command>gzip</command> > <filename>Packages.gz</filename>\n" #. type: Content of: <refentry><refsect1><para> #: apt-ftparchive.1.xml:598 @@ -8432,7 +8524,8 @@ msgid "" "Building Dependency Tree... Done" msgstr "" "# apt-get update\n" -"Réception de http://ftp.de.debian.org/debian-non-US/ stable/binary-i386/ Packages\n" +"Réception de http://ftp.de.debian.org/debian-non-US/ stable/binary-i386/ " +"Packages\n" "Réception de http://llug.sep.bnl.gov/debian/ testing/contrib Packages\n" "Lecture des listes de paquets... Fait\n" "Construction de l'arbre des dépendances... Fait" @@ -9152,9 +9245,11 @@ msgid "" "12 packages not fully installed or removed.\n" "Need to get 65.7M/66.7M of archives. After unpacking 26.5M will be used." msgstr "" -"206 paquets mis à jour, 8 nouvellement installés, 23 à enlever et 51 non mis à jour.\n" +"206 paquets mis à jour, 8 nouvellement installés, 23 à enlever et 51 non mis " +"à jour.\n" "12 paquets partiellement installés ou enlevés.\n" -"Il est nécessaire de prendre 65,7Mo/66,7Mo dans les archives. Après cette opération, 26,5Mo d'espace disque supplémentaires seront utilisés." +"Il est nécessaire de prendre 65,7Mo/66,7Mo dans les archives. Après cette " +"opération, 26,5Mo d'espace disque supplémentaires seront utilisés." #. type: <p></p> #: guide.sgml:470 @@ -9224,10 +9319,12 @@ msgid "" "11% [5 testing/non-free `Waiting for file' 0/32.1k 0%] 2203b/s 1m52s" msgstr "" "# apt-get update\n" -"Réception de :1 http://ftp.de.debian.org/debian-non-US/ stable/non-US/ Packages\n" +"Réception de :1 http://ftp.de.debian.org/debian-non-US/ stable/non-US/ " +"Packages\n" "Réception de :2 http://llug.sep.bnl.gov/debian/ testing/contrib Packages\n" "Atteint http://llug.sep.bnl.gov/debian/ testing/main Packages\n" -"Réception de :4 http://ftp.de.debian.org/debian-non-US/ unstable/binary-i386/ Packages\n" +"Réception de :4 http://ftp.de.debian.org/debian-non-US/ unstable/binary-i386/ " +"Packages\n" "Réception de :5 http://llug.sep.bnl.gov/debian/ testing/non-free Packages\n" "11% [5 testing/non-free `Attente du fichier' 0/32.1k 0%] 2203b/s 1m52s" @@ -9593,7 +9690,8 @@ msgstr "" " # apt-get update\n" " [ APT récupère les fichiers des paquets ]\n" " # apt-get dist-upgrade\n" -" [ APT récupère tous les fichiers nécessaires à la mise à jour de la machine distante ]" +" [ APT récupère tous les fichiers nécessaires à la mise à jour de la machine " +"distante ]" #. type: </example></p> #: offline.sgml:149 @@ -9714,7 +9812,8 @@ msgid "" " # awk '{print \"wget -O \" $2 \" \" $1}' < uris > /disc/wget-script" msgstr "" " # apt-get dist-upgrade \n" -" [ Répondre négativement à la question, pour être sûr(e) que les actions vous conviennent ]\n" +" [ Répondre négativement à la question, pour être sûr(e) que les actions vous " +"conviennent ]\n" " # apt-get -qq --print-uris dist-upgrade > uris\n" " # awk '{print \"wget -O \" $2 \" \" $1}' < uris > /disc/wget-script" -- cgit v1.2.3 From 3991e191e86c902e6764c7524e8f00791d8018b4 Mon Sep 17 00:00:00 2001 From: "bubulle@debian.org" <> Date: Tue, 9 Apr 2013 07:58:34 +0200 Subject: Complete French translation --- po/fr.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/fr.po b/po/fr.po index e7de53c30..0562482ff 100644 --- a/po/fr.po +++ b/po/fr.po @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: fr\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" "POT-Creation-Date: 2013-04-08 15:40+0200\n" -"PO-Revision-Date: 2013-03-24 08:57+0100\n" +"PO-Revision-Date: 2013-04-09 07:58+0200\n" "Last-Translator: Christian Perrier <bubulle@debian.org>\n" "Language-Team: French <debian-l10n-french@lists.debian.org>\n" "Language: fr\n" @@ -1540,9 +1540,9 @@ msgid "Temporary failure resolving '%s'" msgstr "Erreur temporaire de résolution de « %s »" #: methods/connect.cc:209 -#, fuzzy, c-format +#, c-format msgid "System error resolving '%s:%s'" -msgstr "Erreur système lors de la résolution de « %s:%s » (%s)" +msgstr "Erreur système lors de la résolution de « %s:%s »" #: methods/connect.cc:211 #, c-format -- cgit v1.2.3 From a2457f0ec8f0af82305cd6cf09837b73009d96ae Mon Sep 17 00:00:00 2001 From: "bubulle@debian.org" <> Date: Tue, 9 Apr 2013 07:59:33 +0200 Subject: Changelog entry for translation fixes --- debian/changelog | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/debian/changelog b/debian/changelog index 242cd9303..bf32cf624 100644 --- a/debian/changelog +++ b/debian/changelog @@ -30,6 +30,12 @@ apt (0.9.7.9~exp3) experimental; urgency=low [ Marc Deslauriers ] * make apt-ftparchive generate missing deb-src hashes (LP: #1078697) + [ Programs translations ] + * French translation completed (Christian Perrier) + + [ Manpages translations ] + * French translation completed (Christian Perrier) + -- Michael Vogt <mvo@debian.org> Mon, 08 Apr 2013 17:09:00 +0200 apt (0.9.7.9~exp2) experimental; urgency=low -- cgit v1.2.3 From b5595da902e62af7c295f1603ae5b43ba4cef281 Mon Sep 17 00:00:00 2001 From: "bubulle@debian.org" <> Date: Wed, 10 Apr 2013 11:28:11 +0200 Subject: Fix English spelling error in a message ('A error'). Unfuzzy translations. Closes: #705087 --- apt-pkg/acquire-item.cc | 2 +- debian/changelog | 4 ++++ methods/http.h | 2 +- po/apt-all.pot | 2 +- po/ar.po | 2 +- po/ast.po | 2 +- po/bg.po | 2 +- po/bs.po | 2 +- po/ca.po | 2 +- po/cs.po | 2 +- po/cy.po | 2 +- po/da.po | 2 +- po/de.po | 2 +- po/dz.po | 2 +- po/el.po | 2 +- po/es.po | 2 +- po/eu.po | 2 +- po/fi.po | 2 +- po/fr.po | 2 +- po/gl.po | 2 +- po/hu.po | 2 +- po/it.po | 2 +- po/ja.po | 2 +- po/km.po | 2 +- po/ko.po | 2 +- po/ku.po | 2 +- po/lt.po | 2 +- po/mr.po | 2 +- po/nb.po | 2 +- po/ne.po | 2 +- po/nl.po | 2 +- po/nn.po | 2 +- po/pl.po | 2 +- po/pt.po | 2 +- po/pt_BR.po | 2 +- po/ro.po | 2 +- po/ru.po | 2 +- po/sk.po | 2 +- po/sl.po | 2 +- po/sv.po | 2 +- po/th.po | 2 +- po/tl.po | 2 +- po/tr.po | 2 +- po/uk.po | 2 +- po/vi.po | 2 +- po/zh_CN.po | 2 +- po/zh_TW.po | 2 +- 47 files changed, 50 insertions(+), 46 deletions(-) diff --git a/apt-pkg/acquire-item.cc b/apt-pkg/acquire-item.cc index d12733747..7b800e42f 100644 --- a/apt-pkg/acquire-item.cc +++ b/apt-pkg/acquire-item.cc @@ -1515,7 +1515,7 @@ void pkgAcqMetaIndex::Failed(string Message,pkgAcquire::MethodConfig *Cnf) VerifiedSigFile.append(".gpg"); Rename(LastGoodSigFile, VerifiedSigFile); Status = StatTransientNetworkError; - _error->Warning(_("A error occurred during the signature " + _error->Warning(_("An error occurred during the signature " "verification. The repository is not updated " "and the previous index files will be used. " "GPG error: %s: %s\n"), diff --git a/debian/changelog b/debian/changelog index bf32cf624..7944d76ef 100644 --- a/debian/changelog +++ b/debian/changelog @@ -29,6 +29,10 @@ apt (0.9.7.9~exp3) experimental; urgency=low [ Marc Deslauriers ] * make apt-ftparchive generate missing deb-src hashes (LP: #1078697) + + [ Yaroslav Halchenko ] + * Fix English spelling error in a message ('A error'). Unfuzzy + translations. Closes: #705087 [ Programs translations ] * French translation completed (Christian Perrier) diff --git a/methods/http.h b/methods/http.h index 7a3ccda54..7446119cd 100644 --- a/methods/http.h +++ b/methods/http.h @@ -158,7 +158,7 @@ class HttpMethod : public pkgAcqMethod ERROR_UNRECOVERABLE, /** \brief The server reported a error with a error content page */ ERROR_WITH_CONTENT_PAGE, - /** \brief A error on the client side */ + /** \brief An error on the client side */ ERROR_NOT_FROM_SERVER, /** \brief A redirect or retry request */ TRY_AGAIN_OR_REDIRECT diff --git a/po/apt-all.pot b/po/apt-all.pot index a69dc9295..763d8a034 100644 --- a/po/apt-all.pot +++ b/po/apt-all.pot @@ -2773,7 +2773,7 @@ msgstr "" #: apt-pkg/acquire-item.cc:1518 #, c-format msgid "" -"A error occurred during the signature verification. The repository is not " +"An error occurred during the signature verification. The repository is not " "updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" diff --git a/po/ar.po b/po/ar.po index d42708726..ffb394131 100644 --- a/po/ar.po +++ b/po/ar.po @@ -2805,7 +2805,7 @@ msgstr "" #: apt-pkg/acquire-item.cc:1518 #, c-format msgid "" -"A error occurred during the signature verification. The repository is not " +"An error occurred during the signature verification. The repository is not " "updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" diff --git a/po/ast.po b/po/ast.po index cfa13d9ca..b3c87bd06 100644 --- a/po/ast.po +++ b/po/ast.po @@ -3038,7 +3038,7 @@ msgstr "Conflictu de distribución: %s (esperábase %s pero obtúvose %s)" #: apt-pkg/acquire-item.cc:1518 #, c-format msgid "" -"A error occurred during the signature verification. The repository is not " +"An error occurred during the signature verification. The repository is not " "updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" "Hebo un fallu durante la verificación de la robla. El repositoriu nun ta " diff --git a/po/bg.po b/po/bg.po index dd59498e1..0768e88e7 100644 --- a/po/bg.po +++ b/po/bg.po @@ -3096,7 +3096,7 @@ msgstr "Конфликт в дистрибуцията: %s (очаквана: %s #: apt-pkg/acquire-item.cc:1518 #, c-format msgid "" -"A error occurred during the signature verification. The repository is not " +"An error occurred during the signature verification. The repository is not " "updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" "Грешка при проверка на цифровия подпис. Хранилището не е обновено и ще се " diff --git a/po/bs.po b/po/bs.po index 126df2b43..7dbe5c0be 100644 --- a/po/bs.po +++ b/po/bs.po @@ -2802,7 +2802,7 @@ msgstr "" #: apt-pkg/acquire-item.cc:1518 #, c-format msgid "" -"A error occurred during the signature verification. The repository is not " +"An error occurred during the signature verification. The repository is not " "updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" diff --git a/po/ca.po b/po/ca.po index df78aa61f..2bfee4717 100644 --- a/po/ca.po +++ b/po/ca.po @@ -3079,7 +3079,7 @@ msgstr "Distribució en conflicte: %s (s'esperava %s però s'ha obtingut %s)" #: apt-pkg/acquire-item.cc:1518 #, c-format msgid "" -"A error occurred during the signature verification. The repository is not " +"An error occurred during the signature verification. The repository is not " "updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" "S'ha produït un error durant la verificació de la signatura. El dipòsit no " diff --git a/po/cs.po b/po/cs.po index 84753c438..4064c164b 100644 --- a/po/cs.po +++ b/po/cs.po @@ -3037,7 +3037,7 @@ msgstr "Konfliktní distribuce: %s (očekáváno %s, obdrženo %s)" #: apt-pkg/acquire-item.cc:1518 #, c-format msgid "" -"A error occurred during the signature verification. The repository is not " +"An error occurred during the signature verification. The repository is not " "updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" "Při ověřování podpisů se objevila chyba. Repositář není aktualizovaný, tudíž " diff --git a/po/cy.po b/po/cy.po index c689bbc91..c1867d70a 100644 --- a/po/cy.po +++ b/po/cy.po @@ -3096,7 +3096,7 @@ msgstr "" #: apt-pkg/acquire-item.cc:1518 #, c-format msgid "" -"A error occurred during the signature verification. The repository is not " +"An error occurred during the signature verification. The repository is not " "updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" diff --git a/po/da.po b/po/da.po index f40831ac1..e2982b563 100644 --- a/po/da.po +++ b/po/da.po @@ -3062,7 +3062,7 @@ msgstr "Konfliktdistribution: %s (forventede %s men fik %s)" #: apt-pkg/acquire-item.cc:1518 #, c-format msgid "" -"A error occurred during the signature verification. The repository is not " +"An error occurred during the signature verification. The repository is not " "updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" "Der opstod en fejl under underskriftsbekræftelse. Arkivet er ikke opdateret " diff --git a/po/de.po b/po/de.po index 2b5ed7599..00f40344e 100644 --- a/po/de.po +++ b/po/de.po @@ -3153,7 +3153,7 @@ msgstr "Konflikt bei Distribution: %s (%s erwartet, aber %s bekommen)" #: apt-pkg/acquire-item.cc:1518 #, c-format msgid "" -"A error occurred during the signature verification. The repository is not " +"An error occurred during the signature verification. The repository is not " "updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" "Während der Überprüfung der Signatur trat ein Fehler auf. Das Repository " diff --git a/po/dz.po b/po/dz.po index be5733cd0..01854d2d6 100644 --- a/po/dz.po +++ b/po/dz.po @@ -3022,7 +3022,7 @@ msgstr "" #: apt-pkg/acquire-item.cc:1518 #, c-format msgid "" -"A error occurred during the signature verification. The repository is not " +"An error occurred during the signature verification. The repository is not " "updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" diff --git a/po/el.po b/po/el.po index 1ebee0ecb..75625de47 100644 --- a/po/el.po +++ b/po/el.po @@ -3055,7 +3055,7 @@ msgstr "" #: apt-pkg/acquire-item.cc:1518 #, c-format msgid "" -"A error occurred during the signature verification. The repository is not " +"An error occurred during the signature verification. The repository is not " "updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" diff --git a/po/es.po b/po/es.po index 7b4bbb931..286e5455b 100644 --- a/po/es.po +++ b/po/es.po @@ -3137,7 +3137,7 @@ msgstr "Distribución conflictiva: %s (se esperaba %s, pero se obtuvo %s)" #: apt-pkg/acquire-item.cc:1518 #, c-format msgid "" -"A error occurred during the signature verification. The repository is not " +"An error occurred during the signature verification. The repository is not " "updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" "Se produjo un error durante la verificación de las firmas. El repositorio no " diff --git a/po/eu.po b/po/eu.po index c11691f86..f327b113c 100644 --- a/po/eu.po +++ b/po/eu.po @@ -3019,7 +3019,7 @@ msgstr "" #: apt-pkg/acquire-item.cc:1518 #, c-format msgid "" -"A error occurred during the signature verification. The repository is not " +"An error occurred during the signature verification. The repository is not " "updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" diff --git a/po/fi.po b/po/fi.po index 183d7c395..1637a9d97 100644 --- a/po/fi.po +++ b/po/fi.po @@ -3011,7 +3011,7 @@ msgstr "" #: apt-pkg/acquire-item.cc:1518 #, c-format msgid "" -"A error occurred during the signature verification. The repository is not " +"An error occurred during the signature verification. The repository is not " "updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" diff --git a/po/fr.po b/po/fr.po index 0562482ff..835c0b206 100644 --- a/po/fr.po +++ b/po/fr.po @@ -3162,7 +3162,7 @@ msgstr "Distribution en conflit : %s (%s attendu, mais %s obtenu)" #: apt-pkg/acquire-item.cc:1518 #, c-format msgid "" -"A error occurred during the signature verification. The repository is not " +"An error occurred during the signature verification. The repository is not " "updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" "Une erreur s'est produite lors du contrôle de la signature. Le dépôt n'est " diff --git a/po/gl.po b/po/gl.po index 4cc56f784..12125eb54 100644 --- a/po/gl.po +++ b/po/gl.po @@ -3078,7 +3078,7 @@ msgstr "Conflito na distribución: %s (agardábase %s mais obtívose %s)" #: apt-pkg/acquire-item.cc:1518 #, c-format msgid "" -"A error occurred during the signature verification. The repository is not " +"An error occurred during the signature verification. The repository is not " "updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" "Produciuse un erro durante a verificación da sinatura. O repositorio non foi " diff --git a/po/hu.po b/po/hu.po index 5fb2a35b0..9cf645472 100644 --- a/po/hu.po +++ b/po/hu.po @@ -3086,7 +3086,7 @@ msgstr "Ütköző disztribúció: %s (a várt %s helyett %s érkezett)" #: apt-pkg/acquire-item.cc:1518 #, c-format msgid "" -"A error occurred during the signature verification. The repository is not " +"An error occurred during the signature verification. The repository is not " "updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" "Hiba történt az aláírás ellenőrzése közben. A tároló nem frissült, és az " diff --git a/po/it.po b/po/it.po index e67e03e0c..e0baac726 100644 --- a/po/it.po +++ b/po/it.po @@ -3132,7 +3132,7 @@ msgstr "Distribuzione in conflitto: %s (atteso %s ma ottenuto %s)" #: apt-pkg/acquire-item.cc:1518 #, c-format msgid "" -"A error occurred during the signature verification. The repository is not " +"An error occurred during the signature verification. The repository is not " "updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" "Si è verificato un errore nel verificare la firma. Il repository non è " diff --git a/po/ja.po b/po/ja.po index 44b51b4d9..399219f2f 100644 --- a/po/ja.po +++ b/po/ja.po @@ -3073,7 +3073,7 @@ msgstr "" #: apt-pkg/acquire-item.cc:1518 #, c-format msgid "" -"A error occurred during the signature verification. The repository is not " +"An error occurred during the signature verification. The repository is not " "updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" "署名照合中にエラーが発生しました。リポジトリは更新されず、過去のインデックス" diff --git a/po/km.po b/po/km.po index 17d6bf77b..bb7bd6ee1 100644 --- a/po/km.po +++ b/po/km.po @@ -2985,7 +2985,7 @@ msgstr "" #: apt-pkg/acquire-item.cc:1518 #, c-format msgid "" -"A error occurred during the signature verification. The repository is not " +"An error occurred during the signature verification. The repository is not " "updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" diff --git a/po/ko.po b/po/ko.po index 08a7dc594..a4d0af447 100644 --- a/po/ko.po +++ b/po/ko.po @@ -3011,7 +3011,7 @@ msgstr "배포판 충돌: %s (예상값 %s, 실제값 %s)" #: apt-pkg/acquire-item.cc:1518 #, c-format msgid "" -"A error occurred during the signature verification. The repository is not " +"An error occurred during the signature verification. The repository is not " "updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" "디지털 서명 확인에 오류가 발생했습니다. 저장고를 업데이트하지 않고\n" diff --git a/po/ku.po b/po/ku.po index d94563913..f7f2d0996 100644 --- a/po/ku.po +++ b/po/ku.po @@ -2818,7 +2818,7 @@ msgstr "" #: apt-pkg/acquire-item.cc:1518 #, c-format msgid "" -"A error occurred during the signature verification. The repository is not " +"An error occurred during the signature verification. The repository is not " "updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" diff --git a/po/lt.po b/po/lt.po index f23aee529..22e5fc152 100644 --- a/po/lt.po +++ b/po/lt.po @@ -2917,7 +2917,7 @@ msgstr "" #: apt-pkg/acquire-item.cc:1518 #, c-format msgid "" -"A error occurred during the signature verification. The repository is not " +"An error occurred during the signature verification. The repository is not " "updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" diff --git a/po/mr.po b/po/mr.po index ceeeaf33e..84ff30882 100644 --- a/po/mr.po +++ b/po/mr.po @@ -2994,7 +2994,7 @@ msgstr "" #: apt-pkg/acquire-item.cc:1518 #, c-format msgid "" -"A error occurred during the signature verification. The repository is not " +"An error occurred during the signature verification. The repository is not " "updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" diff --git a/po/nb.po b/po/nb.po index 1cab4eab2..d97d38d76 100644 --- a/po/nb.po +++ b/po/nb.po @@ -3034,7 +3034,7 @@ msgstr "Konflikt mellom distribusjoner: %s (forventet %s men fant %s)" #: apt-pkg/acquire-item.cc:1518 #, c-format msgid "" -"A error occurred during the signature verification. The repository is not " +"An error occurred during the signature verification. The repository is not " "updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" "En feil oppstod under signaturverifisering. Depotet er ikke oppdatert og den " diff --git a/po/ne.po b/po/ne.po index 48623413d..4d089bf20 100644 --- a/po/ne.po +++ b/po/ne.po @@ -2988,7 +2988,7 @@ msgstr "" #: apt-pkg/acquire-item.cc:1518 #, c-format msgid "" -"A error occurred during the signature verification. The repository is not " +"An error occurred during the signature verification. The repository is not " "updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" diff --git a/po/nl.po b/po/nl.po index 4d770805b..c3bec13e5 100644 --- a/po/nl.po +++ b/po/nl.po @@ -3082,7 +3082,7 @@ msgstr "Conflicterende distributie: %s (verwachtte %s, maar kreeg %s)" #: apt-pkg/acquire-item.cc:1518 #, c-format msgid "" -"A error occurred during the signature verification. The repository is not " +"An error occurred during the signature verification. The repository is not " "updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" "Er is een fout opgetreden bij de handtekeningcontrole. De pakketbron is niet " diff --git a/po/nn.po b/po/nn.po index 61a662795..89489066a 100644 --- a/po/nn.po +++ b/po/nn.po @@ -3007,7 +3007,7 @@ msgstr "" #: apt-pkg/acquire-item.cc:1518 #, c-format msgid "" -"A error occurred during the signature verification. The repository is not " +"An error occurred during the signature verification. The repository is not " "updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" diff --git a/po/pl.po b/po/pl.po index 3d7636dab..b8643a951 100644 --- a/po/pl.po +++ b/po/pl.po @@ -3108,7 +3108,7 @@ msgstr "Nieprawidłowa dystrybucja: %s (oczekiwano %s, a otrzymano %s)" #: apt-pkg/acquire-item.cc:1518 #, c-format msgid "" -"A error occurred during the signature verification. The repository is not " +"An error occurred during the signature verification. The repository is not " "updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" "Podczas weryfikacji podpisu wystąpił błąd. Nie zaktualizowano repozytorium i " diff --git a/po/pt.po b/po/pt.po index e958ead56..febe90d83 100644 --- a/po/pt.po +++ b/po/pt.po @@ -3098,7 +3098,7 @@ msgstr "Distribuição em conflito: %s (esperado %s mas obtido %s)" #: apt-pkg/acquire-item.cc:1518 #, c-format msgid "" -"A error occurred during the signature verification. The repository is not " +"An error occurred during the signature verification. The repository is not " "updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" "Ocorreu um erro durante a verificação da assinatura. O repositório não está " diff --git a/po/pt_BR.po b/po/pt_BR.po index 922279f9e..0a5317c70 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -3050,7 +3050,7 @@ msgstr "" #: apt-pkg/acquire-item.cc:1518 #, c-format msgid "" -"A error occurred during the signature verification. The repository is not " +"An error occurred during the signature verification. The repository is not " "updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" diff --git a/po/ro.po b/po/ro.po index 40236f373..1b6c6c06c 100644 --- a/po/ro.po +++ b/po/ro.po @@ -3057,7 +3057,7 @@ msgstr "" #: apt-pkg/acquire-item.cc:1518 #, c-format msgid "" -"A error occurred during the signature verification. The repository is not " +"An error occurred during the signature verification. The repository is not " "updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" diff --git a/po/ru.po b/po/ru.po index 01dd870f7..7ebebbd7f 100644 --- a/po/ru.po +++ b/po/ru.po @@ -3115,7 +3115,7 @@ msgstr "Конфликт распространения: %s (ожидался %s #: apt-pkg/acquire-item.cc:1518 #, c-format msgid "" -"A error occurred during the signature verification. The repository is not " +"An error occurred during the signature verification. The repository is not " "updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" "Произошла ошибка при проверке подписи. Репозиторий не обновлён и будут " diff --git a/po/sk.po b/po/sk.po index 033dd8f40..90392e27c 100644 --- a/po/sk.po +++ b/po/sk.po @@ -3058,7 +3058,7 @@ msgstr "V konflikte s distribúciou: %s (očakávalo sa %s ale dostali sme %s)" #: apt-pkg/acquire-item.cc:1518 #, c-format msgid "" -"A error occurred during the signature verification. The repository is not " +"An error occurred during the signature verification. The repository is not " "updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" "Počas overovania podpisu sa vyskytla chyba. Repozitár nie je aktualizovaný a " diff --git a/po/sl.po b/po/sl.po index ce627366c..2d92369d7 100644 --- a/po/sl.po +++ b/po/sl.po @@ -3061,7 +3061,7 @@ msgstr "Distribucija v sporu: %s (pričakovana %s, toda dobljena %s)" #: apt-pkg/acquire-item.cc:1518 #, c-format msgid "" -"A error occurred during the signature verification. The repository is not " +"An error occurred during the signature verification. The repository is not " "updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" "Med preverjanjem podpisa je prišlo do napake. Skladišče ni bilo posodobljeno " diff --git a/po/sv.po b/po/sv.po index ad79067a1..5f22dc4f6 100644 --- a/po/sv.po +++ b/po/sv.po @@ -3060,7 +3060,7 @@ msgstr "Konflikt i distribution: %s (förväntade %s men fick %s)" #: apt-pkg/acquire-item.cc:1518 #, c-format msgid "" -"A error occurred during the signature verification. The repository is not " +"An error occurred during the signature verification. The repository is not " "updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" "Ett fel inträffade vid verifiering av signaturen. Förrådet har inte " diff --git a/po/th.po b/po/th.po index 4d8229465..e093cd702 100644 --- a/po/th.po +++ b/po/th.po @@ -2990,7 +2990,7 @@ msgstr "ชุดจัดแจกขัดแย้งกัน: %s (ต้อ #: apt-pkg/acquire-item.cc:1518 #, c-format msgid "" -"A error occurred during the signature verification. The repository is not " +"An error occurred during the signature verification. The repository is not " "updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" "เกิดข้อผิดพลาดขณะตรวจสอบลายเซ็น จะไม่ปรับข้อมูลคลังแพกเกจนี้ และจะใช้แฟ้มดัชนีเก่า " diff --git a/po/tl.po b/po/tl.po index 6672d42c3..964710f42 100644 --- a/po/tl.po +++ b/po/tl.po @@ -3040,7 +3040,7 @@ msgstr "" #: apt-pkg/acquire-item.cc:1518 #, c-format msgid "" -"A error occurred during the signature verification. The repository is not " +"An error occurred during the signature verification. The repository is not " "updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" diff --git a/po/tr.po b/po/tr.po index a502f9e54..6a804edc0 100644 --- a/po/tr.po +++ b/po/tr.po @@ -3062,7 +3062,7 @@ msgstr "Dağıtım çakışması: %s (beklenen %s ama eldeki %s)" #: apt-pkg/acquire-item.cc:1521 #, c-format msgid "" -"A error occurred during the signature verification. The repository is not " +"An error occurred during the signature verification. The repository is not " "updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" "İmza doğrulama sırasında bir hata meydana geldi. Depo güncel değil ve önceki " diff --git a/po/uk.po b/po/uk.po index 2af2bd7ee..046caead1 100644 --- a/po/uk.po +++ b/po/uk.po @@ -3109,7 +3109,7 @@ msgstr "Конфліктуючий дистрибутив: %s (очікував #: apt-pkg/acquire-item.cc:1518 #, c-format msgid "" -"A error occurred during the signature verification. The repository is not " +"An error occurred during the signature verification. The repository is not " "updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" "Виникла помилка під час перевірки підпису. Репозиторій не оновлено, " diff --git a/po/vi.po b/po/vi.po index 9e8c1a78a..4ba5c19d9 100644 --- a/po/vi.po +++ b/po/vi.po @@ -3096,7 +3096,7 @@ msgstr "Bản phát hành xung đột: %s (mong đợi %s còn nhận %s)" #: apt-pkg/acquire-item.cc:1518 #, c-format msgid "" -"A error occurred during the signature verification. The repository is not " +"An error occurred during the signature verification. The repository is not " "updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" "Gặp lỗi trong khi thẩm tra chữ ký.\n" diff --git a/po/zh_CN.po b/po/zh_CN.po index 6ac4536b9..8f25691e9 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -2979,7 +2979,7 @@ msgstr "冲突的发行版:%s (期望 %s 但得到 %s)" #: apt-pkg/acquire-item.cc:1518 #, c-format msgid "" -"A error occurred during the signature verification. The repository is not " +"An error occurred during the signature verification. The repository is not " "updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" "校验签名出错。此仓库未被更新,仍然使用以前的索引文件。GPG 错误:%s: %s\n" diff --git a/po/zh_TW.po b/po/zh_TW.po index 11d299a3b..0cb4f8b8c 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -2971,7 +2971,7 @@ msgstr "發行版本衝突:%s(應當是 %s 但卻得到 %s)" #: apt-pkg/acquire-item.cc:1518 #, c-format msgid "" -"A error occurred during the signature verification. The repository is not " +"An error occurred during the signature verification. The repository is not " "updated and the previous index files will be used. GPG error: %s: %s\n" msgstr "" -- cgit v1.2.3